mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Merge branch 'release/5.1.0'
This commit is contained in:
commit
379916ee08
@ -24,6 +24,7 @@ DEFAULT_LANGUAGE=en_US
|
||||
|
||||
# Change this value to your preferred time zone.
|
||||
# Example: Europe/Amsterdam
|
||||
# For a list of supported time zones, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
TZ=Europe/Amsterdam
|
||||
|
||||
# This variable must match your installation's external address but keep in mind that
|
||||
|
@ -263,11 +263,11 @@ class TransactionStoreRequest extends Request
|
||||
'tags' => $this->arrayFromValue($object['tags']),
|
||||
|
||||
// all custom fields:
|
||||
'internal_reference' => $this->stringFromValue($object['internal_reference']),
|
||||
'external_id' => $this->stringFromValue($object['external_id']),
|
||||
'internal_reference' => $this->stringFromValue((string)$object['internal_reference']),
|
||||
'external_id' => $this->stringFromValue((string)$object['external_id']),
|
||||
'original_source' => sprintf('ff3-v%s|api-v%s', config('firefly.version'), config('firefly.api_version')),
|
||||
'recurrence_id' => $this->integerFromValue($object['recurrence_id']),
|
||||
'bunq_payment_id' => $this->stringFromValue($object['bunq_payment_id']),
|
||||
'bunq_payment_id' => $this->stringFromValue((string)$object['bunq_payment_id']),
|
||||
|
||||
'sepa_cc' => $this->stringFromValue($object['sepa_cc']),
|
||||
'sepa_ct_op' => $this->stringFromValue($object['sepa_ct_op']),
|
||||
|
@ -114,7 +114,7 @@ class CategoryController extends Controller
|
||||
$cache->addProperty($end);
|
||||
$cache->addProperty('chart.category.frontpage');
|
||||
if ($cache->has()) {
|
||||
return response()->json($cache->get()); // @codeCoverageIgnore
|
||||
// return response()->json($cache->get()); // @codeCoverageIgnore
|
||||
}
|
||||
|
||||
// currency repos:
|
||||
@ -163,22 +163,24 @@ class CategoryController extends Controller
|
||||
|
||||
// no category per currency:
|
||||
$noCategory = $noCatRepository->sumExpenses($start, $end);
|
||||
if (0 !== bccomp($noCategory[0]['sum'] ?? '0', '0')) {
|
||||
|
||||
foreach ($noCategory as $currency) {
|
||||
$currencyId = $currency['currency_id'];
|
||||
$currencies[$currencyId] = $currencies[$currencyId] ?? [
|
||||
'currency_id' => $currency['currency_id'],
|
||||
'currency_name' => $currency['currency_name'],
|
||||
'currency_symbol' => $currency['currency_symbol'],
|
||||
'currency_code' => $currency['currency_code'],
|
||||
'currency_decimal_places' => $currency['currency_decimal_places'],
|
||||
foreach ($noCategory as $currency) {
|
||||
$currencyId = $currency['currency_id'];
|
||||
$currencies[$currencyId] = $currencies[$currencyId] ?? [
|
||||
'currency_id' => $currency['currency_id'],
|
||||
'currency_name' => $currency['currency_name'],
|
||||
'currency_symbol' => $currency['currency_symbol'],
|
||||
'currency_code' => $currency['currency_code'],
|
||||
'currency_decimal_places' => $currency['currency_decimal_places'],
|
||||
];
|
||||
$tempData[] = [
|
||||
'name' => trans('firefly.no_category'),
|
||||
'sum' => $currency['sum'],
|
||||
'sum_float' => round($currency['sum'], $currency['currency_decimal_places'] ?? 2),
|
||||
'currency_id' => $currency['currency_id'],
|
||||
];
|
||||
$tempData[] = [
|
||||
'name' => trans('firefly.no_category'),
|
||||
'sum' => $currency['sum'],
|
||||
'sum_float' => round($currency['sum'], $currency['currency_decimal_places']),
|
||||
'currency_id' => $currency['currency_id'],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
// sort temp array by amount.
|
||||
@ -203,6 +205,7 @@ class CategoryController extends Controller
|
||||
$name = $entry['name'];
|
||||
$chartData[$currencyId]['entries'][$name] = bcmul($entry['sum'], '-1');
|
||||
}
|
||||
|
||||
$data = $this->generator->multiSet($chartData);
|
||||
$cache->store($data);
|
||||
|
||||
|
@ -185,7 +185,7 @@ class BoxController extends Controller
|
||||
foreach ($set as $journal) {
|
||||
$currencyId = (int)$journal['currency_id'];
|
||||
$expenses[$currencyId] = $expenses[$currencyId] ?? '0';
|
||||
$expenses[$currencyId] = bcadd($expenses[$currencyId], $journal['amount']);
|
||||
$expenses[$currencyId] = bcadd($expenses[$currencyId], $journal['amount'] ?? '0');
|
||||
$sums[$currencyId] = $sums[$currencyId] ?? '0';
|
||||
$sums[$currencyId] = bcadd($sums[$currencyId], $journal['amount']);
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ class ShowController extends Controller
|
||||
throw new FireflyException('This transaction is broken :(.');
|
||||
}
|
||||
|
||||
$type = $first->transactionType->type;
|
||||
$type = (string)trans(sprintf('firefly.%s',$first->transactionType->type));
|
||||
$title = 1 === $splits ? $first->description : $transactionGroup->title;
|
||||
$subTitle = sprintf('%s: "%s"', $type, $title);
|
||||
|
||||
|
@ -347,6 +347,7 @@ class Request extends FormRequest
|
||||
$longitudeKey = null === $prefix ? 'longitude' : sprintf('%s_longitude', $prefix);
|
||||
$latitudeKey = null === $prefix ? 'latitude' : sprintf('%s_latitude', $prefix);
|
||||
$zoomLevelKey = null === $prefix ? 'zoom_level' : sprintf('%s_zoom_level', $prefix);
|
||||
$hasLocationKey = null === $prefix ? 'has_location' : sprintf('%s_has_location', $prefix);
|
||||
|
||||
// for a POST (store, all fields must be present and accounted for:
|
||||
if (
|
||||
@ -354,7 +355,8 @@ class Request extends FormRequest
|
||||
&& ($this->has($longitudeKey) && $this->has($latitudeKey) && $this->has($zoomLevelKey))
|
||||
) {
|
||||
Log::debug('Method is POST and all fields present.');
|
||||
$data['store_location'] = true;
|
||||
|
||||
$data['store_location'] = $this->boolean($hasLocationKey);
|
||||
$data['longitude'] = '' === $this->string($longitudeKey) ? null : $this->string($longitudeKey);
|
||||
$data['latitude'] = '' === $this->string($latitudeKey) ? null : $this->string($latitudeKey);
|
||||
$data['zoom_level'] = '' === $this->string($zoomLevelKey) ? null : $this->integer($zoomLevelKey);
|
||||
|
@ -70,18 +70,22 @@ class IngDescription implements SpecificInterface
|
||||
public function run(array $row): array
|
||||
{
|
||||
$this->row = array_values($row);
|
||||
array_push($this->row); // New column for "Valutadatum"
|
||||
if (count($this->row) >= 8) { // check if the array is correct
|
||||
switch ($this->row[4]) { // Get value for the mutation type
|
||||
case 'GT': // InternetBankieren
|
||||
case 'OV': // Overschrijving
|
||||
case 'VZ': // Verzamelbetaling
|
||||
case 'IC': // Incasso
|
||||
$this->removeIBANIngDescription();
|
||||
$this->removeNameIngDescription();
|
||||
// if "tegenrekening" empty, copy the description. Primitive, but it works.
|
||||
$this->copyDescriptionToOpposite();
|
||||
case 'DV': // Divers
|
||||
$this->removeIBANIngDescription(); // Remove "IBAN:", because it is already at "Tegenrekening"
|
||||
$this->removeNameIngDescription(); // Remove "Naam:", because it is already at "Naam/ Omschrijving"
|
||||
$this->removeIngDescription(); // Remove "Omschrijving", but not the value from description
|
||||
$this->moveValutadatumDescription(); // Move "Valutadatum" from description to new column
|
||||
$this->MoveSavingsAccount(); // Move savings account number and name
|
||||
break;
|
||||
case 'BA': // Betaalautomaat
|
||||
$this->moveValutadatumDescription(); // Move "Valutadatum" from description to new column
|
||||
$this->addNameIngDescription();
|
||||
break;
|
||||
}
|
||||
@ -99,33 +103,60 @@ class IngDescription implements SpecificInterface
|
||||
$this->row[8] = $this->row[1] . ' ' . $this->row[8];
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove "Omschrijving" (and NOT its value) from the description.
|
||||
*/
|
||||
protected function removeIngDescription(): void
|
||||
{
|
||||
$this->row[8] = preg_replace('/Omschrijving: /', '', $this->row[8]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove IBAN number out of the description
|
||||
* Default description of Description is: Naam: <OPPOS NAME> Omschrijving: <DESCRIPTION> IBAN: <OPPOS IBAN NR>.
|
||||
*/
|
||||
protected function removeIBANIngDescription(): void
|
||||
{
|
||||
// Try replace the iban number with nothing. The IBAN nr is found in the third row
|
||||
// Try replace the iban number with nothing. The IBAN nr is found in the third column
|
||||
$this->row[8] = preg_replace('/\sIBAN:\s' . $this->row[3] . '/', '', $this->row[8]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove name from the description (Remove everything before the description incl the word 'Omschrijving' ).
|
||||
* Remove "Naam" (and its value) from the description.
|
||||
*/
|
||||
protected function removeNameIngDescription(): void
|
||||
{
|
||||
// Try remove everything before the 'Omschrijving'
|
||||
$this->row[8] = preg_replace('/.+Omschrijving: /', '', $this->row[8]);
|
||||
$this->row[8] = preg_replace('/Naam:.*?([a-zA-Z\/]+:)/', '$1', $this->row[8]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy description to name of opposite account.
|
||||
* Move "Valutadatum" from the description to new column.
|
||||
*/
|
||||
private function copyDescriptionToOpposite(): void
|
||||
protected function moveValutadatumDescription(): void
|
||||
{
|
||||
$search = ['Naar Oranje Spaarrekening ', 'Afschrijvingen'];
|
||||
$matches = array();
|
||||
preg_match('/Valutadatum: ([0-9-]+)/', $this->row[8], $matches);
|
||||
$this->row[9] = date("Ymd", strtotime($matches[1]));
|
||||
$this->row[8] = preg_replace('/Valutadatum: [0-9-]+/', '', $this->row[8]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Move savings account number to column 1 and name to column 3.
|
||||
*/
|
||||
private function MoveSavingsAccount(): void
|
||||
{
|
||||
$matches = array();
|
||||
if ('' === (string)$this->row[3]) {
|
||||
$this->row[3] = trim(str_ireplace($search, '', $this->row[8]));
|
||||
if (preg_match('/(Naar|Van) (.*rekening) ([0-9]+)/', $this->row[8], $matches)) {
|
||||
$matches[3] = sprintf("%010d", $matches[3]);
|
||||
$this->row[1] = $matches[2]; // Savings account name
|
||||
$this->row[3] = $matches[3]; // Savings account number
|
||||
$this->row[8] = preg_replace('/(Naar|Van) (.*rekening) ([0-9]+)/', '', $this->row[8]); // Remove the savings account content from description
|
||||
} elseif (preg_match('/(Naar|Van) (.*rekening) ([0-9]+)/', $this->row[1], $matches)) {
|
||||
$matches[3] = sprintf("%010d", $matches[3]);
|
||||
$this->row[1] = $matches[2]; // Savings account name
|
||||
$this->row[3] = $matches[3]; // Savings account number
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -473,7 +473,9 @@ class AccountRepository implements AccountRepositoryInterface
|
||||
if (AccountType::ASSET !== $account->accountType->type) {
|
||||
throw new FireflyException(sprintf('%s is not an asset account.', $account->name));
|
||||
}
|
||||
$name = $account->name . ' reconciliation';
|
||||
|
||||
$name = trans('firefly.reconciliation_account_name', ['name' => $account->name]);
|
||||
|
||||
/** @var AccountType $type */
|
||||
$type = AccountType::where('type', AccountType::RECONCILIATION)->first();
|
||||
$accounts = $this->user->accounts()->where('account_type_id', $type->id)->get();
|
||||
|
@ -198,7 +198,7 @@ class NoCategoryRepository implements NoCategoryRepositoryInterface
|
||||
'currency_code' => $journal['currency_code'],
|
||||
'currency_decimal_places' => $journal['currency_decimal_places'],
|
||||
];
|
||||
$array[$currencyId]['sum'] = bcadd($array[$currencyId]['sum'], app('steam')->negative($journal['amount']));
|
||||
$array[$currencyId]['sum'] = bcadd($array[$currencyId]['sum'], app('steam')->negative($journal['amount'] ?? '0'));
|
||||
}
|
||||
|
||||
return $array;
|
||||
|
@ -23,6 +23,7 @@ declare(strict_types=1);
|
||||
namespace FireflyIII\Repositories\Journal;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use FireflyIII\Exceptions\FireflyException;
|
||||
use FireflyIII\Models\Account;
|
||||
use FireflyIII\Models\Note;
|
||||
use FireflyIII\Models\Transaction;
|
||||
@ -386,6 +387,9 @@ class JournalRepository implements JournalRepositoryInterface
|
||||
{
|
||||
/** @var Transaction $transaction */
|
||||
$transaction = $journal->transactions()->with('account')->where('amount', '<', 0)->first();
|
||||
if (null === $transaction) {
|
||||
throw new FireflyException(sprintf('Your administration is broken. Transaction journal #%d has no source transaction.', $journal->id));
|
||||
}
|
||||
|
||||
return $transaction->account;
|
||||
}
|
||||
@ -397,6 +401,9 @@ class JournalRepository implements JournalRepositoryInterface
|
||||
{
|
||||
/** @var Transaction $transaction */
|
||||
$transaction = $journal->transactions()->with('account')->where('amount', '>', 0)->first();
|
||||
if (null === $transaction) {
|
||||
throw new FireflyException(sprintf('Your administration is broken. Transaction journal #%d has no destination transaction.', $journal->id));
|
||||
}
|
||||
|
||||
return $transaction->account;
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ declare(strict_types=1);
|
||||
namespace FireflyIII\Repositories\Journal;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use FireflyIII\Exceptions\FireflyException;
|
||||
use FireflyIII\Models\Account;
|
||||
use FireflyIII\Models\TransactionGroup;
|
||||
use FireflyIII\Models\TransactionJournal;
|
||||
@ -114,7 +115,9 @@ interface JournalRepositoryInterface
|
||||
* Returns the source account of the journal.
|
||||
*
|
||||
* @param TransactionJournal $journal
|
||||
*
|
||||
* @return Account
|
||||
* @throws FireflyException
|
||||
*/
|
||||
public function getSourceAccount(TransactionJournal $journal): Account;
|
||||
|
||||
@ -123,6 +126,7 @@ interface JournalRepositoryInterface
|
||||
*
|
||||
* @param TransactionJournal $journal
|
||||
* @return Account
|
||||
* @throws FireflyException
|
||||
*/
|
||||
public function getDestinationAccount(TransactionJournal $journal): Account;
|
||||
|
||||
|
@ -97,8 +97,8 @@ trait UserNavigation
|
||||
/** @var Transaction $transaction */
|
||||
foreach ($transactions as $transaction) {
|
||||
$type = $transaction->account->accountType->type;
|
||||
if (!in_array($type, $ignore)) {
|
||||
return redirect(route('accounts.show', [$transaction->account_id]));
|
||||
if (!in_array($type, $ignore, true)) {
|
||||
return redirect(route('accounts.edit', [$transaction->account_id]));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,8 +76,15 @@ class Steam
|
||||
->where('transactions.transaction_currency_id', '!=', $currency->id)
|
||||
->sum('transactions.foreign_amount');
|
||||
|
||||
// check:
|
||||
Log::debug(sprintf('Steam::balance. Native balance is "%s"', $nativeBalance));
|
||||
Log::debug(sprintf('Steam::balance. Foreign balance is "%s"', $foreignBalance));
|
||||
|
||||
$balance = bcadd($nativeBalance, $foreignBalance);
|
||||
$virtual = null === $account->virtual_balance ? '0' : (string)$account->virtual_balance;
|
||||
|
||||
Log::debug(sprintf('Steam::balance. Virtual balance is "%s"', $virtual));
|
||||
|
||||
$balance = bcadd($balance, $virtual);
|
||||
$cache->store($balance);
|
||||
|
||||
|
@ -147,7 +147,7 @@ class General extends AbstractExtension
|
||||
'balance',
|
||||
static function (?Account $account): string {
|
||||
if (null === $account) {
|
||||
return 'NULL';
|
||||
return '0';
|
||||
}
|
||||
/** @var Carbon $date */
|
||||
$date = session('end', Carbon::now()->endOfMonth());
|
||||
|
@ -2,7 +2,7 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [5.1.0 (API 1.0.0)] - 2020-03-xx
|
||||
## [5.1.0 (API 1.0.0)] - 2020-03-06
|
||||
|
||||
Before this release came out, several alpha and beta versions had been released already:
|
||||
|
||||
@ -45,6 +45,11 @@ Before this release came out, several alpha and beta versions had been released
|
||||
- [Issue 3137](https://github.com/firefly-iii/firefly-iii/issues/3137) Fix mis-alignment in table rows.
|
||||
- [Issue 3140](https://github.com/firefly-iii/firefly-iii/issues/3140) New user email message had a broken link.
|
||||
- [Issue 3141](https://github.com/firefly-iii/firefly-iii/issues/3141) Cache issue
|
||||
- [Issue 3145](https://github.com/firefly-iii/firefly-iii/issues/3145) Issue with empty charts.
|
||||
- [Issue 3146](https://github.com/firefly-iii/firefly-iii/issues/3146) Better handling of CSV imports from ING.
|
||||
- [Issue 3154](https://github.com/firefly-iii/firefly-iii/issues/3154) Problem with bcadd() in PHP 7.4
|
||||
- [Issue 3159](https://github.com/firefly-iii/firefly-iii/issues/3159) Fixed some untranslatable strings.
|
||||
- Bad redirect when editing opening balances.
|
||||
|
||||
### API
|
||||
- [Issue 3097](https://github.com/firefly-iii/firefly-iii/issues/3097) Unifying API models
|
||||
|
482
composer.lock
generated
482
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -137,7 +137,7 @@ return [
|
||||
],
|
||||
|
||||
'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
||||
'version' => '5.1.0-beta.1',
|
||||
'version' => '5.1.0',
|
||||
'api_version' => '1.0.1',
|
||||
'db_version' => 12,
|
||||
'maxUploadSize' => 15242880,
|
||||
|
@ -19,10 +19,9 @@
|
||||
"laravel-mix": "^4.1.2",
|
||||
"laravel-mix-bundle-analyzer": "^1.0.5",
|
||||
"uiv": "^0.31.5",
|
||||
"vue-i18n": "^8.14.1",
|
||||
"vue": "^2.6.10",
|
||||
"vue-i18n": "^8.14.1",
|
||||
"vue-template-compiler": "^2.6.10"
|
||||
},
|
||||
"dependencies": {
|
||||
}
|
||||
"dependencies": {}
|
||||
}
|
||||
|
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
2
public/v1/js/app_vue.js
vendored
2
public/v1/js/app_vue.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
15
public/v1/js/ff/charts.js
vendored
15
public/v1/js/ff/charts.js
vendored
@ -374,7 +374,20 @@ function drawAChart(URI, container, chartType, options, colorData) {
|
||||
|
||||
$.getJSON(URI).done(function (data) {
|
||||
containerObj.removeClass('general-chart-error');
|
||||
if (data.labels.length === 0) {
|
||||
|
||||
// if result is empty array, or the labels array is empty, show error.
|
||||
// console.log(URI);
|
||||
// console.log(data.length);
|
||||
// console.log(typeof data.labels);
|
||||
// console.log(data.labels.length);
|
||||
if (
|
||||
// is undefined
|
||||
typeof data === 'undefined' ||
|
||||
// is empty
|
||||
0 === data.length ||
|
||||
// isn't empty but contains no labels
|
||||
(typeof data === 'object' && typeof data.labels === 'object' && 0 === data.labels.length)
|
||||
) {
|
||||
// remove the chart container + parent
|
||||
var holder = $('#' + container).parent().parent();
|
||||
if (holder.hasClass('box') || holder.hasClass('box-body')) {
|
||||
|
2
public/v1/js/profile.js
vendored
2
public/v1/js/profile.js
vendored
File diff suppressed because one or more lines are too long
@ -20,7 +20,7 @@
|
||||
"tags": "\u0395\u03c4\u03b9\u03ba\u03ad\u03c4\u03b5\u03c2",
|
||||
"no_budget": "(\u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc)",
|
||||
"category": "\u039a\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1",
|
||||
"attachments": "\u03a3\u03c5\u03bd\u03bd\u03b7\u03bc\u03ad\u03bd\u03b1",
|
||||
"attachments": "\u03a3\u03c5\u03bd\u03b7\u03bc\u03bc\u03ad\u03bd\u03b1",
|
||||
"notes": "\u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9\u03c2",
|
||||
"update_transaction": "\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c5\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae\u03c2",
|
||||
"after_update_create_another": "\u039c\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7, \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03b5\u03b4\u03ce \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1.",
|
||||
|
1
resources/lang/.gitignore
vendored
1
resources/lang/.gitignore
vendored
@ -9,3 +9,4 @@ sr_CS
|
||||
et_EE
|
||||
bg_BG
|
||||
tlh_AA
|
||||
vi_VN
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Upravit transakci „:description“',
|
||||
'edit_reconciliation' => 'Upravit „:description“',
|
||||
'delete_journal' => 'Odstranit transakci „:description“',
|
||||
'delete_group' => 'Odstranit transakci „:description“',
|
||||
'tags' => 'Štítky',
|
||||
'createTag' => 'Vytvořit nový štítek',
|
||||
'edit_tag' => 'Upravit štítek „:tag“',
|
||||
|
@ -32,7 +32,7 @@ return [
|
||||
'month_and_day_no_year' => '%B %e',
|
||||
'date_time' => '%e %B %Y, @ %T',
|
||||
'specific_day' => '%e %B %Y',
|
||||
'week_in_year' => 'Week %V, %G',
|
||||
'week_in_year' => 'Týden %V, %G',
|
||||
'year' => '%Y',
|
||||
'half_year' => '%B %Y',
|
||||
'month_js' => 'MMMM YYYY',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'average_per_bill' => 'průměr na účet',
|
||||
'expected_total' => 'očekávaný celkový součet',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Požadavek na ověření – Firefly III verze :version',
|
||||
'authorization_request_intro' => '<strong>:client</strong> žádá oprávnění pro přístup k vaší finanční správě. Chcete autorizovat <strong>:client</strong> pro přístup k těmto záznamům?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name v :currency',
|
||||
'paid_in_currency' => 'Zaplaceno v :currency',
|
||||
'unpaid_in_currency' => 'Nezaplaceno v :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Zjistit dostupnost případných aktualizací',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(partially) refunds',
|
||||
'(partially) pays for_outward' => '(partially) pays for',
|
||||
'(partially) reimburses_outward' => '(partially) reimburses',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Rozúčtování',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Simulovat import',
|
||||
@ -237,7 +238,7 @@ return [
|
||||
|
||||
|
||||
// import status page:
|
||||
'import_with_key' => 'Importovat s klíčem „:key“',
|
||||
'import_with_key' => 'Importováno s klíčem „:key“',
|
||||
'status_wait_title' => 'Vyčkejte…',
|
||||
'status_wait_text' => 'Toto okno za okamžik zmizí.',
|
||||
'status_running_title' => 'Import je spuštěn',
|
||||
|
@ -47,11 +47,11 @@ return [
|
||||
'transactions_create_deposit_split_add' => 'Pokud chcete transakci rozúčtovat, přidejte další rozúčtování pomocí tohoto tlačítka',
|
||||
|
||||
// transactions (transfer)
|
||||
'transactions_create_transfer_source' => 'Select the source asset account here.',
|
||||
'transactions_create_transfer_destination' => 'Select the destination asset account here.',
|
||||
'transactions_create_transfer_foreign_currency' => 'Use this field to set a foreign currency and amount.',
|
||||
'transactions_create_transfer_source' => 'Zde vyberte zdrojový účet aktiv.',
|
||||
'transactions_create_transfer_destination' => 'Zde vyberte cílový účet aktiv.',
|
||||
'transactions_create_transfer_foreign_currency' => 'Tuto kolonku použijte pro zadání cizí měny a částky.',
|
||||
'transactions_create_transfer_more_meta' => 'Plenty of other meta data you set in these fields.',
|
||||
'transactions_create_transfer_split_add' => 'If you want to split a transaction, add more splits with this button',
|
||||
'transactions_create_transfer_split_add' => 'Pokud chcete transakci rozúčtovat, přidejte další rozúčtování pomocí tohoto tlačítka',
|
||||
|
||||
// create account:
|
||||
'accounts_create_iban' => 'Zadejte u svých účtů platný IBAN identifikátor. To by v budoucnu mohlo velmi ulehčit import dat.',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Transaktion ":description" bearbeiten',
|
||||
'edit_reconciliation' => '„:description” bearbeiten',
|
||||
'delete_journal' => 'Transaktion ":description" löschen',
|
||||
'delete_group' => 'Buchung „:description” löschen',
|
||||
'tags' => 'Schlagwörter',
|
||||
'createTag' => 'Neues Schlagwort erstellen',
|
||||
'edit_tag' => 'Schlagwort „:tag” bearbeiten',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'nur aktive und erwartete Rechnungen',
|
||||
'average_per_bill' => 'Durchschnitt je Rechnung',
|
||||
'expected_total' => 'Voraussichtliche Summe',
|
||||
'reconciliation_account_name' => ':name Kontenabgleich',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name in :currency',
|
||||
'paid_in_currency' => 'Bezahlt in :currency',
|
||||
'unpaid_in_currency' => 'Unbezahlt in :currency',
|
||||
'is_alpha_warning' => 'Sie nutzen eine ALPHA-Version. Seien Sie vorsichtig bei Fehlern und Problemen.',
|
||||
'is_beta_warning' => 'Sie verwenden eine BETA-Version. Seien Sie vorsichtig bei Fehlern und Problemen.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Nach Updates suchen',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(Teil-)Erstattungen',
|
||||
'(partially) pays for_outward' => '(teilweise) bezahlt für',
|
||||
'(partially) reimburses_outward' => '(Teil-)Erstattungen',
|
||||
'is (partially) refunded by' => 'wird (teilweise) zurückerstattet von',
|
||||
'is (partially) paid for by' => 'wird (teilweise) bezahlt von',
|
||||
'is (partially) reimbursed by' => 'wird (teilweise) erstattet von',
|
||||
'relates to' => 'bezieht sich auf',
|
||||
'(partially) refunds' => '(Teil-)Rückerstattungen',
|
||||
'(partially) pays for' => '(Teil-)Zahlung für',
|
||||
'(partially) reimburses' => '(Teil-)Erstattungen',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Teile',
|
||||
|
@ -180,11 +180,11 @@ return [
|
||||
'also_delete_connections' => 'Die einzige Transaktion, die mit diesem Verknüpfungstyp verknüpft ist, verliert diese Verbindung. • Alle :count Buchungen, die mit diesem Verknüpfungstyp verknüpft sind, verlieren ihre Verbindung.',
|
||||
'also_delete_rules' => 'Die einzige Regel, die mit diesem Konto verknüpft ist, wird ebenfalls gelöscht. | Alle :count Regeln, die mit diesem Konto verknüpft sind, werden ebenfalls gelöscht.',
|
||||
'also_delete_piggyBanks' => 'Das einzige Sparschwein, das mit diesem Konto verknüpft ist, wird ebenfalls gelöscht. | Alle :count Sparschweine, die mit diesem Konto verknüpft sind, werden ebenfalls gelöscht.',
|
||||
'bill_keep_transactions' => 'Die einzige mit dieser Rechnung verbundene Buchung wird nicht gelöscht. | Alle :count Buchungen, die mit dieser Rechnung verbunden sind, werden nicht gelöscht.',
|
||||
'budget_keep_transactions' => 'Die einzige diesem Budget zugeordnete Buchung wird nicht gelöscht. | Alle :count Buchungen, die diesem Budget zugeordnet sind, werden nicht gelöscht.',
|
||||
'category_keep_transactions' => 'Die einzige Buchung, die mit dieser Kategorie verbunden ist, wird nicht gelöscht. | Alle :count Buchungen, die mit dieser Kategorie verbunden sind, werden nicht gelöscht.',
|
||||
'recurring_keep_transactions' => 'Die einzige Buchung, die durch diesen Dauerauftrag erstellt wurde, wird nicht gelöscht. | Alle :count Buchungen, die durch diesen Dauerauftrag erstellt wurden, werden nicht gelöscht.',
|
||||
'tag_keep_transactions' => 'Das einzige mit dieser Rechnung verbundene Schlagwort wird nicht gelöscht. | Alle :count Schlagwörter, die mit dieser Rechnung verbunden sind, werden nicht gelöscht.',
|
||||
'bill_keep_transactions' => 'Die einzige mit dieser Rechnung verbundene Buchung wird nicht gelöscht. | Keine der :count Buchungen, die mit dieser Rechnung verbunden sind, wird gelöscht.',
|
||||
'budget_keep_transactions' => 'Die einzige diesem Budget zugeordnete Buchung wird nicht gelöscht. | Keine der :count Buchungen, die diesem Budget zugeordnet sind, wird gelöscht.',
|
||||
'category_keep_transactions' => 'Die einzige Buchung, die mit dieser Kategorie verbunden ist, wird nicht gelöscht. | Keine der :count Buchungen, die mit dieser Kategorie verbunden sind, wird gelöscht.',
|
||||
'recurring_keep_transactions' => 'Die einzige Buchung, die durch diesen Dauerauftrag erstellt wurde, wird nicht gelöscht. | Keine der :count Buchungen, die durch diesen Dauerauftrag erstellt wurden, wird gelöscht.',
|
||||
'tag_keep_transactions' => 'Das einzige mit dieser Rechnung verbundene Schlagwort wird nicht gelöscht. | Keines der :count Schlagwörter, die mit dieser Rechnung verbunden sind, wird gelöscht.',
|
||||
'check_for_updates' => 'Nach Updates suchen',
|
||||
|
||||
'email' => 'E-Mail Adresse',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'Wie in <a href="https://www.patreon.com/posts/future-updates-30012174">diesem Artikel auf Patreon</a> beschrieben, wird sich die Art und Weise, wie Firefly III den Datenimport verwaltet, ändern. Dies bedeutet, dass der CSV-Import in ein neues, separates Modul verschoben wird. Sie können dieses Modul bereits als Beta-Version testen, wenn Sie <a href="https://github.com/firefly-iii/csv-importer">dieses GitHub-Repository</a> besuchen. Ich würde es begrüßen, wenn Sie die neue Importfunktion testen und mir Ihre Meinung mitteilen würden.',
|
||||
'final_csv_import' => 'Wie in <a href="https://www.patreon.com/posts/future-updates-30012174">diesem Patreon-Beitrag</a> beschrieben, wird sich die Art und Weise ändern, wie Firefly III den Datenimport verwaltet. Das bedeutet, dass dies die letzte Version von Firefly III ist, die mit einem CSV-Importwerkzeug ausgeliefert wird. Es ist eine separate Anwendung verfügbar, die Sie selbst ausprobieren könnten: <a href="https://github.com/firefly-iii/csv-importer">den Firefly III CSV importer</a>. Ich würde es begrüßen, wenn Sie das neue Importwerkzeug testen und mir Ihre Meinung mitteilen würden.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Importfunktion testen',
|
||||
|
@ -40,7 +40,7 @@ return [
|
||||
'search_result' => 'Αποτελέσματα αναζήτησης για ":query"',
|
||||
'withdrawal_list' => 'Δαπάνες',
|
||||
'Withdrawal_list' => 'Δαπάνες',
|
||||
'deposit_list' => 'Έσοδα, καταθέσεις και πρόσοδα',
|
||||
'deposit_list' => 'Έσοδα και καταθέσεις',
|
||||
'transfer_list' => 'Μεταφορές',
|
||||
'transfers_list' => 'Μεταφορές',
|
||||
'reconciliation_list' => 'Συνδιαλλαγές',
|
||||
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Επεξεργασία συναλλαγής ":description"',
|
||||
'edit_reconciliation' => 'Επεξεργασία ":description"',
|
||||
'delete_journal' => 'Διαγραφή συναλλαγής ":description"',
|
||||
'delete_group' => 'Διαγραφή συναλλαγής ":description"',
|
||||
'tags' => 'Ετικέτες',
|
||||
'createTag' => 'Δημιουργία νέας ετικέτας',
|
||||
'edit_tag' => 'Επεξεργασία ετικέτας ":tag"',
|
||||
|
@ -51,7 +51,7 @@ return [
|
||||
'added_amount' => 'Προστέθηκαν :amount',
|
||||
'asset_account_role_help' => 'Όποιες επιπλέον επιλογές προκύψουν από την προτίμησή σας μπορούν να ρυθμιστούν αργότερα.',
|
||||
'Opening balance' => 'Υπόλοιπο έναρξης',
|
||||
'create_new_stuff' => 'Δημιουργία νέου υλικού',
|
||||
'create_new_stuff' => 'Νέα καταχώρηση',
|
||||
'new_withdrawal' => 'Νέα ανάληψη',
|
||||
'create_new_transaction' => 'Δημιουργία νέας συναλλαγής',
|
||||
'new_transaction' => 'Νέα συναλλαγή',
|
||||
@ -63,14 +63,14 @@ return [
|
||||
'go_to_categories' => 'Πηγαίνετε στις κατηγορίες σας',
|
||||
'go_to_bills' => 'Πηγαίνετε στα πάγια έξοδα',
|
||||
'go_to_expense_accounts' => 'Δείτε τους λογαριασμούς δαπανών σας',
|
||||
'go_to_revenue_accounts' => 'Δείτε τους λογαριασμούς προσόδων σας',
|
||||
'go_to_revenue_accounts' => 'Δείτε τους λογαριασμούς εσόδων σας',
|
||||
'go_to_piggies' => 'Πηγαίνετε στους κουμπαράδες σας',
|
||||
'new_deposit' => 'Νέα κατάθεση',
|
||||
'new_transfer' => 'Νέα μεταφορά',
|
||||
'new_transfers' => 'Νέα μεταφορά',
|
||||
'new_asset_account' => 'Νέος λογαριασμός κεφαλαίου',
|
||||
'new_expense_account' => 'Νέος λογαριασμός δαπανών',
|
||||
'new_revenue_account' => 'Νέος λογαριασμός προσόδων',
|
||||
'new_revenue_account' => 'Νέος λογαριασμός εσόδων',
|
||||
'new_liabilities_account' => 'Νέα υποχρέωση',
|
||||
'new_budget' => 'Νέος προϋπολογισμός',
|
||||
'new_bill' => 'Νέο πάγιο έξοδο',
|
||||
@ -103,7 +103,7 @@ return [
|
||||
'2fa_i_have_them' => 'Τους αποθήκευσα!',
|
||||
'warning_much_data' => ':days ημέρες δεδομένων θα καθυστερήσουν λιγάκι να φορτώσουν.',
|
||||
'registered' => 'Έχετε εγγραφεί επιτυχώς!',
|
||||
'Default asset account' => 'Προεπιλεγμένος λογαριασμός κεφαλαίου',
|
||||
'Default asset account' => 'Βασικός λογαριασμός κεφαλαίου',
|
||||
'no_budget_pointer' => 'Φαίνεται πως δεν έχετε ορίσει προϋπολογισμούς ακόμη. Πρέπει να δημιουργήσετε κάποιον στη σελίδα <a href=":link">προϋπολογισμών</a>. Οι προϋπολογισμοί σας βοηθούν να επιβλέπετε τις δαπάνες σας.',
|
||||
'Savings account' => 'Λογαριασμός αποταμίευσης',
|
||||
'Credit card' => 'Πιστωτική κάρτα',
|
||||
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'ενεργοί και αναμενόμενοι λογαριασμοί μόνο',
|
||||
'average_per_bill' => 'μέσος όρος ανά πάγιο έξοδο',
|
||||
'expected_total' => 'αναμενόμενο σύνολο',
|
||||
'reconciliation_account_name' => 'τακτοποίηση :name',
|
||||
// API access
|
||||
'authorization_request' => 'Αίτημα Εξουσιοδότησης Firefly III v:version',
|
||||
'authorization_request_intro' => 'Ο <strong>:client</strong> αιτείται άδεια πρόσβασης στην οικονομική σας διαχείριση. Θέλετε να εξουσιοδοτήσετε τον <strong>:client</strong> ώστε να έχει πρόσβαση σε αυτές τις εγγραφές;',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name σε :currency',
|
||||
'paid_in_currency' => 'Πληρώθηκε σε :currency',
|
||||
'unpaid_in_currency' => 'Απλήρωτο σε :currency',
|
||||
'is_alpha_warning' => 'Εκτελείτε μια προ-έκδοση ALPHA. Να είστε έτοιμοι να εντοπίσετε σφάλματα και άλλα ζητήματα.',
|
||||
'is_beta_warning' => 'Εκτελείτε μια δοκιμαστική έκδοση BETA. Να είστε έτοιμοι να εντοπίσετε σφάλματα και άλλα ζητήματα.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Έλεγχος ενημερώσεων',
|
||||
@ -291,7 +294,7 @@ return [
|
||||
// rules
|
||||
'rules' => 'Κανόνες',
|
||||
'rule_name' => 'Όνομα κανόνα',
|
||||
'rule_triggers' => 'Ο κανόνας οπλίζει όταν',
|
||||
'rule_triggers' => 'Ο κανόνας ενεργοποιείται όταν',
|
||||
'rule_actions' => 'Ο κανόνας θα',
|
||||
'new_rule' => 'Νέος κανόνας',
|
||||
'new_rule_group' => 'Νέα ομάδα κανόνα',
|
||||
@ -311,12 +314,12 @@ return [
|
||||
'save_rules_by_moving' => 'Αποθήκευση αυτού(ών) του(ων) κανόνα(ων) μετακινώντας τον(τους) σε άλλη ομάδα κανόνων:',
|
||||
'make_new_rule' => 'Δημιουργία νέου κανόνα στην ομάδα κανόνων ":title"',
|
||||
'make_new_rule_no_group' => 'Δημιουργία νέου κανόνα',
|
||||
'instructions_rule_from_bill' => 'Για να είστε σε θέση να αντιστοιχήσετε συναλλαγές με το νέο πάγιο έξοδο ":name", το Firefly III μπορεί να δημιουργήσει έναν κανόνα που θα ελέγχει κάθε συναλλαγή που αποθηκεύετε. Παρακαλώ επιβεβαιώστε τις λεπτομέρειες παρακάτω και αποθηκεύστε τον κανόνα ώστε το Firefly III να αντιστοιχεί αυτόματα τις συναλλαγές στο νέο πάγιο έξοδο εφεξής.',
|
||||
'instructions_rule_from_bill' => 'Για να είστε σε θέση να αντιστοιχήσετε συναλλαγές στο νέο λογαριασμό σας ":name", το Firefly III μπορεί να δημιουργήσει έναν κανόνα που θα ελέγχει κάθε συναλλαγή που αποθηκεύετε. Παρακαλώ επιβεβαιώστε τις λεπτομέρειες παρακάτω και αποθηκεύστε τον κανόνα ώστε το Firefly III να αντιστοιχεί αυτόματα τις συναλλαγές στο νέο σας λογαριασμό εφεξής.',
|
||||
'instructions_rule_from_journal' => 'Δημιουργία κανόνα που βασίζεται σε μία από τις συναλλαγές σας. Συμπληρώστε ή υποβάλετε μονομιάς την παρακάτω φόρμα.',
|
||||
'rule_is_strict' => 'αυστηρός κανόνας',
|
||||
'rule_is_not_strict' => 'μη-αυστηρός κανόνας',
|
||||
'rule_help_stop_processing' => 'Όταν τσεκάρετε αυτό το πλαίσιο, οι μετέπειτα κανόνες σε αυτή την ομάδα δεν θα εκτελεστούν.',
|
||||
'rule_help_strict' => 'Στους αυστηρούς κανόνες ΟΛΕΣ οι σκανδάλες πρέπει να ενεργοποιηθούν για να εκτελεστεί η ενέργεια(ες). Στους μη-αυστηρούς κανόνες, ΟΠΟΙΑΔΗΠΟΤΕ ενεργοποίηση σκανδάλης είναι αρκετή για να εκτελεστεί η ενέργεια(ες).',
|
||||
'rule_help_strict' => 'Στους αυστηρούς κανόνες πρέπει να ενεργοποιηθούν ΟΛΑ τα κριτήρια για να εκτελεστεί η αλυσίδα ενεργειών. Στους μη αυστηρούς κανόνες, η ενεργοποίηση ΟΠΟΙΟΥΔΗΠΟΤΕ κριτηρίου είναι αρκετή για να εκτελεστούν οι ενέργειες.',
|
||||
'rule_help_active' => 'Οι ανενεργοί κανόνες δεν εκτελούνται ποτέ.',
|
||||
'stored_new_rule' => 'Αποθηκεύτηκε νέος κανόνας με τίτλο ":title"',
|
||||
'deleted_rule' => 'Διεγράφη ο κανόνας με τίτλο ":title"',
|
||||
@ -330,10 +333,10 @@ return [
|
||||
'default_rule_trigger_from_account' => 'David Bowie',
|
||||
'default_rule_action_prepend' => 'Αγόρασε τον κόσμο από ',
|
||||
'default_rule_action_set_category' => 'Μεγάλες δαπάνες',
|
||||
'trigger' => 'Σκανδάλη',
|
||||
'trigger_value' => 'Σκανδάλη στην τιμή',
|
||||
'stop_processing_other_triggers' => 'Διακοπή επεξεργασίας άλλων σκανδαλών',
|
||||
'add_rule_trigger' => 'Προσθήκη νέας σκανδάλης',
|
||||
'trigger' => 'Κριτήριο',
|
||||
'trigger_value' => 'Τιμή ενεργοποίησης',
|
||||
'stop_processing_other_triggers' => 'Διακοπή ελέγχου στα υπόλοιπα κριτήρια',
|
||||
'add_rule_trigger' => 'Προσθήκη νέου κριτηρίου',
|
||||
'action' => 'Ενέργεια',
|
||||
'action_value' => 'Τιμή ενέργειας',
|
||||
'stop_executing_other_actions' => 'Διακοπή εκτέλεσης άλλων ενεργειών',
|
||||
@ -344,7 +347,7 @@ return [
|
||||
'test_rule_triggers' => 'Δείτε τις αντιστοιχιζόμενες συναλλαγές',
|
||||
'warning_transaction_subset' => 'Για λόγους απόδοσης αυτή η λίστα περιορίζεται σε :max_num_transactions και μπορεί να εμφανίσει μόνο ένα υποσύνολο αντιστοιχιζομένων συναλλαγών',
|
||||
'warning_no_matching_transactions' => 'Δεν βρέθηκαν αντιστοιχιζόμενες συναλλαγές. Παρακαλώ σημειώστε ότι για λόγους απόδοσης, μόνο οι τελευταίες :num_transactions συναλλαγές έχουν ελεγχθεί.',
|
||||
'warning_no_valid_triggers' => 'Δεν προμηθεύτηκαν έγκυρες σκανδάλες.',
|
||||
'warning_no_valid_triggers' => 'Δεν δώσατε έγκυρα κριτήρια.',
|
||||
'apply_rule_selection' => 'Εφαρμογή του κανόνα ":title" σε μία επιλογή των συναλλαγών σας',
|
||||
'apply_rule_selection_intro' => 'Κανόνες όπως ":title" εφαρμόζονται συνήθως σε νέες ή ενημερωμένες συναλλαγές, αλλά μπορείτε να πείτε στο Firefly ΙΙΙ να τους εκτελέσει σε μια επιλογή υπαρχόντων συναλλαγών. Αυτό μπορεί να είναι χρήσιμο όταν έχετε ενημερώσει έναν κανόνα και χρειάζεστε οι αλλαγές να εφαρμοστούν σε όλες τις άλλες συναλλαγές σας.',
|
||||
'include_transactions_from_accounts' => 'Συμπερίληψη συναλλαγών από αυτούς τους λογαριασμούς',
|
||||
@ -398,7 +401,7 @@ return [
|
||||
'rule_trigger_category_is_choice' => 'Η κατηγορία είναι..',
|
||||
'rule_trigger_category_is' => 'Η κατηγορία είναι ":trigger_value"',
|
||||
'rule_trigger_amount_less_choice' => 'Το ποσό είναι μικρότερο από..',
|
||||
'rule_trigger_amount_less' => 'Το ποσσό είναι μικρότερο από :trigger_value',
|
||||
'rule_trigger_amount_less' => 'Το ποσό είναι μικρότερο από :trigger_value',
|
||||
'rule_trigger_amount_exactly_choice' => 'Το ποσό είναι..',
|
||||
'rule_trigger_amount_exactly' => 'Το ποσό είναι :trigger_value',
|
||||
'rule_trigger_amount_more_choice' => 'Το ποσό είναι μεγαλύτερο από..',
|
||||
@ -417,8 +420,8 @@ return [
|
||||
'rule_trigger_tag_is' => 'Μία ετικέτα είναι ":trigger_value"',
|
||||
'rule_trigger_currency_is_choice' => 'Το νόμισμα της συναλλαγής είναι..',
|
||||
'rule_trigger_currency_is' => 'Το νόμισμα της συναλλαγής είναι ":trigger_value"',
|
||||
'rule_trigger_has_attachments_choice' => 'Έχει τουλάχιστον τόσα συννημένα',
|
||||
'rule_trigger_has_attachments' => 'Έχει τουλάχιστον :trigger_value συννημένο(α)',
|
||||
'rule_trigger_has_attachments_choice' => 'Έχει τουλάχιστον τόσα συνημμένα',
|
||||
'rule_trigger_has_attachments' => 'Έχει τουλάχιστον :trigger_value συνημμένα',
|
||||
'rule_trigger_store_journal' => 'Όταν δημιουργείται μια συναλλαγή',
|
||||
'rule_trigger_update_journal' => 'Όταν ενημερώνεται μία συναλλαγή',
|
||||
'rule_trigger_has_no_category_choice' => 'Δεν έχει κατηγορία',
|
||||
@ -493,7 +496,7 @@ return [
|
||||
'rule_for_bill_title' => 'Αυτόματα δημιουργημένος κανόνας για το πάγιο έξοδο ":name"',
|
||||
'rule_for_bill_description' => 'Αυτός ο κανόνας δημιουργείται αυτόματα στην προσπάθεια να αντιστοιχηθεί το πάγιο έξοδο ":name".',
|
||||
'create_rule_for_bill' => 'Δημιουργία νέου κανόνα για το πάγιο έξοδο ":name"',
|
||||
'create_rule_for_bill_txt' => 'Συγχαρητήρια, μόλις δημιουργήσατε έναν νέο πάγιο έξοδο με το όνομα ":name"! Το Firefly III μπορεί να αντιστοιχίσει αυτόματα νέες αναλήψεις σε αυτόν τον λογαριασμό. Για παράδειγμα, οποτεδήποτε πληρώνετε το ενοίκιο, ο λογαριασμός δαπανών "Ενοίκιο" θα συνδεθεί με αυτή τη δαπάνη. Με αυτόν τον τρόπο, το Firefly III μπορεί με ακρίβεια να σας δείξει ποια πάγια έξοδα είναι σε καθυστέρηση και ποια όχι. Για να γίνει αυτό, ένας νέος κανόνας πρέπει να δημιουργηθεί. Το Firefly III έχει συμπληρώσει κάποιες λογικές προεπιλογές για εσάς. Παρακαλώ επιβεβαιώστε ότι είναι σωστές. Εάν αυτές οι τιμές είναι σωστές, το Firefly III θα συνδέσει αυτόματα τη σωστή ανάληψη στο σωστό πάγιο έξοδο. Παρακαλώ ελέγξτε τις σκανδάλες για να δείτε εάν είναι σωστές και προσθέστε μερικές εάν είναι λάθος.',
|
||||
'create_rule_for_bill_txt' => 'Συγχαρητήρια, μόλις δημιουργήσατε ένα νέο πάγιο έξοδο με το όνομα ":name"! Το Firefly III μπορεί να αντιστοιχίσει αυτόματα μελλοντικές πληρωμές για το πάγιο έξοδο. Για παράδειγμα, οποτεδήποτε πληρώνετε το ενοίκιο, ο λογαριασμός δαπανών "Ενοίκιο" θα συνδεθεί με αυτή την πάγια δαπάνη. Με αυτό τον τρόπο, το Firefly III μπορεί να εμφανίσει με ακρίβεια ποια πάγια έξοδα είναι σε καθυστέρηση και ποια όχι. Για να μπορεί να γίνει αυτό, θα πρέπει να δημιουργηθεί ένας νέος κανόνας. Το Firefly III έχει συμπληρωμένες ορισμένες λογικές προεπιλογές για εσάς. Παρακαλώ επιβεβαιώστε ότι είναι σωστές. Εάν αυτές οι τιμές είναι σωστές, το Firefly III θα συνδέσει αυτόματα τη σωστή ανάλογη ανάληψη με το πάγιο έξοδο. Παρακαλώ ελέγξτε τα κριτήρια ενεργοποίησης του κανόνα για να δείτε εάν είναι σωστά και προσθέστε επιπλέον εάν χρειάζεται.',
|
||||
'new_rule_for_bill_title' => 'Κανόνας για το πάγιο έξοδο ":name"',
|
||||
'new_rule_for_bill_description' => 'Αυτός ο κανόνας μαρκάρει συναλλαγές για το πάγιο έξοδο ":name".',
|
||||
|
||||
@ -525,7 +528,7 @@ return [
|
||||
'pref_1D' => 'Μία ημέρα',
|
||||
'pref_1W' => 'Μία εβδομάδα',
|
||||
'pref_1M' => 'Ένα μήνα',
|
||||
'pref_3M' => 'Τρείς μήνες (τρίμηνο)',
|
||||
'pref_3M' => 'Τρεις μήνες (τρίμηνο)',
|
||||
'pref_6M' => 'Έξι μήνες (εξάμηνο)',
|
||||
'pref_1Y' => 'Ένα χρόνο',
|
||||
'pref_languages' => 'Γλώσσες',
|
||||
@ -533,7 +536,7 @@ return [
|
||||
'pref_custom_fiscal_year' => 'Ρυθμίσεις οικονομικού έτους',
|
||||
'pref_custom_fiscal_year_label' => 'Ενεργοποιημένο',
|
||||
'pref_custom_fiscal_year_help' => 'Σε χώρες που χρησιμοποιούν οικονομικό έτος διαφορετικό από 1 Ιανουαρίου εώς 31 Δεκεμβρίου, μπορείτε να ενεργοποιήσετε αυτή την επιλογή και να ορίσετε την αρχή και το τέλος του οικονομικού έτους',
|
||||
'pref_fiscal_year_start_label' => 'Ημερομηνία έναρξης οικονομικού έτους',
|
||||
'pref_fiscal_year_start_label' => 'Έναρξη οικονομικού έτους',
|
||||
'pref_two_factor_auth' => 'Επιβεβαίωση δύο βημάτων',
|
||||
'pref_two_factor_auth_help' => 'Όταν ενεργοποιήσετε την ταυτοποίηση 2 βημάτων (επίσης γνωστή και ως έλεγχος ταυτότητας δύο παραγόντων), προσθέτετε ένα ακόμη επίπεδο ασφάλειας στο λογαριασμό σας. Μπορείτε να συνδεθείτε με κάτι που ξέρετε (τον κωδικό σας) και κάτι που έχετε (έναν κωδικό επιβεβαίωσης). Οι κωδικοί επιβεβαίωσης δημιουργούνται αυτόματα από μία εφαρμογή στο τηλέφωνό σας, όπως το Authy ή το Google Authenticator.',
|
||||
'pref_enable_two_factor_auth' => 'Ενεργοποίηση επιβεβαίωσης 2 βημάτων',
|
||||
@ -546,7 +549,7 @@ return [
|
||||
'2fa_use_secret_instead' => 'Εάν δεν μπορείτε να σκανάρετε τον κωδικό QR, δοκιμάστε να χρησιμοποιήσετε το μυστικό ανταυτού: <code>:secret</code>.',
|
||||
'2fa_backup_codes' => 'Αποθηκεύστε αυτούς τους εφεδρικούς κωδικούς για να μπορείτε να έχετε πρόσβαση σε περίπτωση που χάσετε τη συσκευή σας.',
|
||||
'2fa_already_enabled' => 'Η επαλήθευση 2 βημάτων είναι ήδη ενεργοποιημένη.',
|
||||
'wrong_mfa_code' => 'Αυτός ο κώδικος MFA δεν είναι έγκυρος.',
|
||||
'wrong_mfa_code' => 'Αυτός ο κωδικός MFA δεν είναι έγκυρος.',
|
||||
'pref_save_settings' => 'Αποθήκευση ρυθμίσεων',
|
||||
'saved_preferences' => 'Οι προτιμήσεις αποθηκεύτηκαν!',
|
||||
'preferences_general' => 'Γενικά',
|
||||
@ -565,7 +568,7 @@ return [
|
||||
'pref_optional_fields_transaction_help' => 'Από προεπιλογή δεν μπορούν να ενεργοποιηθούν όλα τα πεδία όταν δημιουργείται μία νέα συναλλαγή (εξαιτίας της σύγχυσης). Παρακάτω, μπορείτε να ενεργοποιήσετε αυτά τα πεδία εάν νομίζετε ότι θα σας φανούν χρήσιμα. Φυσικά, όποιο πεδίο απενεργοποιείται, αλλά είναι ήδη συμπληρωμένο, θα συνεχίζει να εμφανίζεται ασχέτως της ρύθμισης.',
|
||||
'optional_tj_date_fields' => 'Πεδία ημερομηνίας',
|
||||
'optional_tj_business_fields' => 'Πεδία εταιρίας',
|
||||
'optional_tj_attachment_fields' => 'Πεδία συννημένου',
|
||||
'optional_tj_attachment_fields' => 'Πεδία συνημμένου',
|
||||
'pref_optional_tj_interest_date' => 'Ημερομηνία τοκισμού',
|
||||
'pref_optional_tj_book_date' => 'Ημερομηνία εγγραφής',
|
||||
'pref_optional_tj_process_date' => 'Ημερομηνία επεξεργασίας',
|
||||
@ -574,10 +577,10 @@ return [
|
||||
'pref_optional_tj_invoice_date' => 'Ημερομηνία τιμολόγησης',
|
||||
'pref_optional_tj_internal_reference' => 'Εσωτερική αναφορά',
|
||||
'pref_optional_tj_notes' => 'Σημειώσεις',
|
||||
'pref_optional_tj_attachments' => 'Συννημένα',
|
||||
'pref_optional_tj_attachments' => 'Συνημμένα',
|
||||
'optional_field_meta_dates' => 'Ημερομηνίες',
|
||||
'optional_field_meta_business' => 'Επιχείρηση',
|
||||
'optional_field_attachments' => 'Συννημένα',
|
||||
'optional_field_attachments' => 'Συνημμένα',
|
||||
'optional_field_meta_data' => 'Προαιρετικά μετα-δεδομένα',
|
||||
|
||||
// profile:
|
||||
@ -586,7 +589,7 @@ return [
|
||||
'delete_all_categories' => 'Διαγραφή ΟΛΩΝ των κατηγοριών',
|
||||
'delete_all_tags' => 'Διαγραφή ΟΛΩΝ των ετικετών',
|
||||
'deleted_all_budgets' => 'Όλοι οι προϋπολογισμοί έχουν διαγραφεί',
|
||||
'deleted_all_categories' => 'Όλες οι κατηγορίες έχουν διεγραφεί',
|
||||
'deleted_all_categories' => 'Όλες οι κατηγορίες έχουν διαγραφεί',
|
||||
'deleted_all_tags' => 'Όλες οι ετικέτες έχουν διαγραφεί',
|
||||
'change_your_password' => 'Αλλαγή του κωδικού σας',
|
||||
'delete_account' => 'Διαγραφή λογαριασμού',
|
||||
@ -613,19 +616,19 @@ return [
|
||||
'secure_pw_should' => 'Θα πρέπει να τσεκάρω αυτό το πλαίσιο;',
|
||||
'secure_pw_long_password' => 'Ναι. Πάντα να επιβεβαιώνετε ότι ο κωδικός σας είναι ασφαλής.',
|
||||
'command_line_token' => 'Τεκμήριο γραμμής εντολών',
|
||||
'explain_command_line_token' => 'Χρειάζεστε αυτό το τεκμήριο για να πραγματοποιήσετε επιλογές γραμμής εντολών, όπως την εισαγωγή ή εξαγωγή δεδομένων. Χωρίς αυτό, τέτοιες ευαίσθητες εντολές δε θα λειτουργήσουν. Μη γνωστοποιείτε σε κανέναν το τεκμήριο γραμμής εντολών. Κανένας δε θα σας στο ζητήσει, ούτε καν εγώ. Εάν φοβάστε ότι το χάσατε, ή είστε παρανοϊκός, επαναδημιουργήστε αυτό το τεκμήριο χρησιμοποιώντας αυτό το κουμπί.',
|
||||
'regenerate_command_line_token' => 'Επαναδημιουργία τεκμηρίου εντολής γραμμών',
|
||||
'explain_command_line_token' => 'Χρειάζεστε αυτό το τεκμήριο για να πραγματοποιήσετε επιλογές γραμμής εντολών, όπως την εισαγωγή ή εξαγωγή δεδομένων. Χωρίς αυτό, τέτοιες ευαίσθητες εντολές δε θα λειτουργήσουν. Μη γνωστοποιείτε σε κανέναν το τεκμήριο γραμμής εντολών. Κανένας δε θα σας στο ζητήσει, ούτε καν εγώ. Εάν φοβάστε ότι το χάσατε, ή είστε παρανοϊκός, αναδημιουργήστε αυτό το τεκμήριο χρησιμοποιώντας αυτό το κουμπί.',
|
||||
'regenerate_command_line_token' => 'Αναδημιουργία τεκμηρίου εντολής γραμμών',
|
||||
'token_regenerated' => 'Ένα νέο τεκμήριο γραμμής εντολών δημιουργήθηκε',
|
||||
'change_your_email' => 'Αλλάξτε την διεύθυνση email σας',
|
||||
'email_verification' => 'Ένα μήνυμα email θα σταλεί στην παλιά ΚΑΙ στη νέα σας διεύθυνση email. Για λόγους ασφαλείας, δεν θα μπορέσετε να συνδεθείτε εώς ότου επιβεβαιώσετε τη νέα σας διεύθυνση email. Εάν δεν είστε σίγουροι ότι η δική σας εγκατάσταση Firefly III μπορεί να στείλει email, παρακαλώ μην χρησιμοποιήσετε αυτή τη δυνατότητα. Εάν είστε διαχειριστής μπορείτε να δοκιμάσετε αυτή τη λειτουργία στη <a href="/admin">Διαχείρηση</a>.',
|
||||
'email_verification' => 'Ένα μήνυμα email θα σταλεί στην παλιά ΚΑΙ στη νέα σας διεύθυνση email. Για λόγους ασφαλείας, δεν θα μπορέσετε να συνδεθείτε εώς ότου επιβεβαιώσετε τη νέα σας διεύθυνση email. Εάν δεν είστε σίγουροι ότι η δική σας εγκατάσταση Firefly III μπορεί να στείλει email, παρακαλώ μην χρησιμοποιήσετε αυτή τη δυνατότητα. Εάν είστε διαχειριστής μπορείτε να δοκιμάσετε αυτή τη λειτουργία στη <a href="/admin">Διαχείριση</a>.',
|
||||
'email_changed_logout' => 'Μέχρι να επιβεβαιώσετε την διεύθυνση email σας, δεν μπορείτε να συνδεθείτε.',
|
||||
'login_with_new_email' => 'Τώρα μπορείτε να συνδεθείτε με τη νέα σας διεύθυνση email.',
|
||||
'login_with_old_email' => 'Τώρα μπορείτε να συνδεθείτε με το παλιό σας email ξανά.',
|
||||
'login_provider_local_only' => 'Αυτή η λειτουργία δεν είναι διαθέσιμη όταν πιστοποιήστε μέσω ":login_provider".',
|
||||
'delete_local_info_only' => 'Επειδή πιστοποιηθήκατε μέσω ":login_provider", αυτό θα διαγράχει μόνο τοπικές πληροφορίες Firefly III.',
|
||||
'delete_local_info_only' => 'Επειδή η ταυτοποίηση έγινε μέσω ":login_provider", αυτό θα διαγράφει μόνο πληροφορίες τοπικής εγκατάστασης του Firefly III.',
|
||||
|
||||
// export data:
|
||||
'import_and_export_menu' => 'Εισαγωγή και εξαγωγή',
|
||||
'import_and_export_menu' => 'Εισαγωγή / Εξαγωγή',
|
||||
'export_data_title' => 'Εξαγωγή δεδομένων από το Firefly III',
|
||||
'export_data_menu' => 'Εξαγωγή δεδομένων',
|
||||
'export_data_bc' => 'Εξαγωγή δεδομένων από το Firefly III',
|
||||
@ -635,22 +638,22 @@ return [
|
||||
'export_data_advanced_expl' => 'Εάν χρειάζεστε έναν πιο εξειδικευμένο ή συγκεκριμένο τύπο εξαγωγής, διαβάστε τη βοήθεια για το πως να χρησιμοποιήσετε την κονσόλα εντολών <code>php artisan help firefly-iii:export-data</code>.',
|
||||
|
||||
// attachments
|
||||
'nr_of_attachments' => 'Ένα συννημένο|:count συννημένα',
|
||||
'attachments' => 'Συννημένα',
|
||||
'edit_attachment' => 'Τροποποίηση συννημένου ":name"',
|
||||
'update_attachment' => 'Ενημέρωση συννημένου',
|
||||
'delete_attachment' => 'Διαγραφή συννημένου ":name"',
|
||||
'attachment_deleted' => 'Διεγράφη το συννημένο ":name"',
|
||||
'nr_of_attachments' => 'Ένα συνημμένο|:count συνημμένα',
|
||||
'attachments' => 'Συνημμένα',
|
||||
'edit_attachment' => 'Τροποποίηση συνημμένου ":name"',
|
||||
'update_attachment' => 'Ενημέρωση συνημμένου',
|
||||
'delete_attachment' => 'Διαγραφή συνημμένου ":name"',
|
||||
'attachment_deleted' => 'Διεγράφη το συνημμένο ":name"',
|
||||
'liabilities_deleted' => 'Διεγράφη η υποχρέωση ":name"',
|
||||
'attachment_updated' => 'Ενημερώθηκε το συννημένο ":name"',
|
||||
'attachment_updated' => 'Ενημερώθηκε το συνημμένο ":name"',
|
||||
'upload_max_file_size' => 'Μέγιστο μέγεθος αρχείου: :size',
|
||||
'list_all_attachments' => 'Λίστα όλων των συννημένων',
|
||||
'list_all_attachments' => 'Λίστα όλων των συνημμένων',
|
||||
|
||||
// transaction index
|
||||
'title_expenses' => 'Δαπάνες',
|
||||
'title_withdrawal' => 'Δαπάνες',
|
||||
'title_revenue' => 'Έσοδα / Πρόσοδα',
|
||||
'title_deposit' => 'Έσοδα / Πρόσοδα',
|
||||
'title_revenue' => 'Έσοδα',
|
||||
'title_deposit' => 'Έσοδα',
|
||||
'title_transfer' => 'Μεταφορές',
|
||||
'title_transfers' => 'Μεταφορές',
|
||||
|
||||
@ -821,31 +824,31 @@ return [
|
||||
'details_for_cash' => 'Λεπτομέρειες για to λογαριασμό μετρητών ":name"',
|
||||
'store_new_asset_account' => 'Αποθήκευση νέου λογαριασμού κεφαλαίου',
|
||||
'store_new_expense_account' => 'Αποθήκευση νέου λογαριασμού δαπανών',
|
||||
'store_new_revenue_account' => 'Αποθήκευση νέου λογαριασμού προσόδων',
|
||||
'store_new_revenue_account' => 'Αποθήκευση νέου λογαριασμού εσόδων',
|
||||
'edit_asset_account' => 'Επεξεργασία του κεφαλαιακού λογαριασμού ":name"',
|
||||
'edit_expense_account' => 'Επεξεργασία του λογαριασμού δαπανών ":name"',
|
||||
'edit_revenue_account' => 'Επεξεργασία λογαριασμού προσόδων ":name"',
|
||||
'edit_revenue_account' => 'Επεξεργασία λογαριασμού εσόδων ":name"',
|
||||
'delete_asset_account' => 'Διαγραφή του κεφαλαιακού λογαριασμού ":name"',
|
||||
'delete_expense_account' => 'Διαγραφή του λογαριασμού δαπανών ":name"',
|
||||
'delete_revenue_account' => 'Διαγραφή λογαριασμού προσόδων ":name"',
|
||||
'delete_revenue_account' => 'Διαγραφή λογαριασμού εσόδων ":name"',
|
||||
'delete_liabilities_account' => 'Διαγραφή υποχρέωσης ":name"',
|
||||
'asset_deleted' => 'Επιτυχής διαγραφή του κεφαλαιακού λογαριασμού ":name"',
|
||||
'expense_deleted' => 'Επιτυχής διαγραφή του λογαριασμού δαπανών ":name"',
|
||||
'revenue_deleted' => 'Επιτυχής διαγραφή του λογαριασμού προσόδων ":name"',
|
||||
'revenue_deleted' => 'Επιτυχής διαγραφή του λογαριασμού εσόδων ":name"',
|
||||
'update_asset_account' => 'Ενημέρωση λογαριασμού κεφαλαίου',
|
||||
'update_liabilities_account' => 'Ενημέρωση υποχρέωσης',
|
||||
'update_expense_account' => 'Ενημέρωση λογαριασμού δαπανών',
|
||||
'update_revenue_account' => 'Ενημέρωση λογαριασμού εσόδων',
|
||||
'make_new_asset_account' => 'Δημιουργία νέου λογαριασμού κεφαλαίου',
|
||||
'make_new_expense_account' => 'Δημιουργία νέου λογαριασμού δαπανών',
|
||||
'make_new_revenue_account' => 'Δημιουργία νέου λογαριασμού προσόδων',
|
||||
'make_new_revenue_account' => 'Δημιουργία νέου λογαριασμού εσόδων',
|
||||
'make_new_liabilities_account' => 'Δημιουργία νέας υποχρέωσης',
|
||||
'asset_accounts' => 'Λογαριασμοί κεφαλαίου',
|
||||
'asset_accounts' => 'Κεφάλαια',
|
||||
'asset_accounts_inactive' => 'Λογαριασμοί κεφαλαίου (ανενεργοί)',
|
||||
'expense_accounts' => 'Λογαριασμοί δαπανών',
|
||||
'expense_accounts' => 'Δαπάνες',
|
||||
'expense_accounts_inactive' => 'Λογαριασμοί δαπανών (ανενεργοί)',
|
||||
'revenue_accounts' => 'Λογαριασμοί εσόδων',
|
||||
'cash_accounts' => 'Λογαριασμοί μετρητών',
|
||||
'revenue_accounts' => 'Έσοδα',
|
||||
'cash_accounts' => 'Μετρητά',
|
||||
'Cash account' => 'Λογαριασμός μετρητών',
|
||||
'liabilities_accounts' => 'Υποχρεώσεις',
|
||||
'reconcile_account' => 'Τακτοποίηση λογαριασμού ":account"',
|
||||
@ -859,8 +862,8 @@ return [
|
||||
'end_balance' => 'Τελικό υπόλοιπο',
|
||||
'update_balance_dates_instruction' => 'Αντιστοιχίστε τα παραπάνω ποσά και ημερομηνίες με την τραπεζική σας κατάσταση και πατήστε "Έναρξη τακτοποίησης"',
|
||||
'select_transactions_instruction' => 'Επιλέξτε τις συναλλαγές που εμφανίζονται στην τραπεζική σας κατάσταση.',
|
||||
'select_range_and_balance' => 'Ελέγξτε πρώτα το ημερομηνιακό εύρος και τα υπόλοιπα. Στη συνέχεια πατήστε "Έναρξη τακτοποίησης"',
|
||||
'date_change_instruction' => 'Εάν αλλάξετε τώρα το ημερομηνιακό εύρος, θα χαθεί ότι είχατε εισάγει.',
|
||||
'select_range_and_balance' => 'Ελέγξτε πρώτα το χρονικό διάστημα καθώς και τα υπόλοιπα. Στη συνέχεια πατήστε "Έναρξη τακτοποίησης"',
|
||||
'date_change_instruction' => 'Εάν αλλάξετε τώρα το χρονικό διάστημα, θα χαθεί ότι είχατε εισάγει.',
|
||||
'update_selection' => 'Ενημέρωση επιλογής',
|
||||
'store_reconcile' => 'Αποθήκευση τακτοποίησης',
|
||||
'reconciliation_transaction' => 'Συναλλαγή τακτοποίησης',
|
||||
@ -902,7 +905,7 @@ return [
|
||||
'confirm_reconciliation' => 'Επιβεβαίωση τακτοποίησης',
|
||||
'submitted_start_balance' => 'Υποβλήθηκε το αρχικό υπόλοιπο',
|
||||
'selected_transactions' => 'Επιλεγμένες συναλλαγές (:count)',
|
||||
'already_cleared_transactions' => 'Συναλλαγές που έχουν εκκαθαριστεί (:count)',
|
||||
'already_cleared_transactions' => 'Συναλλαγές που έχουν ήδη ελεγχθεί (:count)',
|
||||
'submitted_end_balance' => 'Υποβλήθηκε το τελικό υπόλοιπο',
|
||||
'initial_balance_description' => 'Αρχικό υπόλοιπο για ":account"',
|
||||
'interest_calc_' => 'άγνωστο',
|
||||
@ -992,7 +995,7 @@ return [
|
||||
'mass_edited_transactions_success' => 'Ενημερώθηκαν :amount συναλλαγή(ες)',
|
||||
'opt_group_' => '(χωρίς τύπο λογαριασμού)',
|
||||
'opt_group_no_account_type' => '(χωρίς τύπο λογαριασμού)',
|
||||
'opt_group_defaultAsset' => 'Προεπιλεγμένοι λογαριασμοί κεφαλαίου',
|
||||
'opt_group_defaultAsset' => 'Βασικοί λογαριασμοί κεφαλαίου',
|
||||
'opt_group_savingAsset' => 'Λογαριασμοί αποταμίευσης',
|
||||
'opt_group_sharedAsset' => 'Κοινοί λογαριασμοί κεφαλαίου',
|
||||
'opt_group_ccAsset' => 'Πιστωτικές κάρτες',
|
||||
@ -1030,7 +1033,7 @@ return [
|
||||
'your_accounts' => 'Επισκόπηση λογαριασμού',
|
||||
'category_overview' => 'Επισκόπηση κατηγορίας',
|
||||
'expense_overview' => 'Επισκόπηση λογαριασμού δαπανών',
|
||||
'revenue_overview' => 'Επισκόπηση λογαριασμού προσόδων',
|
||||
'revenue_overview' => 'Επισκόπηση λογαριασμού εσόδων',
|
||||
'budgetsAndSpending' => 'Προϋπολογισμοί και δαπάνες',
|
||||
'budgets_and_spending' => 'Προϋπολογισμοί και δαπάνες',
|
||||
'go_to_budget' => 'Πηγαίνετε στον προϋπολογισμό "{budget}"',
|
||||
@ -1040,7 +1043,7 @@ return [
|
||||
'newTransfer' => 'Νέα μεταφορά',
|
||||
'bills_to_pay' => 'Πάγια έξοδα προς πληρωμή',
|
||||
'per_day' => 'Ανά ημέρα',
|
||||
'left_to_spend_per_day' => 'Απομένουν για δαπάνες ανά ημέρα',
|
||||
'left_to_spend_per_day' => 'Διαθέσιμα προϋπολογισμών ανά ημέρα',
|
||||
'bills_paid' => 'Πληρωμένα πάγια έξοδα',
|
||||
|
||||
// menu and titles, should be recycled as often as possible:
|
||||
@ -1070,7 +1073,7 @@ return [
|
||||
'reports' => 'Αναφορές',
|
||||
'transactions' => 'Συναλλαγές',
|
||||
'expenses' => 'Δαπάνες',
|
||||
'income' => 'Έσοδα / Πρόσοδα',
|
||||
'income' => 'Έσοδα',
|
||||
'transfers' => 'Μεταφορές',
|
||||
'moneyManagement' => 'Διαχείριση χρημάτων',
|
||||
'money_management' => 'Διαχείριση χρημάτων',
|
||||
@ -1092,7 +1095,7 @@ return [
|
||||
'no' => 'Όχι',
|
||||
'amount' => 'Ποσό',
|
||||
'overview' => 'Επισκόπηση',
|
||||
'saveOnAccount' => 'Αποθήκευση σε λογαριασμό',
|
||||
'saveOnAccount' => 'Εντός του λογαριασμού',
|
||||
'unknown' => 'Άγνωστο',
|
||||
'daily' => 'Ημερησίως',
|
||||
'monthly' => 'Μηνιαίως',
|
||||
@ -1134,22 +1137,22 @@ return [
|
||||
'inactive' => 'Ανενεργό',
|
||||
'active' => 'Ενεργό',
|
||||
'difference' => 'Διαφορά',
|
||||
'money_flowing_in' => 'Μέσα',
|
||||
'money_flowing_out' => 'Έξω',
|
||||
'topX' => 'ανώτατο :number',
|
||||
'money_flowing_in' => 'Εισροές',
|
||||
'money_flowing_out' => 'Εκροές',
|
||||
'topX' => 'τα πρώτα :number',
|
||||
'show_full_list' => 'Εμφάνιση ολόκληρης της λίστας',
|
||||
'show_only_top' => 'Εμφάνισε μόνο τα πρώτα :number',
|
||||
'report_type' => 'Τύπος Αναφοράς',
|
||||
'report_type_default' => 'Προκαθορισμένη οικονομική αναφορά',
|
||||
'report_type_audit' => 'Επισκόπηση ιστορικού συναλλαγών (έλεγχος)',
|
||||
'report_type_category' => 'Αναφορά κατηγορίας',
|
||||
'report_type_budget' => 'Αναφορά προϋπολογισμού',
|
||||
'report_type_tag' => 'Αναφορά ετικέτας',
|
||||
'report_type_category' => 'Αναφορά κατηγοριών',
|
||||
'report_type_budget' => 'Αναφορά προϋπολογισμών',
|
||||
'report_type_tag' => 'Αναφορά ετικετών',
|
||||
'report_type_double' => 'Έκθεση λογαριασμών δαπανών/εσόδων',
|
||||
'more_info_help' => 'Περισσότερες πληροφορίες σχετικά με αυτούς τους τύπους αναφορών μπορούν να βρεθούν στις σελίδες βοήθειας. Πατήστε το εικονίδιο (?) στην επάνω δεξιά γωνία.',
|
||||
'report_included_accounts' => 'Συμπεριλαμβανόμενοι λογαριασμοί',
|
||||
'report_date_range' => 'Εύρος ημερομηνίας',
|
||||
'report_preset_ranges' => 'Προκαθορισμένα εύρη',
|
||||
'report_date_range' => 'Χρονικό διάστημα',
|
||||
'report_preset_ranges' => 'Καθορισμένο διάστημα',
|
||||
'shared' => 'Κοινοί',
|
||||
'fiscal_year' => 'Οικονομικό έτος',
|
||||
'income_entry' => 'Έσοδα από λογαριασμό ":name" μεταξύ :start και :end',
|
||||
@ -1163,9 +1166,9 @@ return [
|
||||
'report_has_no_extra_options' => 'Αυτή η αναφορά δεν έχει επιπλέον επιλογές',
|
||||
'reports_submit' => 'Προβολή αναφοράς',
|
||||
'end_after_start_date' => 'Η ημερομηνία λήξης της αναφοράς πρέπει να είναι μεταγενέστερη της ημερομηνίας έναρξης.',
|
||||
'select_category' => 'Επιλογή κατηγορίας(ών)',
|
||||
'select_budget' => 'Επιλέξτε προϋπολογισμό(ους).',
|
||||
'select_tag' => 'Επιλέξτε ετικέτα(ες).',
|
||||
'select_category' => 'Επιλογή κατηγοριών',
|
||||
'select_budget' => 'Επιλογή προϋπολογισμών',
|
||||
'select_tag' => 'Επιλογή ετικετών',
|
||||
'income_per_category' => 'Έσοδα ανά κατηγορία',
|
||||
'expense_per_category' => 'Δαπάνη ανά κατηγορία',
|
||||
'expense_per_budget' => 'Δαπάνη ανά προϋπολογισμό',
|
||||
@ -1191,7 +1194,7 @@ return [
|
||||
'description' => 'Περιγραφή',
|
||||
'sum_of_period' => 'Σύνολο περιόδου',
|
||||
'average_in_period' => 'Μέσος όρος περιόδου',
|
||||
'account_role_defaultAsset' => 'Προεπιλεγμένος λογαριασμός κεφαλαίου',
|
||||
'account_role_defaultAsset' => 'Βασικός λογαριασμός κεφαλαίου',
|
||||
'account_role_sharedAsset' => 'Κοινός λογαριασμός κεφαλαίου',
|
||||
'account_role_savingAsset' => 'Λογαριασμός αποταμίευσης',
|
||||
'account_role_ccAsset' => 'Πιστωτική κάρτα',
|
||||
@ -1202,7 +1205,7 @@ return [
|
||||
'in_out_accounts_per_asset' => 'Κέρδη και δαπάνες (ανά λογαριασμό κεφαλαίου)',
|
||||
'in_out_per_category' => 'Κέρδη και δαπάνες ανά κατηγορία',
|
||||
'out_per_budget' => 'Δαπάνες ανά προϋπολογισμό',
|
||||
'select_expense_revenue' => 'Επιλέξτε λογαριασμό δαπανών/προσόδων',
|
||||
'select_expense_revenue' => 'Επιλέξτε λογαριασμό δαπανών/εσόδων',
|
||||
'multi_currency_report_sum' => 'Επειδή αυτή η λίστα περιέχει λογαριασμούς με πολλαπλά νομίσματα, το σύνολο(α) που βλέπετε μπορεί να μην έχει νόημα. Η αναφορά θα επιστρέφει πάντα στο προεπιλεγμένο σας νόμισμα.',
|
||||
'sum_in_default_currency' => 'Το σύνολο θα είναι πάντοτε στο προεπιλεγμένο σας νόμισμα.',
|
||||
'net_filtered_prefs' => 'Αυτό το διάγραμμα δε θα περιλαμβάνει ποτέ λογαριασμούς που δεν έχουν τσεκαρισμένη την επιλογή "Συμπεριλαμβάνεται στην καθαρή αξία".',
|
||||
@ -1213,9 +1216,9 @@ return [
|
||||
'budget' => 'Προϋπολογισμός',
|
||||
'spent' => 'Δαπανήθηκαν',
|
||||
'spent_in_budget' => 'Δαπάνες ανά προϋπολογισμό',
|
||||
'left_to_spend' => 'Απομένουν για δαπάνες',
|
||||
'left_to_spend' => 'Διαθέσιμα προϋπολογισμών',
|
||||
'earned' => 'Κερδήθηκαν',
|
||||
'overspent' => 'Υπερβάσεις δαπανών',
|
||||
'overspent' => 'Υπέρβαση προϋπολογισμών',
|
||||
'left' => 'Απομένουν',
|
||||
'max-amount' => 'Μέγιστο ποσό',
|
||||
'min-amount' => 'Ελάχιστο ποσό',
|
||||
@ -1227,7 +1230,7 @@ return [
|
||||
'day' => 'Ημέρα',
|
||||
'budgeted' => 'Προϋπολογισμένο',
|
||||
'period' => 'Περίοδος',
|
||||
'balance' => 'Υπόλοιπο',
|
||||
'balance' => 'Ισοζύγιο',
|
||||
'sum' => 'Σύνολο',
|
||||
'summary' => 'Σύνοψη',
|
||||
'average' => 'Μέσος όρος',
|
||||
@ -1237,26 +1240,26 @@ return [
|
||||
'tag_cloud' => 'Σύννεφο ετικετών',
|
||||
|
||||
// piggy banks:
|
||||
'add_money_to_piggy' => 'Προσθήκη χρημάτων στον κουμπαρά ":name"',
|
||||
'add_money_to_piggy' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"',
|
||||
'piggy_bank' => 'Κουμπαράς',
|
||||
'new_piggy_bank' => 'Νέος κουμπαράς',
|
||||
'store_piggy_bank' => 'Αποθήκευση νέου κουμπαρά',
|
||||
'stored_piggy_bank' => 'Αποθήκευση του νέου κουμπαρά ":name"',
|
||||
'account_status' => 'Κατάσταση λογαριασμού',
|
||||
'left_for_piggy_banks' => 'Απομένουν για κουμπαράδες',
|
||||
'left_for_piggy_banks' => 'Διαθέσιμα προς δέσμευση',
|
||||
'sum_of_piggy_banks' => 'Σύνολο κουμπαράδων',
|
||||
'saved_so_far' => 'Εξοικονομήθηκαν μέχρι σήμερα',
|
||||
'saved_so_far' => 'Δεσμεύτηκαν',
|
||||
'left_to_save' => 'Απομένουν για αποταμίευση',
|
||||
'suggested_amount' => 'Προτεινόμενο μηνιαίο ποσό για εξοικονόμηση',
|
||||
'add_money_to_piggy_title' => 'Προσθήκη χρημάτων στον κουμπαρά ":name"',
|
||||
'remove_money_from_piggy_title' => 'Αφαίρεση χρημάτων από τον κουμπαρά ":name"',
|
||||
'suggested_amount' => 'Προτεινόμενο μηνιαίο ποσό για δέσμευση',
|
||||
'add_money_to_piggy_title' => 'Δέσμευση χρημάτων για τον κουμπαρά ":name"',
|
||||
'remove_money_from_piggy_title' => 'Αποδέσμευση χρημάτων από τον κουμπαρά ":name"',
|
||||
'add' => 'Προσθήκη',
|
||||
'no_money_for_piggy' => 'Δεν έχετε χρήματα για να βάλετε σε αυτό τον κουμπαρά.',
|
||||
'no_money_for_piggy' => 'Δεν έχετε διαθέσιμα χρήματα προς δέσμευση για αυτόν τον κουμπαρά.',
|
||||
'suggested_savings_per_month' => 'Προτείνεται ανά μήνα',
|
||||
|
||||
'remove' => 'Αφαίρεση',
|
||||
'max_amount_add' => 'Το μέγιστο ποσό που μπορείτε να προσθέσετε είναι',
|
||||
'max_amount_remove' => 'Το μέγιστο ποσό που μπορείτε να αφαιρέσετε είναι',
|
||||
'max_amount_add' => 'Το μέγιστο ποσό που μπορείτε να δεσμεύσετε είναι',
|
||||
'max_amount_remove' => 'Το μέγιστο ποσό που μπορείτε να αποδεσμεύσετε είναι',
|
||||
'update_piggy_button' => 'Ενημέρωση κουμπαρά',
|
||||
'update_piggy_title' => 'Ενημέρωση του κουμπαρά ":name"',
|
||||
'updated_piggy_bank' => 'Ενημερώθηκε ο κουμπαράς":name"',
|
||||
@ -1270,10 +1273,10 @@ return [
|
||||
'table' => 'Πίνακας',
|
||||
'delete_piggy_bank' => 'Διαγραφή του κουμπαρά ":name"',
|
||||
'cannot_add_amount_piggy' => 'Δεν ήταν δυνατή η προσθήκη :amount στο ":name".',
|
||||
'cannot_remove_from_piggy' => 'Δεν ήταν δυνατή η αφαίρεση :amount από ":name".',
|
||||
'cannot_remove_from_piggy' => 'Δεν ήταν δυνατή η αποδέσμευση :amount από το ":name".',
|
||||
'deleted_piggy_bank' => 'Διαγράφηκε ο κουμπαράς ":name"',
|
||||
'added_amount_to_piggy' => 'Προστέθηκαν :amount στο ":name"',
|
||||
'removed_amount_from_piggy' => 'Αφαιρέθηκαν :amount από το ":name"',
|
||||
'added_amount_to_piggy' => 'Δεσμεύτηκαν :amount για το ":name"',
|
||||
'removed_amount_from_piggy' => 'Αποδεσμεύτηκαν :amount από το ":name"',
|
||||
'piggy_events' => 'Σχετικοί κουμπαράδες',
|
||||
|
||||
// tags
|
||||
@ -1297,10 +1300,10 @@ return [
|
||||
'list_all_users' => 'Όλοι οι χρήστες',
|
||||
'all_users' => 'Όλοι οι χρήστες',
|
||||
'instance_configuration' => 'Παραμετροποίηση',
|
||||
'firefly_instance_configuration' => 'Επιλογές διαμόρφωσης του Firefly III',
|
||||
'firefly_instance_configuration' => 'Επιλογές παραμετροποίησης του Firefly III',
|
||||
'setting_single_user_mode' => 'Λειτουργία ενός μοναδικού χρήστη',
|
||||
'setting_single_user_mode_explain' => 'Λόγω προεπιλογής το Firefly III δέχεται μόνο μία (1) εγγραφή: εσάς. Πρόκειται για ένα μέτρο ασφαλείας που εμποδίζει τους άλλους να χρησιμοποιήσουν την εγκατάστασή σας, εκτός αν τους επιτρέπετε. Οι μελλοντικές εγγραφές χρηστών αποκλείονται. Όταν καταργήσετε την επιλογή σε αυτό το κουτάκι, άλλοι χρήστες θα μπορούν να χρησιμοποιήσουν την εγκατάστασή σας ταυτόχρονα, υποθέτοντας ότι μπορούν να συνδεθούν (σε περίπτωση σύνδεσης στο διαδίκτυο).',
|
||||
'store_configuration' => 'Αποθήκευση διαμόρφωσης',
|
||||
'setting_single_user_mode_explain' => 'Λόγω προεπιλογής το Firefly III δέχεται μόνο μία (1) εγγραφή χρήστη: εσάς. Πρόκειται για ένα μέτρο ασφαλείας που εμποδίζει τους άλλους να χρησιμοποιήσουν την εγκατάστασή σας, εκτός αν τους επιτρέπετε. Οι μελλοντικές εγγραφές χρηστών αποκλείονται. Όταν καταργήσετε την επιλογή σε αυτό το κουτάκι, άλλοι χρήστες θα μπορούν να χρησιμοποιήσουν την εγκατάστασή σας ταυτόχρονα, υποθέτοντας ότι μπορούν να συνδεθούν (σε περίπτωση σύνδεσης στο διαδίκτυο).',
|
||||
'store_configuration' => 'Αποθήκευση παραμετροποίησης',
|
||||
'single_user_administration' => 'Διαχείριση χρήστη :email',
|
||||
'edit_user' => 'Επεξεργασία χρήστη :email',
|
||||
'hidden_fields_preferences' => 'Μπορείτε να ενεργοποιήσετε περισσότερες επιλογές συναλλαγών στις <a href=":link">ρυθμίσεις</a>.',
|
||||
@ -1311,7 +1314,7 @@ return [
|
||||
'budgets_with_limits' => 'προϋπολογισμός(οι) με καθορισμένο ποσό',
|
||||
'nr_of_rules_in_total_groups' => ':count_rules κανόνες σε :count_groups ομάδες κανόνων',
|
||||
'tag_or_tags' => 'ετικέτα(ες)',
|
||||
'configuration_updated' => 'Οι ρυθμίσεις ενημερώθηκαν',
|
||||
'configuration_updated' => 'Η παραμετροποίηση ενημερώθηκε',
|
||||
'setting_is_demo_site' => 'Ιστοσελίδα επίδειξης',
|
||||
'setting_is_demo_site_explain' => 'Εάν επιλέξετε αυτό το κουτάκι, η εγκατάσταση θα συμπεριφέρεται σαν ιστοσελίδα επίδειξης, το οποίο μπορεί να έχει παράξενες παρενέργειες.',
|
||||
'block_code_bounced' => 'Το Email επέστρεψε χωρίς να έχει παραδοθεί',
|
||||
@ -1338,7 +1341,7 @@ return [
|
||||
|
||||
|
||||
// links
|
||||
'journal_link_configuration' => 'Διαμόρφωση συνδέσεων συναλλαγών',
|
||||
'journal_link_configuration' => 'Παραμετροποίηση συνδέσεων συναλλαγών',
|
||||
'create_new_link_type' => 'Δημιουργία νέου τύπου συνδέσμου',
|
||||
'store_new_link_type' => 'Αποθήκευση νέου τύπου συνδέσμου',
|
||||
'update_link_type' => 'Ενημέρωση τύπου συνδέσμου',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(εν μέρει) επιστροφές',
|
||||
'(partially) pays for_outward' => '(εν μέρει) πληρωμές για',
|
||||
'(partially) reimburses_outward' => '(εν μέρει) αποζημιώσεις',
|
||||
'is (partially) refunded by' => 'έχει επιστραφεί (εν μέρει) από',
|
||||
'is (partially) paid for by' => 'έχει πληρωθεί (εν μέρει) από',
|
||||
'is (partially) reimbursed by' => 'έχει αποζημιωθεί (εν μέρει) από',
|
||||
'relates to' => 'σχετίζεται με',
|
||||
'(partially) refunds' => 'επιστρέφει (εν μέρει) για',
|
||||
'(partially) pays for' => 'πληρώνει (εν μέρη) για',
|
||||
'(partially) reimburses' => 'αποζημιώνει (εν μέρει) για',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Διαχωρισμός',
|
||||
@ -1428,11 +1438,10 @@ return [
|
||||
'no_accounts_intro_expense' => 'Δεν έχετε ακόμα λογαριασμούς δαπανών. Οι λογαριασμοί δαπανών είναι τα μέρη που ξοδεύετε χρήματα, όπως τα καταστήματα και τα σούπερ μάρκετ.',
|
||||
'no_accounts_imperative_expense' => 'Οι λογαριασμοί δαπανών δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε ένα και χειροκίνητα αν θέλετε. Ας δημιουργήσουμε ένα τώρα:',
|
||||
'no_accounts_create_expense' => 'Δημιουργία νέου λογαριασμού δαπανών',
|
||||
'no_accounts_title_revenue' => 'Ας δημιουργήσουμε ένα λογαριασμό προσόδων!',
|
||||
'no_accounts_intro_revenue' => 'Δεν έχετε ακόμα λογαριασμούς προσόδων. Οι λογαριασμοί προσόδων είναι αυτοί από τους οποίους λαμβάνετε χρήματα, όπως ο μισθός ή είσπραξη ενοικίων.',
|
||||
'no_accounts_imperative_revenue' => 'Οι λογαριασμοί προσόδων δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε έναν
|
||||
και χειροκίνητα, αν θέλετε. Ας δημιουργήσουμε έναν τώρα:',
|
||||
'no_accounts_create_revenue' => 'Δημιουργία νέου λογαριασμού προσόδων',
|
||||
'no_accounts_title_revenue' => 'Ας δημιουργήσουμε ένα λογαριασμό εσόδων!',
|
||||
'no_accounts_intro_revenue' => 'Δεν έχετε ακόμα λογαριασμούς εσόδων. Οι λογαριασμοί εσόδων είναι αυτοί από τους οποίους λαμβάνετε χρήματα, όπως ο μισθός ή είσπραξη ενοικίων.',
|
||||
'no_accounts_imperative_revenue' => 'Οι λογαριασμοί εσόδων δημιουργούνται αυτόματα όταν δημιουργείτε συναλλαγές, αλλά μπορείτε να δημιουργήσετε έναν και χειροκίνητα, αν θέλετε. Ας δημιουργήσουμε έναν τώρα:',
|
||||
'no_accounts_create_revenue' => 'Δημιουργία νέου λογαριασμού εσόδων',
|
||||
'no_accounts_title_liabilities' => 'Ας δημιουργήσουμε μια υποχρέωση!',
|
||||
'no_accounts_intro_liabilities' => 'Δεν έχετε ακόμα υποχρεώσεις. Οι υποχρεώσεις είναι οι λογαριασμοί που καταγράφουν δάνεια και διάφορα άλλα χρέη σας.',
|
||||
'no_accounts_imperative_liabilities' => 'Δεν χρειάζεται να χρησιμοποιήσετε αυτή τη λειτουργία, αλλά μπορεί να σας φανεί χρήσιμη εάν θέλετε να επιβλέπετε αυτά τα πράγματα.',
|
||||
@ -1547,7 +1556,7 @@ return [
|
||||
'box_sum_in_currency' => 'Σύνολο (:currency)',
|
||||
'box_bill_paid_in_currency' => 'Πληρωμένα πάγια έξοδα (:currency)',
|
||||
'box_bill_unpaid_in_currency' => 'Απλήρωτα πάγια έξοδα (:currency)',
|
||||
'box_left_to_spend_in_currency' => 'Απομένουν για δαπάνες (:currency)',
|
||||
'box_left_to_spend_in_currency' => 'Διαθέσιμα προϋπολογισμών (:currency)',
|
||||
'box_net_worth_in_currency' => 'Καθαρή αξία (:currency)',
|
||||
'box_spend_per_day' => 'Απομένουν για δαπάνες ανά ημέρα: :amount',
|
||||
|
||||
|
@ -46,7 +46,7 @@ return [
|
||||
'external_ip' => 'Η εξωτερική IP του εξυπηρετητή σας',
|
||||
'attachments' => 'Συνημμένα',
|
||||
'journal_amount' => 'Ποσό',
|
||||
'journal_source_name' => 'Λογαριασμός προσόδων (προέλευση)',
|
||||
'journal_source_name' => 'Λογαριασμός εσόδων (προέλευση)',
|
||||
'keep_bill_id' => 'Πάγιο έξοδο',
|
||||
'journal_source_id' => 'Λογαριασμός κεφαλαίου (προέλευση)',
|
||||
'BIC' => 'BIC',
|
||||
@ -55,7 +55,7 @@ return [
|
||||
'destination_account' => 'Λογαριασμός προορισμού',
|
||||
'journal_destination_id' => 'Λογαριασμός κεφαλαίου (προορισμός)',
|
||||
'asset_destination_account' => 'Λογαριασμός προορισμού',
|
||||
'include_net_worth' => 'Συμπεριλαμβάνεται στην καθαρή αξία',
|
||||
'include_net_worth' => 'Εντός καθαρής αξίας',
|
||||
'asset_source_account' => 'Λογαριασμός προέλευσης',
|
||||
'journal_description' => 'Περιγραφή',
|
||||
'note' => 'Σημειώσεις',
|
||||
@ -80,7 +80,7 @@ return [
|
||||
'returnHereUpdateExplanation' => 'Μετά την ανανέωση, επιστρέψτε εδώ.',
|
||||
'description' => 'Περιγραφή',
|
||||
'expense_account' => 'Λογαριασμός δαπανών',
|
||||
'revenue_account' => 'Λογαριασμός προσόδων',
|
||||
'revenue_account' => 'Λογαριασμός εσόδων',
|
||||
'decimal_places' => 'Δεκαδικά ψηφία',
|
||||
'exchange_rate_instruction' => 'Ξένα νομίσματα',
|
||||
'source_amount' => 'Ποσό (προέλευση)',
|
||||
@ -97,7 +97,7 @@ return [
|
||||
'source_account_asset' => 'Λογαριασμός προέλευσης (λογαριασμός κεφαλαίου)',
|
||||
'destination_account_expense' => 'Λογαριασμός προορισμού (λογαριασμός δαπανών)',
|
||||
'destination_account_asset' => 'Λογαριασμός προορισμού (λογαριασμός κεφαλαίου)',
|
||||
'source_account_revenue' => 'Λογαριασμός προέλευσης (λογαριασμός προσόδων)',
|
||||
'source_account_revenue' => 'Λογαριασμός προέλευσης (λογαριασμός εσόδων)',
|
||||
'type' => 'Τύπος',
|
||||
'convert_Withdrawal' => 'Μετατροπή ανάληψης',
|
||||
'convert_Deposit' => 'Μετατροπή κατάθεσης',
|
||||
@ -138,7 +138,7 @@ return [
|
||||
'filename' => 'Όνομα αρχείου',
|
||||
'mime' => 'Τύπος Mime',
|
||||
'size' => 'Μέγεθος',
|
||||
'trigger' => 'Έναυσμα',
|
||||
'trigger' => 'Ενεργοποίηση',
|
||||
'stop_processing' => 'Διακοπή επεξεργασίας',
|
||||
'start_date' => 'Αρχή του εύρους',
|
||||
'end_date' => 'Τέλος του εύρους',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'Όπως αποτυπώνεται σε <a href="https://www.patreon.com/posts/future-updates-30012174"> αυτό το Patreon post</a>, ο τρόπος που το Firefly III διαχειρίζεται την εισαγωγή δεδομένων πρόκειται να αλλάξει. Αυτό σημαίνει ότι η εισαγωγή CSV θα μετακινηθεί σε ένα νέο, ξεχωριστό εργαλείο. Μπορείτε να δοκιμάσετε ήδη αυτό το beta εργαλείο εάν επισκεφτείτε <a href="https://github.com/firefly-iii/csv-importer"> αυτό το Github repository</a>. Θα το εκτιμούσα εάν δοκιμάζατε τη νέα εισαγωγή και μου κοινοποιούσατε τις απόψεις σας.',
|
||||
'final_csv_import' => 'Όπως περιγράφεται σε αυτή την <a href="https://www.patreon.com/posts/future-updates-30012174">ανάρτηση στο Patreon</a>, ο τρόπος με τον οποίο το Firefly III χειρίζεται τα δεδομένα κατά τη διαδικασία εισαγωγής πρόκειται να αλλάξει. Αυτό σημαίνει ότι αυτή είναι η τελευταία έκδοση του Firefly III που θα περιλαμβάνει αυτό τον εισαγωγέα αρχείων CSV. Διατίθεται τώρα ένα ξεχωριστό εργαλείο που θα πρέπει να το δοκιμάσετε: <a href="https://github.com/firefly-iii/csv-importer">ο εισαγωγέας CSV για το Firefly III</a>. Θα το εκτιμούσα αν δοκιμάσετε το νέο εργαλείο εισαγωγής και μοιραστείτε τις εντυπώσεις σας.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Προσποιηθήτε μία εισαγωγή',
|
||||
@ -52,7 +53,7 @@ return [
|
||||
|
||||
|
||||
// prerequisites box (index)
|
||||
'need_prereq_title' => 'Εισαγωγή προϋποθέσεων',
|
||||
'need_prereq_title' => 'Προϋποθέσεις εισαγωγής',
|
||||
'need_prereq_intro' => 'Κάποιες μέθοδοι εισαγωγής χρειάζονται την προσοχή σας πριν τη χρήση. Για παράδειγμα, μπορεί να απαιτούν ειδικά κλειδιά API ή κωδικούς εφαρμογής. Μπορείτε να τις ρυθμίσετε εδώ. Το εικονίδιο καταδεικνύει εάν οι προϋποθέσεις έχουν ικανοποιηθεί.',
|
||||
'do_prereq_fake' => 'Προϋποθέσεις για τον ψευδή πάροχο',
|
||||
'do_prereq_file' => 'Προϋποθέσεις για εισαγωγές αρχείων',
|
||||
@ -271,8 +272,8 @@ return [
|
||||
'column_amount_credit' => 'Ποσό (στήλη πίστωσης)',
|
||||
'column_amount_negated' => 'Ποσό (στήλη αναίρεσης)',
|
||||
'column_amount-comma-separated' => 'Ποσό (κόμμα ως δεκαδικός διαχωριστής)',
|
||||
'column_bill-id' => 'Αναγνωριστικό ID λογαριασμού (αντιστοίχιση με FF3)',
|
||||
'column_bill-name' => 'Όνομα λογαριασμού',
|
||||
'column_bill-id' => 'Αναγνωριστικό ID για πάγιο έξοδο (αντιστοίχιση με FF3)',
|
||||
'column_bill-name' => 'Πάγιο έξοδο',
|
||||
'column_budget-id' => 'Αναγνωριστικό ID προϋπολογισμού (αντιστοίχιση με FF3)',
|
||||
'column_budget-name' => 'Όνομα προϋπολογισμού',
|
||||
'column_category-id' => 'Αναγνωριστικό ID κατηγορίας (αντιστοίχιση με FF3)',
|
||||
|
@ -26,7 +26,7 @@ return [
|
||||
// index
|
||||
'index_intro' => 'Καλωσορίσατε στην αρχική σελίδα του Firefly III. Παρακαλούμε πάρτε το χρόνο σας με αυτή την εισαγωγή για να κατανοήσετε πως λειτουργεί το Firefly III.',
|
||||
'index_accounts-chart' => 'Αυτό το γράφημα δείχνει τo τρέχων υπόλοιπο των ενεργών λογαριασμών σας. Μπορείτε να επιλέξετε τους λογαριασμούς που εμφανίζονται εδώ στις προτιμήσεις σας.',
|
||||
'index_box_out_holder' => 'Αυτό το μικρό πλαίσιο και τα παρακείμενα πλαίσια σας δίνουν μια σύνοψη της οικονομικής σας κατάστασης.',
|
||||
'index_box_out_holder' => 'Αυτό το κουτάκι επιλογής καθώς και τα παρακείμενα, θα σας δώσουν μια σύνοψη της οικονομικής σας κατάστασης.',
|
||||
'index_help' => 'Εάν ποτέ χρειαστείτε βοήθεια με μια σελίδα ή φόρμα, πιέστε αυτό το κουμπί.',
|
||||
'index_outro' => 'Οι περισσότερες σελίδες του Firefly III θα ξεκινήσουν με μια μικρή περιήγηση όπως αυτή. Παρακαλώ επικοινωνήστε μαζί μου όταν έχετε ερωτήσεις ή σχόλια. Απολαύστε!',
|
||||
'index_sidebar-toggle' => 'Για τη δημιουργία νέων συναλλαγών, λογαριασμών ή άλλων αντικειμένων, χρησιμοποιήστε το μενού κάτω από αυτό το εικονίδιο.',
|
||||
@ -72,19 +72,19 @@ return [
|
||||
'reports_index_intro' => 'Χρησιμοποιήστε αυτές τις αναφορές για να λάβετε λεπτομερείς πληροφορίες για τα οικονομικά σας.',
|
||||
'reports_index_inputReportType' => 'Επιλέξτε έναν τύπο αναφοράς. Ελέγξτε τις σελίδες βοήθειας για να δείτε τι εμφανίζει ή κάθε αναφορά.',
|
||||
'reports_index_inputAccountsSelect' => 'Μπορείτε να παραλείψετε ή να συμπεριλάβετε λογαριασμούς κεφαλαίου κατά βούληση.',
|
||||
'reports_index_inputDateRange' => 'Το επιλεγμένο εύρος ημερομηνιών εξαρτάται αποκλειστικά από εσάς: από μία ημέρα έως 10 χρόνια.',
|
||||
'reports_index_extra-options-box' => 'Αναλόγως της αναφοράς που έχετε επιλέξει, μπορείτε να επιλέξετε επιπλέον φίλτρα και επιλογές εδώ. Παρακολουθήστε αυτό το πλαίσιο όταν αλλάζετε τύπους αναφορών.',
|
||||
'reports_index_inputDateRange' => 'Το επιλεγμένο χρονικό διάστημα εξαρτάται αποκλειστικά από εσάς: από μία ημέρα έως 10 χρόνια.',
|
||||
'reports_index_extra-options-box' => 'Αναλόγως της αναφοράς που έχετε επιλέξει, μπορείτε να επιλέξετε επιπλέον φίλτρα και επιλογές εδώ. Δείτε αυτό το κουτάκι επιλογής όταν αλλάζετε τον τύπο αναφοράς.',
|
||||
|
||||
// reports (reports)
|
||||
'reports_report_default_intro' => 'Αυτή η αναφορά σας δίνει μια γρήγορη και εμπεριστατωμένη σύνοψη των οικονομικών σας. Εάν επιθυμείτε να βλέπετε και κάτι άλλο, παρακαλώ μη διστάσετε να επικοινωνήσετε μαζί μου!',
|
||||
'reports_report_audit_intro' => 'Αυτή η αναφορά θα σας δώσει λεπτομερείς πληροφορίες για τους κεφαλαιακούς σας λογαριασμούς.',
|
||||
'reports_report_audit_optionsBox' => 'Χρησιμοποιήστε αυτά τα πλαίσια ελέγχου για την εμφάνιση ή απόκρυψη στηλών που σας ενδιαφέρουν.',
|
||||
'reports_report_audit_intro' => 'Αυτή η αναφορά θα σας δώσει λεπτομερείς πληροφορίες για τους λογαριασμούς κεφαλαίου που έχετε.',
|
||||
'reports_report_audit_optionsBox' => 'Χρησιμοποιήστε τα κουτάκια επιλογής για την εμφάνιση ή απόκρυψη στηλών που σας ενδιαφέρουν.',
|
||||
|
||||
'reports_report_category_intro' => 'Αυτή η αναφορά θα σας δώσει πληροφορίες για μία ή πολλαπλές κατηγορίες.',
|
||||
'reports_report_category_intro' => 'Αυτή η αναφορά θα σας δώσει πληροφορίες για μία ή περισσότερες κατηγορίες.',
|
||||
'reports_report_category_pieCharts' => 'Αυτά τα γραφήματα θα σας δώσουν πληροφορίες για δαπάνες και έσοδα ανά κατηγορία ή ανά λογαριασμό.',
|
||||
'reports_report_category_incomeAndExpensesChart' => 'Αυτό το γράφημα σας δείχνει δαπάνες και έσοδα ανά κατηγορία.',
|
||||
|
||||
'reports_report_tag_intro' => 'Αυτή η αναφορά θα σας δώσει πληροφορίες για μία ή πολλαπλές ετικέτες.',
|
||||
'reports_report_tag_intro' => 'Αυτή η αναφορά θα σας δώσει πληροφορίες για μία ή περισσότερες ετικέτες.',
|
||||
'reports_report_tag_pieCharts' => 'Αυτά τα γραφήματα θα σας δώσουν πληροφορίες για δαπάνες και έσοδα ανά ετικέτα, λογαριασμό, κατηγορία ή προϋπολογισμό.',
|
||||
'reports_report_tag_incomeAndExpensesChart' => 'Αυτό το γράφημα σας δείχνει δαπάνες και έσοδα ανά ετικέτα.',
|
||||
|
||||
@ -101,7 +101,7 @@ return [
|
||||
'transactions_create_transfer_ffInput_piggy_bank_id' => 'Επιλέξτε έναν κουμπαρά και συνδέστε αυτή τη μεταφορά στις αποταμιεύσεις σας.',
|
||||
|
||||
// piggy banks index:
|
||||
'piggy-banks_index_saved' => 'Αυτό το πεδίο σας δείχνει πόσα έχετε εξοικονομήσει σε κάθε κουμπαρά.',
|
||||
'piggy-banks_index_saved' => 'Αυτό το πεδίο σας δείχνει τα χρήματα που έχετε δεσμεύσει για κάθε κουμπαρά.',
|
||||
'piggy-banks_index_button' => 'Διπλά από αυτή τη γραμμή προόδου υπάρχουν δύο κουμπιά (+ και -) για να προσθέσετε ή να αφαιρέσετε χρήματα από κάθε κουμπαρά.',
|
||||
'piggy-banks_index_accountStatus' => 'Πίνακας κατάστασης για κάθε πάγιο λογαριασμό με τουλάχιστον ένα κουμπαρά.',
|
||||
|
||||
@ -115,22 +115,22 @@ return [
|
||||
'piggy-banks_show_piggyEvents' => 'Οποιεσδήποτε προσθήκες ή αφαιρέσεις αναφέρονται εδώ επίσης.',
|
||||
|
||||
// bill index
|
||||
'bills_index_rules' => 'Εδώ βλέπετε ποιοί κανόνες θα ελέγξουν εάν αυτός ο λογαριασμός έχει εκδοθεί',
|
||||
'bills_index_paid_in_period' => 'Αυτό το πεδίο υποδεικνύει πότε ο λογαριασμός πληρώθηκε τελευταία φορά.',
|
||||
'bills_index_expected_in_period' => 'Αυτό το πεδίο υποδεικνύει για κάθε λογαριασμό, εάν και πότε αναμένεται να εκδοθεί ο επόμενος λογαριασμός.',
|
||||
'bills_index_rules' => 'Εδώ βλέπετε ποιοι κανόνες θα τρέξουν όταν εκδοθεί χρέωση για αυτό το πάγιο έξοδο',
|
||||
'bills_index_paid_in_period' => 'Αυτό το πεδίο υποδεικνύει πότε πληρώθηκε για τελευταία φορά αυτό το πάγιο έξοδο.',
|
||||
'bills_index_expected_in_period' => 'Αυτό το πεδίο υποδεικνύει για κάθε πάγιο έξοδο, εάν και πότε αναμένεται να εκδοθεί η επόμενη χρέωση.',
|
||||
|
||||
// show bill
|
||||
'bills_show_billInfo' => 'Αυτός ο πίνακας δείχνει κάποιες γενικές πληροφορίες για αυτό το λογαριασμό.',
|
||||
'bills_show_billButtons' => 'Χρησιμοποιήστε αυτό το κουμπί για μια νέα σάρωση παλιών συναλλαγών και αντιπαραβολή σε αυτό το λογαριασμό.',
|
||||
'bills_show_billChart' => 'Αυτό το γράφημα δείχνει τις συναλλαγές που έχουν συνδεθεί με αυτό το λογαριασμό.',
|
||||
'bills_show_billInfo' => 'Αυτός ο πίνακας δείχνει κάποιες γενικές πληροφορίες για αυτό το πάγιο έξοδο.',
|
||||
'bills_show_billButtons' => 'Χρησιμοποιήστε αυτό το κουμπί για μια νέα σάρωση παλιών συναλλαγών και αντιπαραβολή με αυτό το πάγιο έξοδο.',
|
||||
'bills_show_billChart' => 'Αυτό το γράφημα δείχνει τις συναλλαγές που έχουν συνδεθεί με αυτό το πάγιο έξοδο.',
|
||||
|
||||
// create bill
|
||||
'bills_create_intro' => 'Χρησιμοποιήστε λογαριασμούς για να παρακολουθήσετε το ποσό των οφειλόμενων χρημάτων κάθε περιόδου. Σκεφθείτε δαπάνες όπως ενοίκιο, ασφάλεια ή πληρωμές δόσεων.',
|
||||
'bills_create_intro' => 'Χρησιμοποιήστε πάγια έξοδα για να παρακολουθήσετε το ποσό των οφειλόμενων χρημάτων κάθε περιόδου. Σκεφθείτε πάγιες δαπάνες όπως ενοίκιο, ασφάλεια ή πληρωμές δόσεων.',
|
||||
'bills_create_name' => 'Χρησιμοποιήστε ένα περιγραφικό όνομα όπως "Ενοίκιο" ή "Ασφάλεια υγείας".',
|
||||
//'bills_create_match' => 'To match transactions, use terms from those transactions or the expense account involved. All words must match.',
|
||||
'bills_create_amount_min_holder' => 'Επιλέξτε ένα ελάχιστο και μέγιστο ποσό για αυτό το λογαριασμό.',
|
||||
'bills_create_repeat_freq_holder' => 'Οι περισσότεροι λογαριασμοί επαναλαμβάνονται μηνιαίως αλλά μπορείτε να ορίσετε άλλη συχνότητα εδώ.',
|
||||
'bills_create_skip_holder' => 'Εάν ένας λογαριασμός εκδίδεται κάθε 2 εβδομάδες, το πεδίο-"παράληψη" πρέπει να οριστεί σε "1" για την παράλειψη κάθε άλλης εβδομάδος.',
|
||||
'bills_create_amount_min_holder' => 'Επιλέξτε ένα ελάχιστο και μέγιστο ποσό για αυτό το πάγιο έξοδο.',
|
||||
'bills_create_repeat_freq_holder' => 'Τα πιο πολλά πάγια έξοδα επαναλαμβάνονται μηνιαίως, εδώ όμως μπορείτε να ορίσετε μια άλλη συχνότητα επανάληψης.',
|
||||
'bills_create_skip_holder' => 'Εάν ένα πάγιο έξοδο επαναλαμβάνεται κάθε 2 εβδομάδες, το πεδίο "παράληψη" πρέπει να οριστεί σε "1" για την παράλειψη κάθε άλλης εβδομάδας.',
|
||||
|
||||
// rules index
|
||||
'rules_index_intro' => 'To Firefly III σας επιτρέπει να διαχειρίζεστε κανόνες, που θα εφαρμοστούν αυτόματα σε κάθε συναλλαγή που δημιουργείτε ή επεξεργάζεστε.',
|
||||
@ -138,7 +138,7 @@ return [
|
||||
'rules_index_new_rule' => 'Δημιουργήστε όσους κανόνες επιθυμείτε.',
|
||||
'rules_index_prio_buttons' => 'Ταξινομήστε τους όπως εσείς θεωρείτε βολικό.',
|
||||
'rules_index_test_buttons' => 'Μπορείτε να ελέγξετε τους κανόνες σας ή να τους εφαρμόσετε σε υπάρχουσες συναλλαγές.',
|
||||
'rules_index_rule-triggers' => 'Οι κανόνες έχουν "σκανδάλες" και "ενέργειες" που μπορείτε να ταξινομήσετε σύροντας-και-αποθέτοντας (drag-and-drop).',
|
||||
'rules_index_rule-triggers' => 'Οι κανόνες έχουν "κριτήρια ενεργοποίησης" και "ενέργειες" που μπορείτε να ταξινομήσετε με μεταφορά και απόθεση (drag-and-drop).',
|
||||
'rules_index_outro' => 'Βεβαιωθείτε να ελέγξετε τις σελίδες βοήθειας χρησιμοποιώντας το εικονίδιο (?) επάνω αριστερά!',
|
||||
|
||||
// create rule:
|
||||
|
@ -57,7 +57,7 @@ return [
|
||||
'amount' => 'Ποσό',
|
||||
'internal_reference' => 'Εσωτερική αναφορά',
|
||||
'date' => 'Ημερομηνία',
|
||||
'interest_date' => 'Ημερομηνία υπολογισμού',
|
||||
'interest_date' => 'Ημερομηνία τοκισμού',
|
||||
'book_date' => 'Ημερομηνία εγγραφής',
|
||||
'process_date' => 'Ημερομηνία επεξεργασίας',
|
||||
'due_date' => 'Ημερομηνία προθεσμίας',
|
||||
@ -106,7 +106,7 @@ return [
|
||||
'sum_deposits' => 'Σύνολο καταθέσεων',
|
||||
'sum_transfers' => 'Σύνολο μεταφορών',
|
||||
'sum_reconciliations' => 'Σύνολο των αντιπαραβολών',
|
||||
'reconcile' => 'Συμβιβασμός',
|
||||
'reconcile' => 'Τακτοποίηση',
|
||||
'account_on_spectre' => 'Λογαριασμός (Spectre)',
|
||||
'account_on_ynab' => 'Λογαριασμός (YNAB)',
|
||||
'do_import' => 'Εισαγωγή από αυτό το λογαριασμό',
|
||||
|
@ -30,7 +30,7 @@ return [
|
||||
'unique_account_number_for_user' => 'Φαίνεται πως αυτός ο αριθμός λογαριασμού χρησιμοποιήται ήδη.',
|
||||
'unique_iban_for_user' => 'Φαίνεται πως αυτό το IBAN είναι ήδη σε χρήση.',
|
||||
'deleted_user' => 'Για λόγους ασφαλείας, δεν μπορείτε να εγγραφείτε χρησιμοποιώντας αυτή τη διεύθυνση email.',
|
||||
'rule_trigger_value' => 'Αυτή η τιμή δεν είναι έγκυρη για την επιλεγμένη σκανδάλη.',
|
||||
'rule_trigger_value' => 'Αυτή η τιμή δεν είναι έγκυρη για το επιλεγμένο κριτήριο ενεργοποίησης.',
|
||||
'rule_action_value' => 'Αυτή η τιμή δεν είναι έγκυρη για την επιλεγμένη ενέργεια.',
|
||||
'file_already_attached' => 'Το μεταφορτωμένο αρχείο ":name" είναι ήδη συννημένο σε αυτό το αντικείμενο.',
|
||||
'file_attached' => 'Επιτυχής μεταφόρτωση του αρχείου ":name.',
|
||||
@ -53,7 +53,7 @@ return [
|
||||
'belongs_to_user' => 'Η τιμή του :attribute είναι άγνωστη.',
|
||||
'accepted' => 'Το :attribute πρέπει να γίνει αποδεκτό.',
|
||||
'bic' => 'Αυτό δεν είναι έγκυρο IBAN.',
|
||||
'at_least_one_trigger' => 'Ο κανόνας πρέπει να έχει τουλάχιστον μία σκανδάλη.',
|
||||
'at_least_one_trigger' => 'Ο κανόνας πρέπει να έχει τουλάχιστον ένα κριτήριο ενεργοποίησης.',
|
||||
'at_least_one_action' => 'Ο κανόνας πρέπει να έχει τουλάχιστον μία λειτουργία.',
|
||||
'base64' => 'Αυτά δεν είναι έγκυρα base64 κωδικοποιημένα δεδομένα.',
|
||||
'model_id_invalid' => 'Το παραχωρημένο αναγνωριστικό δε φαίνεται έγκυρο για αυτό το μοντέλο.',
|
||||
@ -159,16 +159,16 @@ return [
|
||||
'rule-action.3' => 'ενέργεια κανόνα #3',
|
||||
'rule-action.4' => 'ενέργεια κανόνα #4',
|
||||
'rule-action.5' => 'ενέργεια κανόνα #5',
|
||||
'rule-trigger-value.1' => 'τιμή σκανδάλης κανόνα #1',
|
||||
'rule-trigger-value.2' => 'τιμή σκανδάλης κανόνα #2',
|
||||
'rule-trigger-value.3' => 'τιμή σκανδάλης κανόνα #3',
|
||||
'rule-trigger-value.4' => 'τιμή σκανδάλης κανόνα #4',
|
||||
'rule-trigger-value.5' => 'τιμή σκανδάλης κανόνα #5',
|
||||
'rule-trigger.1' => 'σκανδάλη κανόνα #1',
|
||||
'rule-trigger.2' => 'σκανδάλη κανόνα #2',
|
||||
'rule-trigger.3' => 'σκανδάλη κανόνα #3',
|
||||
'rule-trigger.4' => 'σκανδάλη κανόνα #4',
|
||||
'rule-trigger.5' => 'σκανδάλη κανόνα #5',
|
||||
'rule-trigger-value.1' => 'τιμή κριτηρίου κανόνα #1',
|
||||
'rule-trigger-value.2' => 'τιμή κριτηρίου κανόνα #2',
|
||||
'rule-trigger-value.3' => 'τιμή κριτηρίου κανόνα #3',
|
||||
'rule-trigger-value.4' => 'τιμή κριτηρίου κανόνα #4',
|
||||
'rule-trigger-value.5' => 'τιμή κριτηρίου κανόνα #5',
|
||||
'rule-trigger.1' => 'κριτήριο κανόνα #1',
|
||||
'rule-trigger.2' => 'κριτήριο κανόνα #2',
|
||||
'rule-trigger.3' => 'κριτήριο κανόνα #3',
|
||||
'rule-trigger.4' => 'κριτήριο κανόνα #4',
|
||||
'rule-trigger.5' => 'κριτήριο κανόνα #5',
|
||||
],
|
||||
|
||||
// validation of accounts:
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Edit transaction ":description"',
|
||||
'edit_reconciliation' => 'Edit ":description"',
|
||||
'delete_journal' => 'Delete transaction ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Tags',
|
||||
'createTag' => 'Create new tag',
|
||||
'edit_tag' => 'Edit tag ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'average_per_bill' => 'average per bill',
|
||||
'expected_total' => 'expected total',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Authorization Request',
|
||||
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name in :currency',
|
||||
'paid_in_currency' => 'Paid in :currency',
|
||||
'unpaid_in_currency' => 'Unpaid in :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Check for updates',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(partially) refunds',
|
||||
'(partially) pays for_outward' => '(partially) pays for',
|
||||
'(partially) reimburses_outward' => '(partially) reimburses',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Splits',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Fake an import',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Editar transacción ":description"',
|
||||
'edit_reconciliation' => 'Editar ":description"',
|
||||
'delete_journal' => 'Eliminar transacción ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Etiquetas',
|
||||
'createTag' => 'Crear nueva etiqueta',
|
||||
'edit_tag' => 'Editar etiqueta ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'sólo facturas activas y esperadas',
|
||||
'average_per_bill' => 'promedio por cuenta',
|
||||
'expected_total' => 'total esperado',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Solicitud de autorización',
|
||||
'authorization_request_intro' => '<strong>:client</strong> está solicitando permiso para acceder a su administración financiera. ¿Desea autorizar a <strong>:client</strong> para acceder a estos registros?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name en :currency',
|
||||
'paid_in_currency' => 'Pagado en :currency',
|
||||
'unpaid_in_currency' => 'Impago en :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Ver actualizaciones',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(parcialmente) reembolso',
|
||||
'(partially) pays for_outward' => '(parcialmente) paga por',
|
||||
'(partially) reimburses_outward' => '(parcialmente) reembolsa',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Divisiones',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'Como se describe en <a href="https://www.patreon.com/posts/future-updates-30012174">esta publicación de patreón</a>, la forma en que Firefly III administra los datos importados va a cambiar. Esto significa que el importador CSV se trasladará a una nueva herramienta separada. Ya puede probar esta herramienta si visita <a href="https://github.com/firefly-iii/csv-importer">este repositorio de GitHub</a>. Le agradecería que probara el nuevo importador y me hiciera saber lo que piensa.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Simular una importación',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Muokkaa tapahtumaa ":description"',
|
||||
'edit_reconciliation' => 'Muokkaa ":description"',
|
||||
'delete_journal' => 'Poista tapahtuma ":description"',
|
||||
'delete_group' => 'Poista tapahtuma ":description"',
|
||||
'tags' => 'Tägit',
|
||||
'createTag' => 'Luo uusi tägi',
|
||||
'edit_tag' => 'Muokkaa tägiä ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'vain aktiiviset ja odotettavissa olevat laskut',
|
||||
'average_per_bill' => 'keskiarvo laskuittain',
|
||||
'expected_total' => 'odotettavissa yhteensä',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Valtuutus Pyyntö',
|
||||
'authorization_request_intro' => '<strong>:client</strong> pyytää valtuutustasi nähdäkseen sinun taloushallintosi. Haluatko antaa hänelle pääsyn näihin tietoihin?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name valuutassa :currency',
|
||||
'paid_in_currency' => 'Maksettu valuutassa :currency',
|
||||
'unpaid_in_currency' => 'Maksamatta valuutassa :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Tarkista päivitykset',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(osittainen) palautus',
|
||||
'(partially) pays for_outward' => '(osittainen) maksu',
|
||||
'(partially) reimburses_outward' => '(osittainen) korvaus',
|
||||
'is (partially) refunded by' => 'on (osittain) palauttanut',
|
||||
'is (partially) paid for by' => 'on (osittain) maksanut',
|
||||
'is (partially) reimbursed by' => 'on (osittain) korvannut',
|
||||
'relates to' => 'liittyy',
|
||||
'(partially) refunds' => '(osittainen) palautus',
|
||||
'(partially) pays for' => '(osittainen) maksu',
|
||||
'(partially) reimburses' => '(osittainen) korvaus',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Tapahtuman osat',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'Kuten <a href="https://www.patreon.com/posts/future-updates-30012174">tässä Patreon-artikkelissa</a> esitetään, Firefly III:n tuontitietojen hallintatapa muuttuu. Tämä tarkoittaa, että CSV-tuoja siirretään uuteen, erilliseen työkaluun. Tätä toimintoa voi jo testata vierailemalla <a href="https://github.com/firefly-iii/csv-importer">tässä GitHub-arkistossa</a>. Olisin kiitollinen, jos testaisit uutta työkalua ja kertoisit mielipiteesi siitä.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Tee harjoittelutuonti',
|
||||
|
@ -40,7 +40,7 @@ return [
|
||||
'search_result' => 'Résultats de recherche pour ":query"',
|
||||
'withdrawal_list' => 'Dépenses',
|
||||
'Withdrawal_list' => 'Dépenses',
|
||||
'deposit_list' => 'Revenu, salaire et versements',
|
||||
'deposit_list' => 'Revenus, salaires et versements',
|
||||
'transfer_list' => 'Virements',
|
||||
'transfers_list' => 'Virements',
|
||||
'reconciliation_list' => 'Rapprochements',
|
||||
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Modifier l\'opération ":description"',
|
||||
'edit_reconciliation' => 'Éditer ":description"',
|
||||
'delete_journal' => 'Supprimer l\'opération ":description"',
|
||||
'delete_group' => 'Supprimer l\'opération ":description"',
|
||||
'tags' => 'Tags',
|
||||
'createTag' => 'Créer un nouveau mot-clé',
|
||||
'edit_tag' => 'Modifier le tag ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'uniquement les factures actives et attendues',
|
||||
'average_per_bill' => 'moyenne par facture',
|
||||
'expected_total' => 'total prévu',
|
||||
'reconciliation_account_name' => 'Régularisation :name',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name en :currency',
|
||||
'paid_in_currency' => 'Payé en :currency',
|
||||
'unpaid_in_currency' => 'Non payé en :currency',
|
||||
'is_alpha_warning' => 'Vous utilisez une version ALPHA. Méfiez-vous des bogues et des problèmes.',
|
||||
'is_beta_warning' => 'Vous utilisez une version BETA. Méfiez-vous des bogues et des problèmes.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Vérifier les mises à jour',
|
||||
@ -938,9 +941,9 @@ return [
|
||||
'delete_withdrawal' => 'Supprimer le retrait ":description"',
|
||||
'delete_deposit' => 'Supprimer le dépôt ":description"',
|
||||
'delete_transfer' => 'Supprimer le transfert ":description"',
|
||||
'deleted_withdrawal' => 'Retrait ":name" correctement supprimé',
|
||||
'deleted_deposit' => 'Dépôt ":name" correctement supprimé',
|
||||
'deleted_transfer' => 'Opération ":name" correctement supprimée',
|
||||
'deleted_withdrawal' => 'Retrait ":description" correctement supprimé',
|
||||
'deleted_deposit' => 'Dépôt ":description" correctement supprimé',
|
||||
'deleted_transfer' => 'Opération ":description" correctement supprimée',
|
||||
'stored_journal' => 'Opération ":description" créée avec succès',
|
||||
'stored_journal_no_descr' => 'Nouvelle opération créée avec succès',
|
||||
'updated_journal_no_descr' => 'Votre opération a été mise à jour avec succès',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => 'rembourse (partiellement)',
|
||||
'(partially) pays for_outward' => 'paye (partiellement) pour',
|
||||
'(partially) reimburses_outward' => 'rembourse (partiellement)',
|
||||
'is (partially) refunded by' => 'est (partiellement) remboursé par',
|
||||
'is (partially) paid for by' => 'est (partiellement) payé par',
|
||||
'is (partially) reimbursed by' => 'est (partiellement) remboursé par',
|
||||
'relates to' => 'se rapporte à',
|
||||
'(partially) refunds' => 'rembourse (partiellement)',
|
||||
'(partially) pays for' => 'paye (partiellement) pour',
|
||||
'(partially) reimburses' => 'rembourse (partiellement)',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Ventilations',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'Comme indiqué dans <a href="https://www.patreon.com/posts/future-updates-30012174">ce post Patreon</a>, la façon dont Firefly III gère l\'importation des données va changer. Cela signifie que l\'importateur CSV sera déplacé vers un nouvel outil séparé. Vous pouvez déjà bêta-tester cet outil si vous visitez <a href="https://github.com/firefly-iii/csv-importer">ce dépôt GitHub</a>. Je vous serais reconnaissant de tester le nouvel importateur et de me faire savoir ce que vous en pensez.',
|
||||
'final_csv_import' => 'Comme indiqué dans <a href="https://www.patreon.com/posts/future-updates-30012174">ce post Patreon</a>, la façon dont Firefly III gère l\'importation des données va changer. Cela signifie qu\'il s\'agit de la dernière version de Firefly III comportant un importateur CSV. Un outil dédié est disponible, je vous invite à l\'essayer : <a href="https://github.com/firefly-iii/csv-importer">Firefly III CSV importer</a>. Je vous serais reconnaissant de tester le nouvel importateur et de me faire savoir ce que vous en pensez.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Simuler une importation',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => '":description" tranzakció szerkesztése',
|
||||
'edit_reconciliation' => '":description" szerkesztése',
|
||||
'delete_journal' => '":description" tranzakció törlése',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Cimkék',
|
||||
'createTag' => 'Új címke létrehozása',
|
||||
'edit_tag' => '":tag" címke szerkesztése',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'average_per_bill' => 'számlánkénti átlag',
|
||||
'expected_total' => 'várható teljes összeg',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name - :currency',
|
||||
'paid_in_currency' => 'Fizetve :currency -ban',
|
||||
'unpaid_in_currency' => 'Be nem fizetett :currency -ban',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Frissítések ellenőrzése',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(részben) visszatérítve',
|
||||
'(partially) pays for_outward' => '(partially) pays for',
|
||||
'(partially) reimburses_outward' => '(részben) visszafizetve',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Felosztások',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Importálás imitálása',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Edit transaksi ":description"',
|
||||
'edit_reconciliation' => 'Edit ":description"',
|
||||
'delete_journal' => 'Hapus transaksi ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Label',
|
||||
'createTag' => 'Buat label baru',
|
||||
'edit_tag' => 'Edit label ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'average_per_bill' => 'average per bill',
|
||||
'expected_total' => 'expected total',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Authorization Request',
|
||||
'authorization_request_intro' => '<strong>:client</strong> is requesting permission to access your financial administration. Would you like to authorize <strong>:client</strong> to access these records?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name in :currency',
|
||||
'paid_in_currency' => 'Paid in :currency',
|
||||
'unpaid_in_currency' => 'Unpaid in :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Check for updates',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(sebagian) pengembalian uang',
|
||||
'(partially) pays for_outward' => '(sebagian) membayar',
|
||||
'(partially) reimburses_outward' => '(sebagian) penggantian',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Perpecahan',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Fake an import',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Modifica transazione ":description"',
|
||||
'edit_reconciliation' => 'Modifica ":description"',
|
||||
'delete_journal' => 'Elimina transazione ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Etichette',
|
||||
'createTag' => 'Crea nuova etichetta',
|
||||
'edit_tag' => 'Modifica etichetta ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'solo bollette attive e previste',
|
||||
'average_per_bill' => 'media per bolletta',
|
||||
'expected_total' => 'totale previsto',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name in :currency',
|
||||
'paid_in_currency' => 'Pagata in :currency',
|
||||
'unpaid_in_currency' => 'Non pagata in :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Controlla aggiornamenti',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => 'rimborsa (parzialmente)',
|
||||
'(partially) pays for_outward' => '(parzialmente) paga per',
|
||||
'(partially) reimburses_outward' => '(parzialmente) rimborsa',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Suddivisioni',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'Come descritto in <a href="https://www.patreon.com/posts/future-updates-30012174">questo post Patreon</a>, il modo in cui Firefly III gestisce l\'importazione dei dati cambierà. Ciò significa che l\'importatore CSV sarà spostato in un nuovo strumento separato. Puoi già testare questo strumento visitando <a href="https://github.com/firefly-iii/csv-importer">questo repository GitHub</a>. Prova il nuovo importatore e fammi sapere cosa ne pensi.',
|
||||
'final_csv_import' => 'Come descritto in <a href="https://www.patreon.com/posts/future-updates-30012174">questo post Patreon</a>, il modo in cui Firefly III gestisce l\'importazione dei dati cambierà. Ciò significa che questa è l\'ultima versione di Firefly III che presenta l\'importatore CSV. È disponibile uno strumento separato che puoi provare tu stesso: <a href="https://github.com/firefly-iii/csv-importer">l\'importatore CSV di Firefly III</a>. Ti sarei molto grato se lo provassi e mi facessi sapere cosa ne pensi.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Esegui un\'importazione fittizia',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Rediger transaksjon ":description"',
|
||||
'edit_reconciliation' => 'Endre ":description"',
|
||||
'delete_journal' => 'Slett transaksjon ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Tagger',
|
||||
'createTag' => 'Opprett ny tagg',
|
||||
'edit_tag' => 'Rediger tagg ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'average_per_bill' => 'gjennomsnitt per regning',
|
||||
'expected_total' => 'forventet totalt',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version autorisasjonsforespørsel',
|
||||
'authorization_request_intro' => '<strong>:client</strong> ber om tillatelse til å få tilgang til finansadministrasjonen din. Vil du autorisere <strong>:client</strong> slik at den får tilgang til disse dine data?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name i :currency',
|
||||
'paid_in_currency' => 'Betalt i :currency',
|
||||
'unpaid_in_currency' => 'Ubetalt i :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Se etter oppdateringer',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(delvise) refusjoner',
|
||||
'(partially) pays for_outward' => 'betaler (delvis) for',
|
||||
'(partially) reimburses_outward' => 'tilbakebetaler (delvis)',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Deler opp',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Utfør fake import',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Wijzig transactie ":description"',
|
||||
'edit_reconciliation' => 'Wijzig ":description"',
|
||||
'delete_journal' => 'Verwijder transactie ":description"',
|
||||
'delete_group' => 'Verwijder transactie ":description"',
|
||||
'tags' => 'Tags',
|
||||
'createTag' => 'Maak nieuwe tag',
|
||||
'edit_tag' => 'Wijzig tag ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'alleen actieve en verwachte contracten',
|
||||
'average_per_bill' => 'gemiddeld per contract',
|
||||
'expected_total' => 'verwacht totaal',
|
||||
'reconciliation_account_name' => ':name afstemmingsrekening',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name in :currency',
|
||||
'paid_in_currency' => 'Betaald in :currency',
|
||||
'unpaid_in_currency' => 'Nog niet betaald in :currency',
|
||||
'is_alpha_warning' => 'Je gebruikt een ALPHA versie. Let op bugs en fouten.',
|
||||
'is_beta_warning' => 'Je gebruikt een BETA versie. Let op bugs en fouten.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Op updates controleren',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => 'is een (gedeeltelijke) terugbetaling voor',
|
||||
'(partially) pays for_outward' => 'betaalt (deels) voor',
|
||||
'(partially) reimburses_outward' => 'vergoedt (deels)',
|
||||
'is (partially) refunded by' => 'wordt (deels) terugbetaald door',
|
||||
'is (partially) paid for by' => 'wordt (deels) betaald door',
|
||||
'is (partially) reimbursed by' => 'wordt (deels) vergoed door',
|
||||
'relates to' => 'gerelateerd aan',
|
||||
'(partially) refunds' => 'is een (gedeeltelijke) terugbetaling voor',
|
||||
'(partially) pays for' => 'betaalt (deels) voor',
|
||||
'(partially) reimburses' => 'vergoedt (deels)',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Splitten',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'De manier waarop Firefly III je data laat importeren gaat veranderen. Je kan lezen in <a href="https://www.patreon.com/posts/future-updates-30012174">deze Patreon-post</a> dat de CSV import-tool gaat verhuizen naar een zelfstandige repository en tool. Je kan deze alvast beta-testen als je <a href="https://github.com/firefly-iii/csv-importer">deze GitHub repository</a> bezoekt. Als je dat zou willen doen, heel graag, en laat me weten of het lukt.',
|
||||
'final_csv_import' => 'De manier waarop Firefly III je data laat importeren gaat veranderen. Je kan lezen in <a href="https://www.patreon.com/posts/future-updates-30012174">deze Patreon-post</a> dat de CSV import-tool gaat verhuizen naar een zelfstandige repository en tool. Dit is de laatste versie met de CSV importer. Check <a href="https://github.com/firefly-iii/csv-importer">deze GitHub repository</a> en test de nieuwe tool.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Nepdata importeren',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Modyfikuj transakcję ":description"',
|
||||
'edit_reconciliation' => 'Edytuj ":description"',
|
||||
'delete_journal' => 'Usuń transakcję ":description"',
|
||||
'delete_group' => 'Usuń transakcję ":description"',
|
||||
'tags' => 'Tagi',
|
||||
'createTag' => 'Utwórz nowy tag',
|
||||
'edit_tag' => 'Modyfikuj tag ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'tylko aktywne i oczekiwane rachunki',
|
||||
'average_per_bill' => 'średnia za rachunek',
|
||||
'expected_total' => 'oczekiwana suma',
|
||||
'reconciliation_account_name' => 'Uzgodnienie :name',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name w :currency',
|
||||
'paid_in_currency' => 'Zapłacone w :currency',
|
||||
'unpaid_in_currency' => 'Niezapłacone w :currency',
|
||||
'is_alpha_warning' => 'Używasz wersji ALPHA. Uważaj na błędy i problemy.',
|
||||
'is_beta_warning' => 'Używasz wersji BETA. Uważaj na błędy i problemy.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Sprawdź aktualizacje',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(częściowo) refundowany',
|
||||
'(partially) pays for_outward' => '(częściowo) płaci za',
|
||||
'(partially) reimburses_outward' => '(częściowo) refundowany',
|
||||
'is (partially) refunded by' => 'jest (częściowo) zwracane przez',
|
||||
'is (partially) paid for by' => 'jest (częściowo) opłacane przez',
|
||||
'is (partially) reimbursed by' => 'jest (częściowo) refundowany przez',
|
||||
'relates to' => 'odnosi się do',
|
||||
'(partially) refunds' => '(częściowo) zwraca',
|
||||
'(partially) pays for' => '(częściowo) płaci za',
|
||||
'(partially) reimburses' => '(częściowo) refunduje',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Podziały',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Fałszywy import',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Editar transação ":description"',
|
||||
'edit_reconciliation' => 'Editar ":description"',
|
||||
'delete_journal' => 'Apagar transação ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Etiquetas',
|
||||
'createTag' => 'Criar nova etiqueta',
|
||||
'edit_tag' => 'Editar etiqueta ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'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',
|
||||
// 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?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name em :currency',
|
||||
'paid_in_currency' => 'Pago em :currency',
|
||||
'unpaid_in_currency' => 'Não pago em :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Verificar Atualizações',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => 'reembolsos (parcialmente)',
|
||||
'(partially) pays for_outward' => 'paga (parcialmente) por',
|
||||
'(partially) reimburses_outward' => 'reembolsos (parcialmente)',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Divide-se',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'Como descrito neste <a href="https://www.patreon.com/posts/future-updates-30012174">post no Patreon</a>, a forma como o Firefly III gerencia a importação de dados vai mudar. Isto significa que esta é a última versão do Firefly III que incluirá um importador CSV. Uma ferramenta separada está disponível e você deveria testar: <a href="https://github.com/firefly-iii/csv-importer">o importador CSV Firefly III.</a>. Agradeço se você puder testar o novo importador e me dizer o que acha.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Fingir uma importação',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Editează tranzacția ":description"',
|
||||
'edit_reconciliation' => 'Editează ":description"',
|
||||
'delete_journal' => 'Șterge tranzacția ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Etichete',
|
||||
'createTag' => 'Crează o etichetă nouă',
|
||||
'edit_tag' => 'Editează eticheta ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'numai facturi active și așteptate',
|
||||
'average_per_bill' => 'media pe factură',
|
||||
'expected_total' => 'total așteptat',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'v: Solicitare de autorizare',
|
||||
'authorization_request_intro' => '<strong> :client </ strong> solicită permisiunea de a accesa administrația financiară. Doriți să autorizați <strong> :client </ strong> pentru a accesa aceste înregistrări?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name în :currency',
|
||||
'paid_in_currency' => 'Plătit în :currency',
|
||||
'unpaid_in_currency' => 'Neplătit în :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Verifică actualizări',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(parțial) restituiri',
|
||||
'(partially) pays for_outward' => '(parțial) plătește pentru',
|
||||
'(partially) reimburses_outward' => '(parțial) ramburseaza',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Desparte',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'După cum s-a subliniat în <a href="https://www.patreon.com/posts/future-updates-30012174"> această postare Patreon </a>, modul în care Firefly III gestionează importul de date se va schimba. Aceasta înseamnă că importatorul CSV va fi mutat într-un instrument nou, separat. Puteți deja testa acest instrument dacă accesați <a href="https://github.com/firefly-iii/csv-importer"> acest repository de pe GitHub </a>. Aș aprecia dacă ați testa noul importator și ați anunța ce credeți.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Simulează un import',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Редактирование транзакции ":description"',
|
||||
'edit_reconciliation' => 'Редактировать ":description"',
|
||||
'delete_journal' => 'Удаление транзакции ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Метки',
|
||||
'createTag' => 'Создать новую метку',
|
||||
'edit_tag' => 'Редактирование метки ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'только активные и ожидаемые счета на оплату',
|
||||
'average_per_bill' => 'в среднем на счёт',
|
||||
'expected_total' => 'ожидаемый итог',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Запрос авторизации Firefly III v:version',
|
||||
'authorization_request_intro' => '<strong>:client</strong> запрашивает доступ к управлению вашими финансами. Вы хотите разрешить <strong>:client</strong> доступ к этой информации?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name в :currency',
|
||||
'paid_in_currency' => 'Оплачено в :currency',
|
||||
'unpaid_in_currency' => 'Неоплачено в :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Проверить обновления',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(частично) возвращены',
|
||||
'(partially) pays for_outward' => '(частично) оплачены',
|
||||
'(partially) reimburses_outward' => '(частично) возмещены',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Разделение транзакции',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Поддельный (демо) импорт',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => 'Redigera transaktionen ”:description”',
|
||||
'edit_reconciliation' => 'Redigera ”:description”',
|
||||
'delete_journal' => 'Ta bort transaktionen ”:description”',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Etiketter',
|
||||
'createTag' => 'Skapa en ny etikett',
|
||||
'edit_tag' => 'Redigera etiketten ”:tag”',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'endast aktiva och väntade notor',
|
||||
'average_per_bill' => 'medel per nota',
|
||||
'expected_total' => 'total förväntad',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v:version Auktorisationsbegäran',
|
||||
'authorization_request_intro' => '<strong>:client</strong> begär tillstånd för åtkomst till din ekonomi administration. Vill du tillåta <strong>:client</strong> åtkomst till dessa poster?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name i :currency',
|
||||
'paid_in_currency' => 'Betalad i :currency',
|
||||
'unpaid_in_currency' => 'Obetalad i :currency',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Sök uppdateringar',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(delvis) återbetalningar',
|
||||
'(partially) pays for_outward' => '(delvis) betalning för',
|
||||
'(partially) reimburses_outward' => '(delvis) ersättning',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Dela upp',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Fejka en import',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => '":description" işlemini düzenle',
|
||||
'edit_reconciliation' => '":description" açıklamasını düzenle',
|
||||
'delete_journal' => '":description" işlemini sil',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => 'Etiketler',
|
||||
'createTag' => 'Yeni etiket oluştur',
|
||||
'edit_tag' => '":tag" etiketini düzenle',
|
||||
|
@ -206,6 +206,7 @@ return [
|
||||
'active_exp_bills_only' => 'sadece aktif ve beklenen faturalar',
|
||||
'average_per_bill' => 'fatura başına ortalama',
|
||||
'expected_total' => 'beklenen toplam',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III v: version Yetkilendirme İsteği',
|
||||
'authorization_request_intro' => '<strong>:client</strong> finansal yönetiminize erişmek için izin istiyor. Bu kayıtlara erişmek için <strong>:client</strong> \'yi yetkilendirmek ister misiniz?',
|
||||
@ -216,6 +217,8 @@ return [
|
||||
'name_in_currency' => ':name :currency',
|
||||
'paid_in_currency' => ':currency olarak ödenen',
|
||||
'unpaid_in_currency' => ':currency olarak ödenmeyen',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => 'Güncellemeleri kontrol et',
|
||||
@ -1393,6 +1396,13 @@ işlemlerin kontrol edildiğini lütfen unutmayın.',
|
||||
'(partially) refunds_outward' => '(kısmen) geri ödeme',
|
||||
'(partially) pays for_outward' => 'için (kısmen) öder',
|
||||
'(partially) reimburses_outward' => '(kısmen) iade edilir',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => 'Bölmeler',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => 'Sahte içe aktar',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => '编辑交易 ":description"',
|
||||
'edit_reconciliation' => '编辑 ":description"',
|
||||
'delete_journal' => '删除交易 ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => '标签',
|
||||
'createTag' => '建立新标签',
|
||||
'edit_tag' => '编辑标签 ":tag"',
|
||||
|
@ -87,13 +87,13 @@ return [
|
||||
'no_help_could_be_found' => '找不到说明文本。',
|
||||
'no_help_title' => '不好意思,发生一个错误。',
|
||||
'two_factor_welcome' => '您好!',
|
||||
'two_factor_enter_code' => '若要继续,请输入你的两步骤验证 (two factor authentication) 代码,您的应用程式可为您产生。',
|
||||
'two_factor_enter_code' => '若要继续,请输入您的应用为您生成的两步验证代码。',
|
||||
'two_factor_code_here' => '在此输入代码',
|
||||
'two_factor_title' => '两步骤验证',
|
||||
'two_factor_title' => '两步验证',
|
||||
'authenticate' => '验证',
|
||||
'two_factor_forgot_title' => '遗失两步骤验证',
|
||||
'two_factor_forgot' => '往忘记我的两步骤什麽的。',
|
||||
'two_factor_lost_header' => '遗失您的两步骤验证吗?',
|
||||
'two_factor_forgot_title' => '遗失两步验证',
|
||||
'two_factor_forgot' => '我忘记了我的双重验。',
|
||||
'two_factor_lost_header' => '遗失了您的两步验证吗?',
|
||||
'two_factor_lost_intro' => '如果您不幸丢失了备份代码。您不能通过网页节目修复。你有两个选择。',
|
||||
'two_factor_lost_fix_self' => '如果你运行您自己的 Fireflus III 实例,请在 <code>存储/日志</code> 中检查日志,或者运行 <code>docker logs <container_id></code> 查看说明 (刷新此页面)。',
|
||||
'two_factor_lost_fix_owner' => '否则,请致信网站拥有者,<a href="mailto::site_owner">:site_owner</a> 并要求他们重置你的两步骤验证。',
|
||||
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => '只显示有效和预期的账单',
|
||||
'average_per_bill' => '每张帐单的平均数',
|
||||
'expected_total' => '期望总数',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III :version 版授权请求',
|
||||
'authorization_request_intro' => '<strong>:client</strong> 正在要求通行您的财务管理后台的许可,您是否愿意授权 <strong>:client</strong> 通行这些纪录?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name 于 :currency',
|
||||
'paid_in_currency' => '以 :currency 支付',
|
||||
'unpaid_in_currency' => '未以 :currency 支付',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => '检查更新',
|
||||
@ -534,15 +537,15 @@ return [
|
||||
'pref_custom_fiscal_year_label' => '已启用',
|
||||
'pref_custom_fiscal_year_help' => '在使用1月1日至12月31日以外作为会计年度的国家,您可开启此功能并指定财政年度的起迄日。',
|
||||
'pref_fiscal_year_start_label' => '财政年度开始日期',
|
||||
'pref_two_factor_auth' => '两步骤验证',
|
||||
'pref_two_factor_auth_help' => '当您启用两步骤验证 (亦称为双重验证),便为您的帐号增加了一层安全保护。您以已知的方式 (密码) 以及既有物 (认证码) 登入,认证码系由您的手机产生,如 Authy 或 Google 身份验证器。',
|
||||
'pref_enable_two_factor_auth' => '启用两步骤验证',
|
||||
'pref_two_factor_auth_disabled' => '两步骤验证码已删除且停用',
|
||||
'pref_two_factor_auth' => '两步验证',
|
||||
'pref_two_factor_auth_help' => '当您启用两步验证 (亦称为双重验证),便为您的帐号增加了一层安全保护。您以已知的方式 (密码) 以及既有物 (认证码) 登入,认证码系由您的手机产生,如 Authy 或 Google 身份验证器。',
|
||||
'pref_enable_two_factor_auth' => '启用两步验证',
|
||||
'pref_two_factor_auth_disabled' => '两步验证码已删除且停用',
|
||||
'pref_two_factor_auth_remove_it' => '别忘记自您的验证应用程式上删除帐号!',
|
||||
'pref_two_factor_auth_code' => '验证码',
|
||||
'pref_two_factor_auth_code_help' => '使用手机上的应用程式,如 Authy 或 Google 身分验证器,扫描 QR 码并输入自动产生之代码。',
|
||||
'pref_two_factor_auth_reset_code' => '重设认证码',
|
||||
'pref_two_factor_auth_disable_2fa' => '停用两步骤验证',
|
||||
'pref_two_factor_auth_disable_2fa' => '停用两步验证',
|
||||
'2fa_use_secret_instead' => '如果您无法扫描 QR 码,请使用密钥: <code>:secret</code>。',
|
||||
'2fa_backup_codes' => '保存这些备份代码,以便在您丢失设备时访问。',
|
||||
'2fa_already_enabled' => '2步验证已启用。',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(部分)退款',
|
||||
'(partially) pays for_outward' => '(部分)支付',
|
||||
'(partially) reimburses_outward' => '(部分)还款',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => '拆分',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => '假造导入',
|
||||
|
@ -51,6 +51,7 @@ return [
|
||||
'edit_journal' => '編輯交易 ":description"',
|
||||
'edit_reconciliation' => '編輯 ":description"',
|
||||
'delete_journal' => '刪除交易 ":description"',
|
||||
'delete_group' => 'Delete transaction ":description"',
|
||||
'tags' => '標籤',
|
||||
'createTag' => '建立新標籤',
|
||||
'edit_tag' => '編輯標籤 ":tag"',
|
||||
|
@ -205,6 +205,7 @@ return [
|
||||
'active_exp_bills_only' => 'active and expected bills only',
|
||||
'average_per_bill' => '每張帳單的平均數',
|
||||
'expected_total' => '預期總數',
|
||||
'reconciliation_account_name' => ':name reconciliation',
|
||||
// API access
|
||||
'authorization_request' => 'Firefly III :version 版授權請求',
|
||||
'authorization_request_intro' => '<strong>:client</strong> 正要求權限存取您的財務管理,您是否願意授權 <strong>:client</strong> 存取這些紀錄?',
|
||||
@ -215,6 +216,8 @@ return [
|
||||
'name_in_currency' => ':name 於 :currency',
|
||||
'paid_in_currency' => '以 :currency 支付',
|
||||
'unpaid_in_currency' => '未以 :currency 支付',
|
||||
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
|
||||
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
|
||||
|
||||
// check for updates:
|
||||
'update_check_title' => '檢查更新',
|
||||
@ -1391,6 +1394,13 @@ return [
|
||||
'(partially) refunds_outward' => '(部分) 退還',
|
||||
'(partially) pays for_outward' => '(部分) 支付',
|
||||
'(partially) reimburses_outward' => '(部分) 核銷',
|
||||
'is (partially) refunded by' => 'is (partially) refunded by',
|
||||
'is (partially) paid for by' => 'is (partially) paid for by',
|
||||
'is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||
'relates to' => 'relates to',
|
||||
'(partially) refunds' => '(partially) refunds',
|
||||
'(partially) pays for' => '(partially) pays for',
|
||||
'(partially) reimburses' => '(partially) reimburses',
|
||||
|
||||
// split a transaction:
|
||||
'splits' => '拆分',
|
||||
|
@ -38,6 +38,7 @@ return [
|
||||
|
||||
// notices about the CSV importer:
|
||||
'deprecate_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that the CSV importer will be moved to a new, separate tool. You can already beta-test this tool if you visit <a href="https://github.com/firefly-iii/csv-importer">this GitHub repository</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
'final_csv_import' => 'As outlined in <a href="https://www.patreon.com/posts/future-updates-30012174">this Patreon post</a>, the way Firefly III manages importing data is going to change. That means that this is the last version of Firefly III that will feature a CSV importer. A separated tool is available that you should try for yourself: <a href="https://github.com/firefly-iii/csv-importer">the Firefly III CSV importer</a>. I would appreciate it if you would test the new importer and let me know what you think.',
|
||||
|
||||
// import provider strings (index):
|
||||
'button_fake' => '模擬匯入',
|
||||
|
@ -86,6 +86,7 @@
|
||||
console.log('Set object location: lat(' + e.latlng.lat + '), long(' + e.latlng.lng + '), zoom (' + mymap.getZoom() + ')');
|
||||
$('input[name="{{ latitudevar }}"]').val(e.latlng.lat);
|
||||
$('input[name="{{ longitudevar }}"]').val(e.latlng.lng);
|
||||
$('input[name="{{ haslocationvar }}"]').val('true');
|
||||
}
|
||||
if (typeof e.latlng === 'undefined') {
|
||||
console.log('Set object zoom level to ' + mymap.getZoom());
|
||||
|
@ -16,9 +16,6 @@
|
||||
<p>
|
||||
{{ trans('import.job_config_uc_text') }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ trans('import.deprecate_csv_import')|raw }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -22,9 +22,6 @@
|
||||
{{ trans('import.job_config_map_nothing') }}
|
||||
</p>
|
||||
{% endif %}
|
||||
<p class="text-danger">
|
||||
{{ trans('import.deprecate_csv_import')|raw }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
<p>
|
||||
{{ trans('import.job_config_file_upload_text') }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ trans('import.deprecate_csv_import')|raw }}
|
||||
<p class="text-warning">
|
||||
{{ trans('import.final_csv_import')|raw }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,9 +16,6 @@
|
||||
<p>
|
||||
{{ trans('import.job_config_roles_text') }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ trans('import.deprecate_csv_import')|raw }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
||||
<p>
|
||||
{{ trans('import.general_index_intro') }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ trans('import.deprecate_csv_import')|raw }}
|
||||
<p class="text-warning">
|
||||
{{ trans('import.final_csv_import')|raw }}
|
||||
</p>
|
||||
<div class="row">
|
||||
{% for name, provider in providers %}
|
||||
|
@ -141,9 +141,9 @@
|
||||
<b>{{ 'version'|_ }}</b> <a href="{{ route('debug') }}">{{ Config.get('firefly.version') }}</a>
|
||||
</div>
|
||||
<strong><a href="https://github.com/firefly-iii/firefly-iii">Firefly III</a></strong>
|
||||
<small class="text-muted">Developed by James Cole, the source code is licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0-or-later</a>.</small>
|
||||
{% if FF_IS_ALPHA %}<small class="text-danger"><br>You are running an ALPHA version. Be wary of bugs and issues.</small>{% endif %}
|
||||
{% if FF_IS_BETA %}<small class="text-warning"><br>You are running an BETA version. Be wary of bugs and issues.</small>{% endif %}
|
||||
<small class="text-muted">© James Cole, <a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0-or-later</a>.</small>
|
||||
{% if FF_IS_ALPHA %}<small class="text-danger"><br>{{ 'is_alpha_warning'|_ }}</small>{% endif %}
|
||||
{% if FF_IS_BETA %}<small class="text-warning"><br>{{ 'is_beta_warning'|_ }}</small>{% endif %}
|
||||
</footer>
|
||||
|
||||
{% include('partials.control-bar') %}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user