From f6bd17c70b44e68fb2547b6a20abfd8966a7652b Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 23 Dec 2017 22:02:29 +0100 Subject: [PATCH] Update languages and language config. --- Dockerfile | 2 +- config/firefly.php | 21 +- resources/lang/de_DE/auth.php | 3 - resources/lang/de_DE/bank.php | 3 - resources/lang/de_DE/breadcrumbs.php | 3 +- resources/lang/de_DE/config.php | 2 - resources/lang/de_DE/csv.php | 2 - resources/lang/de_DE/demo.php | 1 - resources/lang/de_DE/firefly.php | 40 +- resources/lang/de_DE/form.php | 16 +- resources/lang/de_DE/import.php | 214 ++--- resources/lang/de_DE/intro.php | 1 - resources/lang/de_DE/list.php | 5 +- resources/lang/de_DE/pagination.php | 3 - resources/lang/de_DE/passwords.php | 1 - resources/lang/de_DE/validation.php | 1 - resources/lang/fr_FR/auth.php | 3 - resources/lang/fr_FR/bank.php | 3 - resources/lang/fr_FR/breadcrumbs.php | 1 - resources/lang/fr_FR/config.php | 2 - resources/lang/fr_FR/csv.php | 2 - resources/lang/fr_FR/demo.php | 1 - resources/lang/fr_FR/firefly.php | 221 +++-- resources/lang/fr_FR/form.php | 6 - resources/lang/fr_FR/import.php | 10 +- resources/lang/fr_FR/intro.php | 1 - resources/lang/fr_FR/list.php | 3 +- resources/lang/fr_FR/pagination.php | 3 - resources/lang/fr_FR/passwords.php | 1 - resources/lang/fr_FR/validation.php | 1 - resources/lang/id_ID/auth.php | 37 + resources/lang/id_ID/bank.php | 24 + resources/lang/id_ID/breadcrumbs.php | 55 ++ resources/lang/id_ID/config.php | 33 + resources/lang/id_ID/csv.php | 24 + resources/lang/id_ID/demo.php | 37 + resources/lang/id_ID/firefly.php | 1126 ++++++++++++++++++++++++++ resources/lang/id_ID/form.php | 208 +++++ resources/lang/id_ID/import.php | 160 ++++ resources/lang/id_ID/intro.php | 133 +++ resources/lang/id_ID/list.php | 102 +++ resources/lang/id_ID/pagination.php | 26 + resources/lang/id_ID/passwords.php | 30 + resources/lang/id_ID/validation.php | 102 +++ resources/lang/nl_NL/auth.php | 3 - resources/lang/nl_NL/bank.php | 3 - resources/lang/nl_NL/breadcrumbs.php | 1 - resources/lang/nl_NL/config.php | 2 - resources/lang/nl_NL/csv.php | 2 - resources/lang/nl_NL/demo.php | 1 - resources/lang/nl_NL/firefly.php | 22 +- resources/lang/nl_NL/form.php | 6 - resources/lang/nl_NL/import.php | 20 +- resources/lang/nl_NL/intro.php | 1 - resources/lang/nl_NL/list.php | 3 +- resources/lang/nl_NL/pagination.php | 3 - resources/lang/nl_NL/passwords.php | 1 - resources/lang/nl_NL/validation.php | 1 - resources/lang/pl_PL/auth.php | 3 - resources/lang/pl_PL/bank.php | 3 - resources/lang/pl_PL/breadcrumbs.php | 7 +- resources/lang/pl_PL/config.php | 2 - resources/lang/pl_PL/csv.php | 2 - resources/lang/pl_PL/demo.php | 19 +- resources/lang/pl_PL/firefly.php | 228 +++--- resources/lang/pl_PL/form.php | 46 +- resources/lang/pl_PL/import.php | 234 +++--- resources/lang/pl_PL/intro.php | 29 +- resources/lang/pl_PL/list.php | 7 +- resources/lang/pl_PL/pagination.php | 3 - resources/lang/pl_PL/passwords.php | 1 - resources/lang/pl_PL/validation.php | 1 - 72 files changed, 2646 insertions(+), 681 deletions(-) create mode 100644 resources/lang/id_ID/auth.php create mode 100644 resources/lang/id_ID/bank.php create mode 100644 resources/lang/id_ID/breadcrumbs.php create mode 100644 resources/lang/id_ID/config.php create mode 100644 resources/lang/id_ID/csv.php create mode 100644 resources/lang/id_ID/demo.php create mode 100644 resources/lang/id_ID/firefly.php create mode 100644 resources/lang/id_ID/form.php create mode 100644 resources/lang/id_ID/import.php create mode 100644 resources/lang/id_ID/intro.php create mode 100644 resources/lang/id_ID/list.php create mode 100644 resources/lang/id_ID/pagination.php create mode 100644 resources/lang/id_ID/passwords.php create mode 100644 resources/lang/id_ID/validation.php diff --git a/Dockerfile b/Dockerfile index 9177d3a136..37c369df1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,7 @@ RUN apt-get update -y && \ RUN docker-php-ext-install -j$(nproc) curl gd intl json readline tidy zip bcmath xml mbstring pdo_sqlite pdo_mysql bz2 pdo_pgsql # Generate locales supported by Firefly III -RUN echo "en_US.UTF-8 UTF-8\nde_DE.UTF-8 UTF-8\nnl_NL.UTF-8 UTF-8\npt_BR.UTF-8 UTF-8" > /etc/locale.gen && locale-gen +RUN echo "de_DE.UTF-8 UTF-8\nen_US.UTF-8 UTF-8\nfr_FR.UTF-8 UTF-8\nid_ID.UTF-8 UTF-8\nnl_NL.UTF-8 UTF-8\npl_PL.UTF-8 UTF-8" > /etc/locale.gen && locale-gen # copy Apache config to correct spot. COPY ./docker/apache2.conf /etc/apache2/apache2.conf diff --git a/config/firefly.php b/config/firefly.php index 0f5b2cd2cc..b2c6201ce4 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -28,22 +28,22 @@ declare(strict_types=1); */ return [ - 'configuration' => [ + 'configuration' => [ 'single_user_mode' => true, 'is_demo_site' => false, ], - 'encryption' => (is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true), - 'version' => '4.6.12', - 'maxUploadSize' => 15242880, - 'allowedMimes' => ['image/png', 'image/jpeg', 'application/pdf', 'text/plain'], - 'list_length' => 10, - 'export_formats' => [ + 'encryption' => (is_null(env('USE_ENCRYPTION')) || env('USE_ENCRYPTION') === true), + 'version' => '4.6.12', + 'maxUploadSize' => 15242880, + 'allowedMimes' => ['image/png', 'image/jpeg', 'application/pdf', 'text/plain'], + 'list_length' => 10, + 'export_formats' => [ 'csv' => 'FireflyIII\Export\Exporter\CsvExporter', ], - 'bunq' => [ + 'bunq' => [ 'server' => 'https://sandbox.public.api.bunq.com', ], - 'spectre' => [ + 'spectre' => [ 'server' => 'https://www.saltedge.com', ], @@ -114,9 +114,10 @@ return [ 'languages' => [ // completed languages 'en_US' => ['name_locale' => 'English', 'name_english' => 'English'], - 'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch'], 'de_DE' => ['name_locale' => 'Deutsch', 'name_english' => 'German'], 'fr_FR' => ['name_locale' => 'Français', 'name_english' => 'French'], + 'id_ID' => ['name_locale' => 'Bahasa Indonesia', 'name_english' => 'Indonesian'], + 'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch'], 'pl_PL' => ['name_locale' => 'Polski', 'name_english' => 'Polish '], // incomplete languages: diff --git a/resources/lang/de_DE/auth.php b/resources/lang/de_DE/auth.php index bdee223204..8d8659fbca 100644 --- a/resources/lang/de_DE/auth.php +++ b/resources/lang/de_DE/auth.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - /* |-------------------------------------------------------------------------- | Authentication Language Lines @@ -36,5 +34,4 @@ return [ 'failed' => 'Falscher Benutzername und/oder falsches Passwort.', 'throttle' => 'Zu viele Login-Versuche. Bitte versuchen Sie es in :seconds Sekunde(n) erneut.', - ]; diff --git a/resources/lang/de_DE/bank.php b/resources/lang/de_DE/bank.php index 49e01192b1..ef0d636f91 100644 --- a/resources/lang/de_DE/bank.php +++ b/resources/lang/de_DE/bank.php @@ -18,10 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ - ]; diff --git a/resources/lang/de_DE/breadcrumbs.php b/resources/lang/de_DE/breadcrumbs.php index 0fbe6afb0f..742e727791 100644 --- a/resources/lang/de_DE/breadcrumbs.php +++ b/resources/lang/de_DE/breadcrumbs.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -30,7 +29,7 @@ return [ 'preferences' => 'Einstellungen', 'profile' => 'Profil', 'changePassword' => 'Passwort ändern', - 'change_email' => 'Change your email address', + 'change_email' => 'E-Mail Adresse ändern', 'bills' => 'Rechnungen', 'newBill' => 'Neue Rechnung', 'edit_bill' => 'Bearbeite Rechnung ":name"', diff --git a/resources/lang/de_DE/config.php b/resources/lang/de_DE/config.php index 0971e17065..e5cce81e77 100644 --- a/resources/lang/de_DE/config.php +++ b/resources/lang/de_DE/config.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -31,5 +30,4 @@ return [ 'quarter_of_year' => '%B %Y', 'year' => '%Y', 'half_year' => '%B %Y', - ]; diff --git a/resources/lang/de_DE/csv.php b/resources/lang/de_DE/csv.php index 22c74cf9f3..d61316b632 100644 --- a/resources/lang/de_DE/csv.php +++ b/resources/lang/de_DE/csv.php @@ -18,9 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - ]; diff --git a/resources/lang/de_DE/demo.php b/resources/lang/de_DE/demo.php index 063a6e326c..95a9dac1f5 100644 --- a/resources/lang/de_DE/demo.php +++ b/resources/lang/de_DE/demo.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/de_DE/firefly.php b/resources/lang/de_DE/firefly.php index 52db5d047b..afe4a3cb37 100644 --- a/resources/lang/de_DE/firefly.php +++ b/resources/lang/de_DE/firefly.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -353,7 +352,6 @@ return [ 'rule_action_set_notes_choice' => 'Set notes to..', 'rule_action_set_notes' => 'Set notes to ":action_value"', - 'rules_have_read_warning' => 'Haben Sie die Warnung gelesen?', 'apply_rule_warning' => 'Warnung: Das Ausführen einer Regel (Gruppe) für eine große Auswahl von Transaktionen kann sehr lange dauern, und es kann zu einer Zeitüberschreitung kommen. Wenn dies der Fall ist, wird die Regel (-Gruppe) nur auf eine unbekannte Teilmenge Ihrer Transaktionen angewendet. Dies könnte Ihre Finanzverwaltung komplett zerstören. Bitte seien Sie vorsichtig.', @@ -408,9 +406,9 @@ return [ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'pref_home_do_show_deposits' => 'Ja, zeige sie an', 'successful_count' => 'davon :count erfolgreich', - 'transaction_page_size_title' => 'Einträge pro Seite', - 'transaction_page_size_help' => 'Jede Liste von Transaktionen zeigt maximal folgende Anzahl an Transaktionen', - 'transaction_page_size_label' => 'Einträge pro Seite', + 'list_page_size_title' => 'Page size', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Page size', 'between_dates' => '(:start und :end)', 'pref_optional_fields_transaction' => 'Optionale Felder für Überweisungen', 'pref_optional_fields_transaction_help' => 'Standardmäßig sind nicht alle Felder aktiviert, wenn eine neue Überweisung erstellt wird (wegen der Übersicht). Unten können Sie diese Felder aktivieren, wenn Sie glauben, dass Sie nützlich für Sie sind. Alle Felder die deaktiviert sind, aber bereits ausgefüllt sind, werden unabhängig von ihren Einstellung sichtbar sein.', @@ -431,7 +429,6 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'optional_field_attachments' => 'Anhänge', 'optional_field_meta_data' => 'Optionale Metadaten', - // profile: 'change_your_password' => 'Passwort ändern', 'delete_account' => 'Konto löschen', @@ -468,7 +465,6 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'login_with_new_email' => 'Sie können sich jetzt mit Ihrer neuen E-Mail-Adresse anmelden.', 'login_with_old_email' => 'Sie können sich jetzt wieder mit Ihrer alten E-Mail-Adresse anmelden.', - // attachments 'nr_of_attachments' => 'Ein Anhang |:count Anhänge', 'attachments' => 'Anhänge', @@ -574,7 +570,6 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'suggested' => 'Vorgeschlagen', 'average_between' => 'Average between :start and :end', - // bills: 'matching_on' => 'Reagiert auf', 'between_amounts' => 'zwischen :low und :high.', @@ -712,15 +707,15 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'deleted_transfer' => 'Überweisung ":description" erfolgreich gelöscht', 'stored_journal' => 'Neue Überweisung ":description" erfolgreich erstellt', 'select_transactions' => 'Überweisungen auswählen', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', + 'rule_group_select_transactions' => '":title" auf Transaktionen anwenden', + 'rule_select_transactions' => '":title" auf Transaktionen anwenden', 'stop_selection' => 'Auswahl von Überweisungen stoppen', 'reconcile_selected' => 'Ausgleichen', 'mass_delete_journals' => 'Löschen Sie eine Reihe von Überweisungen', 'mass_edit_journals' => 'Bearbeiten Sie eine Reihe von Überweisungen', 'cannot_edit_other_fields' => 'You cannot mass-edit other fields than the ones here, because there is no room to show them. Please follow the link and edit them by one-by-one, if you need to edit these fields.', 'no_budget' => '(kein Budget)', - 'no_budget_squared' => '(no budget)', + 'no_budget_squared' => '(kein Budget)', 'perm-delete-many' => 'Das Löschen von mehreren Elementen auf einmal kann sich störend auswirken. Bitte seien Sie vorsichtig.', 'mass_deleted_transactions_success' => ':amount Überweisung(en) gelöscht.', 'mass_edited_transactions_success' => ':amount Überweisung(en) aktualisiert', @@ -730,7 +725,6 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'opt_group_sharedAsset' => 'Shared asset accounts', 'opt_group_ccAsset' => 'Kreditkarten', - // new user: 'welcome' => 'Willkommen bei Firefly!', 'submit' => 'Absenden', @@ -778,7 +772,7 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'piggyBanks' => 'Sparschweine', 'bills' => 'Rechnungen', 'withdrawal' => 'Ausgabe', - 'opening_balance' => 'Opening balance', + 'opening_balance' => 'Eröffnungsbilanz', 'deposit' => 'Einnahme', 'account' => 'Konto', 'transfer' => 'Überweisung', @@ -826,8 +820,8 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'inactive' => 'Inaktiv', 'active' => 'Aktiv', 'difference' => 'Unterschied', - 'in' => 'Rein', - 'out' => 'Raus', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', 'topX' => 'top :number', 'show_full_list' => 'Zeige die gesamte Liste', 'show_only_top' => 'Nur die Top :number anzeigen', @@ -987,8 +981,7 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'total_size' => 'Gesamtgröße', 'budget_or_budgets' => 'Budget(s)', 'budgets_with_limits' => 'Budget(s) mit konfigurierten Betrag', - 'rule_or_rules' => 'Regel(n)', - 'rulegroup_or_groups' => 'Regelgruppe(n)', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', 'tag_or_tags' => 'Tag(s)', 'configuration_updated' => 'Die Konfiguration wurde aktualisiert', 'setting_is_demo_site' => 'Demonstrationsseite', @@ -1054,7 +1047,6 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', '(partially) pays for_outward' => '(partially) pays for', '(partially) reimburses_outward' => '(partially) reimburses', - // split a transaction: 'splits' => 'Geteilte', 'add_another_split' => 'Eine weitere Aufteilung hinzufügen', @@ -1073,11 +1065,11 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', // import bread crumbs and titles: 'import' => 'Import', 'import_data' => 'Daten importieren', - 'import_general_index_file' => 'Import a file', - 'import_from_bunq' => 'Import from bunq', - 'import_using_spectre' => 'Import using Spectre', - 'import_using_plaid' => 'Import using Plaid', - 'import_config_bread_crumb' => 'Set up your import', + 'import_general_index_file' => 'Datei importieren', + 'import_from_bunq' => 'Import mit bunq', + 'import_using_spectre' => 'Import mit Spectre', + 'import_using_plaid' => 'Import mit Plaid', + 'import_config_bread_crumb' => 'Import einrichten', // import index page: 'import_index_title' => 'Daten in Firefly III importieren', @@ -1132,6 +1124,4 @@ Sollen zusätzlich Ihre Girokonten angezeigt werden?', 'no_bills_intro_default' => 'Du hast noch keine Rechnungen. Sie können Rechnungen erstellen, um die laufenden Ausgaben, wie zum Beispiel Ihre Versicherung oder Miete, nachzuverfolgen.', 'no_bills_imperative_default' => 'Haben Sie regelmäßige Rechnungen? Erstellen Sie eine Rechnung und verfolgen Sie Ihre Zahlungen:', 'no_bills_create_default' => 'Eine Rechnung erstellen', - - ]; diff --git a/resources/lang/de_DE/form.php b/resources/lang/de_DE/form.php index 8621c82e01..2284ef57e1 100644 --- a/resources/lang/de_DE/form.php +++ b/resources/lang/de_DE/form.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - // new user: 'bank_name' => 'Name der Bank', 'bank_balance' => 'Kontostand', @@ -90,7 +88,6 @@ return [ 'convert_Deposit' => 'Ändere zu Einzahlung', 'convert_Transfer' => 'Ändere zu Überweisung', - 'amount' => 'Betrag', 'date' => 'Datum', 'interest_date' => 'Zinstermin', @@ -179,13 +176,11 @@ return [ 'blocked' => 'Ist blockiert?', 'blocked_code' => 'Grund für Block', - // admin 'domain' => 'Domain', 'single_user_mode' => 'Registrierung deaktivieren', 'is_demo_site' => 'Ist eine Demonstrationsseite', - // import 'import_file' => 'Datei importieren', 'configuration_file' => 'Konfigurationsdatei', @@ -196,13 +191,12 @@ return [ 'csv_delimiter' => 'CSV-Trennzeichen', 'csv_import_account' => 'Standard Import-Konto', 'csv_config' => 'CSV-Import Einstellungen', - 'client_id' => 'Client ID', + 'client_id' => 'Client-ID', 'service_secret' => 'Service secret', - 'app_secret' => 'App secret', - 'public_key' => 'Public key', - 'country_code' => 'Country code', - 'provider_code' => 'Bank or data-provider', - + 'app_secret' => 'App-Secret', + 'public_key' => 'Öffentlicher Schlüssel', + 'country_code' => 'Ländercode', + 'provider_code' => 'Bank oder Datenanbieter', 'due_date' => 'Fälligkeitstermin', 'payment_date' => 'Zahlungsdatum', diff --git a/resources/lang/de_DE/import.php b/resources/lang/de_DE/import.php index 40a0476f86..43d0336a2e 100644 --- a/resources/lang/de_DE/import.php +++ b/resources/lang/de_DE/import.php @@ -18,10 +18,8 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ // status of import: 'status_wait_title' => 'Bitte warten...', @@ -30,129 +28,133 @@ return [ 'status_fatal_text' => 'Es ist ein schwerwiegender Fehler aufgetreten und die Importroutine kann nicht fortgeführt werden. Bitte sehen Sie sich die Erklärung in rot unten an.', 'status_fatal_more' => 'Wenn der Fehler eine Zeitüberschreitung ist, wird der Import mittendrin gestoppt. Bei einigen Serverkonfigurationen wird lediglich der Server gestoppt, während der Import im Hintergrund ausgeführt wird. Um dies zu überprüfen, überprüfen Sie die Protokolldateien. Wenn das Problem weiterhin besteht, sollten Sie stattdessen den Import über die Befehlszeile in Erwägung ziehen.', 'status_ready_title' => 'Der Import ist startbereit', - 'status_ready_text' => 'The import is ready to start. All the configuration you needed to do has been done. Please download the configuration file. It will help you with the import should it not go as planned. To actually run the import, you can either execute the following command in your console, or run the web-based import. Depending on your configuration, the console import will give you more feedback.', - 'status_ready_noconfig_text' => 'The import is ready to start. All the configuration you needed to do has been done. To actually run the import, you can either execute the following command in your console, or run the web-based import. Depending on your configuration, the console import will give you more feedback.', - 'status_ready_config' => 'Download configuration', - 'status_ready_start' => 'Start the import', - 'status_ready_share' => 'Please consider downloading your configuration and sharing it at the import configuration center. This will allow other users of Firefly III to import their files more easily.', - 'status_job_running' => 'The import is running.. Please wait..', - 'status_job_finished' => 'The import has finished!', - 'status_running_title' => 'The import is running', - 'status_running_placeholder' => 'Please hold for an update...', - 'status_finished_title' => 'Import routine finished', - 'status_finished_text' => 'The import routine has imported your data.', - 'status_errors_title' => 'Errors during the import', - 'status_errors_single' => 'An error has occurred during the import. It does not appear to be fatal.', - 'status_errors_multi' => 'Some errors occurred during the import. These do not appear to be fatal.', - 'status_bread_crumb' => 'Import status', - 'status_sub_title' => 'Import status', - 'config_sub_title' => 'Set up your import', - 'status_finished_job' => 'The transactions imported can be found in tag :tag.', - 'import_with_key' => 'Import with key \':key\'', + 'status_ready_text' => 'Der Import ist bereit zu starten. Alle Einstellungen wurden von Ihnen erledigt. Bitte laden Sie die Konfigurationsdatei herunter. Diese wird Ihnen beim Import helfen, sollte dieser nicht wie gewünscht verlaufen. Um den Import tatsächlich zu starten führen Sie den folgenden Befehl in der Konsole aus oder nutzen Sie den Web-basierten Import. Abhängig von ihrer Konfiguration wird Ihnen der Konsolenimport mehr Rückmeldungen geben.', + 'status_ready_noconfig_text' => 'Der Import ist bereit zu starten. Alle Einstellungen wurden von Ihnen erledigt. Um den Import tatsächlich zu starten führen Sie den folgenden Befehl in der Konsole aus oder nutzen Sie den Web-basierten Import. Abhängig von ihrer Konfiguration wird Ihnen der Konsolenimport mehr Rückmeldungen geben.', + 'status_ready_config' => 'Download der Konfiguration', + 'status_ready_start' => 'Starte den Import', + 'status_ready_share' => 'Bitte denken Sie darüber nach ihre Konfiguration herunterzuladen und in der Übersicht der Import-Einstellungen zu teilen. Dieses erlaubt es anderen Nutzern von Firefly III ihre Daten unkomplizierter zu importieren.', + 'status_job_new' => 'The job is brand new.', + 'status_job_configuring' => 'The import is being configured.', + 'status_job_configured' => 'The import is configured.', + 'status_job_running' => 'Der Import läuft.. Bitte warten..', + 'status_job_error' => 'The job has generated an error.', + 'status_job_finished' => 'Der Import ist abgeschlossen!', + 'status_running_title' => 'Der Import läuft', + 'status_running_placeholder' => 'Bitte warten Sie auf eine Aktualisierung...', + 'status_finished_title' => 'Importassistent abgeschlossen', + 'status_finished_text' => 'Der Importassistent hat Ihre Daten importiert.', + 'status_errors_title' => 'Fehler beim Import', + 'status_errors_single' => 'Beim Import ist ein Fehler aufgetreten. Dieser scheint aber nicht schwerwiegend zu sein.', + 'status_errors_multi' => 'Beim Import sind einige Fehler aufgetreten. Diese scheinen aber nicht schwerwiegend zu sein.', + 'status_bread_crumb' => 'Importstatus', + 'status_sub_title' => 'Importstatus', + 'config_sub_title' => 'Import einrichten', + 'status_finished_job' => 'Die importierten Transaktionen finden Sie im Tag : tag.', + 'import_with_key' => 'Import mit Schlüssel \':key\'', // file: upload something: - 'file_upload_title' => 'Import setup (1/4) - Upload your file', - 'file_upload_text' => 'This routine will help you import files from your bank into Firefly III. Please check out the help pages in the top right corner.', - 'file_upload_fields' => 'Fields', - 'file_upload_help' => 'Select your file', - 'file_upload_config_help' => 'If you have previously imported data into Firefly III, you may have a configuration file, which will pre-set configuration values for you. For some banks, other users have kindly provided their configuration file', - 'file_upload_type_help' => 'Select the type of file you will upload', - 'file_upload_submit' => 'Upload files', + 'file_upload_title' => 'Import-Setup (1/4) - Laden Sie Ihre Datei hoch', + 'file_upload_text' => 'Dieser Assistent hilft Ihnen, Dateien von Ihrer Bank in Firefly III zu importieren. Bitte sehen Sie sich die Hilfeseiten in der oberen rechten Ecke an.', + 'file_upload_fields' => 'Felder', + 'file_upload_help' => 'Datei auswählen', + 'file_upload_config_help' => 'Wenn Sie bereits zuvor Daten in Firefly III importiert haben, haben Sie eventuell eine Konfigurationsdatei, welche einige Einstellungen für Sie voreinstellt. Für einige Banken haben andere Nutzer freundlicherweise bereits ihre Konfigurationsdatei zur Verfügung gestellt', + 'file_upload_type_help' => 'Wählen Sie den Typ der hochzuladenden Datei', + 'file_upload_submit' => 'Dateien hochladen', // file: upload types - 'import_file_type_csv' => 'CSV (comma separated values)', + 'import_file_type_csv' => 'CSV (Kommagetrennte Werte)', // file: initial config for CSV - 'csv_initial_title' => 'Import setup (2/4) - Basic CSV import setup', - 'csv_initial_text' => 'To be able to import your file correctly, please validate the options below.', - 'csv_initial_box' => 'Basic CSV import setup', - 'csv_initial_box_title' => 'Basic CSV import setup options', - 'csv_initial_header_help' => 'Check this box if the first row of your CSV file are the column titles.', - 'csv_initial_date_help' => 'Date time format in your CSV. Follow the format like this page indicates. The default value will parse dates that look like this: :dateExample.', - 'csv_initial_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.', - 'csv_initial_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.', - 'csv_initial_submit' => 'Continue with step 3/4', + 'csv_initial_title' => 'Import Einrichten (2/4) - Grundlegende Einstellungen', + 'csv_initial_text' => 'Um Ihre Datei korrekt importieren zu können, überprüfen Sie bitte die folgenden Optionen.', + 'csv_initial_box' => 'Standard CSV Importeinstellungen', + 'csv_initial_box_title' => 'Standard CSV Importeinstellungen', + 'csv_initial_header_help' => 'Hier auswählen, wenn die ersten Zeilen der CSV-Datei die Spaltenüberschriften sind.', + 'csv_initial_date_help' => 'Datumsformat in ihrer CSV-Datei. Geben Sie das Format so an, wie es diese Seite zeigt. Die Standardeinstellung ergibt Daten die so aussehen: :dateExample.', + 'csv_initial_delimiter_help' => 'Wählen Sie das Trennzeichen, welches in ihrer Datei genutzt wird. Wenn Sie nicht sicher sind ist Komma die sicherste Option.', + 'csv_initial_import_account_help' => 'Wenn ihre CSV-Datei KEINE Informationen über ihre Girokonten enthält, nutzen Sie bitte diese Dropdown-Liste um anzugeben, zu welchem Girokonto die Transaktionen in der CSV-Datei gehören.', + 'csv_initial_submit' => 'Fortfahren mit Schritt 3/4', // file: new options: - 'file_apply_rules_title' => 'Apply rules', - 'file_apply_rules_description' => 'Apply your rules. Note that this slows the import significantly.', - 'file_match_bills_title' => 'Match bills', - 'file_match_bills_description' => 'Match your bills to newly created withdrawals. Note that this slows the import significantly.', + 'file_apply_rules_title' => 'Regeln anwenden', + 'file_apply_rules_description' => 'Regeln anwenden. Beachten Sie, dass dadurch der Import erheblich verlangsamt wird.', + 'file_match_bills_title' => 'Rechnungen zuordnen', + 'file_match_bills_description' => 'Ordnen Sie Ihre Rechnungen den neu erstellten Ausgaben zu. Beachten Sie, dass dadurch der Import erheblich verlangsamt wird.', // file: roles config - 'csv_roles_title' => 'Import setup (3/4) - Define each column\'s role', - 'csv_roles_text' => 'Each column in your CSV file contains certain data. Please indicate what kind of data the importer should expect. The option to "map" data means that you will link each entry found in the column to a value in your database. An often mapped column is the column that contains the IBAN of the opposing account. That can be easily matched to IBAN\'s present in your database already.', - 'csv_roles_table' => 'Table', - 'csv_roles_column_name' => 'Name of column', - 'csv_roles_column_example' => 'Column example data', - 'csv_roles_column_role' => 'Column data meaning', - 'csv_roles_do_map_value' => 'Map these values', - 'csv_roles_column' => 'Column', - 'csv_roles_no_example_data' => 'No example data available', - 'csv_roles_submit' => 'Continue with step 4/4', - 'csv_roles_warning' => 'At the very least, mark one column as the amount-column. It is advisable to also select a column for the description, date and the opposing account.', - + 'csv_roles_title' => 'Import Einrichten (3/4) - Jeder Spalte eine Rolle zuordnen', + 'csv_roles_text' => 'Jede Spalte in Ihrer CSV-Datei enthält bestimmte Daten. Bitte geben Sie an, welche Art von Daten enthalten sind. Die Option "Daten zuordnen" bedeutet, dass jeder Eintrag in der Spalte mit einem Wert aus Ihrer der Datenbank ersetzt wird. Eine oft zugeordnete Spalte ist die Spalte, welche die IBAN des fremden Kontos enthält. Diese können leicht mit bereits angelegten IBANs in Ihrer Datenbank verglichen werden.', + 'csv_roles_table' => 'Tabelle', + 'csv_roles_column_name' => 'Name der Spalte', + 'csv_roles_column_example' => 'Beispieldaten', + 'csv_roles_column_role' => 'Bedeutung der Spalte', + 'csv_roles_do_map_value' => 'Diese Werte zuordnen', + 'csv_roles_column' => 'Spalte', + 'csv_roles_no_example_data' => 'Keine Beispieldaten vorhanden', + 'csv_roles_submit' => 'Fortfahren mit Schritt 4/4', + 'csv_roles_warning' => 'Markieren Sie zumindest eine Spalte als Betragsspalte. Es empfiehlt sich auch, eine Spalte für die Beschreibung, das Datum und das Gegenkonto auszuwählen.', // file: map data - 'file_map_title' => 'Import setup (4/4) - Connect import data to Firefly III data', - 'file_map_text' => 'In the following tables, the left value shows you information found in your uploaded file. It is your task to map this value, if possible, to a value already present in your database. Firefly will stick to this mapping. If there is no value to map to, or you do not wish to map the specific value, select nothing.', - 'file_map_field_value' => 'Field value', - 'file_map_field_mapped_to' => 'Mapped to', - 'map_do_not_map' => '(do not map)', - 'file_map_submit' => 'Start the import', + 'file_map_title' => 'Import Einrichten (4/4) - Import mit bereits vorhandenen Daten verknüpfen', + 'file_map_text' => 'In den folgenden Tabellen zeigt der linke Wert Informationen, die sich in Ihrer hochgeladenen Datei befinden. Es ist Ihre Aufgabe, diesen Wert, wenn möglich, einem bereits in der Datenbank vorhandenen zuzuordnen. Firefly wird sich an diese Zuordnung halten. Wenn kein Wert für die Zuordnung vorhanden ist oder Sie den bestimmten Wert nicht abbilden möchten, wählen Sie nichts aus.', + 'file_map_field_value' => 'Feldwert', + 'file_map_field_mapped_to' => 'Zugeordnet zu', + 'map_do_not_map' => '(keine Zuordnung)', + 'file_map_submit' => 'Starte den Import', // map things. - 'column__ignore' => '(ignore this column)', - 'column_account-iban' => 'Asset account (IBAN)', - 'column_account-id' => 'Asset account ID (matching Firefly)', - 'column_account-name' => 'Asset account (name)', - 'column_amount' => 'Amount', + 'column__ignore' => '(diese Spalte ignorieren)', + 'column_account-iban' => 'Bestandskonto (IBAN)', + 'column_account-id' => 'Bestandskonto (vgl. ID in Firefly)', + 'column_account-name' => 'Bestandskonto (Name)', + 'column_amount' => 'Betrag', 'column_amount_debit' => 'Amount (debit column)', 'column_amount_credit' => 'Amount (credit column)', - 'column_amount-comma-separated' => 'Amount (comma as decimal separator)', - 'column_bill-id' => 'Bill ID (matching Firefly)', - 'column_bill-name' => 'Bill name', - 'column_budget-id' => 'Budget ID (matching Firefly)', - 'column_budget-name' => 'Budget name', - 'column_category-id' => 'Category ID (matching Firefly)', - 'column_category-name' => 'Category name', - 'column_currency-code' => 'Currency code (ISO 4217)', - 'column_currency-id' => 'Currency ID (matching Firefly)', - 'column_currency-name' => 'Currency name (matching Firefly)', - 'column_currency-symbol' => 'Currency symbol (matching Firefly)', - 'column_date-interest' => 'Interest calculation date', - 'column_date-book' => 'Transaction booking date', - 'column_date-process' => 'Transaction process date', - 'column_date-transaction' => 'Date', - 'column_description' => 'Description', - 'column_opposing-iban' => 'Opposing account (IBAN)', - 'column_opposing-id' => 'Opposing account ID (matching Firefly)', - 'column_external-id' => 'External ID', - 'column_opposing-name' => 'Opposing account (name)', + 'column_amount-comma-separated' => 'Betrag (Komma als Dezimaltrennzeichen)', + 'column_bill-id' => 'Rechnung (ID übereinstimmend mit Firefly)', + 'column_bill-name' => 'Name der Rechnung', + 'column_budget-id' => 'Budget (ID übereinstimmend mit Firefly)', + 'column_budget-name' => 'Budgetname', + 'column_category-id' => 'Kategorie (ID übereinstimmend mit Firefly)', + 'column_category-name' => 'Name der Kategorie', + 'column_currency-code' => 'Währungsstandard (ISO 4217)', + 'column_currency-id' => 'Währung (ID übereinstimmend mit Firefly)', + 'column_currency-name' => 'Währungsname (übereinstimmend mit Firefly)', + 'column_currency-symbol' => 'Währungssysmbol (übereinstimmend mit Firefly)', + 'column_date-interest' => 'Datum der Zinsberechnung', + 'column_date-book' => 'Buchungsdatum der Überweisung', + 'column_date-process' => 'Verarbeitungsdatum der Überweisung', + 'column_date-transaction' => 'Datum', + 'column_description' => 'Beschreibung', + 'column_opposing-iban' => 'Zielkonto (IBAN)', + 'column_opposing-id' => 'Zielkonto (vgl. ID in Firefly)', + 'column_external-id' => 'Externe ID', + 'column_opposing-name' => 'Zielkonto (Name)', 'column_rabo-debit-credit' => 'Rabobank specific debit/credit indicator', 'column_ing-debit-credit' => 'ING specific debit/credit indicator', - 'column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID', - 'column_sepa-ct-op' => 'SEPA Credit Transfer opposing account', - 'column_sepa-db' => 'SEPA Direct Debit', - 'column_tags-comma' => 'Tags (comma separated)', - 'column_tags-space' => 'Tags (space separated)', - 'column_account-number' => 'Asset account (account number)', - 'column_opposing-number' => 'Opposing account (account number)', + 'column_sepa-ct-id' => 'SEPA Überweisungstransaktionsnummer', + 'column_sepa-ct-op' => 'SEPA Überweisungszielkonto', + 'column_sepa-db' => 'SEPA-Lastschrift', + 'column_tags-comma' => 'Tags (durch Komma getrennt)', + 'column_tags-space' => 'Tags (durch Leerzeichen getrennt)', + 'column_account-number' => 'Bestandskonto (Kontonr.)', + 'column_opposing-number' => 'Zielkonto (Kontonr.)', + 'column_note' => 'Note(s)', // bunq - 'bunq_prerequisites_title' => 'Prerequisites for an import from bunq', - 'bunq_prerequisites_text' => 'In order to import from bunq, you need to obtain an API key. You can do this through the app.', + 'bunq_prerequisites_title' => 'Voraussetzungen für einen Import von bunq', + 'bunq_prerequisites_text' => 'Um aus bunq importieren zu können, benötigen Sie einen API-Schlüssel. Sie können diesen in der App bekommen.', // Spectre: - 'spectre_title' => 'Import using Spectre', - 'spectre_prerequisites_title' => 'Prerequisites for an import using Spectre', - 'spectre_prerequisites_text' => 'In order to import data using the Spectre API, you need to prove some secrets. They can be found on the secrets page.', - 'spectre_enter_pub_key' => 'The import will only work when you enter this public key on your security page.', - 'spectre_select_country_title' => 'Select a country', - 'spectre_select_country_text' => 'Firefly III has a large selection of banks and sites from which Spectre can download transactional data. These banks are sorted by country. Please not that there is a "Fake Country" for when you wish to test something. If you wish to import from other financial tools, please use the imaginary country called "Other financial applications". By default, Spectre only allows you to download data from fake banks. Make sure your status is "Live" on your Dashboard if you wish to download from real banks.', - 'spectre_select_provider_title' => 'Select a bank', - 'spectre_select_provider_text' => 'Spectre supports the following banks or financial services grouped under :country. Please pick the one you wish to import from.', - 'spectre_input_fields_title' => 'Input mandatory fields', - 'spectre_input_fields_text' => 'The following fields are mandated by ":provider" (from :country).', - 'spectre_instructions_english' => 'These instructions are provided by Spectre for your convencience. They are in English:', -]; \ No newline at end of file + 'spectre_title' => 'Importieren mit Spectre', + 'spectre_prerequisites_title' => 'Voraussetzungen für einen Import von Spectre', + 'spectre_prerequisites_text' => 'Um Daten mithilfe der Spectre-API zu importieren, müssen Sie einige Daten angeben. Sie sind auf der secrets-Seite zu finden.', + 'spectre_enter_pub_key' => 'Der Import funktioniert nur, wenn Sie diesen öffentlichen Schlüssel auf Ihrer Sicherheitsseite eingeben.', + 'spectre_select_country_title' => 'Land auswählen', + 'spectre_select_country_text' => 'Firefly III bietet eine große Auswahl an Banken und Websites, von denen Spectre Transaktionsdaten herunterladen kann. Diese Banken sind nach Ländern sortiert. Bitte beachten Sie, dass es ein "Pseudo-Land" gibt, wenn Sie etwas testen möchten. Wenn Sie aus anderen Finanzinstrumenten importieren möchten, verwenden Sie bitte das Pseudo-Land "Andere Finanzanwendungen". Standardmäßig erlaubt Spectre nur das Herunterladen von Daten von Pseudo-Banken. Stellen Sie ihren Status auf "Live" in Ihrem Dashboard, wenn Sie von echten Banken herunterladen möchten.', + 'spectre_select_provider_title' => 'Wählen Sie eine Bank', + 'spectre_select_provider_text' => 'Spectre unterstützt die folgenden Banken oder Finanzdienstleistungen, gruppiert nach Land. Bitte wählen Sie das aus, von dem Sie importieren möchten.', + 'spectre_input_fields_title' => 'Pflichtfelder', + 'spectre_input_fields_text' => 'Die folgenden Felder werden von ":provider" (aus: :country) benötigt.', + 'spectre_instructions_english' => 'Diese Anweisungen werden von "Spectre" für Sie zur Verfügung gestellt. Sie sind in Englisch:', +]; diff --git a/resources/lang/de_DE/intro.php b/resources/lang/de_DE/intro.php index 79388df265..c1d12e1eed 100644 --- a/resources/lang/de_DE/intro.php +++ b/resources/lang/de_DE/intro.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/de_DE/list.php b/resources/lang/de_DE/list.php index db524e0078..eb4980e563 100644 --- a/resources/lang/de_DE/list.php +++ b/resources/lang/de_DE/list.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -35,7 +34,7 @@ return [ 'currentBalance' => 'Aktueller Kontostand', 'active' => 'Aktiv?', 'lastActivity' => 'Letzte Aktivität', - 'balanceDiff' => 'Differenz des Kontostandes zwischen :start und :end', + 'balanceDiff' => 'Balance difference', 'matchesOn' => 'Übereinstimmung am', 'account_type' => 'Art des Kontos', 'created_at' => 'Erstellt am', @@ -96,7 +95,7 @@ return [ 'total_amount' => 'Gesamtbetrag', 'sum' => 'Summe', 'sum_excluding_transfers' => 'Summe (ohne Überweisungen)', - 'sum_withdrawals' => 'Summe der Auszahlungen', + 'sum_withdrawals' => 'Summe der Ausgaben', 'sum_deposits' => 'Summe der Einzahlungen', 'sum_transfers' => 'Summe der Überweisungen', 'reconcile' => 'Reconcile', diff --git a/resources/lang/de_DE/pagination.php b/resources/lang/de_DE/pagination.php index e8b357aaf2..c04bcf86ff 100644 --- a/resources/lang/de_DE/pagination.php +++ b/resources/lang/de_DE/pagination.php @@ -18,12 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - 'previous' => '« Vorherige', 'next' => 'Nächste »', - ]; diff --git a/resources/lang/de_DE/passwords.php b/resources/lang/de_DE/passwords.php index 2e556dfd79..47184514cf 100644 --- a/resources/lang/de_DE/passwords.php +++ b/resources/lang/de_DE/passwords.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/de_DE/validation.php b/resources/lang/de_DE/validation.php index be13f4daeb..c82dacbdaa 100644 --- a/resources/lang/de_DE/validation.php +++ b/resources/lang/de_DE/validation.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/fr_FR/auth.php b/resources/lang/fr_FR/auth.php index 03d337dde5..f6cd19d030 100644 --- a/resources/lang/fr_FR/auth.php +++ b/resources/lang/fr_FR/auth.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - /* |-------------------------------------------------------------------------- | Authentication Language Lines @@ -36,5 +34,4 @@ return [ 'failed' => 'Ces identifiants n\'ont aucune correspondance.', 'throttle' => 'Trop de tentatives de connexion. Veuillez essayer à nouveau dans :seconds secondes.', - ]; diff --git a/resources/lang/fr_FR/bank.php b/resources/lang/fr_FR/bank.php index 49e01192b1..ef0d636f91 100644 --- a/resources/lang/fr_FR/bank.php +++ b/resources/lang/fr_FR/bank.php @@ -18,10 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ - ]; diff --git a/resources/lang/fr_FR/breadcrumbs.php b/resources/lang/fr_FR/breadcrumbs.php index dd086f8fce..9ddec46d34 100644 --- a/resources/lang/fr_FR/breadcrumbs.php +++ b/resources/lang/fr_FR/breadcrumbs.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/fr_FR/config.php b/resources/lang/fr_FR/config.php index 0649a36eb2..4db3999e58 100644 --- a/resources/lang/fr_FR/config.php +++ b/resources/lang/fr_FR/config.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -31,5 +30,4 @@ return [ 'quarter_of_year' => '%B %Y', 'year' => '%Y', 'half_year' => '%B %Y', - ]; diff --git a/resources/lang/fr_FR/csv.php b/resources/lang/fr_FR/csv.php index 22c74cf9f3..d61316b632 100644 --- a/resources/lang/fr_FR/csv.php +++ b/resources/lang/fr_FR/csv.php @@ -18,9 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - ]; diff --git a/resources/lang/fr_FR/demo.php b/resources/lang/fr_FR/demo.php index 6818fec5af..14a9f3398d 100644 --- a/resources/lang/fr_FR/demo.php +++ b/resources/lang/fr_FR/demo.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/fr_FR/firefly.php b/resources/lang/fr_FR/firefly.php index 2642a77e9e..5bdb391708 100644 --- a/resources/lang/fr_FR/firefly.php +++ b/resources/lang/fr_FR/firefly.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -32,7 +31,7 @@ return [ 'today' => 'aujourd\'hui', 'customRange' => 'Etendue personnalisée', 'apply' => 'Appliquer', - 'select_date' => 'Sélectionner une date..', + 'select_date' => 'Sélectionner une date...', 'cancel' => 'Annuler', 'from' => 'Depuis', 'to' => 'A', @@ -75,7 +74,7 @@ return [ 'warning_much_data' => ':days de données peuvent prendre un certain temps à charger.', 'registered' => 'Vous avez été enregistré avec succès !', 'Default asset account' => 'Compte d’actif par défaut', - 'no_budget_pointer' => 'Vous semblez n’avoir encore aucun budget. Vous devez en créer un sur la page des budgets. Les budgets peuvent vous aider à garder une trace des dépenses.', + 'no_budget_pointer' => 'Vous semblez n’avoir encore aucun budget. Vous devez en créer un sur la page des budgets. Les budgets peuvent vous aider à garder une trace des dépenses.', 'Savings account' => 'Compte d’épargne', 'Credit card' => 'Carte de Crédit', 'source_accounts' => 'Compte(s) source', @@ -108,7 +107,7 @@ return [ 'clone_withdrawal' => 'Cloner ce retrait', 'clone_deposit' => 'Cloner ce dépôt', 'clone_transfer' => 'Cloner ce transfert', - 'multi_select_no_selection' => 'Aucun selectionnez', + 'multi_select_no_selection' => 'Aucun sélectionné', 'multi_select_all_selected' => 'Tous sélectionnés', 'multi_select_filter_placeholder' => 'Rechercher..', 'between_dates_breadcrumb' => 'Entre :start et :end', @@ -135,12 +134,12 @@ return [ 'chart_all_journals_for_budget' => 'Graphique pour toutes les transactions pour le budget :name', 'journals_in_period_for_category' => 'Toutes les transactions pour la catégorie :name entre :start et :end', 'journals_in_period_for_tag' => 'Toutes les transactions de balise :tag entre :start et :end', - 'not_available_demo_user' => 'La fonctionnalité que vous essayez d’accéder n’est pas disponible pour les utilisateurs de la démo.', + 'not_available_demo_user' => 'La fonctionnalité à laquelle vous essayez d’accéder n’est pas disponible pour les utilisateurs de la démo.', 'exchange_rate_instructions' => 'Compte d’actif "@name" n’accepte que les transactions en @native_currency. Si vous souhaitez utiliser @foreign_currency à la place, assurez-vous que le montant en @native_currency est aussi bien connu :', - 'transfer_exchange_rate_instructions' => 'Compte d’actif source "@source_name" n’accepte que les transactions en @source_currency. Compte d’actif "@dest_name" de destination n’accepte que les transactions en @dest_currency. Vous devez fournir le montant transféré correctement dans les deux monnaies.', + 'transfer_exchange_rate_instructions' => 'Compte d’actif source "@source_name" n’accepte que les transactions en @source_currency. Compte d’actif "@dest_name" de destination n’accepte que les transactions en @dest_currency. Vous devez fournir le montant transféré correctement dans les deux devises.', 'transaction_data' => 'Données de transaction', 'invalid_server_configuration' => 'Configuration de serveur invalide', - 'invalid_locale_settings' => 'Firefly III ne parvient pas à formater les montants monétaires car il manque des paquets logiciels sur votre serveur. Voici des insctructions sur comment procéder.', + 'invalid_locale_settings' => 'Firefly III ne parvient pas à formater les montants monétaires car il manque des paquets logiciels sur votre serveur. Voici des instructions sur comment procéder.', 'quickswitch' => 'Changement rapide', // search @@ -173,7 +172,7 @@ return [ 'export_format' => 'Format d\'export', 'export_format_csv' => 'Valeurs séparées par des virgules (fichier CSV)', 'export_format_mt940' => 'Format compatible MT940', - 'include_old_uploads_help' => 'Firefly III ne détruit pas les fichier CSV originaux que vous avez déjà importé dans le passé. Vous pouvez les inclure dans votre exportation.', + 'include_old_uploads_help' => 'Firefly III ne détruit pas les fichiers CSV originaux que vous avez déjà importé dans le passé. Vous pouvez les inclure dans votre exportation.', 'do_export' => 'Exporter', 'export_status_never_started' => 'L’exportation n’a pas encore commencé', 'export_status_make_exporter' => 'Créer un export...', @@ -185,8 +184,8 @@ return [ 'export_status_created_journal_file' => 'Fichier d\'export créé!', 'export_status_collecting_attachments' => 'Collecte toutes vos pièces jointes...', 'export_status_collected_attachments' => 'Toutes vos pièces jointes sont collectées !', - 'export_status_collecting_old_uploads' => 'Tous vos précédent upload sont en cours de collecte...', - 'export_status_collected_old_uploads' => 'Tous vos précédent upload sont collectés !', + 'export_status_collecting_old_uploads' => 'Tous vos précédents uploads sont en cours de collecte...', + 'export_status_collected_old_uploads' => 'Tous vos précédents uploads sont collectés !', 'export_status_creating_zip_file' => 'Création d’un fichier zip...', 'export_status_created_zip_file' => 'Fichier zip créé!', 'export_status_finished' => 'L\'export s\'est terminé avec succès ! Yay !', @@ -204,12 +203,12 @@ return [ 'make_new_rule_group' => 'Créer un nouveau groupe de règles', 'store_new_rule_group' => 'Créer un nouveau groupe de règles', 'created_new_rule_group' => 'Le nouveau groupe de règles ": titre" est créé !', - 'updated_rule_group' => 'Groupe de règles ":title" mise à jour avec succès.', + 'updated_rule_group' => 'Groupe de règles ":title" mis à jour avec succès.', 'edit_rule_group' => 'Modifier le groupe de règles ":title"', 'delete_rule_group' => 'Supprimer le groupe de règles ":title"', - 'deleted_rule_group' => 'Groupe de règles ":title" supprimée', + 'deleted_rule_group' => 'Groupe de règles ":title" supprimé', 'update_rule_group' => 'Mettre à jour le groupe de règles', - 'no_rules_in_group' => 'Il n’y a pas de règles dans ce groupe', + 'no_rules_in_group' => 'Il n’y a pas de règle dans ce groupe', 'move_rule_group_up' => 'Monter le groupe de règles', 'move_rule_group_down' => 'Descendre le groupe de règles', 'save_rules_by_moving' => 'Enregistrer ces règles en les déplaçant vers un autre groupe de règles :', @@ -219,7 +218,7 @@ return [ 'stored_new_rule' => 'Nouvelle règle créée avec le titre ":title"', 'deleted_rule' => 'Règle supprimée avec le titre ":title"', 'store_new_rule' => 'Créer une nouvelle règle', - 'updated_rule' => 'Nouvelle règle enregistrée avec le titre ":title"', + 'updated_rule' => 'Nouvelle règle avec le titre ":title" enregistrée', 'default_rule_group_name' => 'Règles par défaut', 'default_rule_group_description' => 'Toutes vos règles n\'étant pas dans un groupe particulier.', 'default_rule_name' => 'Votre première règle par défaut', @@ -240,16 +239,16 @@ return [ 'delete_rule' => 'Supprimer la règle ":titre"', 'update_rule' => 'Mettre à jour la règle', 'test_rule_triggers' => 'Voir les opérations correspondantes', - 'warning_transaction_subset' => 'Pour des raisons de performances cette liste est limitée à :max_num_transactions et peut n\'afficher qu\'une partie des opérations correspondantes', - 'warning_no_matching_transactions' => 'Aucunes opérations correspondantes trouvées. Veuillez noter que pour des raisons de performances, seule les dernières :num_transactions opérations ont été vérifiées.', - 'warning_no_valid_triggers' => 'Aucun déclencheurs valide fourni.', + 'warning_transaction_subset' => 'Pour des raisons de performance cette liste est limitée à :max_num_transactions et peut n\'afficher qu\'une partie des opérations correspondantes', + 'warning_no_matching_transactions' => 'Aucune opération correspondante trouvée. Veuillez noter que pour des raisons de performance, seules les dernières :num_transactions opérations ont été vérifiées.', + 'warning_no_valid_triggers' => 'Aucun déclencheur valide fourni.', 'apply_rule_selection' => 'Appliquer la règle ":title" à une sélection de vos transactions', - 'apply_rule_selection_intro' => 'Les règles comme ":title" ne s\'appliquent normalement qu\'aux transactions nouvelles ou mises à jour, mais vous pouvez dire à Firefly III de l’exécuter sur une sélection de vos transactions existantes. Cela peut être utile lorsque vous avez mis à jour une règle et vous avez besoin que les modifications soit appliqué à l’ensemble de vos autres transactions.', - 'include_transactions_from_accounts' => 'Iclure les opérations depuis ces comptes', - 'applied_rule_selection' => 'La règle ":title" a été appliqué à votre sélection.', - 'execute' => 'Executer', + 'apply_rule_selection_intro' => 'Les règles comme ":title" ne s\'appliquent normalement qu\'aux transactions nouvelles ou mises à jour, mais vous pouvez dire à Firefly III de l’exécuter sur une sélection de vos transactions existantes. Cela peut être utile lorsque vous avez mis à jour une règle et avez besoin que les modifications soient appliquées à l’ensemble de vos autres transactions.', + 'include_transactions_from_accounts' => 'Inclure les opérations depuis ces comptes', + 'applied_rule_selection' => 'La règle ":title" a été appliquée à votre sélection.', + 'execute' => 'Exécuter', 'apply_rule_group_selection' => 'Appliquer le groupe de règles ":title" à une sélection de vos transactions', - 'apply_rule_group_selection_intro' => 'Les groupes de règles comme ":titre" ne s\'appliquent normalement qu\'aux transactions nouvelles ou mises à jour, mais vous pouvez dire à Firefly III d\'exécuter toutes les règles de ce groupe sur une sélection de vos transactions existantes. Cela peut être utile lorsque vous avez mis à jour un groupe de règles et que vous avez besoin des modifications à appliquer à toutes vos autres transactions.', + 'apply_rule_group_selection_intro' => 'Les groupes de règles comme ":title" ne s\'appliquent normalement qu\'aux transactions nouvelles ou mises à jour, mais vous pouvez dire à Firefly III d\'exécuter toutes les règles de ce groupe sur une sélection de vos transactions existantes. Cela peut être utile lorsque vous avez mis à jour un groupe de règles et avez besoin que les modifications soient appliquées à l’ensemble de vos autres transactions.', 'applied_rule_group_selection' => 'Le groupe de règles ":title" a été appliqué à votre sélection.', // actions and triggers @@ -303,13 +302,13 @@ return [ 'rule_trigger_has_no_budget_choice' => 'N\'a pas de budget', 'rule_trigger_has_no_budget' => 'La transaction n\'a pas de budget', 'rule_trigger_has_any_budget_choice' => 'A un (des) budget', - 'rule_trigger_has_any_budget' => 'La transaction a un (des) budget', + 'rule_trigger_has_any_budget' => 'La transaction a un(des) budget(s)', 'rule_trigger_has_no_tag_choice' => 'N\'a pas de tag(s)', 'rule_trigger_has_no_tag' => 'La transaction n\'a pas de tag(s)', 'rule_trigger_has_any_tag_choice' => 'Dispose d\'un ou de plusieurs tags', 'rule_trigger_has_any_tag' => 'La transaction comporte un ou plusieurs tags', - 'rule_trigger_any_notes_choice' => 'A une (ou plusieurs) note', - 'rule_trigger_any_notes' => 'Transaction a une (ou plusieurs) note', + 'rule_trigger_any_notes_choice' => 'A une (ou plusieurs) note(s)', + 'rule_trigger_any_notes' => 'Transaction a une (ou plusieurs) note(s)', 'rule_trigger_no_notes_choice' => 'N\'a pas de note', 'rule_trigger_no_notes' => 'Transaction n\'a pas de note', 'rule_trigger_notes_are_choice' => 'Les notes sont..', @@ -353,9 +352,8 @@ return [ 'rule_action_set_notes_choice' => 'Remplacer les notes par..', 'rule_action_set_notes' => 'Remplacer les notes par ":action_value"', - 'rules_have_read_warning' => 'Avez-vous lu les avertissements ?', - 'apply_rule_warning' => 'Avertissement : exécuter une règle (ou un groupe) sur un grand nombre de transactions peut prendre très longtemps, et pourrait faire un time-out. Si c\'est le cas, alors la règle (ou le groupe) ne sera appliqué qu\'un sous-ensemble indéterminé de vos transactions. Cela peut faire dégâts sur votre gestion financière. S\'il vous plaît, faites attention.', + 'apply_rule_warning' => 'Avertissement : exécuter une règle ou un groupe de règles sur un grand nombre de transactions peut prendre beaucoup de temps, et pourrait entraîner un time-out. Si c\'est le cas, alors la règle ou le groupe de règles ne serait appliqué que sur une partie indéterminée de vos transactions. Cela peut engendrer des erreurs sur votre gestion financière. S\'il vous plaît, faites attention.', // tags 'store_new_tag' => 'Créer un nouveau tag', @@ -372,7 +370,7 @@ return [ // preferences 'pref_home_screen_accounts' => 'Comptes de l’écran d’accueil', - 'pref_home_screen_accounts_help' => 'Quel compte devrait être affiché sur l\'écran d’accueil?', + 'pref_home_screen_accounts_help' => 'Quel compte doit être affiché sur l\'écran d’accueil?', 'pref_view_range' => 'Voir l\'étendue', 'pref_view_range_help' => 'Certains graphiques sont automatiquement groupés par périodes. Quelle période préférez-vous ?', 'pref_1D' => 'Un jour', @@ -385,12 +383,12 @@ return [ 'pref_languages_help' => 'Firefly III prend en charge plusieurs langues. Laquelle préférez-vous ?', 'pref_custom_fiscal_year' => 'Paramètres fiscaux de l\'année', 'pref_custom_fiscal_year_label' => 'Activé', - 'pref_custom_fiscal_year_help' => 'Dans les pays qui utilisent une année financière autre que du 1er janvier au 31 décembre, vous pouvez le changer en spécifiant le jour de début et de fin de l\'année fiscale', + 'pref_custom_fiscal_year_help' => 'Dans les pays qui utilisent une année financière autre que du 1er janvier au 31 décembre, vous pouvez la changer en spécifiant le jour de début et de fin de l\'année fiscale', 'pref_fiscal_year_start_label' => 'Date du début de l\'année fiscale', 'pref_two_factor_auth' => 'Validation en 2 étapes', - 'pref_two_factor_auth_help' => 'Lorsque vous activez la validation en 2 étapes (également connu sous le nom de deux facteurs d’authentification), vous ajoutez une couche de sécurité supplémentaire à votre compte. Vous vous connecter avec quelque chose que vous connaissez (votre mot de passe) et quelque chose que vous avez (un code de vérification). Codes de vérification sont générés par une application sur votre téléphone, telles que Authy ou Google Authenticator.', + 'pref_two_factor_auth_help' => 'Lorsque vous activez la validation en 2 étapes (également connu sous le nom de deux facteurs d’authentification), vous ajoutez une couche de sécurité supplémentaire à votre compte. Vous vous connectez avec quelque chose que vous connaissez (votre mot de passe) et quelque chose que vous avez (un code de vérification). Les codes de vérification sont générés par une application sur votre téléphone, comme par exemple Authy ou Google Authenticator.', 'pref_enable_two_factor_auth' => 'Activez la validation en 2 étapes', - 'pref_two_factor_auth_disabled' => 'Le code de vérification en deux tapes a été enlevé et désactivé', + 'pref_two_factor_auth_disabled' => 'Le code de vérification en deux étapes a été enlevé et désactivé', 'pref_two_factor_auth_remove_it' => 'N’oubliez pas de supprimer ce compte de votre application d’authentification !', 'pref_two_factor_auth_code' => 'Vérifier le code', 'pref_two_factor_auth_code_help' => 'Scanner le code QR avec une application sur votre téléphone comme Authy ou Google Authenticator et entrez le code généré.', @@ -404,15 +402,15 @@ return [ 'preferences_security' => 'Sécurité', 'preferences_layout' => 'Mise en Page', 'pref_home_show_deposits' => 'Afficher les dépôts sur l\'écran d\'accueil', - 'pref_home_show_deposits_info' => 'L\'écran d\'accueil affiche déjà vos comptes de dépenses. Devrait-il aussi afficher vos comptes de revenus?', + 'pref_home_show_deposits_info' => 'L\'écran d\'accueil affiche déjà vos comptes de dépenses. Devrait-il aussi afficher vos comptes de revenus ?', 'pref_home_do_show_deposits' => 'Oui, montrez-les', 'successful_count' => 'dont :count avec succès', - 'transaction_page_size_title' => 'Taille de la page', - 'transaction_page_size_help' => 'N’importe quelle liste de transactions montre au plus ce nombre de transactions', - 'transaction_page_size_label' => 'Taille de la page', + 'list_page_size_title' => 'Page size', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Page size', 'between_dates' => '(:start et :end)', 'pref_optional_fields_transaction' => 'Champs optionnels pour les transactions', - 'pref_optional_fields_transaction_help' => 'Par défaut, tous les champs ne sont pas activés lors de la création d\'une nouvelle transaction (en raison du désordre). Ci-dessous, vous pouvez activer ces champs si vous pensez qu\'ils pourraient vous être utiles. Bien sûr, tout domaine désactivé, mais déjà rempli, sera visible quel que soit le paramètre.', + 'pref_optional_fields_transaction_help' => 'Par défaut, tous les champs ne sont pas activés lors de la création d\'une nouvelle transaction (en raison de possibles problèmes d', 'optional_tj_date_fields' => 'Champ date', 'optional_tj_business_fields' => 'Champs professionnels', 'optional_tj_attachment_fields' => 'Champs de pièces jointes', @@ -430,18 +428,17 @@ return [ 'optional_field_attachments' => 'Pièces jointes', 'optional_field_meta_data' => 'Métadonnées facultatives', - // profile: 'change_your_password' => 'Modifier votre mot de passe', 'delete_account' => 'Supprimer le compte', 'current_password' => 'Mot de passe actuel', 'new_password' => 'Nouveau mot de passe ', - 'new_password_again' => 'Nouveau mot de passe (encore)', + 'new_password_again' => 'Nouveau mot de passe (confirmation)', 'delete_your_account' => 'Supprimer votre compte', 'delete_your_account_help' => 'La suppression de votre compte supprimera également les comptes, les opérations, tout ce que vous pourriez avoir enregistré dans Firefly III. Tout sera SUPPRIME.', 'delete_your_account_password' => 'Entrez votre mot de passe pour continuer.', 'password' => 'Mot de passe', - 'are_you_sure' => 'Es-tu sûr ? Vous ne pourrez pas annuler cette action.', + 'are_you_sure' => 'Etes-vous sûr ? Vous ne pourrez pas annuler cette action.', 'delete_account_button' => 'SUPPRIMER votre compte', 'invalid_current_password' => 'Mot de passe actuel non valide!', 'password_changed' => 'Mot de passe modifié!', @@ -449,26 +446,24 @@ return [ 'invalid_password' => 'Mot de passe incorrect!', 'what_is_pw_security' => 'Qu\'est-ce que "vérifier la sécurité du mot de passe" ?', 'secure_pw_title' => 'Comment choisir un mot de passe sécurisé', - 'secure_pw_history' => 'En août 2017, le réputé chercheur en sécurité Troy Hunt a publié une liste de 306 millions de mots de passe volés. Ces mots de passe ont été volés lors de cambriolages à des entreprises comme LinkedIn, Adobe et NeoPets (et bien d’autres).', + 'secure_pw_history' => 'En août 2017, le réputé chercheur en sécurité Troy Hunt a publié une liste de 306 millions de mots de passe volés. Ces mots de passe ont été volés lors de cambriolages d\'entreprises comme LinkedIn, Adobe ou NeoPets (et bien d’autres).', 'secure_pw_check_box' => 'En cochant la case, Firefly III enverra l\'empreinte SHA1 de votre mot de passe au site Web de Troy Hunt pour voir si c’est sur la liste. Cela vous empêchera d\'utiliser des mots de passe dangereux comme cela est recommandé dans les dernières NIST Special Publication à ce sujet.', 'secure_pw_sha1' => 'Mais je pensais que SHA1 était cassé ?', - 'secure_pw_hash_speed' => 'Oui, mais pas dans ce contexte. Comme vous pouvez le lire sur le site Web détaillant comment ils ont cassé SHA1, c’est maintenant légèrement plus facile de trouver une « collision » : une autre chaîne qui aboutit à la même empreinte SHA1. Maintenant, cela prend seulement 10 000 ans, à l’aide d’une machine mono-GPU.', + 'secure_pw_hash_speed' => 'Oui, mais pas dans ce contexte. Comme vous pouvez le lire sur le site web détaillant comment ils ont cassé SHA1, c’est maintenant légèrement plus facile de trouver une « collision » : une autre chaîne qui aboutit à la même empreinte SHA1. Maintenant, cela prend seulement 10 000 ans, à l’aide d’une machine mono-GPU.', 'secure_pw_hash_security' => 'Cette collision ne serait pas égale à votre mot de passe, et ne serait pas utile sur (un site comme) Firefly III. Cette application n\'utilise pas SHA1 pour la vérification du mot de passe. Il est donc sûr de cocher cette case. Votre mot de passe est haché et envoyé par HTTPS.', 'secure_pw_should' => 'Dois-je cocher la case ?', - 'secure_pw_long_password' => 'Si vous venez de générer un long mot de passe unique pour Firefly III à l\'aide d\'un type de générateur de mot de passe : no.', - 'secure_pw_short' => 'Si vous venez d\'entrer le mot de passe que vous utilisez toujours : S\'il vous plaît, oui.', + 'secure_pw_long_password' => 'Si vous venez de générer un long mot de passe unique pour Firefly III à l\'aide d\'un type de générateur de mot de passe : non.', + 'secure_pw_short' => 'Si vous venez d\'entrer le mot de passe que vous utilisez toujours : oui.', 'personal_access_token' => 'Token d\'accès personnel', - 'explain_access_token' => 'Vous avez besoin de ce token pour exécuter des opérations optionnelles en ligne de commandes telles qu\'import et export de données. Sans celui-ci, de telles commandes sensibles ne fonctionneront pas. Personne ne vous le demandera, pas même moi. Si vous craignez de le perdre, ou si vous êtes parano, régénérez ce token à l\'aide du - bouton.', + 'explain_access_token' => 'Vous avez besoin de ce token pour exécuter des opérations optionnelles en ligne de commandes telles qu\'import et export de données. Sans celui-ci, de telles commandes sensibles ne fonctionneront pas. Personne ne vous le demandera, pas même moi. Si vous craignez de le perdre, ou si vous êtes parano, régénérez ce token à l\'aide du bouton.', 'regenerate_access_token' => 'Régénérer le token d\'accès', 'token_regenerated' => 'Un nouveau token a été généré', 'change_your_email' => 'Changer votre adresse e-mail', - 'email_verification' => 'Un e-mail sera envoyé à votre ancienne ET votre nouvelle adresse. Pour des raisons de sécurité, vous ne serez pas capable de vous connecter jusqu\'à ce que vous vérifiez votre nouvelle adresse. Si vous n\'êtes pas certain que votre installation de Firefly III soit capable d\'envoyer un e-mail, s\'il vous plait n\'utilisez pas cette fonctionnalité. Si vous êtes un administrateur, vous pouvez tester cela en allant à Administration.', + 'email_verification' => 'Un e-mail sera envoyé à votre ancienne ET votre nouvelle adresse. Pour des raisons de sécurité, vous ne pourrez pas vous connecter jusqu\'à ce que vous ayez vérifié votre nouvelle adresse. Si vous n\'êtes pas certain que votre installation de Firefly III soit capable d\'envoyer un e-mail, n\'utilisez pas cette fonctionnalité. Si vous êtes un administrateur, vous pouvez tester l\'envoi des e-mails en allant dans le menu Administration.', 'email_changed_logout' => 'Vous ne pouvez pas vous connecter tant que vous n\'aurez pas vérifié votre adresse e-mail.', 'login_with_new_email' => 'Vous pouvez désormais vous connecter avec votre nouvelle adresse e-mail.', 'login_with_old_email' => 'Vous pouvez à nouveau vous connecter à l\'aide de votre ancienne adresse e-mail.', - // attachments 'nr_of_attachments' => 'Une pièce jointe|:count pièces jointes', 'attachments' => 'Pièces jointes', @@ -507,9 +502,9 @@ return [ 'convert_Transfer_to_deposit' => 'Convertir ce transfert en dépôt', 'convert_Transfer_to_withdrawal' => 'Convertir ce transfert en retrait', 'convert_please_set_revenue_source' => 'Veuillez choisir le compte de recettes d\'où proviendra l’argent.', - 'convert_please_set_asset_destination' => 'Veuillez choisir le compte d\'actifs auquel l\'argent sera versé.', - 'convert_please_set_expense_destination' => 'Veuillez choisir le compte de dépense auquel l\'argent sera versé.', - 'convert_please_set_asset_source' => 'Veuillez choisir le compte d’actif d\'où proviendra l’argent.', + 'convert_please_set_asset_destination' => 'Veuillez choisir le compte d\'actifs sur lequel l\'argent sera versé.', + 'convert_please_set_expense_destination' => 'Veuillez choisir le compte de dépenses sur lequel l\'argent sera versé.', + 'convert_please_set_asset_source' => 'Veuillez choisir le compte d’actifs d\'où proviendra l’argent.', 'convert_explanation_withdrawal_deposit' => 'Si vous convertissez ce retrait en dépôt, :amount sera déposé dans :sourceName au lieu de le retirer.', 'convert_explanation_withdrawal_transfer' => 'Si vous convertissez ce retrait en transfert, :amount sera transféré de :sourceName vers un nouveau compte d\'actif, au lieu d\'être payé à :DestinationName .', 'convert_explanation_deposit_withdrawal' => 'Si vous convertissez ce dépôt dans un retrait :amount sera supprimé de :destinationName au lieu d\'y être ajouté.', @@ -525,7 +520,7 @@ return [ 'create_new_withdrawal' => 'Creer un nouveau retrait', 'create_new_deposit' => 'Créer un nouveau dépôt', 'create_new_transfer' => 'Creer un nouveau transfert', - 'create_new_asset' => 'Créer le nouveau compte d’actif', + 'create_new_asset' => 'Créer un nouveau compte d’actif', 'create_new_expense' => 'Créer nouveau compte de dépenses', 'create_new_revenue' => 'Créer nouveau compte de recettes', 'create_new_piggy_bank' => 'Créer une nouvelle tirelire', @@ -541,7 +536,7 @@ return [ 'created_currency' => 'Devise ":name" créée', 'updated_currency' => 'Devise ":name" mise à jour', 'ask_site_owner' => 'Merci de demander à :owner pour ajouter, modifier ou supprimer des devises.', - 'currencies_intro' => 'Firefly III prend en charge diverses monnaies que vous pouvez configurer et activer ici.', + 'currencies_intro' => 'Firefly III prend en charge diverses devises que vous pouvez configurer et activer ici.', 'make_default_currency' => 'définir par défaut', 'default_currency' => 'par défaut', @@ -574,7 +569,6 @@ return [ 'suggested' => 'Suggéré', 'average_between' => 'Moyenne entre :start et :end', - // bills: 'matching_on' => 'Correspond à', 'between_amounts' => 'entre :low et :high.', @@ -597,7 +591,7 @@ return [ 'average_bill_amount_year' => 'Montant moyen des factures ( :year)', 'average_bill_amount_overall' => 'Montant moyen de la facture (global)', 'not_or_not_yet' => 'Pas du tout (pas encore)', - 'not_expected_period' => 'Cette période n\'est pas prévu', + 'not_expected_period' => 'Cette période n\'est pas prévue', 'bill_is_active' => 'Facture en cours', 'bill_expected_between' => 'Attendu entre le :start et le :end', 'bill_will_automatch' => 'La facture sera automatiquement liée aux transactions correspondantes', @@ -605,7 +599,7 @@ return [ // accounts: 'details_for_asset' => 'Détails pour le compte d’actif ":name"', - 'details_for_expense' => 'Détail du compte de dépenses ":name"', + 'details_for_expense' => 'Détails du compte de dépenses ":name"', 'details_for_revenue' => 'Détails du comptes de recettes ":name"', 'details_for_cash' => 'Détails pour le compte de trésorerie ":name"', 'store_new_asset_account' => 'Créer un nouveau compte d’actif', @@ -641,8 +635,8 @@ return [ 'end_balance' => 'Solde de clotûre', 'update_balance_dates_instruction' => 'Faites correspondre les montants et les dates ci-dessus à votre relevé bancaire et appuyez sur "Démarrer le rapprochement"', 'select_transactions_instruction' => 'Sélectionnez les transactions qui apparaissent sur votre relevé bancaire.', - 'select_range_and_balance' => 'Vérifiez d\'abord la plage de dates et les soldes. Puis appuyez sur "Démarrer le rapprochement"', - 'date_change_instruction' => 'Si vous modifiez la plage de dates maintenant, toute progression sera perdue.', + 'select_range_and_balance' => 'Vérifiez d\'abord la plage des dates et les soldes. Puis appuyez sur "Démarrer le rapprochement"', + 'date_change_instruction' => 'Si vous modifiez la plage des dates maintenant, toute progression sera perdue.', 'update_selection' => 'Mettre à jour la sélection', 'store_reconcile' => 'Stocker le rapprochement', 'reconciliation_transaction' => 'Transaction de rapprochement', @@ -651,22 +645,22 @@ return [ 'reconcile_options' => 'Options de rapprochement', 'reconcile_range' => 'Plage de rapprochement', 'start_reconcile' => 'Commencer le rapprochement', - 'cash' => 'espèce', + 'cash' => 'espèces', 'account_type' => 'Type de compte', 'save_transactions_by_moving' => 'Enregistrer ces opération(s) en les déplaçant vers un autre compte :', 'stored_new_account' => 'Nouveau compte ":name" créé !', 'updated_account' => 'Nom du compte ":name"', 'credit_card_options' => 'Cartes de crédit', - 'no_transactions_account' => 'Il n\'y a pas de transactions (dans cette période) pour le compte d\'actif ":name".', + 'no_transactions_account' => 'Il n\'y a pas de transaction (dans cette période) pour le compte d\'actif ":name".', 'no_data_for_chart' => 'Il n\'y a pas assez d\'informations (pour le moment) pour générer ce graphique.', 'select_more_than_one_account' => 'Veuillez sélectionner plus d\'un compte', 'select_more_than_one_category' => 'Veuillez sélectionner plus d\'une catégorie', 'select_more_than_one_budget' => 'Veuillez sélectionner plus d\'un budget', 'select_more_than_one_tag' => 'Veuillez sélectionner plus d\'un tag', - 'account_default_currency' => 'Si vous sélectionnez une autre monnaie, les nouvelles transactions de ce compte auront cette monnaie pré-sélectionnées.', + 'account_default_currency' => 'Si vous sélectionnez une autre devise, les nouvelles transactions de ce compte auront cette devise pré-sélectionnée.', 'reconcile_has_more' => 'Votre registre Firefly III a plus d\'argent que ce que votre banque prétend que vous devriez avoir. Il y a plusieurs options. S\'il vous plaît choisir quoi faire. Ensuite, appuyez sur "Confirmer le rapprochement".', 'reconcile_has_less' => 'Votre registre Firefly III a moins d\'argent que ce que votre banque prétend que vous devriez avoir. Il y a plusieurs options. S\'il vous plaît choisir quoi faire. Ensuite, appuyez sur "Confirmer le rapprochement".', - 'reconcile_is_equal' => 'Votre registre Firefly III et vos relevés bancaires correspondent. Il n\'y a rien à faire. S\'il vous plaît appuyez sur "Confirmer le rapprochement" pour confirmer votre entrée.', + 'reconcile_is_equal' => 'Votre registre Firefly III et vos relevés bancaires correspondent. Il n\'y a rien à faire. Appuyez sur "Confirmer le rapprochement" pour confirmer votre entrée.', 'create_pos_reconcile_transaction' => 'Effacez les transactions sélectionnées et créez une correction en ajoutant :amount à ce compte d\'actif.', 'create_neg_reconcile_transaction' => 'Effacez les transactions sélectionnées et créez une correction en enlevant :amount à ce compte d\'actif.', 'reconcile_do_nothing' => 'Effacez les transactions sélectionnées, mais ne les corrigez pas.', @@ -710,18 +704,18 @@ return [ 'deleted_withdrawal' => 'Retrait ":name" correctement supprimé', 'deleted_deposit' => 'Dépot ":name" correctement supprimé', 'deleted_transfer' => 'Opération ":name" correctement supprimée', - 'stored_journal' => 'Opération créée avec succès ":description"', + 'stored_journal' => 'Opération ":description" créée avec succès', 'select_transactions' => 'Sélectionner des opérations', - 'rule_group_select_transactions' => 'Attendu entre le :start et le :end', + 'rule_group_select_transactions' => 'Appliquer le groupe de règles ":title" sur les transactions', 'rule_select_transactions' => 'Appliquer la règle ":title" sur les transactions', 'stop_selection' => 'Arrêter de sélectionner les transactions', 'reconcile_selected' => 'Rapproché', 'mass_delete_journals' => 'Supprimer un certain nombre de transactions', 'mass_edit_journals' => 'Modifier un certain nombre d’opérations', - 'cannot_edit_other_fields' => 'Vous ne peut pas modifier en masse d\'autres champs que ceux ici, car il n’y a pas de place pour tous les montrer. S’il vous plaît suivez le lien et modifiez les par un par un, si vous devez modifier ces champs.', + 'cannot_edit_other_fields' => 'Vous ne pouvez pas modifier en masse d\'autres champs que ceux-ci, car il n’y a pas de place pour tous les montrer. S’il vous plaît suivez le lien et modifiez les par un par un, si vous devez modifier ces champs.', 'no_budget' => '(pas de budget)', 'no_budget_squared' => '(pas de budget)', - 'perm-delete-many' => 'Supprimer de nombreux éléments en une seule fois peut être très problématique. Soyez prudent.', + 'perm-delete-many' => 'Supprimer de nombreux éléments en une seule fois peut engendrer des erreurs. Soyez prudent.', 'mass_deleted_transactions_success' => 'Montant des opérations supprimées : :amount.', 'mass_edited_transactions_success' => 'Montant des opérations mises à jour : :amount', 'opt_group_no_account_type' => '(aucun type de compte)', @@ -730,15 +724,14 @@ return [ 'opt_group_sharedAsset' => 'Comptes d\'actifs partagés', 'opt_group_ccAsset' => 'Cartes de crédit', - // new user: 'welcome' => 'Bienvenue sur Firefly !', 'submit' => 'Soumettre', 'getting_started' => 'Mise en route', - 'to_get_started' => 'Il est bon de voir que vous avez installé Firefly III avec succès. Pour commencer avec cet outil, entrez le nom de votre banque et le solde de votre compte courant principal. Ne vous inquiétez pas encore si vous avez plusieurs comptes. Vous pouvez les ajouter plus tard. C\'est juste que Firefly III a besoin de quelque chose pour commencer.', - 'savings_balance_text' => 'Firefly III créera automatiquement un compte d\'épargne pour vous. Par défaut, il n\'y aura pas d\'argent dans votre compte d\'épargne, mais si vous dites à Firefly III, le solde sera stocké en tant que tel.', + 'to_get_started' => 'Vous venez d\'installer Firefly III avec succès. Pour commencer avec cet outil, entrez le nom de votre banque et le solde de votre compte courant principal. Ne vous inquiétez pas si vous avez plusieurs comptes. Vous pourrez les ajouter plus tard. Firefly III a simplement besoin de quelque chose pour commencer.', + 'savings_balance_text' => 'Firefly III créera automatiquement un compte d\'épargne pour vous. Par défaut, il n\'y aura pas d\'argent dans votre compte d\'épargne, mais si vous le dites à Firefly III, le solde sera stocké en tant que tel.', 'finish_up_new_user' => 'C\'est tout ! Vous pouvez continuer en appuyant sur Envoyer. Vous passerez à l\'index de Firefly III.', - 'stored_new_accounts_new_user' => 'Super ! Vos nouveaux comptes ont été créé.', + 'stored_new_accounts_new_user' => 'Super ! Vos nouveaux comptes ont été créés.', // home page: 'yourAccounts' => 'Vos comptes', @@ -798,12 +791,12 @@ return [ 'errors' => 'Erreurs', // reports: - 'report_default' => 'Rapport financier par défaut entre :start et :end', - 'report_audit' => 'Aperçu de l\'historique des transactions entre :start et :end', + 'report_default' => 'Rapport financier par défaut entre le :start et le :end', + 'report_audit' => 'Aperçu de l\'historique des transactions entre le :start et le :end', 'report_category' => 'Rapport de catégorie entre :start et :end', - 'report_account' => 'Expense/revenue account report between :start and :end', - 'report_budget' => 'Rapport du budget entre :start et :end', - 'report_tag' => 'Marquer le rapport entre :start and :end', + 'report_account' => 'Rapport de compte de dépenses / recettes entre le :start et le :end', + 'report_budget' => 'Rapport du budget entre le :start et le :end', + 'report_tag' => 'Marquer le rapport entre le :start et le :end', 'quick_link_reports' => 'Liens rapides', 'quick_link_default_report' => 'Rapport financier par défaut', 'quick_link_audit_report' => 'Historique des transactions', @@ -826,8 +819,8 @@ return [ 'inactive' => 'Désactivé', 'active' => 'Actif', 'difference' => 'Différence', - 'in' => 'Dans', - 'out' => 'Sorti', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', 'topX' => 'en haut :number', 'show_full_list' => 'Afficher la liste complète', 'show_only_top' => 'Afficher uniquement en haut :number', @@ -838,47 +831,47 @@ return [ 'report_type_budget' => 'Rapport du budget', 'report_type_tag' => 'Rapport de tag', 'report_type_account' => 'Expense/revenue account report', - 'more_info_help' => 'Plus d’informations sur ces types de rapports se trouvent dans les pages d’aide. Appuyez sur l’icône ( ?) dans le coin supérieur droit.', + 'more_info_help' => 'Plus d’informations sur ces types de rapports se trouvent dans les pages d’aide. Appuyez sur l’icône (?) dans le coin supérieur droit.', 'report_included_accounts' => 'Comptes inclus', 'report_date_range' => 'Intervalle de dates', 'report_preset_ranges' => 'Pré-configurer les étendues', 'shared' => 'Partagé', 'fiscal_year' => 'Année fiscale', - 'income_entry' => 'Revenus du compte ":name" entre :start et :end', + 'income_entry' => 'Revenus du compte ":name" entre le :start et le :end', 'expense_entry' => 'Dépenses du compte ":name" entre le :start et le :end', 'category_entry' => 'Dépenses dans la catégorie ":name" entre le :start et le :end', 'budget_spent_amount' => 'Dépenses dans le budget ":budget" entre le :start et le :end', 'balance_amount' => 'Dépenses dans le budget ":budget" payé depuis le compte ":account" entre le :start et le :end', - 'no_audit_activity' => 'Aucune activité n\'a été enregistrée sur le compte :account_name entre :start et :end.', + 'no_audit_activity' => 'Aucune activité n\'a été enregistrée sur le compte :account_name entre le :start et le :end.', 'audit_end_balance' => 'Solde du compte de :account_name à la fin de :end était: :balance', 'reports_extra_options' => 'Options supplémentaires', 'report_has_no_extra_options' => 'Ce rapport n\'a pas d\'options supplémentaires', 'reports_submit' => 'Afficher le rapport', 'end_after_start_date' => 'La date de fin du rapport doit être postérieure à la date de début.', - 'select_category' => 'Sélectionner la/les catégorie(s)', + 'select_category' => 'Sélectionner la(les) catégorie(s)', 'select_budget' => 'Sélectionnez le(s) budget(s).', 'select_tag' => 'Sélectionnez le(s) tag(s).', - 'income_per_category' => 'Revenu par catégorie', + 'income_per_category' => 'Revenus par catégorie', 'expense_per_category' => 'Dépenses par catégorie', 'expense_per_budget' => 'Dépenses par budget', - 'income_per_account' => 'Revenu par compte', + 'income_per_account' => 'Revenus par compte', 'expense_per_account' => 'Dépenses par compte', 'expense_per_tag' => 'Dépenses par tag', - 'income_per_tag' => 'Revenu par tag', + 'income_per_tag' => 'Revenus par tag', 'include_expense_not_in_budget' => 'Frais inclus non compris dans le(s) budget(s) sélectionné(s)', 'include_expense_not_in_account' => 'Frais inclus non compris dans le(s) compte(s) sélectionné(s)', - 'include_expense_not_in_category' => 'Les dépenses incluses ne sont pas dans la (les) catégorie(s) sélectionnée(s)', - 'include_income_not_in_category' => 'Les revenus inclus ne sont pas dans la (les) catégorie(s) sélectionnée(s)', + 'include_expense_not_in_category' => 'Les dépenses incluses ne sont pas dans la(les) catégorie(s) sélectionnée(s)', + 'include_income_not_in_category' => 'Les revenus inclus ne sont pas dans la(les) catégorie(s) sélectionnée(s)', 'include_income_not_in_account' => 'Revenus inclus non compris dans le(s) compte(s) sélectionné(s)', 'include_income_not_in_tags' => 'Les revenus inclus ne sont pas dans la (les) catégorie(s) sélectionnée(s)', 'include_expense_not_in_tags' => 'Les dépenses incluses ne sont pas dans le(s) tag(s) sélectionnée(s)', 'everything_else' => 'Tout le reste', 'income_and_expenses' => 'Recettes et dépenses', - 'spent_average' => 'Dépensé (moyenne)', - 'income_average' => 'Revenu (moyenne)', + 'spent_average' => 'Dépenses (moyenne)', + 'income_average' => 'Revenus (moyenne)', 'transaction_count' => 'Nombre de transactions', 'average_spending_per_account' => 'Dépenses moyennes par compte', - 'average_income_per_account' => 'Revenu moyen par compte', + 'average_income_per_account' => 'Revenus moyens par compte', 'total' => 'Total', 'description' => 'Description', 'sum_of_period' => 'Somme pour la période', @@ -889,10 +882,10 @@ return [ 'account_role_ccAsset' => 'Carte de crédit', 'budget_chart_click' => 'Cliquez sur le nom du budget dans le tableau ci-dessus pour voir un graphique.', 'category_chart_click' => 'Cliquez sur un nom de catégorie dans le tableau ci-dessus pour voir un graphique.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', + 'in_out_accounts' => 'Gagné et dépensé par compte', + 'in_out_per_category' => 'Gagné et dépensé par catégorie', + 'out_per_budget' => 'Dépensé par budget', + 'select_expense_revenue' => 'Sélectionner le compte de dépenses / recettes', // charts: 'chart' => 'Diagramme', @@ -961,7 +954,7 @@ return [ 'deleted_tag' => 'Tag ":tag" supprimé', 'new_tag' => 'Créer un nouveau tag', 'edit_tag' => 'Modifier le tag ":tag"', - 'updated_tag' => 'Mise à jour de la balise ": tag"', + 'updated_tag' => 'Mise à jour de la balise ":tag"', 'created_tag' => 'Tag ":tag" a été créé !', 'transaction_journal_information' => 'Informations sur les transactions', @@ -987,12 +980,11 @@ return [ 'total_size' => 'taille totale', 'budget_or_budgets' => 'budget(s)', 'budgets_with_limits' => 'budget(s) avec montant configuré', - 'rule_or_rules' => 'règle(s)', - 'rulegroup_or_groups' => 'groupe(s) de règles', - 'tag_or_tags' => 'tag (s)', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => 'tag(s)', 'configuration_updated' => 'La configuration a été mise à jour', 'setting_is_demo_site' => 'Site de démonstration', - 'setting_is_demo_site_explain' => 'Si vous cochez cette case, cette installation se comportera comme si c\'était le site de démonstration, ce qui peut engendrer des effets secondaires étranges.', + 'setting_is_demo_site_explain' => 'Si vous cochez cette case, cette installation se comportera comme si c\'était le site de démonstration, ce qui comporte certaines limitations.', 'block_code_bounced' => 'Rebond des messages emails', 'block_code_expired' => 'Compte démo expiré', 'no_block_code' => 'Aucune raison pour le blocage ou utilisateur non bloqué', @@ -1002,10 +994,10 @@ return [ 'updated_user' => 'Les données utilisateur ont bien été modifiées.', 'delete_user' => 'Supprimer l\'utilisateur :email', 'user_deleted' => 'L\'utilisateur a été supprimé', - 'send_test_email' => 'Envoyer le message de test', - 'send_test_email_text' => 'Pour vérifier que votre installation est capable d\'envoyer des email, utilisez ce bouton. Vous ne verrez pas d\'erreur ici (s\'il y en a), elles seront reflérées dans les logs. Utilisez ce bouton autant de fois que vous le voulez, il n\'y a pas de contrôle de spam. Le message sera envoyé à :email et devrait arriver sous peu.', + 'send_test_email' => 'Envoyer un message de test', + 'send_test_email_text' => 'Pour vérifier que votre installation est capable d\'envoyer des emails, utilisez ce bouton. Vous ne verrez pas d\'erreur ici (s\'il y en a), elles seront enregistrées dans les logs. Utilisez ce bouton autant de fois que vous le voulez, il n\'y a pas de contrôle de spam. Le message sera envoyé à :email et devrait arriver sous peu.', 'send_message' => 'Envoyer le message', - 'send_test_triggered' => 'Le test a été initié. Vérifiez votre boîte de réception et les logs.', + 'send_test_triggered' => 'Le test a été initié. Vérifiez votre boîte de réception (et les logs si nécessaire).', // links 'journal_link_configuration' => 'Configuration des liens de transaction', @@ -1021,7 +1013,7 @@ return [ 'link_type_help_name' => 'C\'est à dire "Doublons"', 'link_type_help_inward' => 'C\'est à dire "doublons"', 'link_type_help_outward' => 'C\'est à dire "est dupliqué par"', - 'save_connections_by_moving' => 'Enregistrez le lien entre ces transaction(s) en les déplaçant vers un autre type de lien :', + 'save_connections_by_moving' => 'Enregistrez le lien entre ces transactions en les déplaçant vers un autre type de lien :', 'do_not_save_connection' => '(ne pas enregistrer la connexion)', 'link_transaction' => 'Lien transaction', 'link_to_other_transaction' => 'Lier cette transaction à une autre transaction', @@ -1054,7 +1046,6 @@ return [ '(partially) pays for_outward' => 'paye (partiellement) pour', '(partially) reimburses_outward' => 'rembourse (partiellement)', - // split a transaction: 'splits' => 'Scinder', 'add_another_split' => 'Ajouter une autre fraction', @@ -1077,7 +1068,7 @@ return [ 'import_from_bunq' => 'Import from bunq', 'import_using_spectre' => 'Import using Spectre', 'import_using_plaid' => 'Import using Plaid', - 'import_config_bread_crumb' => 'Set up your import', + 'import_config_bread_crumb' => 'Configurez votre import', // import index page: 'import_index_title' => 'Importer des données dans Firefly III', @@ -1094,27 +1085,27 @@ return [ 'no_accounts_create_asset' => 'Créer un compte d\'actif', 'no_accounts_title_expense' => 'Nous allons créer un compte de dépenses !', 'no_accounts_intro_expense' => 'Vous n\'avez pas encore de compte de dépenses. Les comptes de dépenses sont les endroits où vous dépensez, comme les magasins et les supermarchés.', - 'no_accounts_imperative_expense' => 'Les comptes de dépenses sont créés automatiquement lorsque vous créez des transactions, mais vous pouvez en créer une manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', + 'no_accounts_imperative_expense' => 'Les comptes de dépenses sont créés automatiquement lorsque vous créez des transactions, mais vous pouvez en créer manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', 'no_accounts_create_expense' => 'Créer un compte de dépenses', - 'no_accounts_title_revenue' => 'Nous allons créer un compte de recettes !', + 'no_accounts_title_revenue' => 'Nous allons créer un compte de revenus !', 'no_accounts_intro_revenue' => 'Vous n\'avez pas encore de compte de revenus. Les comptes de revenus sont les endroits où vous recevez de l\'argent, comme votre employeur.', - 'no_accounts_imperative_revenue' => 'Les comptes de revenus sont créés automatiquement lorsque vous créez des transactions, mais vous pouvez en créer une manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', + 'no_accounts_imperative_revenue' => 'Les comptes de revenus sont créés automatiquement lorsque vous créez des transactions, mais vous pouvez en créer manuellement, si vous le souhaitez. Nous allons en créer un maintenant :', 'no_accounts_create_revenue' => 'Créer un compte de revenus', 'no_budgets_title_default' => 'Nous allons créer un budget', - 'no_budgets_intro_default' => 'Vous n\'avez pas encore de budget. Les budgets sont utilisés pour organiser vos dépenses dans des groupes logiques, auxquelles vous pouvez donner des plafonds pour limiter vos dépenses.', + 'no_budgets_intro_default' => 'Vous n\'avez pas encore de budget. Les budgets sont utilisés pour organiser vos dépenses dans des groupes logiques, auxquels vous pouvez donner des plafonds pour limiter vos dépenses.', 'no_budgets_imperative_default' => 'Les budgets sont les outils de base de la gestion financière. Nous allons en créer un maintenant :', 'no_budgets_create_default' => 'Créer un budget', 'no_categories_title_default' => 'Nous allons créer une catégorie !', - 'no_categories_intro_default' => 'Vous n\'avez pas encore de catégories. Les catégories sont utilisées pour affiner vos transactions et les étiqueter avec leur catégorie désignée.', - 'no_categories_imperative_default' => 'Les catégories sont créées automatiquement lorsque vous créez des transactions, mais vous pouvez en créer une manuellement. Nous allons en créer une maintenant :', + 'no_categories_intro_default' => 'Vous n\'avez pas encore de catégorie. Les catégories sont utilisées pour affiner vos transactions en associant avec.', + 'no_categories_imperative_default' => 'Les catégories sont créées automatiquement lorsque vous créez des transactions, mais vous pouvez en créer manuellement. Nous allons en créer une maintenant :', 'no_categories_create_default' => 'Créer une catégorie', 'no_tags_title_default' => 'Nous allons créer un tag !', - 'no_tags_intro_default' => 'Vous n\'avez pas encore de tags. Les tags sont utilisées pour affiner vos transactions et les étiqueter avec des mots-clés spécifiques.', - 'no_tags_imperative_default' => 'Les tags sont créés automatiquement lorsque vous créez des transactions, mais vous pouvez créer un manuellement trop. Nous allons en créer un maintenant :', - 'no_tags_create_default' => 'Créer une étiquette', + 'no_tags_intro_default' => 'Vous n\'avez pas encore de tags. Les tags sont utilisées pour affiner vos transactions en les associant avec des mots-clés spécifiques.', + 'no_tags_imperative_default' => 'Les tags sont créés automatiquement lorsque vous créez des transactions, mais vous pouvez en créer manuellement. Nous allons en créer un maintenant :', + 'no_tags_create_default' => 'Créer un tag', 'no_transactions_title_withdrawal' => 'Nous allons créer une dépense !', 'no_transactions_intro_withdrawal' => 'Vous n\'avez pas encore de dépenses. Vous devriez créer des dépenses pour commencer à gérer vos finances.', - 'no_transactions_imperative_withdrawal' => 'Avez-vous passé de l’argent ? Alors vous devriez l’écrire :', + 'no_transactions_imperative_withdrawal' => 'Avez-vous dépensé de l’argent ? Alors vous devriez l’écrire :', 'no_transactions_create_withdrawal' => 'Créer une dépense', 'no_transactions_title_deposit' => 'Nous allons créer un revenu !', 'no_transactions_intro_deposit' => 'Vous n\'avez pas encore enregistré de revenus. Vous devriez créer des entrées de revenus pour commencer à gérer vos finances.', @@ -1122,7 +1113,7 @@ return [ 'no_transactions_create_deposit' => 'Créer un dépôt', 'no_transactions_title_transfers' => 'Nous allons créer un transfert !', 'no_transactions_intro_transfers' => 'Vous n\'avez pas encore de transferts. Lorsque vous transférez de l\'argent entre les comptes d\'actifs, c\'est enregistré comme un transfert.', - 'no_transactions_imperative_transfers' => 'Avez vous déplacée de l’argent ? Alors vous devriez l’écrire :', + 'no_transactions_imperative_transfers' => 'Avez vous déplacé de l’argent ? Alors vous devriez l’écrire :', 'no_transactions_create_transfers' => 'Créer un transfert', 'no_piggies_title_default' => 'Nous allons créer une tirelire !', 'no_piggies_intro_default' => 'Vous n\'avez encore pas de tirelire. Vous pouvez créer des tirelires pour diviser vos économies et garder une trace de ce que vous économisez.', @@ -1132,6 +1123,4 @@ return [ 'no_bills_intro_default' => 'Vous n\'avez pas encore de factures. Vous pouvez créer des factures pour suivre les dépenses ordinaires, comme votre loyer ou l\'assurance.', 'no_bills_imperative_default' => 'Avez-vous des factures régulières ? Créez une facture et suivez vos paiements :', 'no_bills_create_default' => 'Créer une facture', - - ]; diff --git a/resources/lang/fr_FR/form.php b/resources/lang/fr_FR/form.php index 3c079d913d..91ccf9dc49 100644 --- a/resources/lang/fr_FR/form.php +++ b/resources/lang/fr_FR/form.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - // new user: 'bank_name' => 'Nom de la banque', 'bank_balance' => 'Solde', @@ -90,7 +88,6 @@ return [ 'convert_Deposit' => 'Convertir le dépôt', 'convert_Transfer' => 'Convertir le transfert', - 'amount' => 'Montant', 'date' => 'Date', 'interest_date' => 'Date de l’intérêt', @@ -179,13 +176,11 @@ return [ 'blocked' => 'Est bloqué?', 'blocked_code' => 'Raison du blocage', - // admin 'domain' => 'Domaine', 'single_user_mode' => 'Désactiver le formulaire d\'inscription', 'is_demo_site' => 'Est un site de démonstration', - // import 'import_file' => 'Fichier à importer', 'configuration_file' => 'Fichier de configuration', @@ -203,7 +198,6 @@ return [ 'country_code' => 'Code pays', 'provider_code' => 'Banque ou fournisseur de données', - 'due_date' => 'Échéance', 'payment_date' => 'Date de paiement', 'invoice_date' => 'Date de facturation', diff --git a/resources/lang/fr_FR/import.php b/resources/lang/fr_FR/import.php index 5a69252323..fc6b00fcc6 100644 --- a/resources/lang/fr_FR/import.php +++ b/resources/lang/fr_FR/import.php @@ -18,10 +18,8 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ // status of import: 'status_wait_title' => 'Veuillez patienter...', @@ -35,7 +33,11 @@ return [ 'status_ready_config' => 'Télécharger la configuration', 'status_ready_start' => 'Démarrer l\'importation', 'status_ready_share' => 'Vous pouvez télécharger votre configuration et de la partager dans le centre de configuration d\'import. Cela permettra à d\'autres utilisateurs de Firefly III d\'importer leurs fichiers plus facilement.', + 'status_job_new' => 'The job is brand new.', + 'status_job_configuring' => 'The import is being configured.', + 'status_job_configured' => 'The import is configured.', 'status_job_running' => 'L\'importation est en cours... Veuillez patienter...', + 'status_job_error' => 'The job has generated an error.', 'status_job_finished' => 'The import has finished!', 'status_running_title' => 'L\'importation est en cours d\'exécution', 'status_running_placeholder' => 'Attendez pour une mise à jour...', @@ -92,7 +94,6 @@ return [ 'csv_roles_submit' => 'Continue with step 4/4', 'csv_roles_warning' => 'At the very least, mark one column as the amount-column. It is advisable to also select a column for the description, date and the opposing account.', - // file: map data 'file_map_title' => 'Import setup (4/4) - Connect import data to Firefly III data', 'file_map_text' => 'In the following tables, the left value shows you information found in your uploaded file. It is your task to map this value, if possible, to a value already present in your database. Firefly will stick to this mapping. If there is no value to map to, or you do not wish to map the specific value, select nothing.', @@ -138,6 +139,7 @@ return [ 'column_tags-space' => 'Tags (space separated)', 'column_account-number' => 'Asset account (account number)', 'column_opposing-number' => 'Opposing account (account number)', + 'column_note' => 'Note(s)', // bunq 'bunq_prerequisites_title' => 'Prerequisites for an import from bunq', @@ -155,4 +157,4 @@ return [ 'spectre_input_fields_title' => 'Input mandatory fields', 'spectre_input_fields_text' => 'The following fields are mandated by ":provider" (from :country).', 'spectre_instructions_english' => 'These instructions are provided by Spectre for your convencience. They are in English:', -]; \ No newline at end of file +]; diff --git a/resources/lang/fr_FR/intro.php b/resources/lang/fr_FR/intro.php index 3d9f80e4c6..bb1a3a3c3d 100644 --- a/resources/lang/fr_FR/intro.php +++ b/resources/lang/fr_FR/intro.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/fr_FR/list.php b/resources/lang/fr_FR/list.php index 8809662cc8..fb3a23f5cd 100644 --- a/resources/lang/fr_FR/list.php +++ b/resources/lang/fr_FR/list.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -35,7 +34,7 @@ return [ 'currentBalance' => 'Solde courant', 'active' => 'Actif ?', 'lastActivity' => 'Activité récente', - 'balanceDiff' => 'Difference solde entre :start et :end', + 'balanceDiff' => 'Différence d\'équilibre', 'matchesOn' => 'Correspond à', 'account_type' => 'Type de compte', 'created_at' => 'Créé le', diff --git a/resources/lang/fr_FR/pagination.php b/resources/lang/fr_FR/pagination.php index b52985c4da..252bd87674 100644 --- a/resources/lang/fr_FR/pagination.php +++ b/resources/lang/fr_FR/pagination.php @@ -18,12 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - 'previous' => '« Précédent', 'next' => 'Suivant »', - ]; diff --git a/resources/lang/fr_FR/passwords.php b/resources/lang/fr_FR/passwords.php index 0d4547ab8e..6c3698071d 100644 --- a/resources/lang/fr_FR/passwords.php +++ b/resources/lang/fr_FR/passwords.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/fr_FR/validation.php b/resources/lang/fr_FR/validation.php index 467d5212a5..64037ac30b 100644 --- a/resources/lang/fr_FR/validation.php +++ b/resources/lang/fr_FR/validation.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/id_ID/auth.php b/resources/lang/id_ID/auth.php new file mode 100644 index 0000000000..0e216e497f --- /dev/null +++ b/resources/lang/id_ID/auth.php @@ -0,0 +1,37 @@ +. + */ +declare(strict_types=1); + +return [ + /* + |-------------------------------------------------------------------------- + | Authentication Language Lines + |-------------------------------------------------------------------------- + | + | The following language lines are used during authentication for various + | messages that we need to display to the user. You are free to modify + | these language lines according to your application's requirements. + | + */ + + 'failed' => 'Kredensial ini tidak sesuai dengan catatan kami.', + 'throttle' => 'Terlalu banyak upaya login. Silakan coba lagi dalam :seconds detik.', +]; diff --git a/resources/lang/id_ID/bank.php b/resources/lang/id_ID/bank.php new file mode 100644 index 0000000000..ef0d636f91 --- /dev/null +++ b/resources/lang/id_ID/bank.php @@ -0,0 +1,24 @@ +. + */ +declare(strict_types=1); + +return [ +]; diff --git a/resources/lang/id_ID/breadcrumbs.php b/resources/lang/id_ID/breadcrumbs.php new file mode 100644 index 0000000000..1170d129ed --- /dev/null +++ b/resources/lang/id_ID/breadcrumbs.php @@ -0,0 +1,55 @@ +. + */ +declare(strict_types=1); + +return [ + 'home' => 'Beranda', + 'edit_currency' => 'Edit mata uang ":name"', + 'delete_currency' => 'Hapus mata uang ":name"', + 'newPiggyBank' => 'Buat celengan baru', + 'edit_piggyBank' => 'Edit celengan ":name"', + 'preferences' => 'Preferensi', + 'profile' => 'Profil', + 'changePassword' => 'Ubah kata sandi Anda', + 'change_email' => 'Ubah alamat email anda', + 'bills' => 'Tagihan', + 'newBill' => 'Tagihan baru', + 'edit_bill' => 'Edit tagihan ":name"', + 'delete_bill' => 'Hapus tagihan ":name"', + 'reports' => 'Laporan', + 'search_result' => 'Hasil pencarian untuk ":query"', + 'withdrawal_list' => 'Pengeluaran', + 'deposit_list' => 'Pendapatan, pemasukan, dan deposit', + 'transfer_list' => 'Transfer', + 'transfers_list' => 'Transfer', + 'reconciliation_list' => 'Rekonsiliasi', + 'create_withdrawal' => 'Buat penarikan baru', + 'create_deposit' => 'Buat deposit baru', + 'create_transfer' => 'Buat transfer baru', + 'edit_journal' => 'Edit transaksi ":description"', + 'edit_reconciliation' => 'Edit ":description"', + 'delete_journal' => 'Hapus transaksi ":description"', + 'tags' => 'Label', + 'createTag' => 'Buat label baru', + 'edit_tag' => 'Edit label ":tag"', + 'delete_tag' => 'Hapus label ":tag"', + 'delete_journal_link' => 'Hapus tautan antar transaksi', +]; diff --git a/resources/lang/id_ID/config.php b/resources/lang/id_ID/config.php new file mode 100644 index 0000000000..f3cde3d997 --- /dev/null +++ b/resources/lang/id_ID/config.php @@ -0,0 +1,33 @@ +. + */ +declare(strict_types=1); + +return [ + 'locale' => 'id, Bahasa Indonesia, id_ID, id_ID.utf8, id_ID.UTF-8', + 'month' => '%B %Y', + 'month_and_day' => '%e %B %Y', + 'date_time' => '%e %B %Y, @ %T', + 'specific_day' => '%e %B %Y', + 'week_in_year' => 'Minggu %W, %Y', + 'quarter_of_year' => '%B %Y', + 'year' => '%Y', + 'half_year' => '%B %Y', +]; diff --git a/resources/lang/id_ID/csv.php b/resources/lang/id_ID/csv.php new file mode 100644 index 0000000000..d61316b632 --- /dev/null +++ b/resources/lang/id_ID/csv.php @@ -0,0 +1,24 @@ +. + */ +declare(strict_types=1); + +return [ +]; diff --git a/resources/lang/id_ID/demo.php b/resources/lang/id_ID/demo.php new file mode 100644 index 0000000000..25fce69e7d --- /dev/null +++ b/resources/lang/id_ID/demo.php @@ -0,0 +1,37 @@ +. + */ +declare(strict_types=1); + +return [ + 'no_demo_text' => 'Maaf, tidak ada teks penjelasan-penjelasan tambahan laman halaman ini.', + 'see_help_icon' => 'Namun, ikon di pojok kanan atas mungkin memberi tahu Anda lebih banyak.', + 'index' => 'Selamat Datang di Firefly III! Di halaman ini Anda mendapatkan gambaran singkat tentang keuangan Anda. Untuk informasi lebih lanjut, lihat Akun → Setelan Akun dan tentu saja halaman Budgets123_4_6_32_23_32_19_7_321Reports. Atau hanya melihat-lihat dan melihat di mana Anda berakhir.', + 'accounts-index' => 'Akun aset adalah rekening bank pribadi Anda. Akun pengeluaran adalah akun yang Anda belanjakan, seperti toko dan teman. Akun pendapatan adalah rekening yang Anda terima dari, seperti pekerjaan Anda, pemerintah atau sumber pendapatan lainnya. Pada halaman ini Anda dapat mengedit atau menghapusnya.', + 'budgets-index' => 'Halaman ini menunjukkan ikhtisar anggaran Anda. Bagian atas menunjukkan jumlah yang tersedia untuk dianggarkan. Ini dapat disesuaikan untuk segala periode dengan mengklik jumlah di sebelah kanan. Jumlah yang sebenarnya Anda habiskan ditunjukkan di bilah di bawah ini. Di bawah ini adalah biaya per anggaran dan apa yang telah Anda anggarkan untuk mereka.', + 'reports-index-start' => 'Firefly III mendukung empat jenis laporan. Baca tentang mereka dengan mengklik ikon -di pojok kanan atas.', + 'reports-index-examples' => 'Pastikan untuk memeriksa contoh-contoh ini: gambaran keuangan bulanan, ikhtisar keuangan tahunan dan gambaran umum anggaran.', + 'currencies-index' => 'Firefly III mendukung banyak mata uang. Meski default ke Euro itu bisa diatur ke US Dollar dan banyak mata uang lainnya. Seperti yang bisa Anda lihat, sejumlah kecil mata uang telah disertakan namun Anda dapat menambahkannya sendiri jika menginginkannya. Mengubah mata uang default tidak akan mengubah mata uang dari transaksi yang ada namun: Firefly III mendukung penggunaan beberapa mata uang pada saat bersamaan.', + 'transactions-index' => 'Biaya ini, deposito dan transfer tidak terlalu imajinatif. Mereka telah dihasilkan secara otomatis.', + 'piggy-banks-index' => 'Seperti yang bisa Anda lihat, ada tiga celengan. Gunakan tombol plus dan minus untuk mempengaruhi jumlah uang di setiap celengan. Klik nama celengan untuk melihat administrasi masing-masing celengan.', + 'import-index' => 'Tentu saja, file CSV manapun bisa diimpor ke Firefly III', + 'import-configure-security' => 'Karena masalah keamanan, upload Anda telah diganti dengan file lokal.', + 'import-configure-configuration' => 'Konfigurasi yang Anda lihat di bawah ini benar untuk file lokal.', +]; diff --git a/resources/lang/id_ID/firefly.php b/resources/lang/id_ID/firefly.php new file mode 100644 index 0000000000..87cc2cb858 --- /dev/null +++ b/resources/lang/id_ID/firefly.php @@ -0,0 +1,1126 @@ +. + */ +declare(strict_types=1); + +return [ + // general stuff: + 'close' => 'Dekat', + 'actions' => 'Tindakan', + 'edit' => 'Edit', + 'delete' => 'Menghapus', + 'welcomeBack' => 'Apa yang sedang diputar?', + 'everything' => 'Segala sesuatu', + 'today' => 'hari ini', + 'customRange' => 'Rentang khusus', + 'apply' => 'Menerapkan', + 'select_date' => 'Pilih tanggal ..', + 'cancel' => 'Membatalkan', + 'from' => 'Dari', + 'to' => 'Untuk', + 'showEverything' => 'Tunjukkan semuanya', + 'never' => 'Tak pernah', + 'no_results_for_empty_search' => 'Pencarian Anda kosong, jadi tidak ada yang ditemukan.', + 'removed_amount' => 'Dihapus: jumlah', + 'added_amount' => 'Ditambahkan: jumlah', + 'asset_account_role_help' => 'Setiap pilihan tambahan yang dihasilkan dari pilihan Anda dapat diatur nanti.', + 'Opening balance' => 'Saldo awal', + 'create_new_stuff' => 'Buat barang baru', + 'new_withdrawal' => 'Penarikan baru', + 'new_deposit' => 'Deposit baru', + 'new_transfer' => 'Transfer baru', + 'new_asset_account' => 'Akun aset baru', + 'new_expense_account' => 'Akun pengeluaran baru', + 'new_revenue_account' => 'Akun pendapatan baru', + 'new_budget' => 'Anggaran baru', + 'new_bill' => 'Tagihan baru', + 'block_account_logout' => 'Kamu telah keluar Akun yang diblokir tidak dapat menggunakan situs ini. Apakah Anda mendaftar dengan alamat email yang benar?', + 'flash_success' => 'Keberhasilan!', + 'flash_info' => 'Pesan', + 'flash_warning' => 'PERINGATAN!', + 'flash_error' => 'Kesalahan!', + 'flash_info_multiple' => 'Ada satu pesan: Ada: hitung pesan', + 'flash_error_multiple' => 'Ada satu kesalahan: Ada: hitung kesalahan', + 'net_worth' => 'Nilai bersih', + 'route_has_no_help' => 'Tidak ada bantuan untuk rute ini.', + 'two_factor_welcome' => 'Halo,: pengguna!', + 'two_factor_enter_code' => 'Untuk melanjutkan, masukkan kode otentikasi dua faktor Anda. Aplikasi Anda bisa menghasilkannya untuk Anda.', + 'two_factor_code_here' => 'Masukkan kode di sini', + 'two_factor_title' => 'Dua faktor otentikasi', + 'authenticate' => 'Otentikasi', + 'two_factor_forgot_title' => 'Kehilangan dua faktor otentikasi', + 'two_factor_forgot' => 'Saya lupa dua faktor saya.', + 'two_factor_lost_header' => 'Kehilangan autentikasi dua faktor Anda?', + 'two_factor_lost_intro' => 'Sayangnya, ini bukan sesuatu yang bisa Anda atur ulang dari antarmuka web. Anda punya dua pilihan.', + 'two_factor_lost_fix_self' => 'Jika Anda menjalankan contoh Firefly III Anda sendiri, periksa log di storage / logs untuk mendapatkan petunjuk.', + 'two_factor_lost_fix_owner' => 'Jika tidak, kirimkan email ke pemilik situs, : site_owner dan mintalah mereka untuk menyetel ulang autentikasi dua faktor Anda.', + 'warning_much_data' => ': hari hari data mungkin perlu beberapa saat untuk memuat.', + 'registered' => 'Anda telah berhasil mendaftar!', + 'Default asset account' => 'Akun aset standar', + 'no_budget_pointer' => 'Anda tampaknya belum memiliki anggaran. Anda harus membuat beberapa di halaman budgets. Anggaran dapat membantu Anda melacak pengeluaran.', + 'Savings account' => 'Rekening tabungan', + 'Credit card' => 'Kartu kredit', + 'source_accounts' => 'Akun sumber', + 'destination_accounts' => 'Akun tujuan', + 'user_id_is' => 'Id pengguna Anda adalah : user', + 'field_supports_markdown' => 'Bidang ini mendukung Markdown.', + 'need_more_help' => 'Jika Anda memerlukan bantuan lebih banyak menggunakan Firefly III, silakan opsi tiket di Github.', + 'reenable_intro_text' => 'Anda juga dapat mengaktifkan panduan pendahuluan.', + 'intro_boxes_after_refresh' => 'Kotak pengantar akan muncul kembali saat Anda menyegarkan halaman.', + 'show_all_no_filter' => 'Tampilkan semua transaksi tanpa mengelompokkan mereka menurut tanggal.', + 'expenses_by_category' => 'Biaya berdasarkan kategori', + 'expenses_by_budget' => 'Biaya menurut anggaran', + 'income_by_category' => 'Penghasilan menurut kategori', + 'expenses_by_asset_account' => 'Beban menurut akun aset', + 'expenses_by_expense_account' => 'Beban menurut akun beban', + 'cannot_redirect_to_account' => 'Firefly III tidak bisa mengalihkan Anda ke halaman yang benar. Permintaan maaf.', + 'sum_of_expenses' => 'Jumlah pengeluaran', + 'sum_of_income' => 'Jumlah pendapatan', + 'spent_in_specific_budget' => 'Menghabiskan anggaran ": anggaran"', + 'sum_of_expenses_in_budget' => 'Menghabiskan total dalam anggaran ": anggaran"', + 'left_in_budget_limit' => 'Kiri untuk dibelanjakan sesuai budget', + 'current_period' => 'Periode sekarang', + 'show_the_current_period_and_overview' => 'Tunjukkan periode dan ikhtisar saat ini', + 'pref_languages_locale' => 'Agar bahasa selain bahasa Inggris berfungsi dengan benar, sistem operasi Anda harus dilengkapi dengan informasi lokal yang benar. Jika ini tidak ada, data mata uang, tanggal dan jumlah mungkin salah diformat.', + 'budget_in_period' => 'Semua transaksi untuk anggaran ": nama" antara: start dan: end', + 'chart_budget_in_period' => 'Bagan untuk semua transaksi untuk anggaran ": nama" antara: start dan: end', + 'chart_account_in_period' => 'Bagan untuk semua transaksi untuk akun ": nama" antara: start dan: end', + 'chart_category_in_period' => 'Bagan untuk semua transaksi untuk kategori ": nama" antara: start dan: end', + 'chart_category_all' => 'Bagan untuk semua transaksi untuk kategori ": nama"', + 'clone_withdrawal' => 'Kloning penarikan ini', + 'clone_deposit' => 'Kloning deposit ini', + 'clone_transfer' => 'Kloning transfer ini', + 'multi_select_no_selection' => 'Tidak ada yang di pilih', + 'multi_select_all_selected' => 'Semua dipilih', + 'multi_select_filter_placeholder' => 'Menemukan..', + 'between_dates_breadcrumb' => 'Antara: start dan: end', + 'all_journals_without_budget' => 'Semua transaksi tanpa anggaran', + 'journals_without_budget' => 'Transaksi tanpa anggaran', + 'all_journals_without_category' => 'Semua transaksi tanpa kategori', + 'journals_without_category' => 'Transaksi tanpa kategori', + 'all_journals_for_account' => 'Semua transaksi untuk akun: nama', + 'chart_all_journals_for_account' => 'Bagan semua transaksi untuk akun: nama', + 'journals_in_period_for_account' => 'Semua transaksi untuk akun: nama antara: start dan: end', + 'transferred' => 'Ditransfer', + 'all_withdrawal' => 'Semua biaya', + 'all_transactions' => 'Semua Transaksi', + 'title_withdrawal_between' => 'Semua biaya antara: start dan: end', + 'all_deposit' => 'Semua pendapatan', + 'title_deposit_between' => 'Semua pendapatan antara: start dan: end', + 'all_transfers' => 'Semua transfer', + 'title_transfers_between' => 'Semua transfer antara: start dan: end', + 'all_transfer' => 'Semua transfer', + 'all_journals_for_tag' => 'Semua transaksi untuk tag ": tag"', + 'title_transfer_between' => 'Semua transfer antara: start dan: end', + 'all_journals_for_category' => 'Semua transaksi untuk kategori: nama', + 'all_journals_for_budget' => 'Semua transaksi untuk anggaran: nama', + 'chart_all_journals_for_budget' => 'Bagan semua transaksi untuk anggaran: nama', + 'journals_in_period_for_category' => 'Semua transaksi untuk kategori: nama antara: start dan: end', + 'journals_in_period_for_tag' => 'Semua transaksi untuk tag: tag antara: start and: end', + 'not_available_demo_user' => 'Fitur yang Anda coba akses tidak tersedia untuk pengguna demo.', + 'exchange_rate_instructions' => 'Akun aset "@name" hanya menerima transaksi di @native_currency. Jika Anda ingin menggunakan @foreign_currency sebagai gantinya, pastikan jumlahnya di @native_currency juga diketahui:', + 'transfer_exchange_rate_instructions' => 'Akun aset sumber "@source_name" hanya menerima transaksi di @source_currency. Akun aset tujuan "@dest_name" hanya menerima transaksi di @dest_currency. Anda harus memberikan jumlah yang ditransfer dengan benar pada kedua mata uang tersebut.', + 'transaction_data' => 'Data transaksi', + 'invalid_server_configuration' => 'Konfigurasi server tidak valid', + 'invalid_locale_settings' => 'Firefly III tidak dapat memformat jumlah uang karena server Anda kehilangan paket yang dibutuhkan. Ada instructions bagaimana melakukan ini.', + 'quickswitch' => 'Quickswitch', + + // search + 'search' => 'Pencarian', + 'search_query' => 'Pertanyaan', + 'search_found_transactions' => 'Jumlah transaksi yang ditemukan:', + 'general_search_error' => 'Terjadi kesalahan saat mencari. Silakan periksa file log untuk informasi lebih lanjut.', + 'search_box' => 'Pencarian', + 'search_box_intro' => 'Selamat datang di fungsi pencarian Firefly III. Masukkan kueri penelusuran Anda di dalam kotak. Pastikan Anda memeriksa file bantuan karena pencariannya cukup canggih.', + 'search_error' => 'Kesalahan saat mencari', + 'search_searching' => 'Mencari ...', + 'search_results' => 'Hasil Pencarian', + + // repeat frequencies: + 'repeat_freq_yearly' => 'tahunan', + 'repeat_freq_half-year' => 'setiap setengah tahun', + 'repeat_freq_quarterly' => 'triwulanan', + 'repeat_freq_monthly' => 'bulanan', + 'repeat_freq_weekly' => 'mingguan', + 'weekly' => 'mingguan', + 'quarterly' => 'triwulanan', + 'half-year' => 'setiap setengah tahun', + 'yearly' => 'tahunan', + + // export data: + 'import_and_export' => 'Impor dan ekspor', + 'export_data' => 'Data ekspor', + 'export_and_backup_data' => 'Ekspor dan backup', + 'export_data_intro' => 'Untuk keperluan backup, saat bermigrasi ke sistem lain atau saat melakukan migrasi ke instalasi Firefly III lainnya.', + 'export_format' => 'Format ekspor', + 'export_format_csv' => 'Nilai yang dipisahkan koma (file CSV)', + 'export_format_mt940' => 'Format MT940 yang kompatibel', + 'include_old_uploads_help' => 'Firefly III tidak membuang file CSV asli yang telah Anda impor sebelumnya. Anda bisa memasukkannya ke dalam ekspor Anda.', + 'do_export' => 'Ekspor', + 'export_status_never_started' => 'Ekspor belum dimulai', + 'export_status_make_exporter' => 'Membuat barang eksportir ...', + 'export_status_collecting_journals' => 'Mengumpulkan transaksi Anda ...', + 'export_status_collected_journals' => 'Mengumpulkan transaksi Anda!', + 'export_status_converting_to_export_format' => 'Mengubah transaksi Anda ...', + 'export_status_converted_to_export_format' => 'Mengubah transaksi anda!', + 'export_status_creating_journal_file' => 'Membuat file ekspor ...', + 'export_status_created_journal_file' => 'Membuat file ekspor!', + 'export_status_collecting_attachments' => 'Mengumpulkan semua lampiran Anda ...', + 'export_status_collected_attachments' => 'Mengumpulkan semua lampiran Anda!', + 'export_status_collecting_old_uploads' => 'Mengumpulkan semua unggahan sebelumnya ...', + 'export_status_collected_old_uploads' => 'Mengumpulkan semua upload sebelumnya!', + 'export_status_creating_zip_file' => 'Membuat file zip ...', + 'export_status_created_zip_file' => 'Membuat file zip!', + 'export_status_finished' => 'Ekspor telah berhasil selesai! Yay!', + 'export_data_please_wait' => 'Mohon tunggu...', + + // rules + 'rules' => 'Aturan', + 'rule_name' => 'Nama aturan', + 'rule_triggers' => 'Aturan pemicu kapan', + 'rule_actions' => 'Aturan akan', + 'new_rule' => 'Aturan baru', + 'new_rule_group' => 'Kelompok aturan baru', + 'rule_priority_up' => 'Berikan peraturan prioritas lebih', + 'rule_priority_down' => 'Berikan peraturan kurang prioritas', + 'make_new_rule_group' => 'Buat grup aturan baru', + 'store_new_rule_group' => 'Simpan grup aturan baru', + 'created_new_rule_group' => 'Kelompok aturan baru ": judul" disimpan!', + 'updated_rule_group' => 'Grup aturan yang berhasil diperbarui ": title".', + 'edit_rule_group' => 'Edit grup aturan ": judul"', + 'delete_rule_group' => 'Hapus grup aturan ": judul"', + 'deleted_rule_group' => 'Grup aturan yang dihapus ": judul"', + 'update_rule_group' => 'Perbarui grup aturan', + 'no_rules_in_group' => 'Tidak ada aturan dalam kelompok ini', + 'move_rule_group_up' => 'Pindahkan grup aturan ke atas', + 'move_rule_group_down' => 'Pindahkan grup aturan ke bawah', + 'save_rules_by_moving' => 'Simpan aturan ini dengan memindahkannya ke grup aturan lain:', + 'make_new_rule' => 'Buat aturan baru di grup aturan ": title"', + 'rule_help_stop_processing' => 'Saat Anda mencentang kotak ini, nanti aturan dalam grup ini tidak akan dijalankan.', + 'rule_help_active' => 'Aturan tidak aktif tidak akan pernah menyala.', + 'stored_new_rule' => 'Aturan baru yang tersimpan dengan judul ": title"', + 'deleted_rule' => 'Aturan yang dihapus dengan judul ": title"', + 'store_new_rule' => 'Simpan peraturan baru', + 'updated_rule' => 'Aturan yang diperbarui dengan judul ": title"', + 'default_rule_group_name' => 'Aturan baku', + 'default_rule_group_description' => 'Semua peraturan Anda tidak ada dalam kelompok tertentu.', + 'default_rule_name' => 'Aturan default pertama Anda', + 'default_rule_description' => 'Aturan ini adalah sebuah contoh. Anda bisa menghapusnya dengan aman.', + 'default_rule_trigger_description' => 'Orang yang menjual dunia', + 'default_rule_trigger_from_account' => 'David Bowie', + 'default_rule_action_prepend' => 'Membeli dunia dari', + 'default_rule_action_set_category' => 'Biaya besar', + 'trigger' => 'Pelatuk', + 'trigger_value' => 'Memicu nilai', + 'stop_processing_other_triggers' => 'Berhenti memproses pemicu lainnya', + 'add_rule_trigger' => 'Tambahkan pemicu baru', + 'action' => 'Tindakan', + 'action_value' => 'Nilai tindakan', + 'stop_executing_other_actions' => 'Berhenti mengeksekusi tindakan lainnya', + 'add_rule_action' => 'Tambahkan tindakan baru', + 'edit_rule' => 'Edit aturan ": judul"', + 'delete_rule' => 'Hapus aturan ": judul"', + 'update_rule' => 'Perbarui aturan', + 'test_rule_triggers' => 'Lihat transaksi yang sesuai', + 'warning_transaction_subset' => 'Untuk alasan kinerja daftar ini terbatas pada: max_num_transactions dan mungkin hanya menampilkan subset dari transaksi yang cocok', + 'warning_no_matching_transactions' => 'Tidak ada transaksi yang cocok ditemukan. Harap dicatat bahwa untuk alasan kinerja, hanya yang terakhir: transaksi num_transaksi telah diperiksa.', + 'warning_no_valid_triggers' => 'Tidak ada pemicu yang valid.', + 'apply_rule_selection' => 'Terapkan aturan ": judul" untuk pilihan transaksi Anda', + 'apply_rule_selection_intro' => 'Aturan seperti ": judul" biasanya hanya diterapkan pada transaksi baru atau yang telah diperbarui, namun Anda bisa memberi tahu Firefly III untuk menjalankannya pada pilihan transaksi Anda yang ada. Ini bisa berguna bila Anda telah memperbarui peraturan dan Anda memerlukan perubahan yang akan diterapkan pada semua transaksi Anda yang lain.', + 'include_transactions_from_accounts' => 'Sertakan transaksi dari akun ini', + 'applied_rule_selection' => 'Aturan ": judul" telah diterapkan pada pilihan Anda.', + 'execute' => 'Menjalankan', + 'apply_rule_group_selection' => 'Terapkan grup aturan ": judul" ke pilihan transaksi Anda', + 'apply_rule_group_selection_intro' => 'Kelompok aturan seperti ": judul" biasanya hanya diterapkan pada transaksi baru atau yang diperbarui, namun Anda dapat memberi tahu Firefly III untuk menjalankan semua aturan dalam grup ini pada pilihan transaksi Anda saat ini. Ini bisa berguna bila Anda telah memperbarui sekumpulan aturan dan Anda memerlukan perubahan yang akan diterapkan pada semua transaksi Anda yang lain.', + 'applied_rule_group_selection' => 'Rule group ": title" telah diterapkan pada pilihan Anda.', + + // actions and triggers + 'rule_trigger_user_action' => 'Tindakan pengguna adalah ": trigger_value"', + 'rule_trigger_from_account_starts_choice' => 'Akun sumber dimulai dengan ..', + 'rule_trigger_from_account_starts' => 'Akun sumber dimulai dengan ": trigger_value"', + 'rule_trigger_from_account_ends_choice' => 'Akun sumber diakhiri dengan ..', + 'rule_trigger_from_account_ends' => 'Akun sumber diakhiri dengan ": trigger_value"', + 'rule_trigger_from_account_is_choice' => 'Akun sumber ..', + 'rule_trigger_from_account_is' => 'Akun sumber adalah ": trigger_value"', + 'rule_trigger_from_account_contains_choice' => 'Akun sumber berisi ..', + 'rule_trigger_from_account_contains' => 'Akun sumber berisi ": trigger_value"', + 'rule_trigger_to_account_starts_choice' => 'Akun tujuan dimulai dengan ..', + 'rule_trigger_to_account_starts' => 'Akun tujuan dimulai dengan ": trigger_value"', + 'rule_trigger_to_account_ends_choice' => 'Akun tujuan diakhiri dengan ..', + 'rule_trigger_to_account_ends' => 'Akun tujuan diakhiri dengan ": trigger_value"', + 'rule_trigger_to_account_is_choice' => 'Akun tujuan ..', + 'rule_trigger_to_account_is' => 'Akun tujuan adalah ": trigger_value"', + 'rule_trigger_to_account_contains_choice' => 'Akun tujuan berisi ..', + 'rule_trigger_to_account_contains' => 'Akun tujuan berisi ": trigger_value"', + 'rule_trigger_transaction_type_choice' => 'Transaksi adalah tipe ..', + 'rule_trigger_transaction_type' => 'Transaksi adalah tipe ": trigger_value"', + 'rule_trigger_category_is_choice' => 'Kategori adalah ..', + 'rule_trigger_category_is' => 'Kategori adalah ": trigger_value"', + 'rule_trigger_amount_less_choice' => 'Jumlahnya kurang dari ..', + 'rule_trigger_amount_less' => 'Jumlahnya kurang dari: trigger_value', + 'rule_trigger_amount_exactly_choice' => 'Jumlahnya ..', + 'rule_trigger_amount_exactly' => 'Jumlahnya adalah: trigger_value', + 'rule_trigger_amount_more_choice' => 'Jumlahnya lebih dari ..', + 'rule_trigger_amount_more' => 'Jumlahnya lebih dari: trigger_value', + 'rule_trigger_description_starts_choice' => 'Deskripsi dimulai dengan ..', + 'rule_trigger_description_starts' => 'Deskripsi dimulai dengan ": trigger_value"', + 'rule_trigger_description_ends_choice' => 'Deskripsi diakhiri dengan ..', + 'rule_trigger_description_ends' => 'Deskripsi diakhiri dengan ": trigger_value"', + 'rule_trigger_description_contains_choice' => 'Deskripsi berisi ..', + 'rule_trigger_description_contains' => 'Deskripsi berisi ": trigger_value"', + 'rule_trigger_description_is_choice' => 'Deskripsi adalah ..', + 'rule_trigger_description_is' => 'Deskripsi adalah ": trigger_value"', + 'rule_trigger_budget_is_choice' => 'Anggaran adalah ..', + 'rule_trigger_budget_is' => 'Anggaran adalah ": trigger_value"', + 'rule_trigger_tag_is_choice' => '(A) tag adalah ..', + 'rule_trigger_tag_is' => 'Tag adalah ": trigger_value"', + 'rule_trigger_has_attachments_choice' => 'Paling tidak banyak keterikatan ini', + 'rule_trigger_has_attachments' => 'Paling tidak: trigger_value attachment (s)', + 'rule_trigger_store_journal' => 'Saat transaksi dibuat', + 'rule_trigger_update_journal' => 'Saat transaksi diperbarui', + 'rule_trigger_has_no_category_choice' => 'Tidak memiliki kategori', + 'rule_trigger_has_no_category' => 'Transaksi tidak memiliki kategori', + 'rule_trigger_has_any_category_choice' => 'Memiliki kategori (apapun)', + 'rule_trigger_has_any_category' => 'Transaksi tidak memiliki kategori (apapun)', + 'rule_trigger_has_no_budget_choice' => 'Tidak memiliki anggaran', + 'rule_trigger_has_no_budget' => 'Transaksi tidak memiliki anggaran', + 'rule_trigger_has_any_budget_choice' => 'Memiliki anggaran (apapun)', + 'rule_trigger_has_any_budget' => 'Transaksi memiliki anggaran (apapun)', + 'rule_trigger_has_no_tag_choice' => 'Tidak memiliki tag', + 'rule_trigger_has_no_tag' => 'Transaksi tidak memiliki tag(s)', + 'rule_trigger_has_any_tag_choice' => 'Memiliki satu atau beberapa tag (apapun)', + 'rule_trigger_has_any_tag' => 'Transaksi memiliki satu atau lebih tag (apapun)', + 'rule_trigger_any_notes_choice' => 'Telah ada catatan', + 'rule_trigger_any_notes' => 'Transaksi memiliki (ada) catatan', + 'rule_trigger_no_notes_choice' => 'Tidak memiliki catatan', + 'rule_trigger_no_notes' => 'Transaksi tidak memiliki catatan', + 'rule_trigger_notes_are_choice' => 'Catatan adalah..', + 'rule_trigger_notes_are' => 'Catatan adalah ": trigger_value"', + 'rule_trigger_notes_contain_choice' => 'Catatan berisi..', + 'rule_trigger_notes_contain' => 'Catatan berisi ": trigger_value"', + 'rule_trigger_notes_start_choice' => 'Catatan dimulai dengan..', + 'rule_trigger_notes_start' => 'Catatan dimulai dengan ": trigger_value"', + 'rule_trigger_notes_end_choice' => 'Catatan diakhiri dengan..', + 'rule_trigger_notes_end' => 'Catatan diakhiri dengan ": trigger_value"', + 'rule_action_set_category' => 'Tetapkan kategori ke ": action_value"', + 'rule_action_clear_category' => 'Kategori yang jelas', + 'rule_action_set_budget' => 'Tetapkan anggaran ke ": action_value"', + 'rule_action_clear_budget' => 'Jelas anggaran', + 'rule_action_add_tag' => 'Tambahkan tag ": action_value"', + 'rule_action_remove_tag' => 'Hapus tag ": action_value"', + 'rule_action_remove_all_tags' => 'Hapus semua tag', + 'rule_action_set_description' => 'Tetapkan deskripsi ke ": action_value"', + 'rule_action_append_description' => 'Tambahkan deskripsi dengan ": action_value"', + 'rule_action_prepend_description' => 'Masukan dulu deskripsi dengan ": action_value"', + 'rule_action_set_category_choice' => 'Tetapkan kategori ke..', + 'rule_action_clear_category_choice' => 'Kosongkan kategori apapun', + 'rule_action_set_budget_choice' => 'Tetapkan anggaran ke..', + 'rule_action_clear_budget_choice' => 'Kosongkan anggaran', + 'rule_action_add_tag_choice' => 'Tambahkan tag..', + 'rule_action_remove_tag_choice' => 'Hapus tanda..', + 'rule_action_remove_all_tags_choice' => 'Hapus semua tag', + 'rule_action_set_description_choice' => 'Setel deskripsi ke..', + 'rule_action_append_description_choice' => 'Tambahkan deskripsi dengan..', + 'rule_action_prepend_description_choice' => 'Tambahkan deskripsi dengan..', + 'rule_action_set_source_account_choice' => 'Tetapkan akun sumber ke...', + 'rule_action_set_source_account' => 'Tetapkan akun sumber ke: action_value', + 'rule_action_set_destination_account_choice' => 'Tetapkan akun tujuan ke ...', + 'rule_action_set_destination_account' => 'Tetapkan akun tujuan ke: action_value', + 'rule_action_append_notes_choice' => 'Tambahkan catatan dengan ..', + 'rule_action_append_notes' => 'Tambahkan catatan dengan ": action_value"', + 'rule_action_prepend_notes_choice' => 'Prepend catatan dengan ..', + 'rule_action_prepend_notes' => 'Catatan prepend dengan ": action_value"', + 'rule_action_clear_notes_choice' => 'Hapus catatan apapun', + 'rule_action_clear_notes' => 'Hapus catatan apapun', + 'rule_action_set_notes_choice' => 'Tetapkan catatan ke ..', + 'rule_action_set_notes' => 'Tetapkan catatan ke ": action_value"', + + 'rules_have_read_warning' => 'Sudahkah anda membaca peringatannya?', + 'apply_rule_warning' => 'Peringatan: menjalankan aturan (grup) pada banyak pilihan transaksi bisa memakan waktu lama, dan bisa time-out. Jika ya, aturan (grup) hanya akan diterapkan ke subkumpulan transaksi yang tidak diketahui. Ini mungkin akan membuat administrasi keuangan Anda berantakan. Tolong hati-hati.', + + // tags + 'store_new_tag' => 'Simpan tag baru', + 'update_tag' => 'Perbarui tag', + 'no_location_set' => 'Tidak ada lokasi yang ditetapkan', + 'meta_data' => 'Data meta', + 'location' => 'Lokasi', + 'without_date' => 'Tanpa tanggal', + 'result' => 'Hasil', + 'sums_apply_to_range' => 'Semua jumlah berlaku untuk rentang yang dipilih', + 'mapbox_api_key' => 'Untuk menggunakan peta, dapatkan kunci API dari Mapbox. Buka file .env en masukkan kode ini setelah MAPBOX_API_KEY = .', + 'press_tag_location' => 'Klik kanan atau tekan agak lama untuk mengatur lokasi tag.', + 'clear_location' => 'Lokasi yang jelas', + + // preferences + 'pref_home_screen_accounts' => 'Akun layar utama', + 'pref_home_screen_accounts_help' => 'Akun mana yang harus ditampilkan di beranda?', + 'pref_view_range' => 'Rentang tampilan', + 'pref_view_range_help' => 'Beberapa grafik secara otomatis dikelompokkan dalam beberapa periode. Periode apa yang anda inginkan?', + 'pref_1D' => 'Suatu hari', + 'pref_1W' => 'Satu minggu', + 'pref_1M' => 'Satu bulan', + 'pref_3M' => 'Tiga bulan (seperempat)', + 'pref_6M' => 'Enam bulan', + 'pref_1Y' => 'Satu tahun', + 'pref_languages' => 'Bahasa', + 'pref_languages_help' => 'Firefly III mendukung beberapa bahasa. Mana yang kamu suka?', + 'pref_custom_fiscal_year' => 'Pengaturan tahun fiskal', + 'pref_custom_fiscal_year_label' => 'Diaktifkan', + 'pref_custom_fiscal_year_help' => 'Di negara-negara yang menggunakan tahun keuangan selain 1 Januari sampai 31 Desember, Anda dapat mengaktifkannya dan menentukan hari-hari awal / akhir dari tahun fiskal', + 'pref_fiscal_year_start_label' => 'Tahun anggaran mulai tanggal', + 'pref_two_factor_auth' => 'Verifikasi 2 langkah', + 'pref_two_factor_auth_help' => 'Bila Anda mengaktifkan verifikasi 2 langkah (juga dikenal sebagai autentikasi dua faktor), Anda menambahkan lapisan keamanan ekstra ke akun Anda. Anda masuk dengan sesuatu yang Anda tahu (kata sandi Anda) dan sesuatu yang Anda miliki (kode verifikasi). Kode verifikasi dihasilkan oleh aplikasi di ponsel Anda, seperti Authy atau Google Authenticator.', + 'pref_enable_two_factor_auth' => 'Aktifkan verifikasi 2 langkah', + 'pref_two_factor_auth_disabled' => 'Kode verifikasi 2 langkah dihapus dan dinonaktifkan', + 'pref_two_factor_auth_remove_it' => 'Jangan lupa menghapus akun dari aplikasi autentikasi Anda!', + 'pref_two_factor_auth_code' => 'Kode verifikasi', + 'pref_two_factor_auth_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', + 'pref_two_factor_auth_reset_code' => 'Setel ulang kode verifikasi', + 'pref_two_factor_auth_remove_code' => 'Hapus kode verifikasi', + 'pref_two_factor_auth_remove_will_disable' => '(ini juga akan menonaktifkan autentikasi dua faktor)', + 'pref_save_settings' => 'Save settings', + 'saved_preferences' => 'Preferences saved!', + 'preferences_general' => 'General', + 'preferences_frontpage' => 'Home screen', + 'preferences_security' => 'Security', + 'preferences_layout' => 'Layout', + 'pref_home_show_deposits' => 'Show deposits on the home screen', + 'pref_home_show_deposits_info' => 'The home screen already shows your expense accounts. Should it also show your revenue accounts?', + 'pref_home_do_show_deposits' => 'Yes, show them', + 'successful_count' => 'of which :count successful', + 'list_page_size_title' => 'Page size', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Page size', + 'between_dates' => '(:start and :end)', + 'pref_optional_fields_transaction' => 'Optional fields for transactions', + 'pref_optional_fields_transaction_help' => 'By default not all fields are enabled when creating a new transaction (because of the clutter). Below, you can enable these fields if you think they could be useful for you. Of course, any field that is disabled, but already filled in, will be visible regardless of the setting.', + 'optional_tj_date_fields' => 'Date fields', + 'optional_tj_business_fields' => 'Business fields', + 'optional_tj_attachment_fields' => 'Attachment fields', + 'pref_optional_tj_interest_date' => 'Interest date', + 'pref_optional_tj_book_date' => 'Book date', + 'pref_optional_tj_process_date' => 'Processing date', + 'pref_optional_tj_due_date' => 'Due date', + 'pref_optional_tj_payment_date' => 'Payment date', + 'pref_optional_tj_invoice_date' => 'Invoice date', + 'pref_optional_tj_internal_reference' => 'Internal reference', + 'pref_optional_tj_notes' => 'Notes', + 'pref_optional_tj_attachments' => 'Attachments', + 'optional_field_meta_dates' => 'Dates', + 'optional_field_meta_business' => 'Business', + 'optional_field_attachments' => 'Attachments', + 'optional_field_meta_data' => 'Optional meta data', + + // profile: + 'change_your_password' => 'Change your password', + 'delete_account' => 'Delete account', + 'current_password' => 'Current password', + 'new_password' => 'New password', + 'new_password_again' => 'New password (again)', + 'delete_your_account' => 'Delete your account', + 'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, anything you might have saved into Firefly III. It\'ll be GONE.', + 'delete_your_account_password' => 'Enter your password to continue.', + 'password' => 'Password', + 'are_you_sure' => 'Are you sure? You cannot undo this.', + 'delete_account_button' => 'DELETE your account', + 'invalid_current_password' => 'Invalid current password!', + 'password_changed' => 'Password changed!', + 'should_change' => 'The idea is to change your password.', + 'invalid_password' => 'Invalid password!', + 'what_is_pw_security' => 'What is "verify password security"?', + 'secure_pw_title' => 'How to choose a secure password', + 'secure_pw_history' => 'In August 2017 well known security researcher Troy Hunt released a list of 306 million stolen passwords. These passwords were stolen during breakins at companies like LinkedIn, Adobe and NeoPets (and many more).', + 'secure_pw_check_box' => 'Dengan mencentang kotaknya, Firefly III akan mengirimkan hash SHA1 dari kata sandi Anda ke situs web dari Troy Hunt untuk melihat apakah itu ada dalam daftar. Ini akan menghentikan Anda untuk menggunakan kata kunci yang tidak aman seperti yang disarankan di Publikasi Khusus NIST atas Subjek ini.', + 'secure_pw_sha1' => 'Tapi saya pikir SHA1 rusak?', + 'secure_pw_hash_speed' => 'Ya, tapi tidak dalam konteks ini. Seperti yang bisa Anda baca di situs web yang merinci bagaimana mereka melanggar SHA1 , sekarang sedikit lebih mudah untuk menemukan "tabrakan": string lain yang menghasilkan sama SHA1-hash Sekarang hanya membutuhkan waktu 10.000 tahun dengan menggunakan mesin GPU tunggal.', + 'secure_pw_hash_security' => 'Tabrakan ini tidak akan sama dengan kata sandi Anda, juga tidak akan berguna di (situs seperti) Firefly III. Aplikasi ini tidak menggunakan SHA1 untuk verifikasi kata sandi. Jadi aman untuk mencentang kotak ini. Kata sandi Anda hashed dan dikirim melalui HTTPS.', + 'secure_pw_should' => 'Haruskah saya mencentang kotaknya?', + 'secure_pw_long_password' => 'Jika Anda baru saja menghasilkan kata sandi penggunaan tunggal yang hebat untuk Firefly III menggunakan beberapa jenis generator kata kunci: tidak .', + 'secure_pw_short' => 'Jika Anda baru memasukkan kata sandi yang selalu Anda gunakan: Please yes .', + 'personal_access_token' => 'Token akses pribadi', + 'explain_access_token' => 'Anda memerlukan token ini untuk melakukan opsi baris perintah, seperti mengimpor atau mengekspor data. Tanpa itu, perintah sensitif semacam itu tidak akan berhasil. Jangan berbagi token akses Anda. Tidak ada yang akan menanyakan token ini, bahkan saya pun tidak. Jika Anda takut kehilangan ini, atau saat Anda paranoid, pulihkan token ini dengan menggunakan tombolnya.', + 'regenerate_access_token' => 'Regenerasi token akses', + 'token_regenerated' => 'Token baru dihasilkan', + 'change_your_email' => 'Ubah alamat email anda', + 'email_verification' => 'Pesan email akan dikirim ke alamat email lama DAN baru Anda. Untuk tujuan keamanan, Anda tidak dapat masuk sampai Anda memverifikasi alamat email baru Anda. Jika Anda tidak yakin apakah instalasi Firefly III Anda bisa mengirim email, tolong jangan gunakan fitur ini. Jika Anda seorang administrator, Anda dapat mengujinya di Administrasi .', + 'email_changed_logout' => 'Sampai Anda memverifikasi alamat email Anda, Anda tidak dapat login.', + 'login_with_new_email' => 'Anda sekarang bisa masuk dengan alamat email baru Anda.', + 'login_with_old_email' => 'Anda sekarang dapat login dengan alamat email lama Anda lagi.', + + // attachments + 'nr_of_attachments' => 'Satu lampiran |: hitung lampiran', + 'attachments' => 'Lampiran', + 'edit_attachment' => 'Edit lampiran ": nama"', + 'update_attachment' => 'Perbarui lampiran', + 'delete_attachment' => 'Hapus lampiran ": nama"', + 'attachment_deleted' => 'Lampiran yang dihapus ": nama"', + 'attachment_updated' => 'Lampiran yang diperbarui ": nama"', + 'upload_max_file_size' => 'Ukuran file maksimum:: ukuran', + + // transaction index + 'title_expenses' => 'Beban', + 'title_withdrawal' => 'Beban', + 'title_revenue' => 'Pendapatan / penghasilan', + 'title_deposit' => 'Pendapatan / penghasilan', + 'title_transfer' => 'Transfer', + 'title_transfers' => 'Transfer', + + // convert stuff: + 'convert_is_already_type_Withdrawal' => 'Transaksi ini sudah menjadi penarikan', + 'convert_is_already_type_Deposit' => 'Transaksi ini sudah menjadi deposit', + 'convert_is_already_type_Transfer' => 'Transaksi ini sudah di transfer', + 'convert_to_Withdrawal' => 'Convert ": description" ke penarikan', + 'convert_to_Deposit' => 'Convert ": description" ke deposit', + 'convert_to_Transfer' => 'Convert ": description" ke sebuah transfer', + 'convert_options_WithdrawalDeposit' => 'Mengkonversi penarikan menjadi deposit', + 'convert_options_WithdrawalTransfer' => 'Mengkonversi penarikan ke dalam transfer', + 'convert_options_DepositTransfer' => 'Mengkonversi deposit ke transfer', + 'convert_options_DepositWithdrawal' => 'Mengkonversi deposit menjadi penarikan', + 'convert_options_TransferWithdrawal' => 'Mengkonversi transfer menjadi penarikan', + 'convert_options_TransferDeposit' => 'Mengkonversi transfer menjadi deposit', + 'convert_Withdrawal_to_deposit' => 'Mengkonversi penarikan ini ke deposit', + 'convert_Withdrawal_to_transfer' => 'Mengkonversi penarikan ini ke transfer', + 'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal', + 'convert_Deposit_to_transfer' => 'Konversikan deposit ini ke transfer', + 'convert_Transfer_to_deposit' => 'Mengkonversi transfer ini ke deposit', + 'convert_Transfer_to_withdrawal' => 'Mengkonversi transfer ini ke penarikan', + 'convert_please_set_revenue_source' => 'Silakan pilih akun pendapatan dari mana uang itu berasal.', + 'convert_please_set_asset_destination' => 'Silakan pilih akun aset dimana uangnya akan digunakan.', + 'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.', + 'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.', + 'convert_explanation_withdrawal_deposit' => 'If you convert this withdrawal into a deposit, :amount will be deposited into :sourceName instead of taken from it.', + 'convert_explanation_withdrawal_transfer' => 'If you convert this withdrawal into a transfer, :amount will be transferred from :sourceName to a new asset account, instead of being paid to :destinationName.', + 'convert_explanation_deposit_withdrawal' => 'If you convert this deposit into a withdrawal, :amount will be removed from :destinationName instead of added to it.', + 'convert_explanation_deposit_transfer' => 'If you convert this deposit into a transfer, :amount will be transferred from an asset account of your choice into :destinationName.', + 'convert_explanation_transfer_withdrawal' => 'If you convert this transfer into a withdrawal, :amount will go from :sourceName to a new destination as an expense, instead of to :destinationName as a transfer.', + 'convert_explanation_transfer_deposit' => 'If you convert this transfer into a deposit, :amount will be deposited into account :destinationName instead of being transferred there.', + 'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal', + 'converted_to_Deposit' => 'The transaction has been converted to a deposit', + 'converted_to_Transfer' => 'The transaction has been converted to a transfer', + 'invalid_convert_selection' => 'The account you have selected is already used in this transaction or does not exist.', + + // create new stuff: + 'create_new_withdrawal' => 'Create new withdrawal', + 'create_new_deposit' => 'Create new deposit', + 'create_new_transfer' => 'Create new transfer', + 'create_new_asset' => 'Create new asset account', + 'create_new_expense' => 'Create new expense account', + 'create_new_revenue' => 'Create new revenue account', + 'create_new_piggy_bank' => 'Create new piggy bank', + 'create_new_bill' => 'Create new bill', + + // currencies: + 'create_currency' => 'Create a new currency', + 'store_currency' => 'Store new currency', + 'update_currency' => 'Update currency', + 'new_default_currency' => ':name is now the default currency.', + 'cannot_delete_currency' => 'Cannot delete :name because it is still in use.', + 'deleted_currency' => 'Currency :name deleted', + 'created_currency' => 'Currency :name created', + 'updated_currency' => 'Currency :name updated', + 'ask_site_owner' => 'Please ask :owner to add, remove or edit currencies.', + 'currencies_intro' => 'Firefly III supports various currencies which you can set and enable here.', + 'make_default_currency' => 'make default', + 'default_currency' => 'default', + + // forms: + 'mandatoryFields' => 'Mandatory fields', + 'optionalFields' => 'Optional fields', + 'options' => 'Options', + + // budgets: + 'create_new_budget' => 'Create a new budget', + 'store_new_budget' => 'Store new budget', + 'stored_new_budget' => 'Stored new budget ":name"', + 'available_between' => 'Available between :start and :end', + 'transactionsWithoutBudget' => 'Expenses without budget', + 'transactions_no_budget' => 'Expenses without budget between :start and :end', + 'spent_between' => 'Spent between :start and :end', + 'createBudget' => 'New budget', + 'inactiveBudgets' => 'Inactive budgets', + 'without_budget_between' => 'Transactions without a budget between :start and :end', + 'delete_budget' => 'Delete budget ":name"', + 'deleted_budget' => 'Deleted budget ":name"', + 'edit_budget' => 'Edit budget ":name"', + 'updated_budget' => 'Updated budget ":name"', + 'update_amount' => 'Update amount', + 'update_budget' => 'Perbarui anggaran', + 'update_budget_amount_range' => 'Update (expected) jumlah yang tersedia antara: start and: end', + 'budget_period_navigator' => 'Navigator periode', + 'info_on_available_amount' => 'Apa yang telah tersedia?', + 'available_amount_indication' => 'Gunakan jumlah ini untuk mendapatkan indikasi berapa total anggaran Anda.', + 'suggested' => 'Disarankan', + 'average_between' => 'Rata-rata antara: start dan: end', + + // bills: + 'matching_on' => 'Cocok di', + 'between_amounts' => 'antara: rendah dan: tinggi.', + 'repeats' => 'Berulang', + 'connected_journals' => 'Transaksi yang terhubung', + 'auto_match_on' => 'Secara otomatis dicocokkan dengan Firefly', + 'auto_match_off' => 'Tidak secara otomatis dicocokkan dengan Firefly', + 'next_expected_match' => 'Pertandingan yang diharapkan berikutnya', + 'delete_bill' => 'Hapus tagihan ": nama"', + 'deleted_bill' => 'Tagihan yang dihapus ": nama"', + 'edit_bill' => 'Edit tagihan ": nama"', + 'more' => 'Lebih', + 'rescan_old' => 'Rescan transaksi lama', + 'update_bill' => 'Perbarui tagihan', + 'updated_bill' => 'Diperbarui tagihan ": nama"', + 'store_new_bill' => 'Simpan tagihan baru', + 'stored_new_bill' => 'Stored tagihan baru ": nama"', + 'cannot_scan_inactive_bill' => 'Tagihan tidak aktif tidak dapat dipindai.', + 'rescanned_bill' => 'Rescanned semuanya.', + 'average_bill_amount_year' => 'Jumlah tagihan rata-rata (: tahun)', + 'average_bill_amount_overall' => 'Jumlah tagihan rata-rata (keseluruhan)', + 'not_or_not_yet' => 'Belum)', + 'not_expected_period' => 'Tidak diharapkan periode ini', + 'bill_is_active' => 'Tagihan aktif', + 'bill_expected_between' => 'Diharapkan antara: start dan: end', + 'bill_will_automatch' => 'Tagihan akan secara otomatis terhubung ke transaksi yang sesuai', + 'skips_over' => 'melompati', + + // accounts: + 'details_for_asset' => 'Rincian akun aset ": nama"', + 'details_for_expense' => 'Rincian untuk akun biaya ": nama"', + 'details_for_revenue' => 'Rincian untuk akun pendapatan ": nama"', + 'details_for_cash' => 'Rincian untuk rekening kas ": nama"', + 'store_new_asset_account' => 'Simpan akun aset baru', + 'store_new_expense_account' => 'Simpan akun pengeluaran baru', + 'store_new_revenue_account' => 'Simpan akun pendapatan baru', + 'edit_asset_account' => 'Edit akun aset ": nama"', + 'edit_expense_account' => 'Edit akun biaya ": nama"', + 'edit_revenue_account' => 'Edit akun pendapatan ": nama"', + 'delete_asset_account' => 'Hapus akun aset ": nama"', + 'delete_expense_account' => 'Hapus akun pengeluaran ": nama"', + 'delete_revenue_account' => 'Hapus akun pendapatan ": nama"', + 'asset_deleted' => 'Berhasil menghapus akun aset ": nama"', + 'expense_deleted' => 'Akun pengeluaran yang berhasil dihapus ": nama"', + 'revenue_deleted' => 'Berhasil menghapus akun pendapatan ": nama"', + 'update_asset_account' => 'Perbarui akun aset', + 'update_expense_account' => 'Update expense account', + 'update_revenue_account' => 'Update revenue account', + 'make_new_asset_account' => 'Create a new asset account', + 'make_new_expense_account' => 'Create a new expense account', + 'make_new_revenue_account' => 'Create a new revenue account', + 'asset_accounts' => 'Asset accounts', + 'expense_accounts' => 'Expense accounts', + 'revenue_accounts' => 'Revenue accounts', + 'cash_accounts' => 'Cash accounts', + 'Cash account' => 'Cash account', + 'reconcile_account' => 'Reconcile account ":account"', + 'delete_reconciliation' => 'Delete reconciliation', + 'update_reconciliation' => 'Update reconciliation', + 'amount_cannot_be_zero' => 'The amount cannot be zero', + 'end_of_reconcile_period' => 'End of reconcile period: :period', + 'start_of_reconcile_period' => 'Start of reconcile period: :period', + 'start_balance' => 'Start balance', + 'end_balance' => 'End balance', + 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', + 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', + 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', + 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', + 'update_selection' => 'Update selection', + 'store_reconcile' => 'Store reconciliation', + 'reconciliation_transaction' => 'Reconciliation transaction', + 'Reconciliation' => 'Reconciliation', + 'reconciliation' => 'Reconciliation', + 'reconcile_options' => 'Reconciliation options', + 'reconcile_range' => 'Reconciliation range', + 'start_reconcile' => 'Start reconciling', + 'cash' => 'cash', + 'account_type' => 'Account type', + 'save_transactions_by_moving' => 'Save these transaction(s) by moving them to another account:', + 'stored_new_account' => 'New account ":name" stored!', + 'updated_account' => 'Updated account ":name"', + 'credit_card_options' => 'Credit card options', + 'no_transactions_account' => 'There are no transactions (in this period) for asset account ":name".', + 'no_data_for_chart' => 'There is not enough information (yet) to generate this chart.', + 'select_more_than_one_account' => 'Please select more than one account', + 'select_more_than_one_category' => 'Please select more than one category', + 'select_more_than_one_budget' => 'Please select more than one budget', + 'select_more_than_one_tag' => 'Please select more than one tag', + 'account_default_currency' => 'If you select another currency, new transactions from this account will have this currency pre-selected.', + 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', + 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', + 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', + 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', + 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', + 'reconcile_go_back' => 'You can always edit or delete a correction later.', + 'must_be_asset_account' => 'Anda hanya bisa mendamaikan akun aset', + 'reconciliation_stored' => 'Rekonsiliasi disimpan', + 'reconcilliation_transaction_title' => 'Rekonsiliasi (: dari ke: ke)', + 'reconcile_this_account' => 'Rekonsiliasi akun ini', + 'confirm_reconciliation' => 'Konfirmasikan rekonsiliasi', + 'submitted_start_balance' => 'Saldo awal yang dikirim', + 'selected_transactions' => 'Transaksi yang dipilih (: count)', + 'already_cleared_transactions' => 'Sudah dibersihkan transaksi (: count)', + 'submitted_end_balance' => 'Saldo akhir yang dikirim', + + // categories: + 'new_category' => 'Kategori baru', + 'create_new_category' => 'Buat kategori baru', + 'without_category' => 'Tanpa kategori', + 'update_category' => 'Perbarui kategori', + 'updated_category' => 'Kategori yang Diperbarui ": nama"', + 'categories' => 'Kategori', + 'edit_category' => 'Edit kategori ": nama"', + 'no_category' => '(tidak ada kategori)', + 'category' => 'Kategori', + 'delete_category' => 'Hapus kategori ": nama"', + 'deleted_category' => 'Kategori yang dihapus ": nama"', + 'store_category' => 'Simpan kategori baru', + 'stored_category' => 'Stored new category ": nama"', + 'without_category_between' => 'Tanpa kategori antara: start dan: end', + + // transactions: + 'update_withdrawal' => 'Perbarui penarikan', + 'update_deposit' => 'Perbarui setoran', + 'update_transfer' => 'Perbarui transfer', + 'updated_withdrawal' => 'Penarikan yang telah diupdate ": deskripsi"', + 'updated_deposit' => 'Deposit Diperbarui ": deskripsi"', + 'updated_transfer' => 'Transfer yang diperbarui ": deskripsi"', + 'delete_withdrawal' => 'Hapus penarikan ": deskripsi"', + 'delete_deposit' => 'Hapus deposit ": deskripsi"', + 'delete_transfer' => 'Hapus transfer ": deskripsi"', + 'deleted_withdrawal' => 'Penarikan yang berhasil dihapus ": deskripsi"', + 'deleted_deposit' => 'Berhasil menghapus deposit ": deskripsi"', + 'deleted_transfer' => 'Berhasil menghapus transfer ": deskripsi"', + 'stored_journal' => 'Berhasil membuat transaksi baru ": deskripsi"', + 'select_transactions' => 'Pilih transaksi', + 'rule_group_select_transactions' => 'Terapkan ": judul" untuk transaksi', + 'rule_select_transactions' => 'Terapkan ": judul" untuk transaksi', + 'stop_selection' => 'Berhentilah memilih transaksi', + 'reconcile_selected' => 'Mendamaikan', + 'mass_delete_journals' => 'Hapus sejumlah transaksi', + 'mass_edit_journals' => 'Edit sejumlah transaksi', + 'cannot_edit_other_fields' => 'Anda tidak bisa menyunting bidang lain dari yang lain di sini, karena tidak ada ruang untuk ditunjukkan kepada mereka. Ikuti tautan dan edit dengan satu per satu, jika Anda perlu mengedit bidang ini.', + 'no_budget' => '(no budget)', + 'no_budget_squared' => '(tidak ada anggaran)', + 'perm-delete-many' => 'Menghapus banyak barang dalam satu go bisa sangat mengganggu. Harap berhati-hati.', + 'mass_deleted_transactions_success' => 'Dihapus: jumlah transaksi.', + 'mass_edited_transactions_success' => 'Diperbarui: jumlah transaksi', + 'opt_group_no_account_type' => '(tidak ada jenis akun)', + 'opt_group_defaultAsset' => 'Akun aset standar', + 'opt_group_savingAsset' => 'Savings accounts', + 'opt_group_sharedAsset' => 'Shared asset accounts', + 'opt_group_ccAsset' => 'Credit cards', + + // new user: + 'welcome' => 'Welcome to Firefly!', + 'submit' => 'Submit', + 'getting_started' => 'Getting started', + 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', + 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', + 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'stored_new_accounts_new_user' => 'Yay! Your new accounts have been stored.', + + // home page: + 'yourAccounts' => 'Your accounts', + 'budgetsAndSpending' => 'Budgets and spending', + 'savings' => 'Savings', + 'newWithdrawal' => 'New expense', + 'newDeposit' => 'New deposit', + 'newTransfer' => 'New transfer', + 'bills_to_pay' => 'Bills to pay', + 'per_day' => 'Per day', + 'left_to_spend_per_day' => 'Left to spend per day', + 'bills_paid' => 'Bills paid', + + // menu and titles, should be recycled as often as possible: + 'currency' => 'Currency', + 'preferences' => 'Preferences', + 'logout' => 'Logout', + 'toggleNavigation' => 'Toggle navigation', + 'searchPlaceholder' => 'Search...', + 'version' => 'Version', + 'dashboard' => 'Dashboard', + 'currencies' => 'Currencies', + 'accounts' => 'Accounts', + 'Asset account' => 'Asset account', + 'Default account' => 'Asset account', + 'Expense account' => 'Expense account', + 'Revenue account' => 'Revenue account', + 'Initial balance account' => 'Initial balance account', + 'budgets' => 'Budgets', + 'tags' => 'Tags', + 'reports' => 'Reports', + 'transactions' => 'Transactions', + 'expenses' => 'Expenses', + 'income' => 'Revenue / income', + 'transfers' => 'Transfers', + 'moneyManagement' => 'Money management', + 'piggyBanks' => 'Piggy banks', + 'bills' => 'Bills', + 'withdrawal' => 'Withdrawal', + 'opening_balance' => 'Opening balance', + 'deposit' => 'Deposit', + 'account' => 'Account', + 'transfer' => 'Transfer', + 'Withdrawal' => 'Withdrawal', + 'Deposit' => 'Deposit', + 'Transfer' => 'Transfer', + 'bill' => 'Tagihan', + 'yes' => 'Iya', + 'no' => 'Tidak', + 'amount' => 'Jumlah', + 'overview' => 'Ikhtisar', + 'saveOnAccount' => 'Simpan di rekening', + 'unknown' => 'Tidak diketahui', + 'daily' => 'Harian', + 'monthly' => 'Bulanan', + 'profile' => 'Profil', + 'errors' => 'Kesalahan', + + // reports: + 'report_default' => 'Laporan keuangan standar antara: start dan: end', + 'report_audit' => 'Ikhtisar riwayat transaksi antara: start dan: end', + 'report_category' => 'Kategori laporan antara: start dan: end', + 'report_account' => 'Laporan biaya / pendapatan antara: start dan: end', + 'report_budget' => 'Laporan anggaran antara: start dan: end', + 'report_tag' => 'Tag laporan antara: start dan: end', + 'quick_link_reports' => 'Tautan langsung', + 'quick_link_default_report' => 'Laporan keuangan standar', + 'quick_link_audit_report' => 'Ikhtisar sejarah transaksi', + 'report_this_month_quick' => 'Bulan ini, semua akun', + 'report_this_year_quick' => 'Tahun berjalan, semua akun', + 'report_this_fiscal_year_quick' => 'Tahun fiskal berjalan, semua akun', + 'report_all_time_quick' => 'Semua waktu, semua akun', + 'reports_can_bookmark' => 'Ingat bahwa laporan bisa di bookmark.', + 'incomeVsExpenses' => 'Penghasilan vs beban', + 'accountBalances' => 'Saldo akun', + 'balanceStart' => 'Saldo awal periode', + 'balanceEnd' => 'Saldo akhir periode', + 'splitByAccount' => 'Split by account', + 'coveredWithTags' => 'Covered with tags', + 'leftUnbalanced' => 'Left unbalanced', + 'leftInBudget' => 'Left in budget', + 'sumOfSums' => 'Sum of sums', + 'noCategory' => '(no category)', + 'notCharged' => 'Not charged (yet)', + 'inactive' => 'Inactive', + 'active' => 'Active', + 'difference' => 'Difference', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', + 'topX' => 'top :number', + 'show_full_list' => 'Show entire list', + 'show_only_top' => 'Show only top :number', + 'report_type' => 'Report type', + 'report_type_default' => 'Default financial report', + 'report_type_audit' => 'Transaction history overview (audit)', + 'report_type_category' => 'Category report', + 'report_type_budget' => 'Budget report', + 'report_type_tag' => 'Tag report', + 'report_type_account' => 'Expense/revenue account report', + 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_included_accounts' => 'Included accounts', + 'report_date_range' => 'Date range', + 'report_preset_ranges' => 'Pre-set ranges', + 'shared' => 'Shared', + 'fiscal_year' => 'Fiscal year', + 'income_entry' => 'Income from account ":name" between :start and :end', + 'expense_entry' => 'Expenses to account ":name" between :start and :end', + 'category_entry' => 'Expenses in category ":name" between :start and :end', + 'budget_spent_amount' => 'Expenses in budget ":budget" between :start and :end', + 'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end', + 'no_audit_activity' => 'No activity was recorded on account :account_name between :start and :end.', + 'audit_end_balance' => 'Account balance of :account_name at the end of :end was: :balance', + 'reports_extra_options' => 'Extra options', + 'report_has_no_extra_options' => 'This report has no extra options', + 'reports_submit' => 'View report', + 'end_after_start_date' => 'End date of report must be after start date.', + 'select_category' => 'Select category(ies)', + 'select_budget' => 'Select budget(s).', + 'select_tag' => 'Select tag(s).', + 'income_per_category' => 'Income per category', + 'expense_per_category' => 'Expense per category', + 'expense_per_budget' => 'Expense per budget', + 'income_per_account' => 'Income per account', + 'expense_per_account' => 'Expense per account', + 'expense_per_tag' => 'Expense per tag', + 'income_per_tag' => 'Income per tag', + 'include_expense_not_in_budget' => 'Included expenses not in the selected budget(s)', + 'include_expense_not_in_account' => 'Included expenses not in the selected account(s)', + 'include_expense_not_in_category' => 'Included expenses not in the selected category(ies)', + 'include_income_not_in_category' => 'Included income not in the selected category(ies)', + 'include_income_not_in_account' => 'Included income not in the selected account(s)', + 'include_income_not_in_tags' => 'Included income not in the selected tag(s)', + 'include_expense_not_in_tags' => 'Included expenses not in the selected tag(s)', + 'everything_else' => 'Everything else', + 'income_and_expenses' => 'Income and expenses', + 'spent_average' => 'Spent (average)', + 'income_average' => 'Income (average)', + 'transaction_count' => 'Transaction count', + 'average_spending_per_account' => 'Average spending per account', + 'average_income_per_account' => 'Average income per account', + 'total' => 'Total', + 'description' => 'Description', + 'sum_of_period' => 'Sum of period', + 'average_in_period' => 'Average in period', + 'account_role_defaultAsset' => 'Default asset account', + 'account_role_sharedAsset' => 'Shared asset account', + 'account_role_savingAsset' => 'Savings account', + 'account_role_ccAsset' => 'Credit card', + 'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.', + 'category_chart_click' => 'Please click on a category name in the table above to see a chart.', + 'in_out_accounts' => 'Earned and spent per combination', + 'in_out_per_category' => 'Earned and spent per category', + 'out_per_budget' => 'Spent per budget', + 'select_expense_revenue' => 'Select expense/revenue account', + + // charts: + 'chart' => 'Chart', + 'month' => 'Month', + 'budget' => 'Budget', + 'spent' => 'Spent', + 'spent_in_budget' => 'Spent in budget', + 'left_to_spend' => 'Left to spend', + 'earned' => 'Earned', + 'overspent' => 'Overspent', + 'left' => 'Left', + 'max-amount' => 'Maximum amount', + 'min-amount' => 'Minumum amount', + 'journal-amount' => 'Current bill entry', + 'name' => 'Name', + 'date' => 'Date', + 'paid' => 'Paid', + 'unpaid' => 'Unpaid', + 'day' => 'Day', + 'budgeted' => 'Budgeted', + 'period' => 'Period', + 'balance' => 'Balance', + 'sum' => 'Sum', + 'average' => 'Average', + 'balanceFor' => 'Balance for :name', + + // piggy banks: + 'add_money_to_piggy' => 'Add money to piggy bank ":name"', + 'piggy_bank' => 'Piggy bank', + 'new_piggy_bank' => 'New piggy bank', + 'store_piggy_bank' => 'Store new piggy bank', + 'stored_piggy_bank' => 'Store new piggy bank ":name"', + 'account_status' => 'Account status', + 'left_for_piggy_banks' => 'Left for piggy banks', + 'sum_of_piggy_banks' => 'Sum of piggy banks', + 'saved_so_far' => 'Saved so far', + 'left_to_save' => 'Left to save', + 'suggested_amount' => 'Suggested monthly amount to save', + 'add_money_to_piggy_title' => 'Add money to piggy bank ":name"', + 'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"', + 'add' => 'Add', + 'no_money_for_piggy' => 'You have no money to put in this piggy bank.', + + 'remove' => 'Remove', + 'max_amount_add' => 'The maximum amount you can add is', + 'max_amount_remove' => 'The maximum amount you can remove is', + 'update_piggy_button' => 'Update piggy bank', + 'update_piggy_title' => 'Update piggy bank ":name"', + 'updated_piggy_bank' => 'Updated piggy bank ":name"', + 'details' => 'Details', + 'events' => 'Events', + 'target_amount' => 'Target amount', + 'start_date' => 'Start date', + 'target_date' => 'Target date', + 'no_target_date' => 'No target date', + 'table' => 'Table', + 'delete_piggy_bank' => 'Delete piggy bank ":name"', + 'cannot_add_amount_piggy' => 'Could not add :amount to ":name".', + 'cannot_remove_from_piggy' => 'Could not remove :amount from ":name".', + 'deleted_piggy_bank' => 'Deleted piggy bank ":name"', + 'added_amount_to_piggy' => 'Added :amount to ":name"', + 'removed_amount_from_piggy' => 'Removed :amount from ":name"', + + // tags + 'delete_tag' => 'Delete tag ":tag"', + 'deleted_tag' => 'Deleted tag ":tag"', + 'new_tag' => 'Make new tag', + 'edit_tag' => 'Edit tag ":tag"', + 'updated_tag' => 'Updated tag ":tag"', + 'created_tag' => 'Tag ":tag" has been created!', + + 'transaction_journal_information' => 'Transaction information', + 'transaction_journal_meta' => 'Meta information', + 'total_amount' => 'Total amount', + 'number_of_decimals' => 'Number of decimals', + + // administration + 'administration' => 'Administration', + 'user_administration' => 'User administration', + 'list_all_users' => 'All users', + 'all_users' => 'All users', + 'instance_configuration' => 'Configuration', + 'firefly_instance_configuration' => 'Configuration options for Firefly III', + 'setting_single_user_mode' => 'Single user mode', + 'setting_single_user_mode_explain' => 'By default, Firefly III only accepts one (1) registration: you. This is a security measure, preventing others from using your instance unless you allow them to. Future registrations are blocked. When you uncheck this box, others can use your instance as wel, assuming they can reach it (when it is connected to the internet).', + 'store_configuration' => 'Store configuration', + 'single_user_administration' => 'User administration for :email', + 'edit_user' => 'Edit user :email', + 'hidden_fields_preferences' => 'Not all fields are visible right now. You must enable them in your settings.', + 'user_data_information' => 'User data', + 'user_information' => 'User information', + 'total_size' => 'total size', + 'budget_or_budgets' => 'budget(s)', + 'budgets_with_limits' => 'budget(s) with configured amount', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', + 'tag_or_tags' => 'tag(s)', + 'configuration_updated' => 'The configuration has been updated', + 'setting_is_demo_site' => 'Demo site', + 'setting_is_demo_site_explain' => 'If you check this box, this installation will behave as if it is the demo site, which can have weird side effects.', + 'block_code_bounced' => 'Email message(s) bounced', + 'block_code_expired' => 'Demo account expired', + 'no_block_code' => 'No reason for block or user not blocked', + 'block_code_email_changed' => 'User has not yet confirmed new email address', + 'admin_update_email' => 'Contrary to the profile page, the user will NOT be notified their email address has changed!', + 'update_user' => 'Update user', + 'updated_user' => 'User data has been changed.', + 'delete_user' => 'Delete user :email', + 'user_deleted' => 'The user has been deleted', + 'send_test_email' => 'Send test email message', + 'send_test_email_text' => 'To see if your installation is capable of sending email, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', + 'send_message' => 'Send message', + 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + + // links + 'journal_link_configuration' => 'Transaction links configuration', + 'create_new_link_type' => 'Create new link type', + 'store_new_link_type' => 'Store new link type', + 'update_link_type' => 'Update link type', + 'edit_link_type' => 'Edit link type ":name"', + 'updated_link_type' => 'Updated link type ":name"', + 'delete_link_type' => 'Delete link type ":name"', + 'deleted_link_type' => 'Deleted link type ":name"', + 'stored_new_link_type' => 'Store new link type ":name"', + 'cannot_edit_link_type' => 'Cannot edit link type ":name"', + 'link_type_help_name' => 'Ie. "Duplicates"', + 'link_type_help_inward' => 'Ie. "duplicates"', + 'link_type_help_outward' => 'Ie. "is duplicated by"', + 'save_connections_by_moving' => 'Save the link between these transaction(s) by moving them to another link type:', + 'do_not_save_connection' => '(do not save connection)', + 'link_transaction' => 'Link transaction', + 'link_to_other_transaction' => 'Link this transaction to another transaction', + 'select_transaction_to_link' => 'Select a transaction to link this transaction to', + 'this_transaction' => 'This transaction', + 'transaction' => 'Transaction', + 'comments' => 'Comments', + 'to_link_not_found' => 'If the transaction you want to link to is not listed, simply enter its ID.', + 'invalid_link_selection' => 'Cannot link these transactions', + 'journals_linked' => 'Transactions are linked.', + 'journals_error_linked' => 'These transactions are already linked.', + 'journal_links' => 'Transaction links', + 'this_withdrawal' => 'This withdrawal', + 'this_deposit' => 'This deposit', + 'this_transfer' => 'This transfer', + 'overview_for_link' => 'Overview for link type ":name"', + 'source_transaction' => 'Source transaction', + 'link_description' => 'Link description', + 'destination_transaction' => 'Destination transaction', + 'delete_journal_link' => 'Delete the link between :source and :destination', + 'deleted_link' => 'Deleted link', + + // link translations: + 'relates to_inward' => 'relates to', + 'is (partially) refunded by_inward' => 'is (partially) refunded by', + 'is (partially) paid for by_inward' => 'is (partially) paid for by', + 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', + 'relates to_outward' => 'relates to', + '(partially) refunds_outward' => '(partially) refunds', + '(partially) pays for_outward' => '(partially) pays for', + '(partially) reimburses_outward' => '(partially) reimburses', + + // split a transaction: + 'splits' => 'Splits', + 'add_another_split' => 'Add another split', + 'split-transactions' => 'Split transactions', + 'do_split' => 'Do a split', + 'split_this_withdrawal' => 'Split this withdrawal', + 'split_this_deposit' => 'Split this deposit', + 'split_this_transfer' => 'Split this transfer', + 'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.', + 'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.', + 'cannot_edit_reconciled' => 'You cannot edit transaction #:id with description ":description" because it has been marked as reconciled.', + 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'no_edit_multiple_left' => 'You have selected no valid transactions to edit.', + 'cannot_convert_split_journal' => 'Cannot convert a split transaction', + + // import bread crumbs and titles: + 'import' => 'Import', + 'import_data' => 'Import data', + 'import_general_index_file' => 'Import a file', + 'import_from_bunq' => 'Import from bunq', + 'import_using_spectre' => 'Import using Spectre', + 'import_using_plaid' => 'Import using Plaid', + 'import_config_bread_crumb' => 'Set up your import', + + // import index page: + 'import_index_title' => 'Import data into Firefly III', + 'import_index_sub_title' => 'Index', + 'import_general_index_intro' => 'Welcome to Firefly\'s import routine. There are a few ways of importing data into Firefly III, displayed here as buttons.', + + // sandstorm.io errors and messages: + 'sandstorm_not_available' => 'This function is not available when you are using Firefly III within a Sandstorm.io environment.', + + // empty lists? no objects? instructions: + 'no_accounts_title_asset' => 'Let\'s create an asset account!', + 'no_accounts_intro_asset' => 'You have no asset accounts yet. Asset accounts are your main accounts: your checking account, savings account, shared account or even your credit card.', + 'no_accounts_imperative_asset' => 'To start using Firefly III you must create at least one asset account. Let\'s do so now:', + 'no_accounts_create_asset' => 'Create an asset account', + 'no_accounts_title_expense' => 'Let\'s create an expense account!', + 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', + 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_expense' => 'Create an expense account', + 'no_accounts_title_revenue' => 'Let\'s create a revenue account!', + 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', + 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_create_revenue' => 'Create a revenue account', + 'no_budgets_title_default' => 'Let\'s create a budget', + 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organise your expenses into logical groups, which you can give a soft-cap to limit your expenses.', + 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_create_default' => 'Create a budget', + 'no_categories_title_default' => 'Let\'s create a category!', + 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', + 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_categories_create_default' => 'Create a category', + 'no_tags_title_default' => 'Let\'s create a tag!', + 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', + 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_create_default' => 'Create a tag', + 'no_transactions_title_withdrawal' => 'Let\'s create an expense!', + 'no_transactions_intro_withdrawal' => 'You have no expenses yet. You should create expenses to start managing your finances.', + 'no_transactions_imperative_withdrawal' => 'Have you spent some money? Then you should write it down:', + 'no_transactions_create_withdrawal' => 'Create an expense', + 'no_transactions_title_deposit' => 'Let\'s create some income!', + 'no_transactions_intro_deposit' => 'You have no recorded income yet. You should create income entries to start managing your finances.', + 'no_transactions_imperative_deposit' => 'Have you received some money? Then you should write it down:', + 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_title_transfers' => 'Let\'s create a transfer!', + 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', + 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_create_transfers' => 'Create a transfer', + 'no_piggies_title_default' => 'Let\'s create a piggy bank!', + 'no_piggies_intro_default' => 'You have no piggy banks yet. You can create piggy banks to divide your savings and keep track of what you\'re saving up for.', + 'no_piggies_imperative_default' => 'Do you have things you\'re saving money for? Create a piggy bank and keep track:', + 'no_piggies_create_default' => 'Create a new piggy bank', + 'no_bills_title_default' => 'Let\'s create a bill!', + 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', + 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', + 'no_bills_create_default' => 'Create a bill', +]; diff --git a/resources/lang/id_ID/form.php b/resources/lang/id_ID/form.php new file mode 100644 index 0000000000..e12220a43c --- /dev/null +++ b/resources/lang/id_ID/form.php @@ -0,0 +1,208 @@ +. + */ +declare(strict_types=1); + +return [ + // new user: + 'bank_name' => 'Nama Bank', + 'bank_balance' => 'Keseimbangan', + 'savings_balance' => 'Saldo tabungan', + 'credit_card_limit' => 'Batas kartu kredit', + 'automatch' => 'Cocokkan secara otomatis', + 'skip' => 'Melewatkan', + 'name' => 'Nama', + 'active' => 'Aktif', + 'amount_min' => 'Jumlah minimal', + 'amount_max' => 'Jumlah maksimum', + 'match' => 'Cocok di', + 'repeat_freq' => 'Berulang', + 'journal_currency_id' => 'Mata uang', + 'currency_id' => 'Mata uang', + 'attachments' => 'Lampiran', + 'journal_amount' => 'Jumlah', + 'journal_source_account_name' => 'Akun pendapatan (sumber)', + 'journal_source_account_id' => 'Akun aset (sumber)', + 'BIC' => 'BIC', + 'verify_password' => 'Verifikasi keamanan kata sandi', + 'source_account' => 'Akun sumber', + 'destination_account' => 'Akun tujuan', + 'journal_destination_account_id' => 'Akun aset (tujuan)', + 'asset_destination_account' => 'Akun aset (tujuan)', + 'asset_source_account' => 'Akun aset (sumber)', + 'journal_description' => 'Deskripsi', + 'note' => 'Catatan', + 'split_journal' => 'Pisahkan transaksi ini', + 'split_journal_explanation' => 'Split transaksi ini di banyak bagian', + 'currency' => 'Mata uang', + 'account_id' => 'Akun aset', + 'budget_id' => 'Anggaran', + 'openingBalance' => 'Saldo awal', + 'tagMode' => 'Mode Tag', + 'tag_position' => 'Lokasi tag', + 'virtualBalance' => 'Saldo virtual', + 'targetamount' => 'Jumlah target', + 'accountRole' => 'Peran akun', + 'openingBalanceDate' => 'Membuka tanggal saldo', + 'ccType' => 'Rencana pembayaran kartu kredit', + 'ccMonthlyPaymentDate' => 'Credit card monthly payment date', + 'piggy_bank_id' => 'Celengan', + 'returnHere' => 'Kembali ke sini', + 'returnHereExplanation' => 'Setelah menyimpan, kembali ke sini untuk membuat yang lain.', + 'returnHereUpdateExplanation' => 'Setelah update, kembali ke sini.', + 'description' => 'Deskripsi', + 'expense_account' => 'Rekening pengeluaran', + 'revenue_account' => 'Akun pendapatan', + 'decimal_places' => 'Tempat desimal', + 'exchange_rate_instruction' => 'Mata uang asing', + 'source_amount' => 'Jumlah (sumber)', + 'destination_amount' => 'Jumlah (tujuan)', + 'native_amount' => 'Jumlah asli', + 'new_email_address' => 'Alamat email baru', + 'verification' => 'Verifikasi', + 'api_key' => 'Kunci API', + + 'source_account_asset' => 'Akun sumber (akun aset)', + 'destination_account_expense' => 'Akun tujuan (akun pengeluaran)', + 'destination_account_asset' => 'Akun tujuan (akun aset)', + 'source_account_revenue' => 'Akun sumber (akun pendapatan)', + 'type' => 'Mengetik', + 'convert_Withdrawal' => 'Mengkonversi penarikan', + 'convert_Deposit' => 'Convert deposit', + 'convert_Transfer' => 'Mengkonversi transfer', + + 'amount' => 'Jumlah', + 'date' => 'Tanggal', + 'interest_date' => 'Tanggal bunga', + 'book_date' => 'Tanggal buku', + 'process_date' => 'Tanggal pemrosesan', + 'category' => 'Kategori', + 'tags' => 'Tag', + 'deletePermanently' => 'Hapus secara permanen', + 'cancel' => 'Membatalkan', + 'targetdate' => 'Tanggal target', + 'startdate' => 'Mulai tanggal', + 'tag' => 'Menandai', + 'under' => 'Dibawah', + 'symbol' => 'Simbol', + 'code' => 'Kode', + 'iban' => 'IBAN', + 'accountNumber' => 'Nomor akun', + 'creditCardNumber' => 'Nomor kartu kredit', + 'has_headers' => 'Judul', + 'date_format' => 'Format tanggal', + 'specifix' => 'Perbaikan spesifik bank atau berkas', + 'attachments[]' => 'Lampiran', + 'store_new_withdrawal' => 'Simpan penarikan baru', + 'store_new_deposit' => 'Simpan deposit baru', + 'store_new_transfer' => 'Simpan transfer baru', + 'add_new_withdrawal' => 'Tambahkan penarikan baru', + 'add_new_deposit' => 'Tambahkan deposit baru', + 'add_new_transfer' => 'Tambahkan transfer baru', + 'title' => 'Judul', + 'notes' => 'Catatan', + 'filename' => 'Nama file', + 'mime' => 'Tipe mime', + 'size' => 'Ukuran', + 'trigger' => 'Pelatuk', + 'stop_processing' => 'Berhenti memproses', + 'start_date' => 'Mulai dari jangkauan', + 'end_date' => 'Akhir rentang', + 'export_start_range' => 'Mulai dari rentang ekspor', + 'export_end_range' => 'Akhir rentang ekspor', + 'export_format' => 'Format file', + 'include_attachments' => 'Sertakan lampiran yang diunggah', + 'include_old_uploads' => 'Sertakan data yang diimpor', + 'accounts' => 'Mengekspor transaksi dari akun ini', + 'delete_account' => 'Delete account ":name"', + 'delete_bill' => 'Hapus tagihan ": nama"', + 'delete_budget' => 'Hapus anggaran ": nama"', + 'delete_category' => 'Hapus kategori ": nama"', + 'delete_currency' => 'Hapus mata uang ": nama"', + 'delete_journal' => 'Hapus transaksi dengan deskripsi ": description"', + 'delete_attachment' => 'Hapus lampiran ": nama"', + 'delete_rule' => 'Hapus aturan ": judul"', + 'delete_rule_group' => 'Hapus grup aturan ": judul"', + 'delete_link_type' => 'Hapus jenis tautan ": nama"', + 'delete_user' => 'Hapus pengguna ": email"', + 'user_areYouSure' => 'Jika Anda menghapus pengguna ": email", semuanya akan hilang. Tidak ada undo, undelete atau apapun. Jika Anda menghapus diri Anda sendiri, Anda akan kehilangan akses ke Firefly III ini.', + 'attachment_areYouSure' => 'Yakin ingin menghapus lampiran yang bernama ": name"?', + 'account_areYouSure' => 'Yakin ingin menghapus akun dengan nama ": nama"?', + 'bill_areYouSure' => 'Yakin ingin menghapus tagihan yang bernama ": nama"?', + 'rule_areYouSure' => 'Yakin ingin menghapus aturan yang berjudul ": titel"?', + 'ruleGroup_areYouSure' => 'Yakin ingin menghapus grup aturan yang berjudul ": titel"?', + 'budget_areYouSure' => 'Yakin ingin menghapus anggaran dengan nama ": nama"?', + 'category_areYouSure' => 'Yakin ingin menghapus kategori yang bernama ": nama"?', + 'currency_areYouSure' => 'Yakin ingin menghapus mata uang dengan nama ": nama"?', + 'piggyBank_areYouSure' => 'Yakin ingin menghapus piggy bank yang bernama ": nama"?', + 'journal_areYouSure' => 'Yakin ingin menghapus transaksi yang dijelaskan ": description"?', + 'mass_journal_are_you_sure' => 'Yakin ingin menghapus transaksi ini?', + 'tag_areYouSure' => 'Yakin ingin menghapus tag ": tag"?', + 'journal_link_areYouSure' => 'Yakin ingin menghapus tautan antara :source and :destination?', + 'linkType_areYouSure' => 'Yakin ingin menghapus jenis tautan ": name" (": inward" / ": outward")?', + 'permDeleteWarning' => 'Menghapus barang dari Firely bersifat permanen dan tidak dapat dibatalkan.', + 'mass_make_selection' => 'Anda masih dapat mencegah agar item dihapus dengan menghapus kotak centang.', + 'delete_all_permanently' => 'Hapus yang dipilih secara permanen', + 'update_all_journals' => 'Perbarui transaksi ini', + 'also_delete_transactions' => 'Satu-satunya transaksi yang terhubung ke akun ini akan dihapus juga. | Semua: menghitung transaksi yang terhubung ke akun ini akan dihapus juga.', + 'also_delete_connections' => 'Satu-satunya transaksi yang terkait dengan jenis link ini akan kehilangan koneksi ini. Semua: menghitung transaksi yang terkait dengan jenis link ini akan kehilangan koneksi mereka.', + 'also_delete_rules' => 'Aturan satu-satunya yang terhubung ke grup aturan ini akan dihapus juga. Aturan All: count yang terhubung ke grup aturan ini akan dihapus juga.', + 'also_delete_piggyBanks' => 'Satu-satunya piggy bank yang terhubung ke akun ini akan dihapus juga. Semua: count piggy bank yang terhubung ke akun ini akan dihapus juga.', + 'bill_keep_transactions' => 'Satu-satunya transaksi yang terhubung dengan tagihan ini tidak akan dihapus. Semua: menghitung transaksi yang terhubung ke tagihan ini akan terhindar dari penghapusan.', + 'budget_keep_transactions' => 'Satu-satunya transaksi yang terhubung dengan anggaran ini tidak akan dihapus. Semua: menghitung transaksi yang terhubung dengan anggaran ini akan terhindar dari penghapusan.', + 'category_keep_transactions' => 'Satu-satunya transaksi yang terhubung ke kategori ini tidak akan dihapus. Semua: menghitung transaksi yang terhubung ke kategori ini akan terhindar dari penghapusan.', + 'tag_keep_transactions' => 'Satu-satunya transaksi yang terhubung ke tag ini tidak akan dihapus. Semua: menghitung transaksi yang terhubung ke tag ini akan terhindar dari penghapusan.', + + 'email' => 'Alamat email', + 'password' => 'Kata sandi', + 'password_confirmation' => 'Password (lagi)', + 'blocked' => 'Apakah diblokir?', + 'blocked_code' => 'Alasan untuk blok', + + // admin + 'domain' => 'Domain', + 'single_user_mode' => 'Nonaktifkan pendaftaran pengguna', + 'is_demo_site' => 'Apakah situs demo', + + // import + 'import_file' => 'Impor file', + 'configuration_file' => 'File konfigurasi', + 'import_file_type' => 'Impor jenis file', + 'csv_comma' => 'Koma (,)', + 'csv_semicolon' => 'Titik koma (;)', + 'csv_tab' => 'Tab (tak terlihat)', + 'csv_delimiter' => 'Pembatas lapangan CSV', + 'csv_import_account' => 'Akun impor default', + 'csv_config' => 'Konfigurasi impor CSV', + 'client_id' => 'ID klien', + 'service_secret' => 'Rahasia layanan', + 'app_secret' => 'Rahasia app', + 'public_key' => 'Kunci publik', + 'country_code' => 'Kode negara', + 'provider_code' => 'Bank atau penyedia data', + + 'due_date' => 'Batas tanggal terakhir', + 'payment_date' => 'Tanggal pembayaran', + 'invoice_date' => 'Tanggal faktur', + 'internal_reference' => 'Referensi internal', + 'inward' => 'Deskripsi dalam', + 'outward' => 'Deskripsi luar', + 'rule_group_id' => 'Kelompok aturan', +]; diff --git a/resources/lang/id_ID/import.php b/resources/lang/id_ID/import.php new file mode 100644 index 0000000000..4dbf8c82ae --- /dev/null +++ b/resources/lang/id_ID/import.php @@ -0,0 +1,160 @@ +. + */ +declare(strict_types=1); + +return [ + // status of import: + 'status_wait_title' => 'Tolong tunggu sebentar...', + 'status_wait_text' => 'Kotak ini akan hilang dalam sekejap.', + 'status_fatal_title' => 'Sebuah kesalahan fatal terjadi', + 'status_fatal_text' => 'Kesalahan fatal terjadi, dimana rutinitas impor tidak dapat dipulihkan. Silakan lihat penjelasannya di bawah ini.', + 'status_fatal_more' => 'Jika kesalahannya adalah time-out, impor akan berhenti setengah jalan. Untuk beberapa konfigurasi server, hanya server yang berhenti sementara impor terus berjalan di latar belakang. Untuk memverifikasi ini, periksa file log. Jika masalah berlanjut, pertimbangkan untuk mengimpor lebih dari baris perintah.', + 'status_ready_title' => 'Impor sudah siap untuk memulai', + 'status_ready_text' => 'Impor sudah siap dimulai. Semua konfigurasi yang perlu Anda lakukan sudah selesai. Silahkan download file konfigurasi. Ini akan membantu Anda dengan impor seandainya tidak berjalan seperti yang direncanakan. Untuk benar-benar menjalankan impor, Anda dapat menjalankan perintah berikut di konsol Anda, atau menjalankan impor berbasis web. Bergantung pada konfigurasi Anda, impor konsol akan memberi Anda lebih banyak umpan balik.', + 'status_ready_noconfig_text' => 'Impor sudah siap dimulai. Semua konfigurasi yang perlu Anda lakukan sudah selesai. Untuk benar-benar menjalankan impor, Anda dapat menjalankan perintah berikut di konsol Anda, atau menjalankan impor berbasis web. Bergantung pada konfigurasi Anda, impor konsol akan memberi Anda lebih banyak umpan balik.', + 'status_ready_config' => 'Download konfigurasi', + 'status_ready_start' => 'Mulai impor', + 'status_ready_share' => 'Harap pertimbangkan untuk mendownload konfigurasi Anda dan membagikannya di pusat konfigurasi impor . Ini akan memungkinkan pengguna Firefly III lainnya untuk mengimpor file mereka dengan lebih mudah.', + 'status_job_new' => 'The job is brand new.', + 'status_job_configuring' => 'The import is being configured.', + 'status_job_configured' => 'The import is configured.', + 'status_job_running' => 'Impor sedang berjalan.. mohon menunggu..', + 'status_job_error' => 'The job has generated an error.', + 'status_job_finished' => 'Impor telah selesai!', + 'status_running_title' => 'Impor sedang berjalan', + 'status_running_placeholder' => 'Silakan tunggu update...', + 'status_finished_title' => 'Rutin impor selesai', + 'status_finished_text' => 'Rutin impor telah mengimpor data Anda.', + 'status_errors_title' => 'Kesalahan selama impor', + 'status_errors_single' => 'Terjadi kesalahan saat mengimpor. Itu tidak tampak berakibat fatal.', + 'status_errors_multi' => 'Beberapa kesalahan terjadi saat impor. Ini tidak tampak berakibat fatal.', + 'status_bread_crumb' => 'Status impor', + 'status_sub_title' => 'Status impor', + 'config_sub_title' => 'Siapkan impor Anda', + 'status_finished_job' => 'Transaksi yang diimpor dapat ditemukan di tag : tag .', + 'import_with_key' => 'Impor dengan kunci \': kunci\'', + + // file: upload something: + 'file_upload_title' => 'Impor setup (1/4) - Upload file Anda', + 'file_upload_text' => 'Rutin ini akan membantu Anda mengimpor file dari bank Anda ke Firefly III. Silakan periksa halaman bantuan di pojok kanan atas.', + 'file_upload_fields' => 'Bidang', + 'file_upload_help' => 'Pilih file anda', + 'file_upload_config_help' => 'Jika sebelumnya Anda mengimpor data ke Firefly III, Anda mungkin memiliki file konfigurasi, yang akan menetapkan nilai konfigurasi untuk Anda. Untuk beberapa bank, pengguna lain dengan ramah memberikan berkas konfigurasi mereka', + 'file_upload_type_help' => 'Pilih jenis file yang akan anda upload', + 'file_upload_submit' => 'Unggah berkas', + + // file: upload types + 'import_file_type_csv' => 'CSV (nilai yang dipisahkan koma)', + + // file: initial config for CSV + 'csv_initial_title' => 'Penyiapan impor (2/4) - Penyiapan impor CSV dasar', + 'csv_initial_text' => 'Untuk dapat mengimpor file Anda dengan benar, mohon validasi pilihan di bawah ini.', + 'csv_initial_box' => 'Penyiapan impor CSV dasar', + 'csv_initial_box_title' => 'Opsi penyiapan impor CSV dasar', + 'csv_initial_header_help' => 'Centang kotak ini jika baris pertama file CSV Anda adalah judul kolom.', + 'csv_initial_date_help' => 'Format waktu tanggal di CSV Anda. Ikuti format seperti laman ini menunjukkan. Nilai default akan mengurai tanggal yang terlihat seperti ini:: dateExample.', + 'csv_initial_delimiter_help' => 'Pilih pembatas lapangan yang digunakan dalam file masukan Anda. Jika tidak yakin, koma adalah pilihan teraman.', + 'csv_initial_import_account_help' => 'Jika file CSV TIDAK berisi informasi tentang akun aset Anda, gunakan dropdown ini untuk memilih akun mana yang menjadi tempat transaksi di CSV.', + 'csv_initial_submit' => 'Lanjutkan dengan langkah 3/4', + + // file: new options: + 'file_apply_rules_title' => 'Terapkan aturan', + 'file_apply_rules_description' => 'Terapkan peraturan Anda Perhatikan bahwa ini memperlambat impor secara signifikan.', + 'file_match_bills_title' => 'Cocokkan tagihan', + 'file_match_bills_description' => 'Cocokkan tagihan Anda dengan penarikan yang baru dibuat. Perhatikan bahwa ini memperlambat impor secara signifikan.', + + // file: roles config + 'csv_roles_title' => 'Pengaturan impor (3/4) - Tentukan peran masing-masing kolom', + 'csv_roles_text' => 'Setiap kolom dalam file CSV Anda berisi data tertentu. Tolong tunjukkan jenis data yang harus diharapkan oleh importir. Pilihan untuk "memetakan" data berarti Anda akan menghubungkan setiap entri yang ditemukan di kolom ke nilai di database Anda. Kolom yang sering dipetakan adalah kolom yang berisi IBAN dari akun lawan. Itu bisa dengan mudah disesuaikan dengan keberadaan IBAN di database Anda.', + 'csv_roles_table' => 'Meja', + 'csv_roles_column_name' => 'Nama kolom', + 'csv_roles_column_example' => 'Kolom contoh data', + 'csv_roles_column_role' => 'Data kolom berarti', + 'csv_roles_do_map_value' => 'Peta nilai-nilai ini', + 'csv_roles_column' => 'Kolom', + 'csv_roles_no_example_data' => 'Tidak ada data contoh yang tersedia', + 'csv_roles_submit' => 'Lanjutkan dengan langkah 4/4', + 'csv_roles_warning' => 'Paling tidak, tandai satu kolom sebagai kolom jumlah. Sebaiknya pilih juga kolom untuk deskripsi, tanggal dan akun lawan.', + + // file: map data + 'file_map_title' => 'Pengaturan impor (4/4) - Sambungkan data impor ke data Firefly III', + 'file_map_text' => 'Pada tabel berikut, nilai kiri menunjukkan informasi yang Anda temukan di file yang Anda upload. Adalah tugas Anda untuk memetakan nilai ini, jika mungkin, ke nilai yang sudah ada di database Anda. Firefly akan menempel pada pemetaan ini. Jika tidak ada nilai untuk dipetakan, atau Anda tidak ingin memetakan nilai spesifiknya, pilih yang tidak ada.', + 'file_map_field_value' => 'Nilai lapangan', + 'file_map_field_mapped_to' => 'Dipetakan ke', + 'map_do_not_map' => '(jangan memetakan)', + 'file_map_submit' => 'Mulai impor', + + // map things. + 'column__ignore' => '(abaikan kolom ini)', + 'column_account-iban' => 'Akun aset (IBAN)', + 'column_account-id' => 'ID akun aset (cocok dengan Firefly)', + 'column_account-name' => 'Akun aset (nama)', + 'column_amount' => 'Jumlah', + 'column_amount_debit' => 'Jumlah (kolom debit)', + 'column_amount_credit' => 'Jumlah (kolom kredit)', + 'column_amount-comma-separated' => 'Jumlah (koma sebagai pemisah desimal)', + 'column_bill-id' => 'Bill ID (pencocokan Firefly)', + 'column_bill-name' => 'Nama tagihan', + 'column_budget-id' => 'ID Anggaran (cocok dengan Firefly)', + 'column_budget-name' => 'Nama anggaran', + 'column_category-id' => 'ID Kategori (cocok dengan Firefly)', + 'column_category-name' => 'Nama Kategori', + 'column_currency-code' => 'Kode mata uang (ISO 4217)', + 'column_currency-id' => 'ID mata uang (cocok dengan Firefly)', + 'column_currency-name' => 'Nama mata uang (cocok dengan Firefly)', + 'column_currency-symbol' => 'Simbol mata uang (cocok dengan Firefly)', + 'column_date-interest' => 'Tanggal perhitungan bunga', + 'column_date-book' => 'Tanggal pemesanan transaksi', + 'column_date-process' => 'Tanggal proses transaksi', + 'column_date-transaction' => 'Tanggal', + 'column_description' => 'Deskripsi', + 'column_opposing-iban' => 'Akun lawan (IBAN)', + 'column_opposing-id' => 'Menentang ID akun (cocok dengan Firefly)', + 'column_external-id' => 'ID eksternal', + 'column_opposing-name' => 'Akun lawan (nama)', + 'column_rabo-debit-credit' => 'Indikator debit / kredit khusus Rabobank', + 'column_ing-debit-credit' => 'Indikator debit / kredit ING yang spesifik', + 'column_sepa-ct-id' => 'ID Transfer Kredit SEPA end-to-end', + 'column_sepa-ct-op' => 'Akun lawan kredit SEPA yang berlawanan', + 'column_sepa-db' => 'SEPA Direct Debit', + 'column_tags-comma' => 'Tag (dipisahkan koma)', + 'column_tags-space' => 'Tag (spasi terpisah)', + 'column_account-number' => 'Akun aset (nomor rekening)', + 'column_opposing-number' => 'Akun lawan (nomor rekening)', + 'column_note' => 'Catatan (s)', + + // bunq + 'bunq_prerequisites_title' => 'Prasyarat untuk impor dari bunq', + 'bunq_prerequisites_text' => 'Untuk mengimpor dari bunq, Anda perlu mendapatkan kunci API. Anda bisa melakukan ini melalui aplikasi.', + + // Spectre: + 'spectre_title' => 'Impor menggunakan momok', + 'spectre_prerequisites_title' => 'Prasyarat untuk impor menggunakan momok', + 'spectre_prerequisites_text' => 'Untuk mengimpor data menggunakan API momok, Anda perlu membuktikan beberapa rahasia. Mereka dapat ditemukan di halaman rahasia .', + 'spectre_enter_pub_key' => 'Impor hanya akan berfungsi saat Anda memasukkan kunci publik ini di halaman keamanan Anda.', + 'spectre_select_country_title' => 'Pilih negara', + 'spectre_select_country_text' => 'Firefly III memiliki banyak pilihan bank dan lokasi dari mana Spectre dapat mendownload data transaksional. Bank-bank ini diurutkan berdasarkan negara. Tolong jangan sampai ada "Negara Palsu" saat Anda ingin menguji sesuatu. Jika Anda ingin mengimpor dari alat keuangan lainnya, mohon gunakan negara imajiner yang disebut "aplikasi keuangan lainnya". Secara default, momok hanya memungkinkan Anda mendownload data dari bank palsu. Pastikan status Anda "Langsung" di Dasbor jika ingin men-download dari bank sebenarnya.', + 'spectre_select_provider_title' => 'Pilih bank', + 'spectre_select_provider_text' => 'Momok mendukung bank atau layanan keuangan berikut yang dikelompokkan di bawah : country . Silakan pilih yang ingin Anda impor.', + 'spectre_input_fields_title' => 'Masukkan bidang wajib', + 'spectre_input_fields_text' => 'Bidang berikut diamanatkan oleh ": provider" (dari: negara).', + 'spectre_instructions_english' => 'Petunjuk ini diberikan oleh momok untuk convencience Anda. Mereka berbahasa Inggris:', +]; diff --git a/resources/lang/id_ID/intro.php b/resources/lang/id_ID/intro.php new file mode 100644 index 0000000000..3940aa8d52 --- /dev/null +++ b/resources/lang/id_ID/intro.php @@ -0,0 +1,133 @@ +. + */ +declare(strict_types=1); + +return [ + // index + 'index_intro' => 'Selamat datang di halaman indeks Firefly III. Mohon luangkan waktu untuk menelusuri pengantar ini melihat bagaimana Firefly III bekerja.', + 'index_accounts-chart' => 'Bagan ini menunjukkan saldo akun aset anda saat ini, Anda dapat memilih akun yang terlihat di sini dalam preferensi anda.', + 'index_box_out_holder' => 'Kotak kecil dan kotak di samping kotak ini akan memberi anda gambaran singkat tentang situasi keuangan anda.', + 'index_help' => 'Jika anda memerlukan bantuan dengan halaman atau formulir, tekan tombol ini.', + 'index_outro' => 'Sebagian besar halaman Firefly III akan dimulai dengan petunjuk kecil seperti ini. Silahkan hubungi saya bila ada pertanyaan atau komentar. Selamat mencoba!', + 'index_sidebar-toggle' => 'Untuk membuat transakisi baru, akun atau hal lainnya, gunakan menu di bawah gambar ini.', + + // create account: + 'accounts_create_iban' => 'Berikan akun anda IBAN yang benar. Hal ini bisa membuat data impor sangat mudah di masa yang akan datang.', + 'accounts_create_asset_opening_balance' => 'Akun aset dapat memiliki "saldo awal", yang menandakan dimulainya riwayat pada akun ini di firefly.', + 'accounts_create_asset_currency' => 'Firelfly III mendukung berbagai mata uang. Akun aset memiliki satu mata uang utama, yang yang harus anda tetapkan.', + 'accounts_create_asset_virtual' => 'Kadang-kadang itu dapat membantu memberi akun anda saldo virtual: jumlah tambahan yang selalu ditambahkan atau dihapus dari saldo sebenarnya.', + + // budgets index + 'budgets_index_intro' => 'Anggaran yang digunakan untuk mengelola keuangan anda dan membentuk salah satu fungsi inti dari Firefly III.', + 'budgets_index_set_budget' => 'Tetapkan total anggaran anda untuk setiap periode sehingga Firefly dapat memberi tahu anda jika anda sudah menganggarkan semua uang yang tersedia.', + 'budgets_index_see_expenses_bar' => 'Menghabiskan uang secara perlahan dengan mengisi di bar ini.', + 'budgets_index_navigate_periods' => 'Menavigasi melalui periode dengan mudah menetapkan anggaraan sebelumnya.', + 'budgets_index_new_budget' => 'Buat anggaran baru sesuai keinginan anda.', + 'budgets_index_list_of_budgets' => 'Gunakan tabel ini untuk menetapkan jumlah setiap anggaran daan melihat bagaimana keadaan anda.', + 'budgets_index_outro' => 'Untuk mempelajari lebih lanjut tentang anggaran, periksa ikon bantuan di pojok kanan atas.', + + // reports (index) + 'reports_index_intro' => 'Gunakan laporan ini untuk mendapatkan wawasan terperinci dalam keuangan anda.', + 'reports_index_inputReportType' => 'Pilih sebuah jenis laporan. Periksa bantuan halaman untuk melihat apa yang ditunjukkan pada laporan anda.', + 'reports_index_inputAccountsSelect' => 'Anda dapat mengecualikan atau menyertakan akun aset sesuai keinginan anda.', + 'reports_index_inputDateRange' => 'Rentang tanggal yang dipilih sepenuhnya terserah anda: dari satu hari sampai 10 tahun.', + 'reports_index_extra-options-box' => 'Bergantung pada laporan yang anda pilih, anda dapat memilih filter dan opsi tambahan di sini. Lihat kotak ini saat anda mengubah jenis laporan.', + + // reports (reports) + 'reports_report_default_intro' => 'Laporan ini akan memberi gambaran singkat tentang keuanggan anda secara cepat dan menyeluruh. Jika anda ingin melihat yang lain, jangan ragu untuk menghubungi saya!', + 'reports_report_audit_intro' => 'Laporan ini memberikan anda pengetahuan rnci dalam akun aset anda.', + 'reports_report_audit_optionsBox' => 'Gunakan kotak centang ini untuk menampilkan atau menyembunyikan kolom yang anda suka.', + + 'reports_report_category_intro' => 'Laporan ini akan memberi anda pengetahuan pada satu atau beberapa kategori.', + 'reports_report_category_pieCharts' => 'Bagan ini memberi anda pengetahuan tentang biaya dan pendapatan per kategori atau per akun.', + 'reports_report_category_incomeAndExpensesChart' => 'Bagan ini menunjukkan pengeluaran dan pendapatan anda per kategori.', + + 'reports_report_tag_intro' => 'Laporan ini memberi anda pengetahuan dalam satu atau beberapa label.', + 'reports_report_tag_pieCharts' => 'Bagan ini memberikan anda pengetahuan tentang biaya dan pendapatan per label, akun, kategori atau anggaran.', + 'reports_report_tag_incomeAndExpensesChart' => 'Bagan ini menunjukkan pengeluaran dan pendapatan anda per label.', + + 'reports_report_budget_intro' => 'Laporan ini memberikan anda pengetahuan tentang satu atau beberapa anggaran.', + 'reports_report_budget_pieCharts' => 'Bagan ini memberikan anda pengetahuan tentang biaya per anggaran atau per akun.', + 'reports_report_budget_incomeAndExpensesChart' => 'Bagan ini menunjukkan pengeluaran anda per anggaran.', + + // create transaction + 'transactions_create_switch_box' => 'Gunakan tombol-tombol ini dengan cepat untuk mengganti jenis transaksi yang ingin anda simpan.', + 'transactions_create_ffInput_category' => 'Anda bisa dengan bebas mengetik di bidang ini. Kategori yang dibuat sebelumnya yang akan disarankan.', + 'transactions_create_withdrawal_ffInput_budget' => 'Tautkan penarikan anda ke anggaraan untuk mendapatkan kontrol keuangan yang lebih baik.', + 'transactions_create_withdrawal_currency_dropdown_amount' => 'Gunakan dropdown ini saat penarikan anda dalam mata uang lainnya.', + 'transactions_create_deposit_currency_dropdown_amount' => 'Gunakan dropdown ini saat deposit anda berada dalam mata uang lainnya.', + 'transactions_create_transfer_ffInput_piggy_bank_id' => 'Pilihlah celengan dan hubungkan transfer ini ke tabungan anda.', + + // piggy banks index: + 'piggy-banks_index_saved' => 'Bagian ini menunjukkan berapa banyak yang telah anda simpan di setiap celengan.', + 'piggy-banks_index_button' => 'Di samping bilah kemajuan ini ada dua tombol (+ dan -) untuk menanmbahkan atau menghapus uang dari masing-masing celengan.', + 'piggy-banks_index_accountStatus' => 'Untuk setiap akun aset dengan sedikitnya satu celenggan, statusnya terdaftar dalam tabel ini.', + + // create piggy + 'piggy-banks_create_name' => 'Apa tujuanmu? Sofa baru, kamera baru, uang untuk keadaan darurat?', + 'piggy-banks_create_date' => 'Anda dapat menetapkan tanggal target atau tenggat waktu untuk celengan anda.', + + // show piggy + 'piggy-banks_show_piggyChart' => 'Bagan ini akan menunjukkan riwayat celengan.', + 'piggy-banks_show_piggyDetails' => 'Beberapa rincian tentang celengan anda', + 'piggy-banks_show_piggyEvents' => 'Setiap tambahan atau kepindahan juga tercantum di sini.', + + // bill index + 'bills_index_paid_in_period' => 'Bagian ini menunjukkan kapan tagihan terakhir dibayarkan.', + 'bills_index_expected_in_period' => 'Bagian ini menunjukkan setiap tagihan jika dan kapan tagihan berikutnya diperkirakan akan dibayar.', + + // show bill + 'bills_show_billInfo' => 'Tabel ini menunjukkan beberapa informasi umum tentang tagihan ini.', + 'bills_show_billButtons' => 'Gunakan tombol ini untuk memindai ulang transaksi lama sehingga cocok dengan tagihan ini.', + 'bills_show_billChart' => 'Bagan ini menunjukkan transaksi yang terkait dengan tagihan ini.', + + // create bill + 'bills_create_name' => 'Gunakan nama yang deskriptif seperti "Rent" atau "Health insurance".', + 'bills_create_match' => 'Untuk mencocokan transaksi, gunakan persyaratan dari transaksi tersebut atau akun biaya yang terlibat. Semua kata harus sesuai.', + 'bills_create_amount_min_holder' => 'Pilih jumlah minimum dan maksimum untuk tagihan ini.', + 'bills_create_repeat_freq_holder' => 'Sebagian besar tagihan diulang setiap bulannya, tapi anda bisa mengatur frekuensi lain di sini.', + 'bills_create_skip_holder' => 'Jika tagihan berulang setiap 2 minggu misalnya, bagian "lewati" harus ditetapkan ke "1" untuk melewati setiap minggu lainnya.', + + // rules index + 'rules_index_intro' => 'Firefly III memungkinkan anda mengatur peraturan-peraturan, yang otomatis akan diterapkan pada transaksi yang anda buat atau edit.', + 'rules_index_new_rule_group' => 'Anda dapat menggabungkan aturan dalam kelompok untuk memudahkan pengelolaan.', + 'rules_index_new_rule' => 'Buat aturan sebanyak yang anda suka.', + 'rules_index_prio_buttons' => 'Memesannya sesuai keinginan anda.', + 'rules_index_test_buttons' => 'Anda bisa menguji peraturan anda atau menerapkannya pada transaksi yang ada.', + 'rules_index_rule-triggers' => 'Aturan memiliki "pemicu" dan "tindakan" yang dapat anda pesan dengan drag-and-drop.', + 'rules_index_outro' => 'Pastikan untuk periksa halaman bantuan menggunakan ikon (?) di bagian kanan atas!', + + // create rule: + 'rules_create_mandatory' => 'Pilih judul deskriptif dan tentukan kapan aturan harus dijalankan.', + 'rules_create_ruletriggerholder' => 'Tambahkan sebanyak mungkin trigger sebanyak yang kamu sukai, tap ingat bahwa SEMUA trigger harus cocok sebelum tindakan dijalankan.', + 'rules_create_test_rule_triggers' => 'Gunakan tombol ini untuk melihat transaksi mana yang sesuai dengan peraturan anda.', + 'rules_create_actions' => 'Tentukan sebanyak mungkin tindakan yang anda inginkan.', + + // preferences + 'preferences_index_tabs' => 'Pilihan lainnya tersedia dibalik tab ini.', + + // currencies + 'currencies_index_intro' => 'Firefly III mendukung banyak mata uang, yang dapat anda ubah di halaman ini.', + 'currencies_index_default' => 'Firefly III memiliki satu mata uang standar. Anda selalu dapat beralih ke mata uang lainnya dengan menggunakan tombol-tombol ini.', + + // create currency + 'currencies_create_code' => 'Kode ini harus sesuai dengan ISO (Google untuk mata uang baru anda).', +]; diff --git a/resources/lang/id_ID/list.php b/resources/lang/id_ID/list.php new file mode 100644 index 0000000000..26e4937b70 --- /dev/null +++ b/resources/lang/id_ID/list.php @@ -0,0 +1,102 @@ +. + */ +declare(strict_types=1); + +return [ + 'buttons' => 'Tombol', + 'icon' => 'Ikon', + 'id' => 'ID', + 'create_date' => 'Dibuat pada', + 'update_date' => 'Diperbarui pada', + 'updated_at' => 'Diperbarui pada', + 'balance_before' => 'Saldo Sebelumnya', + 'balance_after' => 'Saldo setelahnya', + 'name' => 'Nama', + 'role' => 'Peran', + 'currentBalance' => 'Saldo saat ini', + 'active' => 'Aktif?', + 'lastActivity' => 'Aktifitas terakhir', + 'balanceDiff' => 'Balance difference', + 'matchesOn' => 'Cocok di', + 'account_type' => 'Jenis akun', + 'created_at' => 'Dibuat di', + 'account' => 'Akun', + 'matchingAmount' => 'Jumlah', + 'split_number' => 'Split #', + 'destination' => 'Tujuan', + 'source' => 'Sumber', + 'next_expected_match' => 'Transaksi yang diharapkan berikutnya', + 'automatch' => 'Pencocokan otomatis?', + 'repeat_freq' => 'Berulang', + 'description' => 'Deskripsi', + 'amount' => 'Jumlah', + 'internal_reference' => 'Referensi Internal', + 'date' => 'Tanggal', + 'interest_date' => 'Tanggal Bunga', + 'book_date' => 'Tanggal Buku', + 'process_date' => 'Tanggal pemrosesan', + 'due_date' => 'Tenggat waktu', + 'payment_date' => 'Tanggal pembayaran', + 'invoice_date' => 'Tanggal Faktur', + 'interal_reference' => 'Referensi Internal', + 'notes' => 'Catatan', + 'from' => 'Dari', + 'piggy_bank' => 'Celengan', + 'to' => 'Untuk', + 'budget' => 'Anggaran', + 'category' => 'Kategori', + 'bill' => 'Tagihan', + 'withdrawal' => 'Penarikan', + 'deposit' => 'Simpanan', + 'transfer' => 'Transfer', + 'type' => 'Jenis', + 'completed' => 'Lengkap', + 'iban' => 'IBAN', + 'paid_current_period' => 'Membayar periode ini', + 'email' => 'Email', + 'registered_at' => 'Terdaftar di', + 'is_blocked' => 'Diblokir', + 'is_admin' => 'Apakah admin', + 'has_two_factor' => 'Memiliki 2FA', + 'blocked_code' => 'Kode blok', + 'source_account' => 'Akun sumber', + 'destination_account' => 'Akun tujuan', + 'accounts_count' => 'Jumlah rekening', + 'journals_count' => 'Jumlah transaksi', + 'attachments_count' => 'Jumlah lampiran', + 'bills_count' => 'Jumlah tagihan', + 'categories_count' => 'Jumlah kategori', + 'export_jobs_count' => 'Jumlah pekerjaan ekspor', + 'import_jobs_count' => 'Jumlah pekerjaan impor', + 'budget_count' => 'Jumlah anggaran', + 'rule_and_groups_count' => 'Jumlah aturan dan kelompok aturan', + 'tags_count' => 'Jumlah label', + 'inward' => 'Deskripsi dalam', + 'outward' => 'Deskripsi luar', + 'number_of_transactions' => 'Jumlah transaksi', + 'total_amount' => 'Jumlah total', + 'sum' => 'Jumlah', + 'sum_excluding_transfers' => 'Jumlah (tidak termasuk transfer)', + 'sum_withdrawals' => 'Jumlah penarikan', + 'sum_deposits' => 'Jumlah simpanan', + 'sum_transfers' => 'Jumlah transfer', + 'reconcile' => 'Menyesuaikan', +]; diff --git a/resources/lang/id_ID/pagination.php b/resources/lang/id_ID/pagination.php new file mode 100644 index 0000000000..0e720cc21c --- /dev/null +++ b/resources/lang/id_ID/pagination.php @@ -0,0 +1,26 @@ +. + */ +declare(strict_types=1); + +return [ + 'previous' => '« Sebelumnya', + 'next' => 'Selanjutnya »', +]; diff --git a/resources/lang/id_ID/passwords.php b/resources/lang/id_ID/passwords.php new file mode 100644 index 0000000000..5cf403a495 --- /dev/null +++ b/resources/lang/id_ID/passwords.php @@ -0,0 +1,30 @@ +. + */ +declare(strict_types=1); + +return [ + 'password' => 'Sandi minimal harus 6 karakter dan cocok dengan konfirmasi.', + 'user' => 'Kami tidak dapat menemukan pengguna dengan alamat e-mail itu.', + 'token' => 'Token reset kata sandi ini tidak valid.', + 'sent' => 'Kami telah mengirimi ulang tautan reset kata sandi anda!', + 'reset' => 'Kata sandi anda sudah direset!', + 'blocked' => 'Usaha yang bagus.', +]; diff --git a/resources/lang/id_ID/validation.php b/resources/lang/id_ID/validation.php new file mode 100644 index 0000000000..8090ad3e9b --- /dev/null +++ b/resources/lang/id_ID/validation.php @@ -0,0 +1,102 @@ +. + */ +declare(strict_types=1); + +return [ + 'iban' => 'Ini bukan IBAN yang valid.', + 'unique_account_number_for_user' => 'Sepertinya nomor rekening ini sudah digunakan.', + 'deleted_user' => 'Kerena kendala keamanan, anda tidak bisa mendaftar menggunkan alamat email ini.', + 'rule_trigger_value' => 'Nilai ini tidak validi untuk trigger yang dipilih.', + 'rule_action_value' => 'Nilai ini tidak valid untuk tindakan yang dipilih.', + 'file_already_attached' => 'Upload file ";name" sudah terpasang pada objek ini.', + 'file_attached' => 'File yang diupload dengan sukses ":name.', + 'file_invalid_mime' => 'File ":name" adalah tipe ":mime" yang tidak diterima sebagai upload baru.', + 'file_too_large' => 'File "; name" terlalu besar.', + 'belongs_to_user' => 'Nilai dari :attribute tidak diketahui', + 'accepted' => 'Atribut: harus diterima.', + 'bic' => 'Ini bukan BIC yang valid.', + 'more' => ':atribut harus lebih besar dari nol.', + 'active_url' => ':atribut bukan URL yang valid.', + 'after' => ':atribut harus tanggal setelah :tanggal.', + 'alpha' => ':atribut hanya boleh berisi huruf.', + 'alpha_dash' => ':atribut hanya boleh berisi huruf, angka dan tanda hubung.', + 'alpha_num' => ':Atribut hanya boleh berisi huruf dan angka.', + 'array' => ':atribut harus berupa array.', + 'unique_for_user' => 'Sudah ada entri dengan :atribut ini.', + 'before' => ':atribut harus tanggal sebelum :tanggal.', + 'unique_object_for_user' => 'Nama ini sudah digunakan', + 'unique_account_for_user' => 'Nama akun ini sudah digunakan', + 'between.numeric' => ':Atribut harus antara :min dan :maks.', + 'between.file' => ':Atribut harus antara :min dan :maks kilobyte.', + 'between.string' => ':Atribut harus antara :min dan :maks karakter.', + 'between.array' => ':Atribut harus antara :min dan :maks item.', + 'boolean' => 'Bidang :atribut harus benar atau salah.', + 'confirmed' => 'Konfirmasi :atribut tidak cocok.', + 'date' => ':atribut bukan tanggal yang valid.', + 'date_format' => ':atribut tidak cocok dengan the format :format.', + 'different' => ':Atribut dan :other harus berbeda.', + 'digits' => ':Atribut harus angka :digit.', + 'digits_between' => ':Atribut harus antara :min dan :max angka.', + 'email' => ':Atribut harus alamat email yang valid.', + 'filled' => 'Bidang :atribut diperlukan.', + 'exists' => ':Atribut yang dipilih tidak valid.', + 'image' => ':Atribut harus gambar.', + 'in' => ':Atribut yang dipilih tidak valid.', + 'integer' => ':Atribut harus bilangan bulat.', + 'ip' => ':Atribut harus alamat IP yang valid.', + 'json' => ':Atribut harus string JSON yang valid.', + 'max.numeric' => ':Atribut tidak boleh lebih besar dari :max.', + 'max.file' => ':Atribut tidak boleh lebih besar dari kilobyte :max.', + 'max.string' => ':Atribut tidak boleh lebih besar dari karakter :max.', + 'max.array' => ':Atribut tidak boleh memiliki lebih dari item :max.', + 'mimes' => ':Atribut harus jenis file: :values.', + 'min.numeric' => ':Atribut harus sedikitnya :min.', + 'min.file' => 'Atribut harus minimal kilobyte :min.', + 'min.string' => ':Atribut harus minimal karakter :min.', + 'min.array' => ':Atribut harus minimal item :min.', + 'not_in' => ':Atribut yang dipilih tidak valid.', + 'numeric' => ':Atribut harus angka.', + 'regex' => 'Format :atribut tidak valid.', + 'required' => 'Bidang :atribut diperlukan.', + 'required_if' => 'Bidang :atribut diperlukan ketika :other adalah :value.', + 'required_unless' => 'Bidang :atribut diperlukan minimal :other adalah dalam :values.', + 'required_with' => 'Bidang :atribut diperlukan ketika :values terdapat nilai.', + 'required_with_all' => 'Bidang :atribut diperlukan ketika :values ada.', + 'required_without' => 'Bidang :atribut diperlukan ketika :values tidak ada.', + 'required_without_all' => 'Bidang :atribut diperlukan ketika tidak ada satupun :values ada.', + 'same' => ':Atribut dan :other harus cocok.', + 'size.numeric' => ':Atribut harus :size.', + 'size.file' => ':Atribut harus kilobyte :size.', + 'size.string' => ':Atribut harus karakter :size.', + 'size.array' => ':Atribut harus berisi item :size.', + 'unique' => ':Atribut sudah diambil.', + 'string' => ':Atribut harus sebuah string.', + 'url' => 'Format atribut tidak valid.', + 'timezone' => ':Atribut harus zona yang valid.', + '2fa_code' => 'Bidang :atribut tidak valid.', + 'dimensions' => ':Atribut memiliki dimensi gambar yang tidak valid.', + 'distinct' => 'Bidang :atribut memiliki nilai duplikat.', + 'file' => ':Atribut harus berupa file.', + 'in_array' => 'Bidang :atribut tidak ada in :other.', + 'present' => 'Bidang :atribut harus ada.', + 'amount_zero' => 'Jumlah total tidak boleh nol', + 'secure_password' => 'Ini bukan kata sandi yang aman. Silahkan coba lagi. Untuk informasi lebih lanjut, kunjungi https://goo.gl/NCh2tN', +]; diff --git a/resources/lang/nl_NL/auth.php b/resources/lang/nl_NL/auth.php index 57c24ab4e5..7b7944787e 100644 --- a/resources/lang/nl_NL/auth.php +++ b/resources/lang/nl_NL/auth.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - /* |-------------------------------------------------------------------------- | Authentication Language Lines @@ -36,5 +34,4 @@ return [ 'failed' => 'Deze gegevens zijn niet correct.', 'throttle' => 'Te veel inlogpogingen. Probeer opnieuw in: seconden seconden.', - ]; diff --git a/resources/lang/nl_NL/bank.php b/resources/lang/nl_NL/bank.php index 49e01192b1..ef0d636f91 100644 --- a/resources/lang/nl_NL/bank.php +++ b/resources/lang/nl_NL/bank.php @@ -18,10 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ - ]; diff --git a/resources/lang/nl_NL/breadcrumbs.php b/resources/lang/nl_NL/breadcrumbs.php index beb75b6bf5..e137f106cb 100644 --- a/resources/lang/nl_NL/breadcrumbs.php +++ b/resources/lang/nl_NL/breadcrumbs.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/nl_NL/config.php b/resources/lang/nl_NL/config.php index 8f4bca715b..c0e26bebd1 100644 --- a/resources/lang/nl_NL/config.php +++ b/resources/lang/nl_NL/config.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -31,5 +30,4 @@ return [ 'quarter_of_year' => '%B %Y', 'year' => '%Y', 'half_year' => '%B %Y', - ]; diff --git a/resources/lang/nl_NL/csv.php b/resources/lang/nl_NL/csv.php index 22c74cf9f3..d61316b632 100644 --- a/resources/lang/nl_NL/csv.php +++ b/resources/lang/nl_NL/csv.php @@ -18,9 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - ]; diff --git a/resources/lang/nl_NL/demo.php b/resources/lang/nl_NL/demo.php index 27c3d3ae7e..d4b928fe2e 100644 --- a/resources/lang/nl_NL/demo.php +++ b/resources/lang/nl_NL/demo.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/nl_NL/firefly.php b/resources/lang/nl_NL/firefly.php index 1246f29a92..ade0081955 100644 --- a/resources/lang/nl_NL/firefly.php +++ b/resources/lang/nl_NL/firefly.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -353,7 +352,6 @@ return [ 'rule_action_set_notes_choice' => 'Verander notitie in..', 'rule_action_set_notes' => 'Verander notitie in ":action_value"', - 'rules_have_read_warning' => 'Heb je de waarschuwing gelezen?', 'apply_rule_warning' => 'Let op! Het kan heel lang duren voor een regel(groep) is toegepast op een grote selectie transacties. Er kan een time-out optreden. Als dat gebeurt is de regel(groep) niet toegepast op alle transacties, en dat kan je administratie behoorlijk verprutsen. Wees dus voorzichtig.', @@ -407,9 +405,9 @@ return [ 'pref_home_show_deposits_info' => 'De homepagina laat al crediteuren zien. Wil je ook je debiteuren zien?', 'pref_home_do_show_deposits' => 'Ja, kom maar op', 'successful_count' => 'waarvan :count met succes', - 'transaction_page_size_title' => 'Paginalengte', - 'transaction_page_size_help' => 'Elke lijst met transacties er op is zo lang', - 'transaction_page_size_label' => 'Paginalengte', + 'list_page_size_title' => 'Paginalengte', + 'list_page_size_help' => 'Per lijst met dingen (accounts, transacties, enz.) zie je hooguit zoveel items.', + 'list_page_size_label' => 'Paginalengte', 'between_dates' => '(:start en :end)', 'pref_optional_fields_transaction' => 'Optionele velden voor transacties', 'pref_optional_fields_transaction_help' => 'Standaard staan niet alle velden aan (vanwege het overzicht). Hier kan je zulke extra velden alsnog aanzetten, als je denkt dat ze handig zijn. Als je een veld uitzet, maar deze heeft wel degelijk een waarde, dan is-ie altijd zichtbaar, wat je ook doet.', @@ -430,7 +428,6 @@ return [ 'optional_field_attachments' => 'Bijlagen', 'optional_field_meta_data' => 'Optionele meta-gegevens', - // profile: 'change_your_password' => 'Verander je wachtwoord', 'delete_account' => 'Verwijder je account', @@ -467,7 +464,6 @@ return [ 'login_with_new_email' => 'Je kan nu inloggen met je nieuwe emailadres.', 'login_with_old_email' => 'Je kan nu weer inloggen met je oude emailadres.', - // attachments 'nr_of_attachments' => 'Eén bijlage|:count bijlagen', 'attachments' => 'Bijlagen', @@ -573,7 +569,6 @@ return [ 'suggested' => 'Gesuggereerd', 'average_between' => 'Gemiddelde tussen :start en :end', - // bills: 'matching_on' => 'Wordt herkend', 'between_amounts' => 'tussen :low en :high.', @@ -729,7 +724,6 @@ return [ 'opt_group_sharedAsset' => 'Gedeelde betaalrekeningen', 'opt_group_ccAsset' => 'Creditcards', - // new user: 'welcome' => 'Welkom bij Firefly!', 'submit' => 'Invoeren', @@ -825,8 +819,8 @@ return [ 'inactive' => 'Niet actief', 'active' => 'Actief', 'difference' => 'Verschil', - 'in' => 'In', - 'out' => 'Uit', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Uit', 'topX' => 'top :number', 'show_full_list' => 'Laat hele lijst zien', 'show_only_top' => 'Alleen top :number', @@ -986,8 +980,7 @@ return [ 'total_size' => 'totale grootte', 'budget_or_budgets' => 'budget(ten)', 'budgets_with_limits' => 'budget(ten) met een ingesteld bedrag', - 'rule_or_rules' => 'regel(s)', - 'rulegroup_or_groups' => 'regelgroep(en)', + 'nr_of_rules_in_total_groups' => ':count_rules regel(s) in :count_groups regelgroep(en)', 'tag_or_tags' => 'tag(s)', 'configuration_updated' => 'De configuratie is bijgewerkt', 'setting_is_demo_site' => 'Demo website', @@ -1053,7 +1046,6 @@ return [ '(partially) pays for_outward' => 'betaalt (deels) voor', '(partially) reimburses_outward' => 'vergoedt (deels)', - // split a transaction: 'splits' => 'Splitten', 'add_another_split' => 'Voeg een split toe', @@ -1131,6 +1123,4 @@ return [ 'no_bills_intro_default' => 'Je hebt nog geen contracten. Je kan contracten gebruiken om terugkerende uitgaven bij te houden, zoals de huur of verzekeringen.', 'no_bills_imperative_default' => 'Heb je zulke uitgaven? Maak dan een contract en houd de betalingen bij:', 'no_bills_create_default' => 'Maak een contract', - - ]; diff --git a/resources/lang/nl_NL/form.php b/resources/lang/nl_NL/form.php index ed96856280..5e92dd9b13 100644 --- a/resources/lang/nl_NL/form.php +++ b/resources/lang/nl_NL/form.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - // new user: 'bank_name' => 'Banknaam', 'bank_balance' => 'Saldo', @@ -90,7 +88,6 @@ return [ 'convert_Deposit' => 'Verander inkomsten', 'convert_Transfer' => 'Verander overschrijving', - 'amount' => 'Bedrag', 'date' => 'Datum', 'interest_date' => 'Rentedatum', @@ -179,13 +176,11 @@ return [ 'blocked' => 'Is geblokkeerd?', 'blocked_code' => 'Reden voor blokkade', - // admin 'domain' => 'Domein', 'single_user_mode' => 'Registratie uitgeschakelen', 'is_demo_site' => 'Is demo website', - // import 'import_file' => 'Importbestand', 'configuration_file' => 'Configuratiebestand', @@ -203,7 +198,6 @@ return [ 'country_code' => 'Landcode', 'provider_code' => 'Bank of gegevensprovider', - 'due_date' => 'Vervaldatum', 'payment_date' => 'Betalingsdatum', 'invoice_date' => 'Factuurdatum', diff --git a/resources/lang/nl_NL/import.php b/resources/lang/nl_NL/import.php index 6c494ec4a0..2264666af7 100644 --- a/resources/lang/nl_NL/import.php +++ b/resources/lang/nl_NL/import.php @@ -18,10 +18,8 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ // status of import: 'status_wait_title' => 'Momentje...', @@ -35,8 +33,12 @@ return [ 'status_ready_config' => 'Download importconfiguratie', 'status_ready_start' => 'Start importeren', 'status_ready_share' => 'Overweeg om je configuratiebestand te downloaden en te delen op de configuratiebestand-wiki. Hiermee kan je het andere Firefly III gebruikers weer makkelijker maken.', + 'status_job_new' => 'De import is gloednieuw.', + 'status_job_configuring' => 'De import wordt geconfigureerd.', + 'status_job_configured' => 'De import is geconfigureerd.', 'status_job_running' => 'De import is bezig.. Momentje..', - 'status_job_finished' => 'The import has finished!', + 'status_job_error' => 'De import heeft een fout gegenereerd.', + 'status_job_finished' => 'Het importeren is voltooid!', 'status_running_title' => 'De import is bezig', 'status_running_placeholder' => 'Wacht even voor een update...', 'status_finished_title' => 'Importeren is klaar', @@ -92,7 +94,6 @@ return [ 'csv_roles_submit' => 'Ga verder met stap 4/4', 'csv_roles_warning' => 'Geef minstens de kolom aan waar het bedrag in staat. Als het even kan, ook een kolom voor de omschrijving, datum en de andere rekening.', - // file: map data 'file_map_title' => 'Importinstellingen (4/4) - Link importgegevens aan Firefly III-gegevens', 'file_map_text' => 'In deze tabellen is de linkerwaarde een waarde uit je CSV bestand. Jij moet de link leggen, als mogelijk, met een waarde uit jouw database. Firefly houdt zich hier aan. Als er geen waarde is, selecteer dan ook niets.', @@ -107,7 +108,7 @@ return [ 'column_account-id' => 'Betaalrekening (ID gelijk aan Firefly)', 'column_account-name' => 'Betaalrekeningnaam', 'column_amount' => 'Bedrag', - 'column_amount_debit' => 'Amount (debit column)', + 'column_amount_debit' => 'Bedrag (debetkolom)', 'column_amount_credit' => 'Bedrag (creditkolom)', 'column_amount-comma-separated' => 'Bedrag (komma as decimaalscheidingsteken)', 'column_bill-id' => 'Contract (ID gelijk aan Firefly)', @@ -129,15 +130,16 @@ return [ 'column_opposing-id' => 'Tegenrekening (ID gelijk aan Firefly)', 'column_external-id' => 'Externe ID', 'column_opposing-name' => 'Tegenrekeningnaam', - 'column_rabo-debit-credit' => 'Rabobank specific debit/credit indicator', - 'column_ing-debit-credit' => 'ING specific debit/credit indicator', + 'column_rabo-debit-credit' => 'Rabobankspecifiek bij/af indicator', + 'column_ing-debit-credit' => 'ING-specifieke bij/af indicator', 'column_sepa-ct-id' => 'SEPA end-to-end transactienummer', 'column_sepa-ct-op' => 'SEPA tegenrekeningnummer', - 'column_sepa-db' => 'SEPA Direct Debit', + 'column_sepa-db' => 'SEPA "direct debet"-nummer', 'column_tags-comma' => 'Tags (kommagescheiden)', 'column_tags-space' => 'Tags (spatiegescheiden)', 'column_account-number' => 'Betaalrekening (rekeningnummer)', 'column_opposing-number' => 'Tegenrekening (rekeningnummer)', + 'column_note' => 'Opmerking(en)', // bunq 'bunq_prerequisites_title' => 'Voorwaarden voor een import van bunq', @@ -155,4 +157,4 @@ return [ 'spectre_input_fields_title' => 'Verplichte velden', 'spectre_input_fields_text' => 'De volgende velden zijn verplicht voor ":provider" (uit :country).', 'spectre_instructions_english' => 'Deze instructies worden door Spectre verstrekt. Ze zijn in het Engels:', -]; \ No newline at end of file +]; diff --git a/resources/lang/nl_NL/intro.php b/resources/lang/nl_NL/intro.php index 29bdeefb52..e51c843e37 100644 --- a/resources/lang/nl_NL/intro.php +++ b/resources/lang/nl_NL/intro.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/nl_NL/list.php b/resources/lang/nl_NL/list.php index 582d6d287e..f0f84251eb 100644 --- a/resources/lang/nl_NL/list.php +++ b/resources/lang/nl_NL/list.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -35,7 +34,7 @@ return [ 'currentBalance' => 'Huidig saldo', 'active' => 'Actief?', 'lastActivity' => 'Laatste activiteit', - 'balanceDiff' => 'Saldoverschil tussen :start en :end', + 'balanceDiff' => 'Saldoverschil', 'matchesOn' => 'Wordt herkend', 'account_type' => 'Accounttype', 'created_at' => 'Gemaakt op', diff --git a/resources/lang/nl_NL/pagination.php b/resources/lang/nl_NL/pagination.php index d5a7197428..d463290e50 100644 --- a/resources/lang/nl_NL/pagination.php +++ b/resources/lang/nl_NL/pagination.php @@ -18,12 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - 'previous' => '« Vorige', 'next' => 'Volgende »', - ]; diff --git a/resources/lang/nl_NL/passwords.php b/resources/lang/nl_NL/passwords.php index 319d0e3f7f..089589d0fa 100644 --- a/resources/lang/nl_NL/passwords.php +++ b/resources/lang/nl_NL/passwords.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/nl_NL/validation.php b/resources/lang/nl_NL/validation.php index 93fbe87872..f33540d621 100644 --- a/resources/lang/nl_NL/validation.php +++ b/resources/lang/nl_NL/validation.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/pl_PL/auth.php b/resources/lang/pl_PL/auth.php index 8d33f62373..4dd2d48fa1 100644 --- a/resources/lang/pl_PL/auth.php +++ b/resources/lang/pl_PL/auth.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - /* |-------------------------------------------------------------------------- | Authentication Language Lines @@ -36,5 +34,4 @@ return [ 'failed' => 'Te poświadczenia nie zgadzają się z naszymi danymi.', 'throttle' => 'Zbyt wiele prób logowania. Spróbuj ponownie za :seconds sekund.', - ]; diff --git a/resources/lang/pl_PL/bank.php b/resources/lang/pl_PL/bank.php index 49e01192b1..ef0d636f91 100644 --- a/resources/lang/pl_PL/bank.php +++ b/resources/lang/pl_PL/bank.php @@ -18,10 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ - ]; diff --git a/resources/lang/pl_PL/breadcrumbs.php b/resources/lang/pl_PL/breadcrumbs.php index 91d6fd1dab..942d10c8ed 100644 --- a/resources/lang/pl_PL/breadcrumbs.php +++ b/resources/lang/pl_PL/breadcrumbs.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -30,7 +29,7 @@ return [ 'preferences' => 'Preferencje', 'profile' => 'Profil', 'changePassword' => 'Zmień swoje hasło', - 'change_email' => 'Change your email address', + 'change_email' => 'Zmień swój adres e-mail', 'bills' => 'Rachunki', 'newBill' => 'Nowy rachunek', 'edit_bill' => 'Modyfikuj rachunek ":name"', @@ -41,12 +40,12 @@ return [ 'deposit_list' => 'Przychody, dochody oraz depozyty', 'transfer_list' => 'Transfery', 'transfers_list' => 'Transfery', - 'reconciliation_list' => 'Reconciliations', + 'reconciliation_list' => 'Rozrachunki', 'create_withdrawal' => 'Utwórz nową wypłatę', 'create_deposit' => 'Utwórz nową wpłatę', 'create_transfer' => 'Utwórz nowy transfer', 'edit_journal' => 'Modyfikuj transakcję ":description"', - 'edit_reconciliation' => 'Edit ":description"', + 'edit_reconciliation' => 'Edytuj ":description"', 'delete_journal' => 'Usuń transakcję ":description"', 'tags' => 'Tagi', 'createTag' => 'Utwórz nowy tag', diff --git a/resources/lang/pl_PL/config.php b/resources/lang/pl_PL/config.php index e711b5ec3f..1dabe6d74c 100644 --- a/resources/lang/pl_PL/config.php +++ b/resources/lang/pl_PL/config.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -31,5 +30,4 @@ return [ 'quarter_of_year' => '%B %Y', 'year' => '%Y', 'half_year' => '%B %Y', - ]; diff --git a/resources/lang/pl_PL/csv.php b/resources/lang/pl_PL/csv.php index 22c74cf9f3..d61316b632 100644 --- a/resources/lang/pl_PL/csv.php +++ b/resources/lang/pl_PL/csv.php @@ -18,9 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - ]; diff --git a/resources/lang/pl_PL/demo.php b/resources/lang/pl_PL/demo.php index da050d1dd1..461bde8799 100644 --- a/resources/lang/pl_PL/demo.php +++ b/resources/lang/pl_PL/demo.php @@ -18,21 +18,20 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - 'no_demo_text' => 'Sorry, there is no extra demo-explanation text for this page.', + 'no_demo_text' => 'Niestety, nie ma dodatkowego tekstu wyjaśniającego demo dla tej strony.', 'see_help_icon' => 'Jednakże ikona w prawym górnym rogu może powiedzieć Ci więcej.', 'index' => 'Witaj w Firefly III! Na tej stronie znajduje się szybki przegląd Twoich finansów. Aby uzyskać więcej informacji sprawdź Konta → Konta aktywów oraz oczywiście strony Budżety oraz Raporty. Lub po prostu się rozejrzyj i zobacz gdzie trafisz w końcu.', 'accounts-index' => 'Konta aktywów są Twoimi osobistymi kontami bankowymi. Konta wydatków to konta na które wydajesz pieniądze takie jak sklepy oraz przyjaciele. Kona przychodów są kontami, z których otrzymujesz pieniądze takie jak twoja praca, zwrot podatków lub inne źródła przychodów. Na tej stronie możesz je modyfikować oraz usuwać.', - 'budgets-index' => 'This page shows you an overview of your budgets. The top bar shows the amount that is available to be budgeted. This can be customized for any period by clicking the amount on the right. The amount you\'ve actually spent is shown in the bar below. Below that are the expenses per budget and what you\'ve budgeted for them.', - 'reports-index-start' => 'Firefly III supports four types of reports. Read about them by clicking on the -icon in the top right corner.', - 'reports-index-examples' => 'Be sure to check out these examples: a monthly financial overview, a yearly financial overview and a budget overview.', - 'currencies-index' => 'Firefly III supports multiple currencies. Although it defaults to the Euro it can be set to the US Dollar and many other currencies. As you can see a small selection of currencies has been included but you can add your own if you wish to. Changing the default currency will not change the currency of existing transactions however: Firefly III supports the use of multiple currencies at the same time.', - 'transactions-index' => 'These expenses, deposits and transfers are not particularly imaginative. They have been generated automatically.', - 'piggy-banks-index' => 'As you can see, there are three piggy banks. Use the plus and minus buttons to influence the amount of money in each piggy bank. Click the name of the piggy bank to see the administration for each piggy bank.', - 'import-index' => 'Of course, any CSV file can be imported into Firefly III', - 'import-configure-security' => 'Because of security concerns, your upload has been replaced with a local file.', + 'budgets-index' => 'Ta strona zawiera przegląd budżetów. Górny pasek pokazuje kwotę, która jest dostępna do budżetowania. Można ją dostosować dla dowolnego okresu, klikając kwotę po prawej stronie. Kwota, którą faktycznie wydałeś, jest pokazana na pasku ponizej. Pod tym znajdują się wydatki na budżet oraz co przeznaczyłeś na nie.', + 'reports-index-start' => 'Firefly III obsługuje cztery typy raportów. Czytaj o nich klikając ikonę w prawym górnym rogu.', + 'reports-index-examples' => 'Sprawdź te przykłady: miesięczny przegląd finansowy, roczny przegląd finansowy i przegląd budżetu.', + 'currencies-index' => 'Firefly obsługuje wiele walut. Chociaż domyślnie jest to euro, można go ustawić na dolara amerykańskiego i wiele innych walut. Jak widać niewielki wybór walut został uwzględniony, ale możesz dodać własne, jeśli chcesz. Zmiana domyślnej waluty nie zmieni waluty istniejących transakcji, jednak: Firefly III obsługuje korzystanie z wielu walut w tym samym czasie.', + 'transactions-index' => 'Te wydatki, depozyty i transfery nie są szczególnie pomysłowe. Zostały wygenerowane automatycznie.', + 'piggy-banks-index' => 'Jak widać, istnieją trzy skarbonki. Użyj przycisków plus i minus, aby wpłynąć na ilość pieniędzy w każdej skarbonce. Kliknij nazwę skarbonki, aby zobaczyć administrację każdej skarbonki.', + 'import-index' => 'Oczywiście każdy plik CSV można zaimportować do Firefly III', + 'import-configure-security' => 'Ze względów bezpieczeństwa przesyłanie zostało zastąpione lokalnym plikiem.', 'import-configure-configuration' => 'Konfiguracja, która widzisz poniżej jest prawidłowa dla lokalnego pliku.', ]; diff --git a/resources/lang/pl_PL/firefly.php b/resources/lang/pl_PL/firefly.php index 2fb60b6a84..52dee57cbb 100644 --- a/resources/lang/pl_PL/firefly.php +++ b/resources/lang/pl_PL/firefly.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -99,7 +98,7 @@ return [ 'left_in_budget_limit' => 'Możliwe do wydania wg budżetu', 'current_period' => 'Bieżący okres', 'show_the_current_period_and_overview' => 'Pokaż bieżący okres oraz przegląd', - 'pref_languages_locale' => 'For a language other than English to work properly, your operating system must be equipped with the correct locale-information. If these are not present, currency data, dates and amounts may be formatted wrong.', + 'pref_languages_locale' => 'Aby język inny niż angielski działał poprawnie, twój system operacyjny musi być wyposażony w odpowiednie informacje o lokalizacji. Jeśli nie są one obecne, dane walutowe, daty i kwoty mogą być źle sformatowane.', 'budget_in_period' => 'Wszystkie transakcje dla budżetu ":name" od :start do :end', 'chart_budget_in_period' => 'Wykres wszystkich transakcji dla budżetu ":name" od :start do :end', 'chart_account_in_period' => 'Wykres wszystkich transakcji dla konta ":name" od :start do :end', @@ -177,16 +176,16 @@ return [ 'do_export' => 'Eksportuj', 'export_status_never_started' => 'Eksport nie został jeszcze rozpoczęty', 'export_status_make_exporter' => 'Creating exporter thing...', - 'export_status_collecting_journals' => 'Collecting your transactions...', - 'export_status_collected_journals' => 'Collected your transactions!', - 'export_status_converting_to_export_format' => 'Converting your transactions...', + 'export_status_collecting_journals' => 'Zbieranie Twoich transakcji...', + 'export_status_collected_journals' => 'Zebrano twoje transakcje!', + 'export_status_converting_to_export_format' => 'Konwertowanie Twoich transakcji...', 'export_status_converted_to_export_format' => 'Przekonwertowano twoje transakcje!', 'export_status_creating_journal_file' => 'Tworzenie pliku eksportu...', 'export_status_created_journal_file' => 'Utworzono plik eksportu!', - 'export_status_collecting_attachments' => 'Collecting all your attachments...', + 'export_status_collecting_attachments' => 'Zbieram wszystkie Twoje załączniki...', 'export_status_collected_attachments' => 'Zebrano wszystkie twoje załączniki!', - 'export_status_collecting_old_uploads' => 'Collecting all your previous uploads...', - 'export_status_collected_old_uploads' => 'Collected all your previous uploads!', + 'export_status_collecting_old_uploads' => 'Zbieram Twoje wszystkie przesłane pliki...', + 'export_status_collected_old_uploads' => 'Zebrano wszystkie poprzednie pliki!', 'export_status_creating_zip_file' => 'Tworzenie pliku zip...', 'export_status_created_zip_file' => 'Utworzono plik zip!', 'export_status_finished' => 'Eksport został pomyślnie zakończony! Yay!', @@ -224,7 +223,7 @@ return [ 'default_rule_group_description' => 'Wszystkie twoje reguły, które nie znajdują się w określonej grupie.', 'default_rule_name' => 'Twoja pierwsza reguła domyślna', 'default_rule_description' => 'Ta reguła jest przykładem. Możesz ją bezpiecznie usunąć.', - 'default_rule_trigger_description' => 'The Man Who Sold the World', + 'default_rule_trigger_description' => 'Człowiek, który sprzedał świat', 'default_rule_trigger_from_account' => 'David Bowie', 'default_rule_action_prepend' => 'Kupił świat od ', 'default_rule_action_set_category' => 'Duże wydatki', @@ -353,7 +352,6 @@ return [ 'rule_action_set_notes_choice' => 'Ustaw notatki na..', 'rule_action_set_notes' => 'Ustaw notatki na ":action_value"', - 'rules_have_read_warning' => 'Czy przeczytałeś ostrzeżenie?', 'apply_rule_warning' => 'Ostrzeżenie: uruchomienie reguły (lub grupy reguł) na dużej liczbie transakcji może potrwać wieki i może przekroczyć limit czasu. W takiej sytuacji reguła (lub grupa reguł) zostanie zastosowana do nieznanego podzbioru Twoich transakcji. To może zostawić Twoją administrację finansową w strzępach. Proszę, bądź ostrożny.', @@ -406,10 +404,10 @@ return [ 'pref_home_show_deposits' => 'Pokaż przychody na stronie domowej', 'pref_home_show_deposits_info' => 'Ekran główny pokazuje już konta wydatków. Czy chcesz wyświetlać również konta przychodów?', 'pref_home_do_show_deposits' => 'Tak, pokaż je', - 'successful_count' => 'of which :count successful', - 'transaction_page_size_title' => 'Rozmiar strony', - 'transaction_page_size_help' => 'Dowolna lista transakcji będzie pokazywać maksymalnie tyle transakcji', - 'transaction_page_size_label' => 'Rozmiar strony', + 'successful_count' => 'z których :count zakończone pomyślnie', + 'list_page_size_title' => 'Rozmiar strony', + 'list_page_size_help' => 'Any list of things (accounts, transactions, etc) shows at most this many per page.', + 'list_page_size_label' => 'Rozmiar strony', 'between_dates' => '(:start i :end)', 'pref_optional_fields_transaction' => 'Opcjonalne pola dla transakcji', 'pref_optional_fields_transaction_help' => 'Domyślnie nie wszystkie pola są aktywne podczas tworzenia nowej transakcji (aby uniknąć bałaganu). Poniżej możesz włączyć te pola, jeśli uważasz, że mogą one być przydatne dla Ciebie. Oczywiście każde pole, które jest wyłączone, ale już wypełnione, będzie widoczne niezależnie od ustawienia.', @@ -430,7 +428,6 @@ return [ 'optional_field_attachments' => 'Załączniki', 'optional_field_meta_data' => 'Opcjonalne metadane', - // profile: 'change_your_password' => 'Zmień swoje hasło', 'delete_account' => 'Usuń konto', @@ -462,12 +459,11 @@ return [ 'regenerate_access_token' => 'Wygeneruj nowy kod', 'token_regenerated' => 'Nowy kod dostępowy został wygenerowany', 'change_your_email' => 'Zmień swój adres e-mail', - 'email_verification' => 'An email message will be sent to your old AND new email address. For security purposes, you will not be able to login until you verify your new email address. If you are unsure if your Firefly III installation is capable of sending email, please do not use this feature. If you are an administrator, you can test this in the Administration.', + 'email_verification' => 'Wiadomość e-mail zostanie wysłana na stary ORAZ nowy adres e-mail. Ze względów bezpieczeństwa, nie będziesz mógł się zalogować, dopóki nie zweryfikujesz nowego adresu e-mail. Jeśli nie masz pewności, czy twoja instalacja Firefly III umożliwia wysyłanie wiadomości e-mail, nie korzystaj z tej funkcji. Jeśli jesteś administratorem, możesz przetestować to w panelu administracyjnym.', 'email_changed_logout' => 'Dopóki nie zweryfikujesz swojego adresu e-mail, nie możesz się zalogować.', 'login_with_new_email' => 'Teraz możesz logować się nowym adresem e-mail.', 'login_with_old_email' => 'Teraz ponownie możesz logować się starym adresem e-mail.', - // attachments 'nr_of_attachments' => 'Jeden załącznik |:count załączników', 'attachments' => 'Załączniki', @@ -566,21 +562,20 @@ return [ 'updated_budget' => 'Zmodyfikowano budżet ":name"', 'update_amount' => 'Aktualizuj kwotę', 'update_budget' => 'Aktualizuj budżet', - 'update_budget_amount_range' => 'Update (expected) available amount between :start and :end', - 'budget_period_navigator' => 'Period navigator', + 'update_budget_amount_range' => 'Zaktualizuj (spodziewaną) dostępną kwotę między :start a :end', + 'budget_period_navigator' => 'Nawigator okresowy', 'info_on_available_amount' => 'Co mam do dyspozycji?', 'available_amount_indication' => 'Skorzystaj z tych kwot, aby uzyskać wskazówkę ile może wynosić Twój całkowity budżet.', 'suggested' => 'Sugerowane', 'average_between' => 'Średnia pomiędzy :start a :end', - // bills: 'matching_on' => 'Pasuje do', 'between_amounts' => 'między :low i :high.', 'repeats' => 'Powtarza się', 'connected_journals' => 'Powiązane transakcje', 'auto_match_on' => 'Automatycznie dopasowane przez Firefly', - 'auto_match_off' => 'Not automatically matched by Firefly', + 'auto_match_off' => 'Niedopasowane automatycznie przez Firefly', 'next_expected_match' => 'Następne oczekiwane dopasowanie', 'delete_bill' => 'Usuń rachunek ":name"', 'deleted_bill' => 'Usunięto rachunek ":name"', @@ -598,7 +593,7 @@ return [ 'not_or_not_yet' => 'Nie (jeszcze)', 'not_expected_period' => 'Nie oczekiwany w tym okresie', 'bill_is_active' => 'Rachunek jest aktywny', - 'bill_expected_between' => 'Expected between :start and :end', + 'bill_expected_between' => 'Oczekiwano między :start a :end', 'bill_will_automatch' => 'Rachunek będzie automatycznie powiązany z pasującymi transakcjami', 'skips_over' => 'pomija', @@ -630,26 +625,26 @@ return [ 'revenue_accounts' => 'Konta przychodów', 'cash_accounts' => 'Konta gotówkowe', 'Cash account' => 'Konto gotówkowe', - 'reconcile_account' => 'Reconcile account ":account"', - 'delete_reconciliation' => 'Delete reconciliation', - 'update_reconciliation' => 'Update reconciliation', - 'amount_cannot_be_zero' => 'The amount cannot be zero', - 'end_of_reconcile_period' => 'End of reconcile period: :period', - 'start_of_reconcile_period' => 'Start of reconcile period: :period', - 'start_balance' => 'Start balance', - 'end_balance' => 'End balance', - 'update_balance_dates_instruction' => 'Match the amounts and dates above to your bank statement, and press "Start reconciling"', - 'select_transactions_instruction' => 'Select the transactions that appear on your bank statement.', - 'select_range_and_balance' => 'First verify the date-range and balances. Then press "Start reconciling"', - 'date_change_instruction' => 'If you change the date range now, any progress will be lost.', - 'update_selection' => 'Update selection', - 'store_reconcile' => 'Store reconciliation', - 'reconciliation_transaction' => 'Reconciliation transaction', - 'Reconciliation' => 'Reconciliation', - 'reconciliation' => 'Reconciliation', - 'reconcile_options' => 'Reconciliation options', - 'reconcile_range' => 'Reconciliation range', - 'start_reconcile' => 'Start reconciling', + 'reconcile_account' => 'Uzgodnij konto ":account"', + 'delete_reconciliation' => 'Usuń uzgodnienie', + 'update_reconciliation' => 'Zaktualizuj uzgodnienie', + 'amount_cannot_be_zero' => 'Kwota nie może wynosić zero', + 'end_of_reconcile_period' => 'Koniec okresu uzgodnienia: :period', + 'start_of_reconcile_period' => 'Początek okresu uzgodnienia: :period', + 'start_balance' => 'Saldo początkowe', + 'end_balance' => 'Saldo końcowe', + 'update_balance_dates_instruction' => 'Dopasuj powyższe kwoty oraz daty do wyciągu bankowego i naciśnij "Rozpocznij uzgadnianie"', + 'select_transactions_instruction' => 'Wybierz transakcje które pojawiają się na wyciągu bankowym.', + 'select_range_and_balance' => 'Najpierw sprawdź zakres dat i salda. Następnie naciśnij "Rozpocznij uzgadnianie"', + 'date_change_instruction' => 'Jeśli teraz zmienisz zakres dat, jakikolwiek postęp zostanie utracony.', + 'update_selection' => 'Zaktualizuj wybór', + 'store_reconcile' => 'Zapisz uzgodnienia', + 'reconciliation_transaction' => 'Transakcja uzgadniania', + 'Reconciliation' => 'Rozrachunek', + 'reconciliation' => 'Rozrachunek', + 'reconcile_options' => 'Opcje uzgadniania', + 'reconcile_range' => 'Zakres rozrachunku', + 'start_reconcile' => 'Rozpocznij uzgadnianie', 'cash' => 'gotówka', 'account_type' => 'Typ konta', 'save_transactions_by_moving' => 'Zapisz te transakcje, przenosząc je do innego konta:', @@ -663,22 +658,22 @@ return [ 'select_more_than_one_budget' => 'Proszę wybierz więcej niż jeden budżet', 'select_more_than_one_tag' => 'Proszę wybierz więcej niż jeden tag', 'account_default_currency' => 'Jeśli wybierzesz inną walutę, nowe transakcje z tego konta będą miały tę walutę wstępnie wybraną.', - 'reconcile_has_more' => 'Your Firefly III ledger has more money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_has_less' => 'Your Firefly III ledger has less money in it than your bank claims you should have. There are several options. Please choose what to do. Then, press "Confirm reconciliation".', - 'reconcile_is_equal' => 'Your Firefly III ledger and your bank statements match. There is nothing to do. Please press "Confirm reconciliation" to confirm your input.', - 'create_pos_reconcile_transaction' => 'Clear the selected transactions, and create a correction adding :amount to this asset account.', - 'create_neg_reconcile_transaction' => 'Clear the selected transactions, and create a correction removing :amount from this asset account.', - 'reconcile_do_nothing' => 'Clear the selected transactions, but do not correct.', - 'reconcile_go_back' => 'You can always edit or delete a correction later.', - 'must_be_asset_account' => 'You can only reconcile asset accounts', - 'reconciliation_stored' => 'Reconciliation stored', + 'reconcile_has_more' => 'Twoja księga główna Firefly III ma więcej pieniędzy niż bank twierdzi, że powinieneś mieć. Istnieje kilka opcji. Wybierz, co zrobić. Następnie naciśnij "Potwierdź uzgodnienie".', + 'reconcile_has_less' => 'Twoja księga główna Firefly III ma mniej pieniędzy niż bank twierdzi, że powinieneś mieć. Istnieje kilka opcji. Wybierz, co zrobić. Następnie naciśnij "Potwierdź uzgodnienie".', + 'reconcile_is_equal' => 'Twoja księga główna Firefly III i wyciągi bankowe są zgodne. Nie ma nic do zrobienia. Naciśnij "Potwierdź uzgodnienie" aby potwierdzić twój wybór.', + 'create_pos_reconcile_transaction' => 'Oznacz wybrane transakcje jako uzgodnione i utwórz korektę dodając :amount do tego konta aktywów.', + 'create_neg_reconcile_transaction' => 'Oznacz wybrane transakcje jako uzgodnione i utwórz korektę usuwając :amount z tego konta aktywów.', + 'reconcile_do_nothing' => 'Oznacz wybrane transakcje jako uzgodnione, ale nic nie poprawiaj.', + 'reconcile_go_back' => 'Możesz zawsze zmodyfikować lub usunąć korektę później.', + 'must_be_asset_account' => 'Możesz uzgodnić tylko konta aktywów', + 'reconciliation_stored' => 'Uzgodnienie zapisane', 'reconcilliation_transaction_title' => 'Reconciliation (:from to :to)', 'reconcile_this_account' => 'Reconcile this account', 'confirm_reconciliation' => 'Confirm reconciliation', - 'submitted_start_balance' => 'Submitted start balance', - 'selected_transactions' => 'Selected transactions (:count)', - 'already_cleared_transactions' => 'Already cleared transactions (:count)', - 'submitted_end_balance' => 'Submitted end balance', + 'submitted_start_balance' => 'Przesłane saldo początkowe', + 'selected_transactions' => 'Wybrane transakcje (:count)', + 'already_cleared_transactions' => 'Transakcje uzgodnione wcześniej (:count)', + 'submitted_end_balance' => 'Przesłane saldo końcowe', // categories: 'new_category' => 'Nowa kategoria', @@ -711,15 +706,15 @@ return [ 'deleted_transfer' => 'Pomyślnie usunięto transfer ":description"', 'stored_journal' => 'Pomyślnie utworzono nową transakcję ":description"', 'select_transactions' => 'Wybierz transakcje', - 'rule_group_select_transactions' => 'Apply ":title" to transactions', - 'rule_select_transactions' => 'Apply ":title" to transactions', + 'rule_group_select_transactions' => 'Zastosuj ":title" do transakcji', + 'rule_select_transactions' => 'Zastosuj ":title" do transakcji', 'stop_selection' => 'Przestań wybierać transakcje', 'reconcile_selected' => 'Uzgodnij', 'mass_delete_journals' => 'Usuń wiele transakcji', 'mass_edit_journals' => 'Modyfikuj wiele transakcji', 'cannot_edit_other_fields' => 'Nie możesz masowo modyfikować innych pól niż te tutaj, ponieważ nie ma miejsca, aby je pokazać. Proszę użyć ikony edycji i edytować je jedno po drugim, jeśli chcesz edytować te pola.', 'no_budget' => '(bez budżetu)', - 'no_budget_squared' => '(no budget)', + 'no_budget_squared' => '(brak budżetu)', 'perm-delete-many' => 'Usuwanie wielu elementów jednocześnie może być bardzo destrukcyjne. Proszę zachować ostrożność.', 'mass_deleted_transactions_success' => 'Usunięto :amount transakcję(i).', 'mass_edited_transactions_success' => 'Zaktualizowano :amount transakcję(i)', @@ -729,14 +724,13 @@ return [ 'opt_group_sharedAsset' => 'Współdzielone konta aktywów', 'opt_group_ccAsset' => 'Karty kredytowe', - // new user: 'welcome' => 'Witaj w Firefly!', 'submit' => 'Prześlij', 'getting_started' => 'Pierwsze kroki', - 'to_get_started' => 'It is good to see you have successfully installed Firefly III. To get started with this tool please enter your bank\'s name and the balance of your main checking account. Do not worry yet if you have multiple accounts. You can add those later. It\'s just that Firefly III needs something to start with.', - 'savings_balance_text' => 'Firefly III will automatically create a savings account for you. By default, there will be no money in your savings account, but if you tell Firefly III the balance it will be stored as such.', - 'finish_up_new_user' => 'That\'s it! You can continue by pressing Submit. You will be taken to the index of Firefly III.', + 'to_get_started' => 'Dobrze, że udało ci się zainstalować Firefly III. Aby rozpocząć korzystanie z tego narzędzia, wprowadź nazwę swojego banku i saldo głównego rachunku bieżącego. Nie martw się, jeśli masz wiele kont. Możesz dodać je później. Po prostu Firefly III potrzebuje czegoś na początek.', + 'savings_balance_text' => 'Firefly III automatycznie utworzy dla ciebie konto oszczędnościowe. Domyślnie na twoim koncie oszczędnościowym nie ma pieniędzy, ale jeśli chcesz, Firefly III może je tam przechowywać.', + 'finish_up_new_user' => 'To wszystko! Możesz kontynuować, naciskając Zatwierdź. Zostaniesz przeniesiony do strony głównej Firefly III.', 'stored_new_accounts_new_user' => 'Yay! Twoje nowe konta zostały zapisane.', // home page: @@ -777,7 +771,7 @@ return [ 'piggyBanks' => 'Skarbonki', 'bills' => 'Rachunki', 'withdrawal' => 'Wypłata', - 'opening_balance' => 'Opening balance', + 'opening_balance' => 'Saldo początkowe', 'deposit' => 'Wpłata', 'account' => 'Konto', 'transfer' => 'Transfer', @@ -800,7 +794,7 @@ return [ 'report_default' => 'Domyślny raport finansowy między :start i :end', 'report_audit' => 'Przegląd historii transakcji między :start i :end', 'report_category' => 'Raport kategorii między :start a :end', - 'report_account' => 'Expense/revenue account report between :start and :end', + 'report_account' => 'Raport dotyczący wydatków/przychodów między :start a :end', 'report_budget' => 'Raport budżetów między :start a :end', 'report_tag' => 'Raport tagów między :start a :end', 'quick_link_reports' => 'Szybkie linki', @@ -815,18 +809,18 @@ return [ 'accountBalances' => 'Salda kont', 'balanceStart' => 'Saldo na początku okresu', 'balanceEnd' => 'Saldo na końcu okresu', - 'splitByAccount' => 'Split by account', - 'coveredWithTags' => 'Covered with tags', - 'leftUnbalanced' => 'Left unbalanced', + 'splitByAccount' => 'Podziel według konta', + 'coveredWithTags' => 'Objęte tagami', + 'leftUnbalanced' => 'Pozostawiono niewyważone', 'leftInBudget' => 'Pozostało w budżecie', 'sumOfSums' => 'Suma sum', 'noCategory' => '(bez kategorii)', - 'notCharged' => 'Not charged (yet)', + 'notCharged' => 'Brak opłaty (jeszcze)', 'inactive' => 'Nieaktywne', 'active' => 'Aktywne', 'difference' => 'Różnica', - 'in' => 'In', - 'out' => 'Out', + 'money_flowing_in' => 'In', + 'money_flowing_out' => 'Out', 'topX' => 'top :number', 'show_full_list' => 'Pokaż całą listę', 'show_only_top' => 'Show only top :number', @@ -836,8 +830,8 @@ return [ 'report_type_category' => 'Raport kategorii', 'report_type_budget' => 'Raport budżetów', 'report_type_tag' => 'Raport tagów', - 'report_type_account' => 'Expense/revenue account report', - 'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.', + 'report_type_account' => 'Raport dotyczący konta wydatków/przychodów', + 'more_info_help' => 'Więcej informacji na temat typów raportów można znaleźć na stronach pomocy. Naciśnij ikonę (?) w prawym górnym rogu.', 'report_included_accounts' => 'Uwzględnione konta', 'report_date_range' => 'Zakres dat', 'report_preset_ranges' => 'Predefiniowane zakresy', @@ -888,10 +882,10 @@ return [ 'account_role_ccAsset' => 'Karta kredytowa', 'budget_chart_click' => 'Kliknij na nazwę budżetu w tabeli powyżej, aby zobaczyć wykres.', 'category_chart_click' => 'Kliknij na nazwę kategorii w tabeli powyżej, aby zobaczyć wykres.', - 'in_out_accounts' => 'Earned and spent per combination', - 'in_out_per_category' => 'Earned and spent per category', - 'out_per_budget' => 'Spent per budget', - 'select_expense_revenue' => 'Select expense/revenue account', + 'in_out_accounts' => 'Zarobione oraz wydane wg kombinacji', + 'in_out_per_category' => 'Zarobione oraz wydane wg kategorii', + 'out_per_budget' => 'Wydane wg budżetu', + 'select_expense_revenue' => 'Wybierz konto wydatków/przychodów', // charts: 'chart' => 'Wykres', @@ -978,7 +972,7 @@ return [ 'setting_single_user_mode' => 'Tryb pojedynczego użytkownika', 'setting_single_user_mode_explain' => 'Domyślnie, Firefly III pozwala na jednego (1) użytkownika: Ciebie. Jest to środek bezpieczeństwa uniemożliwiający innym używanie Twojej instalacji, chyba że im pozwolisz. Kolejne rejestracje są zablokowane. Jeżeli odznaczysz to pole, inne osoby będą mogły używać Twojej instalacji Firefly III (zakładając, że jest ona dostępna w Internecie).', 'store_configuration' => 'Zapisz konfigurację', - 'single_user_administration' => 'User administration for :email', + 'single_user_administration' => 'Administracja użytkownika dla :email', 'edit_user' => 'Modyfikuj użytkownika :email', 'hidden_fields_preferences' => 'Nie wszystkie pola są teraz widoczne. Należy je włączyć w ustawieniach.', 'user_data_information' => 'Dane użytkownika', @@ -986,8 +980,7 @@ return [ 'total_size' => 'łączny rozmiar', 'budget_or_budgets' => 'budżet(y)', 'budgets_with_limits' => 'budżet(y) z określoną kwotą', - 'rule_or_rules' => 'reguła(y)', - 'rulegroup_or_groups' => 'grupa(y) reguł', + 'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)', 'tag_or_tags' => 'tag(ów)', 'configuration_updated' => 'Konfiguracja została zaktualizowana', 'setting_is_demo_site' => 'Strona demonstracyjna', @@ -1001,10 +994,10 @@ return [ 'updated_user' => 'Dane użytkownika zostały zmienione.', 'delete_user' => 'Usuń użytkownika :email', 'user_deleted' => 'Użytkownik został usunięty', - 'send_test_email' => 'Send test email message', - 'send_test_email_text' => 'To see if your installation is capable of sending email, please press this button. You will not see an error here (if any), the log files will reflect any errors. You can press this button as many times as you like. There is no spam control. The message will be sent to :email and should arrive shortly.', - 'send_message' => 'Send message', - 'send_test_triggered' => 'Test was triggered. Check your inbox and the log files.', + 'send_test_email' => 'Wyślij testową wiadomość e-mail', + 'send_test_email_text' => 'Aby sprawdzić, czy Twoja instalacja umożliwia wysyłanie wiadomości e-mail, naciśnij ten przycisk. Nie zobaczysz tutaj błędu (jeśli jest), pliki dziennika będą odzwierciedlać wszelkie błędy. Możesz nacisnąć ten przycisk tyle razy, ile chcesz. Nie ma kontroli spamu. Wiadomość zostanie wysłana do :email i powinna wkrótce nadejść.', + 'send_message' => 'Wyślij wiadomość', + 'send_test_triggered' => 'Test został uruchomiony. Sprawdź swoją skrzynkę odbiorczą i pliki dziennika.', // links 'journal_link_configuration' => 'Konfiguracja łączy między transakcjami', @@ -1044,15 +1037,14 @@ return [ 'deleted_link' => 'Usunięto powiązanie', // link translations: - 'relates to_inward' => 'relates to', - 'is (partially) refunded by_inward' => 'is (partially) refunded by', - 'is (partially) paid for by_inward' => 'is (partially) paid for by', - 'is (partially) reimbursed by_inward' => 'is (partially) reimbursed by', - 'relates to_outward' => 'relates to', - '(partially) refunds_outward' => '(partially) refunds', - '(partially) pays for_outward' => '(partially) pays for', - '(partially) reimburses_outward' => '(partially) reimburses', - + 'relates to_inward' => 'odnosi się do', + 'is (partially) refunded by_inward' => 'jest (częściowo) zwracane przez', + 'is (partially) paid for by_inward' => 'jest (częściowo) opłacane przez', + 'is (partially) reimbursed by_inward' => 'jest (częściowo) refundowany przez', + 'relates to_outward' => 'odnosi się do', + '(partially) refunds_outward' => '(częściowo) refundowany', + '(partially) pays for_outward' => '(częściowo) płaci za', + '(partially) reimburses_outward' => '(częściowo) refundowany', // split a transaction: 'splits' => 'Podziały', @@ -1062,21 +1054,21 @@ return [ 'split_this_withdrawal' => 'Podziel tą wypłatę', 'split_this_deposit' => 'Podziel tą wpłatę', 'split_this_transfer' => 'Podziel ten transfer', - 'cannot_edit_multiple_source' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple source accounts.', - 'cannot_edit_multiple_dest' => 'You cannot edit splitted transaction #:id with description ":description" because it contains multiple destination accounts.', - 'cannot_edit_reconciled' => 'You cannot edit transaction #:id with description ":description" because it has been marked as reconciled.', - 'cannot_edit_opening_balance' => 'You cannot edit the opening balance of an account.', + 'cannot_edit_multiple_source' => 'Nie można edytować podzielonej transakcji #:id z opisem ":description", ponieważ zawiera ona wiele kont źródłowych.', + 'cannot_edit_multiple_dest' => 'Nie można edytować podzielonej transakcji #:id z opisem ":description", ponieważ zawiera ona wiele kont docelowych.', + 'cannot_edit_reconciled' => 'Nie można edytować transakcji #:id z opisem ":description", ponieważ została ona zaznaczona jako uzgodniona.', + 'cannot_edit_opening_balance' => 'Nie możesz edytować wstępnego salda konta.', 'no_edit_multiple_left' => 'Nie wybrałeś żadnych poprawnych transakcji do edycji.', 'cannot_convert_split_journal' => 'Nie można przekonwertować podzielonej transakcji', // import bread crumbs and titles: 'import' => 'Importuj', 'import_data' => 'Importuj dane', - 'import_general_index_file' => 'Import a file', - 'import_from_bunq' => 'Import from bunq', - 'import_using_spectre' => 'Import using Spectre', - 'import_using_plaid' => 'Import using Plaid', - 'import_config_bread_crumb' => 'Set up your import', + 'import_general_index_file' => 'Importuj plik', + 'import_from_bunq' => 'Importuj z bunq', + 'import_using_spectre' => 'Importuj za pomocą Spectre', + 'import_using_plaid' => 'Importuj za pomocą Plaid', + 'import_config_bread_crumb' => 'Skonfiguruj swój import', // import index page: 'import_index_title' => 'Importuj dane do Firefly III', @@ -1092,24 +1084,24 @@ return [ 'no_accounts_imperative_asset' => 'Aby rozpocząć korzystanie z Firefly III należy utworzyć co najmniej jedno konto aktywów. Zróbmy je więc teraz:', 'no_accounts_create_asset' => 'Utwórz konto aktywów', 'no_accounts_title_expense' => 'Stwórzmy konto wydatków!', - 'no_accounts_intro_expense' => 'You have no expense accounts yet. Expense accounts are the places where you spend money, such as shops and supermarkets.', - 'no_accounts_imperative_expense' => 'Expense accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_intro_expense' => 'Nie masz jeszcze żadnych kont wydatków. Konta wydatków to miejsca, w których wydajesz pieniądze, takie jak sklepy i supermarkety.', + 'no_accounts_imperative_expense' => 'Konta wydatków są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedno teraz:', 'no_accounts_create_expense' => 'Utwórz konto wydatków', 'no_accounts_title_revenue' => 'Stwórzmy konto przychodów!', - 'no_accounts_intro_revenue' => 'You have no revenue accounts yet. Revenue accounts are the places where you receive money from, such as your employer.', - 'no_accounts_imperative_revenue' => 'Revenue accounts are created automatically when you create transactions, but you can create one manually too, if you want. Let\'s create one now:', + 'no_accounts_intro_revenue' => 'Nie masz jeszcze żadnych kont przychodów. Konta przychodów to miejsca, z których dostajesz pieniądze, takie jak pracodawca.', + 'no_accounts_imperative_revenue' => 'Konta przychodów są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedno teraz:', 'no_accounts_create_revenue' => 'Utwórz konto przychodów', 'no_budgets_title_default' => 'Stwórzmy budżet', - 'no_budgets_intro_default' => 'You have no budgets yet. Budgets are used to organise your expenses into logical groups, which you can give a soft-cap to limit your expenses.', - 'no_budgets_imperative_default' => 'Budgets are the basic tools of financial management. Let\'s create one now:', + 'no_budgets_intro_default' => 'Nie masz jeszcze żadnych budżetów. Budżety są wykorzystywane do organizowania twoich wydatków w logiczne grupy, które możesz obserwować, aby ograniczyć swoje wydatki.', + 'no_budgets_imperative_default' => 'Budżety są podstawowymi narzędziami zarządzania finansami. Stwórzmy jeden teraz:', 'no_budgets_create_default' => 'Stwórz budżet', 'no_categories_title_default' => 'Stwórzmy kategorię!', - 'no_categories_intro_default' => 'You have no categories yet. Categories are used to fine tune your transactions and label them with their designated category.', - 'no_categories_imperative_default' => 'Categories are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', - 'no_categories_create_default' => 'Create a category', + 'no_categories_intro_default' => 'Nie masz jeszcze żadnych kategorii. Kategorie służą do precyzyjnego dostrajania transakcji i oznaczania ich zgodnie z wyznaczoną kategorią.', + 'no_categories_imperative_default' => 'Kategorie są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie, jeśli chcesz. Stwórzmy jedną teraz:', + 'no_categories_create_default' => 'Stwórz kategorię', 'no_tags_title_default' => 'Stwórzmy tag!', - 'no_tags_intro_default' => 'You have no tags yet. Tags are used to fine tune your transactions and label them with specific keywords.', - 'no_tags_imperative_default' => 'Tags are created automatically when you create transactions, but you can create one manually too. Let\'s create one now:', + 'no_tags_intro_default' => 'Nie masz jeszcze tagów. Tagi służą do precyzyjnego dostrajania transakcji i oznaczania ich zgodnie konkretnymi słowami kluczowymi.', + 'no_tags_imperative_default' => 'Tagi są tworzone automatycznie podczas tworzenia transakcji, ale możesz również utworzyć je ręcznie. Stwórzmy jeden teraz:', 'no_tags_create_default' => 'Utwórz tag', 'no_transactions_title_withdrawal' => 'Stwórzmy wydatek!', 'no_transactions_intro_withdrawal' => 'Jeszcze nie masz wydatków. Powinieneś utworzyć wydatki aby rozpocząć zarządzanie swoimi finansami.', @@ -1118,19 +1110,17 @@ return [ 'no_transactions_title_deposit' => 'Stwórzmy przychód!', 'no_transactions_intro_deposit' => 'Jeszcze nie masz przychodów. Powinieneś utworzyć przychody aby rozpocząć zarządzanie swoimi finansami.', 'no_transactions_imperative_deposit' => 'Otrzymałeś trochę pieniędzy? Zatem powinieneś je zapisać:', - 'no_transactions_create_deposit' => 'Create a deposit', + 'no_transactions_create_deposit' => 'Stwórz depozyt', 'no_transactions_title_transfers' => 'Stwórzmy transfer!', - 'no_transactions_intro_transfers' => 'You have no transfers yet. When you move money between asset accounts, it is recorded as a transfer.', - 'no_transactions_imperative_transfers' => 'Have you moved some money around? Then you should write it down:', + 'no_transactions_intro_transfers' => 'Nie masz jeszcze żadnych transferów. Przenosząc pieniądze między kontami aktywów, rejestruje się je jako transfer.', + 'no_transactions_imperative_transfers' => 'Czy przenosiłeś trochę pieniędzy? Zatem powinieneś to zapisać:', 'no_transactions_create_transfers' => 'Utwórz transfer', 'no_piggies_title_default' => 'Stwórzmy skarbonkę!', 'no_piggies_intro_default' => 'Nie posiadasz jeszcze żadnych skarbonek. Możesz stworzyć skarbonki aby dzielić swoje oszczędności i śledzić na co oszczędzasz.', 'no_piggies_imperative_default' => 'Oszczędzasz pieniądze na coś? Utwórz skarbonkę i śledź:', 'no_piggies_create_default' => 'Utwórz nową skarbonkę', 'no_bills_title_default' => 'Stwórzmy rachunek!', - 'no_bills_intro_default' => 'You have no bills yet. You can create bills to keep track of regular expenses, like your rent or insurance.', - 'no_bills_imperative_default' => 'Do you have such regular bills? Create a bill and keep track of your payments:', + 'no_bills_intro_default' => 'Nie masz jeszcze żadnych rachunków. Można tworzyć rachunki, aby śledzić regularne wydatki, takie jak czynsz czy ubezpieczenie.', + 'no_bills_imperative_default' => 'Czy masz takie regularne rachunki? Utwórz rachunek i śledź swoje płatności:', 'no_bills_create_default' => 'Utwórz rachunek', - - ]; diff --git a/resources/lang/pl_PL/form.php b/resources/lang/pl_PL/form.php index 11ded24ae8..d00e7bd278 100644 --- a/resources/lang/pl_PL/form.php +++ b/resources/lang/pl_PL/form.php @@ -18,11 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - // new user: 'bank_name' => 'Nazwa banku', 'bank_balance' => 'Saldo', @@ -57,7 +55,7 @@ return [ 'account_id' => 'Konto aktywów', 'budget_id' => 'Budżet', 'openingBalance' => 'Bilans otwarcia', - 'tagMode' => 'Tag mode', + 'tagMode' => 'Tryb tagów', 'tag_position' => 'Lokalizacja taga', 'virtualBalance' => 'Wirtualne saldo', 'targetamount' => 'Kwota docelowa', @@ -90,7 +88,6 @@ return [ 'convert_Deposit' => 'Konwertuj wpłatę', 'convert_Transfer' => 'Konwertuj transfer', - 'amount' => 'Kwota', 'date' => 'Data', 'interest_date' => 'Data odsetek', @@ -101,8 +98,8 @@ return [ 'deletePermanently' => 'Usuń trwale', 'cancel' => 'Anuluj', 'targetdate' => 'Data docelowa', - 'startdate' => 'Start date', - 'tag' => 'Tag', + 'startdate' => 'Data rozpoczęcia', + 'tag' => 'Znacznik', 'under' => 'Poniżej', 'symbol' => 'Symbol', 'code' => 'Kod', @@ -111,7 +108,7 @@ return [ 'creditCardNumber' => 'Numer karty kredytowej', 'has_headers' => 'Nagłówki', 'date_format' => 'Format daty', - 'specifix' => 'Bank- or file specific fixes', + 'specifix' => 'Poprawki dla banku lub pliku', 'attachments[]' => 'Załączniki', 'store_new_withdrawal' => 'Zapisz nową wypłatę', 'store_new_deposit' => 'Zapisz nową wpłatę', @@ -161,17 +158,17 @@ return [ 'journal_link_areYouSure' => 'Czy na pewno chcesz usunąć powiązanie między :source a :destination?', 'linkType_areYouSure' => 'Czy na pewno chcesz usunąć typ łącza ":name" (":inward" / ":outward")?', 'permDeleteWarning' => 'Usuwanie rzeczy z Firefly jest trwałe i nie można tego cofnąć.', - 'mass_make_selection' => 'You can still prevent items from being deleted by removing the checkbox.', + 'mass_make_selection' => 'Nadal można zapobiec usuwaniu plików, usuwając zaznaczenie.', 'delete_all_permanently' => 'Trwale usuń zaznaczone', 'update_all_journals' => 'Zmodyfikuj te transakcje', - 'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.|All :count transactions connected to this account will be deleted as well.', - 'also_delete_connections' => 'The only transaction linked with this link type will lose this connection.|All :count transactions linked with this link type will lose their connection.', - 'also_delete_rules' => 'The only rule connected to this rule group will be deleted as well.|All :count rules connected to this rule group will be deleted as well.', - 'also_delete_piggyBanks' => 'The only piggy bank connected to this account will be deleted as well.|All :count piggy bank connected to this account will be deleted as well.', - 'bill_keep_transactions' => 'The only transaction connected to this bill will not be deleted.|All :count transactions connected to this bill will spared deletion.', - 'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.', - 'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.', - 'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.', + 'also_delete_transactions' => 'Jedynie transakcja związana z tym kontem zostanie również usunięta. |Wszystkie :count transakcji powiązanych z tym kontem zostanie również usunięta.', + 'also_delete_connections' => 'Jedynie transakcja połączona z tym typem łącza utraci to połączenie. |Wszystkie :count transakcji połączone tym typem łącza utracą swoje połączenie.', + 'also_delete_rules' => 'Jedynie reguła połączona z tą grupą reguł utraci to połączenie. |Wszystkie :count reguły połączone tą grupą reguł zostaną również usunięte.', + 'also_delete_piggyBanks' => 'Jedynie skarbonka połączona z tym kontem zostanie również usunięta. |Wszystkie :count skarbonek połączone z tym kontem zostaną usunięte.', + 'bill_keep_transactions' => 'Jedyna transakcja związana z tym rachunkiem nie zostanie usunięta. | Wszystkie: transakcje związane z tym rachunkiem zostaną oszczędzone.', + 'budget_keep_transactions' => 'Jedynie transakcja związana z tym rachunkiem nie zostanie usunięta. |Wszystkie :count transakcji połączonych z tym rachunkiem zostaną oszczędzone.', + 'category_keep_transactions' => 'Jedynie transakcja związana z tą kategorią nie zostanie usunięta. |Wszystkie :count transakcje połączone z tą kategorią zostaną oszczędzone.', + 'tag_keep_transactions' => 'Jedynie transakcja połączona z tym tagiem nie zostanie usunięta. |Wszystkie :count transakcji połączonych z tym tagiem zostaną oszczędzone.', 'email' => 'Adres email', 'password' => 'Hasło', @@ -179,13 +176,11 @@ return [ 'blocked' => 'Jest zablokowany?', 'blocked_code' => 'Powód blokady', - // admin 'domain' => 'Domena', 'single_user_mode' => 'Wyłącz rejestrację użytkowników', 'is_demo_site' => 'Jest stroną demo', - // import 'import_file' => 'Importuj plik', 'configuration_file' => 'Plik konfiguracyjny', @@ -193,16 +188,15 @@ return [ 'csv_comma' => 'Przecinek (,)', 'csv_semicolon' => 'Średnik (;)', 'csv_tab' => 'Tabulator (niewidoczny)', - 'csv_delimiter' => 'CSV field delimiter', + 'csv_delimiter' => 'Ogranicznik pola CSV', 'csv_import_account' => 'Domyślne konto importu', 'csv_config' => 'Konfiguracja importu CSV', - 'client_id' => 'Client ID', - 'service_secret' => 'Service secret', - 'app_secret' => 'App secret', - 'public_key' => 'Public key', - 'country_code' => 'Country code', - 'provider_code' => 'Bank or data-provider', - + 'client_id' => 'ID klienta', + 'service_secret' => 'Sekret usługi', + 'app_secret' => 'Sekret aplikacji', + 'public_key' => 'Klucz publiczny', + 'country_code' => 'Kod kraju', + 'provider_code' => 'Dostawca banku lub danych', 'due_date' => 'Termin realizacji', 'payment_date' => 'Data płatności', diff --git a/resources/lang/pl_PL/import.php b/resources/lang/pl_PL/import.php index 61c4516fac..860bfe9321 100644 --- a/resources/lang/pl_PL/import.php +++ b/resources/lang/pl_PL/import.php @@ -18,141 +18,143 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); - return [ // status of import: - 'status_wait_title' => 'Please hold...', - 'status_wait_text' => 'This box will disappear in a moment.', - 'status_fatal_title' => 'A fatal error occurred', - 'status_fatal_text' => 'A fatal error occurred, which the import-routine cannot recover from. Please see the explanation in red below.', - 'status_fatal_more' => 'If the error is a time-out, the import will have stopped half-way. For some server configurations, it is merely the server that stopped while the import keeps running in the background. To verify this, check out the log files. If the problem persists, consider importing over the command line instead.', - 'status_ready_title' => 'Import is ready to start', - 'status_ready_text' => 'The import is ready to start. All the configuration you needed to do has been done. Please download the configuration file. It will help you with the import should it not go as planned. To actually run the import, you can either execute the following command in your console, or run the web-based import. Depending on your configuration, the console import will give you more feedback.', - 'status_ready_noconfig_text' => 'The import is ready to start. All the configuration you needed to do has been done. To actually run the import, you can either execute the following command in your console, or run the web-based import. Depending on your configuration, the console import will give you more feedback.', - 'status_ready_config' => 'Download configuration', - 'status_ready_start' => 'Start the import', - 'status_ready_share' => 'Please consider downloading your configuration and sharing it at the import configuration center. This will allow other users of Firefly III to import their files more easily.', - 'status_job_running' => 'The import is running.. Please wait..', - 'status_job_finished' => 'The import has finished!', - 'status_running_title' => 'The import is running', - 'status_running_placeholder' => 'Please hold for an update...', - 'status_finished_title' => 'Import routine finished', - 'status_finished_text' => 'The import routine has imported your data.', - 'status_errors_title' => 'Errors during the import', - 'status_errors_single' => 'An error has occurred during the import. It does not appear to be fatal.', - 'status_errors_multi' => 'Some errors occurred during the import. These do not appear to be fatal.', - 'status_bread_crumb' => 'Import status', - 'status_sub_title' => 'Import status', - 'config_sub_title' => 'Set up your import', - 'status_finished_job' => 'The transactions imported can be found in tag :tag.', - 'import_with_key' => 'Import with key \':key\'', + 'status_wait_title' => 'Proszę czekać...', + 'status_wait_text' => 'To pole za chwilę zniknie.', + 'status_fatal_title' => 'Wystąpił błąd krytyczny', + 'status_fatal_text' => 'Wystąpił błąd krytyczny, którego procedura importu nie może odzyskać. Zobacz wyjaśnienie na czerwono poniżej.', + 'status_fatal_more' => 'Jeśli przekroczono limit czasu, import zostanie zatrzymany w połowie. W przypadku niektórych konfiguracji serwerów, jedynie serwer przestał odpowiadać podczas gdy importowanie nadal działa w tle. Aby to zweryfikować, należy sprawdzić pliki dziennika. Jeśli problem będzie się powtarzał, należy rozważyć Importowanie poprzez konsolę.', + 'status_ready_title' => 'Import jest gotowy do uruchomienia', + 'status_ready_text' => 'Import jest gotowy do uruchomienia. Cała konfiguracja, którą musisz wykonać, została wykonana. Proszę pobierz plik konfiguracyjny. Pomoże ci w imporcie, jeśli nie pójdzie zgodnie z planem. Aby faktycznie uruchomić import, możesz wykonać następujące polecenie w konsoli lub uruchomić importowanie przez Internet. W zależności od konfiguracji import przez konsolę daje więcej informacji zwrotnych.', + 'status_ready_noconfig_text' => 'Import jest gotowy do uruchomienia. Cała konfiguracja, którą musisz wykonać, została wykonana. Aby faktycznie uruchomić import, możesz wykonać następujące polecenie w konsoli lub uruchomić importowanie przez Internet. W zależności od konfiguracji import przez konsolę daje więcej informacji zwrotnych.', + 'status_ready_config' => 'Pobierz konfigurację', + 'status_ready_start' => 'Rozpocznij import', + 'status_ready_share' => 'Rozważ pobranie konfiguracji i udostępnienie jej w centrum konfiguracyjnym portali. Umożliwi to innym użytkownikom Firefly III łatwiejsze importowanie plików.', + 'status_job_new' => 'The job is brand new.', + 'status_job_configuring' => 'The import is being configured.', + 'status_job_configured' => 'The import is configured.', + 'status_job_running' => 'Import w toku... Proszę czekać..', + 'status_job_error' => 'The job has generated an error.', + 'status_job_finished' => 'Importowanie zostało zakończone!', + 'status_running_title' => 'Trwa importowanie', + 'status_running_placeholder' => 'Proszę czekać na aktualizację...', + 'status_finished_title' => 'Zakończono procedurę importu', + 'status_finished_text' => 'Twoje dane zostały zaimportowane.', + 'status_errors_title' => 'Błędy podczas importowania', + 'status_errors_single' => 'Wystąpił błąd podczas importowania. Nie wydaje się być krytyczny.', + 'status_errors_multi' => 'Wystąpił błąd podczas importowania. Nie wydaje się być krytyczny.', + 'status_bread_crumb' => 'Status importu', + 'status_sub_title' => 'Status importu', + 'config_sub_title' => 'Skonfiguruj import', + 'status_finished_job' => 'Zaimportowane transakcje można znaleźć w tagu : tag.', + 'import_with_key' => 'Import z kluczem \':key\'', // file: upload something: - 'file_upload_title' => 'Import setup (1/4) - Upload your file', - 'file_upload_text' => 'This routine will help you import files from your bank into Firefly III. Please check out the help pages in the top right corner.', - 'file_upload_fields' => 'Fields', - 'file_upload_help' => 'Select your file', - 'file_upload_config_help' => 'If you have previously imported data into Firefly III, you may have a configuration file, which will pre-set configuration values for you. For some banks, other users have kindly provided their configuration file', - 'file_upload_type_help' => 'Select the type of file you will upload', - 'file_upload_submit' => 'Upload files', + 'file_upload_title' => 'Konfiguracja importu (1/4) - Prześlij swój plik', + 'file_upload_text' => 'Ta procedura pomoże Ci importować pliki z twojego banku do Firefly III. Sprawdź stronę pomocy w prawym górnym rogu.', + 'file_upload_fields' => 'Pola', + 'file_upload_help' => 'Wybierz swój plik', + 'file_upload_config_help' => 'Jeśli wcześniej importowałeś dane do Firefly III, możesz posiadać plik konfiguracji, który wstępnie ustawi wartości parametrów konfiguracyjnych za Ciebie. Dla niektórych banków, inni użytkownicy uprzejmie dostarczyli swoje pliki konfiguracji', + 'file_upload_type_help' => 'Wybierz typ pliku, który będziesz przesyłać', + 'file_upload_submit' => 'Prześlij pliki', // file: upload types - 'import_file_type_csv' => 'CSV (comma separated values)', + 'import_file_type_csv' => 'CSV (wartości oddzielone przecinkami)', // file: initial config for CSV - 'csv_initial_title' => 'Import setup (2/4) - Basic CSV import setup', - 'csv_initial_text' => 'To be able to import your file correctly, please validate the options below.', - 'csv_initial_box' => 'Basic CSV import setup', - 'csv_initial_box_title' => 'Basic CSV import setup options', - 'csv_initial_header_help' => 'Check this box if the first row of your CSV file are the column titles.', - 'csv_initial_date_help' => 'Date time format in your CSV. Follow the format like this page indicates. The default value will parse dates that look like this: :dateExample.', - 'csv_initial_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.', - 'csv_initial_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.', - 'csv_initial_submit' => 'Continue with step 3/4', + 'csv_initial_title' => 'Konfiguracja importu (2/4) - Podstawowa konfiguracja importu CSV', + 'csv_initial_text' => 'Aby móc poprawnie zaimportować plik, sprawdź poprawność poniższych opcji.', + 'csv_initial_box' => 'Podstawowa konfiguracja importu CSV', + 'csv_initial_box_title' => 'Podstawowe opcje konfiguracji importu CSV', + 'csv_initial_header_help' => 'Zaznacz to pole, jeśli pierwszy wiersz w pliku CSV to nazwy kolumn.', + 'csv_initial_date_help' => 'Format daty i czasu w pliku CSV. Format powinien być zgodny z opisem na tej stronie. Wartość domyślna będzie analizować daty, które wyglądają następująco: :dateExample.', + 'csv_initial_delimiter_help' => 'Wybierz separator pola, który jest używany w pliku wejściowym. Jeśli nie jesteś pewien, przecinek jest najbezpieczniejszym rozwiązaniem.', + 'csv_initial_import_account_help' => 'Jeśli Twój plik CSV NIE zawiera informacji o Twoich kontach aktywów, użyj tego menu, aby wybrać, do którego konta należą transakcje w pliku CSV.', + 'csv_initial_submit' => 'Przejdź do kroku 3/4', // file: new options: - 'file_apply_rules_title' => 'Apply rules', - 'file_apply_rules_description' => 'Apply your rules. Note that this slows the import significantly.', - 'file_match_bills_title' => 'Match bills', - 'file_match_bills_description' => 'Match your bills to newly created withdrawals. Note that this slows the import significantly.', + 'file_apply_rules_title' => 'Zastosuj reguły', + 'file_apply_rules_description' => 'Zastosuj swoje zasady. Zwróć uwagę, że znacznie spowalnia to imprtowanie.', + 'file_match_bills_title' => 'Dopasuj rachunki', + 'file_match_bills_description' => 'Dopasuj swoje rachunki do nowo utworzonych wypłat. Zwróć uwagę, że znacznie spowalnia to importowanie.', // file: roles config - 'csv_roles_title' => 'Import setup (3/4) - Define each column\'s role', - 'csv_roles_text' => 'Each column in your CSV file contains certain data. Please indicate what kind of data the importer should expect. The option to "map" data means that you will link each entry found in the column to a value in your database. An often mapped column is the column that contains the IBAN of the opposing account. That can be easily matched to IBAN\'s present in your database already.', - 'csv_roles_table' => 'Table', - 'csv_roles_column_name' => 'Name of column', - 'csv_roles_column_example' => 'Column example data', - 'csv_roles_column_role' => 'Column data meaning', - 'csv_roles_do_map_value' => 'Map these values', - 'csv_roles_column' => 'Column', - 'csv_roles_no_example_data' => 'No example data available', - 'csv_roles_submit' => 'Continue with step 4/4', - 'csv_roles_warning' => 'At the very least, mark one column as the amount-column. It is advisable to also select a column for the description, date and the opposing account.', - + 'csv_roles_title' => 'Konfiguracja importu (3/4) - Zdefiniuj rolę każdej kolumny', + 'csv_roles_text' => 'Każda kolumna w pliku CSV zawiera określone dane. Proszę wskazać, jakiego rodzaju danych importer powinien oczekiwać. Opcja "mapowania" danych oznacza, że każdy wpis znaleziony w kolumnie zostanie połączony z wartością w bazie danych. Często odwzorowywana kolumna to kolumna zawierająca numer IBAN konta przeciwnego. Można go łatwo dopasować do obecnego numeru IBAN w bazie danych.', + 'csv_roles_table' => 'Tabela', + 'csv_roles_column_name' => 'Nazwa kolumny', + 'csv_roles_column_example' => 'Przykładowe dane kolumny', + 'csv_roles_column_role' => 'Znaczenie danych w kolumnie', + 'csv_roles_do_map_value' => 'Zmapuj te wartości', + 'csv_roles_column' => 'Kolumna', + 'csv_roles_no_example_data' => 'Brak dostępnych przykładowych danych', + 'csv_roles_submit' => 'Przejdź do kroku 4/4', + 'csv_roles_warning' => 'Zaznacz jedną z kolumn jako kolumnę z kwotami. Wskazane jest również wybranie kolumny dla opisu, daty oraz konta przeciwnego.', // file: map data - 'file_map_title' => 'Import setup (4/4) - Connect import data to Firefly III data', - 'file_map_text' => 'In the following tables, the left value shows you information found in your uploaded file. It is your task to map this value, if possible, to a value already present in your database. Firefly will stick to this mapping. If there is no value to map to, or you do not wish to map the specific value, select nothing.', - 'file_map_field_value' => 'Field value', - 'file_map_field_mapped_to' => 'Mapped to', - 'map_do_not_map' => '(do not map)', - 'file_map_submit' => 'Start the import', + 'file_map_title' => 'Ustawienia importu (4/4) - Połącz dane importu z danymi Firefly III', + 'file_map_text' => 'W poniższych tabelach lewa wartość pokazuje informacje znalezione w przesłanym pliku. Twoim zadaniem jest zamapowanie tej wartości, jeśli to możliwe, na wartość już obecną w bazie danych. Firefly będzie trzymać się tego mapowania. Jeśli nie ma wartości do odwzorowania lub nie chcesz mapować określonej wartości, nie wybieraj niczego.', + 'file_map_field_value' => 'Wartość pola', + 'file_map_field_mapped_to' => 'Zmapowane do', + 'map_do_not_map' => '(nie mapuj)', + 'file_map_submit' => 'Rozpocznij import', // map things. - 'column__ignore' => '(ignore this column)', - 'column_account-iban' => 'Asset account (IBAN)', - 'column_account-id' => 'Asset account ID (matching Firefly)', - 'column_account-name' => 'Asset account (name)', - 'column_amount' => 'Amount', - 'column_amount_debit' => 'Amount (debit column)', - 'column_amount_credit' => 'Amount (credit column)', - 'column_amount-comma-separated' => 'Amount (comma as decimal separator)', - 'column_bill-id' => 'Bill ID (matching Firefly)', - 'column_bill-name' => 'Bill name', - 'column_budget-id' => 'Budget ID (matching Firefly)', - 'column_budget-name' => 'Budget name', - 'column_category-id' => 'Category ID (matching Firefly)', - 'column_category-name' => 'Category name', - 'column_currency-code' => 'Currency code (ISO 4217)', - 'column_currency-id' => 'Currency ID (matching Firefly)', - 'column_currency-name' => 'Currency name (matching Firefly)', - 'column_currency-symbol' => 'Currency symbol (matching Firefly)', - 'column_date-interest' => 'Interest calculation date', - 'column_date-book' => 'Transaction booking date', - 'column_date-process' => 'Transaction process date', - 'column_date-transaction' => 'Date', - 'column_description' => 'Description', - 'column_opposing-iban' => 'Opposing account (IBAN)', - 'column_opposing-id' => 'Opposing account ID (matching Firefly)', - 'column_external-id' => 'External ID', - 'column_opposing-name' => 'Opposing account (name)', - 'column_rabo-debit-credit' => 'Rabobank specific debit/credit indicator', - 'column_ing-debit-credit' => 'ING specific debit/credit indicator', - 'column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID', - 'column_sepa-ct-op' => 'SEPA Credit Transfer opposing account', - 'column_sepa-db' => 'SEPA Direct Debit', - 'column_tags-comma' => 'Tags (comma separated)', - 'column_tags-space' => 'Tags (space separated)', - 'column_account-number' => 'Asset account (account number)', - 'column_opposing-number' => 'Opposing account (account number)', + 'column__ignore' => '(zignoruj tę kolumnę)', + 'column_account-iban' => 'Rachunek aktywów (IBAN)', + 'column_account-id' => 'ID konta aktywów (taki sam jak w Firefly)', + 'column_account-name' => 'Konto aktywów (nazwa)', + 'column_amount' => 'Kwota', + 'column_amount_debit' => 'Kwota (kolumna debetowa)', + 'column_amount_credit' => 'Kwota (kolumna kredytowa)', + 'column_amount-comma-separated' => 'Kwota (przecinek jako separator dziesiętny)', + 'column_bill-id' => 'ID rachunku (taki sam jak w Firefly)', + 'column_bill-name' => 'Nazwa rachunku', + 'column_budget-id' => 'ID budżetu (taki sam jak w Firefly)', + 'column_budget-name' => 'Nazwa budżetu', + 'column_category-id' => 'ID kategorii (taki sam jak w Firefly)', + 'column_category-name' => 'Nazwa kategorii', + 'column_currency-code' => 'Kod waluty (ISO 4217)', + 'column_currency-id' => 'ID waluty (taki sam jak w Firefly)', + 'column_currency-name' => 'Nazwa waluty (taka sama jak w Firefly)', + 'column_currency-symbol' => 'Symbol waluty (taki sam jak w Firefly)', + 'column_date-interest' => 'Data obliczenia odsetek', + 'column_date-book' => 'Data rezerwacji transakcji', + 'column_date-process' => 'Data rezerwacji transkacji', + 'column_date-transaction' => 'Data', + 'column_description' => 'Opis', + 'column_opposing-iban' => 'Przeciwstawne konto (IBAN)', + 'column_opposing-id' => 'Przeciwstawne konto (takie same jak w Firefly)', + 'column_external-id' => 'Zewnętrzne ID', + 'column_opposing-name' => 'Przeciwstawne konto (nazwa)', + 'column_rabo-debit-credit' => 'Rabobank określony wskaźnik obciążenia/kredytu', + 'column_ing-debit-credit' => 'Specyficzny wskaźnik obciążenia/kredytu ING', + 'column_sepa-ct-id' => 'SEPA transferu od końca do końca ID', + 'column_sepa-ct-op' => 'SEPA przelew na przeciwne konto', + 'column_sepa-db' => 'SEPA polecenie zapłaty', + 'column_tags-comma' => 'Tagi (oddzielaj przecinkami)', + 'column_tags-space' => 'Tagi (oddzielone spacjami)', + 'column_account-number' => 'Konto aktywów (numer konta)', + 'column_opposing-number' => 'Konto przeciwne (numer konta)', + 'column_note' => 'Uwagi', // bunq - 'bunq_prerequisites_title' => 'Prerequisites for an import from bunq', - 'bunq_prerequisites_text' => 'In order to import from bunq, you need to obtain an API key. You can do this through the app.', + 'bunq_prerequisites_title' => 'Wymagania wstępne dla importu z bunq', + 'bunq_prerequisites_text' => 'Aby zaimportować z bunq, musisz uzyskać klucz API. Możesz to zrobić za pomocą aplikacji.', // Spectre: - 'spectre_title' => 'Import using Spectre', - 'spectre_prerequisites_title' => 'Prerequisites for an import using Spectre', - 'spectre_prerequisites_text' => 'In order to import data using the Spectre API, you need to prove some secrets. They can be found on the secrets page.', - 'spectre_enter_pub_key' => 'The import will only work when you enter this public key on your security page.', - 'spectre_select_country_title' => 'Select a country', - 'spectre_select_country_text' => 'Firefly III has a large selection of banks and sites from which Spectre can download transactional data. These banks are sorted by country. Please not that there is a "Fake Country" for when you wish to test something. If you wish to import from other financial tools, please use the imaginary country called "Other financial applications". By default, Spectre only allows you to download data from fake banks. Make sure your status is "Live" on your Dashboard if you wish to download from real banks.', - 'spectre_select_provider_title' => 'Select a bank', - 'spectre_select_provider_text' => 'Spectre supports the following banks or financial services grouped under :country. Please pick the one you wish to import from.', - 'spectre_input_fields_title' => 'Input mandatory fields', - 'spectre_input_fields_text' => 'The following fields are mandated by ":provider" (from :country).', - 'spectre_instructions_english' => 'These instructions are provided by Spectre for your convencience. They are in English:', -]; \ No newline at end of file + 'spectre_title' => 'Importuj za pomocą Spectre', + 'spectre_prerequisites_title' => 'Wymagania wstępne do importowania za pomocą Spectre', + 'spectre_prerequisites_text' => 'Aby importować dane za pomocą interfejsu Spectre API, musisz udowodnić pewne sekrety. Można je znaleźć na stronie sekretów.', + 'spectre_enter_pub_key' => 'Importowanie będzie działać tylko po wpisaniu tego klucza publicznego na stronie zabezpieczeń.', + 'spectre_select_country_title' => 'Wybierz kraj', + 'spectre_select_country_text' => 'Firefly III ma duży wybór banków i stron, z których Spectre może pobierać dane transakcyjne. Te banki są sortowane według krajów. Proszę nie pamiętać, że istnieje "Fałszywy Kraj", gdy chce się coś przetestować. Jeśli chcesz importować z innych narzędzi finansowych, użyj wyimaginowanego kraju o nazwie "Inne aplikacje finansowe". Domyślnie Spectre pozwala tylko pobierać dane z fałszywych banków. Upewnij się, że Twój status jest "Na żywo" na Twojejdesce rozdzielczej, jeśli chcesz pobierać z prawdziwych banków.', + 'spectre_select_provider_title' => 'Wybierz swój bank', + 'spectre_select_provider_text' => 'Spectre obsługuje następujące banki lub usługi finansowe pogrupowane pod :country. Wybierz ten, z którego chcesz importować.', + 'spectre_input_fields_title' => 'Wprowadź obowiązkowe pola', + 'spectre_input_fields_text' => 'Następujące pola są wymagane przez ":provider" (z: :country).', + 'spectre_instructions_english' => 'Instrukcje te są dostarczane przez Spectre dla Państwa komfortu. Są one w języku angielskim:', +]; diff --git a/resources/lang/pl_PL/intro.php b/resources/lang/pl_PL/intro.php index 41bd8b169b..df12a3ed33 100644 --- a/resources/lang/pl_PL/intro.php +++ b/resources/lang/pl_PL/intro.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -42,23 +41,23 @@ return [ 'budgets_index_see_expenses_bar' => 'Wydawanie pieniędzy powoli wypełnia ten pasek.', 'budgets_index_navigate_periods' => 'Przejrzyj okresy, aby łatwiej ustawić przyszłe budżety.', 'budgets_index_new_budget' => 'Utwórz nowe budżety zgodnie z Twoimi potrzebami.', - 'budgets_index_list_of_budgets' => 'Use this table to set the amounts for each budget and see how you are doing.', + 'budgets_index_list_of_budgets' => 'Skorzystaj z tej tabeli, aby ustawić kwoty dla każdego budżetu i sprawdź jak ci idzie.', 'budgets_index_outro' => 'Aby dowiedzieć się więcej o budżetowaniu, użyj ikonki pomocy w prawym górnym rogu.', // reports (index) - 'reports_index_intro' => 'Use these reports to get detailed insights in your finances.', - 'reports_index_inputReportType' => 'Pick a report type. Check out the help pages to see what each report shows you.', - 'reports_index_inputAccountsSelect' => 'You can exclude or include asset accounts as you see fit.', - 'reports_index_inputDateRange' => 'The selected date range is entirely up to you: from one day to 10 years.', - 'reports_index_extra-options-box' => 'Depending on the report you have selected, you can select extra filters and options here. Watch this box when you change report types.', + 'reports_index_intro' => 'Skorzystaj z tych raportów, aby uzyskać szczegółowe informacje o swoich finansach.', + 'reports_index_inputReportType' => 'Wybierz typ raportu. Sprawdź stronę pomocy, aby zobaczyć, co pokazuje każdy raport.', + 'reports_index_inputAccountsSelect' => 'Możesz wykluczyć lub uwzględnić konta zasobów według własnego uznania.', + 'reports_index_inputDateRange' => 'Wybrany zakres dat zależy wyłącznie od ciebie: od jednego dnia do 10 lat.', + 'reports_index_extra-options-box' => 'W zależności od wybranego raportu możesz wybrać dodatkowe filtry i opcje tutaj. Obserwuj to pole, gdy zmieniasz typy raportów.', // reports (reports) - 'reports_report_default_intro' => 'This report will give you a quick and comprehensive overview of your finances. If you wish to see anything else, please don\'t hestitate to contact me!', - 'reports_report_audit_intro' => 'This report will give you detailed insights in your asset accounts.', - 'reports_report_audit_optionsBox' => 'Use these check boxes to show or hide the columns you are interested in.', + 'reports_report_default_intro' => 'Raport ten zapewni szybki i wszechstronny przegląd twoich finansów. Jeśli chcesz zobaczyć cokolwiek innego, nie wahaj się ze mną skontaktować!', + 'reports_report_audit_intro' => 'Ten raport zawiera szczegółowe informacje na temat kont zasobów.', + 'reports_report_audit_optionsBox' => 'Użyj tych pól wyboru aby pokazać lub ukryć kolumny, które cię interesują.', - 'reports_report_category_intro' => 'This report will give you insight in one or multiple categories.', - 'reports_report_category_pieCharts' => 'These charts will give you insight in expenses and income per category or per account.', + 'reports_report_category_intro' => 'Ten raport daje wgląd w jedną lub wiele kategorii.', + 'reports_report_category_pieCharts' => 'Te wykresy dają wgląd w wydatki i dochody według kategorii lub konta.', 'reports_report_category_incomeAndExpensesChart' => 'This chart shows your expenses and income per category.', 'reports_report_tag_intro' => 'This report will give you insight in one or multiple tags.', @@ -110,9 +109,9 @@ return [ // rules index 'rules_index_intro' => 'Firefly III allows you to manage rules, that will automagically be applied to any transaction you create or edit.', 'rules_index_new_rule_group' => 'You can combine rules in groups for easier management.', - 'rules_index_new_rule' => 'Create as many rules as you like.', - 'rules_index_prio_buttons' => 'Order them any way you see fit.', - 'rules_index_test_buttons' => 'You can test your rules or apply them to existing transactions.', + 'rules_index_new_rule' => 'Twórz dowolną liczbę reguł.', + 'rules_index_prio_buttons' => 'Zamów je w sposób, jaki uznasz za stosowny.', + 'rules_index_test_buttons' => 'Możesz przetestować swoje zasady lub zastosować je do istniejących transakcji.', 'rules_index_rule-triggers' => 'Rules have "triggers" and "actions" that you can order by drag-and-drop.', 'rules_index_outro' => 'Be sure to check out the help pages using the (?) icon in the top right!', diff --git a/resources/lang/pl_PL/list.php b/resources/lang/pl_PL/list.php index 898b4f3b4a..81dd9fbcd7 100644 --- a/resources/lang/pl_PL/list.php +++ b/resources/lang/pl_PL/list.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ @@ -35,7 +34,7 @@ return [ 'currentBalance' => 'Bieżące saldo', 'active' => 'Jest aktywny?', 'lastActivity' => 'Ostatnia aktywność', - 'balanceDiff' => 'Różnica salda między :start oraz :end', + 'balanceDiff' => 'Różnica sald', 'matchesOn' => 'Dopasowanie', 'account_type' => 'Typ konta', 'created_at' => 'Utworzono', @@ -67,7 +66,7 @@ return [ 'bill' => 'Rachunek', 'withdrawal' => 'Wypłata', 'deposit' => 'Wpłata', - 'transfer' => 'Transfer', + 'transfer' => 'Przenieś', 'type' => 'Typ', 'completed' => 'Zakończone', 'iban' => 'IBAN', @@ -99,5 +98,5 @@ return [ 'sum_withdrawals' => 'Suma wypłat', 'sum_deposits' => 'Suma wpłat', 'sum_transfers' => 'Suma transferów', - 'reconcile' => 'Reconcile', + 'reconcile' => 'Uzgodnij', ]; diff --git a/resources/lang/pl_PL/pagination.php b/resources/lang/pl_PL/pagination.php index 863abaac9d..bb11d2362e 100644 --- a/resources/lang/pl_PL/pagination.php +++ b/resources/lang/pl_PL/pagination.php @@ -18,12 +18,9 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ - 'previous' => '« Poprzednia', 'next' => 'Następna »', - ]; diff --git a/resources/lang/pl_PL/passwords.php b/resources/lang/pl_PL/passwords.php index 8f9d555e65..fe468dc88d 100644 --- a/resources/lang/pl_PL/passwords.php +++ b/resources/lang/pl_PL/passwords.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [ diff --git a/resources/lang/pl_PL/validation.php b/resources/lang/pl_PL/validation.php index 9edec83f33..6abb650075 100644 --- a/resources/lang/pl_PL/validation.php +++ b/resources/lang/pl_PL/validation.php @@ -18,7 +18,6 @@ * You should have received a copy of the GNU General Public License * along with Firefly III. If not, see . */ - declare(strict_types=1); return [