New language strings.

This commit is contained in:
James Cole
2018-04-28 15:26:45 +02:00
parent 8ef3f18da7
commit 0a2308592f
141 changed files with 293 additions and 103 deletions

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* auth.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* bank.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* breadcrumbs.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* components.php
* Copyright (c) 2018 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* config.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* csv.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* demo.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -541,6 +541,7 @@ return [
'attachment_deleted' => 'Allegato eliminato ":name"',
'attachment_updated' => 'Allegato aggiornato ":name"',
'upload_max_file_size' => 'Dimensione massima del file: :size',
'list_all_attachments' => 'List of all attachments',
// transaction index
'title_expenses' => 'Spese',
@@ -583,7 +584,7 @@ return [
'converted_to_Deposit' => 'La transazione è stata convertita in un deposito',
'converted_to_Transfer' => 'La transazione è stata convertita in un giroconto',
'invalid_convert_selection' => 'Tl\'account che hai selezionato è già utilizzato in questa transazione o non esiste.',
'source_or_dest_invalid' => 'Cannot find the correct transaction details. Conversion is not possible.',
'source_or_dest_invalid' => 'Impossibile trovare i dettagli corretti della transazione. Non è possibile effettuare la conversione.',
// create new stuff:
'create_new_withdrawal' => 'Crea un nuovo prelievo',
@@ -1164,7 +1165,7 @@ return [
'reset_import_settings_title' => 'Reimposta la configurazione di importazione',
'reset_import_settings_text' => 'Puoi utilizzare questi collegamenti per ripristinare le impostazioni di importazione per specifici fornitori. Ciò è utile quando delle impostazioni errate impediscono l\'importazione dei dati.',
'reset_settings_bunq' => 'Rimuovi la chiave API di bunq, l\'indirizzo IP locale esterno e le chiavi RSA correlate a bunq.',
'reset_settings_spectre' => 'Rimuovi l\'ID cliente di Spectre, il segreto del servizio e il segreto dell\'app. Questo rimuoverà anche la tua coppia di chiavi Spectre. Ricordati di aggiornare quella nuova.',
'reset_settings_spectre' => 'Rimuovi i segreti e gli ID di Spectre. Questo rimuoverà anche la tua coppia di chiavi di Spectre. Ricordati di aggiornare quella nuova.',
'settings_reset_for_bunq' => 'Ripristina impostazioni bunq.',
'settings_reset_for_spectre' => 'Ripristina impostazioni Spectre.',

View File

@@ -202,6 +202,8 @@ return [
'client_id' => 'ID Client',
'service_secret' => 'Servizio segreto',
'app_secret' => 'App segreto',
'app_id' => 'App ID',
'secret' => 'Secret',
'public_key' => 'Chiave Pubblica',
'country_code' => 'Codice Nazione',
'provider_code' => 'Banca o fornitore di dati',

View File

@@ -172,11 +172,12 @@ return [
// Spectre
'spectre_title' => 'Importa usando uno Spectre',
'spectre_prerequisites_title' => 'Prerequisiti per un\'importazione utilizzando Spectre',
'spectre_prerequisites_text' => 'Per importare i dati usando l\'API Spectre, devi fornire a Firefly III due valori segreti. Possono essere trovati nella <a href="https://www.saltedge.com/clients/profile/secrets">pagina codifiche</a>.',
'spectre_enter_pub_key' => 'L\'importazione funzionerà solo quando inserisci questa chiave pubblica nella <a href="https://www.saltedge.com/clients/security/edit">pagina di sicurezza</a>.',
'spectre_prerequisites_text' => 'In order to import data using the Spectre API (v4), you must provide Firefly III with two secret values. They can be found on the <a href="https://www.saltedge.com/clients/profile/secrets">secrets page</a>.',
'spectre_enter_pub_key' => 'The import will only work when you enter this public key on your <a href="https://www.saltedge.com/clients/profile/secrets">secrets page</a>.',
'spectre_accounts_title' => 'Seleziona i conti dai quali importare',
'spectre_accounts_text' => 'Ogni account sulla sinistra in basso è stato trovato da Spectre e può essere importato in Firefly III. Seleziona il conto attività che dovrebbe contenere una determinata transazione. Se non desideri importare da un conto specifico, rimuovi il segno di spunta dalla casella di controllo.',
'spectre_do_import' => 'Si, importa da questo conto',
'spectre_no_supported_accounts' => 'You cannot import from this account due to a currency mismatch.',
// keys from "extra" array:
'spectre_extra_key_iban' => 'IBAN',

View File

@@ -112,4 +112,9 @@ return [
'sepa-ep' => 'SEPA External Purpose',
'sepa-ci' => 'SEPA Creditor Identifier',
'account_at_bunq' => 'Conto con Bunq',
'file_name' => 'File name',
'file_size' => 'File size',
'file_type' => 'File type',
'attached_to' => 'Attached to',
'file_exists' => 'File exists',
];

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* pagination.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* passwords.php
* Copyright (c) 2017 thegrumpydictator@gmail.com

View File

@@ -1,5 +1,6 @@
<?php
declare(strict_types=1);
/**
* validation.php
* Copyright (c) 2017 thegrumpydictator@gmail.com