Blame view

sources/apps/files_external/l10n/it.php 4.83 KB
31b7f2792   Kload   Upgrade to ownclo...
1
2
  <?php
  $TRANSLATIONS = array(
6d9380f96   Cédric Dupont   Update sources OC...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  "Fetching request tokens failed. Verify that your Dropbox app key and secret are correct." => "Il recupero dei token di richiesta non è riuscito. Verifica che la chiave e il segreto dell'applicazione Dropbox siano corretti.",
  "Fetching access tokens failed. Verify that your Dropbox app key and secret are correct." => "Il recupero dei token di accesso non è riuscito. Verifica che la chiave e il segreto dell'applicazione Dropbox siano corretti.",
  "Please provide a valid Dropbox app key and secret." => "Fornisci chiave di applicazione e segreto di Dropbox validi.",
  "Step 1 failed. Exception: %s" => "Fase 1 non riuscita. Eccezione: %s",
  "Step 2 failed. Exception: %s" => "Fase 2 non riuscita. Eccezione: %s",
  "External storage" => "Archiviazione esterna",
  "Local" => "Locale",
  "Location" => "Posizione",
  "Amazon S3" => "Amazon S3",
  "Key" => "Chiave",
  "Secret" => "Segreto",
  "Bucket" => "Bucket",
  "Amazon S3 and compliant" => "Amazon S3 e conformi",
  "Access Key" => "Chiave di accesso",
  "Secret Key" => "Chiave segreta",
  "Hostname (optional)" => "Nome host (opzionale)",
  "Port (optional)" => "Porta (opzionale)",
  "Region (optional)" => "Regione (opzionale)",
  "Enable SSL" => "Abilita SSL",
  "Enable Path Style" => "Abilita stile percorsi",
  "App key" => "Chiave applicazione",
  "App secret" => "Segreto applicazione",
  "Host" => "Host",
  "Username" => "Nome utente",
  "Password" => "Password",
  "Root" => "Radice",
  "Secure ftps://" => "Sicuro ftps://",
  "Client ID" => "ID client",
  "Client secret" => "Segreto del client",
  "OpenStack Object Storage" => "OpenStack Object Storage",
  "Username (required)" => "Nome utente (richiesto)",
  "Bucket (required)" => "Bucket (richiesto)",
  "Region (optional for OpenStack Object Storage)" => "Regione (facoltativa per OpenStack Object Storage)",
  "API Key (required for Rackspace Cloud Files)" => "Chiave API (richiesta per Rackspace Cloud Files)",
  "Tenantname (required for OpenStack Object Storage)" => "Nome tenant (richiesto per OpenStack Object Storage)",
  "Password (required for OpenStack Object Storage)" => "Password (richiesta per OpenStack Object Storage)",
  "Service Name (required for OpenStack Object Storage)" => "Nome servizio (richiesta per OpenStack Object Storage)",
  "URL of identity endpoint (required for OpenStack Object Storage)" => "URL del servizio di identità (richiesto per OpenStack Object Storage)",
  "Timeout of HTTP requests in seconds (optional)" => "Tempo massimo in secondi delle richieste HTTP (opzionale)",
  "Share" => "Condividi",
  "SMB / CIFS using OC login" => "SMB / CIFS utilizzando le credenziali di OC",
  "Username as share" => "Nome utente come condivisione",
  "URL" => "URL",
  "Secure https://" => "Sicuro https://",
  "Remote subfolder" => "Sottocartella remota",
03e52840d   Kload   Init
48
49
50
  "Access granted" => "Accesso consentito",
  "Error configuring Dropbox storage" => "Errore durante la configurazione dell'archivio Dropbox",
  "Grant access" => "Concedi l'accesso",
03e52840d   Kload   Init
51
  "Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive",
6d9380f96   Cédric Dupont   Update sources OC...
52
53
54
55
56
57
58
59
60
61
62
63
  "Personal" => "Personale",
  "System" => "Sistema",
  "Saved" => "Salvato",
  "<b>Note:</b> " => "<b>Nota:</b>",
  " and " => "e",
  "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Nota:</b> il supporto a cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
  "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Nota:</b> il supporto a FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
  "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Nota:</b> \"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.",
  "You don't have any external storages" => "Non è disponibile alcuna archiviazione esterna",
  "Name" => "Nome",
  "Storage type" => "Tipo di archiviazione",
  "Scope" => "Ambito",
03e52840d   Kload   Init
64
65
  "External Storage" => "Archiviazione esterna",
  "Folder name" => "Nome della cartella",
03e52840d   Kload   Init
66
67
  "Configuration" => "Configurazione",
  "Options" => "Opzioni",
6d9380f96   Cédric Dupont   Update sources OC...
68
  "Available for" => "Disponibile per",
03e52840d   Kload   Init
69
  "Add storage" => "Aggiungi archiviazione",
6d9380f96   Cédric Dupont   Update sources OC...
70
  "No user or group" => "Nessun utente o gruppo",
03e52840d   Kload   Init
71
72
73
74
75
  "All Users" => "Tutti gli utenti",
  "Groups" => "Gruppi",
  "Users" => "Utenti",
  "Delete" => "Elimina",
  "Enable User External Storage" => "Abilita la memoria esterna dell'utente",
6d9380f96   Cédric Dupont   Update sources OC...
76
  "Allow users to mount the following external storage" => "Consenti agli utenti di montare la seguente memoria esterna",
03e52840d   Kload   Init
77
78
79
  "SSL root certificates" => "Certificati SSL radice",
  "Import Root Certificate" => "Importa certificato radice"
  );
31b7f2792   Kload   Upgrade to ownclo...
80
  $PLURAL_FORMS = "nplurals=2; plural=(n != 1);";