mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
@@ -191,6 +191,7 @@ ADLDAP_AUTH_FIELD=distinguishedname
|
||||
|
||||
# Will allow SSO if your server provides an AUTH_USER field.
|
||||
# You can set the following variables from a file by appending them with _FILE:
|
||||
WINDOWS_SSO_ENABLED=false
|
||||
WINDOWS_SSO_DISCOVER=samaccountname
|
||||
WINDOWS_SSO_KEY=AUTH_USER
|
||||
|
||||
|
||||
@@ -118,6 +118,7 @@ class UserEventHandler
|
||||
if ($repository->hasRole($user, 'demo')) {
|
||||
// set user back to English.
|
||||
app('preferences')->setForUser($user, 'language', 'en_US');
|
||||
app('preferences')->setForUser($user, 'locale', 'equal');
|
||||
app('preferences')->mark();
|
||||
}
|
||||
|
||||
|
||||
@@ -54,6 +54,7 @@ class VersionCheckEventHandler
|
||||
$value = (int) $permission->data;
|
||||
if (1 !== $value) {
|
||||
Log::info('Update check is not enabled.');
|
||||
$this->warnToCheckForUpdates($event);
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -85,4 +86,36 @@ class VersionCheckEventHandler
|
||||
session()->flash($release['level'], $release['message']);
|
||||
app('fireflyconfig')->set('last_update_check', time());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param RequestedVersionCheckStatus $event
|
||||
*/
|
||||
protected function warnToCheckForUpdates(RequestedVersionCheckStatus $event): void
|
||||
{
|
||||
/** @var UserRepositoryInterface $repository */
|
||||
$repository = app(UserRepositoryInterface::class);
|
||||
/** @var User $user */
|
||||
$user = $event->user;
|
||||
if (!$repository->hasRole($user, 'owner')) {
|
||||
Log::debug('User is not admin, done.');
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/** @var Configuration $lastCheckTime */
|
||||
$lastCheckTime = app('fireflyconfig')->get('last_update_warning', time());
|
||||
$now = time();
|
||||
$diff = $now - $lastCheckTime->data;
|
||||
Log::debug(sprintf('Last warning time is %d, current time is %d, difference is %d', $lastCheckTime->data, $now, $diff));
|
||||
if ($diff < 604800 * 4) {
|
||||
Log::debug(sprintf('Warned about updates less than four weeks ago (on %s).', date('Y-m-d H:i:s', $lastCheckTime->data)));
|
||||
|
||||
return;
|
||||
}
|
||||
// last check time was more than a week ago.
|
||||
Log::debug('Have warned about a new version in four weeks!');
|
||||
|
||||
session()->flash('info', (string) trans('firefly.disabled_but_check'));
|
||||
app('fireflyconfig')->set('last_update_warning', time());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,16 +31,11 @@ use FireflyIII\Helpers\Collector\Extensions\AmountCollection;
|
||||
use FireflyIII\Helpers\Collector\Extensions\CollectorProperties;
|
||||
use FireflyIII\Helpers\Collector\Extensions\MetaCollection;
|
||||
use FireflyIII\Helpers\Collector\Extensions\TimeCollection;
|
||||
use FireflyIII\Models\Bill;
|
||||
use FireflyIII\Models\Budget;
|
||||
use FireflyIII\Models\Category;
|
||||
use FireflyIII\Models\Tag;
|
||||
use FireflyIII\Models\TransactionCurrency;
|
||||
use FireflyIII\Models\TransactionGroup;
|
||||
use FireflyIII\Models\TransactionJournal;
|
||||
use FireflyIII\User;
|
||||
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
use Illuminate\Database\Query\JoinClause;
|
||||
use Illuminate\Pagination\LengthAwarePaginator;
|
||||
use Illuminate\Support\Collection;
|
||||
@@ -526,7 +521,7 @@ class GroupCollector implements GroupCollectorInterface
|
||||
}
|
||||
// or parse the rest.
|
||||
$journalId = (int) $augumentedJournal->transaction_journal_id;
|
||||
$groups[$groupId]['count']++;
|
||||
|
||||
|
||||
if (isset($groups[$groupId]['transactions'][$journalId])) {
|
||||
// append data to existing group + journal (for multiple tags or multiple attachments)
|
||||
@@ -536,6 +531,7 @@ class GroupCollector implements GroupCollectorInterface
|
||||
|
||||
if (!isset($groups[$groupId]['transactions'][$journalId])) {
|
||||
// create second, third, fourth split:
|
||||
$groups[$groupId]['count']++;
|
||||
$groups[$groupId]['transactions'][$journalId] = $this->parseAugmentedJournal($augumentedJournal);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,15 +109,13 @@ class NetWorth implements NetWorthInterface
|
||||
|
||||
Log::debug(sprintf('Balance is %s', $balance));
|
||||
|
||||
// if the account is a credit card, subtract the virtual balance from the balance,
|
||||
// to better reflect that this is not money that is actually "yours".
|
||||
$role = (string) $this->accountRepository->getMetaValue($account, 'account_role');
|
||||
// always subtract virtual balance.
|
||||
$virtualBalance = (string) $account->virtual_balance;
|
||||
if ('ccAsset' === $role && '' !== $virtualBalance && (float) $virtualBalance > 0) {
|
||||
if ('' !== $virtualBalance) {
|
||||
$balance = bcsub($balance, $virtualBalance);
|
||||
}
|
||||
|
||||
Log::debug(sprintf('Balance corrected to %s', $balance));
|
||||
Log::debug(sprintf('Balance corrected to %s because of virtual balance (%s)', $balance, $virtualBalance));
|
||||
|
||||
if (!isset($netWorth[$currencyId])) {
|
||||
$netWorth[$currencyId] = '0';
|
||||
|
||||
@@ -82,14 +82,8 @@ class LoginController extends Controller
|
||||
Log::channel('audit')->info(sprintf('User is trying to login using "%s"', $request->get('email')));
|
||||
Log::info(sprintf('User is trying to login.'));
|
||||
if ('ldap' === config('auth.providers.users.driver')) {
|
||||
/**
|
||||
* Temporary bug fix for something that doesn't seem to work in
|
||||
* AdLdap.
|
||||
*/
|
||||
$schema = config('ldap.connections.default.schema');
|
||||
|
||||
/** @var Adldap\Connections\Provider $provider */
|
||||
Adldap::getProvider('default')->setSchema(new $schema);
|
||||
Adldap::getProvider('default');
|
||||
}
|
||||
|
||||
$this->validateLogin($request);
|
||||
|
||||
@@ -97,6 +97,7 @@ class IndexController extends Controller
|
||||
*/
|
||||
public function index(Request $request, Carbon $start = null, Carbon $end = null)
|
||||
{
|
||||
Log::debug('Start of IndexController::index()');
|
||||
// collect some basic vars:
|
||||
$range = app('preferences')->get('viewRange', '1M')->data;
|
||||
$start = $start ?? session('start', Carbon::now()->startOfMonth());
|
||||
@@ -104,15 +105,18 @@ class IndexController extends Controller
|
||||
$defaultCurrency = app('amount')->getDefaultCurrency();
|
||||
$budgeted = '0';
|
||||
$spent = '0';
|
||||
Log::debug(sprintf('1) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
|
||||
// new period stuff:
|
||||
$periodTitle = app('navigation')->periodShow($start, $range);
|
||||
$prevLoop = $this->getPreviousPeriods($start, $range);
|
||||
$nextLoop = $this->getNextPeriods($start, $range);
|
||||
Log::debug(sprintf('2) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
|
||||
// get all available budgets.
|
||||
$ab = $this->abRepository->get($start, $end);
|
||||
$availableBudgets = [];
|
||||
Log::debug(sprintf('3) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
// for each, complement with spent amount:
|
||||
/** @var AvailableBudget $entry */
|
||||
foreach ($ab as $entry) {
|
||||
@@ -129,6 +133,7 @@ class IndexController extends Controller
|
||||
$array['budgeted'] = $budgeted;
|
||||
$availableBudgets[] = $array;
|
||||
unset($spentArr);
|
||||
Log::debug(sprintf('4) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
}
|
||||
|
||||
if (0 === count($availableBudgets)) {
|
||||
@@ -137,6 +142,7 @@ class IndexController extends Controller
|
||||
$spentArr = $this->opsRepository->sumExpenses($start, $end, null, null, $defaultCurrency);
|
||||
$spent = $spentArr[$defaultCurrency->id]['sum'] ?? '0';
|
||||
unset($spentArr);
|
||||
Log::debug(sprintf('5) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
}
|
||||
|
||||
// count the number of enabled currencies. This determines if we display a "+" button.
|
||||
@@ -146,11 +152,12 @@ class IndexController extends Controller
|
||||
// number of days for consistent budgeting.
|
||||
$activeDaysPassed = $this->activeDaysPassed($start, $end); // see method description.
|
||||
$activeDaysLeft = $this->activeDaysLeft($start, $end); // see method description.
|
||||
Log::debug(sprintf('Start: %s, end: %s', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
Log::debug(sprintf('6) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
|
||||
// get all budgets, and paginate them into $budgets.
|
||||
$collection = $this->repository->getActiveBudgets();
|
||||
$budgets = [];
|
||||
Log::debug(sprintf('7) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
|
||||
// complement budget with budget limits in range, and expenses in currency X in range.
|
||||
/** @var Budget $current */
|
||||
@@ -161,18 +168,22 @@ class IndexController extends Controller
|
||||
$array['attachments'] = $this->repository->getAttachments($current);
|
||||
$array['auto_budget'] = $this->repository->getAutoBudget($current);
|
||||
$budgetLimits = $this->blRepository->getBudgetLimits($current, $start, $end);
|
||||
|
||||
Log::debug(sprintf('8) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
/** @var BudgetLimit $limit */
|
||||
foreach ($budgetLimits as $limit) {
|
||||
$currency = $limit->transactionCurrency ?? $defaultCurrency;
|
||||
$array['budgeted'][] = [
|
||||
'id' => $limit->id,
|
||||
'amount' => round($limit->amount, $currency->decimal_places),
|
||||
'start_date' => $limit->start_date->formatLocalized($this->monthAndDayFormat),
|
||||
'end_date' => $limit->end_date->formatLocalized($this->monthAndDayFormat),
|
||||
'in_range' => $limit->start_date->isSameDay($start) && $limit->end_date->isSameDay($end),
|
||||
'currency_id' => $currency->id,
|
||||
'currency_symbol' => $currency->symbol,
|
||||
'currency_name' => $currency->name,
|
||||
'currency_decimal_places' => $currency->decimal_places,
|
||||
];
|
||||
Log::debug(sprintf('9) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
}
|
||||
|
||||
/** @var TransactionCurrency $currency */
|
||||
@@ -183,6 +194,7 @@ class IndexController extends Controller
|
||||
$array['spent'][$currency->id]['currency_id'] = $currency->id;
|
||||
$array['spent'][$currency->id]['currency_symbol'] = $currency->symbol;
|
||||
$array['spent'][$currency->id]['currency_decimal_places'] = $currency->decimal_places;
|
||||
Log::debug(sprintf('10) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
}
|
||||
}
|
||||
$budgets[] = $array;
|
||||
@@ -190,7 +202,7 @@ class IndexController extends Controller
|
||||
|
||||
// get all inactive budgets, and simply list them:
|
||||
$inactive = $this->repository->getInactiveBudgets();
|
||||
|
||||
Log::debug(sprintf('11) Start is "%s", end is "%s"', $start->format('Y-m-d H:i:s'), $end->format('Y-m-d H:i:s')));
|
||||
|
||||
return view(
|
||||
'budgets.index',
|
||||
|
||||
@@ -186,9 +186,11 @@ class PreferencesController extends Controller
|
||||
}
|
||||
|
||||
// same for locale:
|
||||
/** @var Preference $currentLocale */
|
||||
$locale = $request->get('locale');
|
||||
app('preferences')->set('locale', $locale);
|
||||
if (!auth()->user()->hasRole('demo')) {
|
||||
/** @var Preference $currentLocale */
|
||||
$locale = $request->get('locale');
|
||||
app('preferences')->set('locale', $locale);
|
||||
}
|
||||
|
||||
// optional fields for transactions:
|
||||
$setOptions = $request->get('tj');
|
||||
|
||||
@@ -91,6 +91,7 @@ class IndexController extends Controller
|
||||
$user = auth()->user();
|
||||
$this->createDefaultRuleGroup();
|
||||
$this->createDefaultRule();
|
||||
$this->ruleGroupRepos->resetRuleGroupOrder();
|
||||
$ruleGroups = $this->ruleGroupRepos->getRuleGroupsWithRules($user);
|
||||
|
||||
return view('rules.index', compact('ruleGroups'));
|
||||
|
||||
@@ -26,6 +26,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Laravel\Passport\Passport;
|
||||
use URL;
|
||||
use Adldap\Laravel\Middleware\WindowsAuthenticate;
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
@@ -44,6 +45,9 @@ class AppServiceProvider extends ServiceProvider
|
||||
if ('heroku' === config('app.env')) {
|
||||
URL::forceScheme('https');
|
||||
}
|
||||
if (config('ldap_auth.identifiers.windows.enabled', false)) {
|
||||
$this->app['router']->pushMiddlewareToGroup('web', WindowsAuthenticate::class);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -56,7 +56,7 @@ class RuleGroupRepository implements RuleGroupRepositoryInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* @param RuleGroup $ruleGroup
|
||||
* @param RuleGroup $ruleGroup
|
||||
* @param RuleGroup|null $moveTo
|
||||
*
|
||||
* @return bool
|
||||
@@ -92,12 +92,18 @@ class RuleGroupRepository implements RuleGroupRepositoryInterface
|
||||
{
|
||||
$this->user->ruleGroups()->whereNotNull('deleted_at')->update(['order' => 0]);
|
||||
|
||||
$set = $this->user->ruleGroups()->where('active', 1)->orderBy('order', 'ASC')->get();
|
||||
$set = $this->user
|
||||
->ruleGroups()
|
||||
->orderBy('order', 'ASC')->get();
|
||||
$count = 1;
|
||||
/** @var RuleGroup $entry */
|
||||
foreach ($set as $entry) {
|
||||
$entry->order = $count;
|
||||
$entry->save();
|
||||
|
||||
// also update rules in group.
|
||||
$this->resetRulesInGroupOrder($entry);
|
||||
|
||||
++$count;
|
||||
}
|
||||
|
||||
@@ -209,18 +215,16 @@ class RuleGroupRepository implements RuleGroupRepositoryInterface
|
||||
public function getRuleGroupsWithRules(User $user): Collection
|
||||
{
|
||||
return $user->ruleGroups()
|
||||
->orderBy('active', 'DESC')
|
||||
->orderBy('order', 'ASC')
|
||||
->with(
|
||||
[
|
||||
'rules' => function (HasMany $query) {
|
||||
$query->orderBy('active', 'DESC');
|
||||
'rules' => static function (HasMany $query) {
|
||||
$query->orderBy('order', 'ASC');
|
||||
},
|
||||
'rules.ruleTriggers' => function (HasMany $query) {
|
||||
'rules.ruleTriggers' => static function (HasMany $query) {
|
||||
$query->orderBy('order', 'ASC');
|
||||
},
|
||||
'rules.ruleActions' => function (HasMany $query) {
|
||||
'rules.ruleActions' => static function (HasMany $query) {
|
||||
$query->orderBy('order', 'ASC');
|
||||
},
|
||||
]
|
||||
@@ -328,7 +332,7 @@ class RuleGroupRepository implements RuleGroupRepositoryInterface
|
||||
|
||||
/**
|
||||
* @param RuleGroup $ruleGroup
|
||||
* @param array $data
|
||||
* @param array $data
|
||||
*
|
||||
* @return RuleGroup
|
||||
*/
|
||||
@@ -353,4 +357,5 @@ class RuleGroupRepository implements RuleGroupRepositoryInterface
|
||||
{
|
||||
return $this->user->ruleGroups()->where('title', $title)->first();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
31
changelog.md
31
changelog.md
@@ -2,6 +2,37 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [5.2.6 (API 1.1.0)] - 2020-05-22
|
||||
|
||||
|
||||
## [3.4.2] - 2015-05-25
|
||||
### Added
|
||||
- [Issue 3049](https://github.com/firefly-iii/firefly-iii/issues/3049) New transaction triggers for dates.
|
||||
- Warning if recurring transactions no longer run.
|
||||
- View fixed for recurring transactions.
|
||||
- A new rule action that will DELETE transactions.
|
||||
- Four-week reminder to check for updates if you disabled updates.
|
||||
|
||||
### Changed
|
||||
- [Issue 3011](https://github.com/firefly-iii/firefly-iii/issues/3011) Reconciliation page has "select all"-button and remembers checkboxes even when you refresh the page.
|
||||
- [Issue 3348](https://github.com/firefly-iii/firefly-iii/issues/3348) Smarter menu for accounts on the dashboard
|
||||
- Demo user can't upload attachments.
|
||||
- Demo user can't set locale.
|
||||
|
||||
### Fixed
|
||||
- [Issue 3339](https://github.com/firefly-iii/firefly-iii/issues/3339) Could not mass-delete reconciliation transactions.
|
||||
- [Issue 3344](https://github.com/firefly-iii/firefly-iii/issues/3344) Could not attach files to accounts.
|
||||
- [Issue 3335](https://github.com/firefly-iii/firefly-iii/issues/3335) Fix reconciliation currency account, thanks to @maksimkurb
|
||||
- [Issue 3350](https://github.com/firefly-iii/firefly-iii/issues/3350) Better charts in account overview
|
||||
- [Issue 3355](https://github.com/firefly-iii/firefly-iii/issues/3355) Better sorting for bills in reports.
|
||||
- [Issue 3363](https://github.com/firefly-iii/firefly-iii/issues/3363) New strings translated, thanks to @sephrat
|
||||
- [Issue 3367](https://github.com/firefly-iii/firefly-iii/issues/3367) Error in views when uploading > 1 attachments
|
||||
- [Issue 3368](https://github.com/firefly-iii/firefly-iii/issues/3368) Wrong hover-text
|
||||
- [Issue 3374](https://github.com/firefly-iii/firefly-iii/issues/3374) Inconsistent net worth calculation. You may seem to lose money.
|
||||
- [Issue 3376](https://github.com/firefly-iii/firefly-iii/issues/3376) Better rule ordering when cloning rules.
|
||||
- [Issue 3381](https://github.com/firefly-iii/firefly-iii/issues/3381) Fix for LDAP
|
||||
- Better rounding for budget amounts.
|
||||
|
||||
## [5.2.5 (API 1.1.0)] - 2020-05-04
|
||||
|
||||
### Added
|
||||
|
||||
146
composer.lock
generated
146
composer.lock
generated
@@ -1378,16 +1378,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laminas/laminas-zendframework-bridge",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laminas/laminas-zendframework-bridge.git",
|
||||
"reference": "bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9"
|
||||
"reference": "fcd87520e4943d968557803919523772475e8ea3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9",
|
||||
"reference": "bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9",
|
||||
"url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
|
||||
"reference": "fcd87520e4943d968557803919523772475e8ea3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1426,20 +1426,26 @@
|
||||
"laminas",
|
||||
"zf"
|
||||
],
|
||||
"time": "2020-04-03T16:01:00+00:00"
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://funding.communitybridge.org/projects/laminas-project",
|
||||
"type": "community_bridge"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-20T16:45:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
"version": "v6.18.14",
|
||||
"version": "v6.18.15",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/laravel/framework.git",
|
||||
"reference": "503d1511d6792b0b8d0a4bfed47f7c2f29634e1c"
|
||||
"reference": "a1fa3ddc0bb5285cafa6844b443633f7627d75dc"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/503d1511d6792b0b8d0a4bfed47f7c2f29634e1c",
|
||||
"reference": "503d1511d6792b0b8d0a4bfed47f7c2f29634e1c",
|
||||
"url": "https://api.github.com/repos/laravel/framework/zipball/a1fa3ddc0bb5285cafa6844b443633f7627d75dc",
|
||||
"reference": "a1fa3ddc0bb5285cafa6844b443633f7627d75dc",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1464,6 +1470,7 @@
|
||||
"symfony/finder": "^4.3.4",
|
||||
"symfony/http-foundation": "^4.3.4",
|
||||
"symfony/http-kernel": "^4.3.4",
|
||||
"symfony/polyfill-php73": "^1.17",
|
||||
"symfony/process": "^4.3.4",
|
||||
"symfony/routing": "^4.3.4",
|
||||
"symfony/var-dumper": "^4.3.4",
|
||||
@@ -1572,7 +1579,7 @@
|
||||
"framework",
|
||||
"laravel"
|
||||
],
|
||||
"time": "2020-05-12T14:41:15+00:00"
|
||||
"time": "2020-05-19T17:03:02+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/passport",
|
||||
@@ -1649,16 +1656,16 @@
|
||||
},
|
||||
{
|
||||
"name": "laravelcollective/html",
|
||||
"version": "v6.1.0",
|
||||
"version": "v6.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/LaravelCollective/html.git",
|
||||
"reference": "64f2268bf41bf02b3a9dd3c30f102e934d721664"
|
||||
"reference": "5ef9a3c9ae2423fe5618996f3cde375d461a3fc6"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/64f2268bf41bf02b3a9dd3c30f102e934d721664",
|
||||
"reference": "64f2268bf41bf02b3a9dd3c30f102e934d721664",
|
||||
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/5ef9a3c9ae2423fe5618996f3cde375d461a3fc6",
|
||||
"reference": "5ef9a3c9ae2423fe5618996f3cde375d461a3fc6",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1713,20 +1720,20 @@
|
||||
],
|
||||
"description": "HTML and Form Builders for the Laravel Framework",
|
||||
"homepage": "https://laravelcollective.com",
|
||||
"time": "2020-03-02T16:41:28+00:00"
|
||||
"time": "2020-05-19T18:02:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "lcobucci/jwt",
|
||||
"version": "3.3.1",
|
||||
"version": "3.3.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/lcobucci/jwt.git",
|
||||
"reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
|
||||
"reference": "56f10808089e38623345e28af2f2d5e4eb579455"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
|
||||
"reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
|
||||
"url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455",
|
||||
"reference": "56f10808089e38623345e28af2f2d5e4eb579455",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1768,7 +1775,17 @@
|
||||
"JWS",
|
||||
"jwt"
|
||||
],
|
||||
"time": "2019-05-24T18:30:49+00:00"
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/lcobucci",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://www.patreon.com/lcobucci",
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-22T08:21:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/commonmark",
|
||||
@@ -1993,16 +2010,16 @@
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
"version": "1.0.68",
|
||||
"version": "1.0.69",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/flysystem.git",
|
||||
"reference": "3e4198372276ec99ac3409a21d7c9d1ced9026e4"
|
||||
"reference": "7106f78428a344bc4f643c233a94e48795f10967"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3e4198372276ec99ac3409a21d7c9d1ced9026e4",
|
||||
"reference": "3e4198372276ec99ac3409a21d7c9d1ced9026e4",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7106f78428a344bc4f643c233a94e48795f10967",
|
||||
"reference": "7106f78428a344bc4f643c233a94e48795f10967",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2079,7 +2096,7 @@
|
||||
"type": "other"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-12T20:33:44+00:00"
|
||||
"time": "2020-05-18T15:13:39+00:00"
|
||||
},
|
||||
{
|
||||
"name": "league/flysystem-replicate-adapter",
|
||||
@@ -2359,20 +2376,20 @@
|
||||
},
|
||||
{
|
||||
"name": "monolog/monolog",
|
||||
"version": "2.0.2",
|
||||
"version": "2.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Seldaek/monolog.git",
|
||||
"reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8"
|
||||
"reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8",
|
||||
"reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8",
|
||||
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/38914429aac460e8e4616c8cb486ecb40ec90bb1",
|
||||
"reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2",
|
||||
"php": ">=7.2",
|
||||
"psr/log": "^1.0.1"
|
||||
},
|
||||
"provide": {
|
||||
@@ -2383,11 +2400,11 @@
|
||||
"doctrine/couchdb": "~1.0@dev",
|
||||
"elasticsearch/elasticsearch": "^6.0",
|
||||
"graylog2/gelf-php": "^1.4.2",
|
||||
"jakub-onderka/php-parallel-lint": "^0.9",
|
||||
"php-amqplib/php-amqplib": "~2.4",
|
||||
"php-console/php-console": "^3.1.3",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.0",
|
||||
"phpspec/prophecy": "^1.6.1",
|
||||
"phpunit/phpunit": "^8.3",
|
||||
"phpunit/phpunit": "^8.5",
|
||||
"predis/predis": "^1.1",
|
||||
"rollbar/rollbar": "^1.3",
|
||||
"ruflin/elastica": ">=0.90 <3.0",
|
||||
@@ -2436,7 +2453,17 @@
|
||||
"logging",
|
||||
"psr-3"
|
||||
],
|
||||
"time": "2019-12-20T14:22:59+00:00"
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/Seldaek",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-22T08:12:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mschindler83/fints-hbci-php",
|
||||
@@ -2475,16 +2502,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nesbot/carbon",
|
||||
"version": "2.34.0",
|
||||
"version": "2.34.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/briannesbitt/Carbon.git",
|
||||
"reference": "52ea68aebbad8a3b27b5d24e4c66ebe1933f8399"
|
||||
"reference": "3e87404329b8072295ea11d548b47a1eefe5a162"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/52ea68aebbad8a3b27b5d24e4c66ebe1933f8399",
|
||||
"reference": "52ea68aebbad8a3b27b5d24e4c66ebe1933f8399",
|
||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/3e87404329b8072295ea11d548b47a1eefe5a162",
|
||||
"reference": "3e87404329b8072295ea11d548b47a1eefe5a162",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2554,7 +2581,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-12T19:53:34+00:00"
|
||||
"time": "2020-05-19T22:14:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nyholm/psr7",
|
||||
@@ -2620,16 +2647,16 @@
|
||||
},
|
||||
{
|
||||
"name": "opis/closure",
|
||||
"version": "3.5.1",
|
||||
"version": "3.5.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/opis/closure.git",
|
||||
"reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
|
||||
"reference": "2e3299cea6f485ca64d19c540f46d7896c512ace"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
|
||||
"reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
|
||||
"url": "https://api.github.com/repos/opis/closure/zipball/2e3299cea6f485ca64d19c540f46d7896c512ace",
|
||||
"reference": "2e3299cea6f485ca64d19c540f46d7896c512ace",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -2677,7 +2704,7 @@
|
||||
"serialization",
|
||||
"serialize"
|
||||
],
|
||||
"time": "2019-11-29T22:36:02+00:00"
|
||||
"time": "2020-05-21T20:09:36+00:00"
|
||||
},
|
||||
{
|
||||
"name": "paragonie/constant_time_encoding",
|
||||
@@ -6870,30 +6897,33 @@
|
||||
},
|
||||
{
|
||||
"name": "mockery/mockery",
|
||||
"version": "1.3.1",
|
||||
"version": "1.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mockery/mockery.git",
|
||||
"reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
|
||||
"reference": "6c6a7c533469873deacf998237e7649fc6b36223"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
|
||||
"reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
|
||||
"url": "https://api.github.com/repos/mockery/mockery/zipball/6c6a7c533469873deacf998237e7649fc6b36223",
|
||||
"reference": "6c6a7c533469873deacf998237e7649fc6b36223",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"hamcrest/hamcrest-php": "~2.0",
|
||||
"lib-pcre": ">=7.0",
|
||||
"php": ">=5.6.0"
|
||||
"php": "^7.3.0"
|
||||
},
|
||||
"conflict": {
|
||||
"phpunit/phpunit": "<8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
|
||||
"phpunit/phpunit": "^8.0.0 || ^9.0.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.3.x-dev"
|
||||
"dev-master": "1.4.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
@@ -6931,7 +6961,7 @@
|
||||
"test double",
|
||||
"testing"
|
||||
],
|
||||
"time": "2019-12-26T09:49:15+00:00"
|
||||
"time": "2020-05-19T14:25:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/deep-copy",
|
||||
@@ -8046,12 +8076,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "885e8b1e0bc2096989fd20938342e407e8045186"
|
||||
"reference": "e38de1df609b39d97144514d28b0804ad4daaddb"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/885e8b1e0bc2096989fd20938342e407e8045186",
|
||||
"reference": "885e8b1e0bc2096989fd20938342e407e8045186",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/e38de1df609b39d97144514d28b0804ad4daaddb",
|
||||
"reference": "e38de1df609b39d97144514d28b0804ad4daaddb",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
@@ -8092,10 +8122,10 @@
|
||||
"doctrine/mongodb-odm": ">=1,<1.0.2",
|
||||
"doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
|
||||
"doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1",
|
||||
"dolibarr/dolibarr": "<=10.0.6",
|
||||
"dolibarr/dolibarr": "<11.0.4",
|
||||
"dompdf/dompdf": ">=0.6,<0.6.2",
|
||||
"drupal/core": ">=7,<7.69|>=8,<8.7.12|>=8.8,<8.8.4",
|
||||
"drupal/drupal": ">=7,<7.69|>=8,<8.7.12|>=8.8,<8.8.4",
|
||||
"drupal/core": ">=7,<7.70|>=8,<8.7.14|>=8.8,<8.8.6",
|
||||
"drupal/drupal": ">=7,<7.70|>=8,<8.7.14|>=8.8,<8.8.6",
|
||||
"endroid/qr-code-bundle": "<3.4.2",
|
||||
"enshrined/svg-sanitize": "<0.13.1",
|
||||
"erusev/parsedown": "<1.7.2",
|
||||
@@ -8318,7 +8348,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2020-05-16T00:00:31+00:00"
|
||||
"time": "2020-05-22T06:49:22+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/code-unit-reverse-lookup",
|
||||
|
||||
@@ -143,7 +143,7 @@ return [
|
||||
],
|
||||
|
||||
'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
||||
'version' => '5.2.5',
|
||||
'version' => '5.2.6',
|
||||
'api_version' => '1.1.0',
|
||||
'db_version' => 13,
|
||||
'maxUploadSize' => 15242880,
|
||||
|
||||
@@ -87,29 +87,6 @@ return [
|
||||
|
||||
'connection' => Adldap\Connections\Ldap::class,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Schema
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The schema class to use for retrieving attributes and generating models.
|
||||
|
|
||||
| You can also set this option to `null` to use the default schema class.
|
||||
|
|
||||
| For OpenLDAP, you must use the schema:
|
||||
|
|
||||
| Adldap\Schemas\OpenLDAP::class
|
||||
|
|
||||
| For FreeIPA, you must use the schema:
|
||||
|
|
||||
| Adldap\Schemas\FreeIPA::class
|
||||
|
|
||||
| Custom schema classes must implement Adldap\Schemas\SchemaInterface
|
||||
|
|
||||
*/
|
||||
|
||||
'schema' => $schema,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Connection Settings
|
||||
@@ -123,6 +100,29 @@ return [
|
||||
|
||||
'settings' => [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Schema
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The schema class to use for retrieving attributes and generating models.
|
||||
|
|
||||
| You can also set this option to `null` to use the default schema class.
|
||||
|
|
||||
| For OpenLDAP, you must use the schema:
|
||||
|
|
||||
| Adldap\Schemas\OpenLDAP::class
|
||||
|
|
||||
| For FreeIPA, you must use the schema:
|
||||
|
|
||||
| Adldap\Schemas\FreeIPA::class
|
||||
|
|
||||
| Custom schema classes must implement Adldap\Schemas\SchemaInterface
|
||||
|
|
||||
*/
|
||||
|
||||
'schema' => $schema,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Account Prefix
|
||||
|
||||
@@ -217,10 +217,16 @@ return [
|
||||
| Windows Authentication Middleware (SSO)
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Discover:
|
||||
| Enabled:
|
||||
|
|
||||
| The 'discover' value is the users attribute you would
|
||||
| like to locate LDAP users by in your directory.
|
||||
| The middleware will be registered only if enabled is set to true.
|
||||
| If you update this file, beware, this is not a standard
|
||||
| AdLdap2-Laravel configuration key.
|
||||
|
|
||||
| Locate Users By:
|
||||
|
|
||||
| This value is the users attribute you would like to locate LDAP
|
||||
| users by in your directory.
|
||||
|
|
||||
| For example, if 'samaccountname' is the value, then your LDAP server is
|
||||
| queried for a user with the 'samaccountname' equal to the value of
|
||||
@@ -229,9 +235,9 @@ return [
|
||||
| If a user is found, they are imported (if using the DatabaseUserProvider)
|
||||
| into your local database, then logged in.
|
||||
|
|
||||
| Key:
|
||||
| Server Key:
|
||||
|
|
||||
| The 'key' value represents the 'key' of the $_SERVER
|
||||
| This value represents the 'key' of the $_SERVER
|
||||
| array to pull the users account name from.
|
||||
|
|
||||
| For example, $_SERVER['AUTH_USER'].
|
||||
@@ -239,8 +245,9 @@ return [
|
||||
*/
|
||||
|
||||
'windows' => [
|
||||
'discover' => envNonEmpty('WINDOWS_SSO_DISCOVER', 'samaccountname'),
|
||||
'key' => envNonEmpty('WINDOWS_SSO_KEY', 'AUTH_USER'),
|
||||
'enabled' => envNonEmpty('WINDOWS_SSO_ENABLED', false),
|
||||
'locate_users_by' => envNonEmpty('WINDOWS_SSO_DISCOVER', 'samaccountname'),
|
||||
'server_key' => envNonEmpty('WINDOWS_SSO_KEY', 'AUTH_USER'),
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
2
public/v1/js/app.js
vendored
2
public/v1/js/app.js
vendored
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
* jQuery JavaScript Library v3.5.0
|
||||
* jQuery JavaScript Library v3.5.1
|
||||
* https://jquery.com/
|
||||
*
|
||||
* Includes Sizzle.js
|
||||
@@ -26,5 +26,5 @@
|
||||
* Released under the MIT license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* Date: 2020-04-10T15:07Z
|
||||
* Date: 2020-05-04T22:49Z
|
||||
*/
|
||||
|
||||
2
public/v1/js/app_vue.js
vendored
2
public/v1/js/app_vue.js
vendored
File diff suppressed because one or more lines are too long
8476
public/v1/js/create_transaction.js
vendored
8476
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
8536
public/v1/js/edit_transaction.js
vendored
8536
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
@@ -449,6 +449,7 @@
|
||||
}).catch(error => {
|
||||
// give user errors things back.
|
||||
// something something render errors.
|
||||
|
||||
console.error('Error in transaction submission.');
|
||||
console.error(error);
|
||||
this.parseErrors(error.response.data);
|
||||
@@ -475,7 +476,7 @@
|
||||
// if count is 0, send user onwards.
|
||||
if (this.createAnother) {
|
||||
// do message:
|
||||
this.success_message = this.$t('firefly.transaction_stored_link', { ID: groupId });
|
||||
this.success_message = this.$t('firefly.transaction_stored_link', { ID: groupId, title: title });
|
||||
this.error_message = '';
|
||||
if (this.resetFormAfter) {
|
||||
// also clear form.
|
||||
@@ -651,10 +652,10 @@
|
||||
parseErrors: function (errors) {
|
||||
this.setDefaultErrors();
|
||||
this.error_message = "";
|
||||
if (errors.message.length > 0) {
|
||||
this.error_message = this.$t('firefly.errors_submission');
|
||||
if (typeof errors.errors === 'undefined') {
|
||||
this.error_message = errors.message;
|
||||
} else {
|
||||
this.error_message = '';
|
||||
this.error_message = this.$t('firefly.errors_submission');
|
||||
}
|
||||
let transactionIndex;
|
||||
let fieldName;
|
||||
|
||||
@@ -656,7 +656,7 @@
|
||||
this.setDefaultErrors();
|
||||
// do message if update or new:
|
||||
if (this.storeAsNew) {
|
||||
this.success_message = this.$t('firefly.transaction_stored_link', { ID: groupId });
|
||||
this.success_message = this.$t('firefly.transaction_new_stored_link', { ID: groupId });
|
||||
this.error_message = '';
|
||||
} else {
|
||||
this.success_message = this.$t('firefly.transaction_updated_link', { ID: groupId });
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Popis roz\u00fa\u010dtov\u00e1n\u00ed",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "Rozd\u011blit",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informace o transakci",
|
||||
"no_budget_pointer": "Zd\u00e1 se, \u017ee zat\u00edm nem\u00e1te \u017e\u00e1dn\u00e9 rozpo\u010dty. Na str\u00e1nce <a href=\":link\">rozpo\u010dty<\/a> byste n\u011bjak\u00e9 m\u011bli vytvo\u0159it. Rozpo\u010dty mohou pomoci udr\u017eet si p\u0159ehled ve v\u00fddaj\u00edch.",
|
||||
"source_account": "Zdrojov\u00fd \u00fa\u010det",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Beschreibung der Splittbuchung",
|
||||
"errors_submission": "Problem bei der \u00dcbermittlung. Bitte \u00fcberpr\u00fcfen Sie die nachfolgenden Fehler.",
|
||||
"split": "Teilen",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Buchung#{ID}<\/a> wurde aktualisiert.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Transaktionsinformationen",
|
||||
"no_budget_pointer": "Sie scheinen noch keine Kostenrahmen festgelegt zu haben. Sie sollten einige davon auf der Seite <a href=\"\/budgets\">\u201eKostenrahmen\u201d<\/a> anlegen. Kostenrahmen k\u00f6nnen Ihnen dabei helfen, den \u00dcberblick \u00fcber die Ausgaben zu behalten.",
|
||||
"source_account": "Quellkonto",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc",
|
||||
"errors_submission": "\u03a5\u03c0\u03ae\u03c1\u03be\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03b1\u03c2. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03b1.",
|
||||
"split": "\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
"no_budget_pointer": "\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03cd\u03c2 \u03b1\u03ba\u03cc\u03bc\u03b7. \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03c3\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 <a href=\"\/budgets\">\u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03ce\u03bd<\/a>. \u039f\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af \u03c3\u03b1\u03c2 \u03b2\u03bf\u03b7\u03b8\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b4\u03b1\u03c0\u03ac\u03bd\u03b5\u03c2 \u03c3\u03b1\u03c2.",
|
||||
"source_account": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03ad\u03bb\u03b5\u03c5\u03c3\u03b7\u03c2",
|
||||
|
||||
@@ -7,8 +7,9 @@
|
||||
"split_transaction_title": "Description of the split transaction",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "Split",
|
||||
"transaction_stored_link": "<a href=\"transactions/show/{ID}\">Transaction #{ID}</a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions/show/{ID}\">Transaction #{ID}</a> has been updated.",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Transaction information",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Source account",
|
||||
@@ -54,4 +55,4 @@
|
||||
"config": {
|
||||
"html_language": "en"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Descripci\u00f3n de la transacci\u00f3n dividida",
|
||||
"errors_submission": "Hubo algo malo con su env\u00edo. Por favor, revise los errores de abajo.",
|
||||
"split": "Separar",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informaci\u00f3n de transacci\u00f3n",
|
||||
"no_budget_pointer": "Parece que a\u00fan no tiene presupuestos. Debe crear algunos en la p\u00e1gina <a href=\"\/budgets\">presupuestos<\/a>. Los presupuestos pueden ayudarle a realizar un seguimiento de los gastos.",
|
||||
"source_account": "Cuenta origen",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Jaetun tapahtuman kuvaus",
|
||||
"errors_submission": "Lomakkeen tiedoissa oli puutteita - alta l\u00f6yd\u00e4t listan puutteista.",
|
||||
"split": "Jaa",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Tapahtumatiedot",
|
||||
"no_budget_pointer": "Sinulla ei n\u00e4ytt\u00e4isi olevan viel\u00e4 yht\u00e4\u00e4n budjettia. Sinun kannattaisi luoda niit\u00e4 <a href=\"\/budgets\">budjetit<\/a>-sivulla. Budjetit voivat auttaa sinua pit\u00e4m\u00e4\u00e4n kirjaa kuluistasi.",
|
||||
"source_account": "L\u00e4hdetili",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Description de l'op\u00e9ration ventil\u00e9e",
|
||||
"errors_submission": "Certaines informations ne sont pas correctes dans votre formulaire. Veuillez v\u00e9rifier les erreurs ci-dessous.",
|
||||
"split": "Ventiler",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">L'op\u00e9ration n\u00b0{ID}<\/a> a \u00e9t\u00e9 mise \u00e0 jour.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informations sur les op\u00e9rations",
|
||||
"no_budget_pointer": "Vous semblez n\u2019avoir encore aucun budget. Vous devriez en cr\u00e9er un sur la page des <a href=\"\/budgets\">budgets<\/a>. Les budgets peuvent vous aider \u00e0 garder une trace des d\u00e9penses.",
|
||||
"source_account": "Compte source",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Felosztott tranzakci\u00f3 le\u00edr\u00e1sa",
|
||||
"errors_submission": "Hiba t\u00f6rt\u00e9nt a bek\u00fcld\u00e9s sor\u00e1n. K\u00e9rem, jav\u00edtsa az al\u00e1bbi hib\u00e1kat.",
|
||||
"split": "Feloszt\u00e1s",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Tranzakci\u00f3s inform\u00e1ci\u00f3k",
|
||||
"no_budget_pointer": "\u00dagy t\u0171nik, m\u00e9g nincsenek k\u00f6lts\u00e9gkeretek. K\u00f6lts\u00e9gkereteket a <a href=\"\/budgets\">k\u00f6lts\u00e9gkeretek<\/a> oldalon lehet l\u00e9trehozni. A k\u00f6lts\u00e9gkeretek seg\u00edtenek nyomon k\u00f6vetni a k\u00f6lts\u00e9geket.",
|
||||
"source_account": "Forr\u00e1s sz\u00e1mla",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Description of the split transaction",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "Pisah",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informasi transaksi",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Source account",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Descrizione della transazione suddivisa",
|
||||
"errors_submission": "Errore durante l'invio. Controlla gli errori segnalati qui sotto.",
|
||||
"split": "Dividi",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "La <a href=\"transactions\/show\/{ID}\">transazione #{ID}<\/a> \u00e8 stata aggiornata.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informazioni transazione",
|
||||
"no_budget_pointer": "Sembra che tu non abbia ancora dei budget. Dovresti crearne alcuni nella pagina dei <a href=\"\/budgets\">budget<\/a>. I budget possono aiutarti a tenere traccia delle spese.",
|
||||
"source_account": "Conto di origine",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Description of the split transaction",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "Del opp",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Transaksjonsinformasjon",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Source account",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Beschrijving van de gesplitste transactie",
|
||||
"errors_submission": "Er ging iets mis. Check de errors.",
|
||||
"split": "Splitsen",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transactie #{ID}<\/a> is ge\u00fcpdatet.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Transactieinformatie",
|
||||
"no_budget_pointer": "Je hebt nog geen budgetten. Maak er een aantal op de <a href=\"\/budgets\">budgetten<\/a>-pagina. Met budgetten kan je je uitgaven beter bijhouden.",
|
||||
"source_account": "Bronrekening",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Opis podzielonej transakcji",
|
||||
"errors_submission": "Co\u015b posz\u0142o nie tak w czasie zapisu. Prosz\u0119 sprawd\u017a b\u0142\u0119dy poni\u017cej.",
|
||||
"split": "Podziel",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transakcja #{ID}<\/a> zosta\u0142a zaktualizowana.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informacje o transakcji",
|
||||
"no_budget_pointer": "Wygl\u0105da na to \u017ce nie masz jeszcze bud\u017cet\u00f3w. Powiniene\u015b utworzy\u0107 kilka na stronie <a href=\"\/budgets\">bud\u017cety<\/a>. Bud\u017cety mog\u0105 Ci pom\u00f3c \u015bledzi\u0107 wydatki.",
|
||||
"source_account": "Konto \u017ar\u00f3d\u0142owe",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Descri\u00e7\u00e3o da transa\u00e7\u00e3o dividida",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "Dividir",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transa\u00e7\u00e3o #{ID}<\/a> foi atualizada.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informa\u00e7\u00e3o da transa\u00e7\u00e3o",
|
||||
"no_budget_pointer": "Parece que voc\u00ea ainda n\u00e3o tem or\u00e7amentos. Voc\u00ea deve criar alguns na p\u00e1gina de <a href=\"\/budgets\">or\u00e7amentos<\/a>. Or\u00e7amentos podem ajud\u00e1-lo a manter o controle das despesas.",
|
||||
"source_account": "Conta origem",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Descrierea tranzac\u021biei divizate",
|
||||
"errors_submission": "A fost ceva \u00een neregul\u0103 cu transmiterea dvs. V\u0103 rug\u0103m s\u0103 consulta\u021bi erorile de mai jos.",
|
||||
"split": "\u00cemparte",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Informa\u021bii despre tranzac\u021bii",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Contul surs\u0103",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0440\u0430\u0437\u0434\u0435\u043b\u0451\u043d\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||
"errors_submission": "\u041f\u0440\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0435 \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u043d\u0438\u0436\u0435.",
|
||||
"split": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438",
|
||||
"no_budget_pointer": "\u041f\u043e\u0445\u043e\u0436\u0435, \u0443 \u0432\u0430\u0441 \u043f\u043e\u043a\u0430 \u043d\u0435\u0442 \u0431\u044e\u0434\u0436\u0435\u0442\u043e\u0432. \u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0445 \u0432 \u0440\u0430\u0437\u0434\u0435\u043b\u0435 <a href=\"\/budgets\">\u0411\u044e\u0434\u0436\u0435\u0442\u044b<\/a>. \u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0430\u0441\u0445\u043e\u0434\u044b.",
|
||||
"source_account": "\u0421\u0447\u0451\u0442-\u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Description of the split transaction",
|
||||
"errors_submission": "N\u00e5got fel uppstod med inskickningen. V\u00e4nligen kontrollera felen nedan.",
|
||||
"split": "Dela",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Transaktionsinformation",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Fr\u00e5n konto",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "Description of the split transaction",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "B\u00f6l",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "\u0130\u015flem Bilgileri",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Kaynak hesap",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "M\u00f4 t\u1ea3 giao d\u1ecbch t\u00e1ch",
|
||||
"errors_submission": "C\u00f3 g\u00ec \u0111\u00f3 sai. Vui l\u00f2ng ki\u1ec3m tra c\u00e1c l\u1ed7i d\u01b0\u1edbi \u0111\u00e2y.",
|
||||
"split": "Chia ra",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "Th\u00f4ng tin giao d\u1ecbch",
|
||||
"no_budget_pointer": "B\u1ea1n d\u01b0\u1eddng nh\u01b0 ch\u01b0a c\u00f3 ng\u00e2n s\u00e1ch. B\u1ea1n n\u00ean t\u1ea1o m\u1ed9t c\u00e1i tr\u00ean <a href=\":link\">budgets<\/a>-page. Ng\u00e2n s\u00e1ch c\u00f3 th\u1ec3 gi\u00fap b\u1ea1n theo d\u00f5i chi ph\u00ed.",
|
||||
"source_account": "Ngu\u1ed3n t\u00e0i kho\u1ea3n",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "\u62c6\u5206\u4ea4\u6613\u7684\u63cf\u8ff0",
|
||||
"errors_submission": "\u60a8\u7684\u63d0\u4ea4\u6709\u8bef\uff0c\u8bf7\u67e5\u770b\u4e0b\u9762\u8f93\u51fa\u7684\u9519\u8bef\u4fe1\u606f\u3002",
|
||||
"split": "\u5206\u5272",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "\u4ea4\u6613\u8d44\u8baf",
|
||||
"no_budget_pointer": "\u60a8\u4f3c\u4e4e\u8fd8\u6ca1\u6709\u4efb\u4f55\u9884\u7b97\u3002\u60a8\u5e94\u8be5\u5728 <a href=\"\/budgets\">\u9884\u7b97<\/a>\u9875\u9762\u4e0a\u521b\u5efa\u4ed6\u4eec\u3002\u9884\u7b97\u53ef\u4ee5\u5e2e\u52a9\u60a8\u8ddf\u8e2a\u8d39\u7528\u3002",
|
||||
"source_account": "\u6765\u6e90\u5e10\u6237",
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
"split_transaction_title": "\u62c6\u5206\u4ea4\u6613\u7684\u63cf\u8ff0",
|
||||
"errors_submission": "There was something wrong with your submission. Please check out the errors below.",
|
||||
"split": "\u5206\u5272",
|
||||
"transaction_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID} (\"{title}\")<\/a> has been stored.",
|
||||
"transaction_updated_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been updated.",
|
||||
"transaction_new_stored_link": "<a href=\"transactions\/show\/{ID}\">Transaction #{ID}<\/a> has been stored.",
|
||||
"transaction_journal_information": "\u4ea4\u6613\u8cc7\u8a0a",
|
||||
"no_budget_pointer": "You seem to have no budgets yet. You should create some on the <a href=\"\/budgets\">budgets<\/a>-page. Budgets can help you keep track of expenses.",
|
||||
"source_account": "Source account",
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Rozpočet je…',
|
||||
'rule_trigger_budget_is' => 'Rozpočet je „:trigger_value“',
|
||||
'rule_trigger_tag_is_choice' => 'Štítek je…',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Poznámky začínají na „:trigger_value“',
|
||||
'rule_trigger_notes_end_choice' => 'Poznámky končí na…',
|
||||
'rule_trigger_notes_end' => 'Poznámky končí na „:trigger_value“',
|
||||
'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“',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Možnosti',
|
||||
|
||||
// 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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Vítejte ve Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'create_new_stuff' => 'Erstelle neue Dinge',
|
||||
'new_withdrawal' => 'Neue Ausgabe',
|
||||
'create_new_transaction' => 'Neue Buchung erstellen',
|
||||
'sidebar_frontpage_create' => 'Create',
|
||||
'sidebar_frontpage_create' => 'Erstellen',
|
||||
'new_transaction' => 'Neue Buchung',
|
||||
'no_rules_for_bill' => 'Diese Rechnung enthält keine mit ihr verbundenen Regeln.',
|
||||
'go_to_asset_accounts' => 'Bestandskonten anzeigen',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'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_exp_bills_only' => 'nur aktive und erwartete Rechnungen',
|
||||
'average_per_bill' => 'Durchschnitt je Rechnung',
|
||||
'expected_total' => 'Voraussichtliche Summe',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => ':name Kontenabgleich (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Autorisierungsanfrage',
|
||||
'authorization_request_intro' => '<strong>:client</strong> bittet um Erlaubnis, auf Ihre Finanzverwaltung zuzugreifen. Möchten Sie <strong>:client</strong> erlauben auf diese Datensätze zuzugreifen?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Bei der Suche nach Aktualisierungen ist ein Fehler aufgetreten: :error',
|
||||
'unknown_error' => 'Leider ist ein unbekannter Fehler aufgetreten.',
|
||||
'just_new_release' => 'Eine neue Version ist verfügbar! Version :version wurde veröffentlicht :date. Diese Version ist sehr jung. Warten Sie ein paar Tage, bis sich die neue Version etabliert hat.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Buchungsdatum ist …',
|
||||
'rule_trigger_date_is' => 'Buchungsdatum ist „: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_budget_is_choice' => 'Budget ist..',
|
||||
'rule_trigger_budget_is' => 'Budget ist „:trigger_value”',
|
||||
'rule_trigger_tag_is_choice' => '(Ein) Schlagwort ist …',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Notizen beginnen mit „:trigger_value”',
|
||||
'rule_trigger_notes_end_choice' => 'Notizen enden mit ..',
|
||||
'rule_trigger_notes_end' => 'Notizen enden mit „:trigger_value”',
|
||||
'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',
|
||||
@@ -473,8 +484,8 @@ return [
|
||||
'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' => 'Add/remove transaction amount in piggy bank..',
|
||||
'rule_action_update_piggy' => 'Add/remove transaction amount in piggy bank ":action_value"',
|
||||
'rule_action_update_piggy_choice' => 'Buchungsbetrag im Sparschwein hinzufügen/entfernen …',
|
||||
'rule_action_update_piggy' => 'Buchungsbetrag im Sparschwein „:action_value” hinzufügen/entfernen',
|
||||
'rule_action_append_description_choice' => 'An Beschreibung anhängen..',
|
||||
'rule_action_prepend_description_choice' => 'Vor Beschreibung voranstellen..',
|
||||
'rule_action_set_source_account_choice' => 'Lege Quellkonto fest...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Diese Funktion funktioniert unter Windows möglicherweise nicht.',
|
||||
'pref_locale_no_docker' => 'Das Docker-Abbild enthält nur einen kleinen Satz installierter Gebietsschemata.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Einstellungen',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'Dieser Betrag gilt von :start bis :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',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Ausgleich (:from zu :to)',
|
||||
'sum_of_reconciliation' => 'Summe der Überleitungsrechnung',
|
||||
'reconcile_this_account' => 'Dieses Konto abgleichen',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Abgleichen',
|
||||
'show' => 'Anzeigen',
|
||||
'confirm_reconciliation' => 'Kontenabgleich bestätigen',
|
||||
'submitted_start_balance' => 'Übermitteltes Startguthaben',
|
||||
'selected_transactions' => 'Ausgewählte Umsätze (:count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a> 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' => '<a href="transactions/show/{ID}">Buchung #{ID} ("{title}")</a> wurde gespeichert.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Buchung#{ID}</a> wurde aktualisiert.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Willkommen bei Firefly III!',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Regelmäßige Buchungen',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'repeat_until_in_past' => 'Diese wiederkehrende Buchung wiederholte ab dem :date nicht mehr.',
|
||||
'recurring_calendar_view' => 'Kalender',
|
||||
'no_recurring_title_default' => 'Lassen Sie uns eine regelmäßige Buchung erstellen!',
|
||||
'no_recurring_intro_default' => 'Sie verfügen noch über keine regelmäßigen Buchungen. Mit diesen können Sie Firefly III dazu einsetzen, automatisch Buchungen für Sie zu erstellen.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Noch nicht übermittelt',
|
||||
'telemetry_type_feature' => 'Funktions-Flag',
|
||||
'telemetry_submit_all' => 'Datensätze übermitteln',
|
||||
'telemetry_type_recurring' => 'Wiederkehrend',
|
||||
'telemetry_delete_submitted_records' => 'Übertragene Datensätze löschen',
|
||||
'telemetry_submission_executed' => 'Datensätze wurden übermittelt. Überprüfen Sie Ihre Protokolldateien für weitere Informationen.',
|
||||
'telemetry_all_deleted' => 'Alle Telemetriedaten wurden gelöscht.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'create_new_stuff' => 'Νέα καταχώρηση',
|
||||
'new_withdrawal' => 'Νέα ανάληψη',
|
||||
'create_new_transaction' => 'Δημιουργία νέας συναλλαγής',
|
||||
'sidebar_frontpage_create' => 'Create',
|
||||
'sidebar_frontpage_create' => 'Δημιουργία',
|
||||
'new_transaction' => 'Νέα συναλλαγή',
|
||||
'no_rules_for_bill' => 'Αυτό το πάγιο έξοδο δεν έχει σχετιζόμενους κανόνες.',
|
||||
'go_to_asset_accounts' => 'Δείτε τους λογαριασμούς κεφαλαίου σας',
|
||||
@@ -200,7 +200,7 @@ return [
|
||||
'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.',
|
||||
'no_att_demo_user' => 'Ο χρήστης επίδειξης δε μπορεί να ανεβάσει συνημμένα.',
|
||||
'button_register' => 'Εγγραφή',
|
||||
'authorization' => 'Εξουσιοδότηση',
|
||||
'active_bills_only' => 'μόνο ενεργά πάγια έξοδα',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Παρουσιάστηκε σφάλμα κατά τον έλεγχο για ενημερώσεις: :error',
|
||||
'unknown_error' => 'Άγνωστο σφάλμα. Μας συγχωρείτε γι αυτό.',
|
||||
'just_new_release' => 'Μια νέα έκδοση είναι διαθέσιμη! Η εκδοσή :version κυκλοφόρησε :date. Όταν μια έκδοση είναι πολύ νέα είναι καλύτερο να περιμένετε λίγες μέρες για να είμαστε σίγουροι για τη νέα έκδοση.',
|
||||
'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 έχει τρία "κανάλια" ενημερώσεων που καθορίζουν πόσο μπροστά είστε σε θέματα χαρακτηριστικών, βελτιστοποιήσεων και σφαλμάτων. Χρησιμοποιήστε το "beta" κανάλι εάν είστε τολμηροί και το "alpha" εάν είστε ριψοκίνδυνοι.',
|
||||
'update_channel_stable' => 'Σταθερή. Όλα λειτουργούν όπως προβλέπονται.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'rule_trigger_description_contains' => 'Η περιγραφή περιέχει ":trigger_value"',
|
||||
'rule_trigger_description_is_choice' => 'Η περιγραφή είναι..',
|
||||
'rule_trigger_description_is' => 'Η περιγραφή είναι ":trigger_value"',
|
||||
|
||||
'rule_trigger_date_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Ο προϋπολογισμός είναι..',
|
||||
'rule_trigger_budget_is' => 'Ο προϋπολογισμός είναι ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Η(μία) ετικέτα είναι..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Οι σημειώσεις αρχίζουν με ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Οι σημειώσεις τελειώνουν με..',
|
||||
'rule_trigger_notes_end' => 'Οι σημειώσεις τελειώνουν με ":trigger_value"',
|
||||
'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"',
|
||||
@@ -545,8 +556,9 @@ return [
|
||||
'pref_locale' => 'Ρυθμίσεις τοποθεσίας',
|
||||
'pref_languages_help' => 'Το Firefly III υποστηρίζει διάφορες γλώσσες. Ποιά προτιμάτε;',
|
||||
'pref_locale_help' => 'Το Firefly III σας επιτρέπει να ορίσετε ορισμένες ρυθμίσεις τοποθεσίας, όπως τον τρόπο μορφοποίησης νομισμάτων, αριθμών και ημερομηνιών. Οι καταχωρήσεις σε αυτήν τη λίστα ενδέχεται να μην υποστηρίζονται από το σύστημά σας. Το Firefly III δεν έχει τις σωστές ρυθμίσεις ημερομηνίας για κάθε τοποθεσία. επικοινωνήστε μαζί μου για βελτιώσεις.',
|
||||
'pref_locale_no_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'pref_locale_no_windows' => 'Αυτή η δυνατότητα ενδέχεται να μην λειτουργεί στα Windows.',
|
||||
'pref_locale_no_docker' => 'Η εικόνα Docker έχει μόνο ένα μικρό σύνολο εγκατεστημένων τοπικών ρυθμίσεων.',
|
||||
'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 Ιανουαρίου εώς 31 Δεκεμβρίου, μπορείτε να ενεργοποιήσετε αυτή την επιλογή και να ορίσετε την αρχή και το τέλος του οικονομικού έτους',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Επιλογές',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :end.',
|
||||
'total_available_budget' => 'Συνολικός διαθέσιμος προϋπολογισμός (μεταξύ :start και :end)',
|
||||
'total_available_budget_in_currency' => 'Συνολικός διαθέσιμος προϋπολογισμός σε :currency',
|
||||
'see_below' => 'δες παρακάτω',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Τακτοποίηση (:from σε :to)',
|
||||
'sum_of_reconciliation' => 'Άθροισμα της τακτοποίησης',
|
||||
'reconcile_this_account' => 'Τακτοποίηση αυτού του λογαριασμού',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Τακτοποίηση',
|
||||
'show' => 'Εμφάνιση',
|
||||
'confirm_reconciliation' => 'Επιβεβαίωση τακτοποίησης',
|
||||
'submitted_start_balance' => 'Υποβλήθηκε το αρχικό υπόλοιπο',
|
||||
'selected_transactions' => 'Επιλεγμένες συναλλαγές (:count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'unknown_journal_error' => 'Δεν ήταν δυνατή η αποθήκευση της συναλλαγής. Ελέγξτε τα αρχεία καταγραφής.',
|
||||
'attachment_not_found' => 'Αυτό το συνημμένο δεν βρέθηκε.',
|
||||
'journal_link_bill' => 'Αυτή η συναλλαγή συνδέεται με το πάγιο έξοδο <a href=":route">:name</a>. Για να καταργήσετε τη σύνδεση, καταργήστε την επιλογή στο κουτάκι. Χρησιμοποιήστε κανόνες για να το συνδέσετε με ένα άλλο πάγιο έξοδο.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Καλωσήρθατε στο Firefly III!',
|
||||
@@ -1138,11 +1154,11 @@ return [
|
||||
'interest_period_help' => 'Αυτό το πεδίο είναι διακοσμητικό και δεν θα υπολογιστεί για εσάς. Όπως φαίνεται, οι τράπεζες είναι αρκετά πονηρές οπότε το Firefly III δεν το βρίσκει ποτέ σωστά.',
|
||||
'store_new_liabilities_account' => 'Αποθήκευση νέας υποχρέωσης',
|
||||
'edit_liabilities_account' => 'Επεξεργασία υποχρέωσης ":name"',
|
||||
'financial_control' => 'Financial control',
|
||||
'accounting' => 'Accounting',
|
||||
'automation' => 'Automation',
|
||||
'others' => 'Others',
|
||||
'classification' => 'Classification',
|
||||
'financial_control' => 'Οικονομικός έλεγχος',
|
||||
'accounting' => 'Λογιστική',
|
||||
'automation' => 'Αυτοματοποίηση',
|
||||
'others' => 'Λοιπά',
|
||||
'classification' => 'Ταξινόμηση',
|
||||
|
||||
// reports:
|
||||
'report_default' => 'Προεπιλεγμένη οικονομική αναφορά μεταξύ :start και :end',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Επαναλαμβανόμενες συναλλαγές',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'repeat_until_in_past' => 'Αυτή η επαναλαμβανόμενη συναλλαγή σταμάτησε να επαναλαμβάνεται στις :date.',
|
||||
'recurring_calendar_view' => 'Ημερολόγιο',
|
||||
'no_recurring_title_default' => 'Ας δημιουργήσουμε μια επαναλαμβανόμενη συναλλαγή!',
|
||||
'no_recurring_intro_default' => 'Δεν έχετε ακόμα επαναλαμβανόμενες συναλλαγές. Μπορείτε να τις χρησιμοποιήσετε για να κάνετε το Firefly III να δημιουργεί αυτόματα συναλλαγές για εσάς.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Δεν έχει υποβληθεί ακόμη',
|
||||
'telemetry_type_feature' => 'Επισήμανση λειτουργίας',
|
||||
'telemetry_submit_all' => 'Υποβολή εγγραφών',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Διαγραφή καταχωρισμένων εγγραφών',
|
||||
'telemetry_submission_executed' => 'Έχουν υποβληθεί εγγραφές. Ελέγξτε τα αρχεία καταγραφής για περισσότερες πληροφορίες.',
|
||||
'telemetry_all_deleted' => 'Όλες οι εγγραφές τηλεμετρίας έχουν διαγραφεί.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilise.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Budget is..',
|
||||
'rule_trigger_budget_is' => 'Budget is ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(A) tag is..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Notes start with ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Notes end with..',
|
||||
'rule_trigger_notes_end' => 'Notes end with ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Options',
|
||||
|
||||
// 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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. To remove the connection, untick the checkbox. Use rules to connect it to another bill.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Welcome to Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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.',
|
||||
@@ -557,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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',
|
||||
@@ -767,6 +769,7 @@ return [
|
||||
'options' => 'Options',
|
||||
|
||||
// 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',
|
||||
@@ -1052,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Welcome to Firefly III!',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Se ha producido un error al buscar actualizaciones: :error',
|
||||
'unknown_error' => 'Error desconocido. Lo sentimos.',
|
||||
'just_new_release' => '¡Una nueva versión está disponible! La versión :version ha sido liberada :date. Esta versión es muy fresca. Espere unos días a que la nueva versión se estabilice.',
|
||||
'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' => '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. Use el canal "beta" si es aventurero y el "alfa" cuando quiera vivir la vida peligrosamente.',
|
||||
'update_channel_stable' => 'Estable. Todo debería funcionar como se espera.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Presupuesto es..',
|
||||
'rule_trigger_budget_is' => 'Presupuesto es ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(una) etiqueta es..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Las notas comienzan con ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Las notas terminan con..',
|
||||
'rule_trigger_notes_end' => 'Las notas terminan con ":trigger_value"',
|
||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||
'rule_action_delete_transaction' => 'DELETE transaction (!)',
|
||||
'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 "',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Esta característica puede no funcionar en Windows.',
|
||||
'pref_locale_no_docker' => 'La imagen de Docker sólo tiene un pequeño conjunto de locales instalados.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Opciones',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Para eliminar la conexión, desmarca la casilla de verificación. Usa reglas para conectarla a otra factura.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Bienvenido a Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'No enviada',
|
||||
'telemetry_type_feature' => 'Marca de características',
|
||||
'telemetry_submit_all' => 'Enviar registros',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Eliminar los registros enviados',
|
||||
'telemetry_submission_executed' => 'Los registros han sido enviados. Revise sus archivos de registro para más información.',
|
||||
'telemetry_all_deleted' => 'Se han eliminado todos los registros de telemetría.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Päivityksiä tarkistettaessa tapahtui virhe: :error',
|
||||
'unknown_error' => 'Tuntematon virhe. Pahoittelut siitä.',
|
||||
'just_new_release' => 'Uusi versio on saatavilla! Versio :version on julkaistu :date. Tämä julkaisu on aivan tuore, kannattaa vielä odottaa muutama päivä julkaisun vakiintumista.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Budjetti on ...',
|
||||
'rule_trigger_budget_is' => 'Budjetti on ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Tägi on ...',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Muistiinpano alkaa tekstillä ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Muistiinpano loppuu tekstiin ...',
|
||||
'rule_trigger_notes_end' => 'Muistiinpano loppuu tekstiin ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Tämä ominaisuus ei välttämättä toimi Windowsissa.',
|
||||
'pref_locale_no_docker' => 'Docker imagessa on vain pieni määrä asennettuja lokalisaatioita.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Valinnat',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Jos haluat poistaa yhteyden, poista valinta liitos-valintaruudusta. Käytä sääntöjä yhdistääksesi tapahtuma toiseen laskuun.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Tervetuloa Firefly III:een!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Ei vielä lähetetty',
|
||||
'telemetry_type_feature' => 'Ominaisuusasetus',
|
||||
'telemetry_submit_all' => 'Lähetä tiedot',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Poista lähetetyt tiedot',
|
||||
'telemetry_submission_executed' => 'Tiedot on lähetetty. Lokitiedostoistasi löydät lisätietoja.',
|
||||
'telemetry_all_deleted' => 'Kaikki käyttötiedot poistettu.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'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' => 'Create',
|
||||
'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',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'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_exp_bills_only' => 'uniquement les factures actives et attendues',
|
||||
'average_per_bill' => 'moyenne par facture',
|
||||
'expected_total' => 'total prévu',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => 'Régularisation de :name (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version demande d\'autorisation',
|
||||
'authorization_request_intro' => '<strong>:client</strong> demande l\'autorisation d\'accéder à votre administration financière. Souhaitez-vous autoriser <strong>:client</strong> à accéder à ces enregistrements?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Une erreur est survenue lors de la vérification d\'une mise à jour : :error',
|
||||
'unknown_error' => 'Erreur inconnue. Désolé.',
|
||||
'just_new_release' => 'Une nouvelle version est disponible ! La version :version a été publiée :date. Cette version est très récente. Attendez quelques jours pour que la nouvelle version se stabilise.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'La date de l\'opération est..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Le budget est..',
|
||||
'rule_trigger_budget_is' => 'Le budget est ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(A) le tag est..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Les notes commencent par ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Les notes se terminent par..',
|
||||
'rule_trigger_notes_end' => 'Les notes se finissent par ":trigger_value"',
|
||||
'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"',
|
||||
@@ -473,8 +484,8 @@ return [
|
||||
'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' => 'Add/remove transaction amount in piggy bank..',
|
||||
'rule_action_update_piggy' => 'Add/remove transaction amount in piggy bank ":action_value"',
|
||||
'rule_action_update_piggy_choice' => 'Ajouter/supprimer le montant de l\'opération 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éfinissez le compte source à...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Cette fonctionnalité peut ne pas fonctionner sous Windows.',
|
||||
'pref_locale_no_docker' => 'L\'image Docker ne dispose que d\'un petit nombre de paramètres régionaux installés.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Options',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Régularisation (du :from au :to)',
|
||||
'sum_of_reconciliation' => 'Total des rapprochements',
|
||||
'reconcile_this_account' => 'Rapprocher ce compte',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Rapprocher',
|
||||
'show' => 'Afficher',
|
||||
'confirm_reconciliation' => 'Confirmer le rapprochement',
|
||||
'submitted_start_balance' => 'Solde initial soumis',
|
||||
'selected_transactions' => 'Opérations sélectionnées ( :count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Pour supprimer l\'association, décocher la case. Utilisez les règles pour la connecter à une autre facture.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">L\'opération n°{ID}</a> a été mise à jour.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Bienvenue sur Firefly III !',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Opérations périodiques',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'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 !',
|
||||
'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.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Pas encore soumis',
|
||||
'telemetry_type_feature' => 'Indicateur de fonctionnalité',
|
||||
'telemetry_submit_all' => 'Soumettre les enregistrements',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Supprimer les enregistrements envoyés',
|
||||
'telemetry_submission_executed' => 'Les enregistrements ont été soumis. Consultez vos fichiers journaux pour plus d\'informations.',
|
||||
'telemetry_all_deleted' => 'Tous les enregistrements télémétriques ont été supprimés.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'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' => 'Create',
|
||||
'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',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'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_exp_bills_only' => 'csak az aktív és a várható számlák',
|
||||
'average_per_bill' => 'számlánkénti átlag',
|
||||
'expected_total' => 'várható teljes összeg',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => ':name egyeztetés (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version engedély kérelem',
|
||||
'authorization_request_intro' => '<strong>:client</strong> hozzáférést kért az Ön pénzügyi adminisztrációjához. Szeretne hozzáférést ezekhez adatokhoz <strong>:client</strong> részére?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'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.',
|
||||
'just_new_release' => 'Új verzió érhető el! :version verzió ekkor került kiadásra: :date. Ez a verzió nagyon friss. Érdemes néhány napot várni amíg az új kiadás stabilizálódik.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'A költségkeret..',
|
||||
'rule_trigger_budget_is' => 'Költségkeret: ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'A címke..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Megjegyzések kezdetén ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Megjegyzések a végén..',
|
||||
'rule_trigger_notes_end' => 'Megjegyzések végén ":trigger_value"',
|
||||
'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"',
|
||||
@@ -473,8 +484,8 @@ return [
|
||||
'rule_action_remove_tag_choice' => 'Címke eltávolítása..',
|
||||
'rule_action_remove_all_tags_choice' => 'Minden címke eltávolítása',
|
||||
'rule_action_set_description_choice' => 'Leírás megadása..',
|
||||
'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_update_piggy_choice' => 'Tranzakcióösszeg hozzáadása/törlése a malacperselyből.',
|
||||
'rule_action_update_piggy' => 'Tranzakcióösszeg hozzáadása/törlése a malacperselyből ":action_value"',
|
||||
'rule_action_append_description_choice' => 'Hozzáfűzés a leíráshoz..',
|
||||
'rule_action_prepend_description_choice' => 'Hozzáfűzés a leírás elejéhez..',
|
||||
'rule_action_set_source_account_choice' => 'Forrásszámla beállítása...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Lehet, hogy ez a szolgáltatás nem működik Windows rendszeren.',
|
||||
'pref_locale_no_docker' => 'A Docker-képfájlnak kevés előretelepített regionális beállítása van.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Beállítások',
|
||||
|
||||
// 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',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Egyeztetés (:from - :to)',
|
||||
'sum_of_reconciliation' => 'Egyeztetés összege',
|
||||
'reconcile_this_account' => 'Számla egyeztetése',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'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)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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ó <a href=":route">:name</a> 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' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Üdvözöli a Firefly III!',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Ismétlődő tranzakciók',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'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.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Nem beküldött',
|
||||
'telemetry_type_feature' => 'Funkciókapcsoló',
|
||||
'telemetry_submit_all' => 'Bejegyzések beküldése',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Beküldött bejegyzések törlése',
|
||||
'telemetry_submission_executed' => 'A bejegyzések beküldve. További információ a naplófájlokban található.',
|
||||
'telemetry_all_deleted' => 'Minden telemetria bejegyzés törölve.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Anggaran adalah..',
|
||||
'rule_trigger_budget_is' => 'Anggaran adalah ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(A) tag adalah..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Catatan dimulai dengan ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Catatan diakhiri dengan..',
|
||||
'rule_trigger_notes_end' => 'Catatan diakhiri dengan ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Pilihan',
|
||||
|
||||
// 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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Welcome to Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'create_new_stuff' => 'Crea nuove cose',
|
||||
'new_withdrawal' => 'Nuova uscita',
|
||||
'create_new_transaction' => 'Crea nuova transazione',
|
||||
'sidebar_frontpage_create' => 'Create',
|
||||
'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à',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'no_att_demo_user' => 'L\'utente demo non può caricare allegati.',
|
||||
'button_register' => 'Registrare',
|
||||
'authorization' => 'Autorizzazione',
|
||||
'active_bills_only' => 'solo bollette attive',
|
||||
'active_exp_bills_only' => 'solo bollette attive e previste',
|
||||
'average_per_bill' => 'media per bolletta',
|
||||
'expected_total' => 'totale previsto',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => ':name riconciliazione (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Richiesta Autorizzazione',
|
||||
'authorization_request_intro' => '<strong>:client</strong> sta richiedendo l\'autorizzazione per accedere alla tua amministrazione finanziaria. Desideri autorizzare <strong>:client</strong> ad accedere a questi record?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Si è verificato un errore durante il controllo degli aggiornamenti: :error',
|
||||
'unknown_error' => 'Errore sconosciuto. Siamo spiacenti.',
|
||||
'just_new_release' => 'Una nuova versione è disponibile! La versione :version è stata rilasciata :date. Questa versione è molto recente. Attendi qualche giorno affinché la nuova versione venga considerata stabile.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'La data della transazione è...',
|
||||
'rule_trigger_date_is' => 'La data della transazione è ":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_budget_is_choice' => 'Il budget è...',
|
||||
'rule_trigger_budget_is' => 'Il budget è ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Un tag è...',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Le note iniziano con ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Le note finiscono con...',
|
||||
'rule_trigger_notes_end' => 'Le note finiscono con ":trigger_value"',
|
||||
'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"',
|
||||
@@ -473,8 +484,8 @@ return [
|
||||
'rule_action_remove_tag_choice' => 'Rimuovi l\'etichetta...',
|
||||
'rule_action_remove_all_tags_choice' => 'Rimuovi tutte le etichette',
|
||||
'rule_action_set_description_choice' => 'Imposta come descrizione...',
|
||||
'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_update_piggy_choice' => 'Aggiungi/rimuovi l\'importo della transazione nel salvadanaio..',
|
||||
'rule_action_update_piggy' => 'Aggiungi/rimuovi l\'importo della transazione nel salvadanaio ":action_value"',
|
||||
'rule_action_append_description_choice' => 'Aggiungi alla descrizione...',
|
||||
'rule_action_prepend_description_choice' => 'Anteponi alla descrizione...',
|
||||
'rule_action_set_source_account_choice' => 'Imposta come conto di origine...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Questa funzionalità potrebbe non funzionare su Windows.',
|
||||
'pref_locale_no_docker' => 'L\'immagine Docker ha solo un piccolo insieme di localizzazioni installate.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Opzioni',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Riconciliazione (:from - :to)',
|
||||
'sum_of_reconciliation' => 'Somma riconciliazione',
|
||||
'reconcile_this_account' => 'Riconcilia questo conto',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Riconcilia',
|
||||
'show' => 'Mostra',
|
||||
'confirm_reconciliation' => 'Conferma riconciliazione',
|
||||
'submitted_start_balance' => 'Saldo iniziale inserito',
|
||||
'selected_transactions' => 'Transazioni selezionate (:count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Per rimuovere il collegamento, deseleziona la casella di controllo. Usa le regole per collegarla ad un\'altra bolletta.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => 'La <a href="transactions/show/{ID}">transazione #{ID}</a> è stata aggiornata.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Benvenuto in Firefly III!',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Transazioni ricorrenti',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'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.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Non ancora inviata',
|
||||
'telemetry_type_feature' => 'Indicatore funzionalità',
|
||||
'telemetry_submit_all' => 'Invia dati',
|
||||
'telemetry_type_recurring' => 'Ricorrente',
|
||||
'telemetry_delete_submitted_records' => 'Elimina i dati inviati',
|
||||
'telemetry_submission_executed' => 'I dati sono stati inviati. Controlla i file di log per maggiori informazioni.',
|
||||
'telemetry_all_deleted' => 'Tutti i dati di telemetria sono stati cancellati.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Budsjett er..',
|
||||
'rule_trigger_budget_is' => 'Budsjett er ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(En) tagg er..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Notat som starter med ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Notat som slutter med..',
|
||||
'rule_trigger_notes_end' => 'Notat som slutter med ":trigger_value"',
|
||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||
'rule_action_delete_transaction' => 'DELETE transaction (!)',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Alternativer',
|
||||
|
||||
// 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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Hvis du vil fjerne knytningen, fjerner du avmerkingen. Bruke regler for å koble den til en annen regning.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Velkommen til Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'create_new_stuff' => 'Nieuw',
|
||||
'new_withdrawal' => 'Nieuwe uitgave',
|
||||
'create_new_transaction' => 'Maak nieuwe transactie',
|
||||
'sidebar_frontpage_create' => 'Create',
|
||||
'sidebar_frontpage_create' => 'Maak',
|
||||
'new_transaction' => 'Nieuwe transactie',
|
||||
'no_rules_for_bill' => 'Dit contract heeft geen regels.',
|
||||
'go_to_asset_accounts' => 'Bekijk je betaalrekeningen',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'no_att_demo_user' => 'De demo user kan niks uploaden.',
|
||||
'button_register' => 'Registreren',
|
||||
'authorization' => 'Toestemming',
|
||||
'active_bills_only' => 'alleen actieve contracten',
|
||||
'active_exp_bills_only' => 'alleen actieve en verwachte contracten',
|
||||
'average_per_bill' => 'gemiddeld per contract',
|
||||
'expected_total' => 'verwacht totaal',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => ':name afstemming (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version autorisatieverzoek',
|
||||
'authorization_request_intro' => '<strong>:client</strong> vraagt toestemming om toegang te krijgen tot je financiële administratie. Wil je <strong>:client</strong> autoriseren om toegang te krijgen tot je gegevens?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Er is een fout opgetreden bij het controleren op updates: :error',
|
||||
'unknown_error' => 'Onbekende fout. Sorry.',
|
||||
'just_new_release' => 'Er is een nieuwe versie beschikbaar! Versie :version werd uitgebracht :date. Deze is pas net uit. Wacht een paar dagen om er zeker van te zijn dat de versie stabiel is.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'rule_trigger_description_contains' => 'Omschrijving bevat ":trigger_value"',
|
||||
'rule_trigger_description_is_choice' => 'Omschrijving is..',
|
||||
'rule_trigger_description_is' => 'Omschrijving is ":trigger_value"',
|
||||
|
||||
'rule_trigger_date_is_choice' => 'Transactiedatum is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Budget is..',
|
||||
'rule_trigger_budget_is' => 'Budget is ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(Een) tag is..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Notitie begint met ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Notitie eindigt op..',
|
||||
'rule_trigger_notes_end' => 'Notitie eindigt op ":trigger_value"',
|
||||
'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"',
|
||||
@@ -473,8 +484,8 @@ return [
|
||||
'rule_action_remove_tag_choice' => 'Haal tag weg..',
|
||||
'rule_action_remove_all_tags_choice' => 'Haal alle tags weg',
|
||||
'rule_action_set_description_choice' => 'Geef omschrijving..',
|
||||
'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_update_piggy_choice' => 'Bedrag +/- bij spaarpotje..',
|
||||
'rule_action_update_piggy' => 'Bedrag +/- bij spaarpotje ":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...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Deze functie werkt mogelijk niet op Windows.',
|
||||
'pref_locale_no_docker' => 'Het Docker image heeft maar een paar geïnstalleerde locales.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Opties',
|
||||
|
||||
// budgets:
|
||||
'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',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Afstemming (:from tot :to)',
|
||||
'sum_of_reconciliation' => 'Som van afstemming',
|
||||
'reconcile_this_account' => 'Stem deze rekening af',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Afstemmen',
|
||||
'show' => 'Bekijken',
|
||||
'confirm_reconciliation' => 'Bevestig afstemming',
|
||||
'submitted_start_balance' => 'Ingevoerd startsaldo',
|
||||
'selected_transactions' => 'Geselecteerde transacties (:count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Om de verbinding te verwijderen haal je het vinkje weg. Gebruik regels om een ander contract te koppelen.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transactie #{ID} ("{title}")</a> is opgeslagen.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transactie #{ID}</a> is opgeslagen.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transactie #{ID}</a> is geüpdatet.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Welkom bij Firefly III!',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Periodieke transacties',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'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.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Nog niet verstuurd',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Verstuur records',
|
||||
'telemetry_type_recurring' => 'Herhalend',
|
||||
'telemetry_delete_submitted_records' => 'Verwijder verstuurde records',
|
||||
'telemetry_submission_executed' => 'Records zijn verstuurd. Check je log files voor meer info.',
|
||||
'telemetry_all_deleted' => 'Alle telemetrierecords zijn verwijderd.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'create_new_stuff' => 'Utwórz nowe rzeczy',
|
||||
'new_withdrawal' => 'Nowa wypłata',
|
||||
'create_new_transaction' => 'Stwórz nową transakcję',
|
||||
'sidebar_frontpage_create' => 'Create',
|
||||
'sidebar_frontpage_create' => 'Utwórz',
|
||||
'new_transaction' => 'Nowa transakcja',
|
||||
'no_rules_for_bill' => 'Ten rachunek nie ma przypisanych reguł.',
|
||||
'go_to_asset_accounts' => 'Zobacz swoje konta aktywów',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'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_exp_bills_only' => 'tylko aktywne i oczekiwane rachunki',
|
||||
'average_per_bill' => 'średnia za rachunek',
|
||||
'expected_total' => 'oczekiwana suma',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => 'Uzgadnianie :name (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Żądanie autoryzacji Firefly III v:version',
|
||||
'authorization_request_intro' => '<strong>:client</strong> prosi o pozwolenie na dostęp do Twojej administracji finansowej. Czy chcesz pozwolić <strong>:client</strong> na dostęp do tych danych?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Wystąpił błąd podczas sprawdzania aktualizacji :error',
|
||||
'unknown_error' => 'Nieznany błąd. Przepraszamy za to.',
|
||||
'just_new_release' => 'Dostępna jest nowa wersja! Wersja :version została wydana :date. To wydanie jest bardzo świeże. Poczekaj kilka dni na stabilizację nowej wersji.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Daty transakcji to..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Budżet to..',
|
||||
'rule_trigger_budget_is' => 'Budżet to ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Tag to..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Notatki zaczynają się od ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Notatki kończą się na..',
|
||||
'rule_trigger_notes_end' => 'Notatki kończą się na ":trigger_value"',
|
||||
'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"',
|
||||
@@ -473,8 +484,8 @@ return [
|
||||
'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' => 'Add/remove transaction amount in piggy bank..',
|
||||
'rule_action_update_piggy' => 'Add/remove transaction amount in piggy bank ":action_value"',
|
||||
'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...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Ta funkcja może nie działać w systemie Windows.',
|
||||
'pref_locale_no_docker' => 'Obraz Dockera ma zainstalowany tylko mały zestaw wersji lokalnych.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Opcje',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Rozrachunek (od :from do :to)',
|
||||
'sum_of_reconciliation' => 'Suma rozrachunku',
|
||||
'reconcile_this_account' => 'Uzgodnij to konto',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Uzgodnij',
|
||||
'show' => 'Pokaż',
|
||||
'confirm_reconciliation' => 'Potwierdź rozrachunek',
|
||||
'submitted_start_balance' => 'Przesłane saldo początkowe',
|
||||
'selected_transactions' => 'Wybrane transakcje (:count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Aby usunąć to powiązanie odznacz pole wyboru. Użyj reguł aby połączyć ją z innym rachunkiem.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transakcja #{ID}</a> została zaktualizowana.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Witaj w Firefly III!',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Cykliczne transakcje',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'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.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Jeszcze nie wysłano',
|
||||
'telemetry_type_feature' => 'Flaga funkcji',
|
||||
'telemetry_submit_all' => 'Prześlij rekordy',
|
||||
'telemetry_type_recurring' => 'Powtarzające się',
|
||||
'telemetry_delete_submitted_records' => 'Usuń przesłane rekordy',
|
||||
'telemetry_submission_executed' => 'Rekordy zostały wysłane. Sprawdź pliki dziennika, aby uzyskać więcej informacji.',
|
||||
'telemetry_all_deleted' => 'Wszystkie rekordy telemetryczne zostały usunięte.',
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
'create_new_stuff' => 'Criar novas coisas',
|
||||
'new_withdrawal' => 'Nova retirada',
|
||||
'create_new_transaction' => 'Criar nova transação',
|
||||
'sidebar_frontpage_create' => 'Create',
|
||||
'sidebar_frontpage_create' => 'Criar',
|
||||
'new_transaction' => 'Nova transação',
|
||||
'no_rules_for_bill' => 'Esta conta não tem regras associadas a ela.',
|
||||
'go_to_asset_accounts' => 'Veja suas contas ativas',
|
||||
@@ -200,14 +200,14 @@ return [
|
||||
'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' => 'The demo user can\'t upload attachments.',
|
||||
'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_exp_bills_only' => 'somente faturas ativas e esperadas',
|
||||
'average_per_bill' => 'média por fatura',
|
||||
'expected_total' => 'total esperado',
|
||||
'reconciliation_account_name' => ':name reconciliation (:currency)',
|
||||
'reconciliation_account_name' => 'Reconciliação :name (:currency)',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Pedido de autorização',
|
||||
'authorization_request_intro' => '<strong>:client</strong> está pedindo permissão para acessar sua administração financeira. Gostaria de autorizar <strong>:client</strong> para acessar esses registros?',
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Ocorreu um erro durante a verificação de atualizações: :error',
|
||||
'unknown_error' => 'Erro desconhecido. Desculpe por isso.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'A data da transação é...',
|
||||
'rule_trigger_date_is' => 'A data da 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_budget_is_choice' => 'O orçamento é..',
|
||||
'rule_trigger_budget_is' => 'O orçamento é ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(A) tag é..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'As notas começam com ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'As notas terminam com..',
|
||||
'rule_trigger_notes_end' => 'Notas terminam com ":trigger_value"',
|
||||
'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"',
|
||||
@@ -474,7 +485,7 @@ return [
|
||||
'rule_action_remove_all_tags_choice' => 'Remover todas as tags',
|
||||
'rule_action_set_description_choice' => 'Definir descrição para..',
|
||||
'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_update_piggy' => 'Adicionar/remover o valor da transação no cofrinho ":action_value"',
|
||||
'rule_action_append_description_choice' => 'Acrescentar a descrição com..',
|
||||
'rule_action_prepend_description_choice' => 'Preceder a descrição com..',
|
||||
'rule_action_set_source_account_choice' => 'Definir a conta de origem...',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'Esse recurso pode não funcionar no Windows.',
|
||||
'pref_locale_no_docker' => 'A imagem do Docker tem apenas um pequeno conjunto de localidades instaladas.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Opções',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'Esta quantia aplica-se de :start a :end.',
|
||||
'total_available_budget' => 'Total available budget (between :start and :end)',
|
||||
'total_available_budget_in_currency' => 'Total available budget in :currency',
|
||||
'see_below' => 'veja abaixo',
|
||||
@@ -929,8 +942,8 @@ return [
|
||||
'reconciliation_transaction_title' => 'Reconciliação (:from a :to)',
|
||||
'sum_of_reconciliation' => 'Total reconciliado',
|
||||
'reconcile_this_account' => 'Concilie esta conta',
|
||||
'reconcile' => 'Reconcile',
|
||||
'show' => 'Show',
|
||||
'reconcile' => 'Reconciliar',
|
||||
'show' => 'Exibir',
|
||||
'confirm_reconciliation' => 'Confirmar reconciliação',
|
||||
'submitted_start_balance' => 'Saldo inicial enviado',
|
||||
'selected_transactions' => 'Transações selecionadas (:count)',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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á ligada à conta <a href=":route">:name</a>. Para remover a conexão, desmarque a caixa de seleção. Use as regras para conectá-la a outra conta.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transação #{ID} ("{title}")</a> foi salva.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transação #{ID}</a> foi salva.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transação #{ID}</a> foi atualizada.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Bem Vindo ao Firefly III!',
|
||||
@@ -1525,7 +1541,7 @@ return [
|
||||
|
||||
// recurring transactions
|
||||
'recurrences' => 'Transações recorrentes',
|
||||
'repeat_until_in_past' => 'This recurring transaction stopped repeating on :date.',
|
||||
'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.',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Ainda não enviado',
|
||||
'telemetry_type_feature' => 'Indicador de Característica',
|
||||
'telemetry_submit_all' => 'Enviar registros',
|
||||
'telemetry_type_recurring' => 'Recorrente',
|
||||
'telemetry_delete_submitted_records' => 'Excluir registros enviados',
|
||||
'telemetry_submission_executed' => 'Os registros foram enviados. Verifique seus arquivos de log para mais informações.',
|
||||
'telemetry_all_deleted' => 'Todos os registros de telemetria foram excluídos.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Bugetul este..',
|
||||
'rule_trigger_budget_is' => 'Bugetul este ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'O etichetă este..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Notele încep cu ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Notele se termină cu..',
|
||||
'rule_trigger_notes_end' => 'Notele se termină cu ":trigger_value"',
|
||||
'rule_action_delete_transaction_choice' => 'DELETE transaction (!)',
|
||||
'rule_action_delete_transaction' => 'DELETE transaction (!)',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Opțiuni',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:nume </a>. Pentru a elimina conexiunea, debifați caseta de selectare. Utilizați regulile pentru conectarea la o altă factură.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Bine ați venit!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Произошла ошибка при проверке обновлений: :error',
|
||||
'unknown_error' => 'Неизвестная ошибка. Извините за это.',
|
||||
'just_new_release' => 'Доступна новая версия! Версия :version была выпущена :date. Этот релиз очень свежий. Подождите несколько дней, пока этот релиз стабилизируется.',
|
||||
'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 может использовать три "канала" обновлений, которые различаются наборами новых функций и ошибок. Используйте "бета"-канал, если вы любите приключения и "альфа", если вам нравится жить с чувством постоянной опасности.',
|
||||
'update_channel_stable' => 'Стабильный. Всё должно работать, как вы ожидаете.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'rule_trigger_description_contains' => 'Описание содержит ":trigger_value"',
|
||||
'rule_trigger_description_is_choice' => 'Описание =',
|
||||
'rule_trigger_description_is' => 'Описание = ":trigger_value"',
|
||||
|
||||
'rule_trigger_date_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Бюджет =',
|
||||
'rule_trigger_budget_is' => 'Бюджет = ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Метка =',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Заметки начинаются с ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Заметки заканчиваются на...',
|
||||
'rule_trigger_notes_end' => 'Заметки заканчиваются на ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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 января, а заканчивается не 31 декабря, вы должны указать даты начала и окончания финансового года',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Параметры',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :end.',
|
||||
'total_available_budget' => 'Общий доступный бюджет (между :start и :end)',
|
||||
'total_available_budget_in_currency' => 'Всего доступно в бюджете (:currency)',
|
||||
'see_below' => 'см. ниже',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'unknown_journal_error' => 'Не удалось сохранить транзакцию. Пожалуйста, проверьте log-файлы.',
|
||||
'attachment_not_found' => 'Вложение не найдено.',
|
||||
'journal_link_bill' => 'Эта транзакция связана со счётом на оплату <a href=":route">:name</a>. Чтобы удалить эту связь, снимите галочку. Используйте правила для связи с другим счётом на оплату.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Добро пожаловать в Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Ещё не отправлено',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Отправить записи',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'Все записи телеметрии были удалены.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Budget är..',
|
||||
'rule_trigger_budget_is' => 'Budget är ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(En) etikett är..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Anteckningar börjar med ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Anteckningar slutar med..',
|
||||
'rule_trigger_notes_end' => 'Anteckningar slutar med ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Alternativ',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. För att ta bort koppling, avmarkera kryssrutan. Använd regler för att koppla den till en annan nota.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Välkommen till Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -243,6 +243,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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' => '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.',
|
||||
@@ -423,6 +424,14 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Bütçe..',
|
||||
'rule_trigger_budget_is' => 'Bütçe ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(A) etiketi..',
|
||||
@@ -457,6 +466,8 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'rule_trigger_notes_start' => 'Notlar ":trigger_value" ile başlar',
|
||||
'rule_trigger_notes_end_choice' => 'Notlar bitiyor..',
|
||||
'rule_trigger_notes_end' => 'Notlar ":trigger_value" ile bitiyor',
|
||||
'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',
|
||||
@@ -549,6 +560,7 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -759,6 +771,7 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'options' => 'Seçenekler',
|
||||
|
||||
// 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',
|
||||
@@ -1044,6 +1057,9 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'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 <a href=":route">:name</a>. To remove the connection, uncheck the checkbox. Use rules to connect it to another bill.',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Firefly III\'e hoşgeldiniz!',
|
||||
@@ -1626,6 +1642,7 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'Đã xảy ra lỗi trong khi kiểm tra cập nhật. Vui lòng xem các tập tin nhật ký.',
|
||||
'unknown_error' => 'Không xác định được lỗi. Xin lỗi vì điều này.',
|
||||
'just_new_release' => 'Đã có phiên bản mới!',
|
||||
'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' => '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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'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_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => 'Ngân sách là..',
|
||||
'rule_trigger_budget_is' => 'Ngân sách là ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => 'Thẻ là..',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => 'Ghi chú bắt đầu bằng ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => 'Ghi chú kết thúc bằng..',
|
||||
'rule_trigger_notes_end' => 'Ghi chú kết thúc bằng ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'pref_locale_no_demo' => 'This feature won\'t work for the demo user.',
|
||||
'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',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => 'Tùy chọn',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :end.',
|
||||
'total_available_budget' => 'TTổng ngân sách có sẵn (giữa: bắt đầu và: kết thúc)',
|
||||
'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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'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 <a href=":route">:name</a>. Để 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' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Chào mừng đến với Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => '检查更新时发生错误::error',
|
||||
'unknown_error' => '未知错误。抱歉。',
|
||||
'just_new_release' => '有一个新版本可用!版本 :version 在 :date 发布。这个版本非常新。等待几天后新版本才能稳定。',
|
||||
'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具有三个更新“通道”,这些通道确定您在功能,增强功能和错误方面都处于最新。 如果您喜欢冒险,请使用“ beta”频道;如果您不惧危险,请使用“ alpha”频道。',
|
||||
'update_channel_stable' => '稳定版。一切应该都如预期的那样运行。',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'rule_trigger_description_contains' => '描述包含 ":trigger_value"',
|
||||
'rule_trigger_description_is_choice' => '描述是…',
|
||||
'rule_trigger_description_is' => '描述为 ":trigger_value"',
|
||||
|
||||
'rule_trigger_date_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => '预算为…',
|
||||
'rule_trigger_budget_is' => '预算为 ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(一个) 标签为…',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => '注释开头为 ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => '注释结尾为…',
|
||||
'rule_trigger_notes_end' => '注释结尾为 ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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日以外作为会计年度的国家,您可开启此功能并指定财政年度的起迄日。',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => '选项',
|
||||
|
||||
// budgets:
|
||||
'budget_limit_not_in_range' => 'This amount applies from :start to :end.',
|
||||
'total_available_budget' => '可用预算总额 (:start 和 :end之间)',
|
||||
'total_available_budget_in_currency' => '可用预算总额 以:currency为单位',
|
||||
'see_below' => '请在下方查看',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'unknown_journal_error' => '无法储存交易,请检视日志档。',
|
||||
'attachment_not_found' => '此附加档案无法被找到。',
|
||||
'journal_link_bill' => '此交易已与帐单 <a href=":route">:name</a> 链结。如要移除链结,取消核选方块,使用规则将它与其他帐单链结。',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => '欢迎使用 Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => '尚未提交',
|
||||
'telemetry_type_feature' => '功能标志',
|
||||
'telemetry_submit_all' => '提交记录',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => '删除提交的记录',
|
||||
'telemetry_submission_executed' => '记录已提交。请检查您的日志文件获取更多信息。',
|
||||
'telemetry_all_deleted' => '所有遥测记录已被删除。',
|
||||
|
||||
@@ -242,6 +242,7 @@ return [
|
||||
'update_check_error' => 'An error occurred while checking for updates: :error',
|
||||
'unknown_error' => 'Unknown error. Sorry about that.',
|
||||
'just_new_release' => 'A new version is available! Version :version was released :date. This release is very fresh. Wait a few days for the new release to stabilize.',
|
||||
'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.',
|
||||
@@ -421,6 +422,14 @@ return [
|
||||
'rule_trigger_description_contains' => '描述包含 ":trigger_value"',
|
||||
'rule_trigger_description_is_choice' => '描述是…',
|
||||
'rule_trigger_description_is' => '描述為 ":trigger_value"',
|
||||
|
||||
'rule_trigger_date_is_choice' => 'Transaction date is..',
|
||||
'rule_trigger_date_is' => '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_budget_is_choice' => '預算為…',
|
||||
'rule_trigger_budget_is' => '預算為 ":trigger_value"',
|
||||
'rule_trigger_tag_is_choice' => '(一個) 標籤為…',
|
||||
@@ -455,6 +464,8 @@ return [
|
||||
'rule_trigger_notes_start' => '註釋開頭為 ":trigger_value"',
|
||||
'rule_trigger_notes_end_choice' => '註釋結尾為…',
|
||||
'rule_trigger_notes_end' => '註釋結尾為 ":trigger_value"',
|
||||
'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"',
|
||||
@@ -547,6 +558,7 @@ return [
|
||||
'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_windows' => 'This feature may not work on Windows.',
|
||||
'pref_locale_no_docker' => 'The Docker image only has a small set of installed locales.',
|
||||
'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 日,您可開啟此功能並指定財政年度的起迄日。',
|
||||
@@ -757,6 +769,7 @@ return [
|
||||
'options' => '選項',
|
||||
|
||||
// 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',
|
||||
@@ -1042,6 +1055,9 @@ return [
|
||||
'unknown_journal_error' => '無法儲存交易,請檢視日誌檔。',
|
||||
'attachment_not_found' => '此附加檔案無法被找到。',
|
||||
'journal_link_bill' => '此交易已與帳單 <a href=":route">:name</a> 鏈結。如要移除鏈結,取消核選方塊,使用規則將它與其他帳單鏈結。',
|
||||
'transaction_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID} ("{title}")</a> has been stored.',
|
||||
'transaction_new_stored_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been stored.',
|
||||
'transaction_updated_link' => '<a href="transactions/show/{ID}">Transaction #{ID}</a> has been updated.',
|
||||
|
||||
// new user:
|
||||
'welcome' => '歡迎使用 Firefly III!',
|
||||
@@ -1624,6 +1640,7 @@ return [
|
||||
'not_yet_submitted' => 'Not yet submitted',
|
||||
'telemetry_type_feature' => 'Feature flag',
|
||||
'telemetry_submit_all' => 'Submit records',
|
||||
'telemetry_type_recurring' => 'Recurring',
|
||||
'telemetry_delete_submitted_records' => 'Delete submitted records',
|
||||
'telemetry_submission_executed' => 'Records have been submitted. Check your log files for more info.',
|
||||
'telemetry_all_deleted' => 'All telemetry records have been deleted.',
|
||||
|
||||
@@ -276,6 +276,11 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{% if not budgetLimit.in_range %}
|
||||
<small class="text-muted">
|
||||
{{ trans('firefly.budget_limit_not_in_range', {start: budgetLimit.start_date, end: budgetLimit.end_date}) }}
|
||||
</small><br>
|
||||
{% endif %}
|
||||
<span class="text-danger budget_warning" data-id="{{ budget.id }}" data-budgetLimit="{{ budgetLimit.id }}"
|
||||
style="display:none;"></span>
|
||||
{% endfor %}
|
||||
|
||||
@@ -104,7 +104,7 @@ TODO: hide and show columns
|
||||
{% endif %}
|
||||
|
||||
{% if transaction.transaction_type_type == 'Transfer' %}
|
||||
<i class="fa fa-exchange fa-fw" title="{{ trans('firefly.Deposit') }}"></i>
|
||||
<i class="fa fa-exchange fa-fw" title="{{ trans('firefly.Transfer') }}"></i>
|
||||
{% endif %}
|
||||
|
||||
{% if transaction.transaction_type_type == 'Reconciliation' %}
|
||||
|
||||
@@ -68,7 +68,10 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div></div>
|
||||
{{ dump(IS_DEMO_SITE) }}
|
||||
<ul class="text-warning">
|
||||
|
||||
{% if IS_DEMO_SITE %}<li class="text-danger">{{ 'pref_locale_no_demo'|_ }}</li>{% endif %}
|
||||
<li>{{ 'pref_locale_no_windows'|_ }}</li>
|
||||
<li>{{ 'pref_locale_no_docker'|_ }}</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user