mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Code cleanup and new translations.
This commit is contained in:
parent
1873be8d95
commit
0a5d62605a
@ -232,7 +232,7 @@ class Handler extends ExceptionHandler
|
||||
*
|
||||
* @param Request $request
|
||||
*/
|
||||
protected function invalid($request, LaravelValidationException $exception): \Illuminate\Http\Response | JsonResponse | RedirectResponse
|
||||
protected function invalid($request, LaravelValidationException $exception): \Illuminate\Http\Response|JsonResponse|RedirectResponse
|
||||
{
|
||||
// protect against open redirect when submitting invalid forms.
|
||||
$previous = app('steam')->getSafePreviousUrl();
|
||||
@ -240,7 +240,8 @@ class Handler extends ExceptionHandler
|
||||
|
||||
return redirect($redirect ?? $previous)
|
||||
->withInput(Arr::except($request->input(), $this->dontFlash))
|
||||
->withErrors($exception->errors(), $request->input('_error_bag', $exception->errorBag));
|
||||
->withErrors($exception->errors(), $request->input('_error_bag', $exception->errorBag))
|
||||
;
|
||||
}
|
||||
|
||||
private function shouldntReportLocal(\Throwable $e): bool
|
||||
|
@ -50,6 +50,7 @@ use Illuminate\Support\Collection;
|
||||
|
||||
/**
|
||||
* Class TransactionJournalFactory
|
||||
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
||||
*/
|
||||
class TransactionJournalFactory
|
||||
{
|
||||
|
@ -118,17 +118,18 @@ class CreateController extends Controller
|
||||
$parts = parse_url($previousUrl);
|
||||
$search = sprintf('?%s', $parts['query'] ?? '');
|
||||
$previousUrl = str_replace($search, '', $previousUrl);
|
||||
if(!is_array($optionalFields)) {
|
||||
$optionalFields = [];
|
||||
}
|
||||
// not really a fan of this, but meh.
|
||||
$optionalDateFields = [
|
||||
'interest_date' => $optionalFields['interest_date'],
|
||||
'book_date' => $optionalFields['book_date'],
|
||||
'process_date' => $optionalFields['process_date'],
|
||||
'due_date' => $optionalFields['due_date'],
|
||||
'payment_date' => $optionalFields['payment_date'],
|
||||
'invoice_date' => $optionalFields['invoice_date'],
|
||||
'interest_date' => $optionalFields['interest_date'] ?? false,
|
||||
'book_date' => $optionalFields['book_date'] ?? false,
|
||||
'process_date' => $optionalFields['process_date'] ?? false,
|
||||
'due_date' => $optionalFields['due_date'] ?? false,
|
||||
'payment_date' => $optionalFields['payment_date'] ?? false,
|
||||
'invoice_date' => $optionalFields['invoice_date'] ?? false,
|
||||
];
|
||||
// var_dump($optionalFields);
|
||||
// exit;
|
||||
$optionalFields['external_url'] ??= false;
|
||||
$optionalFields['location'] ??= false;
|
||||
session()->put('preFilled', $preFilled);
|
||||
|
@ -25,6 +25,7 @@ class IsValidAmount implements ValidationRule
|
||||
$message = sprintf('IsValidAmount: "%s" cannot be empty.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -34,6 +35,7 @@ class IsValidAmount implements ValidationRule
|
||||
$message = sprintf('IsValidAmount: "%s" is not a number.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -43,6 +45,7 @@ class IsValidAmount implements ValidationRule
|
||||
$message = sprintf('IsValidAmount: "%s" cannot be in the scientific notation.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -53,6 +56,7 @@ class IsValidAmount implements ValidationRule
|
||||
$message = sprintf('IsValidAmount: "%s" must be more than %s.', $value, $amount);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -24,6 +24,7 @@ class IsValidPositiveAmount implements ValidationRule
|
||||
$message = sprintf('IsValidPositiveAmount: "%s" cannot be empty.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -33,6 +34,7 @@ class IsValidPositiveAmount implements ValidationRule
|
||||
$message = sprintf('IsValidPositiveAmount: "%s" is not a number.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
// must not be scientific notation:
|
||||
@ -41,6 +43,7 @@ class IsValidPositiveAmount implements ValidationRule
|
||||
$message = sprintf('IsValidPositiveAmount: "%s" cannot be in the scientific notation.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
// must be more than zero:
|
||||
@ -49,6 +52,7 @@ class IsValidPositiveAmount implements ValidationRule
|
||||
$message = sprintf('IsValidPositiveAmount: "%s" must be more than zero.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
// must be less than 100 million and 1709:
|
||||
|
@ -24,6 +24,7 @@ class IsValidZeroOrMoreAmount implements ValidationRule
|
||||
$message = sprintf('IsValidZeroOrMoreAmount: "%s" cannot be empty.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@ -33,6 +34,7 @@ class IsValidZeroOrMoreAmount implements ValidationRule
|
||||
$message = sprintf('IsValidZeroOrMoreAmount: "%s" is not a number.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
// must not be scientific notation:
|
||||
@ -41,6 +43,7 @@ class IsValidZeroOrMoreAmount implements ValidationRule
|
||||
$message = sprintf('IsValidZeroOrMoreAmount: "%s" cannot be in the scientific notation.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
// must be zero or more
|
||||
@ -49,6 +52,7 @@ class IsValidZeroOrMoreAmount implements ValidationRule
|
||||
$message = sprintf('IsValidZeroOrMoreAmount: "%s" must be zero or more.', $value);
|
||||
Log::debug($message);
|
||||
Log::channel('audit')->info($message);
|
||||
|
||||
return;
|
||||
}
|
||||
// must be less than 100 million and 1709:
|
||||
|
@ -53,11 +53,8 @@ trait CurrencyValidation
|
||||
if (!array_key_exists('foreign_amount', $transaction)) {
|
||||
continue;
|
||||
}
|
||||
$foreignAmount = '';
|
||||
if (array_key_exists('foreign_amount', $transaction)) {
|
||||
$foreignAmount = (string) $transaction['foreign_amount'];
|
||||
}
|
||||
if('' === $foreignAmount) {
|
||||
if ('' === $foreignAmount) {
|
||||
continue;
|
||||
}
|
||||
// if foreign amount is present, then the currency must be as well.
|
||||
@ -65,15 +62,8 @@ trait CurrencyValidation
|
||||
$validator->errors()->add('transactions.'.$index.'.foreign_amount', (string) trans('validation.require_currency_info'));
|
||||
}
|
||||
// if the currency is present, then the amount must be present as well.
|
||||
if ((array_key_exists('foreign_currency_id', $transaction) || array_key_exists('foreign_currency_code', $transaction))
|
||||
&& !array_key_exists(
|
||||
'foreign_amount',
|
||||
$transaction
|
||||
)) {
|
||||
$validator->errors()->add(
|
||||
'transactions.'.$index.'.foreign_amount',
|
||||
(string) trans('validation.require_currency_amount')
|
||||
);
|
||||
if (array_key_exists('foreign_currency_id', $transaction) || array_key_exists('foreign_currency_code', $transaction)) {
|
||||
$validator->errors()->add('transactions.'.$index.'.foreign_amount', (string) trans('validation.require_currency_amount'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Ако предпочитате, можете също да отворите нов проблем на https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Пълният stacktrace е отдолу:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Всички суми се отнасят към избрания диапазон',
|
||||
'mapbox_api_key' => 'За да използвате карта, вземете API ключ от <a href="https://www.mapbox.com/"> Mapbox </a>. Отворете вашия <code>.env </code> файл и въведете този код след <code> MAPBOX_API_KEY = </code>.',
|
||||
'press_object_location' => 'Щракнете с десния бутон или натиснете дълго, за да зададете местоположението на обекта.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Изчисти местоположението',
|
||||
'delete_all_selected_tags' => 'Изтрий всички избрани етикети',
|
||||
'select_tags_to_delete' => 'Не забравяйте да изберете някои етикети.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Обнови тегленето',
|
||||
'update_deposit' => 'Обнови депозита',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'След обновяването се върнете тук, за да продължите с редакцията.',
|
||||
'store_as_new' => 'Съхранете като нова транзакция, вместо да я актуализирате.',
|
||||
'reset_after' => 'Изчистване на формуляра след изпращане',
|
||||
'errors_submission' => 'Имаше нещо нередно с вашите данни. Моля, проверете грешките.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Разшири раздел',
|
||||
'transaction_collapse_split' => 'Свий раздел',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Si ho prefereixes, també pots obrir un nou issue a https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'La traça completa és a continuació:',
|
||||
'error_headers' => 'Les següents capçaleres també podrien ser rellevants:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Totes les sumes s\'apliquen al rang seleccionat',
|
||||
'mapbox_api_key' => 'Per fer servir el mapa, aconsegueix una clau API de <a href="https://www.mapbox.com/">Mapbox</a>. Obre el fitxer <code>.env</code> i introdueix-hi el codi després de <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Botó dret o premi de forma prolongada per definir la ubicació de l\'objecte.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Netejar ubicació',
|
||||
'delete_all_selected_tags' => 'Eliminar totes les etiquetes seleccionades',
|
||||
'select_tags_to_delete' => 'No t\'oblidis de seleccionar alguna etiqueta.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Desfés la reconciliació',
|
||||
'update_withdrawal' => 'Actualitzar retirada',
|
||||
'update_deposit' => 'Actualitzar ingrés',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Després d\'actualitzar, torna ací per a seguir editant.',
|
||||
'store_as_new' => 'Desa com a una nova transacció, en comptes d\'actualitzar.',
|
||||
'reset_after' => 'Reiniciar el formulari després d\'enviar',
|
||||
'errors_submission' => 'Ha hagut un error amb el teu enviament. Per favor, revisa els errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expandeix la divisió',
|
||||
'transaction_collapse_split' => 'Contrau la divisió',
|
||||
|
||||
|
@ -79,7 +79,7 @@ return [
|
||||
'reports_index_intro' => 'Fes servir aquests informes per obtenir detalls de les teves finances.',
|
||||
'reports_index_inputReportType' => 'Escull un tipus d\'informe. Dóna un cop d\'ull a les pàgines d\'ajuda per veure el que mostra cada informe.',
|
||||
'reports_index_inputAccountsSelect' => 'Pots excloure o incloure comptes d\'actius com et vagi millor.',
|
||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
||||
'reports_index_inputDateRange' => 'El rang de dates seleccionat el determines tú: des d\'un dia fins a 10 anys o més.',
|
||||
'reports_index_extra-options-box' => 'Depenent de l\'informe que hagis seleccionat, pots seleccionar filtres i opcions addicionals. Mira aquesta capsa quan canviïs el tipus d\'informe.',
|
||||
|
||||
// reports (reports)
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'A l\'array li falta la clàusula "where"',
|
||||
'missing_update' => 'A l\'array li falta la clàusula "update"',
|
||||
'invalid_where_key' => 'El JSON conté una clau invàlida per la clàusula "where"',
|
||||
@ -44,7 +46,7 @@ return [
|
||||
'iban' => 'Aquest IBAN no és vàlid.',
|
||||
'zero_or_more' => 'El valor no pot ser negatiu.',
|
||||
'more_than_zero' => 'El valor ha de ser superior a zero.',
|
||||
'more_than_zero_correct' => 'The value must be zero or more.',
|
||||
'more_than_zero_correct' => 'El valor ha de ser zero o més.',
|
||||
'no_asset_account' => 'Aquest no és un compte d\'actius.',
|
||||
'date_or_time' => 'El valor ha de ser una data o hora vàlida (ISO 8601).',
|
||||
'source_equals_destination' => 'El compte d\'origen és el mateix que el compte de destí.',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Pokud chcete, můžete vytvořit hlášení problému na https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Celý zásobník je níže:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Všechny součty se vztahují na vybraný rozsah',
|
||||
'mapbox_api_key' => 'Pro použití mapy, získejte klíč k aplikačnímu programovému rozhraní <a href="https://www.mapbox.com/">Mapbox</a>. Otevřete soubor <code>.env</code> a tento kód zadejte za <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Right click or long press to set the object\'s location.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Vymazat umístění',
|
||||
'delete_all_selected_tags' => 'Delete all selected tags',
|
||||
'select_tags_to_delete' => 'Don\'t forget to select some tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Aktualizovat výběr',
|
||||
'update_deposit' => 'Aktualizovat vklad',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Hvis du foretrækker det, kan du også rapportere et nyt problem på https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Den fulde stacktrace er nedenfor:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Alle beløb gælder for det valgte interval',
|
||||
'mapbox_api_key' => 'For at bruge kortet, hent en API-nøgle fra <a href="https://www.mapbox.com/">Mapbox</a>. Åbn <code>.env</code> -filen og indtast denne kode under <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Højreklik eller langt tryk for at angive objektets placering.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Ryd stedangivelse',
|
||||
'delete_all_selected_tags' => 'Slet alle valgte tags',
|
||||
'select_tags_to_delete' => 'Glem ikke at vælge nogle tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Opdater udbetaling',
|
||||
'update_deposit' => 'Opdater indbetaling',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array mangler “Where”-sektion',
|
||||
'missing_update' => 'Array mangler “update”-sektion',
|
||||
'invalid_where_key' => 'JSON indeholder en ugyldig nøgle til "where"-sektionen',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Wenn Sie es bevorzugen, können Sie auch einen Fehlerbericht auf https://github.com/firefly-iii/firefly-iii/issues eröffnen.',
|
||||
'error_stacktrace_below' => 'Der vollständige Stacktrace ist unten:',
|
||||
'error_headers' => 'Die folgenden Kopfzeilen können ebenfalls von Bedeutung sein:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Alle Summen beziehen sich auf den ausgewählten Bereich.',
|
||||
'mapbox_api_key' => 'Um Karten zu verwenden, besorgen Sie sich einen API-Schlüssel von <a href="https://www.mapbox.com/">Mapbox</a>. Öffnen Sie Ihre Datei <code>.env</code> und geben Sie diesen Schlüssel nach <code>MAPBOX_API_KEY=</code> ein.',
|
||||
'press_object_location' => 'Rechtsklick oder Anklicken und gedrückt halten, um die Position des Objekts festzulegen.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Ort leeren',
|
||||
'delete_all_selected_tags' => 'Alle markierten Stichwörter löschen',
|
||||
'select_tags_to_delete' => 'Nicht vergessen, einige Schlagwörter auszuwählen.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Kontenabgleich widerrufen',
|
||||
'update_withdrawal' => 'Ausgaben aktualisieren',
|
||||
'update_deposit' => 'Einnahmen aktualisieren',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Nach dem Aktualisieren hierher zurückkehren, um weiter zu bearbeiten.',
|
||||
'store_as_new' => 'Als neue Buchung speichern statt zu aktualisieren.',
|
||||
'reset_after' => 'Formular nach der Übermittlung zurücksetzen',
|
||||
'errors_submission' => 'Ihre Übermittlung ist fehlgeschlagen. Bitte überprüfen Sie die Fehler.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Aufteilung erweitern',
|
||||
'transaction_collapse_split' => 'Aufteilung reduzieren',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Dem Array fehlt die „where”-Klausel',
|
||||
'missing_update' => 'Dem Array fehlt die „update”-Klausel',
|
||||
'invalid_where_key' => 'JSON enthält einen ungültigen Schlüssel für die „where”-Klausel',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Αν προτιμάτε, μπορείτε επίσης να ανοίξετε ένα νέο ζήτημα στο https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Το πλήρες stacktrace είναι παρακάτω:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Όλα τα σύνολα αφορούν το συγκεκριμένο εύρος',
|
||||
'mapbox_api_key' => 'Για τη χρήση χάρτη, λάβετε ένα κλειδί API από <a href="https://www.mapbox.com/">Mapbox</a>. Ανοίξτε το <code>.env</code> αρχείο σας και εισάγετε αυτόν τον κωδικό στο <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Κάντε δεξί κλικ ή πιέστε παρατεταμένα για να ορίσετε την τοποθεσία του αντικειμένου.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Εκκαθάριση τοποθεσίας',
|
||||
'delete_all_selected_tags' => 'Διαγραφή όλων των επιλεγμένων ετικετών',
|
||||
'select_tags_to_delete' => 'Μην ξεχάσετε να επιλέξετε ορισμένες ετικέτες.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Ενημέρωση ανάληψης',
|
||||
'update_deposit' => 'Ενημέρωση κατάθεσης',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Μετά την ενημέρωση, επιστρέψτε εδώ για να συνεχίσετε την επεξεργασία.',
|
||||
'store_as_new' => 'Αποθήκευση ως νέα συναλλαγή αντί για ενημέρωση.',
|
||||
'reset_after' => 'Επαναφορά φόρμας μετά την υποβολή',
|
||||
'errors_submission' => 'Υπήρξε κάποιο λάθος με την υποβολή σας. Παρακαλώ ελέγξτε τα σφάλματα.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Ανάπτυξη διαχωρισμού',
|
||||
'transaction_collapse_split' => 'Σύμπτυξη διαχωρισμού',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Από τον πίνακα λείπει η ρήτρα "where"',
|
||||
'missing_update' => 'Από τον πίνακα λείπει η ρήτρα "update"',
|
||||
'invalid_where_key' => 'Το JSON περιέχει ένα μη έγκυρο κλειδί για την ρήτρα "where"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'If you prefer, you can also open a new issue on https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'The full stacktrace is below:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'All sums apply to the selected range',
|
||||
'mapbox_api_key' => 'To use map, get an API key from <a href="https://www.mapbox.com/">Mapbox</a>. Open your <code>.env</code> file and enter this code after <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Right click or long press to set the object\'s location.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Clear location',
|
||||
'delete_all_selected_tags' => 'Delete all selected tags',
|
||||
'select_tags_to_delete' => 'Don\'t forget to select some tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Update withdrawal',
|
||||
'update_deposit' => 'Update deposit',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Si prefiere, también puedes abrir un nuevo problema en https://github.com/firefly-iiii/firefly-iiii/issues.',
|
||||
'error_stacktrace_below' => 'El stacktrace completo está a continuación:',
|
||||
'error_headers' => 'Los siguientes encabezados también pueden ser relevantes:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Todas las sumas aplican al rango seleccionado',
|
||||
'mapbox_api_key' => 'Para usar el mapa, obtenga una clave API de <a href="https://www.mapbox.com/">Mapbox</a>Abra su<code>.env</code> y introduzca este código después de <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Haga clic o pulse de forma prolongada para definir la ubicación del objeto.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Eliminar ubicación',
|
||||
'delete_all_selected_tags' => 'Eliminar todas las etiquetas seleccionadas',
|
||||
'select_tags_to_delete' => 'No olvide seleccionar algunas etiquetas.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Deshacer reconciliación',
|
||||
'update_withdrawal' => 'Actualización de gasto',
|
||||
'update_deposit' => 'Actualizar ingreso',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Después de actualizar, vuelve aquí para continuar editando.',
|
||||
'store_as_new' => 'Almacenar como una nueva transacción en lugar de actualizar.',
|
||||
'reset_after' => 'Restablecer formulario después del envío',
|
||||
'errors_submission' => 'Hubo un problema con su envío. Por favor, compruebe los errores.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expandir división',
|
||||
'transaction_collapse_split' => 'Colapsar división',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'El array esperaba la cláusula "where"',
|
||||
'missing_update' => 'El array esperaba la cláusula "update"',
|
||||
'invalid_where_key' => 'El JSON contiene una clave no válida para la cláusula "where"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Jos haluat, voit myös avata uuden tiketin osoitteessa https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Täydellinen stack trace:',
|
||||
'error_headers' => 'Seuraavat otsikot voivat myös olla merkityksellisiä:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Kaikki summat sisältyvät valittuun jaksoon',
|
||||
'mapbox_api_key' => 'Käyttääksesi karttaa, hanki API-avain <a href="https://www.mapbox.com/">Mapboxilta</a>. Avaa <code>.env</code> tiedostosi ja lisää koodi <code>MAPBOX_API_KEY=</code> perään.',
|
||||
'press_object_location' => 'Oikealla hiiren napilla (tai pitkä painallus) voit asettaa paikkatiedon.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Tyhjennä sijainti',
|
||||
'delete_all_selected_tags' => 'Poista kaikki valitut tägit',
|
||||
'select_tags_to_delete' => 'Älä unohda valita tägejä.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Päivitä nosto',
|
||||
'update_deposit' => 'Päivitä talletus',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Päivityksen jälkeen, palaa takaisin jatkamaan muokkausta.',
|
||||
'store_as_new' => 'Tallenna uutena tapahtumana päivityksen sijaan.',
|
||||
'reset_after' => 'Tyhjennä lomake lähetyksen jälkeen',
|
||||
'errors_submission' => 'Lomakkeen tiedoissa oli jotain vikaa. Ole hyvä ja tarkista virheet.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Laajenna jako',
|
||||
'transaction_collapse_split' => 'Yhdistä jako',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Taulukosta puuttuu "where"-komento',
|
||||
'missing_update' => 'Taulukosta puuttuu "update"-komento',
|
||||
'invalid_where_key' => 'JSON sisältää virheellisen avaimen "where"-komentoa varten',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Si vous le préférez, vous pouvez également ouvrir un nouveau ticket sur https://github.com/firefly-ii/firefly-iii/issues (en anglais).',
|
||||
'error_stacktrace_below' => 'La stacktrace complète se trouve ci-dessous :',
|
||||
'error_headers' => 'Les en-têtes suivants peuvent également être pertinents :',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Toutes les sommes s\'appliquent à l\'ensemble sélectionné',
|
||||
'mapbox_api_key' => 'Pour utiliser la carte, obtenez une clé d\'API auprès de <a href="https://www.mapbox.com/">Mapbox</a>. Ouvrez votre fichier <code>.env</code> et saisissez le code après <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Faites un clic droit ou appuyez longuement pour définir l\'emplacement de l\'objet.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Effacer la localisation',
|
||||
'delete_all_selected_tags' => 'Supprimer tous les tags sélectionnés',
|
||||
'select_tags_to_delete' => 'N\'oubliez pas de sélectionner des tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Annuler le rapprochement',
|
||||
'update_withdrawal' => 'Mettre à jour une dépense',
|
||||
'update_deposit' => 'Mettre à jour un dépôt',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Après la mise à jour, revenir ici pour continuer l\'édition.',
|
||||
'store_as_new' => 'Enregistrer comme une nouvelle opération au lieu de mettre à jour.',
|
||||
'reset_after' => 'Réinitialiser le formulaire après soumission',
|
||||
'errors_submission' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Développer la ventilation',
|
||||
'transaction_collapse_split' => 'Réduire la ventilation',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'La requête ne contient pas de clause "where"',
|
||||
'missing_update' => 'La requête ne contient pas de clause "update"',
|
||||
'invalid_where_key' => 'Le JSON contient une clé invalide pour la clause "where"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'If you prefer, you can also open a new issue on https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'The full stacktrace is below:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Minden összeg alkalmazása a kiválasztott tartományra',
|
||||
'mapbox_api_key' => 'A térkép használatához be kell szerezni egy API kulcsot a <a href="https://www.mapbox.com/">Mapbox</a> oldalról. A kódot a <code>.env</code> fájlba, a <code>MAPBOX_API_KEY = </code> után kell beírni.',
|
||||
'press_object_location' => 'Jobb kattintással vagy az egérgomb hosszan nyomva tartásával lehet beállítani az objektum helyét.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Hely törlése',
|
||||
'delete_all_selected_tags' => 'Minden kiválasztott címke törlése',
|
||||
'select_tags_to_delete' => 'Ki kell választani néhány címkét.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Költség frissítése',
|
||||
'update_deposit' => 'Bevétel szerkesztése',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'A frissítés után térjen vissza ide a szerkesztés folytatásához.',
|
||||
'store_as_new' => 'Tárolás új tranzakcióként frissítés helyett.',
|
||||
'reset_after' => 'Űrlap törlése a beküldés után',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -79,7 +79,7 @@ return [
|
||||
'reports_index_intro' => 'Ezek a jelentések részletes betekintést biztosítanak a pénzügyekbe.',
|
||||
'reports_index_inputReportType' => 'Jelentéstípus kiválasztása. A súgóoldalakon megtalálható, hogy az egyes jelentések mit mutatnak meg.',
|
||||
'reports_index_inputAccountsSelect' => 'Szükség szerint lehet kizárni vagy hozzáadni eszközfiókokat.',
|
||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
||||
'reports_index_inputDateRange' => 'Tetszőleges dátumtartomány választható, egy naptól 10 évig vagy akár tovább.',
|
||||
'reports_index_extra-options-box' => 'A kiválasztott jelentéstől függően további szűrők és beállítások választhatóak. Ezek ebben a dobozban fognak megjelenni.',
|
||||
|
||||
// reports (reports)
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
@ -44,7 +46,7 @@ return [
|
||||
'iban' => 'Ez nem egy érvényes IBAN számlaszám.',
|
||||
'zero_or_more' => 'Az érték nem lehet negatív.',
|
||||
'more_than_zero' => 'The value must be more than zero.',
|
||||
'more_than_zero_correct' => 'The value must be zero or more.',
|
||||
'more_than_zero_correct' => 'Az érték nulla vagy nagyobb lehet.',
|
||||
'no_asset_account' => 'Ez nem egy eszközszámla.',
|
||||
'date_or_time' => 'Az értéknek érvényes dátum vagy időformátumúnak kell lennie (ISO 8601).',
|
||||
'source_equals_destination' => 'A forrásszámla egyenlő a célszámlával.',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Jika Anda mau, Anda juga dapat membuka isu baru di https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Jejak tumpukan lengkap ada di bawah:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Semua jumlah berlaku untuk rentang yang dipilih',
|
||||
'mapbox_api_key' => 'To use map, get an API key from <a href="https://www.mapbox.com/">Mapbox</a>. Open your <code>.env</code> file and enter this code after <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Right click or long press to set the object\'s location.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Lokasi yang jelas',
|
||||
'delete_all_selected_tags' => 'Delete all selected tags',
|
||||
'select_tags_to_delete' => 'Don\'t forget to select some tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Perbarui penarikan',
|
||||
'update_deposit' => 'Perbarui setoran',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Kembangkan pemisahan',
|
||||
'transaction_collapse_split' => 'Kempiskan pemisahan',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Se preferisci puoi anche aprire una nuova issue su https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Lo stacktrace completo è qui sotto:',
|
||||
'error_headers' => 'Anche le seguenti intestazioni potrebbero esser rilevanti:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Tutte le somme si applicano all\'intervallo selezionato',
|
||||
'mapbox_api_key' => 'Per utilizzare la mappa, ottieni una chiave API da <a href="https://www.mapbox.com/">Mapbox</a>. Apri il tuo file <code>.env</code> e inserisci questo codice dopo <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Clicca con il tasto destro o premi a lungo per impostare la posizione dell\'oggetto.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Rimuovi dalla posizione',
|
||||
'delete_all_selected_tags' => 'Elimina tutte le etichette selezionate',
|
||||
'select_tags_to_delete' => 'Non dimenticare di selezionare qualche etichetta.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Aggiorna prelievo',
|
||||
'update_deposit' => 'Aggiorna entrata',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Dopo l\'aggiornamento, torna qui per continuare la modifica.',
|
||||
'store_as_new' => 'Salva come nuova transazione invece di aggiornarla.',
|
||||
'reset_after' => 'Resetta il modulo dopo l\'invio',
|
||||
'errors_submission' => 'Errore durante l\'invio. Controlla gli errori segnalati qui sotto.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Espandi suddivisione',
|
||||
'transaction_collapse_split' => 'Comprimi suddivisione',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Clausola "where" assente nell\'array',
|
||||
'missing_update' => 'Clausola "update" assente nell\'array',
|
||||
'invalid_where_key' => 'Il JSON contiene una chiave non valida per la clausola "where"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'ご希望の場合は、https://github.com/fofoflifly-iii/firelify-ii/issuesで新しいissueを作ることもできます。',
|
||||
'error_stacktrace_below' => '完全なスタックトレースは以下の通りです:',
|
||||
'error_headers' => '「headers」は技術用語「HTTP headers」を参照します',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => '選択した範囲にすべての合計が適用されます',
|
||||
'mapbox_api_key' => '地図を使うには <a href="https://www.mapbox.com/">Mapbox</a> のAPIキーを取得してください。<code>.env</code>ファイルを開き、<code>MAPBOX_API_KEY=</code>のうしろにAPIキーを入力してください。',
|
||||
'press_object_location' => '対象の位置を設定するには、右クリックまたは長押しします。',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => '場所をクリア',
|
||||
'delete_all_selected_tags' => '選択したすべてのタグを削除',
|
||||
'select_tags_to_delete' => '忘れずにタグを選択してください。',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => '照合を取り消す',
|
||||
'update_withdrawal' => '出金を更新',
|
||||
'update_deposit' => '入金を更新',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => '保存後に戻って編集を続ける。',
|
||||
'store_as_new' => '更新せず新しい取引として保存する。',
|
||||
'reset_after' => '送信後にフォームをリセット',
|
||||
'errors_submission' => '送信内容に問題がありました。エラーを確認してください。',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => '分割を展開',
|
||||
'transaction_collapse_split' => '分割をたたむ',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => '配列に"where"節がありません',
|
||||
'missing_update' => '配列に"update"節がありません',
|
||||
'invalid_where_key' => 'JSON の"where"節に無効なキーが含まれています',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => '원한다면 https://github.com/firefly-iii/firefly-iii/issues 에 새로운 이슈를 오픈할 수도 있습니다.',
|
||||
'error_stacktrace_below' => '전체 스택 추적은 다음과 같습니다:',
|
||||
'error_headers' => '다음 헤더도 관련이 있을 수 있습니다:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => '모든 합계는 선택한 범위에 적용됩니다',
|
||||
'mapbox_api_key' => '지도를 사용하려면 <a href="https://www.mapbox.com/">Mapbox</a>에서 API 키를 받습니다. <code>.env</code> 파일을 열고 <code>MAPBOX_API_KEY=</code> 뒤에 이 코드를 입력합니다.',
|
||||
'press_object_location' => '마우스 오른쪽 버튼을 클릭이나 롱 클릭으로 개체의 위치를 설정합니다.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => '위치 지우기',
|
||||
'delete_all_selected_tags' => '선택된 모든 태그를 삭제',
|
||||
'select_tags_to_delete' => '태그를 선택하는 것을 잊지 마세요.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => '출금 업데이트',
|
||||
'update_deposit' => '입금 업데이트',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => '업데이트 후 여기로 돌아와서 수정을 계속합니다.',
|
||||
'store_as_new' => '업데이트하는 대신 새 거래로 저장합니다.',
|
||||
'reset_after' => '제출 후 양식 재설정',
|
||||
'errors_submission' => '제출한 내용에 문제가 있습니다. 오류를 확인해 주세요.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => '분할 확장',
|
||||
'transaction_collapse_split' => '분할 축소',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => '배열에 "where"절이 없습니다',
|
||||
'missing_update' => '배열에 "update"절이 없습니다',
|
||||
'invalid_where_key' => 'JSON의 "where" 절에 유효하지 않은 키가 포함되어 있습니다',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Hvis du foretrekker, kan du også åpne et nytt problem på https://github.com/firefly-ii/firefly-ii/issues.',
|
||||
'error_stacktrace_below' => 'Hele informasjonen er:',
|
||||
'error_headers' => 'Følgende headers kan også være relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Alle beløp gjelder for det valgte området',
|
||||
'mapbox_api_key' => 'For å bruke kart, få en API-nøkkel fra <a href="https://www.mapbox.com/">Mapbox</a>. Åpne <code>.env</code> filen og angi denne koden etter <code>MAPBOX_API_KEY =</code>.',
|
||||
'press_object_location' => 'Høyreklikk eller trykk lenge for å angi objektets plassering.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Tøm lokasjon',
|
||||
'delete_all_selected_tags' => 'Slett alle valgte tagger',
|
||||
'select_tags_to_delete' => 'Ikke glem å velge noen tagger.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Angre avstemming',
|
||||
'update_withdrawal' => 'Oppdater uttak',
|
||||
'update_deposit' => 'Oppdater innskudd',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Gå tilbake hit etter oppdatering, for å fortsette å redigere.',
|
||||
'store_as_new' => 'Lagre som en ny transaksjon istedenfor å oppdatere.',
|
||||
'reset_after' => 'Nullstill skjema etter innsending',
|
||||
'errors_submission' => 'Noe gikk galt med innleveringen. Vennligst sjekk ut feilene.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Utvid splitt',
|
||||
'transaction_collapse_split' => 'Kollaps deling',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Matrise mangler "where"-klausul',
|
||||
'missing_update' => 'Matrise mangler "update"-klausul',
|
||||
'invalid_where_key' => 'JSON inneholder en ugyldig nøkkel for "where"-klausulen',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Als je wilt, kun je ook een nieuw issue openen op https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'De volledige stacktrace staat hieronder:',
|
||||
'error_headers' => 'De volgende headers zijn wellicht ook interessant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Alle sommen gelden voor het geselecteerde bereik',
|
||||
'mapbox_api_key' => 'Om de kaart te gebruiken regel je een API-key bij <a href="https://www.mapbox.com/">Mapbox</a>. Open je <code>.env</code>-bestand en zet deze achter <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Klik met de rechtermuisknop of druk lang om de locatie van het object in te stellen.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Wis locatie',
|
||||
'delete_all_selected_tags' => 'Alle geselecteerde tags verwijderen',
|
||||
'select_tags_to_delete' => 'Vergeet niet om tags te selecteren.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Ongedaan maken van afstemming',
|
||||
'update_withdrawal' => 'Wijzig uitgave',
|
||||
'update_deposit' => 'Wijzig inkomsten',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Na het opslaan terug om door te gaan met wijzigen.',
|
||||
'store_as_new' => 'Opslaan als nieuwe transactie ipv de huidige bij te werken.',
|
||||
'reset_after' => 'Reset formulier na opslaan',
|
||||
'errors_submission' => 'Er ging iets mis. Check de errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Split uitklappen',
|
||||
'transaction_collapse_split' => 'Split inklappen',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array mist "where"-clausule',
|
||||
'missing_update' => 'Array mist "update"-clausule',
|
||||
'invalid_where_key' => 'JSON bevat een ongeldige key in de "where"-clausule',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Om du føretrekk, kan du òg åpne eit nytt problem på https://github.com/firefly-ii/firefly-ii/issues.',
|
||||
'error_stacktrace_below' => 'Hele informasjonen er:',
|
||||
'error_headers' => 'Følgende headers kan òg vera relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Alle beløp gjelder for det valde området',
|
||||
'mapbox_api_key' => 'For å bruka kart, få ein API-nøkkel frå <a href="https://www.mapbox.com/">Mapbox</a>. Åpne <code>.env</code> filen og angi denne koden etter <code>MAPBOX_API_KEY =</code>.',
|
||||
'press_object_location' => 'Høyreklikk eller trykk lenge for å angi objektets plassering.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Tøm lokasjon',
|
||||
'delete_all_selected_tags' => 'Slett alle valde nøkkelord',
|
||||
'select_tags_to_delete' => 'Ikke gløym å velja nokre nøkkelord.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Oppdater uttak',
|
||||
'update_deposit' => 'Oppdater innskot',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Gå tilbake hit etter oppdatering, for å fortsetja å redigera.',
|
||||
'store_as_new' => 'Lagra som ein ny transaksjon istedenfor å oppdatera.',
|
||||
'reset_after' => 'Nullstill skjema etter innsending',
|
||||
'errors_submission' => 'Noko gjekk gale med innleveringa. Ver venleg å sjekk feila.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Utvid splitt',
|
||||
'transaction_collapse_split' => 'Kollaps deling',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Matrise mangler "where"-klausul',
|
||||
'missing_update' => 'Matrise mangler "update"-klausul',
|
||||
'invalid_where_key' => 'JSON inneheld ein ugyldig nøkkel for "where"-klausulen',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Jeśli wolisz, możesz również otworzyć nowy problem na https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Pełny opis błędu znajduje się poniżej:',
|
||||
'error_headers' => 'Istotne mogą być również następujące nagłówki:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Wszystkie sumy mają zastosowanie do wybranego zakresu',
|
||||
'mapbox_api_key' => 'Aby użyć mapy, pobierz klucz API z <a href="https://www.mapbox.com/">Mapbox</a>. Otwórz plik <code>.env</code> i wprowadź ten kod po <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Kliknij prawym przyciskiem myszy lub naciśnij i przytrzymaj aby ustawić lokalizację obiektu.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Wyczyść lokalizację',
|
||||
'delete_all_selected_tags' => 'Usuń wszystkie zaznaczone tagi',
|
||||
'select_tags_to_delete' => 'Nie zapomnij wybrać tagów.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Cofnij uzgodnienie',
|
||||
'update_withdrawal' => 'Modyfikuj wypłatę',
|
||||
'update_deposit' => 'Modyfikuj wpłatę',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Po aktualizacji wróć tutaj, aby kontynuować edycję.',
|
||||
'store_as_new' => 'Zapisz jako nową zamiast aktualizować.',
|
||||
'reset_after' => 'Wyczyść formularz po zapisaniu',
|
||||
'errors_submission' => 'Coś poszło nie tak w czasie zapisu. Proszę sprawdź błędy.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Rozwiń podział',
|
||||
'transaction_collapse_split' => 'Zwiń podział',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Tablica nie zawiera klauzuli "where"',
|
||||
'missing_update' => 'Tablica nie zawiera klauzuli "update"',
|
||||
'invalid_where_key' => 'JSON zawiera nieprawidłowy klucz dla klauzuli "where"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Se preferir, você também pode abrir uma nova issue em https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'O rastreamento completo está abaixo:',
|
||||
'error_headers' => 'Os seguintes cabeçalhos também podem ser relevantes:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Todas as somas aplicam-se ao intervalo selecionado',
|
||||
'mapbox_api_key' => 'Para usar o mapa, obtenha uma chave API do <a href="https://www.mapbox.com/">Mapbox</a>. Abra seu arquivo <code>.env</code> e insira este código <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Clique com o botão direito ou pressione longamente para definir a localização do objeto.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Limpar localização',
|
||||
'delete_all_selected_tags' => 'Excluir todas as tags selecionadas',
|
||||
'select_tags_to_delete' => 'Não se esqueça de selecionar algumas tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Desfazer reconciliação',
|
||||
'update_withdrawal' => 'Atualizar saída',
|
||||
'update_deposit' => 'Atualizar entrada',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Depois de atualizar, retorne aqui para continuar editando.',
|
||||
'store_as_new' => 'Armazene como uma nova transação em vez de atualizar.',
|
||||
'reset_after' => 'Limpar o formulário após o envio',
|
||||
'errors_submission' => 'Há algo de errado com o seu envio. Por favor, verifique os erros abaixo.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Exibir divisão',
|
||||
'transaction_collapse_split' => 'Esconder divisão',
|
||||
|
||||
|
@ -79,7 +79,7 @@ return [
|
||||
'reports_index_intro' => 'Use esses relatórios para obter informações detalhadas sobre suas finanças.',
|
||||
'reports_index_inputReportType' => 'Escolha um tipo de relatório. Confira as páginas de ajuda para ver o que cada relatório mostra.',
|
||||
'reports_index_inputAccountsSelect' => 'Você pode excluir ou incluir contas de ativos de acordo com a sua demanda.',
|
||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
||||
'reports_index_inputDateRange' => 'O intervalo de datas selecionado depende só de você: de um dia até 10 anos ou mais.',
|
||||
'reports_index_extra-options-box' => 'Dependendo do relatório que você selecionou, você pode usar filtros e opções adicionais aqui. Observe esta caixa quando você altera os tipos de relatórios.',
|
||||
|
||||
// reports (reports)
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'O array está sem a cláusula "where"',
|
||||
'missing_update' => 'O array está sem a cláusula "update"',
|
||||
'invalid_where_key' => 'O JSON contém uma chave inválida para a cláusula "where"',
|
||||
@ -44,7 +46,7 @@ return [
|
||||
'iban' => 'Este não é um válido IBAN.',
|
||||
'zero_or_more' => 'O valor não pode ser negativo.',
|
||||
'more_than_zero' => 'O valor precisa ser maior do que zero.',
|
||||
'more_than_zero_correct' => 'The value must be zero or more.',
|
||||
'more_than_zero_correct' => 'O valor precisa ser zero ou mais.',
|
||||
'no_asset_account' => 'Esta não é uma conta de ativo.',
|
||||
'date_or_time' => 'O valor deve ser uma data válida (ISO 8601).',
|
||||
'source_equals_destination' => 'A conta de origem é igual à conta de destino.',
|
||||
|
@ -144,6 +144,7 @@ Isto pode ajudar a corrigir o erro que acabou de encontrar.',
|
||||
'error_github_text' => 'Se preferir, pode também abrir uma nova questão em https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'O rastreamento da pilha completo é:',
|
||||
'error_headers' => 'Os cabeçalhos seguintes também podem ser relevantes:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Todas as somas aplicam-se ao intervalo selecionado',
|
||||
'mapbox_api_key' => 'Para usar o mapa, arranje uma chave de API do <a href="https://www.mapbox.com/">Mapbox</a>. Abra o seu ficheiro <code>.env</code> e adicione essa chave a seguir a <code> MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Clique com o botão direito ou pressione longamente para definir o local do objeto.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Limpar localização',
|
||||
'delete_all_selected_tags' => 'Excluir todas as etiquetas selecionadas',
|
||||
'select_tags_to_delete' => 'Não se esqueça de selecionar algumas etiquetas.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Atualizar levantamento',
|
||||
'update_deposit' => 'Atualizar depósito',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Após atualizar, regresse aqui para continuar a editar.',
|
||||
'store_as_new' => 'Guarde como nova transação em vez de atualizar.',
|
||||
'reset_after' => 'Reiniciar o formulário após o envio',
|
||||
'errors_submission' => 'Aconteceu algo errado com a sua submissão. Por favor, verifique os erros.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expandir divisão',
|
||||
'transaction_collapse_split' => 'Ocultar divisão',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'A matriz tem em falta a cláusula-"onde"',
|
||||
'missing_update' => 'A matriz tem em falta a cláusula-"atualizar"',
|
||||
'invalid_where_key' => 'JSON contém uma chave inválida para a cláusula "onde"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Dacă preferați, puteți de asemenea deschide o nouă problemă pe <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.',
|
||||
'error_stacktrace_below' => 'Stacktrack-ul complet este mai jos:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Toate sumele se aplică gamei selectate',
|
||||
'mapbox_api_key' => 'Pentru a utiliza harta, obțineți o cheie API din <a href="https://www.mapbox.com/"> Mapbox </a>. Deschideți fișierul <code> .env </ code> și introduceți acest cod după <code> MAPBOX_API_KEY = </ code>.',
|
||||
'press_object_location' => 'Faceți clic dreapta sau apăsați lung pentru a seta locația obiectului.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Ștergeți locația',
|
||||
'delete_all_selected_tags' => 'Şterge toate etichetele selectate',
|
||||
'select_tags_to_delete' => 'Nu uitați să selectați unele etichete.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Actualizați retragere',
|
||||
'update_deposit' => 'Actualizați depozit',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'După actualizare, reveniți aici pentru a continua editarea.',
|
||||
'store_as_new' => 'Stocați ca o tranzacție nouă în loc să actualizați.',
|
||||
'reset_after' => 'Resetați formularul după trimitere',
|
||||
'errors_submission' => 'A fost ceva în neregulă cu depunerea ta. Te rugăm să verifici erorile.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Если вы предпочитаете, вы также можете открыть новый тикет на https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Полная трассировка стека:',
|
||||
'error_headers' => 'Заголовки также могут иметь отношение к следующим темам:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Все суммы относятся к выбранному диапазону',
|
||||
'mapbox_api_key' => 'Чтобы использовать карту, получите ключ API от сервиса <a href="https://www.mapbox.com/">Mapbox</a>. Откройте файл <code>.env</code> и введите этот код в строке <code>MAPBOX_API_KEY = </code>.',
|
||||
'press_object_location' => 'Щёлкните правой кнопкой мыши или надолго нажмите на сенсорный экран, чтобы установить местоположение объекта.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Очистить местоположение',
|
||||
'delete_all_selected_tags' => 'Удалить все выбранные метки',
|
||||
'select_tags_to_delete' => 'Не забудьте выбрать несколько меток.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Отменить сверку',
|
||||
'update_withdrawal' => 'Обновить расход',
|
||||
'update_deposit' => 'Обновить доход',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'После обновления вернитесь сюда, чтобы продолжить редактирование.',
|
||||
'store_as_new' => 'Сохранить как новую транзакцию вместо обновления.',
|
||||
'reset_after' => 'Сбросить форму после отправки',
|
||||
'errors_submission' => 'При отправке что-то пошло не так. Пожалуйста, проверьте ошибки ниже.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -79,7 +79,7 @@ return [
|
||||
'reports_index_intro' => 'Используйте эти отчеты, чтобы получить подробные сведения о ваших финансах.',
|
||||
'reports_index_inputReportType' => 'Выберите тип отчета. Просмотрите страницу справки, чтобы узнать, что показывает каждый отчёт.',
|
||||
'reports_index_inputAccountsSelect' => 'Вы можете исключить или включить основные счета по своему усмотрению.',
|
||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
||||
'reports_index_inputDateRange' => 'Выбор диапазона дат зависит от Вас: от одного дня до 10 лет или более.',
|
||||
'reports_index_extra-options-box' => 'В зависимости от выбранного вами отчёта вы можете выбрать здесь дополнительные фильтры и параметры. Посмотрите этот блок, когда вы меняете типы отчётов.',
|
||||
|
||||
// reports (reports)
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'В массиве отсутствует связка "where" ("где")',
|
||||
'missing_update' => 'В массиве отсутствует связка "update" ("обновить")',
|
||||
'invalid_where_key' => 'JSON содержит недопустимый ключ для связки "where" ("где")',
|
||||
@ -44,7 +46,7 @@ return [
|
||||
'iban' => 'Это некорректный IBAN.',
|
||||
'zero_or_more' => 'Это значение не может быть отрицательным.',
|
||||
'more_than_zero' => 'Значение должно быть больше нуля.',
|
||||
'more_than_zero_correct' => 'The value must be zero or more.',
|
||||
'more_than_zero_correct' => 'Значение должно быть ноль или больше.',
|
||||
'no_asset_account' => 'Это не счет активов.',
|
||||
'date_or_time' => 'Значение должно быть корректной датой или временем (ISO 8601).',
|
||||
'source_equals_destination' => 'Счёт источник и счёт назначения совпадают.',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Prípadne môžete vytvoriť hlásenie na https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Celý zásobník je nižšie:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Všetky súčty sa vzťahujú na vybraný rozsah',
|
||||
'mapbox_api_key' => 'Pre použitie mapy získajte API kľúč z <a href="https://www.mapbox.com/">Mapboxu</a>. Otvorte súbor <code>.env</code> a tento kľúč vložte za <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Pre nastavenie pozície objektu kliknite pravým tlačítkom alebo kliknite a podržte.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Odstrániť pozíciu',
|
||||
'delete_all_selected_tags' => 'Odstrániť všetky vybraté štítky',
|
||||
'select_tags_to_delete' => 'Nezabudnite vybrať nejaké štítky.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Upraviť výber',
|
||||
'update_deposit' => 'Upraviť vklad',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Po aktualizácii sa vrátiť späť a pokračovať v úpravách.',
|
||||
'store_as_new' => 'Namiesto aktualizácie uložiť ako novú transakciu.',
|
||||
'reset_after' => 'Po odoslaní vynulovať formulár',
|
||||
'errors_submission' => 'Pri odosielaní sa niečo nepodarilo. Skontrolujte prosím chyby.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Če želite, lahko novo številko odprete tudi na spletnem mestu https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Celotna sled sklada je spodaj:',
|
||||
'error_headers' => 'Uporabne so lahko tudi naslednje HTTP glave:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Vsi zneski veljajo za izbran interval',
|
||||
'mapbox_api_key' => 'Če želite uporabiti zemljevid, pridobite API ključ iz <a href="https://www.mapbox.com/"> Mapbox-a</a>. Odprite datoteko <code>.env</code> in vanjo vnesite kodo za <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Z desnim klikom ali dolgim pritiskom nastavite lokacijo objekta.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Počisti lokacijo',
|
||||
'delete_all_selected_tags' => 'Izbriši vse izbrane oznake',
|
||||
'select_tags_to_delete' => 'Ne pozabite izbrati oznak.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Razveljavi uskladitev',
|
||||
'update_withdrawal' => 'Posodobi dvig',
|
||||
'update_deposit' => 'Posodobi polog',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'Po posodobitvi se vrnite sem za nadaljevanje urejanja.',
|
||||
'store_as_new' => 'Shranite kot novo transakcijo namesto posodabljanja.',
|
||||
'reset_after' => 'Po predložitvi ponastavite obrazec',
|
||||
'errors_submission' => 'Nekaj je bilo narobe z vašo predložitvijo. Preverite napake.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Razširi razdelitev',
|
||||
'transaction_collapse_split' => 'Skrči razdelitev',
|
||||
|
||||
|
@ -79,7 +79,7 @@ return [
|
||||
'reports_index_intro' => 'S temi poročili dobite podroben vpogled v vaše finance.',
|
||||
'reports_index_inputReportType' => 'Izberite vrsto poročila. Oglejte si strani za pomoč, če želite videti, kaj vam vsako poročilo prikazuje.',
|
||||
'reports_index_inputAccountsSelect' => 'Račune sredstev lahko izključite ali vključite, kot se vam to zdi primerno.',
|
||||
'reports_index_inputDateRange' => 'Izbrani datumski razpon je v celoti prepuščen vam: od enega dneva do 10 let ali več.',
|
||||
'reports_index_inputDateRange' => 'Izbrani datumski razpon je v celoti prepuščen vam: od enega dneva do 10 let ali še več.',
|
||||
'reports_index_extra-options-box' => 'Glede na izbrano poročilo lahko tukaj izberete dodatne filtre in možnosti. Opazujte polje, ko spreminjate vrste poročil.',
|
||||
|
||||
// reports (reports)
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Matriki manjka člen "kjer"',
|
||||
'missing_update' => 'Matriki manjka člen "posodobi"',
|
||||
'invalid_where_key' => 'JSON vsebuje neveljaven ključ za člen "kjer"',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Om du föredrar kan du även öppna ett nytt ärende på https://github.com/firefly-ii/firefly-ii/issues.',
|
||||
'error_stacktrace_below' => 'Komplett stacktrace nedan:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Alla summor gäller för valt intervall',
|
||||
'mapbox_api_key' => 'För att använda karta, hämta en API nyckel från <a href="https://www.mapbox.com/">Mapbox</a>. Öppna din <code>.env</code> fil och ange koden efter <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Högerklicka eller långtryck för att ställa in objektets plats.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Rena plats',
|
||||
'delete_all_selected_tags' => 'Ta bort alla markerade etiketter',
|
||||
'select_tags_to_delete' => 'Glöm inte att välja några etiketter.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Uppdatera uttag',
|
||||
'update_deposit' => 'Uppdatera insättning',
|
||||
@ -2546,7 +2552,7 @@ return [
|
||||
'after_update_create_another' => 'Efter uppdaterat, återkom hit för att fortsätta redigera.',
|
||||
'store_as_new' => 'Spara en ny transaktion istället för att uppdatera.',
|
||||
'reset_after' => 'Återställ formulär efter inskickat',
|
||||
'errors_submission' => 'Något fel uppstod med inskickningen. Vänligen kontrollera felen nedan.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expandera delningen',
|
||||
'transaction_collapse_split' => 'Minimera delning',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array saknar "var"-klausul',
|
||||
'missing_update' => 'Array saknar "updaterings"-klausul',
|
||||
'invalid_where_key' => 'JSON innehåller en ogiltig nyckel för "var"-klausulen',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'If you prefer, you can also open a new issue on https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'The full stacktrace is below:',
|
||||
'error_headers' => 'The following headers may also be relevant:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'All sums apply to the selected range',
|
||||
'mapbox_api_key' => 'To use map, get an API key from <a href="https://www.mapbox.com/">Mapbox</a>. Open your <code>.env</code> file and enter this code after <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Right click or long press to set the object\'s location.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Clear location',
|
||||
'delete_all_selected_tags' => 'Delete all selected tags',
|
||||
'select_tags_to_delete' => 'Don\'t forget to select some tags.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Update withdrawal',
|
||||
'update_deposit' => 'Update deposit',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -45,7 +45,7 @@ return [
|
||||
'month_and_day_js' => 'MMMM Do, YYYY',
|
||||
|
||||
// 'month_and_date_day' => '%A %B %e, %Y',
|
||||
'month_and_date_day_js' => 'dddd MMMM Do, YYYY',
|
||||
'month_and_date_day_js' => '',
|
||||
|
||||
// 'month_and_day_no_year' => '%B %e',
|
||||
'month_and_day_no_year_js' => 'MMMM Do',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'İsterseniz, yeni bir sayı da açabilirsiniz https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Tam stacktrace aşağıdadır:',
|
||||
'error_headers' => 'Aşağıdaki başlıklar da alakalı olabilir:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1305,6 +1305,7 @@ return [
|
||||
'sums_apply_to_range' => 'Tüm toplamlar seçili aralıkta geçerlidir',
|
||||
'mapbox_api_key' => 'Map\'i kullanmak için şu adresten bir API anahtarı alın: <a href="https://www.mapbox.com/">Mapbox</a>. Seninkini aç <code>.env</code> dosyalayın ve sonra bu kodu girin <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Nesnenin konumunu ayarlamak için sağ tıklayın veya uzun basın.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Konumu temizle',
|
||||
'delete_all_selected_tags' => 'Seçili tüm etiketleri sil',
|
||||
'select_tags_to_delete' => 'Bazı etiketler seçmeyi unutmayın.',
|
||||
@ -1950,6 +1951,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Geri çekmeyi güncelle',
|
||||
'update_deposit' => 'Depozitoyu güncelle',
|
||||
@ -2546,7 +2552,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
@ -79,7 +79,7 @@ return [
|
||||
'reports_index_intro' => 'Maliyetlerinizde ayrıntılı bilgi edinmek için bu raporları kullanın.',
|
||||
'reports_index_inputReportType' => 'Bir rapor türü seçin. Her bir raporun neyi gösterdiğini görmek için yardım sayfalarına göz atın.',
|
||||
'reports_index_inputAccountsSelect' => 'Varlık hesaplarını uygun gördüğünüz gibi hariç tutabilir veya ekleyebilirsiniz.',
|
||||
'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years or more.',
|
||||
'reports_index_inputDateRange' => '',
|
||||
'reports_index_extra-options-box' => 'Seçtiğiniz rapora bağlı olarak, burada ekstra filtre ve seçenekleri belirleyebilirsiniz. Rapor türlerini değiştirirken bu kutuya dikkat edin.',
|
||||
|
||||
// reports (reports)
|
||||
|
@ -34,6 +34,8 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'bad_type_source' => 'Firefly III can\'t determine the transaction type based on this source account.',
|
||||
'bad_type_destination' => 'Firefly III can\'t determine the transaction type based on this destination account.',
|
||||
'missing_where' => 'Array is missing "where"-clause',
|
||||
'missing_update' => 'Array is missing "update"-clause',
|
||||
'invalid_where_key' => 'JSON contains an invalid key for the "where"-clause',
|
||||
|
@ -143,6 +143,7 @@ return [
|
||||
'error_github_text' => 'Якщо бажаєте, ви також можете відкрити нове звернення на https://github.com/firefly-iii/firefly-iii/issues.',
|
||||
'error_stacktrace_below' => 'Повна інформація про помилку нижче:',
|
||||
'error_headers' => 'Наступні заголовки також можуть бути актуальними:',
|
||||
'error_post' => 'This was submitted by the user:',
|
||||
|
||||
/*
|
||||
* PLEASE DO NOT EDIT THIS FILE DIRECTLY.
|
||||
|
@ -1304,6 +1304,7 @@ return [
|
||||
'sums_apply_to_range' => 'Усі суми стосуються вибраного діапазону',
|
||||
'mapbox_api_key' => 'Щоб використовувати карту, отримайте ключ API від <a href="https://www.mapbox.com/">Mapbox</a>. Відкрийте файл <code>.env</code> і додайте цей код після <code>MAPBOX_API_KEY=</code>.',
|
||||
'press_object_location' => 'Клацніть правою кнопкою миші або натисніть і утримуйте, щоб установити розташування об’єкта.',
|
||||
'click_tap_location' => 'Click or tap the map to add a location',
|
||||
'clear_location' => 'Видалити розташування',
|
||||
'delete_all_selected_tags' => 'Видалити всі вибрані теги',
|
||||
'select_tags_to_delete' => 'Не забудьте вибрати деякі теги.',
|
||||
@ -1949,6 +1950,11 @@ return [
|
||||
*/
|
||||
|
||||
// transactions:
|
||||
'wait_attachments' => 'Please wait for the attachments to upload.',
|
||||
'errors_upload' => 'The upload has failed. Please check your browser console for the error.',
|
||||
'amount_foreign_if' => 'Amount in foreign currency, if any',
|
||||
'amount_destination_account' => 'Amount in the currency of the destination account',
|
||||
'edit_transaction_title' => 'Edit transaction ":description"',
|
||||
'unreconcile' => 'Undo reconciliation',
|
||||
'update_withdrawal' => 'Update withdrawal',
|
||||
'update_deposit' => 'Update deposit',
|
||||
@ -2545,7 +2551,7 @@ return [
|
||||
'after_update_create_another' => 'After updating, return here to continue editing.',
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors below: %{errorMessage}',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user