Files
azuredatastudio/resources/xlf/it/sql-migration.it.xlf

3487 lines
219 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file original="extensions/sql-migration/dist/constants/strings" source-language="en" datatype="plaintext" target-language="it">
<body>
<trans-unit id="azure.accounts.accountAccessError">
<source xml:lang="en">An error occurred while accessing the selected account '{0}' and tenant '{1}'. Select 'Link account' and refresh the account, or select a different account. Error '{2}'</source>
<target state="translated">Si è verificato un errore durante l'accesso all'account selezionato '{0}' e il tenant '{1}'. Selezionare 'Collega account' e aggiornare l'account oppure selezionare un account diverso. Errore: '{2}'</target>
</trans-unit>
<trans-unit id="azure.accounts.accountStaleError">
<source xml:lang="en">The access token for selected account '{0}' and tenant '{1}' is no longer valid. Select 'Link account' and refresh the account, or select a different account.</source>
<target state="translated">Il token di accesso per l'account selezionato '{0}' e il tenant '{1}' non è più valido. Selezionare 'Collega account' per aggiornare l'account o selezionare un account diverso.</target>
</trans-unit>
<trans-unit id="serviceCrashMessage">
<source xml:lang="en">Migration service component could not start. {0}</source>
<target state="translated">Impossibile avviare il componente del servizio di migrazione. {0}</target>
</trans-unit>
<trans-unit id="serviceCrashed">
<source xml:lang="en">Service component crashed.</source>
<target state="translated">Arresto anomalo del componente del servizio.</target>
</trans-unit>
<trans-unit id="serviceProviderIntializationError">
<source xml:lang="en">Service provider could not be initialized.</source>
<target state="translated">Impossibile inizializzare il provider di servizi.</target>
</trans-unit>
<trans-unit id="sql-migration.login.wizard.title">
<source xml:lang="en">Migrate logins from '{0}' to Azure SQL</source>
<target state="translated">Eseguire la migrazione degli account di accesso da '{0}' a Azure SQL</target>
</trans-unit>
<trans-unit id="sql-migration.wizard.title">
<source xml:lang="en">Migrate '{0}' to Azure SQL</source>
<target state="translated">Eseguire la migrazione di '{0}' a Azure SQL</target>
</trans-unit>
<trans-unit id="sql.cancel.migration.confirmation">
<source xml:lang="en">Are you sure you want to cancel this migration?</source>
<target state="translated">Annullare la migrazione?</target>
</trans-unit>
<trans-unit id="sql.delete.migration.confirmation">
<source xml:lang="en">Are you sure you want to delete this migration?</source>
<target state="translated">Eliminare questa migrazione?</target>
</trans-unit>
<trans-unit id="sql.login.migration.aad.domain.name.input.box.label">
<source xml:lang="en">Azure Active Directory Domain Name (only required to migrate Windows Authenication Logins)</source>
<target state="translated">Nome di dominio di Azure Active Directory (necessario solo per eseguire la migrazione degli account di accesso per l'autenticazione di Windows)</target>
</trans-unit>
<trans-unit id="sql.login.migration.aad.domain.name.input.box.placeholder">
<source xml:lang="en">Enter AAD Domain Name</source>
<target state="translated">Immettere il nome di dominio di AAD</target>
</trans-unit>
<trans-unit id="sql.login.migration.collecting.target.logins.failed">
<source xml:lang="en">Collecting target login failed with error code {0}</source>
<target state="translated">La raccolta dell'accesso di destinazione non è riuscita con codice di errore {0}</target>
</trans-unit>
<trans-unit id="sql.login.migration.complete">
<source xml:lang="en">Completed migrating logins</source>
<target state="translated">La migrazione degli account di accesso è stata completata</target>
</trans-unit>
<trans-unit id="sql.login.migration.db.title">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Database SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.login.migration.enter.AAD.domain.name.to.continue">
<source xml:lang="en">Azure Active Directory (AAD) Domain name is required to migrate Windows login. Please enter an AAD Domain Name or deselect windows login(s).</source>
<target state="translated">Per eseguire la migrazione dell'account di accesso di Windows, è necessario il nome di dominio di Azure Active Directory (AAD). Immettere un nome di dominio di AAD o deselezionare gli account di accesso di Windows.</target>
</trans-unit>
<trans-unit id="sql.login.migration.error">
<source xml:lang="en">Login migration error: {0}</source>
<target state="translated">Errore di migrazione dell'account di accesso: {0}</target>
</trans-unit>
<trans-unit id="sql.login.migration.establish.user.mappings">
<source xml:lang="en">Validating and migrating logins completed.
Establishing user mappings.</source>
<target state="translated">Convalida e migrazione degli account di accesso completate.
Definizione dei mapping utente.</target>
</trans-unit>
<trans-unit id="sql.login.migration.establish.user.mappings.failed">
<source xml:lang="en">Establishing user mappings failed</source>
<target state="translated">La definizione dei mapping utente non è riuscita</target>
</trans-unit>
<trans-unit id="sql.login.migration.failed">
<source xml:lang="en">Migrating logins failed</source>
<target state="translated">La migrazione degli account di accesso non è riuscita</target>
</trans-unit>
<trans-unit id="sql.login.migration.get.connection.string">
<source xml:lang="en">data source={0};initial catalog=master;user id={1};password={2};TrustServerCertificate=True;Integrated Security=false;</source>
<target state="translated">data source={0};initial catalog=master;user id={1};password={2}; TrustServerCertificate=True;Integrated Security=false;</target>
</trans-unit>
<trans-unit id="sql.login.migration.get.logins.query">
<source xml:lang="en">SELECT sp.name as login, sp.type_desc as login_type, sp.default_database_name, case when sp.is_disabled = 1 then 'Disabled' else 'Enabled' end as status FROM sys.server_principals sp LEFT JOIN sys.sql_logins sl ON sp.principal_id = sl.principal_id WHERE sp.type NOT IN ('G', 'R') AND sp.type_desc IN ('SQL_LOGIN', 'WINDOWS_LOGIN') ORDER BY sp.name;</source>
<target state="translated">SELECT sp.name as login, sp.type_desc as login_type, sp.default_database_name, case when sp.is_disabled = 1 then 'Disabled' else 'Enabled' end as status FROM sys.server_principals sp LEFT JOIN sys.sql_logins sl ON sp.principal_id = sl.principal_id WHERE sp.type NOT IN ('G', 'R') AND sp.type_desc IN ('SQL_LOGIN', 'WINDOWS_LOGIN') ORDER BY sp.name;</target>
</trans-unit>
<trans-unit id="sql.login.migration.in.progress">
<source xml:lang="en">Login migration in progress</source>
<target state="translated">Migrazione dell'account di accesso in corso</target>
</trans-unit>
<trans-unit id="sql.login.migration.login.status.details.title">
<source xml:lang="en">Migration status details for {0}</source>
<target state="translated">Dettagli sullo stato della migrazione per {0}</target>
</trans-unit>
<trans-unit id="sql.login.migration.logins.found">
<source xml:lang="en">Login found</source>
<target state="translated">Account di accesso trovato</target>
</trans-unit>
<trans-unit id="sql.login.migration.logins.not.found">
<source xml:lang="en">Login not found</source>
<target state="translated">Account di accesso non trovato</target>
</trans-unit>
<trans-unit id="sql.login.migration.mi.title">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Istanza gestita di SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.login.migration.migrate.server.roles.and.set.permissions">
<source xml:lang="en">Establishing user mappings completed.
Currently, migrating server roles, establishing server mappings and setting permissions. This will take some time.</source>
<target state="translated">Definizione dei mapping utente completata.
È in corso la migrazione dei ruoli del server, la creazione di mapping del server e l'impostazione delle autorizzazioni. L'operazione richiederà qualche minuto.</target>
</trans-unit>
<trans-unit id="sql.login.migration.migrate.server.roles.and.set.permissions.failed">
<source xml:lang="en">Migrating server roles, establishing server mappings and setting permissions failed.</source>
<target state="translated">La migrazione dei ruoli del server, la creazione di mapping del server e l'impostazione delle autorizzazioni non sono riuscite.</target>
</trans-unit>
<trans-unit id="sql.login.migration.migration.status.column">
<source xml:lang="en">Migration Status</source>
<target state="translated">Stato di migrazione</target>
</trans-unit>
<trans-unit id="sql.login.migration.refresh.login.data.successful">
<source xml:lang="en">Refreshing login list was successful. Source logins found {0}, Target logins found {1}</source>
<target state="translated">L'aggiornamento dell'elenco di accesso è riuscito. Account di accesso di origine trovati {0}. Account di accesso di destinazione trovati {1}</target>
</trans-unit>
<trans-unit id="sql.login.migration.refresh.source.login.data.failed">
<source xml:lang="en">Refreshing login list from source failed</source>
<target state="translated">Aggiornamento dell'elenco di accesso dall'origine non è riuscito</target>
</trans-unit>
<trans-unit id="sql.login.migration.refresh.target.login.data.failed">
<source xml:lang="en">Refreshing login list from target failed</source>
<target state="translated">L'aggiornamento dell'elenco di accesso dalla destinazione non è riuscito</target>
</trans-unit>
<trans-unit id="sql.login.migration.select.in.progress">
<source xml:lang="en">Refreshing login list from source and target</source>
<target state="translated">Aggiornamento dell'elenco di accesso dall'origine e dalla destinazione</target>
</trans-unit>
<trans-unit id="sql.login.migration.select.logins.windows.auth.warning">
<source xml:lang="en">Please note that this wizard does not display windows authentication login types because migrating that type is currently not supported. Capability for migrating windows authentication logins is coming soon.</source>
<target state="translated">Questa procedura guidata non visualizza i tipi di accesso per l'autenticazione di Windows perché la migrazione di questo tipo non è attualmente supportata. La funzionalità per la migrazione degli account di accesso per l'autenticazione di Windows sarà presto disponibile.</target>
</trans-unit>
<trans-unit id="sql.login.migration.select.page.title">
<source xml:lang="en">Select login(s) to migrate</source>
<target state="translated">Selezionare gli account di accesso di cui eseguire la migrazione</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.column">
<source xml:lang="en">Status</source>
<target state="translated">Stato</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Non riuscita</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.in.progress">
<source xml:lang="en">In progress</source>
<target state="translated">In corso</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.description">
<source xml:lang="en">Migrating {0} logins to target {1} '{2}'</source>
<target state="translated">La migrazione degli account di accesso {0} alla destinazione {1} '{2}'</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.description.completed">
<source xml:lang="en">Completed migrating {0} logins to {1} '{2}'</source>
<target state="translated">La migrazione degli account di accesso {0} a {1} '{2}' è stata completata</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.description.failed">
<source xml:lang="en">Failed migrating {0} logins to {1} '{2}'</source>
<target state="translated">La migrazione degli account di accesso {0} a {1} '{2}' non è riuscita</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.previous.button.error">
<source xml:lang="en">Login migration has already been initiated and going back to prior page is disabled.</source>
<target state="translated">La migrazione degli account di accesso è già stata avviata e il ritorno alla pagina precedente è disabilitato.</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.previous.button.title">
<source xml:lang="en">Previous (Disabled)</source>
<target state="translated">Precedente (disabilitato)</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.title">
<source xml:lang="en">Migration Status</source>
<target state="translated">Stato di migrazione</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Riuscita</target>
</trans-unit>
<trans-unit id="sql.login.migration.steps.migrate.logins">
<source xml:lang="en">Migrate logins</source>
<target state="translated">Esegui la migrazione degli account di accesso</target>
</trans-unit>
<trans-unit id="sql.login.migration.steps.not.started">
<source xml:lang="en">Not started</source>
<target state="translated">Non avviato</target>
</trans-unit>
<trans-unit id="sql.login.migration.target.status.column">
<source xml:lang="en">Target Status</source>
<target state="translated">Stato di destinazione</target>
</trans-unit>
<trans-unit id="sql.login.migration.target.title">
<source xml:lang="en">Azure SQL target</source>
<target state="translated">Destinazione di Azure SQL</target>
</trans-unit>
<trans-unit id="sql.login.migration.type">
<source xml:lang="en">Login type</source>
<target state="translated">Tipo di account di accesso</target>
</trans-unit>
<trans-unit id="sql.login.migration.vm.title">
<source xml:lang="en">SQL Server on Azure Virtual Machine</source>
<target state="translated">SQL Server per la macchina virtuale di Azure</target>
</trans-unit>
<trans-unit id="sql.login.migration.wizard.target.connection.success">
<source xml:lang="en">Connection was successful.</source>
<target state="translated">Connessione riuscita.</target>
</trans-unit>
<trans-unit id="sql.login.migration.wizard.target.data.migration.warning">
<source xml:lang="en">Please note that login migration feature is in public preview mode.</source>
<target state="translated">Si noti che la funzionalità di migrazione degli account di accesso è in modalità di anteprima pubblica.</target>
</trans-unit>
<trans-unit id="sql.login.migration.wizard.target.description">
<source xml:lang="en">Select the target Azure SQL Managed Instance, Azure SQL VM, or Azure SQL database(s) where you want to migrate your logins.</source>
<target state="translated">Selezionare lIstanza gestita di SQL di Azure di destinazione, VM di Azure SQL o Database SQL di Azure o in cui si vuole eseguire la migrazione degli account di accesso.</target>
</trans-unit>
<trans-unit id="sql.login.migration.wizard.target.permission.warning">
<source xml:lang="en">Please ensure that the current user has sysadmin permissions to get all login information for the current instance ({0}).</source>
<target state="translated">Assicurarsi che l'utente corrente disponga delle autorizzazioni sysadmin per ottenere tutte le informazioni di accesso per l'istanza corrente ({0}).</target>
</trans-unit>
<trans-unit id="sql.login.migration.wizard.target.type.title">
<source xml:lang="en">Azure SQL target type</source>
<target state="translated">Tipo di destinazione di Azure SQL</target>
</trans-unit>
<trans-unit id="sql.login.migrations.selected">
<source xml:lang="en">{0}/{1} logins selected</source>
<target state="translated">{0}/{1} account di accesso selezionati</target>
</trans-unit>
<trans-unit id="sql.migrate.text">
<source xml:lang="en">Select the databases that you want to migrate to Azure SQL.</source>
<target state="translated">Selezionare i database per cui si desidera eseguire la migrazione ad Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.account.credentials.refresh.required">
<source xml:lang="en">{0} (requires credentials refresh)</source>
<target state="translated">{0} (richiede l'aggiornamento delle credenziali)</target>
</trans-unit>
<trans-unit id="sql.migration.active.backup.files">
<source xml:lang="en">Active backup files</source>
<target state="translated">File di backup attivi</target>
</trans-unit>
<trans-unit id="sql.migration.active.backup.files.items">
<source xml:lang="en">Active backup files (1 item)</source>
<target state="translated">File di backup attivi (1 elemento)</target>
</trans-unit>
<trans-unit id="sql.migration.active.backup.files.multiple.items">
<source xml:lang="en">Active backup files ({0} items)</source>
<target state="translated">File di backup attivi ({0} elementi)</target>
</trans-unit>
<trans-unit id="sql.migration.all.backups.restored">
<source xml:lang="en">All backups restored</source>
<target state="translated">Tutti i backup sono stati ripristinati</target>
</trans-unit>
<trans-unit id="sql.migration.all.fields.required">
<source xml:lang="en">All fields are required.</source>
<target state="translated">Tutti i campi sono obbligatori.</target>
</trans-unit>
<trans-unit id="sql.migration.apply">
<source xml:lang="en">Apply</source>
<target state="translated">Applica</target>
</trans-unit>
<trans-unit id="sql.migration.assessed.databases">
<source xml:lang="en">(for {0} assessed databases)</source>
<target state="translated">(per {0} database valutati)</target>
</trans-unit>
<trans-unit id="sql.migration.assessment">
<source xml:lang="en">Assessment results for '{0}'</source>
<target state="translated">Risultati valutazione per '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.failed">
<source xml:lang="en">The assessment of your SQL Server instance '{0}' failed.</source>
<target state="translated">La valutazione dell'istanza di SQL Server '{0}' non è riuscita.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.in.progress">
<source xml:lang="en">Assessment in progress</source>
<target state="translated">Valutazione in corso</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.in.progress.content">
<source xml:lang="en">We are assessing the databases in your SQL Server instance {0} to identify the right Azure SQL target.
This may take some time.</source>
<target state="translated">I database nell'istanza di SQL Server vengono valutati {0} per identificare la destinazione Azure SQL corretta.
L'operazione potrebbe richiedere qualche minuto.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.migration.warning">
<source xml:lang="en">Databases that are not ready for migration to Azure SQL Managed Instance or Azure SQL Database can be migrated to SQL Server on Azure Virtual Machines.</source>
<target state="translated">Per i database non pronti per la migrazione all'Istanza gestita di SQL di Azure, è possibile eseguire la migrazione a SQL Server nelle macchine virtuali di Microsoft Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.migration.warning.sqldb">
<source xml:lang="en">Databases that are not ready for migration to Azure SQL Database can be migrated to SQL Server on Azure Virtual Machines. Alternatively, review assessment results for Azure SQL Managed Instance migration readiness.</source>
<target state="translated">I database non pronti per la migrazione a database SQL di Azure possono essere migrati a SQL Server in Macchine virtuali di Azure. In alternativa, esamina i risultati della valutazione per Istanza gestita di SQL di Azure conformità alla migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.migration.warning.sqlmi">
<source xml:lang="en">Databases that are not ready for migration to Azure SQL Managed Instance can be migrated to SQL Server on Azure Virtual Machines. Alternatively, review assessment results for Azure SQL Database migration readiness.</source>
<target state="translated">I database non pronti per la migrazione a Istanza gestita di SQL di Azure possono essere migrati in SQL Server in Macchine virtuali di Azure. In alternativa, esamina i risultati della valutazione per database SQL di Azure idoneità per la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.results">
<source xml:lang="en">Assessment results</source>
<target state="translated">Risultati valutazione</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.results.and.recommendations.title">
<source xml:lang="en">Assessment results and recommendations</source>
<target state="translated">Risultati e raccomandazioni della valutazione</target>
</trans-unit>
<trans-unit id="sql.migration.assessments.blocking.issue">
<source xml:lang="en">This is a blocking issue that will prevent the database migration from succeeding.</source>
<target state="translated">Si tratta di un errore di blocco che impedirà la migrazione del database.</target>
</trans-unit>
<trans-unit id="sql.migration.authKeys.header">
<source xml:lang="en">Authentication key</source>
<target state="translated">Chiave di autenticazione</target>
</trans-unit>
<trans-unit id="sql.migration.authKeys.refresh.message">
<source xml:lang="en">Authentication key '{0}' has been refreshed.</source>
<target state="translated">La chiave di autenticazione ' {0}' è stata aggiornata.</target>
</trans-unit>
<trans-unit id="sql.migration.authentication.type">
<source xml:lang="en">Authentication type</source>
<target state="translated">Tipo di autenticazione</target>
</trans-unit>
<trans-unit id="sql.migration.authentication.types">
<source xml:lang="en">Authentication keys</source>
<target state="translated">Chiavi di autenticazione</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql">
<source xml:lang="en">Azure SQL</source>
<target state="translated">Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.database">
<source xml:lang="en">Azure SQL Database Server</source>
<target state="translated">Server di database SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.database.managed.instance">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Istanza gestita di SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.database.virtual.machine">
<source xml:lang="en">SQL Server on Azure Virtual Machines</source>
<target state="translated">SQL Server in macchine virtuali di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.database.virtual.machine.short">
<source xml:lang="en">SQL Server on Azure VM</source>
<target state="translated">SQL Server in macchine virtuali di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.target">
<source xml:lang="en">Target type</source>
<target state="translated">Tipo di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.azure.storage.account.to.upload.backups">
<source xml:lang="en">Azure Storage account to upload backups</source>
<target state="translated">Account di Archiviazione di Azure per il caricamento dei backup</target>
</trans-unit>
<trans-unit id="sql.migration.azure.tenant">
<source xml:lang="en">Azure AD tenant</source>
<target state="translated">Tenant di Azure AD</target>
</trans-unit>
<trans-unit id="sql.migration.azureRecommendation.browse">
<source xml:lang="en">Browse</source>
<target state="translated">Sfoglia</target>
</trans-unit>
<trans-unit id="sql.migration.azureRecommendation.folder.name">
<source xml:lang="en">Folder name</source>
<target state="translated">Nome cartella</target>
</trans-unit>
<trans-unit id="sql.migration.azureRecommendation.open">
<source xml:lang="en">Open</source>
<target state="translated">Apri</target>
</trans-unit>
<trans-unit id="sql.migration.backup.location">
<source xml:lang="en">Backup location</source>
<target state="translated">Percorso backup</target>
</trans-unit>
<trans-unit id="sql.migration.backup.start.time">
<source xml:lang="en">Backup start time</source>
<target state="translated">Ora di inizio backup</target>
</trans-unit>
<trans-unit id="sql.migration.bc.info">
<source xml:lang="en">A SQL Managed Instance migration cutover to the Business Critical service tier can take significantly longer than General Purpose because three secondary replicas have to be seeded for Always On High Availability group. The duration of the operation depends on the size of the data. Seeding speed in 90% of cases is 220 GB/hour or higher.</source>
<target state="translated">Il cutover della migrazione dell'Istanza gestita di SQL al livello di servizio business critical può richiedere molto più tempo dell'utilizzo generico perché è necessario eseguire il seeding di tre repliche secondarie per il gruppo di disponibilità elevata Always On. La durata di questa operazione dipende dalle dimensioni dei dati. La velocità di seeding nel 90% dei casi è pari a 220 GB/ora o a una velocità superiore.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.folder.label">
<source xml:lang="en">Folder</source>
<target state="translated">Cartella</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.label">
<source xml:lang="en">Blob container resource group</source>
<target state="translated">Gruppo di risorse del contenitore BLOB</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.last.backup.file.label">
<source xml:lang="en">Last backup file</source>
<target state="translated">Ultimo file di backup</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.select">
<source xml:lang="en">Select a blob container value first.</source>
<target state="translated">Selezionare prima un valore del contenitore BLOB.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.storage.account.label">
<source xml:lang="en">Blob container storage account</source>
<target state="translated">Account di archiviazione del contenitore BLOB</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.title">
<source xml:lang="en">Blob container</source>
<target state="translated">Contenitore BLOB</target>
</trans-unit>
<trans-unit id="sql.migration.blob.resourceGroup.select">
<source xml:lang="en">Select a resource group.</source>
<target state="translated">Selezionare un gruppo di risorse.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.resourceGroup.select.prompt">
<source xml:lang="en">Select a resource group value first.</source>
<target state="translated">Selezionare prima un valore del gruppo di risorse.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.header.text">
<source xml:lang="en">Azure Storage Blob Container details</source>
<target state="translated">Dettagli del contenitore dellarchiviazione Blob di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.help.text">
<source xml:lang="en">Provide the Azure Storage Blob Container that contains the backups.</source>
<target state="translated">Specificare il contenitore BLOB del servizio di archiviazione di Azure che contiene i backup.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.subscription.label">
<source xml:lang="en">Subscription</source>
<target state="translated">Sottoscrizione</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.table.help">
<source xml:lang="en">Enter target database name and select resource group, storage account and container for the selected source databases.</source>
<target state="translated">Immettere il nome del database di destinazione e selezionare il gruppo di risorse, l'account di archiviazione e il contenitore per i database di origine selezionati.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storageAccount.select">
<source xml:lang="en">Select a storage account value first.</source>
<target state="translated">Selezionare prima un valore per l'account di archiviazione.</target>
</trans-unit>
<trans-unit id="sql.migration.can.be.migrated">
<source xml:lang="en">{0}/{1} databases can be migrated without issues</source>
<target state="translated">{0}/{1} i database possono essere migrati senza problemi</target>
</trans-unit>
<trans-unit id="sql.migration.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">Annulla</target>
</trans-unit>
<trans-unit id="sql.migration.cancel.error">
<source xml:lang="en">An error occurred while canceling the migration.</source>
<target state="translated">Si è verificato un errore durante l'annullamento della migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.cancel.migration">
<source xml:lang="en">Cancel migration</source>
<target state="translated">Annulla migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.cancel">
<source xml:lang="en">Migration is not in progress and cannot be canceled.</source>
<target state="translated">La migrazione non è in corso e non può essere annullata.</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.cutover">
<source xml:lang="en">Migration is not in progress and cannot be cutover.</source>
<target state="translated">La migrazione non è in corso e non è possibile eseguirne il cutover.</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.delete">
<source xml:lang="en">Migration is currently in progress and cannot be deleted.</source>
<target state="translated">La migrazione è attualmente in corso e non può essere eliminata.</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.retry">
<source xml:lang="en">Migration cannot be retried.</source>
<target state="translated">Non è possibile ripetere la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.start.cutover.error">
<source xml:lang="en">The cutover process cannot start until all the migrations are done. To return the latest file status, refresh your browser window.</source>
<target state="translated">Non è possibile avviare il processo di cutover fino a quando non vengono completate tutte le migrazioni. Per restituire lo stato dei file più recente, aggiornare la finestra del browser.</target>
</trans-unit>
<trans-unit id="sql.migration.close">
<source xml:lang="en">Close</source>
<target state="translated">Chiudi</target>
</trans-unit>
<trans-unit id="sql.migration.complete.cutover">
<source xml:lang="en">Complete cutover</source>
<target state="translated">Completa cutover</target>
</trans-unit>
<trans-unit id="sql.migration.completed.multi.steps.heading">
<source xml:lang="en">We ran the following steps:</source>
<target state="translated">Sono stati eseguiti i passaggi seguenti:</target>
</trans-unit>
<trans-unit id="sql.migration.completing.cutover.warning">
<source xml:lang="en">Completing cutover without restoring all the backups may result in a data loss.</source>
<target state="translated">Il completamento del cutover senza ripristinare tutti i backup può comportare una perdita di dati.</target>
</trans-unit>
<trans-unit id="sql.migration.confirm.checkbox.message">
<source xml:lang="en">I confirm there are no additional log backups to provide and want to complete cutover.</source>
<target state="translated">L'utente conferma che non sono presenti altri backup del log da fornire e che desidera completare il cutover.</target>
</trans-unit>
<trans-unit id="sql.migration.connection.label">
<source xml:lang="en">Connect</source>
<target state="translated">Connetti</target>
</trans-unit>
<trans-unit id="sql.migration.connection.status">
<source xml:lang="en">Connection status</source>
<target state="translated">Stato connessione</target>
</trans-unit>
<trans-unit id="sql.migration.copy.key1">
<source xml:lang="en">Copy key 1</source>
<target state="translated">Copia chiave 1</target>
</trans-unit>
<trans-unit id="sql.migration.copy.key2">
<source xml:lang="en">Copy key 2</source>
<target state="translated">Copia chiave 2</target>
</trans-unit>
<trans-unit id="sql.migration.copy.migration.details">
<source xml:lang="en">Copy migration details</source>
<target state="translated">Dettagli di Copia migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Annullata</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.cancelled">
<source xml:lang="en">Cancelled</source>
<target state="translated">Annullato</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.copyfinished">
<source xml:lang="en">Copy finished</source>
<target state="translated">Copia completata</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.copying">
<source xml:lang="en">Copying</source>
<target state="translated">Copia in corso</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Non riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.inprogress">
<source xml:lang="en">In progress</source>
<target state="translated">In corso</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.preparingforcopy">
<source xml:lang="en">Preparing</source>
<target state="translated">Preparazione</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.queued">
<source xml:lang="en">Queued</source>
<target state="translated">In coda</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.rebuildingindexes">
<source xml:lang="en">Rebuilding indexes</source>
<target state="translated">Ricompilazione degli indici</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.copy.throughput">
<source xml:lang="en">Copy throughput (MBPS)</source>
<target state="translated">Velocità effettiva copia (MBPS)</target>
</trans-unit>
<trans-unit id="sql.migration.copy.throughput.info">
<source xml:lang="en">Data movement throughput achieved during the migration of your database backups to Azure. This is the rate of data transfer, calculated by data read divided by duration of backups migration to Azure.</source>
<target state="translated">Velocità di spostamento dati raggiunta durante la migrazione dei backup di database ad Azure. Velocità di trasferimento dati, calcolata da dati letti divisi per durata della migrazione dei backup in Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.count.database.multiple">
<source xml:lang="en">{0} databases</source>
<target state="translated">Database {0}</target>
</trans-unit>
<trans-unit id="sql.migration.count.database.single">
<source xml:lang="en">{0} database</source>
<target state="translated">Database {0}</target>
</trans-unit>
<trans-unit id="sql.migration.create">
<source xml:lang="en">Create</source>
<target state="translated">Crea</target>
</trans-unit>
<trans-unit id="sql.migration.create.new">
<source xml:lang="en">Create new</source>
<target state="translated">Crea nuovo</target>
</trans-unit>
<trans-unit id="sql.migration.create.new.migration.service">
<source xml:lang="en">Create new migration service</source>
<target state="translated">Crea nuovo servizio di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.create.new.resource.group">
<source xml:lang="en">Create new resource group</source>
<target state="translated">Crea nuovo gruppo di risorse</target>
</trans-unit>
<trans-unit id="sql.migration.creating.rg.loading">
<source xml:lang="en">Creating resource group</source>
<target state="translated">Creazione del gruppo di risorse</target>
</trans-unit>
<trans-unit id="sql.migration.currently.restoring.file">
<source xml:lang="en">Currently restoring file</source>
<target state="translated">Ripristino del file in corso</target>
</trans-unit>
<trans-unit id="sql.migration.cutover">
<source xml:lang="en">Migration cutover</source>
<target state="translated">Cutover di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.card">
<source xml:lang="en">Database migrations completing cutover</source>
<target state="translated">Migrazioni del database che completano il cutover</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.error">
<source xml:lang="en">An error occurred while initiating cutover.</source>
<target state="translated">Si è verificato un errore durante l'avvio del cutover.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.help.main">
<source xml:lang="en">Perform the following steps before you complete cutover.</source>
<target state="translated">Prima di completare il cutover, eseguire i passaggi seguenti.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.in.progress">
<source xml:lang="en">Cutover in progress for database '{0}'</source>
<target state="translated">Cutover in corso per il database '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.last.file.restored">
<source xml:lang="en">Last file restored: {0}</source>
<target state="translated">Ultimo file ripristinato: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.pending.backup">
<source xml:lang="en">Log backups pending restore: {0}</source>
<target state="translated">Backup dei log in attesa di ripristino: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.status.refresh.error">
<source xml:lang="en">An error occurred while refreshing the migration status.</source>
<target state="translated">Si è verificato un errore durante l'aggiornamento dello stato di migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.step.1">
<source xml:lang="en">1. Stop all incoming transactions to the source database.</source>
<target state="translated">1. Arrestare tutte le transazioni in ingresso nel database di origine.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.step.2.blob">
<source xml:lang="en">2. Create a final transaction log differential or backup and store it in the Azure Storage Blob Container.</source>
<target state="translated">2. Creare un differenziale o un backup del log finale delle transazioni e archiviarlo nel contenitore del BLOB del servizio di archiviazione di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.step.2.network.share">
<source xml:lang="en">2. Create a final transaction log backup and store it on the network share.</source>
<target state="translated">2. Creare un backup del log finale delle transazioni e archiviarlo nella condivisione di rete.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.step.3.blob">
<source xml:lang="en">3. Verify that all backups have been restored on the target database. The "Log backups pending restore" value should be zero.</source>
<target state="translated">3. Verificare che tutti i backup siano stati ripristinati nel database di destinazione. Il valore "Backup dei log in attesa di ripristino" deve essere zero.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.step.3.network.share">
<source xml:lang="en">3. Verify that all log backups have been restored on the target database. The "Log backups pending restore" value should be zero.</source>
<target state="translated">3. Verificare che i tutti i backup del log siano stati ripristinati nel database di destinazione. Il valore "Backup dei log in attesa di ripristino" deve essere zero.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.type">
<source xml:lang="en">Mode</source>
<target state="translated">Modalità</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.description">
<source xml:lang="en">Determine the migration readiness of your SQL Server instances, identify a recommended Azure SQL target, and complete the migration of your SQL Server instance to Azure SQL Managed Instance, SQL Server on Azure Virtual Machines or Azure SQL Database.</source>
<target state="translated">Determinare l'idoneità alla migrazione delle istanze di SQL Server, identificare una destinazione di Azure SQL consigliata e completare la migrazione dell'istanza di SQL Server a Istanza gestita di SQL di Azure, SQL Server in Macchine virtuali di Azure o database SQL di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.description.dmsGuide">
<source xml:lang="en">A hub of migration articles that provides step-by-step guidance for migrating and modernizing your data assets in Azure.</source>
<target state="translated">Un hub di articoli sulla migrazione che fornisce indicazioni dettagliate per la migrazione e la modernizzazione degli asset di dati in Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.description.mi">
<source xml:lang="en">A step-by-step tutorial to migrate databases from a SQL Server instance (on-premises or Azure Virtual Machines) to Azure SQL Managed Instance with minimal downtime.</source>
<target state="translated">Esercitazione dettagliata per eseguire la migrazione di database da un'istanza di SQL Server (locale o macchine virtuali di Azure) a Istanza gestita di SQL di Azure con tempi di inattività minimi.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.description.migrateUsingADS">
<source xml:lang="en">The Azure SQL Migration extension for Azure Data Studio provides capabilities to assess, get right-sized Azure recommendations and migrate SQL Server databases to Azure.</source>
<target state="translated">L'estensione Azure SQL Migration per Azure Data Studio offre funzionalità per valutare, ottenere consigli di Azure di dimensioni corrette ed eseguire la migrazione di database SQL Server in Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.description.sqldb">
<source xml:lang="en">A step-by-step tutorial to migrate databases from a SQL Server instance (on-premises or Azure Virtual Machines) to Azure SQL Database.</source>
<target state="translated">Esercitazione dettagliata per eseguire la migrazione di database da un'istanza di SQL Server (locale o macchine virtuali di Azure) a database SQL di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.description.vm">
<source xml:lang="en">A step-by-step tutorial to migrate databases from a SQL Server instance (on-premises) to SQL Server on Azure Virtual Machines with minimal downtime.</source>
<target state="translated">Esercitazione dettagliata per eseguire la migrazione di database da un'istanza di SQL Server (locale) a SQL server in macchine virtuali di Azure con tempi di inattività minimi.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.dmsGuide">
<source xml:lang="en">Azure Database Migration Guides</source>
<target state="translated">Guide alla migrazione del database di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.mi">
<source xml:lang="en">Tutorial: Migrate to Azure SQL Managed Instance (online)</source>
<target state="translated">Esercitazione: Eseguire la migrazione a Istanza gestita di SQL di Azure (online)</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.migrateUsingADS">
<source xml:lang="en">Migrate databases using Azure Data Studio</source>
<target state="translated">Eseguire la migrazione di database tramite Azure Data Studio</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.sqldb">
<source xml:lang="en">Tutorial: Migrate to SQL Server on Azure SQL Database (offline)</source>
<target state="translated">Esercitazione: Eseguire la migrazione a SQL Server nel database SQL di Azure (offline).</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.vm">
<source xml:lang="en">Tutorial: Migrate to SQL Server on Azure Virtual Machines (online)</source>
<target state="translated">Esercitazione: Eseguire la migrazione a SQL Server in Macchine virtuali di Azure (online)</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.title">
<source xml:lang="en">Help articles and video links</source>
<target state="translated">Articoli della guida e collegamenti video</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.login.migrate.task.button">
<source xml:lang="en">Migrate logins to Azure SQL</source>
<target state="translated">Eseguire la migrazione degli account di accesso a Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.login.migrate.task.button.description">
<source xml:lang="en">Migrate SQL Server logins to Azure SQL.</source>
<target state="translated">Eseguire la migrazione degli account a Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.migrate.task.button">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Eseguire la migrazione a Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.migrate.task.button.description">
<source xml:lang="en">Migrate a SQL Server instance to Azure SQL.</source>
<target state="translated">Eseguire la migrazione di un'istanza di SQL Server ad Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.title">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migrazione di Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.data.source.configuration.page.title">
<source xml:lang="en">Data source configuration</source>
<target state="translated">Configurazione di origine dati</target>
</trans-unit>
<trans-unit id="sql.migration.data.uploaded.info">
<source xml:lang="en">Comparison of the actual amount of data read from the source and the actual amount of data uploaded to the target.</source>
<target state="translated">Confronto tra la quantità effettiva di dati letti dall'origine e la quantità effettiva di dati caricati nella destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.data.uploaded.size">
<source xml:lang="en">Data uploaded / size</source>
<target state="translated">Dati caricati/dimensioni</target>
</trans-unit>
<trans-unit id="sql.migration.database">
<source xml:lang="en">Database</source>
<target state="translated">Database</target>
</trans-unit>
<trans-unit id="sql.migration.database.already.exists">
<source xml:lang="en">Database '{0}' already exists on the target managed instance '{1}'.</source>
<target state="translated">Il database '{0}' esiste già nell'istanza gestita di destinazione '{1}'.</target>
</trans-unit>
<trans-unit id="sql.migration.database.already.exists.vm.info">
<source xml:lang="en">Ensure that the provided database name(s) do not already exist on the target SQL Server on Azure Virtual Machine.</source>
<target state="translated">Assicurarsi che i nomi di database specificati non esistano già nella istanza di SQL Server di destinazione nella macchina virtuale di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.description">
<source xml:lang="en">Select the databases that you want to assess for migration to Azure SQL.</source>
<target state="translated">Selezionare i database da valutare per la migrazione a Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.title">
<source xml:lang="en">Databases for assessment</source>
<target state="translated">Database per la valutazione</target>
</trans-unit>
<trans-unit id="sql.migration.database.backup.load.error">
<source xml:lang="en">An error occurred while accessing database details.</source>
<target state="translated">Si è verificato un errore durante laccesso ai dettagli del database.</target>
</trans-unit>
<trans-unit id="sql.migration.database.connection.error">
<source xml:lang="en">An error occurred while connecting to target migration database.</source>
<target state="translated">Errore durante la connessione al database di migrazione di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.database.connection.error.message">
<source xml:lang="en">Connection error:{0} {1}</source>
<target state="translated">Errore di connessione:{0} {1}</target>
</trans-unit>
<trans-unit id="sql.migration.database.loading">
<source xml:lang="en">Loading database table list..</source>
<target state="translated">Caricamento dell'elenco delle tabelle di database in corso..</target>
</trans-unit>
<trans-unit id="sql.migration.database.loading.tables">
<source xml:lang="en">Loading tables list...</source>
<target state="translated">Caricamento dell'elenco delle tabelle in corso...</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.description">
<source xml:lang="en">To migrate to the Azure SQL target, choose a migration mode based on your downtime requirements.</source>
<target state="translated">Per eseguire la migrazione alla destinazione Azure SQL, scegliere una modalità di migrazione in base ai requisiti di inattività.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.label">
<source xml:lang="en">Migration mode</source>
<target state="translated">Modalità di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.offline.description">
<source xml:lang="en">Application downtime will start when the migration starts.</source>
<target state="translated">Il tempo di inattività dell'applicazione verrà avviato all'avvio della migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.offline.label">
<source xml:lang="en">Offline migration</source>
<target state="translated">Migrazione offline</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.online.description">
<source xml:lang="en">Application downtime is limited to cutover at the end of migration.</source>
<target state="translated">Il tempo di inattività dell'applicazione è limitato al cutover al termine della migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.online.label">
<source xml:lang="en">Online migration</source>
<target state="translated">Migrazione online</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.service">
<source xml:lang="en">Database Migration Service</source>
<target state="translated">Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.service.authentication.keys">
<source xml:lang="en">Database Migration Service authentication keys</source>
<target state="translated">Chiavi di autenticazione del Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.service.created.successfully">
<source xml:lang="en">Successfully created a Database Migration Service.</source>
<target state="translated">La creazione di un Servizio Migrazione del database è stata completata.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.status">
<source xml:lang="en">Database migration status</source>
<target state="translated">Stato di migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.status.label">
<source xml:lang="en">Database migration status: {0}</source>
<target state="translated">Stato della migrazione del database: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.database.missing.tables">
<source xml:lang="en">0 tables found.</source>
<target state="translated">0 tabelle trovate.</target>
</trans-unit>
<trans-unit id="sql.migration.database.page.description">
<source xml:lang="en">Select the location of the database backups to use during migration.</source>
<target state="translated">Selezionare il percorso dei backup del database da usare durante la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.database.status.column">
<source xml:lang="en">Migration status</source>
<target state="translated">Stato della migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.refresh.label">
<source xml:lang="en">Refresh</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.selection.description">
<source xml:lang="en">To migrate to the Azure SQL target, select tables in each database for migration.</source>
<target state="translated">Per eseguire la migrazione alla destinazione Azure SQL, selezionare le tabelle in ogni database per la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.selection.label">
<source xml:lang="en">Migration table selection</source>
<target state="translated">Selezione tabella di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.source.column.label">
<source xml:lang="en">Source database</source>
<target state="translated">Database di origine</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.tables.column.label">
<source xml:lang="en">Select tables</source>
<target state="translated">Selezionare le tabelle</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.target.column.label">
<source xml:lang="en">Target database</source>
<target state="translated">Database di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.database.to.be.migrated">
<source xml:lang="en">Database to be migrated</source>
<target state="translated">Database di cui eseguire la migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.database.validate.selection">
<source xml:lang="en">Please select target database tables to migrate to. At least one database with one table is required.</source>
<target state="translated">Selezionare le tabelle di database di destinazione in cui eseguire la migrazione. È necessario almeno un database con una tabella.</target>
</trans-unit>
<trans-unit id="sql.migration.databases">
<source xml:lang="en">Databases ({0}/{1})</source>
<target state="translated">Database ({0}/{1})</target>
</trans-unit>
<trans-unit id="sql.migration.databases.selected">
<source xml:lang="en">{0}/{1} databases selected</source>
<target state="translated">{0}/{1} database selezionati</target>
</trans-unit>
<trans-unit id="sql.migration.databases.table.title">
<source xml:lang="en">Databases</source>
<target state="translated">Database</target>
</trans-unit>
<trans-unit id="sql.migration.day">
<source xml:lang="en">{0} day</source>
<target state="translated">{0} giorni</target>
</trans-unit>
<trans-unit id="sql.migration.days">
<source xml:lang="en">{0} days</source>
<target state="translated">{0} giorni</target>
</trans-unit>
<trans-unit id="sql.migration.default.database">
<source xml:lang="en">Default database</source>
<target state="translated">Database predefinito</target>
</trans-unit>
<trans-unit id="sql.migration.delete.error">
<source xml:lang="en">An error occurred while deleting the migration.</source>
<target state="translated">Si è verificato un errore durante l'eliminazione della migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.delete.migration">
<source xml:lang="en">Delete migration</source>
<target state="translated">Eliminare migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.description">
<source xml:lang="en">Description</source>
<target state="translated">Descrizione</target>
</trans-unit>
<trans-unit id="sql.migration.details.breadcrumb.migrations">
<source xml:lang="en">Migrations</source>
<target state="translated">Migrazioni</target>
</trans-unit>
<trans-unit id="sql.migration.details.copied">
<source xml:lang="en">Details copied</source>
<target state="translated">Copia dei dettagli completata</target>
</trans-unit>
<trans-unit id="sql.migration.details.refresh">
<source xml:lang="en">Refresh</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.all.tables.label">
<source xml:lang="en">Total tables</source>
<target state="translated">Tabelle totali</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.cancelled.tables.label">
<source xml:lang="en">Cancelled</source>
<target state="translated">Annullato</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.failed.tables.label">
<source xml:lang="en">Failed</source>
<target state="translated">Non riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.field.label">
<source xml:lang="en">Server objects</source>
<target state="translated">Oggetti server</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.filter.aria.label">
<source xml:lang="en">Filter table migration results using keywords</source>
<target state="translated">Filtra i risultati della migrazione delle tabelle usando parole chiave</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.filter.label">
<source xml:lang="en">Filter table migration results</source>
<target state="translated">Filtra i risultati della migrazione della tabella</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.inprogress.tables.label">
<source xml:lang="en">In progress</source>
<target state="translated">In corso</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.label">
<source xml:lang="en">Server objects</source>
<target state="translated">Oggetti server</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.successful.tables.label">
<source xml:lang="en">Successful</source>
<target state="translated">Riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.dms.location">
<source xml:lang="en">Azure region for your Azure Database Migration Service. Only regions that contain a service will be shown.</source>
<target state="translated">Area di Azure per il Servizio Migrazione del database di Azure. Verranno visualizzate solo le aree che contengono un servizio.</target>
</trans-unit>
<trans-unit id="sql.migration.dms.provision.failed">
<source xml:lang="en">Failed to provision a Database Migration Service. Wait a few minutes and then try again.</source>
<target state="translated">Non è stato possibile effettuare il provisioning di un Servizio Migrazione del database. Attendere qualche minuto, quindi riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.dms.resource">
<source xml:lang="en">Your Azure Database Migration Service resource name</source>
<target state="translated">Nome della risorsa Servizio Migrazione del database di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.dms.resource_group">
<source xml:lang="en">Resource group for your Azure SQL target. Only resource groups that contain a service will be shown.</source>
<target state="translated">Gruppo di risorse per la destinazione Azure SQL. Verranno visualizzati solo i gruppi di risorse che contengono un servizio.</target>
</trans-unit>
<trans-unit id="sql.migration.dms.subscription">
<source xml:lang="en">Subscription name for your Azure Database Migration Service</source>
<target state="translated">Gruppo di risorse per il Servizio Migrazione del database di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.duration">
<source xml:lang="en">Duration</source>
<target state="translated">Durata</target>
</trans-unit>
<trans-unit id="sql.migration.empty.table.subtext">
<source xml:lang="en">If results were expected, verify the connection to the SQL Server instance.</source>
<target state="translated">Se sono previsti risultati, verificare la connessione all'istanza di SQL Server.</target>
</trans-unit>
<trans-unit id="sql.migration.empty.table.text">
<source xml:lang="en">No backup files</source>
<target state="translated">Nessun file di backup</target>
</trans-unit>
<trans-unit id="sql.migration.enter.your.sql.cred">
<source xml:lang="en">Enter the credentials for the source SQL Server instance. These credentials will be used while migrating databases to Azure SQL.</source>
<target state="translated">Immettere le credenziali per l'istanza di SQL Server di origine. Queste credenziali verranno usate durante la migrazione dei database ad Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.error">
<source xml:lang="en">Error</source>
<target state="translated">Errore</target>
</trans-unit>
<trans-unit id="sql.migration.error.aria.view.details">
<source xml:lang="en">Click to view error details</source>
<target state="translated">Fai clic per visualizzare i dettagli dell'errore</target>
</trans-unit>
<trans-unit id="sql.migration.error.details.label">
<source xml:lang="en">Migration error(s))</source>
<target state="translated">Errore di migrazione:</target>
</trans-unit>
<trans-unit id="sql.migration.error.details.title">
<source xml:lang="en">Migration error details</source>
<target state="translated">Dettagli sull'errore di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.error.dialog.clear.button.label">
<source xml:lang="en">Clear</source>
<target state="translated">Cancella</target>
</trans-unit>
<trans-unit id="sql.migration.error.title">
<source xml:lang="en">Migration status details</source>
<target state="translated">Dettagli sullo stato della migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.failed">
<source xml:lang="en">Database migrations failed</source>
<target state="translated">Migrazioni del database non riuscite</target>
</trans-unit>
<trans-unit id="sql.migration.feedback.issue.title">
<source xml:lang="en">Feedback on the migration experience</source>
<target state="translated">Feedback sull'esperienza di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.file.name">
<source xml:lang="en">File name</source>
<target state="translated">Nome file</target>
</trans-unit>
<trans-unit id="sql.migration.finish.time">
<source xml:lang="en">Finish time</source>
<target state="translated">Ora di fine</target>
</trans-unit>
<trans-unit id="sql.migration.first.lsn">
<source xml:lang="en">First LSN</source>
<target state="translated">Primo LSN</target>
</trans-unit>
<trans-unit id="sql.migration.full.backup.files">
<source xml:lang="en">Full backup files</source>
<target state="translated">File di backup completi</target>
</trans-unit>
<trans-unit id="sql.migration.generic.congratulations">
<source xml:lang="en">We have completed the assessment of your SQL Server instance '{0}'.</source>
<target state="translated">È stata completata la valutazione dell'istanza di SQL Server '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.hr">
<source xml:lang="en">{0} hr</source>
<target state="translated">{0} ora</target>
</trans-unit>
<trans-unit id="sql.migration.hrs">
<source xml:lang="en">{0} hrs</source>
<target state="translated">{0} ore</target>
</trans-unit>
<trans-unit id="sql.migration.impact">
<source xml:lang="en">Impact</source>
<target state="translated">Impatto</target>
</trans-unit>
<trans-unit id="sql.migration.impact.object.name">
<source xml:lang="en">Name: {0}</source>
<target state="translated">Nome: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.impact.object.type">
<source xml:lang="en">Type: {0}</source>
<target state="translated">Tipo: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.impacted.objects">
<source xml:lang="en">Impacted objects</source>
<target state="translated">Oggetti interessati</target>
</trans-unit>
<trans-unit id="sql.migration.inline.migration.notebook.title">
<source xml:lang="en">Inline migration</source>
<target state="translated">Migrazione inline</target>
</trans-unit>
<trans-unit id="sql.migration.inprogress.warning.multiple">
<source xml:lang="en">{0} databases have warnings</source>
<target state="translated">{0} database presentano avvisi</target>
</trans-unit>
<trans-unit id="sql.migration.inprogress.warning.single">
<source xml:lang="en">{0} database has warnings</source>
<target state="translated">{0} database presenta avvisi</target>
</trans-unit>
<trans-unit id="sql.migration.instance">
<source xml:lang="en">Instance</source>
<target state="translated">Istanza</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.account.error">
<source xml:lang="en">To continue, select a valid Azure account.</source>
<target state="translated">Per continuare, selezionare un account Azure valido.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.blob.container.error">
<source xml:lang="en">To continue, select a valid blob container for source database '{0}'.</source>
<target state="translated">Per continuare, selezionare un contenitore BLOB valido per il database di origine '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.blob.lastBackupFile.error">
<source xml:lang="en">To continue, select a valid last backup file for source database '{0}'.</source>
<target state="translated">Per continuare, selezionare un file di backup recente valido per il database di origine '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.blob.lastBackupFolder.error">
<source xml:lang="en">To continue, select a valid backup folder for source database '{0}'.</source>
<target state="translated">Per continuare, selezionare una cartella di backup valida per il database di origine '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.blob.resourceGroup.error">
<source xml:lang="en">To continue, select a valid resource group for source database '{0}'.</source>
<target state="translated">Per continuare, selezionare un gruppo di risorse valido per il database di origine '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.blob.storageAccount.error">
<source xml:lang="en">To continue, select a valid storage account for source database '{0}'.</source>
<target state="translated">Per continuare, selezionare un account di archiviazione valido per il database di origine '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.location.error">
<source xml:lang="en">To continue, select a valid location.</source>
<target state="translated">Per continuare, selezionare una posizione valida.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.managedInstance.error">
<source xml:lang="en">To continue, select a valid managed instance.</source>
<target state="translated">Per continuare, selezionare un'istanza gestita valida.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.migration.service.error">
<source xml:lang="en">Select a valid Database Migration Service.</source>
<target state="translated">Selezionare un Servizio Migrazione del database valido.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.migration.service.offline.error">
<source xml:lang="en">Select a Database Migration Service that is connected to a node.</source>
<target state="translated">Selezionare un Servizio Migrazione del database connesso a un nodo.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.network.share.location">
<source xml:lang="en">Invalid network share location format. Example: {0}</source>
<target state="translated">Formato della posizione della condivisione di rete non valido. Esempio: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.non.page.blob.backupFile.error">
<source xml:lang="en">To continue, select a blob container where all the backup files are page blobs for source database '{0}', as block blobs are supported only for targets running SQL Server 2016 or later. Learn more: https://aka.ms/dms-migrations-troubleshooting</source>
<target state="translated">Per continuare, selezionare un contenitore BLOB in cui tutti i file di backup sono BLOB di pagine per il database di origine '{0}', perché i BLOB in blocchi sono supportati solo per le destinazioni che eseguono SQL Server 2016 o versione successiva. Altre informazioni: https://aka.ms/dms-migrations-troubleshooting</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.owner.uri.error">
<source xml:lang="en">Cannot connect to the database due to invalid OwnerUri (Parameter 'OwnerUri')</source>
<target state="translated">Impossibile connettersi al database a causa di un OwnerUri invalido (parametro OwnerUri)</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.resourceGroup.error">
<source xml:lang="en">To continue, select a valid resource group.</source>
<target state="translated">Per continuare, selezionare un gruppo di risorse valido.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.savedInfo">
<source xml:lang="en">Cannot retrieve saved session. Try again by selecting new session.</source>
<target state="translated">Impossibile recuperare la sessione salvata. Riprovare selezionando una nuova sessione.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.service.name.error">
<source xml:lang="en">Enter a valid name for the Migration Service.</source>
<target state="translated">Immettere un nome valido per il Servizio Migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.sqldatabase.error">
<source xml:lang="en">To continue, select a valid Azure SQL Database server.</source>
<target state="translated">Per continuare, selezionare un server di database SQL di Azure valido.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.storageAccount.error">
<source xml:lang="en">To continue, select a valid storage account.</source>
<target state="translated">Per continuare, selezionare un account di archiviazione valido.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.subscription.error">
<source xml:lang="en">To continue, select a valid subscription.</source>
<target state="translated">Per continuare, selezionare una sottoscrizione valida.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.target.name.error">
<source xml:lang="en">Enter a valid name for the target database.</source>
<target state="translated">Immettere un nome valido per il database di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.user.account">
<source xml:lang="en">Invalid user account format. Example: {0}</source>
<target state="translated">Formato dell'account utente non valido. Esempio: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.invalid.virtualMachine.error">
<source xml:lang="en">To continue, select a valid virtual machine.</source>
<target state="translated">Per continuare, selezionare una macchina virtuale valida.</target>
</trans-unit>
<trans-unit id="sql.migration.ir.page.description">
<source xml:lang="en">Azure Database Migration Service orchestrates database migration activities and tracks their progress. You can select an existing Database Migration Service if you have created one previously, or create a new one below.</source>
<target state="translated">Il Servizio Migrazione del database di Azure orchestra le attività di migrazione dei database e tiene traccia dei progressi. È possibile selezionare un Servizio Migrazione del database esistente, se ne è stato creato uno in precedenza, o crearne uno nuovo di seguito.</target>
</trans-unit>
<trans-unit id="sql.migration.ir.page.sql.migration.service.not.found">
<source xml:lang="en">No Database Migration Service found. Create a new one.</source>
<target state="translated">Non è stato trovato alcun Servizio Migrazione del database. Crearne uno nuovo.</target>
</trans-unit>
<trans-unit id="sql.migration.ir.page.title">
<source xml:lang="en">Azure Database Migration Service</source>
<target state="translated">Servizio Migrazione del database di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step1">
<source xml:lang="en">Step 1: {0}</source>
<target state="translated">Passaggio 1: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step2">
<source xml:lang="en">Step 2: Use this key to register your integration runtime</source>
<target state="translated">Passaggio 2: Usare questa chiave per registrare il runtime di integrazione</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step3">
<source xml:lang="en">Step 3: Click on 'Test connection' button to check the connection between Azure Database Migration Service and integration runtime</source>
<target state="translated">Passaggio 3: Fare clic sul pulsante 'Test connessione' per controllare la connessione tra il Servizio Migrazione del database di Azure e il runtime di integrazione</target>
</trans-unit>
<trans-unit id="sql.migration.issue.aria.label">
<source xml:lang="en">Blocking Issue: {0}</source>
<target state="translated">Causa del blocco: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.issues">
<source xml:lang="en">Issues</source>
<target state="translated">Problemi</target>
</trans-unit>
<trans-unit id="sql.migration.issues.count">
<source xml:lang="en">Issues ({0})</source>
<target state="translated">Problemi ({0})</target>
</trans-unit>
<trans-unit id="sql.migration.issues.details">
<source xml:lang="en">Issue details</source>
<target state="translated">Dettagli del problema</target>
</trans-unit>
<trans-unit id="sql.migration.key1.copied">
<source xml:lang="en">Key 1 copied</source>
<target state="translated">Chiave 1 copiata</target>
</trans-unit>
<trans-unit id="sql.migration.key1.label">
<source xml:lang="en">Key 1</source>
<target state="translated">Chiave 1</target>
</trans-unit>
<trans-unit id="sql.migration.key2.copied">
<source xml:lang="en">Key 2 copied</source>
<target state="translated">Chiave 2 copiata</target>
</trans-unit>
<trans-unit id="sql.migration.key2.label">
<source xml:lang="en">Key 2</source>
<target state="translated">Chiave 2</target>
</trans-unit>
<trans-unit id="sql.migration.last.LSN">
<source xml:lang="en">Last LSN</source>
<target state="translated">Ultimo LSN</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.backup.files">
<source xml:lang="en">Last applied backup files</source>
<target state="translated">Ultimi file di backup applicati</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.files.taken.on">
<source xml:lang="en">Last applied backup files taken on</source>
<target state="translated">Data ultimi file di backup applicati</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.lsn">
<source xml:lang="en">Last applied LSN</source>
<target state="translated">Ultimo LSN applicato</target>
</trans-unit>
<trans-unit id="sql.migration.last.scan.completed">
<source xml:lang="en">Last scan completed: {0}</source>
<target state="translated">Ultima analisi completata: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.learn.more">
<source xml:lang="en">Learn more</source>
<target state="translated">Altre informazioni</target>
</trans-unit>
<trans-unit id="sql.migration.learn.more.prerequisites">
<source xml:lang="en">Learn more about things you need before starting a migration.</source>
<target state="translated">Altre informazioni sulle operazioni necessarie prima di avviare una migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.load.migration.list.error">
<source xml:lang="en">Error loading migrations list</source>
<target state="translated">Errore durante il caricamento dell'elenco delle migrazioni</target>
</trans-unit>
<trans-unit id="sql.migration.location">
<source xml:lang="en">Location</source>
<target state="translated">Percorso</target>
</trans-unit>
<trans-unit id="sql.migration.map.source.column">
<source xml:lang="en">Source database</source>
<target state="translated">Database di origine</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.column">
<source xml:lang="en">Target database</source>
<target state="translated">Database di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.description">
<source xml:lang="en">Select the target database where you would like to migrate your source database to. You can choose a target database for only one source database.</source>
<target state="translated">Selezionare il database di destinazione in cui si vuole eseguire la migrazione del database di origine. È possibile scegliere un database di destinazione per un solo database di origine.</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.heading">
<source xml:lang="en">Map selected source databases to target databases for migration</source>
<target state="translated">Eseguire il mapping dei database di origine selezionati ai database di destinazione per la migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.placeholder">
<source xml:lang="en">Select a target database</source>
<target state="translated">Selezionare un database di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.mi.not.ready">
<source xml:lang="en">The managed instance '{0}' is unavailable for migration because it is currently in the '{1}' state. To continue, select an available managed instance.</source>
<target state="translated">L'istanza gestita '{0}' non è disponibile per la migrazione perché si trova attualmente nello stato '{1}'. Per continuare, selezionare un'istanza gestita disponibile.</target>
</trans-unit>
<trans-unit id="sql.migration.migration.completed">
<source xml:lang="en">Database migrations completed</source>
<target state="translated">Migrazioni del database completate</target>
</trans-unit>
<trans-unit id="sql.migration.migration.in.progress">
<source xml:lang="en">Database migrations in progress</source>
<target state="translated">Migrazioni database in corso</target>
</trans-unit>
<trans-unit id="sql.migration.migration.list.ascending.label">
<source xml:lang="en">Ascending</source>
<target state="translated">Crescente</target>
</trans-unit>
<trans-unit id="sql.migration.migration.list.sort.label">
<source xml:lang="en">Sort</source>
<target state="translated">Ordina</target>
</trans-unit>
<trans-unit id="sql.migration.migration.status">
<source xml:lang="en">Migration status</source>
<target state="translated">Stato di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.migration.status.filter">
<source xml:lang="en">Migration status filter</source>
<target state="translated">Filtro dello stato della migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.min">
<source xml:lang="en">{0} min</source>
<target state="translated">{0} minuto</target>
</trans-unit>
<trans-unit id="sql.migration.mins">
<source xml:lang="en">{0} mins</source>
<target state="translated">{0} minuti</target>
</trans-unit>
<trans-unit id="sql.migration.missing.targetPassword.error">
<source xml:lang="en">To continue, enter a valid target password.</source>
<target state="translated">Per continuare, immettere una password di destinazione valida.</target>
</trans-unit>
<trans-unit id="sql.migration.missing.targetUserName.error">
<source xml:lang="en">To continue, enter a valid target user name.</source>
<target state="translated">Per continuare, immettere un nome utente di destinazione valido.</target>
</trans-unit>
<trans-unit id="sql.migration.mode">
<source xml:lang="en">Mode</source>
<target state="translated">Modalità</target>
</trans-unit>
<trans-unit id="sql.migration.more.info">
<source xml:lang="en">More info</source>
<target state="translated">Altre informazioni</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.all.steps.completed.errors">
<source xml:lang="en">All steps completed with the following error(s):{0}{1}</source>
<target state="translated">Tutti i passaggi sono stati completati con gli errori seguenti:{0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.all.steps.succeeded">
<source xml:lang="en">All steps succeeded.</source>
<target state="translated">Tutti i passaggi sono stati completati.</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.some.steps.are.still.running">
<source xml:lang="en">Some steps are still running.</source>
<target state="translated">Alcuni passaggi sono ancora in esecuzione.</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status">
<source xml:lang="en">Step status: {0}</source>
<target state="translated">Stato del passaggio: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status.dialog.copy.results">
<source xml:lang="en">Copy results</source>
<target state="translated">Copia risultati</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status.dialog.heading">
<source xml:lang="en">Step details</source>
<target state="translated">Dettagli del passaggio</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status.errors">
<source xml:lang="en">Step status: {0}{1}{2}</source>
<target state="translated">Stato del passaggio: {0}{1}{2}</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status.steps.title">
<source xml:lang="en">Steps</source>
<target state="translated">Passaggi</target>
</trans-unit>
<trans-unit id="sql.migration.na">
<source xml:lang="en">N/A</source>
<target state="translated">N/D</target>
</trans-unit>
<trans-unit id="sql.migration.name">
<source xml:lang="en">Name</source>
<target state="translated">Nome</target>
</trans-unit>
<trans-unit id="sql.migration.name.label">
<source xml:lang="en">Names:</source>
<target state="translated">Nomi:</target>
</trans-unit>
<trans-unit id="sql.migration.name.of.new.rg">
<source xml:lang="en">Name of new resource group</source>
<target state="translated">Nome del nuovo gruppo di risorse</target>
</trans-unit>
<trans-unit id="sql.migration.nc.blob.storage.radio.label">
<source xml:lang="en">My database backups are in an Azure Storage Blob Container</source>
<target state="translated">I backup dei database personali si trovano in un contenitore BLOB del servizio di archiviazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.nc.network.share.radio.label">
<source xml:lang="en">My database backups are on a network share</source>
<target state="translated">I backup del database personale si trovano su una condivisione di rete</target>
</trans-unit>
<trans-unit id="sql.migration.network.share">
<source xml:lang="en">Network share</source>
<target state="translated">Condivisione di rete</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.azure.header">
<source xml:lang="en">Storage account details</source>
<target state="translated">Dettagli dell'account di archiviazione</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.azure.help">
<source xml:lang="en">Provide the Azure Storage account where the backups will be uploaded to.</source>
<target state="translated">Specificare l'account di Archiviazione di Azure in cui verranno caricati i backup.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.header.text">
<source xml:lang="en">Network share details</source>
<target state="translated">Dettagli sulla condivisione di rete</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.help.text">
<source xml:lang="en">Provide the network share location where the backups are stored, and the user credentials used to access the share.</source>
<target state="translated">Specificare il percorso della condivisione di rete in cui sono archiviati i backup e le credenziali utente utilizzate per accedere alla condivisione.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.location.info">
<source xml:lang="en">Network share path for your database backups. The migration process will automatically retrieve valid backup files from this network share.</source>
<target state="translated">Percorso della condivisione di rete per i backup del database. Il processo di migrazione recupererà automaticamente i file di backup validi da questa condivisione di rete.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.location.label">
<source xml:lang="en">Network share location where the backups are stored</source>
<target state="translated">Percorso di condivisione di rete in cui sono archiviati i backup</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.password.label">
<source xml:lang="en">Password</source>
<target state="translated">Password</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.password.placeholder">
<source xml:lang="en">Enter password.</source>
<target state="translated">Immetti password.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.path">
<source xml:lang="en">Network share path</source>
<target state="translated">Percorso condivisione di rete</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.path.format">
<source xml:lang="en">\\Servername.domainname.com\Backupfolder</source>
<target state="translated">\\Servername.domainname.com\Backupfolder</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.storage.table.help">
<source xml:lang="en">Enter target database name and network share path information for the selected source databases.</source>
<target state="translated">Immettere il nome del database di destinazione e le informazioni sul percorso della condivisione di rete per i database di origine selezionati.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.windows.user.info">
<source xml:lang="en">Windows user account with read access to the network share location.</source>
<target state="translated">Account utente di Windows con accesso in lettura al percorso di condivisione di rete.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.windows.user.label">
<source xml:lang="en">Windows user account with read access to the network share location</source>
<target state="translated">Account utente di Windows con accesso in lettura al percorso di condivisione di rete</target>
</trans-unit>
<trans-unit id="sql.migration.new.resource.group">
<source xml:lang="en">(new) {0}</source>
<target state="translated">(nuovo) {0}</target>
</trans-unit>
<trans-unit id="sql.migration.newSupportRequest">
<source xml:lang="en">New support request</source>
<target state="translated">Nuova richiesta di supporto</target>
</trans-unit>
<trans-unit id="sql.migration.no">
<source xml:lang="en">No</source>
<target state="translated">No</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobContainers.found">
<source xml:lang="en">No blob containers found.</source>
<target state="translated">Nessun contenitore BLOB trovato.</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobFiles.found">
<source xml:lang="en">No blob files found.</source>
<target state="translated">Nessun file BLOB trovato.</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobFolders.found">
<source xml:lang="en">No blob folders found.</source>
<target state="translated">Nessuna cartella BLOB trovata.</target>
</trans-unit>
<trans-unit id="sql.migration.no.fileShares.found">
<source xml:lang="en">No file shares found.</source>
<target state="translated">Non sono state trovate condivisioni file.</target>
</trans-unit>
<trans-unit id="sql.migration.no.issues.mi">
<source xml:lang="en">No issues found for migrating to Azure SQL Managed Instance.</source>
<target state="translated">Non sono stati rilevati problemi per la migrazione a Istanza gestita di SQL di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.no.issues.sqldb">
<source xml:lang="en">No issues found for migrating to Azure SQL Database.</source>
<target state="translated">Non sono stati rilevati problemi per la migrazione a database SQL di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.no.issues.vm">
<source xml:lang="en">No issues found for migrating to SQL Server on Azure Virtual Machine.</source>
<target state="translated">Nono sono stati riscontrati problemi per la migrazione a SQL Server per la macchina virtuale di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.no.location.found">
<source xml:lang="en">No locations found.</source>
<target state="translated">Nessuna località trovata.</target>
</trans-unit>
<trans-unit id="sql.migration.no.managedInstance.found">
<source xml:lang="en">No managed instances found.</source>
<target state="translated">Non sono state trovate istanze gestite.</target>
</trans-unit>
<trans-unit id="sql.migration.no.pending.backups">
<source xml:lang="en">No pending backups. Click refresh to check current status.</source>
<target state="translated">Nessun backup in sospeso. Fare clic su Aggiorna per controllare lo stato corrente.</target>
</trans-unit>
<trans-unit id="sql.migration.no.results">
<source xml:lang="en">Assessment results are unavailable.</source>
<target state="translated">I risultati della valutazione non sono disponibili.</target>
</trans-unit>
<trans-unit id="sql.migration.no.sqldatabase.found">
<source xml:lang="en">No Azure SQL databases found.</source>
<target state="translated">Non sono stati trovati database SQL di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.no.sqldatabaseserver.found">
<source xml:lang="en">No Azure SQL database servers found.</source>
<target state="translated">Non sono stati trovati server di database SQL di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.no.storageAccount.found">
<source xml:lang="en">No storage accounts found.</source>
<target state="translated">Non sono stati trovati account di archiviazione.</target>
</trans-unit>
<trans-unit id="sql.migration.no.subscription.found">
<source xml:lang="en">No subscriptions found.</source>
<target state="translated">Non sono state trovate sottoscrizioni.</target>
</trans-unit>
<trans-unit id="sql.migration.no.virtualMachine.found">
<source xml:lang="en">No virtual machines found.</source>
<target state="translated">Non sono state trovate macchine virtuali.</target>
</trans-unit>
<trans-unit id="sql.migration.notebook.open.error">
<source xml:lang="en">Failed to open the migration notebook.</source>
<target state="translated">Non è stato possibile aprire il notebook di migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.number.logins.migrating">
<source xml:lang="en">{0}/{1} migrating logins displayed</source>
<target state="translated">{0}/{1} la migrazione degli account di accesso è visualizzata</target>
</trans-unit>
<trans-unit id="sql.migration.object.details">
<source xml:lang="en">Object details</source>
<target state="translated">Dettagli dell'oggetto</target>
</trans-unit>
<trans-unit id="sql.migration.offline">
<source xml:lang="en">Offline</source>
<target state="translated">Offline</target>
</trans-unit>
<trans-unit id="sql.migration.offline.caps">
<source xml:lang="en">OFFLINE</source>
<target state="translated">OFFLINE</target>
</trans-unit>
<trans-unit id="sql.migration.ok">
<source xml:lang="en">OK</source>
<target state="translated">OK</target>
</trans-unit>
<trans-unit id="sql.migration.online">
<source xml:lang="en">Online</source>
<target state="translated">Online</target>
</trans-unit>
<trans-unit id="sql.migration.open.migration.destails.error">
<source xml:lang="en">Error opening migration details dialog</source>
<target state="translated">Errore durante l'apertura della finestra di dialogo dei dettagli della migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.open.migration.service.error">
<source xml:lang="en">Error opening migration service dialog</source>
<target state="translated">Errore durante l'apertura della finestra di dialogo del servizio di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.open.migration.target.error">
<source xml:lang="en">Error opening migration target</source>
<target state="translated">Errore durante l'apertura della destinazione di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.option">
<source xml:lang="en">Download and install integration runtime</source>
<target state="translated">Scaricare e installare il runtime di integrazione</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.dynamic">
<source xml:lang="en">Dynamic range</source>
<target state="translated">Intervallo dinamico</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.none">
<source xml:lang="en">None</source>
<target state="translated">Nessuna</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.physical">
<source xml:lang="en">Physical partitions</source>
<target state="translated">Partizioni fisiche</target>
</trans-unit>
<trans-unit id="sql.migration.password.label">
<source xml:lang="en">Target password</source>
<target state="translated">Password di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.password.placeholder">
<source xml:lang="en">Enter the target password</source>
<target state="translated">Immettere la password di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.path.user.account">
<source xml:lang="en">User account</source>
<target state="translated">Account utente</target>
</trans-unit>
<trans-unit id="sql.migration.pre.req.1">
<source xml:lang="en">An Azure account (not required for assessment or SKU recommendation functionality)</source>
<target state="translated">U account Azure (non necessario per la valutazione o la funzionalità di raccomandazione SKU)</target>
</trans-unit>
<trans-unit id="sql.migration.pre.req.2">
<source xml:lang="en">A source SQL Server database(s) running on on-premises, or on SQL Server on Azure Virtual Machine or any virtual machine running in the cloud (private, public).</source>
<target state="translated">Un database di SQL Server di origine in esecuzione in locale o in SQL Server su macchina virtuale di Azure o su qualsiasi macchina virtuale in esecuzione nel cloud (privato, pubblico).</target>
</trans-unit>
<trans-unit id="sql.migration.pre.req.3">
<source xml:lang="en">An Azure SQL Managed Instance, SQL Server on Azure Virtual Machine, or Azure SQL Database to migrate your database(s) to.</source>
<target state="translated">Un'Istanza gestita di SQL di Azure, SQL Server per la macchina virtuale di Azure o database SQL di Azure in cui eseguire la migrazione dei database.</target>
</trans-unit>
<trans-unit id="sql.migration.pre.req.4">
<source xml:lang="en">Your database backup location details, either a network file share or an Azure Blob Storage container (not required for Azure SQL Database targets).</source>
<target state="translated">Dettagli del percorso di backup del database, una condivisione file di rete o un contenitore di Archiviazione BLOB di Azure (non necessario per destinazioni database SQL di Azure).</target>
</trans-unit>
<trans-unit id="sql.migration.pre.req.title">
<source xml:lang="en">Things you need before starting your Azure SQL migration:</source>
<target state="translated">Elementi necessari prima dell'avvio della migrazione di Azure SQL:</target>
</trans-unit>
<trans-unit id="sql.migration.provide.unique.containers">
<source xml:lang="en">Provide a unique container for each target database. Databases affected: </source>
<target state="translated">Specificare un contenitore univoco per ogni database di destinazione. Database interessati: </target>
</trans-unit>
<trans-unit id="sql.migration.quick.pick.placeholder">
<source xml:lang="en">Select the operation you'd like to perform.</source>
<target state="translated">Selezionare l'operazione che si desidera eseguire.</target>
</trans-unit>
<trans-unit id="sql.migration.recommendation">
<source xml:lang="en">Recommendation</source>
<target state="translated">Raccomandazione</target>
</trans-unit>
<trans-unit id="sql.migration.refresh">
<source xml:lang="en">Refresh</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.assessment.button.label">
<source xml:lang="en">Refresh assessment</source>
<target state="translated">Aggiornare valutazione</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.key1">
<source xml:lang="en">Refresh key 1</source>
<target state="translated">Aggiorna chiave 1</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.key2">
<source xml:lang="en">Refresh key 2</source>
<target state="translated">Aggiorna chiave 2</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.migrations.error.label">
<source xml:lang="en">An error occurred while refreshing the migrations list. Please check your linked Azure connection and click refresh to try again.</source>
<target state="translated">Si è verificato un errore durante l'aggiornamento dell'elenco delle migrazioni. Controlla la tua connessione di Azure collegata e fai clic su Aggiorna per riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.migrations.error.title">
<source xml:lang="en">An error has occured while refreshing the migrations list.</source>
<target state="translated">Si è verificato un errore durante l'aggiornamento dell'elenco delle migrazioni.</target>
</trans-unit>
<trans-unit id="sql.migration.resource.group.description">
<source xml:lang="en">A resource group is a container that holds related resources for an Azure solution.</source>
<target state="translated">Un gruppo di risorse è un contenitore che include le risorse correlate per una soluzione di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.resource.group.not.found">
<source xml:lang="en">No resource groups found.</source>
<target state="translated">Non sono stati trovati gruppi di risorse.</target>
</trans-unit>
<trans-unit id="sql.migration.resourceGroups">
<source xml:lang="en">Resource group</source>
<target state="translated">Gruppo di risorse</target>
</trans-unit>
<trans-unit id="sql.migration.resume.session">
<source xml:lang="en">Resume previously saved session</source>
<target state="translated">Riprendi sessione salvata in precedenza</target>
</trans-unit>
<trans-unit id="sql.migration.resume.title">
<source xml:lang="en">Run migration workflow again</source>
<target state="translated">Eseguire di nuovo il flusso di lavoro di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.retry.migration">
<source xml:lang="en">Retry migration</source>
<target state="translated">Ripeti migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.retry.migration.error">
<source xml:lang="en">An error occurred while retrying the migration.</source>
<target state="translated">Si è verificato un errore durante il riavvio della migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.rg.created">
<source xml:lang="en">Resource group created</source>
<target state="translated">Il gruppo di risorse è stato creato</target>
</trans-unit>
<trans-unit id="sql.migration.run.validation">
<source xml:lang="en">Run validation</source>
<target state="translated">Esegui convalida</target>
</trans-unit>
<trans-unit id="sql.migration.running.multi.steps.heading">
<source xml:lang="en">We are running the following steps:</source>
<target state="translated">Sono in corso i passaggi seguenti:</target>
</trans-unit>
<trans-unit id="sql.migration.save.assessment.report">
<source xml:lang="en">Save assessment report</source>
<target state="translated">Salvare report di valutazione</target>
</trans-unit>
<trans-unit id="sql.migration.save.assessment.report.success">
<source xml:lang="en">Successfully saved assessment report to {0}.</source>
<target state="translated">Il report di valutazione è stato salvato in {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.save.close">
<source xml:lang="en">Save and close</source>
<target state="translated">Salva e chiudi</target>
</trans-unit>
<trans-unit id="sql.migration.save.close.popup">
<source xml:lang="en">Configuration saved. Performance data collection will remain running in the background. You can stop the collection when you want to.</source>
<target state="translated">Configurazione salvata. La raccolta dei dati sulle prestazioni rimarrà in esecuzione in background. È possibile arrestare la raccolta quando si vuole.</target>
</trans-unit>
<trans-unit id="sql.migration.save.recommendation.report">
<source xml:lang="en">Save recommendation report</source>
<target state="translated">Salvare report delle raccomandazioni</target>
</trans-unit>
<trans-unit id="sql.migration.save.recommendation.report.success">
<source xml:lang="en">Successfully saved recommendation report to {0}.</source>
<target state="translated">Il report delle raccomandazioni è stato salvato in {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">Annulla</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.next">
<source xml:lang="en">Next</source>
<target state="translated">Avanti</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.result">
<source xml:lang="en">Saved session</source>
<target state="translated">Sessione salvata</target>
</trans-unit>
<trans-unit id="sql.migration.search">
<source xml:lang="en">Search</source>
<target state="translated">Cercare</target>
</trans-unit>
<trans-unit id="sql.migration.search.for.migration">
<source xml:lang="en">Filter migration results</source>
<target state="translated">Filtra i risultati della migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.sec">
<source xml:lang="en">{0} sec</source>
<target state="translated">{0} sec</target>
</trans-unit>
<trans-unit id="sql.migration.select.azure.mi">
<source xml:lang="en">Select your target Azure subscription and your target Azure SQL Managed Instance.</source>
<target state="translated">Selezionare la sottoscrizione di Azure di destinazione e l'Istanza gestita di SQL di Azure di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.select.azure.vm">
<source xml:lang="en">Select your target Azure Subscription and your target SQL Server on Azure Virtual Machine for your target.</source>
<target state="translated">Selezionare la sottoscrizione Azure di destinazione e l'SQL Server di destinazione sulla macchina virtuale di Azure di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.select.database.to.continue">
<source xml:lang="en">Please select 1 or more logins for migration</source>
<target state="translated">Selezionare 1 o più account di accesso per la migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.select.database.to.migrate">
<source xml:lang="en">Select the databases to migrate.</source>
<target state="translated">Selezionare i database di cui eseguire la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.select.prompt">
<source xml:lang="en">Click on SQL Server instance or any of the databases on the left to view its details.</source>
<target state="translated">Fare clic sull'istanza di SQL Server o su uno dei database a sinistra per visualizzarne i dettagli.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.apply.label">
<source xml:lang="en">Apply</source>
<target state="translated">Applica</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.delete.label">
<source xml:lang="en">Clear</source>
<target state="translated">Cancella</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.description">
<source xml:lang="en">Azure Database Migration Service</source>
<target state="translated">Azure Database Migration Service</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.heading">
<source xml:lang="en">Filter the migration list by Database Migration Service</source>
<target state="translated">Filtrare l'elenco di migrazione in base al Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.prompt">
<source xml:lang="en">Select a Database Migration Service</source>
<target state="translated">Selezionare un Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.">
<source xml:lang="en">Sign into Azure and select an account</source>
<target state="translated">Accedere ad Azure e selezionare un account</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.location">
<source xml:lang="en">Select a location</source>
<target state="translated">Selezionare una posizione</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.resource.group">
<source xml:lang="en">Select a resource group</source>
<target state="translated">Selezionare un gruppo di risorse</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.service">
<source xml:lang="en">Select a Database Migration Service</source>
<target state="translated">Selezionare un Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.subscription">
<source xml:lang="en">Select a subscription</source>
<target state="translated">Selezionare un abbonamento</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.tenant">
<source xml:lang="en">Select a tenant</source>
<target state="translated">Selezionare un tenant</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.account.error">
<source xml:lang="en">An error occurred while loading available Azure accounts.</source>
<target state="translated">Si è verificato un errore durante il caricamento degli account di Azure disponibili.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.location.error">
<source xml:lang="en">An error occurred while loading locations. Please check your Azure connection and try again.</source>
<target state="translated">Si è verificato un errore durante il caricamento delle posizioni. Controllare la connessione di Azure e riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.migration.target">
<source xml:lang="en">Select a target server.</source>
<target state="translated">Selezionare un server di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.resource.group.error">
<source xml:lang="en">An error occurred while loading available resource groups. Please check your Azure connection and try again.</source>
<target state="translated">Si è verificato un errore durante il caricamento dei gruppi di risorse disponibili. Controllare la connessione di Azure e riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.service.error">
<source xml:lang="en">An error occurred while loading available database migration services. Please check your Azure connection and try again.</source>
<target state="translated">Si è verificato un errore durante il caricamento dei servizi Migrazione del database disponibili. Controllare la connessione di Azure e riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.subscription.error">
<source xml:lang="en">An error occurred while loading account subscriptions. Please check your Azure connection and try again.</source>
<target state="translated">Si è verificato un errore durante il caricamento delle sottoscrizioni account. Controllare la connessione di Azure e riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.target.type.">
<source xml:lang="en">Select target Azure SQL Type</source>
<target state="translated">Selezionare il tipo di Azure SQL di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.tenant.error">
<source xml:lang="en">An error occurred while loading available Azure account tenants.</source>
<target state="translated">Si è verificato un errore durante il caricamento dei tenant degli account di Azure disponibili.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.service.label">
<source xml:lang="en">Azure Database Migration Service</source>
<target state="translated">Azure Database Migration Service</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.title">
<source xml:lang="en">Select Database Migration Service</source>
<target state="translated">Seleziona Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="sql.migration.select.target.to.continue">
<source xml:lang="en">To continue, select a target.</source>
<target state="translated">Per continuare, selezionare una destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.server">
<source xml:lang="en">Server</source>
<target state="translated">Server</target>
</trans-unit>
<trans-unit id="sql.migration.service.account.info.text">
<source xml:lang="en">Ensure that the service account running the source SQL Server instance has read privileges on the network share.</source>
<target state="translated">Assicurarsi che l'account del servizio che esegue l'istanza di SQL Server di origine abbia i privilegi di lettura nella condivisione di rete.</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.container.description1">
<source xml:lang="en">Azure Database Migration Service leverages Azure Data Factory's self-hosted integration runtime to upload backups from on-premises network file share to Azure.</source>
<target state="translated">Il Servizio Migrazione del database di Azure sfrutta il runtime di integrazione self-hosted di Azure Data Factory per caricare i backup dalla condivisione file di rete locale in Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.container.description2">
<source xml:lang="en">Follow the instructions below to setup self-hosted integration runtime.</source>
<target state="translated">Seguire le istruzioni seguenti per configurare il runtime di integrazione self-hosted.</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.heading">
<source xml:lang="en">Setup integration runtime</source>
<target state="translated">Configurare il runtime di integrazione</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.loading.help">
<source xml:lang="en">Loading Migration Services</source>
<target state="translated">Caricamento dei servizi di migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.authKeys.label">
<source xml:lang="en">Authentication keys</source>
<target state="translated">Chiavi di autenticazione</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.authKeys.title">
<source xml:lang="en">Authentication keys used to connect to the self-hosted integration runtime node</source>
<target state="translated">Chiavi di autenticazione usate per connettersi al nodo del runtime di integrazione self-hosted</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.button.label">
<source xml:lang="en">Close</source>
<target state="translated">Chiudi</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.dialog.title">
<source xml:lang="en">Azure Database Migration Service</source>
<target state="translated">Servizio Migrazione del database di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.ir.label">
<source xml:lang="en">Self-hosted integration runtime node</source>
<target state="translated">Nodo del runtime di integrazione self-hosted</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.status.unavailable">
<source xml:lang="en">-- unavailable --</source>
<target state="translated">-- non disponibile --</target>
</trans-unit>
<trans-unit id="sql.migration.service.header">
<source xml:lang="en">Azure Database Migration Service "{0}" details:`</source>
<target state="translated">Dettagli sul Servizio Migrazione del database di Azure "{0}":`</target>
</trans-unit>
<trans-unit id="sql.migration.service.not.found">
<source xml:lang="en">No Migration Services found. To continue, create a new one.</source>
<target state="translated">Non sono stati trovati Servizi Migrazione. Per continuare, crearne uno nuovo.</target>
</trans-unit>
<trans-unit id="sql.migration.service.not.ready">
<source xml:lang="en">Azure Database Migration Service is not registered. Azure Database Migration Service '{0}' needs to be registered with self-hosted integration runtime on any node.</source>
<target state="translated">Il Servizio Migrazione del database di Azure non è registrato. Il Servizio Migrazione del database di Azure '{0}' deve essere registrato con il runtime di integrazione self-hosted su un nodo.</target>
</trans-unit>
<trans-unit id="sql.migration.service.prompt">
<source xml:lang="en">{0} (change)</source>
<target state="translated">{0} (modifica)</target>
</trans-unit>
<trans-unit id="sql.migration.service.ready">
<source xml:lang="en">Azure Database Migration Service '{0}' is connected to self-hosted integration runtime running on the node - {1}</source>
<target state="translated">Il Servizio Migrazione del database di Azure '{0}' è connesso al runtime di integrazione self-hosted in esecuzione sul nodo - {1}</target>
</trans-unit>
<trans-unit id="sql.migration.service.selection.location.msg">
<source xml:lang="en">Please select the location of your database backup files before continuing.</source>
<target state="translated">Selezionare il percorso dei file di backup del database prima di continuare.</target>
</trans-unit>
<trans-unit id="sql.migration.service.status.refresh.error">
<source xml:lang="en">An error occurred while refreshing the migration service creation status.</source>
<target state="translated">Si è verificato un errore durante l'aggiornamento dello stato di creazione del servizio di migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.services.container.description">
<source xml:lang="en">Enter the information below to add a new Azure Database Migration Service.</source>
<target state="translated">Immettere le informazioni di seguito per aggiungere un nuovo Servizio Migrazione del database di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.services.dialog.title">
<source xml:lang="en">Create Azure Database Migration Service</source>
<target state="translated">Creare Servizio Migrazione del database di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.services.location">
<source xml:lang="en">Azure region for your Azure Database Migration Service. This should be the same region as your target Azure SQL.</source>
<target state="translated">Area di Azure per il Servizio Migrazione del database di Azure. Deve essere la stessa area dell'Azure SQL di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.services.name">
<source xml:lang="en">Azure Database Migration Service name.</source>
<target state="translated">Nome del Servizio Migrazione del database di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.services.resource.group">
<source xml:lang="en">Resource group for your Azure Database Migration Service.</source>
<target state="translated">Gruppo di risorse per il Servizio Migrazione del database di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.services.subscription">
<source xml:lang="en">Subscription name for your Azure Database Migration Service.</source>
<target state="translated">Gruppo di risorse per il Servizio Migrazione del database di Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.services.target">
<source xml:lang="en">Azure SQL target selected as default.</source>
<target state="translated">Destinazione Azure SQL selezionata come predefinita.</target>
</trans-unit>
<trans-unit id="sql.migration.shir">
<source xml:lang="en">Self-hosted integration runtime node</source>
<target state="translated">Nodo del runtime di integrazione self-hosted</target>
</trans-unit>
<trans-unit id="sql.migration.show.status">
<source xml:lang="en">Show status</source>
<target state="translated">Mostrare stato</target>
</trans-unit>
<trans-unit id="sql.migration.size">
<source xml:lang="en">Size (MB)</source>
<target state="translated">Dimensioni (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.size.column.header">
<source xml:lang="en">Size</source>
<target state="translated">Dimensioni</target>
</trans-unit>
<trans-unit id="sql.migration.size.gb">
<source xml:lang="en">{0} GB</source>
<target state="translated">{0} GB</target>
</trans-unit>
<trans-unit id="sql.migration.size.mb">
<source xml:lang="en">{0} MB</source>
<target state="translated">{0} MB</target>
</trans-unit>
<trans-unit id="sql.migration.size.tb">
<source xml:lang="en">{0} TB</source>
<target state="translated">{0} TB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.available.recommendations.many">
<source xml:lang="en">{0} recommendations available</source>
<target state="translated">{0} raccomandazioni disponibili</target>
</trans-unit>
<trans-unit id="sql.migration.sku.available.recommendations.one">
<source xml:lang="en">{0} recommendation available</source>
<target state="translated">{0} raccomandazione disponibile</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration">
<source xml:lang="en">Azure configuration</source>
<target state="translated">Configurazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.businessCritical">
<source xml:lang="en">Business critical</source>
<target state="translated">Business critical</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.gen5">
<source xml:lang="en">Gen5</source>
<target state="translated">Generazione5</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.generalPurpose">
<source xml:lang="en">General purpose</source>
<target state="translated">Utilizzo generico</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.hyperscale">
<source xml:lang="en">Hyperscale</source>
<target state="translated">Hyperscale</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.mi">
<source xml:lang="en">{0} - {1} - {2} vCore</source>
<target state="translated">{0} - {1} - {2} vCore</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.miPreview">
<source xml:lang="en">{0} - {1} - {2} vCore - {3} GB</source>
<target state="translated">{0} - {1} - {2} vCore - {3} GB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.premiumSeries">
<source xml:lang="en">Premium-series</source>
<target state="translated">Serie Premium</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.premiumSeriesMemoryOptimized">
<source xml:lang="en">Memory optimized premium-series</source>
<target state="translated">Serie Premium con ottimizzazione per la memoria</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.sqldb">
<source xml:lang="en">{0} - {1} vCore</source>
<target state="translated">{0} - {1} vCore</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.sqldbPreview">
<source xml:lang="en">{0} - {1} - {2} vCore - {3} GB</source>
<target state="translated">{0} - {1} - {2} vCore - {3} GB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.storage">
<source xml:lang="en">{0} x {1}</source>
<target state="translated">{0} x {1}</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.vm">
<source xml:lang="en">{0} ({1} vCPU)</source>
<target state="translated">{0} ({1} vCPU)</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.vmPreview">
<source xml:lang="en">Data: {0}, Log: {1}, tempdb: {2}</source>
<target state="translated">Dati: {0}, Log: {1}, tempdb: {2}</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.chooseMethod.instructions">
<source xml:lang="en">Choose how you want to provide performance data</source>
<target state="translated">Scegliere come fornire i dati delle prestazioni</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.collectData.method">
<source xml:lang="en">Collect performance data now</source>
<target state="translated">Raccogli ora i dati delle prestazioni</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.collectDataSelectFolder.instructions">
<source xml:lang="en">Select a folder on your local drive where performance data will be saved</source>
<target state="translated">Selezionare una cartella nell'unità locale in cui verranno salvati i dati sulle prestazioni</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.description">
<source xml:lang="en">Azure recommendation requires performance data of SQL server instance to provide target recommendation. Enable performance data collection to receive the target recommendation for the databases you want to migrate. The longer this will be enabled the better the recommendation. You can disable performance data collection at any time.</source>
<target state="translated">La raccomandazione di Azure richiede i dati delle prestazioni dell'istanza di SQL Server per fornire la raccomandazione di destinazione. Abilitare la raccolta dati sulle prestazioni per ricevere la raccomandazione di destinazione per i database di cui eseguire la migrazione. Più a lungo questa opzione verrà abilitata, migliore sarà la raccomandazione. È possibile disabilitare la raccolta dei dati delle prestazioni in qualsiasi momento.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.description2">
<source xml:lang="en">You can also choose to select this data from an existing folder, if you have already collected it previously.</source>
<target state="translated">È anche possibile scegliere di selezionare questi dati da una cartella esistente, se sono già stati raccolti in precedenza.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.openExisting.method">
<source xml:lang="en">I already have the performance data</source>
<target state="translated">I dati sulle prestazioni sono già disponibili</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.openExistingSelectFolder.instructions">
<source xml:lang="en">Select a folder on your local drive where previously collected performance data was saved</source>
<target state="translated">Seleziona una cartella nell'unità locale in cui sono stati salvati i dati sulle prestazioni raccolti in precedenza</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.start">
<source xml:lang="en">Start</source>
<target state="translated">Avvia</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.start.popup">
<source xml:lang="en">Starting performance data collection...</source>
<target state="translated">Avvio della raccolta dei dati delle prestazioni...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.autoRefreshTimer">
<source xml:lang="en">Initial recommendations will automatically refresh in approximately {0} minute(s).</source>
<target state="translated">Le raccomandazioni iniziali verranno aggiornate automaticamente tra circa {0} minuto/i.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.imported">
<source xml:lang="en">Azure recommendation has been applied using the provided data. Import or collect additional data to refine the recommendation.</source>
<target state="translated">La raccomandazione di Azure è stata applicata usando i dati forniti. Importare o raccogliere dati aggiuntivi per affinare la raccomandazione.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.inProgress">
<source xml:lang="en">Data collection in progress. Generating initial recommendations...</source>
<target state="translated">Raccolta dati in corso. Generazione delle raccomandazioni iniziali...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.manualRefreshTimer">
<source xml:lang="en">Check back periodically for updated recommendations by pressing the 'Refresh recommendation' button.</source>
<target state="translated">Controllare periodicamente la disponibilità di consigli aggiornati premendo il pulsante “Aggiorna raccomandazione”.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.notEnabled">
<source xml:lang="en">Azure recommendation collects and analyzes performance data and then recommends an appropriate sized target in Azure for your workload.</source>
<target state="translated">La raccomandazione di Azure raccoglie e analizza i dati delle prestazioni e quindi consiglia un target di dimensioni appropriate in Azure per il carico di lavoro.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.refining">
<source xml:lang="en">Data collection still in progress. Refining existing recommendations...</source>
<target state="translated">Raccolta dati ancora in corso. Affinamento delle raccomandazioni esistenti...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.status.stopped">
<source xml:lang="en">Data collection for Azure recommendations has been stopped.</source>
<target state="translated">La raccolta di dati per le raccomandazioni di Azure è stata arrestata.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.stop.popup">
<source xml:lang="en">Stopping performance data collection...</source>
<target state="translated">Arresto della raccolta dei dati delle prestazioni...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.tooltip.inProgress">
<source xml:lang="en">Running the performance collection for a longer period of time helps ensure a more accurate recommendation.</source>
<target state="translated">L'esecuzione della raccolta delle prestazioni per un periodo di tempo più lungo consente di garantire una raccomandazione più accurata.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.tooltip.notStarted">
<source xml:lang="en">Click the button below to import or collect database performance data.</source>
<target state="translated">Fare clic sul pulsante seguente per importare o raccogliere i dati sulle prestazioni del database.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.card.azureRecommendation.inProgress">
<source xml:lang="en">Azure recommendation will be displayed once data collection is complete.</source>
<target state="translated">La raccomandazione di Azure verrà visualizzata al termine della raccolta dei dati.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.card.azureRecommendation.notEnabled">
<source xml:lang="en">Azure recommendation is not available. Click “Get Azure recommendation” button below</source>
<target state="translated">La raccomandazione di Azure non è disponibile. Fare clic sul pulsante \"Ottieni raccomandazione di Azure\" di seguito</target>
</trans-unit>
<trans-unit id="sql.migration.sku.cpu">
<source xml:lang="en">{0} cores</source>
<target state="translated">{0} core</target>
</trans-unit>
<trans-unit id="sql.migration.sku.cpu.requirement">
<source xml:lang="en">CPU requirement</source>
<target state="translated">Requisiti CPU</target>
</trans-unit>
<trans-unit id="sql.migration.sku.data.iops.requirement">
<source xml:lang="en">Data IOPS requirement</source>
<target state="translated">Requisito operazioni di I/O al secondo dati</target>
</trans-unit>
<trans-unit id="sql.migration.sku.data.storage.requirement">
<source xml:lang="en">Data storage requirement</source>
<target state="translated">Requisito di archiviazione dati</target>
</trans-unit>
<trans-unit id="sql.migration.sku.gb">
<source xml:lang="en">{0} GB</source>
<target state="translated">{0} GB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.get.recommendation">
<source xml:lang="en">Get Azure recommendation</source>
<target state="translated">Ottieni raccomandazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.io.memory.requirement">
<source xml:lang="en">IO latency requirement</source>
<target state="translated">Requisito latenza I/O</target>
</trans-unit>
<trans-unit id="sql.migration.sku.iops">
<source xml:lang="en">{0} IOPS</source>
<target state="translated">{0} operazioni di I/O al secondo</target>
</trans-unit>
<trans-unit id="sql.migration.sku.location">
<source xml:lang="en">Azure region for your Azure SQL target. Only regions that contain a target eligible for migration will be shown.</source>
<target state="translated">Area di Azure per la destinazione Azure SQL. Verranno visualizzate solo le aree che contengono una destinazione idonea per la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.log.storage.requirement">
<source xml:lang="en">Log storage requirement</source>
<target state="translated">Requisito di archiviazione log</target>
</trans-unit>
<trans-unit id="sql.migration.sku.logs.iops.requirement">
<source xml:lang="en">Logs IOPS requirement</source>
<target state="translated">Requisito operazioni di I/O al secondo dei log</target>
</trans-unit>
<trans-unit id="sql.migration.sku.memory.requirement">
<source xml:lang="en">Memory requirement</source>
<target state="translated">Requisiti memoria</target>
</trans-unit>
<trans-unit id="sql.migration.sku.mi.card.title">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Istanza gestita di SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.mi.target.title">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Istanza gestita di SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.ms">
<source xml:lang="en">{0} ms</source>
<target state="translated">{0} ms</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters">
<source xml:lang="en">Recommendation parameters</source>
<target state="translated">Parametri raccomandazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.edit">
<source xml:lang="en">Edit parameters</source>
<target state="translated">Modifica parametri</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.edit.title">
<source xml:lang="en">Edit recommendation parameters</source>
<target state="translated">Modifica parametri raccomandazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.elastic">
<source xml:lang="en">Enable elastic recommendation</source>
<target state="translated">Abilitare la raccomandazione elastica</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.elastic.info">
<source xml:lang="en">Elastic recommendation uses an alternate recommendation model which utilizes personalized price-performance profiling against existing on-cloud customers.</source>
<target state="translated">La raccomandazione elastica usa un modello di raccomandazione alternativo che usa la profilatura personalizzata dei prezzi e delle prestazioni per i clienti esistenti nel cloud.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.preview">
<source xml:lang="en">Enable preview features</source>
<target state="translated">Abilitare le funzionalità di anteprima</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.preview.info">
<source xml:lang="en">Enabling this option will include the latest hardware generations that have significantly improved performance and scalability. These SKUs are currently in Preview and may not yet be available in all regions.</source>
<target state="translated">L'abilitazione di questa opzione includerà le generazioni hardware più recenti che hanno notevolmente migliorato le prestazioni e la scalabilità. Questi SKU sono attualmente in anteprima e potrebbero non essere ancora disponibili in tutte le aree.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.percentage.utilization">
<source xml:lang="en">Percentage utilization</source>
<target state="translated">Percentuale di utilizzo</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.percentage.utilization.tooltip">
<source xml:lang="en">Percentile of data points to be used during aggregation of the performance data.</source>
<target state="translated">Percentile dei punti dati da utilizzare durante l'aggregazione dei dati sulle prestazioni.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.scale.factor">
<source xml:lang="en">Scale factor</source>
<target state="translated">Fattore di scala:</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.scale.factor.invalid">
<source xml:lang="en">Invalid scale factor. Enter a positive integer value.</source>
<target state="translated">Fattore di scala non valido. Immettere un valore intero positivo.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.scale.factor.tooltip">
<source xml:lang="en">Change scale factor if you want the Azure recommendation to be a percentage larger or smaller than you current workload.</source>
<target state="translated">Modificare il fattore di scala se si vuole che la raccomandazione di Azure sia una percentuale maggiore o minore del carico di lavoro corrente.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.text">
<source xml:lang="en">Enter the information below to edit the recommendation parameters.</source>
<target state="translated">Immettere le informazioni seguenti per modificare i parametri della raccomandazione.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.update">
<source xml:lang="en">Update</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="sql.migration.sku.percentage">
<source xml:lang="en">{0}%</source>
<target state="translated">{0}%</target>
</trans-unit>
<trans-unit id="sql.migration.sku.percentile">
<source xml:lang="en">{0}th percentile</source>
<target state="translated">{0}° percentile</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendation">
<source xml:lang="en">Azure recommendation (PREVIEW)</source>
<target state="translated">Consigli di Azure (ANTEPRIMA)</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendation.view.assessment.mi">
<source xml:lang="en">To migrate to Azure SQL Managed Instance, view assessment results and select one or more databases.</source>
<target state="translated">Per eseguire la migrazione all'Istanza gestita di SQL di Azure, visualizzare i risultati della valutazione e selezionare uno o più database.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendation.view.assessment.sqldb">
<source xml:lang="en">To migrate to Azure SQL Database, view assessment results and select one or more databases.</source>
<target state="translated">Per eseguire la migrazione a database SQL di Azure, visualizzare i risultati della valutazione e selezionare uno o più database.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendation.view.assessment.vm">
<source xml:lang="en">To migrate to SQL Server on Azure Virtual Machine, view assessment results and select one or more databases.</source>
<target state="translated">Per eseguire la migrazione a SQL Server per una macchina virtuale di Azure, visualizzare i risultati della valutazione e selezionare uno o più database.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendationReason">
<source xml:lang="en">Recommendation reason</source>
<target state="translated">Motivo della raccomandazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations">
<source xml:lang="en">Recommendations</source>
<target state="translated">Indicazioni</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.empty.time">
<source xml:lang="en">-</source>
<target state="translated">-</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.lastRefreshed">
<source xml:lang="en">Last refreshed: {0}</source>
<target state="translated">Ultimo aggiornamento: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.loading">
<source xml:lang="en">Loading...</source>
<target state="translated">Caricamento...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.title">
<source xml:lang="en">{0} Recommendations</source>
<target state="translated">({0} raccomandazioni)</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommended.value">
<source xml:lang="en">Value</source>
<target state="translated">Valore</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendedConfiguration">
<source xml:lang="en">Recommended configuration</source>
<target state="translated">Configurazione consigliata</target>
</trans-unit>
<trans-unit id="sql.migration.sku.refine.recommendation">
<source xml:lang="en">Refine Azure recommendation</source>
<target state="translated">Affina la raccomandazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.refresh.recommendation">
<source xml:lang="en">Refresh recommendation</source>
<target state="translated">Aggiorna raccomandazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.resource">
<source xml:lang="en">Your Azure SQL target resource name</source>
<target state="translated">Nome della risorsa di destinazione Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.resource_group">
<source xml:lang="en">Resource group for your Azure SQL target. Only resource groups that contain a target eligible for migration will be shown.</source>
<target state="translated">Gruppo di risorse per la destinazione Azure SQL. Verranno visualizzati solo i gruppi di risorse che contengono una destinazione idonea per la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.restart.performance.collection">
<source xml:lang="en">Restart data collection</source>
<target state="translated">Riavvia raccolta dati</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sourceProperties">
<source xml:lang="en">Source properties</source>
<target state="translated">Proprietà origine</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.dataDisk">
<source xml:lang="en">SQL data files</source>
<target state="translated">File di dati DQS</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.logDisk">
<source xml:lang="en">SQL log files</source>
<target state="translated">File di log SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.temp">
<source xml:lang="en">SQL tempdb</source>
<target state="translated">Tempdb SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sqldb.card.title">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Database SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sqldb.target.title">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Database SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.stop.performance.collection">
<source xml:lang="en">Stop data collection</source>
<target state="translated">Interrompi la raccolta di dati</target>
</trans-unit>
<trans-unit id="sql.migration.sku.storage.dimension">
<source xml:lang="en">Dimension</source>
<target state="translated">Dimensione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.storageGB">
<source xml:lang="en">{0} GB</source>
<target state="translated">{0} GB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.subscription">
<source xml:lang="en">Subscription name for your Azure SQL target</source>
<target state="translated">Nome sottoscrizione per lSQL Azure di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetDeploymentType">
<source xml:lang="en">Target deployment type</source>
<target state="translated">Tipo di distribuzione di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration">
<source xml:lang="en">Recommendation target storage configuration</source>
<target state="translated">Configurazione dell'archiviazione di destinazione delle raccomandazioni</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching">
<source xml:lang="en">Host caching</source>
<target state="translated">Memorizzazione nella cache dell'host</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.na">
<source xml:lang="en">Not applicable</source>
<target state="translated">Non applicabile</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.none">
<source xml:lang="en">None</source>
<target state="translated">Nessuno</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.readOnly">
<source xml:lang="en">Read-only</source>
<target state="translated">Sola lettura</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.readWrite">
<source xml:lang="en">Read/write</source>
<target state="translated">Lettura/scrittura</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.ephemeralTempdb">
<source xml:lang="en">Place tempdb on the local ephemeral SSD (default D:\) drive</source>
<target state="translated">Posiziona tempdb nell'unità SSD temporanea locale (D:\) predefinita</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.info">
<source xml:lang="en">Below is the target storage configuration required to meet your storage performance needs.</source>
<target state="translated">Di seguito è riportata la configurazione dell'archiviazione di destinazione necessaria per soddisfare le esigenze di prestazioni di archiviazione.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.local.SSD">
<source xml:lang="en">Local SSD</source>
<target state="translated">SSD locale</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.recommendedStorageConfiguration">
<source xml:lang="en">Recommended storage configuration</source>
<target state="translated">Configurazione di archiviazione consigliata</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.storage">
<source xml:lang="en">Storage</source>
<target state="translated">Archiviazione</target>
</trans-unit>
<trans-unit id="sql.migration.sku.viewDetails">
<source xml:lang="en">View details</source>
<target state="translated">Visualizza dettagli</target>
</trans-unit>
<trans-unit id="sql.migration.sku.vm.card.title">
<source xml:lang="en">SQL Server on Azure Virtual Machine</source>
<target state="translated">SQL Server per la macchina virtuale di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.vm.target.title">
<source xml:lang="en">SQL Server on Azure Virtual Machine</source>
<target state="translated">SQL Server per la macchina virtuale di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.source.configuration">
<source xml:lang="en">Source configuration</source>
<target state="translated">Configurazione origine</target>
</trans-unit>
<trans-unit id="sql.migration.source.credentials">
<source xml:lang="en">Source credentials</source>
<target state="translated">Credenziali origine</target>
</trans-unit>
<trans-unit id="sql.migration.source.database">
<source xml:lang="en">Source database name</source>
<target state="translated">Nome database di origine</target>
</trans-unit>
<trans-unit id="sql.migration.source.databases">
<source xml:lang="en">Source databases</source>
<target state="translated">Database di origine</target>
</trans-unit>
<trans-unit id="sql.migration.source.details.sqlAuth">
<source xml:lang="en">Enter the SQL Authentication credentials used to connect to SQL Server instance {0}. These credentials will be used to connect to the SQL Server instance and identify valid backup files.</source>
<target state="translated">Immettere le credenziali di autenticazione SQL usate per la connessione all'istanza di SQL Server {0}. Queste credenziali verranno usate per connettersi all'istanza di SQL Server e identificare i file di backup validi.</target>
</trans-unit>
<trans-unit id="sql.migration.source.details.windowAuth">
<source xml:lang="en">Enter the Windows Authentication credentials used to connect to SQL Server instance {0}. These credentials will be used to connect to the SQL Server instance and identify valid backup files.</source>
<target state="translated">Immettere le credenziali di autenticazione di Windows usate per la connessione all'istanza di SQL Server {0}. Queste credenziali verranno usate per connettersi all'istanza di SQL Server e identificare i file di backup validi.</target>
</trans-unit>
<trans-unit id="sql.migration.source.login">
<source xml:lang="en">Source login</source>
<target state="translated">Accesso di origine</target>
</trans-unit>
<trans-unit id="sql.migration.source.server">
<source xml:lang="en">Source server</source>
<target state="translated">Server di origine</target>
</trans-unit>
<trans-unit id="sql.migration.source.version">
<source xml:lang="en">Source version</source>
<target state="translated">Versione di origine</target>
</trans-unit>
<trans-unit id="sql.migration.sql.assessment.notebook.title">
<source xml:lang="en">SQL migration assessment</source>
<target state="translated">Valutazione della migrazione SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sql.database">
<source xml:lang="en">SQL Database</source>
<target state="translated">Database SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sql.managed.instance">
<source xml:lang="en">SQL Managed Instance</source>
<target state="translated">Istanza gestita di SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sql.server.instance">
<source xml:lang="en">SQL Server instance</source>
<target state="translated">Istanza di SQL Server</target>
</trans-unit>
<trans-unit id="sql.migration.sql.virtual.machine">
<source xml:lang="en">SQL Virtual Machine</source>
<target state="translated">Macchina virtuale SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sql.vm.page.blob.info">
<source xml:lang="en">For target servers running SQL Server 2014 or below, you must store your database backups in an Azure Storage Blob Container instead of uploading them using the network share option. Additionally, you must store the backup files as page blobs, as block blobs are supported only for targets running SQL Server 2016 or later. Learn more: {0}</source>
<target state="translated">Per i server di destinazione che eseguono SQL Server 2014 o versione precedente, è necessario archiviare i backup dei database in un contenitore BLOB del servizio di archiviazione di Azure invece di caricarli usando l'opzione condivisione di rete. È inoltre necessario archiviare i file di backup come BLOB di pagine, perché i BLOB in blocchi sono supportati solo per le destinazioni che eseguono SQL Server 2016 o versione successiva. Altre informazioni: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.sql.vm.page.blob.url.label">
<source xml:lang="en">Known issues, limitations, and troubleshooting</source>
<target state="translated">Problemi noti, limitazioni e risoluzione dei problemi</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copyduration">
<source xml:lang="en">Copy duration</source>
<target state="translated">Durata della copia</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copystart">
<source xml:lang="en">Copy start</source>
<target state="translated">Inizio copia</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copythroughput">
<source xml:lang="en">Copy throughput</source>
<target state="translated">Velocità effettiva di copia</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.dataread">
<source xml:lang="en">Data read</source>
<target state="translated">Dati letti</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.datawritten">
<source xml:lang="en">Data written</source>
<target state="translated">Dati scritti</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.parallelcopytype">
<source xml:lang="en">Parallel copy type</source>
<target state="translated">Tipo di copia parallela</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.rowscopied">
<source xml:lang="en">Rows copied</source>
<target state="translated">Righe copiate</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.rowsread">
<source xml:lang="en">Rows read</source>
<target state="translated">Righe lette</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.tablename">
<source xml:lang="en">Table name</source>
<target state="translated">Nome della tabella</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.usedparallelcopies">
<source xml:lang="en">Used parallel copies</source>
<target state="translated">Copie parallele usate</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.not.ready">
<source xml:lang="en">The SQL database server '{0}' is unavailable for migration because it is currently in the '{1}' state. To continue, select an available SQL database server.</source>
<target state="translated">Il server di database SQL '{0}' non è disponibile per la migrazione perché si trova attualmente nello stato '{1}'. Per continuare, selezionare un server di database SQL disponibile.</target>
</trans-unit>
<trans-unit id="sql.migration.src.database">
<source xml:lang="en">Source database</source>
<target state="translated">Database di origine</target>
</trans-unit>
<trans-unit id="sql.migration.src.server">
<source xml:lang="en">Source name</source>
<target state="translated">Nome dellorigine</target>
</trans-unit>
<trans-unit id="sql.migration.start.login.migration.button">
<source xml:lang="en">Migrate</source>
<target state="translated">Esegui la migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.start.migration.button">
<source xml:lang="en">Start migration</source>
<target state="translated">Avvia migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.start.session">
<source xml:lang="en">Start a new session</source>
<target state="translated">Avvia una nuova sessione</target>
</trans-unit>
<trans-unit id="sql.migration.start.time">
<source xml:lang="en">Start time</source>
<target state="translated">Ora di inizio</target>
</trans-unit>
<trans-unit id="sql.migration.starting.login">
<source xml:lang="en">Validating and migrating logins are in progress</source>
<target state="translated">La convalida e la migrazione degli account di accesso sono in corso</target>
</trans-unit>
<trans-unit id="sql.migration.starting.login.failed">
<source xml:lang="en">Validating and migrating logins failed</source>
<target state="translated">Convalida e migrazione degli account di accesso non riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.starting.migration.dberror">
<source xml:lang="en">Error migrating certificate for database {0}. {1}</source>
<target state="translated">Errore durante la migrazione del certificato per il database {0}. {1}</target>
</trans-unit>
<trans-unit id="sql.migration.starting.migration.error">
<source xml:lang="en">An error occurred while starting the certificate migration: '{0}'</source>
<target state="translated">Si è verificato un errore durante l'avvio della migrazione del certificato: '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.state.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Operazione annullata</target>
</trans-unit>
<trans-unit id="sql.migration.state.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Non riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.state.pending">
<source xml:lang="en">Pending</source>
<target state="translated">In sospeso</target>
</trans-unit>
<trans-unit id="sql.migration.state.running">
<source xml:lang="en">Running</source>
<target state="translated">In esecuzione</target>
</trans-unit>
<trans-unit id="sql.migration.state.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Operazione riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.status">
<source xml:lang="en">Status</source>
<target state="translated">Stato</target>
</trans-unit>
<trans-unit id="sql.migration.status.add.account">
<source xml:lang="en">Add account</source>
<target state="translated">Aggiungi account</target>
</trans-unit>
<trans-unit id="sql.migration.status.add.account.MESSAGE">
<source xml:lang="en">Add your Azure account to view existing migrations and their status.</source>
<target state="translated">Aggiungere l'account Azure per visualizzare le migrazioni esistenti e il relativo stato.</target>
</trans-unit>
<trans-unit id="sql.migration.status.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Annullata</target>
</trans-unit>
<trans-unit id="sql.migration.status.canceling">
<source xml:lang="en">Canceling</source>
<target state="translated">Annullamento in corso</target>
</trans-unit>
<trans-unit id="sql.migration.status.completing">
<source xml:lang="en">Completing</source>
<target state="translated">In fase di completamento</target>
</trans-unit>
<trans-unit id="sql.migration.status.creating">
<source xml:lang="en">Creating</source>
<target state="translated">In fase di creazione</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.all">
<source xml:lang="en">Status: All</source>
<target state="translated">Stato: Tutti</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.completing">
<source xml:lang="en">Status: Completing</source>
<target state="translated">Stato: in fase di completamento</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.failed">
<source xml:lang="en">Status: Failed</source>
<target state="translated">Stato: Non riuscito</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.ongoing">
<source xml:lang="en">Status: Ongoing</source>
<target state="translated">Stato: in corso</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.succeeded">
<source xml:lang="en">Status: Succeeded</source>
<target state="translated">Stato: Riuscito</target>
</trans-unit>
<trans-unit id="sql.migration.status.error.count.multiple">
<source xml:lang="en"> ({0} errors)</source>
<target state="translated"> ({0} errori)</target>
</trans-unit>
<trans-unit id="sql.migration.status.error.count.single">
<source xml:lang="en"> ({0} error)</source>
<target state="translated"> ({0} errore)</target>
</trans-unit>
<trans-unit id="sql.migration.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Non riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.status.inprogress">
<source xml:lang="en">In progress</source>
<target state="translated">In corso</target>
</trans-unit>
<trans-unit id="sql.migration.status.readyforcutover">
<source xml:lang="en">Ready for cutover</source>
<target state="translated">Pronto per il cutover</target>
</trans-unit>
<trans-unit id="sql.migration.status.refresh.label">
<source xml:lang="en">Refresh</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="sql.migration.status.restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">Ripristino in corso</target>
</trans-unit>
<trans-unit id="sql.migration.status.retriable">
<source xml:lang="en">Retriable</source>
<target state="translated">Possibile riprovare</target>
</trans-unit>
<trans-unit id="sql.migration.status.select.service.MESSAGE">
<source xml:lang="en">Select a Database Migration Service to monitor migrations.</source>
<target state="translated">Selezionare un Servizio di Migrazione del database per monitorare le migrazioni.</target>
</trans-unit>
<trans-unit id="sql.migration.status.status.label">
<source xml:lang="en">Status</source>
<target state="translated">Stato</target>
</trans-unit>
<trans-unit id="sql.migration.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.status.uploadingfullbackup">
<source xml:lang="en">Uploading full backup</source>
<target state="translated">Caricamento del backup completo in corso</target>
</trans-unit>
<trans-unit id="sql.migration.status.uploadinglogbackup">
<source xml:lang="en">Uploading log backup(s)</source>
<target state="translated">Caricamento dei backup del log in corso</target>
</trans-unit>
<trans-unit id="sql.migration.status.value">
<source xml:lang="en">{0}</source>
<target state="translated">{0}</target>
</trans-unit>
<trans-unit id="sql.migration.status.warning.count.multiple">
<source xml:lang="en"> ({0} warnings)</source>
<target state="translated"> ({0} avvisi)</target>
</trans-unit>
<trans-unit id="sql.migration.status.warning.count.single">
<source xml:lang="en"> ({0} warning)</source>
<target state="translated"> ({0} avviso)</target>
</trans-unit>
<trans-unit id="sql.migration.storage.account">
<source xml:lang="en">Storage account</source>
<target state="translated">Account di archiviazione</target>
</trans-unit>
<trans-unit id="sql.migration.subscription">
<source xml:lang="en">Subscription</source>
<target state="translated">Sottoscrizione</target>
</trans-unit>
<trans-unit id="sql.migration.summary.azure.storage">
<source xml:lang="en">Azure storage</source>
<target state="translated">Archiviazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.summary.azure.storage.subscription">
<source xml:lang="en">Azure storage subscription</source>
<target state="translated">Sottoscrizione di archiviazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.summary.database.count">
<source xml:lang="en">Databases for migration</source>
<target state="translated">Database per la migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.summary.mi.type">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Istanza gestita di SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.summary.page.title">
<source xml:lang="en">Summary</source>
<target state="translated">Riepilogo</target>
</trans-unit>
<trans-unit id="sql.migration.summary.sqldb.type">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Database SQL di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.summary.vm.type">
<source xml:lang="en">SQL Server on Azure Virtual Machine</source>
<target state="translated">SQL Server per la macchina virtuale di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.feedback.description">
<source xml:lang="en">Feedback</source>
<target state="translated">Feedback</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.feedback.label">
<source xml:lang="en">Feedback</source>
<target state="translated">Feedback</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.login.migration.description">
<source xml:lang="en">Migrate logins to Azure SQL</source>
<target state="translated">Eseguire la migrazione degli account di accesso a Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.login.migration.label">
<source xml:lang="en">New login migration (PREVIEW)</source>
<target state="translated">Nuova migrazione dell'account di accesso (ANTEPRIMA)</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.migration.description">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Esegui migrazione ad Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.migration.label">
<source xml:lang="en">New migration</source>
<target state="translated">Nuova migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.support.description">
<source xml:lang="en">New support request</source>
<target state="translated">Nuova richiesta di supporto</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.support.label">
<source xml:lang="en">New support request</source>
<target state="translated">Nuova richiesta di supporto</target>
</trans-unit>
<trans-unit id="sql.migration.tab.dashboard.title">
<source xml:lang="en">Dashboard</source>
<target state="translated">Dashboard</target>
</trans-unit>
<trans-unit id="sql.migration.tab.migrations.title">
<source xml:lang="en">Migrations</source>
<target state="translated">Migrazioni</target>
</trans-unit>
<trans-unit id="sql.migration.table.error.title">
<source xml:lang="en">Table migration status details</source>
<target state="translated">Dettagli sullo stato della migrazione della tabella</target>
</trans-unit>
<trans-unit id="sql.migration.table.migration.status.label">
<source xml:lang="en">Table migration status: {0}</source>
<target state="translated">Stato della migrazione della tabella: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.missing.count">
<source xml:lang="en">Missing target tables excluded from list: {0}</source>
<target state="translated">Tabelle di destinazione mancanti escluse dall'elenco: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.select.label">
<source xml:lang="en">Select tables for {0}</source>
<target state="translated">Selezionare le tabelle per {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.selected.count">
<source xml:lang="en">{0} of {1} tables selected</source>
<target state="translated">{0} di {1} tabelle selezionate</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.count">
<source xml:lang="en">{0} of {1}</source>
<target state="translated">{0} di {1}</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.edit">
<source xml:lang="en">Edit</source>
<target state="translated">Modifica</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.filter">
<source xml:lang="en">Filter tables</source>
<target state="translated">Filtra tabelle</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.status.column">
<source xml:lang="en">Has rows</source>
<target state="translated">Contiene righe</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.tablename.column">
<source xml:lang="en">Table name</source>
<target state="translated">Nome della tabella</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.update.button">
<source xml:lang="en">Update</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.update.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">Annulla</target>
</trans-unit>
<trans-unit id="sql.migration.target">
<source xml:lang="en">Target</source>
<target state="translated">Destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.database.name">
<source xml:lang="en">Target database</source>
<target state="translated">Database di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.name">
<source xml:lang="en">Target name</source>
<target state="translated">Nome di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.server.name">
<source xml:lang="en">Target name</source>
<target state="translated">Nome della destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.database.name">
<source xml:lang="en">Target database name</source>
<target state="translated">Nome del database di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.platform">
<source xml:lang="en">Target platform</source>
<target state="translated">Piattaforma di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.server">
<source xml:lang="en">Target server</source>
<target state="translated">Server di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.target.table.count.name">
<source xml:lang="en">Tables selected</source>
<target state="translated">Tabelle selezionate</target>
</trans-unit>
<trans-unit id="sql.migration.target.table.missing">
<source xml:lang="en">Target table does not exist</source>
<target state="translated">La tabella di destinazione non esiste</target>
</trans-unit>
<trans-unit id="sql.migration.target.table.not.empty">
<source xml:lang="en">Target table is not empty.</source>
<target state="translated">La tabella di destinazione non è vuota.</target>
</trans-unit>
<trans-unit id="sql.migration.target.version">
<source xml:lang="en">Target version</source>
<target state="translated">Versione di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.tde.button.caption">
<source xml:lang="en">Edit</source>
<target state="translated">Modifica</target>
</trans-unit>
<trans-unit id="sql.migration.tde.button.migrate">
<source xml:lang="en">Migrate certificates</source>
<target state="translated">Esegui la migrazione dei certificati</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.canceled">
<source xml:lang="en">Certificates migration was canceled. Please run and complete the certificates migration to continue.</source>
<target state="translated">La migrazione dei certificati è stata annullata. Eseguire e completare la migrazione dei certificati per continuare.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.canceled.errors">
<source xml:lang="en">Validation was canceled with the following error(s):{0}{1}</source>
<target state="translated">Convalida annullata con gli errori seguenti: {0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.column.databases">
<source xml:lang="en">Databases</source>
<target state="translated">Database</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.column.status">
<source xml:lang="en">Status</source>
<target state="translated">Stato</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.completed.errors">
<source xml:lang="en">Migration completed with the following error(s):{0}{1}</source>
<target state="translated">Migrazione completata con gli errori seguenti:{0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.copy.results">
<source xml:lang="en">Copy migration results</source>
<target state="translated">Copia i risultati della migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.done.button">
<source xml:lang="en">Done</source>
<target state="translated">Fatto</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.heading">
<source xml:lang="en">Migrating the certificates from the following databases:</source>
<target state="translated">Migrazione dei certificati dai database seguenti:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.not.run">
<source xml:lang="en">Certificates migration has not been run for the current configuration. Please run and complete the certificates migration to continue.</source>
<target state="translated">La migrazione dei certificati non è stata eseguita per la configurazione corrente. Eseguire e completare la migrazione dei certificati per continuare.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading">
<source xml:lang="en">Certificates migration progress details:</source>
<target state="translated">Dettagli sullo stato di avanzamento della migrazione dei certificati:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading.completed">
<source xml:lang="en">Certificates migration results:</source>
<target state="translated">Risultati della migrazione dei certificati:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading.previous">
<source xml:lang="en">Previous certificates migration results:</source>
<target state="translated">Risultati della migrazione dei certificati precedenti:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.start.validation">
<source xml:lang="en">Retry migration</source>
<target state="translated">Ripeti migrazione</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.status.details">
<source xml:lang="en">Migration status: {0}{1}{2}</source>
<target state="translated">Stato migrazione: {0}{1}{2}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.status.error">
<source xml:lang="en">{0}{1}{2}</source>
<target state="translated">{0}{1}{2}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.success">
<source xml:lang="en">Certificates migration completed successfully. Please click Next to proceed with the migration.</source>
<target state="translated">Migrazione dei certificati completata. Fare clic su Avanti per procedere con la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.validation.camceled">
<source xml:lang="en">Migration canceled</source>
<target state="translated">Migrazione annullata</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.validation.completed">
<source xml:lang="en">Migration completed successfully.</source>
<target state="translated">Migrazione completata correttamente.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.msg.databases.selected">
<source xml:lang="en">{0} Transparent Data Encryption enabled databases selected for migration. {1}</source>
<target state="translated">{0} I database selezionati per la migrazione sono abilitati a Transparent Data Encryption. {1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.msg.empty">
<source xml:lang="en">No encrypted database selected.</source>
<target state="translated">Nessun database crittografato selezionato.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.msg.manual">
<source xml:lang="en">You have chosen to manually migrate certificates.</source>
<target state="translated">Si è scelto di eseguire manualmente la migrazione dei certificati.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.msg.tde">
<source xml:lang="en">You have given access to Azure Data Studio to migrate the encryption certificates and database.</source>
<target state="translated">È stato concesso l'accesso ad Azure Data Studio per eseguire la migrazione dei certificati di crittografia e del database.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.progress.update">
<source xml:lang="en">{0} of {1} completed</source>
<target state="translated">{0} di {1} completati</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.databases.selected">
<source xml:lang="en">{0} out of {1} selected database(s) is using transparent data encryption.</source>
<target state="translated">{0} dei {1} database selezionati usano Transparent Data Encryption.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.description">
<source xml:lang="en">To migrate an encrypted database successfully you need to provide access to the encryption certificates or migrate certificates manually before proceeding with the migration. {0}.</source>
<target state="translated">Per eseguire la migrazione di un database crittografato correttamente è necessario fornire l'accesso ai certificati di crittografia o eseguire la migrazione dei certificati manualmente prima di procedere con la migrazione. {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.network.share.info">
<source xml:lang="en">Network path where certificate will be placed.</source>
<target state="translated">Percorso di rete in cui verrà inserito il certificato.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.network.share.label">
<source xml:lang="en">Network path for certificate</source>
<target state="translated">Percorso di rete per il certificato</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.network.share.placeholder">
<source xml:lang="en">Enter network path</source>
<target state="translated">Immetti il percorso di rete</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionads">
<source xml:lang="en">Export my certificates and private key to the target.</source>
<target state="translated">Esportare i certificati e la chiave privata sul target.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionadsconfirm">
<source xml:lang="en">I give consent to use my credentials for accessing the certificates.</source>
<target state="translated">Acconsento all'utilizzo delle mie credenziali per l'accesso ai certificati.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionmanual">
<source xml:lang="en">I don't want Azure Data Studio to export the certificates.</source>
<target state="translated">Non voglio che Azure Data Studio esporti i certificati.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionmanual.warning">
<source xml:lang="en">You must migrate the certificates before proceeding with the migration otherwise the migration will fail. {0}.</source>
<target state="translated">È necessario eseguire la migrazione dei certificati prima di procedere con la migrazione, altrimenti la migrazione avrà esito negativo. {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionscaption">
<source xml:lang="en">Certificate migration</source>
<target state="translated">Migrazione dei certificati</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.title">
<source xml:lang="en">Encrypted database selected.</source>
<target state="translated">Database crittografato selezionato.</target>
</trans-unit>
<trans-unit id="sql.migration.test.connection">
<source xml:lang="en">Test connection</source>
<target state="translated">Verifica connessione</target>
</trans-unit>
<trans-unit id="sql.migration.type">
<source xml:lang="en">Type</source>
<target state="translated">Tipo</target>
</trans-unit>
<trans-unit id="sql.migration.type.label">
<source xml:lang="en">Type:</source>
<target state="translated">Tipo:</target>
</trans-unit>
<trans-unit id="sql.migration.unavailable.target">
<source xml:lang="en">(Unavailable) {0}</source>
<target state="translated">(Non disponibile) {0}</target>
</trans-unit>
<trans-unit id="sql.migration.unique.name">
<source xml:lang="en">Select a unique name for this target database</source>
<target state="translated">Selezionare un nome univoco per il database di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.username">
<source xml:lang="en">User name</source>
<target state="translated">Nome utente</target>
</trans-unit>
<trans-unit id="sql.migration.username.label">
<source xml:lang="en">Target user name</source>
<target state="translated">Nome utente di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.username.placeholder">
<source xml:lang="en">Enter the target user name</source>
<target state="translated">Immettere il nome utente di destinazione</target>
</trans-unit>
<trans-unit id="sql.migration.validate.error.gatewaytimeout">
<source xml:lang="en">A time-out was encountered while validating a resource connection. Learn more: https://aka.ms/dms-migrations-troubleshooting.</source>
<target state="translated">Si è verificato un timeout durante la convalida di una connessione a una risorsa. Altre informazioni: https://aka.ms/dms-migrations-troubleshooting.</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.column.status">
<source xml:lang="en">Status</source>
<target state="translated">Stato</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.column.validation.steps">
<source xml:lang="en">Validation steps</source>
<target state="translated">Passaggi di convalida</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.completed.errors">
<source xml:lang="en">Validation completed with the following error(s):{0}{1}</source>
<target state="translated">Convalida completata con gli errori seguenti:{0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.copy.results">
<source xml:lang="en">Copy validation results</source>
<target state="translated">Copia risultati di convalida</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.done.button">
<source xml:lang="en">Done</source>
<target state="translated">Fatto</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.heading">
<source xml:lang="en">We are validating the following:</source>
<target state="translated">Stiamo convalidando quanto segue:</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.results.heading">
<source xml:lang="en">Validation step details</source>
<target state="translated">Dettagli passaggio di convalida</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.sqldb.validation.result.error">
<source xml:lang="en">Validation check error{0}Source database: {1}{0}Target database: {2}{0}Error: {3} - {4}</source>
<target state="translated">Errore di controllo di convalida{0}database di origine: {1}{0}Database di destinazione: {2}{0}Errore: {3} - {4}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.start.validation">
<source xml:lang="en">Start validation</source>
<target state="translated">Avvia convalida</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status">
<source xml:lang="en">Validation status: {0}</source>
<target state="translated">Stato di convalida: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status.error">
<source xml:lang="en">{0}{1}{2}</source>
<target state="translated">{0}{1}{2}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status.error.count.many">
<source xml:lang="en">{0} - {1} errors</source>
<target state="translated">{0} - {1} errori</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status.error.count.one">
<source xml:lang="en">{0} - 1 error</source>
<target state="translated">{0} - 1 errore</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status.errors">
<source xml:lang="en">Validation status: {0}{1}{2}</source>
<target state="translated">Stato di convalidas: {0}{1}{2}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.stop.validation">
<source xml:lang="en">Stop validation</source>
<target state="translated">Interrompi convalida</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.camceled">
<source xml:lang="en">Validation check canceled</source>
<target state="translated">Controllo di convalida annullato</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.completed">
<source xml:lang="en">Validation completed successfully.</source>
<target state="translated">La convalida è stata completata.</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.api.error">
<source xml:lang="en">Validation check error{0}Database:{1}{0}Error: {2} - {3}</source>
<target state="translated">Errore di controllo di convalida{0}Database:{1}{0}Errore: {2} - {3}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.error">
<source xml:lang="en">Validation check error{0}Source database: {1}{0}File share path: {2}{0}Error: {3} - {4}</source>
<target state="translated">Errore di controllo di convalida{0}database di origine: {1}{0}Percorso condivisione file: {2}{0}Errore: {3} - {4}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.label.networkshare">
<source xml:lang="en">Network share connectivity: '{0}' </source>
<target state="translated">Connettività condivisione di rete: '{0}' </target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.label.shir">
<source xml:lang="en">Integration runtime connectivity</source>
<target state="translated">Connettività del runtime di integrazione</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.label.source.database">
<source xml:lang="en">Source database connectivity: '{0}'</source>
<target state="translated">Connessione database di origine: '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.label.storage">
<source xml:lang="en">Azure storage connectivity</source>
<target state="translated">Connettività di Archiviazione di Azure</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.result.label.target.database">
<source xml:lang="en">Target database connectivity: '{0}'</source>
<target state="translated">Connettività del database di destinazione: '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.validation.canceled">
<source xml:lang="en">Validation was canceled. Please run and validate the migration settings to continue.</source>
<target state="translated">Convalida annullata. Per continuare, eseguire e convalidare le impostazioni di migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.validation.canceled.errors">
<source xml:lang="en">Validation was canceled with the following error(s):{0}{1}</source>
<target state="translated">Convalida annullata con gli errori seguenti: {0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.validation.dialog.title">
<source xml:lang="en">Running validation</source>
<target state="translated">Esecuzione della convalida</target>
</trans-unit>
<trans-unit id="sql.migration.validation.not.run">
<source xml:lang="en">Validation has not been run for the current configuration. Please run and validate the migration settings to continue.</source>
<target state="translated">La convalida non è stata eseguita per la configurazione corrente. Eseguire e convalidare le impostazioni di migrazione per continuare.</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Annullata</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Non riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.pending">
<source xml:lang="en">Pending</source>
<target state="translated">In sospeso</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.running">
<source xml:lang="en">Running</source>
<target state="translated">In esecuzione</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Riuscita</target>
</trans-unit>
<trans-unit id="sql.migration.validation.success">
<source xml:lang="en">Validation completed successfully. Please click Next to proceed with the migration.</source>
<target state="translated">Convalida completata. Fare clic su Avanti per procedere con la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.view.all">
<source xml:lang="en">All database migrations</source>
<target state="translated">Tutte le migrazioni del database</target>
</trans-unit>
<trans-unit id="sql.migration.view.select.button.label">
<source xml:lang="en">View/Select</source>
<target state="translated">Visualizza/Seleziona</target>
</trans-unit>
<trans-unit id="sql.migration.vm.not.ready.iaas.extension">
<source xml:lang="en">The virtual machine '{0}' is unavailable for migration because the SQL Server IaaS Agent extension is currently in '{1}' mode instead of Full mode. Learn more: https://aka.ms/sql-iaas-extension</source>
<target state="translated">La macchina virtuale '{0}' non è disponibile per la migrazione perché l'estensione SQL Server IaaS Agent si trova attualmente in modalità '{1}' invece della modalità completa. Altre informazioni: https://aka.ms/sql-iaas-extension</target>
</trans-unit>
<trans-unit id="sql.migration.vm.not.ready.power.state">
<source xml:lang="en">The virtual machine '{0}' is unavailable for migration because the underlying virtual machine is not running. Please make sure it is powered on before retrying.</source>
<target state="translated">La macchina virtuale '{0}' non è disponibile per la migrazione perché la macchina virtuale sottostante non è in esecuzione. Assicurarsi che sia accesa prima di riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.warning">
<source xml:lang="en">Warning</source>
<target state="translated">Avviso</target>
</trans-unit>
<trans-unit id="sql.migration.warnings">
<source xml:lang="en">Warnings</source>
<target state="translated">Avvisi</target>
</trans-unit>
<trans-unit id="sql.migration.warnings.count">
<source xml:lang="en">Warnings ({0})</source>
<target state="translated">Avvisi ({0})</target>
</trans-unit>
<trans-unit id="sql.migration.warnings.details">
<source xml:lang="en">Warnings details</source>
<target state="translated">Dettagli sugli avvisi</target>
</trans-unit>
<trans-unit id="sql.migration.windows.user.account">
<source xml:lang="en">Domain\username</source>
<target state="translated">Dominio\nome utente</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.add.button.label">
<source xml:lang="en">Link account</source>
<target state="translated">Collega account</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.count.multiple.message">
<source xml:lang="en">{0} accounts linked</source>
<target state="translated">{0} account collegati</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.count.single.message">
<source xml:lang="en">{0} account linked</source>
<target state="translated">{0} account collegato</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.description">
<source xml:lang="en">Select an Azure account linked to Azure Data Studio, or link one now.</source>
<target state="translated">Selezionare un account Azure collegato ad Azure Data Studio o collegarne uno adesso.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.noAccount.error">
<source xml:lang="en">Add a linked account and then try again.</source>
<target state="translated">Aggiungere un account collegato e quindi riprovare.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.title">
<source xml:lang="en">Azure account</source>
<target state="translated">Account Azure</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.connection.error.title">
<source xml:lang="en">An error occurred while connecting to the target server.</source>
<target state="translated">Errore durante la connessione al server di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.login.error.title">
<source xml:lang="en">An error occurred while trying to get {0} login information.</source>
<target state="translated">Si è verificato un errore durante il tentativo di ottenere {0} informazioni di accesso.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.perfCollection.error">
<source xml:lang="en">Error(s) occurred while collecting performance data for the server '{0}'. If these issues persist, try restarting the data collection process:
{1}</source>
<target state="translated">Si sono verificati errori durante la raccolta dei dati sulle prestazioni per il server '{0}'. Se i problemi persistono, provare a riavviare il processo di raccolta dati:
{1}</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.all">
<source xml:lang="en">Based on the assessment results, all {0} of your databases in an online state can be migrated to Azure SQL.</source>
<target state="translated">In base ai risultati della valutazione, è possibile eseguire la migrazione di tutti e {0} i database in stato online ad Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.assessment.error">
<source xml:lang="en">An error occurred while assessing the server '{0}'.</source>
<target state="translated">Si è verificato un errore durante la valutazione del server '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.assessment.error.bypass">
<source xml:lang="en">Check this option to skip assessment and continue the migration.</source>
<target state="translated">Selezionare questa opzione per ignorare la valutazione e continuare la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.assessment.error.detail">
<source xml:lang="en">[There are no assessment results to validate readiness of your database migration. By checking this box, you acknowledge you want to proceed migrating your database to the desired Azure SQL target.]</source>
<target state="translated">[Non sono disponibili risultati di valutazione per convalidare l'idoneità della migrazione del database. Selezionando questa casella, si conferma di voler procedere con la migrazione del database alla destinazione Azure SQL desiderata.]</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.assessment.unexpected.error">
<source xml:lang="en">An unexpected error occurred while assessing the server '{0}'.{3}Message: {1}{3}stack: {2}</source>
<target state="translated">Si è verificato un errore imprevisto durante la valutazione del server {0}.{3}Messaggio: {1}{3}stack: {2}</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.choose_a_target">
<source xml:lang="en">Choose your Azure SQL target</source>
<target state="translated">Scegliere la destinazione di Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.error">
<source xml:lang="en">An error occurred while generating SKU recommendations for the server '{0}'.</source>
<target state="translated">Si è verificato un errore durante la generazione delle raccomandazioni sullo SKU per il server '{0}'.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.error.noRecommendation">
<source xml:lang="en">No recommendation available</source>
<target state="translated">Nessuna raccomandazione disponibile</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.error.noRecommendation.reason">
<source xml:lang="en">No SKU recommendations were generated, as there were no SKUs which could satisfy the performance characteristics of your source. Try selecting a different target platform, adjusting recommendation parameters, selecting a different set of databases to assess, or changing the recommendation model.</source>
<target state="translated">Non sono state generate raccomandazioni sullo SKU perché non sono presenti SKU in grado di soddisfare le caratteristiche di prestazioni dell'origine. Provare a selezionare una piattaforma di destinazione diversa, a modificare i parametri delle raccomandazioni, a selezionare un set diverso di database da valutare o a modificare il modello di raccomandazione.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.source.missing">
<source xml:lang="en">Connection was successful but did not find any target databases.</source>
<target state="translated">La connessione è riuscita ma non sono stati trovati database di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.connection.error">
<source xml:lang="en">Connection error: {0}</source>
<target state="translated">Errore di connessione: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.connection.success">
<source xml:lang="en">Connection was successful. Target databases found: {0}</source>
<target state="translated">Connessione riuscita. Database di destinazione trovati: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.description">
<source xml:lang="en">Select an Azure account and your target {0}.</source>
<target state="translated">Selezionare un account Azure e {0} di destinazione.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.login.error">
<source xml:lang="en">Error getting login information: {0}</source>
<target state="translated">Errore durante il recupero delle informazioni di accesso: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.mapping.error.duplicate">
<source xml:lang="en">Database mapping error. Target database '{0}' cannot be selected to as a migration target for database '{1}'. Target database '{2}' is already selected as a migration target for database '{3}'. Please select a different target database.</source>
<target state="translated">Errore di mapping del database. Non è possibile selezionare il database di destinazione '{0}' come destinazione di migrazione per il database '{1}'. Il database di destinazione '{2}' è già selezionato come destinazione di migrazione per il database '{3}'. Selezionare un database di destinazione diverso.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.missing">
<source xml:lang="en">Database mapping error. Missing target databases to migrate. Please configure the target server connection and click connect to collect the list of available database migration targets.</source>
<target state="translated">Errore di mapping del database. Database di destinazione di cui eseguire la migrazione mancanti. Configurare la connessione al server di destinazione e fare clic su Connetti per raccogliere l'elenco delle destinazioni di migrazione di database disponibili.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.source.collation.error">
<source xml:lang="en">Database mapping error (Error code: {0}) was found between '{1}' and '{2}' databases. The source database collation '{3}' does not match the target database collation '{4}'. Please select or re-create a target database with the same collation as the source database.</source>
<target state="translated">Errore di mapping del database trovato tra i database '{1}' e '{2}' (Codice di errore: {0}). Le regole di confronto del database di origine '{3}' non corrispondono alle regole di confronto del database di destinazione '{4}'. Selezionare o ricreare un database di destinazione con le stesse regole di confronto del database di origine.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.source.mapping.error">
<source xml:lang="en">Database mapping error. Source database '{0}' is not mapped to a target database. Please select a target database to migrate to.</source>
<target state="translated">Errore di mapping del database. Il database di origine '{0}' non è mappato a un database di destinazione. Selezionare un database di destinazione a cui eseguire la migrazione.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.title">
<source xml:lang="en">Azure SQL target</source>
<target state="translated">Destinazione di Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.troubleshooting">
<source xml:lang="en">Learn more: https://aka.ms/dms-migrations-troubleshooting.</source>
<target state="translated">Altre informazioni: https://aka.ms/dms-migrations-troubleshooting.</target>
</trans-unit>
<trans-unit id="sql.migration.yes">
<source xml:lang="en">Yes</source>
<target state="translated"></target>
</trans-unit>
<trans-unit id="total.databases.selected">
<source xml:lang="en">{0} of {1} databases selected</source>
<target state="translated">{0} di {1} database selezionati</target>
</trans-unit>
<trans-unit id="total.tables.selected.of.total">
<source xml:lang="en">{0} of {1}</source>
<target state="translated">{0} di {1}</target>
</trans-unit>
<trans-unit id="waitingForService">
<source xml:lang="en">Waiting for {0} component to start.</source>
<target state="translated">In attesa dell'avvio del componente {0}.</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/dist/models/stateMachine" source-language="en" datatype="plaintext" target-language="it">
<body>
<trans-unit id="sql.migration.starting.migration.error">
<source xml:lang="en">An error occurred while starting the migration: '{0}'</source>
<target state="translated">Si è verificato un errore durante l'avvio della migrazione: '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.starting.migration.message">
<source xml:lang="en">Starting migration for database {0} to {1} - {2}</source>
<target state="translated">Avvio della migrazione per il database {0} a {1} - {2}</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/dist/service/serviceClient" source-language="en" datatype="plaintext" target-language="it">
<body>
<trans-unit id="downloadingService">
<source xml:lang="en">Downloading {0}</source>
<target state="translated">Download di {0}</target>
</trans-unit>
<trans-unit id="downloadingServiceComplete">
<source xml:lang="en">Done downloading {0}</source>
<target state="translated">Il download di {0} è stato completato</target>
</trans-unit>
<trans-unit id="downloadingServiceSize">
<source xml:lang="en">({0} KB)</source>
<target state="translated">({0} KB)</target>
</trans-unit>
<trans-unit id="downloadingServiceStatus">
<source xml:lang="en">Downloading {0}</source>
<target state="translated">Download di {0}</target>
</trans-unit>
<trans-unit id="entryExtractedChannelMsg">
<source xml:lang="en">Extracted {0} ({1}/{2})</source>
<target state="translated">Estratto {0} ({1}/{2})</target>
</trans-unit>
<trans-unit id="flatFileImport.serviceStartFailed">
<source xml:lang="en">Failed to start {0}: {1}</source>
<target state="translated">Non è stato possibile avviare {0}: {1}</target>
</trans-unit>
<trans-unit id="installingService">
<source xml:lang="en">Installing {0} Service</source>
<target state="translated">Installazione del servizio {0}</target>
</trans-unit>
<trans-unit id="installingServiceDetailed">
<source xml:lang="en">Installing {0} to {1}</source>
<target state="translated">Installazione di {0} in {1}</target>
</trans-unit>
<trans-unit id="serviceInstalled">
<source xml:lang="en">Installed {0}</source>
<target state="translated">{0} installato</target>
</trans-unit>
<trans-unit id="serviceStarted">
<source xml:lang="en">{0} Started</source>
<target state="translated">{0} avviato</target>
</trans-unit>
<trans-unit id="serviceStarting">
<source xml:lang="en">Starting {0}</source>
<target state="translated">Avvio di {0}</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/package" source-language="en" datatype="plaintext" target-language="it">
<body>
<trans-unit id="cancel-migration-menu">
<source xml:lang="en">Cancel migration</source>
<target state="translated">Annulla migrazione</target>
</trans-unit>
<trans-unit id="complete-cutover-menu">
<source xml:lang="en">Complete cutover</source>
<target state="translated">Completa cutover</target>
</trans-unit>
<trans-unit id="copy-migration-menu">
<source xml:lang="en">Copy migration details</source>
<target state="translated">Dettagli di Copia migrazione</target>
</trans-unit>
<trans-unit id="database-details-menu">
<source xml:lang="en">Database details</source>
<target state="translated">Dettagli di Database</target>
</trans-unit>
<trans-unit id="delete-migration-menu">
<source xml:lang="en">Delete migration</source>
<target state="translated">Eliminare migrazione</target>
</trans-unit>
<trans-unit id="description">
<source xml:lang="en">Azure SQL migration description</source>
<target state="translated">Descrizione della migrazione di Azure SQL</target>
</trans-unit>
<trans-unit id="displayName">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migrazione di Azure SQL</target>
</trans-unit>
<trans-unit id="migration-command-category">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migrazione di Azure SQL</target>
</trans-unit>
<trans-unit id="migration-context-menu-category">
<source xml:lang="en">Migration Context Menu</source>
<target state="translated">Menu di scelta rapida Migrazione</target>
</trans-unit>
<trans-unit id="migration-dashboard-tasks">
<source xml:lang="en">Migration Tasks</source>
<target state="translated">Attività di migrazione</target>
</trans-unit>
<trans-unit id="migration-dashboard-title">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migrazione di Azure SQL</target>
</trans-unit>
<trans-unit id="migration-notebook-command-title">
<source xml:lang="en">Open Azure SQL migration notebooks</source>
<target state="translated">Apri notebook di migrazione di Azure SQL</target>
</trans-unit>
<trans-unit id="new-support-request-command">
<source xml:lang="en">New support request</source>
<target state="translated">Nuova richiesta di supporto</target>
</trans-unit>
<trans-unit id="refresh-migrations-command">
<source xml:lang="en">Refresh</source>
<target state="translated">Aggiorna</target>
</trans-unit>
<trans-unit id="retry-migration-menu">
<source xml:lang="en">Retry migration</source>
<target state="translated">Ripeti migrazione</target>
</trans-unit>
<trans-unit id="send-feedback-command">
<source xml:lang="en">Feedback</source>
<target state="translated">Feedback</target>
</trans-unit>
<trans-unit id="start-migration-command">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Esegui migrazione ad Azure SQL</target>
</trans-unit>
<trans-unit id="view-service-menu">
<source xml:lang="en">Database Migration Service details</source>
<target state="translated">Dettagli sul Servizio Migrazione del database</target>
</trans-unit>
<trans-unit id="view-target-menu">
<source xml:lang="en">Azure SQL Target details</source>
<target state="translated">Dettagli di Destinazione di Azure SQL</target>
</trans-unit>
</body>
</file>
</xliff>