Files
azuredatastudio/resources/xlf/es/sql-migration.es.xlf
2023-05-08 14:39:02 -07:00

3843 lines
244 KiB
XML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. 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="es">
<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">Error al obtener acceso a la cuenta seleccionada "{0}" y al espacio empresarial “{1}”. Seleccione "Vincular cuenta" y actualice la cuenta o seleccione otra. Error "{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">El token de acceso para la cuenta seleccionada "{0}" y el espacio empresarial “{1}” ya no es válido. Seleccione "Vincular cuenta" y actualice la cuenta, o seleccione otra.</target>
</trans-unit>
<trans-unit id="serviceCrashMessage">
<source xml:lang="en">Migration service component could not start. {0}</source>
<target state="translated">No se pudo iniciar el componente del servicio de migración. {0}</target>
</trans-unit>
<trans-unit id="serviceCrashed">
<source xml:lang="en">Service component crashed.</source>
<target state="translated">El componente de servicio se bloqueó.</target>
</trans-unit>
<trans-unit id="serviceProviderIntializationError">
<source xml:lang="en">Service provider could not be initialized.</source>
<target state="translated">No se pudo inicializar el proveedor de servicios.</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">Migrar inicios de sesión de "{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">Migrar "{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">¿Seguro de que desea cancelar la migración?</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">¿Está seguro de que desea eliminar esta migración?</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">Azure Active Directory nombre de dominio (solo es necesario para migrar inicios de sesión de autenticación de 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">Escriba el nombre de dominio de 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">Error al recopilar el inicio de sesión de destino, con código de error {0}</target>
</trans-unit>
<trans-unit id="sql.login.migration.complete">
<source xml:lang="en">Completed migrating logins</source>
<target state="translated">Se completó la migración de inicios de sesión</target>
</trans-unit>
<trans-unit id="sql.login.migration.db.title">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Azure SQL Database</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">Azure Active Directory (AAD) El nombre de dominio es necesario para migrar el inicio de sesión de Windows. Escriba un nombre de dominio de AAD o anule la selección de los inicios de sesión de Windows.</target>
</trans-unit>
<trans-unit id="sql.login.migration.error">
<source xml:lang="en">Login migration error: {0}</source>
<target state="translated">Error de migración de inicio de sesión: {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">Validación y migración de inicios de sesión completadas.
Estableciendo asignaciones de usuario.</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">Error al establecer asignaciones de usuario</target>
</trans-unit>
<trans-unit id="sql.login.migration.failed">
<source xml:lang="en">Migrating logins failed</source>
<target state="translated">Error al migrar los inicios de sesión</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 como inicio de sesión, sp.type_desc como 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">Migración de inicio de sesión en curso</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">Detalles del estado de migración para {0}</target>
</trans-unit>
<trans-unit id="sql.login.migration.logins.found">
<source xml:lang="en">Login found</source>
<target state="translated">Inicio de sesión encontrado</target>
</trans-unit>
<trans-unit id="sql.login.migration.logins.not.found">
<source xml:lang="en">Login not found</source>
<target state="translated">Inicio de sesión no encontrado</target>
</trans-unit>
<trans-unit id="sql.login.migration.mi.title">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Azure SQL Managed Instance</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">Se completó el establecimiento de asignaciones de usuario.
Actualmente, está en curso la migración de roles de servidor, el establecimiento de asignaciones de servidor y el establecimiento de permisos. Esto tardará un poco.</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">Error al migrar los roles de servidor, el establecimiento de asignaciones de servidor y el establecimiento de permisos.</target>
</trans-unit>
<trans-unit id="sql.login.migration.migration.status.column">
<source xml:lang="en">Migration Status</source>
<target state="translated">Estado de migración</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">La actualización de la lista de inicio de sesión se realizó correctamente. Se encontraron inicios de sesión de origen {0}, inicios de sesión de destino encontrados {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">Error al actualizar la lista de inicio de sesión desde el origen</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">Error al actualizar la lista de inicio de sesión desde el destino</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">Actualizando la lista de inicios de sesión desde el origen y el destino</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">Tenga en cuenta que este asistente no muestra los tipos de inicio de sesión de autenticación de Windows porque actualmente no se admite la migración de ese tipo. La funcionalidad para migrar los inicios de sesión de autenticación de Windows estará disponible próximamente.</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">Seleccionar inicios de sesión para migrar</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.column">
<source xml:lang="en">Status</source>
<target state="translated">Estado</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.in.progress">
<source xml:lang="en">In progress</source>
<target state="translated">En curso</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">Migrar inicios de sesión de {0} al destino {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">Se completó la migración de inicios de sesión de {0} a {1} "{2}"</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">Error al migrar los inicios de sesión de {0} a {1} "{2}"</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 migración de inicio de sesión ya se ha iniciado y la opción de volver a la página anterior está deshabilitada.</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.previous.button.title">
<source xml:lang="en">Previous (Disabled)</source>
<target state="translated">Anterior (deshabilitado)</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.title">
<source xml:lang="en">Migration Status</source>
<target state="translated">Estado de migración</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Correcto</target>
</trans-unit>
<trans-unit id="sql.login.migration.steps.migrate.logins">
<source xml:lang="en">Migrate logins</source>
<target state="translated">Migrar inicios de sesión</target>
</trans-unit>
<trans-unit id="sql.login.migration.steps.not.started">
<source xml:lang="en">Not started</source>
<target state="translated">No iniciado</target>
</trans-unit>
<trans-unit id="sql.login.migration.target.status.column">
<source xml:lang="en">Target Status</source>
<target state="translated">Estado de destino</target>
</trans-unit>
<trans-unit id="sql.login.migration.target.title">
<source xml:lang="en">Azure SQL target</source>
<target state="translated">Destino de Azure SQL</target>
</trans-unit>
<trans-unit id="sql.login.migration.type">
<source xml:lang="en">Login type</source>
<target state="translated">Tipo de inicio de sesión</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 en una máquina virtual de 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">La conexión se realizó correctamente.</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">Tenga en cuenta que la característica de migración de inicio de sesión está en modo de versión preliminar pública.</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">Seleccione Azure SQL Managed Instance de destino, la VM de Azure SQL o las bases de datos de Azure SQL en las que quiera migrar los inicios de sesión.</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">Asegúrese de que el usuario actual tiene permisos de administrador del sistema para obtener toda la información de inicio de sesión de la instancia actual ({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 de destino de 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} inicios de sesión seleccionados</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">Seleccione las bases de datos que desea migrar a 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} (requiere la actualización de credenciales)</target>
</trans-unit>
<trans-unit id="sql.migration.active.backup.files">
<source xml:lang="en">Active backup files</source>
<target state="translated">Archivos de copia de seguridad activos</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">Archivos de copia de seguridad activos (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">Archivos de copia de seguridad activa ({0} elementos)</target>
</trans-unit>
<trans-unit id="sql.migration.all.backups.restored">
<source xml:lang="en">All backups restored</source>
<target state="translated">Todas las copias de seguridad restauradas</target>
</trans-unit>
<trans-unit id="sql.migration.all.fields.required">
<source xml:lang="en">All fields are required.</source>
<target state="translated">Todos los campos son obligatorios.</target>
</trans-unit>
<trans-unit id="sql.migration.apply">
<source xml:lang="en">Apply</source>
<target state="translated">Aplicar</target>
</trans-unit>
<trans-unit id="sql.migration.assessed.databases">
<source xml:lang="en">(for {0} assessed databases)</source>
<target state="translated">(para {0} bases de datos evaluadas)</target>
</trans-unit>
<trans-unit id="sql.migration.assessment">
<source xml:lang="en">Assessment results for '{0}'</source>
<target state="translated">Resultados de la evaluación para "{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">Error en la evaluación de la instancia de SQL Server '{0}.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.in.progress">
<source xml:lang="en">Assessment in progress</source>
<target state="translated">Evaluación en curso</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">Estamos evaluando las bases de datos de la instancia de SQL Server {0} para identificar el destino de Azure SQL correcto.
Esta operación puede tardar varios minutos.</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">Las bases de datos que no están listas para la migración a Azure SQL Managed Instance o Azure SQL Database se pueden migrar a SQL Server en Azure Virtual Machines.</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">Las bases de datos que no están listas para la migración a Azure SQL Database se pueden migrar a SQL Server en Azure Virtual Machines. Como alternativa, revise los resultados de la evaluación para la preparación para la migración a Azure SQL Managed Instance.</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">Las bases de datos que no están listas para la migración a Azure SQL Managed Instance se pueden migrar a SQL Server en Azure Virtual Machines. Como alternativa, revise los resultados de la evaluación para la preparación para la migración a Azure SQL Database.</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.results">
<source xml:lang="en">Assessment results</source>
<target state="translated">Resultados de la evaluación</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">Resultados y recomendaciones de la evaluación</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">Se trata de un problema de bloqueo que impedirá que la migración de la base de datos se realice de manera correcta.</target>
</trans-unit>
<trans-unit id="sql.migration.authKeys.header">
<source xml:lang="en">Authentication key</source>
<target state="translated">Clave de autenticación</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 clave de autenticación "{0}" se ha actualizado.</target>
</trans-unit>
<trans-unit id="sql.migration.authentication.type">
<source xml:lang="en">Authentication type</source>
<target state="translated">Tipo de autenticación</target>
</trans-unit>
<trans-unit id="sql.migration.authentication.types">
<source xml:lang="en">Authentication keys</source>
<target state="translated">Claves de autenticación</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">Servidor de Azure SQL Database</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">Azure SQL Managed Instance</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 en Azure Virtual Machines</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 en la VM de Azure</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.target">
<source xml:lang="en">Target type</source>
<target state="translated">Tipo de destino</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">Cuenta de Azure Storage para cargar las copias de seguridad</target>
</trans-unit>
<trans-unit id="sql.migration.azure.tenant">
<source xml:lang="en">Azure AD tenant</source>
<target state="translated">Inquilino de Azure AD</target>
</trans-unit>
<trans-unit id="sql.migration.azureRecommendation.folder.name">
<source xml:lang="en">Folder name</source>
<target state="translated">Nombre de la carpeta</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.backup.size">
<source xml:lang="en">Backup size (MB)</source>
<target state="translated">Tamaño de copia de seguridad (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.name">
<source xml:lang="en">File name</source>
<target state="translated">Nombre de archivo</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.number.of.stripes">
<source xml:lang="en">Number of stripes</source>
<target state="translated">Número de franjas</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.restore.finish.date">
<source xml:lang="en">Restore finish date</source>
<target state="translated">Fecha de finalización de la restauración</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.restore.start.date">
<source xml:lang="en">Restore start date</source>
<target state="translated">Fecha de inicio de la restauración</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.restore.status">
<source xml:lang="en">Restore status</source>
<target state="translated">Estado de restauración</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.status">
<source xml:lang="en">File status</source>
<target state="translated">Estado del archivo</target>
</trans-unit>
<trans-unit id="sql.migration.backup.location">
<source xml:lang="en">Backup location</source>
<target state="translated">Ubicación de copia de seguridad</target>
</trans-unit>
<trans-unit id="sql.migration.backup.start.time">
<source xml:lang="en">Backup start time</source>
<target state="translated">Hora de inicio de copia de seguridad</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">La transición de SQL Managed Instance para el nivel de servicio crítico para la empresa puede tardar mucho más que De uso general, ya que deben inicializarse tres réplicas secundarias para el grupo de alta disponibilidad Always On. La duración de la operación depende del tamaño de los datos. La velocidad de inicio en el 90% de los casos es de 220 GB/hora o superior.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.folder.label">
<source xml:lang="en">Folder</source>
<target state="translated">Carpeta</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.label">
<source xml:lang="en">Blob container resource group</source>
<target state="translated">Grupo de recursos de contenedor de blobs</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">Último archivo de copia de seguridad</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">Seleccione primero un valor de contenedor de blobs.</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">Cuenta de almacenamiento de contenedor de blobs</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.title">
<source xml:lang="en">Blob container</source>
<target state="translated">Contenedor de blobs</target>
</trans-unit>
<trans-unit id="sql.migration.blob.resourceGroup.select">
<source xml:lang="en">Select a resource group.</source>
<target state="translated">Seleccione un grupo de recursos.</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">Seleccione primero un valor de grupo de recursos.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.folder.info">
<source xml:lang="en">When uploading database backups to your blob container, ensure that backup files from different databases are stored in separate folders. Only the root of the container and folders at most one level deep are supported.</source>
<target state="translated">Al cargar copias de seguridad de bases de datos en el contenedor de blobs, asegúrese de que los archivos de copia de seguridad de diferentes bases de datos se almacenan en carpetas independientes. Solo se admite la raíz del contenedor y las carpetas con un nivel máximo de profundidad.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.folder.warning">
<source xml:lang="en">There are multiple databases with the same backup location selected. Ensure that backup files from different databases are stored in separate folders.</source>
<target state="translated">Hay varias bases de datos con la misma ubicación de copia de seguridad seleccionada. Asegúrese de que los archivos de copia de seguridad de diferentes bases de datos se almacenan en carpetas independientes.</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">Detalles del contenedor de Azure Storage Blob</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">Proporcione el contenedor de Azure Storage Blob que incluya las copias de seguridad.</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.subscription.label">
<source xml:lang="en">Subscription</source>
<target state="translated">Suscripción</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">Escriba el nombre de la base de datos de destino y seleccione el grupo de recursos, la cuenta de almacenamiento y el contenedor de las bases de datos de origen seleccionadas.</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">Seleccione primero un valor de cuenta de almacenamiento.</target>
</trans-unit>
<trans-unit id="sql.migration.browse">
<source xml:lang="en">Browse</source>
<target state="translated">Examinar</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} bases de datos se pueden migrar sin problemas</target>
</trans-unit>
<trans-unit id="sql.migration.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">Cancelar</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">Se ha producido un error al cancelar la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.cancel.migration">
<source xml:lang="en">Cancel migration</source>
<target state="translated">Cancelar migración</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 migración no está en curso y no se puede cancelar.</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 migración no está en curso y no se puede realizar la transición.</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 migración se encuentra en curso y no puede eliminarse.</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.retry">
<source xml:lang="en">Migration cannot be retried.</source>
<target state="translated">No se puede reintentar la migración.</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">El proceso de transición no se puede iniciar hasta que se realicen todas las migraciones. Para devolver el estado de archivo más reciente, actualice la ventana del explorador.</target>
</trans-unit>
<trans-unit id="sql.migration.clear">
<source xml:lang="en">Clear</source>
<target state="translated">Borrar</target>
</trans-unit>
<trans-unit id="sql.migration.close">
<source xml:lang="en">Close</source>
<target state="translated">Cerrar</target>
</trans-unit>
<trans-unit id="sql.migration.complete.cutover">
<source xml:lang="en">Complete cutover</source>
<target state="translated">Transición completa</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">Hemos ejecutado los pasos siguientes:</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">Finalizar la transición sin restaurar todas las copias de seguridad puede provocar la pérdida de datos.</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">Confirmo que no hay copias de seguridad de registros adicionales para proporcionar y deseo completar la transición.</target>
</trans-unit>
<trans-unit id="sql.migration.connection.label">
<source xml:lang="en">Connect</source>
<target state="translated">Conectar</target>
</trans-unit>
<trans-unit id="sql.migration.connection.status">
<source xml:lang="en">Connection status</source>
<target state="translated">Estado de la conexión</target>
</trans-unit>
<trans-unit id="sql.migration.copy.key1">
<source xml:lang="en">Copy key 1</source>
<target state="translated">Copiar clave 1</target>
</trans-unit>
<trans-unit id="sql.migration.copy.key2">
<source xml:lang="en">Copy key 2</source>
<target state="translated">Copiar clave 2</target>
</trans-unit>
<trans-unit id="sql.migration.copy.migration.details">
<source xml:lang="en">Copy migration details</source>
<target state="translated">Copiar detalles de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Cancelada</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.cancelled">
<source xml:lang="en">Cancelled</source>
<target state="translated">Cancelado</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.copyfinished">
<source xml:lang="en">Copy finished</source>
<target state="translated">Copia finalizada</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.copying">
<source xml:lang="en">Copying</source>
<target state="translated">Copiando</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.inprogress">
<source xml:lang="en">In progress</source>
<target state="translated">En curso</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.preparingforcopy">
<source xml:lang="en">Preparing</source>
<target state="translated">Preparando</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.queued">
<source xml:lang="en">Queued</source>
<target state="translated">En cola</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.rebuildingindexes">
<source xml:lang="en">Rebuilding indexes</source>
<target state="translated">Recompilación de índices</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Correcto</target>
</trans-unit>
<trans-unit id="sql.migration.copy.throughput">
<source xml:lang="en">Copy throughput (MBPS)</source>
<target state="translated">Copiar rendimiento (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">El rendimiento del movimiento de datos se obtiene durante la migración de las copias de seguridad de la base de datos a Azure. Esta es la velocidad de transferencia de datos, que se calcula dividiendo la lectura de datos entre la duración de la migración de copias de seguridad a Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.count.database.multiple">
<source xml:lang="en">{0} databases</source>
<target state="translated">{0} bases de datos</target>
</trans-unit>
<trans-unit id="sql.migration.count.database.single">
<source xml:lang="en">{0} database</source>
<target state="translated">{0} base de datos</target>
</trans-unit>
<trans-unit id="sql.migration.create">
<source xml:lang="en">Create</source>
<target state="translated">Crear</target>
</trans-unit>
<trans-unit id="sql.migration.create.new">
<source xml:lang="en">Create new</source>
<target state="translated">Crear nuevo</target>
</trans-unit>
<trans-unit id="sql.migration.create.new.migration.service">
<source xml:lang="en">Create new migration service</source>
<target state="translated">Crear un nuevo servicio de migración</target>
</trans-unit>
<trans-unit id="sql.migration.create.new.resource.group">
<source xml:lang="en">Create new resource group</source>
<target state="translated">Crear nuevo grupo de recursos</target>
</trans-unit>
<trans-unit id="sql.migration.creating.rg.loading">
<source xml:lang="en">Creating resource group</source>
<target state="translated">Crear grupo de recursos</target>
</trans-unit>
<trans-unit id="sql.migration.currently.restoring.file">
<source xml:lang="en">Currently restoring file</source>
<target state="translated">Restaurando archivo actualmente</target>
</trans-unit>
<trans-unit id="sql.migration.cutover">
<source xml:lang="en">Migration cutover</source>
<target state="translated">Transición de migración</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.card">
<source xml:lang="en">Database migrations completing cutover</source>
<target state="translated">Migraciones de bases de datos que completan la transición</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.error">
<source xml:lang="en">An error occurred while initiating cutover.</source>
<target state="translated">Se produjo un error al iniciar la transición.</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">Realice los pasos siguientes antes de completar la transición.</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">Transición en curso para la base de datos “{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">Último archivo restaurado: {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">Copias de seguridad de registros pendientes de restauración: {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">Se ha producido un error al actualizar el estado de la migración.</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. Detenga todas las transacciones entrantes en la base de datos de origen.</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. Cree una copia de seguridad o diferencial del registro de transacciones final y almacénela en el contenedor de Azure Storage Blob.</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. Cree una copia de seguridad final del registro de transacciones y almacénela en el recurso compartido de red.</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. Compruebe que todas las copias de seguridad se hayan restaurado en la base de datos de destino. El valor de "Copias de seguridad del registro de transacciones" debe ser cero.</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. Compruebe que todas las copias de seguridad de registros se hayan restaurado en la base de datos de destino. El valor de "Copias de seguridad del registro de transacciones" debe ser cero.</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.type">
<source xml:lang="en">Migration mode</source>
<target state="translated">Modo de migración</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">Determine la preparación de la migración de sus instancias de SQL Server, identifique un destino de Azure SQL recomendado y complete la migración de la instancia de SQL Server a Azure SQL Managed Instance, SQL Server en Azure Virtual Machines o Azure SQL Database.</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">Sitio central de artículos de migración que proporciona instrucciones paso a paso para migrar y modernizar sus recursos de datos en 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">Tutorial paso a paso para migrar bases de datos de una instancia de SQL Server (local o de Azure Virtual Machines) a Azure SQL Managed Instance con un tiempo de inactividad mínimo.</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">La extensión de migración de Azure SQL para Azure Data Studio proporciona funcionalidades para evaluar, obtener recomendaciones de Azure del tamaño adecuado y migrar bases de datos de SQL Server a 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">Tutorial paso a paso para migrar bases de datos de una instancia de SQL Server (local o de Azure Virtual Machines) a Azure SQL Database.</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">Tutorial paso a paso para migrar bases de datos de una instancia de SQL Server (local) a SQL Server en Azure Virtual Machines con un tiempo de inactividad mínimo.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.dmsGuide">
<source xml:lang="en">Azure Database Migration Guides</source>
<target state="translated">Guía de Azure Database Migration</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">Tutorial: Migración a Azure SQL Managed Instance (en línea)</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">Migrar bases de datos con 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">Tutorial: Migración a SQL Server en Azure SQL Database (sin conexión)</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">Tutorial: Migración a SQL Server en Azure Virtual Machines (en línea)</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.title">
<source xml:lang="en">Help articles and video links</source>
<target state="translated">Artículos de ayuda y vínculos de vídeos</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">Migrar inicios de sesión 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">Migre los inicios de sesión de SQL Server 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">Migrar 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">Migre una instancia de SQL Server a Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.title">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migración de 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">Configuración del origen de datos</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">Comparación de la cantidad real de datos leídos del origen y la cantidad real de datos cargados en el destino.</target>
</trans-unit>
<trans-unit id="sql.migration.data.uploaded.size">
<source xml:lang="en">Data uploaded / size</source>
<target state="translated">Datos cargados / tamaño</target>
</trans-unit>
<trans-unit id="sql.migration.database">
<source xml:lang="en">Database</source>
<target state="translated">Base de datos</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">La base de datos "{0}" ya existe en la instancia administrada de destino "{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">Asegúrese de que los nombres de base de datos proporcionados aún no existen en el SQL Server de destino en la máquina virtual de 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">Seleccione las bases de datos que desea evaluar para migrar 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">Bases de datos para evaluación</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.xevents.description">
<source xml:lang="en">For the selected databases, optionally provide extended event session files to assess ad-hoc or dynamic SQL queries or any DML statements initiated through the application data layer. {0}</source>
<target state="translated">Para las bases de datos seleccionadas, puede proporcionar archivos de sesión de eventos extendidos para evaluar consultas SQL ad hoc o dinámicas, o cualquier instrucción DML iniciada a través de la capa de datos de la aplicación. {0}</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.xevents.instructions">
<source xml:lang="en">Select a folder where extended events session files (.xel and .xem) are stored</source>
<target state="translated">Seleccione una carpeta donde se almacenen los archivos de sesión de eventos extendidos (.xel y .xem).</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.xevents.link">
<source xml:lang="en">Learn more</source>
<target state="translated">Más información</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.xevents.title">
<source xml:lang="en">Assess extended event sessions</source>
<target state="translated">Evaluar sesiones de eventos extendidos</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">Error al obtener acceso a los detalles de la base de datos.</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">Error al conectarse a la base de datos de migración de destino.</target>
</trans-unit>
<trans-unit id="sql.migration.database.connection.error.message">
<source xml:lang="en">Connection error:{0} {1}</source>
<target state="translated">Error de conexión:{0} {1}</target>
</trans-unit>
<trans-unit id="sql.migration.database.loading">
<source xml:lang="en">Loading database table list..</source>
<target state="translated">Cargando la lista de tablas de base de datos...</target>
</trans-unit>
<trans-unit id="sql.migration.database.loading.tables">
<source xml:lang="en">Loading tables list...</source>
<target state="translated">Cargando lista de tablas...</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.context.menu.tool.tip">
<source xml:lang="en">Click this column to activate the context command menu</source>
<target state="translated">Haga clic en esta columna para activar el menú contextual de comandos</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.duration.tool.tip">
<source xml:lang="en">The duration of the migration</source>
<target state="translated">Duración de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.finish.time.tool.tip">
<source xml:lang="en">The fininish time for the migration</source>
<target state="translated">La hora de finalización de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.migration.mode.tool.tip">
<source xml:lang="en">In Azure Database Migration Service, you can migrate your databases offline or while they are online. In an offline migration, application downtime starts when the migration starts. To limit downtime to the time it takes you to cut over to the new environment after the migration, use an online migration.</source>
<target state="translated">En Azure Database Migration Service, puede migrar las bases de datos sin conexión o mientras están en línea. En una migración sin conexión, el tiempo de inactividad de la aplicación se inicia cuando se inicia la migración. Para limitar el tiempo de inactividad al tiempo que se tarda en pasar al nuevo entorno después de la migración, use una migración en línea.</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">Para migrar al destino Azure SQL, elija un modo de migración en función de los requisitos del tiempo de inactividad.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.label">
<source xml:lang="en">Migration mode</source>
<target state="translated">Modo de migración</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">El tiempo de inactividad de la aplicación se iniciará cuando se inicie la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.offline.label">
<source xml:lang="en">Offline migration</source>
<target state="translated">Migración sin conexión</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">El tiempo de inactividad de la aplicación está limitado a la transición hacia el final de la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.online.label">
<source xml:lang="en">Online migration</source>
<target state="translated">Migración en línea</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.service">
<source xml:lang="en">Database Migration Service</source>
<target state="translated">Database Migration Service</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">Claves de autenticación de Database Migration Service</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">Se creó correctamente un Database Migration Service.</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.start.time.tool.tip">
<source xml:lang="en">The start time for the migration</source>
<target state="translated">La hora de inicio de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.status">
<source xml:lang="en">Database migration status</source>
<target state="translated">Estado de la migración de bases de datos</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.status.label">
<source xml:lang="en">Database migration status: {0}</source>
<target state="translated">Estado de la migración de bases de datos: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.target.instance.database.name.tool.tip">
<source xml:lang="en">The target database name</source>
<target state="translated">El nombre de la base de datos de destino</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.target.instance.server.name.tool.tip">
<source xml:lang="en">The target server name</source>
<target state="translated">El nombre del servidor de destino</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.target.type.tool.tip">
<source xml:lang="en">The azure resource target type [SQL Managed Instance, SQL Virtual Machine, SQL Database]</source>
<target state="translated">El tipo de destino del recurso de Azure [SQL Managed Instance, máquina virtual de SQL, SQL Database]</target>
</trans-unit>
<trans-unit id="sql.migration.database.missing.tables">
<source xml:lang="en">0 tables found on source database.</source>
<target state="translated">0 tablas encontradas en la base de datos de origen.</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">Seleccione la ubicación de las copias de seguridad de la base de datos que se usarán durante la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.database.schema.migration.dacpac">
<source xml:lang="en">SQL Server dacpac extension</source>
<target state="translated">SQL Server extensión dacpac</target>
</trans-unit>
<trans-unit id="sql.migration.database.schema.migration.help">
<source xml:lang="en">Make sure to migrate the database schema from source to target by using the {0} or the {1} in Azure Data Studio before selecting the list of tables to migrate.</source>
<target state="translated">Asegúrese de migrar el esquema de la base de datos de origen a destino mediante el {0} o en {1} Azure Data Studio antes de seleccionar la lista de tablas que se van a migrar.</target>
</trans-unit>
<trans-unit id="sql.migration.database.schema.migration.project">
<source xml:lang="en">SQL Database Projects extension</source>
<target state="translated">Extensión SQL Database Projects</target>
</trans-unit>
<trans-unit id="sql.migration.database.status.column">
<source xml:lang="en">Migration status</source>
<target state="translated">Estado de migración</target>
</trans-unit>
<trans-unit id="sql.migration.database.status.tool.tip">
<source xml:lang="en">The current status of the migration</source>
<target state="translated">Estado actual de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.refresh.label">
<source xml:lang="en">Refresh</source>
<target state="translated">Actualizar</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.selection.description">
<source xml:lang="en">For each database below, click Edit to select the tables to migrate from source to target. Then, before clicking Next, validate the provided configuration by clicking 'Run validation'.</source>
<target state="translated">Para cada base de datos a continuación, haz clic en Editar para seleccionar las tablas que se migrarán del origen al destino. A continuación, antes de hacer clic en Siguiente, valida la configuración proporcionada haciendo clic en "Ejecutar validación".</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.selection.label">
<source xml:lang="en">Table selection</source>
<target state="translated">Selección de tabla</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.source.column.label">
<source xml:lang="en">Source database</source>
<target state="translated">Base de datos de origen</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.tables.column.label">
<source xml:lang="en">Select tables</source>
<target state="translated">Seleccionar las tablas</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.target.column.label">
<source xml:lang="en">Target database</source>
<target state="translated">Base de datos de destino</target>
</trans-unit>
<trans-unit id="sql.migration.database.to.be.migrated">
<source xml:lang="en">Database to be migrated</source>
<target state="translated">Base de datos que se va a migrar</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">Seleccione las tablas de base de datos de destino a las que migrar. Se requiere al menos una base de datos con una tabla.</target>
</trans-unit>
<trans-unit id="sql.migration.databases">
<source xml:lang="en">Databases ({0}/{1})</source>
<target state="translated">Bases de datos ({0}/{1})</target>
</trans-unit>
<trans-unit id="sql.migration.databases.selected">
<source xml:lang="en">{0}/{1} databases selected</source>
<target state="translated">Bases de datos seleccionadas: {0}/{1}</target>
</trans-unit>
<trans-unit id="sql.migration.databases.table.title">
<source xml:lang="en">Databases</source>
<target state="translated">Bases de datos</target>
</trans-unit>
<trans-unit id="sql.migration.day">
<source xml:lang="en">{0} day</source>
<target state="translated">{0} día</target>
</trans-unit>
<trans-unit id="sql.migration.days">
<source xml:lang="en">{0} days</source>
<target state="translated">{0} días</target>
</trans-unit>
<trans-unit id="sql.migration.default.database">
<source xml:lang="en">Default database</source>
<target state="translated">Base de datos predeterminada</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">Error al eliminar la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.delete.migration">
<source xml:lang="en">Delete migration</source>
<target state="translated">Eliminar migración</target>
</trans-unit>
<trans-unit id="sql.migration.description">
<source xml:lang="en">Description</source>
<target state="translated">Descripción</target>
</trans-unit>
<trans-unit id="sql.migration.details.breadcrumb.migrations">
<source xml:lang="en">Migrations</source>
<target state="translated">Migraciones</target>
</trans-unit>
<trans-unit id="sql.migration.details.copied">
<source xml:lang="en">Details copied</source>
<target state="translated">Detalles copiados</target>
</trans-unit>
<trans-unit id="sql.migration.details.refresh">
<source xml:lang="en">Refresh</source>
<target state="translated">Actualizar</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.all.tables.label">
<source xml:lang="en">Total tables</source>
<target state="translated">Número total de tablas</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.cancelled.tables.label">
<source xml:lang="en">Cancelled</source>
<target state="translated">Cancelado</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.failed.tables.label">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.field.label">
<source xml:lang="en">Server objects</source>
<target state="translated">Objetos de servidor</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">Filtrar los resultados de la migración de la tabla mediante palabras clave</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.filter.label">
<source xml:lang="en">Filter table migration results</source>
<target state="translated">Filtrar los resultados de la migración de la tabla</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.inprogress.tables.label">
<source xml:lang="en">In progress</source>
<target state="translated">En curso</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.label">
<source xml:lang="en">Server objects</source>
<target state="translated">Objetos de servidor</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.successful.tables.label">
<source xml:lang="en">Successful</source>
<target state="translated">Correcto</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">Región de Azure para su servicio de Azure Database Migration Service. Solo se mostrarán las regiones que contienen un servicio.</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">No se pudo aprovisionar el Database Migration Service. Espere unos minutos y vuelva a intentarlo.</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">Nombre del recurso de Azure Database Migration Service</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">Grupo de recursos para el destino de Azure SQL. Solo se mostrarán los grupos de recursos que contienen un servicio.</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">Nombre de suscripción para su servicio de Azure Database Migration Service.</target>
</trans-unit>
<trans-unit id="sql.migration.duration">
<source xml:lang="en">Duration</source>
<target state="translated">Duración</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">Si esperaba ver resultados, compruebe la conexión a la instancia de SQL Server.</target>
</trans-unit>
<trans-unit id="sql.migration.empty.table.text">
<source xml:lang="en">No backup files</source>
<target state="translated">No hay archivos de copia de seguridad</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">Escriba las credenciales para la instancia de SQL Server de origen. Estas credenciales se usarán al migrar las bases de datos a Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.error">
<source xml:lang="en">Error</source>
<target state="translated">Error</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">Haga clic para ver los detalles del error</target>
</trans-unit>
<trans-unit id="sql.migration.error.details.label">
<source xml:lang="en">Migration error(s))</source>
<target state="translated">Errores de migración</target>
</trans-unit>
<trans-unit id="sql.migration.error.details.title">
<source xml:lang="en">Migration error details</source>
<target state="translated">Detalles del error de migración</target>
</trans-unit>
<trans-unit id="sql.migration.error.title">
<source xml:lang="en">Migration status details</source>
<target state="translated">Detalles del estado de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.failed">
<source xml:lang="en">Database migrations failed</source>
<target state="translated">Error en las migraciones de bases de datos</target>
</trans-unit>
<trans-unit id="sql.migration.feedback.issue.title">
<source xml:lang="en">Feedback on the migration experience</source>
<target state="translated">Comentarios sobre la experiencia de migración</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.deteected.files">
<source xml:lang="en">Detected files</source>
<target state="translated">Archivos detectados</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.last.restored.file.time">
<source xml:lang="en">Last restored file time</source>
<target state="translated">Hora de la última restauración del archivo</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.last.uloaded.file.time">
<source xml:lang="en">Last uploaded file time</source>
<target state="translated">Hora de la última carga del archivo</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.last.uploaded.file">
<source xml:lang="en">Last uploaded file</source>
<target state="translated">Último archivo cargado</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.mi.restore.state">
<source xml:lang="en">Managed instance restore state</source>
<target state="translated">Estado de restauración de la instancia administrada</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.pending.differential.backups">
<source xml:lang="en">Pending differential backups</source>
<target state="translated">Copias de seguridad diferenciales pendientes</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.queued.files">
<source xml:lang="en">Queued files</source>
<target state="translated">Archivos en cola</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restore.percent.completed">
<source xml:lang="en">Restore percent completed</source>
<target state="translated">Porcentaje de restauración completado</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restore.plan.size">
<source xml:lang="en">Restore plan size (MB)</source>
<target state="translated">Tamaño del plan de restauración (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restored.files">
<source xml:lang="en">Restored files</source>
<target state="translated">Archivos restaurados</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restored.size">
<source xml:lang="en">Restored size (MB)</source>
<target state="translated">Tamaño restaurado (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restoring.files">
<source xml:lang="en">Restoring files</source>
<target state="translated">Restaurando archivos</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.skipped.files">
<source xml:lang="en">Skipped files</source>
<target state="translated">Archivos omitidos</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.unrestorable.files">
<source xml:lang="en">Unrestorable files</source>
<target state="translated">Archivos que no se pueden restaurar</target>
</trans-unit>
<trans-unit id="sql.migration.file.name">
<source xml:lang="en">File name</source>
<target state="translated">Nombre de archivo</target>
</trans-unit>
<trans-unit id="sql.migration.finish.time">
<source xml:lang="en">Finish time</source>
<target state="translated">Hora de finalización</target>
</trans-unit>
<trans-unit id="sql.migration.first.lsn">
<source xml:lang="en">First LSN</source>
<target state="translated">Primer LSN</target>
</trans-unit>
<trans-unit id="sql.migration.full.backup.files">
<source xml:lang="en">Full backup file(s)</source>
<target state="translated">Archivos de copia de seguridad completos</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">Hemos completado la evaluación de la instancia de SQL Server "{0}".</target>
</trans-unit>
<trans-unit id="sql.migration.hr">
<source xml:lang="en">{0} hr</source>
<target state="translated">{0} h</target>
</trans-unit>
<trans-unit id="sql.migration.hrs">
<source xml:lang="en">{0} hrs</source>
<target state="translated">{0} h</target>
</trans-unit>
<trans-unit id="sql.migration.impact">
<source xml:lang="en">Impact</source>
<target state="translated">Impacto</target>
</trans-unit>
<trans-unit id="sql.migration.impact.object.name">
<source xml:lang="en">Name: {0}</source>
<target state="translated">Nombre: {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">Objetos afectados</target>
</trans-unit>
<trans-unit id="sql.migration.inline.migration.notebook.title">
<source xml:lang="en">Inline migration</source>
<target state="translated">Migración en línea</target>
</trans-unit>
<trans-unit id="sql.migration.inprogress.warning.multiple">
<source xml:lang="en">{0} databases have warnings</source>
<target state="translated">{0} bases de datos tienen advertencias</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 tiene advertencias</target>
</trans-unit>
<trans-unit id="sql.migration.instance">
<source xml:lang="en">Instance</source>
<target state="translated">Instancia</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">Para continuar, seleccione una cuenta de Azure válida.</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">Para continuar, seleccione un contenedor de blobs válido para la base de datos de origen "{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">Para continuar, seleccione un archivo válido de copia de seguridad reciente para la base de datos de origen "{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">Para continuar, seleccione una carpeta de copia de seguridad válida para la base de datos de origen "{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">Para continuar, seleccione un grupo de recursos válido para la base de datos de origen "{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">Para continuar, seleccione una cuenta de almacenamiento válida para la base de datos de origen "{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">Para continuar, seleccione una ubicación válida.</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">Para continuar, seleccione una instancia administrada válida.</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">Seleccione un Database Migration Service válido.</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">Seleccione un Database Migration Service que esté conectado 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 de ubicación del recurso compartido de red no válido. Ejemplo: {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">Para continuar, seleccione un contenedor de blobs donde todos los archivos de copia de seguridad sean blobs en páginas para la base de datos de origen "{0}", ya que los blobs en bloques solo se admiten para destinos que ejecutan SQL Server 2016 o posterior. Más información: 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">No se puede conectar a la base de datos porque ownerUri no es válido (parámetro '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">Para continuar, seleccione un grupo de recursos válido.</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">No se pudo recuperar la sesión guardada. Vuelva a intentarlo seleccionando una nueva sesión.</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">Escriba un nombre válido para el servicio de migración.</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">Para continuar, seleccione un servidor de Azure SQL Database válido.</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">Para continuar, seleccione una cuenta de almacenamiento válida.</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">Para continuar, seleccione una suscripción válida.</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">Escriba un nombre válido para la base de datos de destino.</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 de cuenta de usuario no válido. Ejemplo: {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">Para continuar, seleccione una máquina virtual válida.</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">Azure Database Migration Service organiza las actividades de migración de bases de datos y realiza un seguimiento de su progreso. Puede seleccionar un Database Migration Service existente como objetivo de Azure SQL si ya creó uno anteriormente o crear uno nuevo a continuación.</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">No se encontró ningún Database Migration Service. Cree uno nuevo</target>
</trans-unit>
<trans-unit id="sql.migration.ir.page.title">
<source xml:lang="en">Azure Database Migration Service</source>
<target state="translated">Azure Database Migration Service</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step1">
<source xml:lang="en">Step 1: {0}</source>
<target state="translated">Paso 1: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step2">
<source xml:lang="en">Step 2: Use the keys below to register your integration runtime</source>
<target state="new">Step 2: Use the keys below to register your integration runtime</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step3">
<source xml:lang="en">Step 3: Click on the 'Test connection' button to check the connection between Azure Database Migration Service and integration runtime</source>
<target state="new">Step 3: Click on the 'Test connection' button to check the connection between Azure Database Migration Service and integration runtime</target>
</trans-unit>
<trans-unit id="sql.migration.ir.setup.step3.alternate">
<source xml:lang="en">Step 3: Click on the Refresh button above to check the connection between Azure Database Migration Service and integration runtime</source>
<target state="new">Step 3: Click on the Refresh button above to check the connection between Azure Database Migration Service and integration runtime</target>
</trans-unit>
<trans-unit id="sql.migration.issue.aria.label">
<source xml:lang="en">Blocking Issue: {0}</source>
<target state="translated">Problema de bloqueo: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.issues">
<source xml:lang="en">Issues</source>
<target state="translated">Problemas</target>
</trans-unit>
<trans-unit id="sql.migration.issues.count">
<source xml:lang="en">Issues ({0})</source>
<target state="translated">Problemas ({0})</target>
</trans-unit>
<trans-unit id="sql.migration.issues.details">
<source xml:lang="en">Issue details</source>
<target state="translated">Detalles del problema</target>
</trans-unit>
<trans-unit id="sql.migration.key1.copied">
<source xml:lang="en">Key 1 copied</source>
<target state="translated">Clave 1 copiada</target>
</trans-unit>
<trans-unit id="sql.migration.key1.label">
<source xml:lang="en">Key 1</source>
<target state="translated">Clave 1</target>
</trans-unit>
<trans-unit id="sql.migration.key2.copied">
<source xml:lang="en">Key 2 copied</source>
<target state="translated">Clave 2 copiada</target>
</trans-unit>
<trans-unit id="sql.migration.key2.label">
<source xml:lang="en">Key 2</source>
<target state="translated">Clave 2</target>
</trans-unit>
<trans-unit id="sql.migration.last.LSN">
<source xml:lang="en">Last LSN</source>
<target state="translated">Último LSN</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.backup.files">
<source xml:lang="en">Last applied backup file(s)</source>
<target state="translated">Archivos de copia de seguridad aplicados por última vez</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.files.taken.on">
<source xml:lang="en">Last applied backup taken on</source>
<target state="translated">Hora de la última copia de seguridad aplicada:</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.lsn">
<source xml:lang="en">Last applied LSN</source>
<target state="translated">LSN aplicado por última vez</target>
</trans-unit>
<trans-unit id="sql.migration.last.scan.completed">
<source xml:lang="en">Last scan completed: {0}</source>
<target state="translated">Último examen completado: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.learn.more">
<source xml:lang="en">Learn more</source>
<target state="translated">Más información</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">Obtenga más información acerca de las cosas que necesita antes de iniciar una migración.</target>
</trans-unit>
<trans-unit id="sql.migration.load.migration.list.error">
<source xml:lang="en">Error loading migrations list</source>
<target state="translated">Error al cargar la lista de migraciones</target>
</trans-unit>
<trans-unit id="sql.migration.location">
<source xml:lang="en">Location</source>
<target state="translated">Ubicación</target>
</trans-unit>
<trans-unit id="sql.migration.map.source.column">
<source xml:lang="en">Source database</source>
<target state="translated">Base de datos de origen</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.column">
<source xml:lang="en">Target database</source>
<target state="translated">Base de datos de destino</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">Seleccione la base de datos de destino a la que desea migrar la base de datos de origen. Puede elegir una base de datos de destino solo para una base de datos de origen.</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">Asigne las bases de datos de origen seleccionadas a las bases de datos de destino para la migración</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.placeholder">
<source xml:lang="en">Select a target database</source>
<target state="translated">Seleccionar una base de datos de destino</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">La instancia administrada \"{0}\" no está disponible para la migración porque actualmente se encuentra en el estado \"{1}\". Para continuar, seleccione una instancia administrada disponible.</target>
</trans-unit>
<trans-unit id="sql.migration.migration.completed">
<source xml:lang="en">Database migrations completed</source>
<target state="translated">Migraciones de bases de datos completadas</target>
</trans-unit>
<trans-unit id="sql.migration.migration.in.progress">
<source xml:lang="en">Database migrations in progress</source>
<target state="translated">Migraciones de base de datos en curso</target>
</trans-unit>
<trans-unit id="sql.migration.migration.list.ascending.label">
<source xml:lang="en">Ascending</source>
<target state="translated">Ascendente</target>
</trans-unit>
<trans-unit id="sql.migration.migration.list.sort.label">
<source xml:lang="en">Sort</source>
<target state="translated">Ordenar</target>
</trans-unit>
<trans-unit id="sql.migration.migration.status">
<source xml:lang="en">Migration status</source>
<target state="translated">Estado de migración</target>
</trans-unit>
<trans-unit id="sql.migration.migration.status.filter">
<source xml:lang="en">Migration status filter</source>
<target state="translated">Filtro de estado de migración</target>
</trans-unit>
<trans-unit id="sql.migration.min">
<source xml:lang="en">{0} min</source>
<target state="translated">{0} min</target>
</trans-unit>
<trans-unit id="sql.migration.mins">
<source xml:lang="en">{0} mins</source>
<target state="translated">{0} minutos</target>
</trans-unit>
<trans-unit id="sql.migration.missing.table.name.column">
<source xml:lang="en">Table name</source>
<target state="translated">Nombre de la tabla</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">Para continuar, escriba una contraseña de destino válida.</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">Para continuar, introduzca un nombre de usuario de destino válido.</target>
</trans-unit>
<trans-unit id="sql.migration.mode">
<source xml:lang="en">Mode</source>
<target state="translated">Modo</target>
</trans-unit>
<trans-unit id="sql.migration.more.info">
<source xml:lang="en">More info</source>
<target state="translated">Más información</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">Todos los pasos se completaron con los siguientes errores:{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">Todos los pasos se realizaron correctamente.</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">Algunos pasos aún se están ejecutando.</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status">
<source xml:lang="en">Step status: {0}</source>
<target state="translated">Estado del paso: {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">Copiar resultados</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status.dialog.heading">
<source xml:lang="en">Step details</source>
<target state="translated">Detalles del paso</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">Estado del paso: {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">Pasos</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">Nombre</target>
</trans-unit>
<trans-unit id="sql.migration.name.label">
<source xml:lang="en">Names:</source>
<target state="translated">Nombres:</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">Nombre del nuevo grupo de recursos</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">Mis copias de seguridad de base de datos están en un contenedor de Azure Storage Blob</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">Mis copias de seguridad de base de datos están en un recurso compartido de red</target>
</trans-unit>
<trans-unit id="sql.migration.network.share">
<source xml:lang="en">Network share</source>
<target state="translated">Recurso compartido de red</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.azure.header">
<source xml:lang="en">Storage account details</source>
<target state="translated">Detalles de la cuenta de almacenamiento</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">Proporcione la cuenta de Azure Storage en la que se cargarán las copias de seguridad.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.header.text">
<source xml:lang="en">Network share details</source>
<target state="translated">Detalles del recurso compartido de red</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">Proporcione la ubicación del recurso compartido de red (donde se almacenan las copias de seguridad) y las credenciales de usuario con las que se accedió al recurso compartido.</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">Ruta de acceso del recurso compartido de red para las copias de seguridad de base de datos. El proceso de migración recuperará automáticamente archivos de copia de seguridad válidos de este recurso compartido de red.</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">Ubicación del recurso compartido de red donde se almacenan las copias de seguridad</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.password.label">
<source xml:lang="en">Password</source>
<target state="translated">Contraseña</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.password.placeholder">
<source xml:lang="en">Enter password.</source>
<target state="translated">Escriba la contraseña.</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.path">
<source xml:lang="en">Network share path</source>
<target state="translated">Ruta de acceso del recurso compartido de red</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">Escriba el nombre de la base de datos de destino y la información de la ruta de acceso del recurso compartido de red para las bases de datos de origen seleccionadas.</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">Cuenta de usuario de Windows con acceso de lectura a la ubicación del recurso compartido de red.</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">Cuenta de usuario de Windows con acceso de lectura a la ubicación del recurso compartido de red</target>
</trans-unit>
<trans-unit id="sql.migration.new.resource.group">
<source xml:lang="en">(new) {0}</source>
<target state="translated">(nuevo) {0}</target>
</trans-unit>
<trans-unit id="sql.migration.newSupportRequest">
<source xml:lang="en">New support request</source>
<target state="translated">Nueva solicitud de soporte técnico</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">No se encontraron contenedores de blobs.</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobFiles.found">
<source xml:lang="en">No blob files found.</source>
<target state="translated">No se ha encontrado ningún archivo de blob.</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobFolders.found">
<source xml:lang="en">No blob folders found.</source>
<target state="translated">No se encontraron carpetas de blobs.</target>
</trans-unit>
<trans-unit id="sql.migration.no.fileShares.found">
<source xml:lang="en">No file shares found.</source>
<target state="translated">No se encontraron recursos compartidos de archivos.</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">No se encontraron problemas para migrar a Azure SQL Managed Instance.</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">No se encontraron problemas para migrar a Azure SQL Database.</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">No se encontraron problemas para migrar a SQL Server en la máquina virtual de Azure</target>
</trans-unit>
<trans-unit id="sql.migration.no.location.found">
<source xml:lang="en">No locations found.</source>
<target state="translated">No se han encontrado ubicaciones.</target>
</trans-unit>
<trans-unit id="sql.migration.no.managedInstance.found">
<source xml:lang="en">No managed instances found.</source>
<target state="translated">No se han encontrado instancias administradas.</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">No hay copias de seguridad pendientes. Haga clic en actualizar para comprobar el estado actual.</target>
</trans-unit>
<trans-unit id="sql.migration.no.results">
<source xml:lang="en">Assessment results are unavailable.</source>
<target state="translated">Los resultados de la evaluación no están disponibles.</target>
</trans-unit>
<trans-unit id="sql.migration.no.sqldatabase.found">
<source xml:lang="en">No Azure SQL databases found.</source>
<target state="translated">No se encontraron bases de datos Azure SQL.</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">No se encontraron servidores de base de datos de Azure SQL.</target>
</trans-unit>
<trans-unit id="sql.migration.no.storageAccount.found">
<source xml:lang="en">No storage accounts found.</source>
<target state="translated">No se ha encontrado ninguna cuenta de almacenamiento.</target>
</trans-unit>
<trans-unit id="sql.migration.no.subscription.found">
<source xml:lang="en">No subscriptions found.</source>
<target state="translated">No se han encontrado suscripciones.</target>
</trans-unit>
<trans-unit id="sql.migration.no.virtualMachine.found">
<source xml:lang="en">No virtual machines found.</source>
<target state="translated">No se encontró ninguna máquina virtual.</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">No se pudo abrir el cuaderno de migración.</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} se muestran los inicios de sesión de migración</target>
</trans-unit>
<trans-unit id="sql.migration.object.details">
<source xml:lang="en">Object details</source>
<target state="translated">Detalles del objeto</target>
</trans-unit>
<trans-unit id="sql.migration.offline">
<source xml:lang="en">Offline</source>
<target state="translated">Sin conexión</target>
</trans-unit>
<trans-unit id="sql.migration.offline.caps">
<source xml:lang="en">OFFLINE</source>
<target state="translated">DESCONECTADO</target>
</trans-unit>
<trans-unit id="sql.migration.ok">
<source xml:lang="en">OK</source>
<target state="translated">Aceptar</target>
</trans-unit>
<trans-unit id="sql.migration.online">
<source xml:lang="en">Online</source>
<target state="translated">En línea</target>
</trans-unit>
<trans-unit id="sql.migration.open">
<source xml:lang="en">Open</source>
<target state="translated">Abrir</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">Error al abrir el cuadro de diálogo de detalles de la migración</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">Error al abrir el cuadro de diálogo del servicio de migración</target>
</trans-unit>
<trans-unit id="sql.migration.open.migration.target.error">
<source xml:lang="en">Error opening migration target</source>
<target state="translated">Error al abrir el destino de migración</target>
</trans-unit>
<trans-unit id="sql.migration.option">
<source xml:lang="en">Download and install integration runtime</source>
<target state="translated">Descargue e instale el entorno de ejecución de integración.</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.dynamic">
<source xml:lang="en">Dynamic range</source>
<target state="translated">Intervalo dinámico</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.none">
<source xml:lang="en">None</source>
<target state="translated">Ninguno</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.physical">
<source xml:lang="en">Physical partitions</source>
<target state="translated">Particiones físicas</target>
</trans-unit>
<trans-unit id="sql.migration.password.label">
<source xml:lang="en">Target password</source>
<target state="translated">Contraseña de destino</target>
</trans-unit>
<trans-unit id="sql.migration.password.placeholder">
<source xml:lang="en">Enter the target password</source>
<target state="translated">Introducir la contraseña de destino</target>
</trans-unit>
<trans-unit id="sql.migration.path.user.account">
<source xml:lang="en">User account</source>
<target state="translated">Cuenta de usuario</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">Una cuenta de Azure (no es necesaria para la función de evaluación o recomendación de 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">Una(s) base(s) de datos SQL Server de origen que se ejecuta(n) localmente, o en SQL Server en Azure Virtual Machine o en cualquier máquina virtual que se ejecute en la nube (privada, pública).</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">Una Azure SQL Managed Instance, SQL Server en Azure Virtual Machine o Azure SQL Database para migrar su(s) base(s) de datos.</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">Los detalles de la ubicación de la copia de seguridad de la base de datos, ya sea un recurso compartido de archivos de red o un contenedor de Azure Blob Storage (no es necesario para los destinos de Azure SQL Database).</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">Cosas que necesita antes de iniciar la migración de 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">Proporcione un contenedor único para cada base de datos de destino. Bases de datos afectadas: </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">Seleccione la operación que desea realizar.</target>
</trans-unit>
<trans-unit id="sql.migration.recommendation">
<source xml:lang="en">Recommendation</source>
<target state="translated">Recomendación</target>
</trans-unit>
<trans-unit id="sql.migration.refresh">
<source xml:lang="en">Refresh</source>
<target state="translated">Actualizar</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.assessment.button.label">
<source xml:lang="en">Refresh assessment</source>
<target state="translated">Actualizar evaluación</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.key1">
<source xml:lang="en">Refresh key 1</source>
<target state="translated">Actualizar clave 1</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.key2">
<source xml:lang="en">Refresh key 2</source>
<target state="translated">Actualizar clave 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">Error al actualizar la lista de migraciones. Compruebe la conexión de Azure vinculada y haga clic en Actualizar para volver a intentarlo.</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">Error al actualizar la lista de migraciones.</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 grupo de recursos es un contenedor que tiene los recursos relacionados de una solución de 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">No se han encontrado grupos de recursos.</target>
</trans-unit>
<trans-unit id="sql.migration.resourceGroups">
<source xml:lang="en">Resource group</source>
<target state="translated">Grupo de recursos</target>
</trans-unit>
<trans-unit id="sql.migration.restart.migration.wizard">
<source xml:lang="en">Restart migration wizard</source>
<target state="translated">Asistente para reiniciar la migración</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.none">
<source xml:lang="en">None</source>
<target state="translated">Ninguno</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.queued">
<source xml:lang="en">Queued</source>
<target state="translated">En cola</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.restored">
<source xml:lang="en">Restored</source>
<target state="translated">Restaurado</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">Restaurando</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.skipped">
<source xml:lang="en">Skipped</source>
<target state="translated">Omitido</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.database">
<source xml:lang="en">Database</source>
<target state="translated">Base de datos</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.differentialdatabase">
<source xml:lang="en">Differential database</source>
<target state="translated">Base de datos diferencial</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.differentialfile">
<source xml:lang="en">Differential file</source>
<target state="translated">Archivo diferencial</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.differentialpartial">
<source xml:lang="en">Differential partial</source>
<target state="translated">Parcial diferencial</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.file">
<source xml:lang="en">File</source>
<target state="translated">Archivo</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.partial">
<source xml:lang="en">Partial</source>
<target state="translated">Parcial</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.transactionlog">
<source xml:lang="en">Transaction log</source>
<target state="translated">Registro de transacciones</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.unknown">
<source xml:lang="en">Unknown</source>
<target state="translated">Desconocidas</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.Restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">Restaurando</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.blocked">
<source xml:lang="en">Blocked</source>
<target state="translated">Bloqueado</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.cancelled">
<source xml:lang="en">Cancelled</source>
<target state="translated">Cancelado</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.completed">
<source xml:lang="en">Completed</source>
<target state="translated">Completado</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.completing.migration">
<source xml:lang="en">Completing migration</source>
<target state="translated">Completando la migración</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.initializing">
<source xml:lang="en">Initializing</source>
<target state="translated">Inicializando</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.none">
<source xml:lang="en">None</source>
<target state="translated">Ninguno</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.not.started">
<source xml:lang="en">Not started</source>
<target state="translated">No iniciado</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.restore.completed">
<source xml:lang="en">Restore completed</source>
<target state="translated">Restauración completada</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.restore.paused">
<source xml:lang="en">Restore paused</source>
<target state="translated">Restauración en pausa</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.searching.backups">
<source xml:lang="en">Searching backups</source>
<target state="translated">Buscando copias de seguridad</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.waiting">
<source xml:lang="en">Waiting</source>
<target state="translated">Esperando</target>
</trans-unit>
<trans-unit id="sql.migration.resume.session">
<source xml:lang="en">Resume previously saved session</source>
<target state="translated">Reanudar la sesión guardada anteriormente</target>
</trans-unit>
<trans-unit id="sql.migration.resume.title">
<source xml:lang="en">Run migration workflow again</source>
<target state="translated">Volver a ejecutar el flujo de trabajo de migración</target>
</trans-unit>
<trans-unit id="sql.migration.retry.migration">
<source xml:lang="en">Retry migration</source>
<target state="translated">Reintentar migración</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">Error al reintentar la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.rg.created">
<source xml:lang="en">Resource group created</source>
<target state="translated">Grupo de recursos creado</target>
</trans-unit>
<trans-unit id="sql.migration.run.validation">
<source xml:lang="en">Run validation</source>
<target state="translated">Ejecutar validación</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">Estamos ejecutando los pasos siguientes:</target>
</trans-unit>
<trans-unit id="sql.migration.save.assessment.report">
<source xml:lang="en">Save assessment report</source>
<target state="translated">Guardar informe de la valoración</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">El informe de evaluación se guardó correctamente en {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.save.close">
<source xml:lang="en">Save and close</source>
<target state="translated">Guardar y cerrar</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">Configuración guardada. La recopilación de datos de rendimiento seguirá ejecutándose en segundo plano. Puede detener la recopilación cuando desee.</target>
</trans-unit>
<trans-unit id="sql.migration.save.recommendation.report">
<source xml:lang="en">Save recommendation report</source>
<target state="translated">Guardar informe de recomendaciones</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">El informe de recomendaciones se guardó correctamente en {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">Cancelar</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.next">
<source xml:lang="en">Next</source>
<target state="translated">Siguiente</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.result">
<source xml:lang="en">Saved session</source>
<target state="translated">Sesión guardada</target>
</trans-unit>
<trans-unit id="sql.migration.search">
<source xml:lang="en">Search</source>
<target state="translated">Buscar</target>
</trans-unit>
<trans-unit id="sql.migration.search.for.migration">
<source xml:lang="en">Filter migration results</source>
<target state="translated">Filtrar los resultados de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.sec">
<source xml:lang="en">{0} sec</source>
<target state="translated">{0} s</target>
</trans-unit>
<trans-unit id="sql.migration.select">
<source xml:lang="en">Select</source>
<target state="translated">Seleccionar</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">Seleccione la suscripción de Azure de destino y la Azure SQL Managed Instance de destino.</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">Seleccione la suscripción de Azure de destino y el SQL Server de destino de la máquina virtual de Azure de su destino.</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">Seleccione uno o más inicios de sesión para la migración.</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">Seleccione las bases de datos que se van a migrar.</target>
</trans-unit>
<trans-unit id="sql.migration.select.migration.tables">
<source xml:lang="en">Select tables for migration</source>
<target state="translated">Seleccionar las tablas para la migración</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">Haga clic en instancia de SQL Server o en cualquiera de las bases de datos de la izquierda para ver los detalles.</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.apply.label">
<source xml:lang="en">Apply</source>
<target state="translated">Aplicar</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.delete.label">
<source xml:lang="en">Clear</source>
<target state="translated">Borrar</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">Filtrar la lista de migración por Database Migration Service</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.prompt">
<source xml:lang="en">Select a Database Migration Service</source>
<target state="translated">Seleccionar Database Migration Service</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">Iniciar sesión en Azure y seleccionar una cuenta</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.location">
<source xml:lang="en">Select a location</source>
<target state="translated">Seleccionar una ubicación</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">Seleccionar un grupo de recursos</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">Seleccionar Database Migration Service</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.subscription">
<source xml:lang="en">Select a subscription</source>
<target state="translated">Seleccionar una suscripción</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.tenant">
<source xml:lang="en">Select a tenant</source>
<target state="translated">Seleccionar un inquilino</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">Error al cargar las cuentas de Azure disponibles.</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">Error al cargar ubicaciones. Compruebe la conexión de Azure e inténtelo de nuevo.</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">Seleccione un servidor de destino.</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">Error al cargar los grupos de recursos disponibles. Compruebe la conexión de Azure y vuelva a intentarlo.</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">Error al cargar los servicios de migración de bases de datos disponibles. Compruebe la conexión de Azure e inténtelo de nuevo.</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">Error al cargar las suscripciones de cuenta. Compruebe la conexión de Azure e inténtelo de nuevo.</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">Seleccionar tipo de Azure SQL de destino</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">Error al cargar los inquilinos de las cuentas de Azure disponibles.</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">Seleccionar Database Migration Service</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">Para continuar, seleccione un destino.</target>
</trans-unit>
<trans-unit id="sql.migration.server">
<source xml:lang="en">Server</source>
<target state="translated">Servidor</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">Asegúrese de que la cuenta de servicio que ejecuta la instancia de SQL Server de origen tenga privilegios de lectura en el recurso compartido de red.</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 handle connectivity between source and target and upload backups from an on-premises network file share to Azure (if applicable).</source>
<target state="new">Azure Database Migration Service leverages Azure Data Factory's self-hosted integration runtime to handle connectivity between source and target and upload backups from an on-premises network file share to Azure (if applicable).</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.container.description2">
<source xml:lang="en">Follow the instructions below to set up self-hosted integration runtime.</source>
<target state="new">Follow the instructions below to set up self-hosted integration runtime.</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.heading">
<source xml:lang="en">Set up integration runtime</source>
<target state="new">Set up integration runtime</target>
</trans-unit>
<trans-unit id="sql.migration.service.container.loading.help">
<source xml:lang="en">Loading Migration Services</source>
<target state="translated">Cargando servicios de migración</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.authKeys.label">
<source xml:lang="en">Authentication keys</source>
<target state="translated">Claves de autenticación</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">Claves de autenticación utilizadas para conectar con el nodo del entorno de ejecución de integración autohospedado</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.button.label">
<source xml:lang="en">Close</source>
<target state="translated">Cerrar</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.dialog.title">
<source xml:lang="en">Azure Database Migration Service</source>
<target state="translated">Azure Database Migration Service</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 de entorno de ejecución de integración autohospedado</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.status.unavailable">
<source xml:lang="en">-- unavailable --</source>
<target state="translated">-- no disponible --</target>
</trans-unit>
<trans-unit id="sql.migration.service.error.not.ready">
<source xml:lang="en">The following error occurred while retrieving registration information for Azure Database Migration Service '{0}'. Please click refresh and try again. Error: '{1}'.</source>
<target state="translated">Error al recuperar la información de registro de Azure Database Migration Service '{0}'. Haga clic en Actualizar e inténtelo de nuevo. Error: '{1}'.</target>
</trans-unit>
<trans-unit id="sql.migration.service.header">
<source xml:lang="en">Azure Database Migration Service "{0}" details:`</source>
<target state="translated">Detalles de Azure Database Migration Service "{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">No se encontraron servicios de migración. Para continuar, cree uno nuevo.</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">Azure Database Migration Service no está registrado. Azure Database Migration Service "{0}" debe registrarse con entorno de ejecución de integración autohospedado en cualquier nodo.</target>
</trans-unit>
<trans-unit id="sql.migration.service.not.ready.below">
<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.
See below for registration instructions.</source>
<target state="new">Azure Database Migration Service is not registered. Azure Database Migration Service '{0}' needs to be registered with self-hosted integration runtime on any node.
See below for registration instructions.</target>
</trans-unit>
<trans-unit id="sql.migration.service.prompt">
<source xml:lang="en">{0} (change)</source>
<target state="translated">{0} (cambiar)</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 node(s) - {1}
For improved performance and high availability, you can register additional nodes.</source>
<target state="new">Azure Database Migration Service '{0}' is connected to self-hosted integration runtime running on node(s) - {1}
For improved performance and high availability, you can register additional nodes.</target>
</trans-unit>
<trans-unit id="sql.migration.service.ready.below">
<source xml:lang="en">Azure Database Migration Service '{0}' is connected to self-hosted integration runtime running on node(s) - {1}
For improved performance and high availability, you can register additional nodes. See below for registration instructions.</source>
<target state="new">Azure Database Migration Service '{0}' is connected to self-hosted integration runtime running on node(s) - {1}
For improved performance and high availability, you can register additional nodes. See below for registration instructions.</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">Seleccione la ubicación de los archivos de copia de seguridad de la base de datos antes de continuar.</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">Se ha producido un error al actualizar el estado de creación del servicio de migración.</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">Escriba la información siguiente para agregar una nueva Azure Database Migration Service.</target>
</trans-unit>
<trans-unit id="sql.migration.services.container.description.network">
<source xml:lang="en">Enter the information below to add a new Azure Database Migration Service. To register self-hosted integration runtime, select 'My database backups are on a network share' on the previous page.</source>
<target state="new">Enter the information below to add a new Azure Database Migration Service. To register self-hosted integration runtime, select 'My database backups are on a network share' on the previous page.</target>
</trans-unit>
<trans-unit id="sql.migration.services.dialog.title">
<source xml:lang="en">Create Azure Database Migration Service</source>
<target state="translated">Crear Azure Database Migration Service</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">Región de Azure para su Azure Database Migration Service. Debe ser la misma región que el Azure SQL de destino.</target>
</trans-unit>
<trans-unit id="sql.migration.services.name">
<source xml:lang="en">Azure Database Migration Service name.</source>
<target state="translated">Nombre de Azure Database Migration Service.</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">Grupo de recursos para su Azure Database Migration Service.</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">Nombre de suscripción para su Azure Database Migration Service.</target>
</trans-unit>
<trans-unit id="sql.migration.services.target">
<source xml:lang="en">Azure SQL target selected as default.</source>
<target state="translated">Destino de Azure SQL seleccionado como predeterminado.</target>
</trans-unit>
<trans-unit id="sql.migration.shir">
<source xml:lang="en">Self-hosted integration runtime node</source>
<target state="translated">Nodo de entorno de ejecución de integración autohospedado</target>
</trans-unit>
<trans-unit id="sql.migration.show.status">
<source xml:lang="en">Show status</source>
<target state="translated">Mostrar estado</target>
</trans-unit>
<trans-unit id="sql.migration.size">
<source xml:lang="en">Size (MB)</source>
<target state="translated">Tamaño (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.size.column.header">
<source xml:lang="en">Size</source>
<target state="translated">Tamaño</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} recomendaciones disponibles</target>
</trans-unit>
<trans-unit id="sql.migration.sku.available.recommendations.one">
<source xml:lang="en">{0} recommendation available</source>
<target state="translated">{0} recomendación disponible</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration">
<source xml:lang="en">Azure configuration</source>
<target state="translated">Configuración de Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.businessCritical">
<source xml:lang="en">Business critical</source>
<target state="translated">Crítico para la empresa</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.gen5">
<source xml:lang="en">Gen5</source>
<target state="translated">Gen5</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.generalPurpose">
<source xml:lang="en">General purpose</source>
<target state="translated">Uso general</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.hyperscale">
<source xml:lang="en">Hyperscale</source>
<target state="translated">Hiperescala</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} núcleo virtual</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} - núcleo virtual {2} - {3} GB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.premiumSeries">
<source xml:lang="en">Premium-series</source>
<target state="translated">Serie Prémium</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 optimizada para 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} núcleo virtual</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} - núcleo virtual {2} - {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">Datos: {0}, Registro: {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">Elija cómo desea proporcionar los datos de rendimiento</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.collectData.method">
<source xml:lang="en">Collect performance data now</source>
<target state="translated">Recopilar datos de rendimiento ahora</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">Seleccione una carpeta en la unidad local donde se guardarán los datos de rendimiento</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 recomendación de Azure requiere datos de rendimiento de la instancia de SQL Server para proporcionar la recomendación de destino. Habilite la recopilación de datos de rendimiento para recibir la recomendación de destino para las bases de datos que quiere migrar. Cuanto más tiempo se habilite, mejor será la recomendación. Puede deshabilitar la recopilación de datos de rendimiento en cualquier 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">También puede seleccionar estos datos a partir de una carpeta existente si ya los ha recopilado anteriormente.</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">Ya tengo los datos de rendimiento</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">Seleccione una carpeta en la unidad local donde se guardaron los datos de rendimiento recopilados previamente</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.start">
<source xml:lang="en">Start</source>
<target state="translated">Inicio</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.start.popup">
<source xml:lang="en">Starting performance data collection...</source>
<target state="translated">Iniciando recopilación de datos de rendimiento...</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">Las recomendaciones iniciales se actualizarán automáticamente en aproximadamente {0} minuto(s).</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 recomendación de Azure se ha aplicado con los datos proporcionados. Importe o recopile datos adicionales para restringir la recomendación.</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">Recopilación de datos en curso. Generando recomendaciones iniciales...</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">Compruebe periódicamente si hay recomendaciones actualizadas presionando el botón \"Actualizar recomendación\".</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 recomendación de Azure recopila y analiza los datos de rendimiento y recomienda un destino de tamaño adecuado en Azure para la carga de trabajo.</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">La recopilación de datos aún está en curso. Refinando recomendaciones existentes...</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">Se ha detenido la recopilación de datos para las recomendaciones de Azure.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.stop.popup">
<source xml:lang="en">Stopping performance data collection...</source>
<target state="translated">Deteniendo la recopilación de datos de rendimiento...</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">Ejecutar la recopilación de rendimiento durante un período de tiempo más largo ayuda a garantizar una recomendación más precisa.</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">Haga clic en el botón siguiente para importar o recopilar datos de rendimiento de la base de datos.</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">Una vez completada la recopilación de datos, se mostrará la recomendación de Azure.</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 recomendación de Azure no está disponible. Haga clic en el botón \"Obtener recomendación de Azure\" a continuación</target>
</trans-unit>
<trans-unit id="sql.migration.sku.cpu">
<source xml:lang="en">{0} cores</source>
<target state="translated">{0} núcleos</target>
</trans-unit>
<trans-unit id="sql.migration.sku.cpu.requirement">
<source xml:lang="en">CPU requirement</source>
<target state="translated">Requisito de 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 de IOPS de datos</target>
</trans-unit>
<trans-unit id="sql.migration.sku.data.storage.requirement">
<source xml:lang="en">Data storage requirement</source>
<target state="translated">Requisito de almacenamiento de datos</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">Obtener recomendación de 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 de latencia de E/S</target>
</trans-unit>
<trans-unit id="sql.migration.sku.iops">
<source xml:lang="en">{0} IOPS</source>
<target state="translated">{0} E/S por segundo</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">Región de Azure para el destino de Azure SQL. Solo se mostrarán las regiones que contienen un destino apto para la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.log.storage.requirement">
<source xml:lang="en">Log storage requirement</source>
<target state="translated">Requisito de almacenamiento de registros</target>
</trans-unit>
<trans-unit id="sql.migration.sku.logs.iops.requirement">
<source xml:lang="en">Logs IOPS requirement</source>
<target state="translated">Requisito de IOPS de registros</target>
</trans-unit>
<trans-unit id="sql.migration.sku.memory.requirement">
<source xml:lang="en">Memory requirement</source>
<target state="translated">Requisito de 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">Azure SQL Managed Instance</target>
</trans-unit>
<trans-unit id="sql.migration.sku.mi.target.title">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Azure SQL Managed Instance</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">Parámetros de recomendación</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.edit">
<source xml:lang="en">Edit parameters</source>
<target state="translated">Editar parámetros</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.edit.title">
<source xml:lang="en">Edit recommendation parameters</source>
<target state="translated">Editar los parámetros de recomendación</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.elastic">
<source xml:lang="en">Enable elastic recommendation</source>
<target state="translated">Habilitar recomendación elástica</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 recomendación elástica usa un modelo de recomendación alternativo que usa la generación de perfiles de rendimiento de precios personalizados en los clientes en la nube existentes.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.preview">
<source xml:lang="en">Enable preview features</source>
<target state="translated">Habilitar las características de la versión preliminar</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">Si habilita esta opción, se incluirán las últimas generaciones de hardware que han mejorado significativamente el rendimiento y la escalabilidad. Estas SKU están actualmente en versión preliminar y es posible que aún no estén disponibles en todas las regiones.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.percentage.utilization">
<source xml:lang="en">Percentage utilization</source>
<target state="translated">Porcentaje de uso</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">Percentil de puntos de datos que se usarán durante la agregación de los datos de rendimiento.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.scale.factor">
<source xml:lang="en">Scale factor</source>
<target state="translated">Factor de escala:</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">Factor de escala no válido. Escriba un valor entero 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">Cambie el factor de escala si quiere que la recomendación de Azure sea un porcentaje mayor o menor que la carga de trabajo actual.</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">Escriba la información siguiente para editar los parámetros de recomendación.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.update">
<source xml:lang="en">Update</source>
<target state="translated">Actualizar</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">Percentil {0}</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendation">
<source xml:lang="en">Azure recommendation (PREVIEW)</source>
<target state="translated">Recomendación de Azure (VERSIÓN PRELIMINAR)</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">Para migrar a Azure SQL Managed Instance, vea los resultados de la evaluación y seleccione una o varias bases de datos.</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">Para migrar a Azure SQL Database, vea los resultados de la evaluación y seleccione una o varias bases de datos.</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">Para migrar a SQL Server en la máquina virtual de Azure, vea los resultados de la evaluación y seleccione una o varias bases de datos.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendationReason">
<source xml:lang="en">Recommendation reason</source>
<target state="translated">Motivo de la recomendación</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations">
<source xml:lang="en">Recommendations</source>
<target state="translated">Recomendaciones</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">Última actualización: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.loading">
<source xml:lang="en">Loading...</source>
<target state="translated">Cargando...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.title">
<source xml:lang="en">{0} Recommendations</source>
<target state="translated">({0} recomendaciones)</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommended.value">
<source xml:lang="en">Value</source>
<target state="translated">Valor</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendedConfiguration">
<source xml:lang="en">Recommended configuration</source>
<target state="translated">Configuración recomendada</target>
</trans-unit>
<trans-unit id="sql.migration.sku.refine.recommendation">
<source xml:lang="en">Refine Azure recommendation</source>
<target state="translated">Restringir la recomendación de Azure</target>
</trans-unit>
<trans-unit id="sql.migration.sku.refresh.recommendation">
<source xml:lang="en">Refresh recommendation</source>
<target state="translated">Actualizar recomendación</target>
</trans-unit>
<trans-unit id="sql.migration.sku.resource">
<source xml:lang="en">Your Azure SQL target resource name</source>
<target state="translated">Nombre del recurso de destino de 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">Grupo de recursos para el destino de Azure SQL. Solo se mostrarán los grupos de recursos que contengan un destino apto para la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.restart.performance.collection">
<source xml:lang="en">Restart data collection</source>
<target state="translated">Reiniciar la recopilación de datos</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sourceProperties">
<source xml:lang="en">Source properties</source>
<target state="translated">Propiedades de origen</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.dataDisk">
<source xml:lang="en">SQL data files</source>
<target state="translated">Archivos de datos de SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.logDisk">
<source xml:lang="en">SQL log files</source>
<target state="translated">Archivos de registro de SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.temp">
<source xml:lang="en">SQL tempdb</source>
<target state="translated">Tempdb de SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sqldb.card.title">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Azure SQL Database</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sqldb.target.title">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Azure SQL Database</target>
</trans-unit>
<trans-unit id="sql.migration.sku.stop.performance.collection">
<source xml:lang="en">Stop data collection</source>
<target state="translated">Detener recopilación de datos</target>
</trans-unit>
<trans-unit id="sql.migration.sku.storage.dimension">
<source xml:lang="en">Dimension</source>
<target state="translated">Dimensión</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">Nombre de la suscripción para su destino de Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetDeploymentType">
<source xml:lang="en">Target deployment type</source>
<target state="translated">Tipo de implementación de destino</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration">
<source xml:lang="en">Recommendation target storage configuration</source>
<target state="translated">Configuración de almacenamiento de destino de la recomendación</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching">
<source xml:lang="en">Host caching</source>
<target state="translated">Almacenamiento en caché del host</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.na">
<source xml:lang="en">Not applicable</source>
<target state="translated">No aplicable</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.none">
<source xml:lang="en">None</source>
<target state="translated">Ninguno</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.readOnly">
<source xml:lang="en">Read-only</source>
<target state="translated">Solo lectura</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.readWrite">
<source xml:lang="en">Read/write</source>
<target state="translated">Lectura/escritura</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">Coloque tempdb en la unidad SSD efímera local (predeterminada D:\)</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">A continuación se muestra la configuración de almacenamiento de destino necesaria para satisfacer sus necesidades de rendimiento de almacenamiento.</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.local.SSD">
<source xml:lang="en">Local SSD</source>
<target state="translated">SSD local</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.recommendedStorageConfiguration">
<source xml:lang="en">Recommended storage configuration</source>
<target state="translated">Configuración de almacenamiento recomendada</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.storage">
<source xml:lang="en">Storage</source>
<target state="translated">Almacenamiento</target>
</trans-unit>
<trans-unit id="sql.migration.sku.viewDetails">
<source xml:lang="en">View details</source>
<target state="translated">Ver detalles</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 en una máquina virtual de 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 en una máquina virtual de Azure</target>
</trans-unit>
<trans-unit id="sql.migration.source.configuration">
<source xml:lang="en">Source configuration</source>
<target state="translated">Configuración de origen</target>
</trans-unit>
<trans-unit id="sql.migration.source.credentials">
<source xml:lang="en">Source credentials</source>
<target state="translated">Credenciales de origen</target>
</trans-unit>
<trans-unit id="sql.migration.source.database">
<source xml:lang="en">Source database name</source>
<target state="translated">Nombre de la base de datos de origen</target>
</trans-unit>
<trans-unit id="sql.migration.source.databases">
<source xml:lang="en">Source databases</source>
<target state="translated">Bases de datos de origen</target>
</trans-unit>
<trans-unit id="sql.migration.source.details.sqlAuth.db">
<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 from the self-hosted integration runtime.</source>
<target state="translated">Escriba las credenciales de autenticación de SQL utilizadas para conectarse a SQL Server instancia {0}. Estas credenciales se usarán para conectarse a la instancia de SQL Server desde el entorno de ejecución de integración autohospedado.</target>
</trans-unit>
<trans-unit id="sql.migration.source.details.sqlAuth.nonDb">
<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">Escriba las credenciales de autenticación de SQL usadas para conectarse a la instancia de SQL Server{0}. Se usarán estas credenciales para conectarse a la instancia de SQL Server e identificar archivos de copia de seguridad válidos.</target>
</trans-unit>
<trans-unit id="sql.migration.source.details.windowAuth.db">
<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 from the self-hosted integration runtime.</source>
<target state="translated">Escriba las credenciales de autenticación de Windows usadas para conectarse a SQL Server instancia {0}. Estas credenciales serán utilizadas para conectarse a la instancia de SQL Server desde el tiempo de ejecución de integración autohospedado.</target>
</trans-unit>
<trans-unit id="sql.migration.source.details.windowAuth.nonDb">
<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">Escriba las credenciales de autenticación de Windows usadas para conectarse a la instancia de SQL Server {0}. Estas credenciales se usarán para conectarse a la instancia de SQL Server e identificar archivos de copia de seguridad válidos.</target>
</trans-unit>
<trans-unit id="sql.migration.source.login">
<source xml:lang="en">Source login</source>
<target state="translated">Inicio de sesión de origen</target>
</trans-unit>
<trans-unit id="sql.migration.source.server">
<source xml:lang="en">Source server</source>
<target state="translated">Servidor de origen</target>
</trans-unit>
<trans-unit id="sql.migration.source.version">
<source xml:lang="en">Source version</source>
<target state="translated">Versión de origen</target>
</trans-unit>
<trans-unit id="sql.migration.sql.assessment.notebook.title">
<source xml:lang="en">SQL migration assessment</source>
<target state="translated">Evaluación de la migración de SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sql.database">
<source xml:lang="en">SQL Database</source>
<target state="translated">Base de datos SQL</target>
</trans-unit>
<trans-unit id="sql.migration.sql.managed.instance">
<source xml:lang="en">SQL Managed Instance</source>
<target state="translated">SQL Managed Instance</target>
</trans-unit>
<trans-unit id="sql.migration.sql.server.instance">
<source xml:lang="en">SQL Server instance</source>
<target state="translated">Instancia de SQL Server</target>
</trans-unit>
<trans-unit id="sql.migration.sql.virtual.machine">
<source xml:lang="en">SQL Virtual Machine</source>
<target state="translated">Máquina virtual de 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">Para los servidores de destino que ejecutan SQL Server 2014 o inferior, debe almacenar las copias de seguridad de la base de datos en un contenedor de Azure Storage Blob en lugar de cargarlas mediante la opción de recurso compartido de red. Además, debe almacenar los archivos de copia de seguridad como blobs en páginas, ya que los blobs en bloques solo se admiten para destinos que ejecutan SQL Server 2016 o posterior. Más información: {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">Problemas conocidos, limitaciones y solución de problemas</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copyduration">
<source xml:lang="en">Copy duration</source>
<target state="translated">Duración de la copia</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copystart">
<source xml:lang="en">Copy start</source>
<target state="translated">Inicio de copia</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copythroughput">
<source xml:lang="en">Copy throughput</source>
<target state="translated">Copiar rendimiento</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.dataread">
<source xml:lang="en">Data read</source>
<target state="translated">Datos leídos</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.datawritten">
<source xml:lang="en">Data written</source>
<target state="translated">Datos escritos</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.parallelcopytype">
<source xml:lang="en">Parallel copy type</source>
<target state="translated">Tipo de copia en paralelo</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.rowscopied">
<source xml:lang="en">Rows copied</source>
<target state="translated">Filas copiadas</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.rowsread">
<source xml:lang="en">Rows read</source>
<target state="translated">Filas leídas</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.tablename">
<source xml:lang="en">Table name</source>
<target state="translated">Nombre de la tabla</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.usedparallelcopies">
<source xml:lang="en">Used parallel copies</source>
<target state="translated">Copias en paralelo utilizadas</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">El servidor de SQL Database "{0}" no está disponible para la migración porque actualmente se encuentra en el estado "{1}". Para continuar, seleccione un servidor de base de datos SQL disponible.</target>
</trans-unit>
<trans-unit id="sql.migration.src.database">
<source xml:lang="en">Source database</source>
<target state="translated">Base de datos de origen</target>
</trans-unit>
<trans-unit id="sql.migration.src.database.tool.tip">
<source xml:lang="en">Name of the source database</source>
<target state="translated">Nombre de la base de datos de origen</target>
</trans-unit>
<trans-unit id="sql.migration.src.server">
<source xml:lang="en">Source name</source>
<target state="translated">Nombre de origen</target>
</trans-unit>
<trans-unit id="sql.migration.src.server.tool.tip">
<source xml:lang="en">Name of the source server</source>
<target state="translated">Nombre del servidor de origen</target>
</trans-unit>
<trans-unit id="sql.migration.start.login.migration.button">
<source xml:lang="en">Migrate</source>
<target state="translated">Migrar</target>
</trans-unit>
<trans-unit id="sql.migration.start.migration.button">
<source xml:lang="en">Start migration</source>
<target state="translated">Iniciar la migración</target>
</trans-unit>
<trans-unit id="sql.migration.start.session">
<source xml:lang="en">Start a new session</source>
<target state="translated">Iniciar una nueva sesión</target>
</trans-unit>
<trans-unit id="sql.migration.start.time">
<source xml:lang="en">Start time</source>
<target state="translated">Hora de inicio</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">Validación y migración de inicios de sesión en curso</target>
</trans-unit>
<trans-unit id="sql.migration.starting.login.failed">
<source xml:lang="en">Validating and migrating logins failed</source>
<target state="translated">Error al validar y migrar inicios de sesión</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">Error al migrar el certificado para la base de datos {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">Error al iniciar la migración del certificado: '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.state.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Cancelado</target>
</trans-unit>
<trans-unit id="sql.migration.state.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.migration.state.pending">
<source xml:lang="en">Pending</source>
<target state="translated">Pendiente</target>
</trans-unit>
<trans-unit id="sql.migration.state.running">
<source xml:lang="en">Running</source>
<target state="translated">En ejecución</target>
</trans-unit>
<trans-unit id="sql.migration.state.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Correcto</target>
</trans-unit>
<trans-unit id="sql.migration.status">
<source xml:lang="en">Status</source>
<target state="translated">Estado</target>
</trans-unit>
<trans-unit id="sql.migration.status.add.account">
<source xml:lang="en">Add account</source>
<target state="translated">Agregar cuenta</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">Agregue su cuenta de Azure para ver las migraciones existentes y su estado.</target>
</trans-unit>
<trans-unit id="sql.migration.status.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Cancelada</target>
</trans-unit>
<trans-unit id="sql.migration.status.canceling">
<source xml:lang="en">Canceling</source>
<target state="translated">Cancelando</target>
</trans-unit>
<trans-unit id="sql.migration.status.completing">
<source xml:lang="en">Completing</source>
<target state="translated">Completando</target>
</trans-unit>
<trans-unit id="sql.migration.status.creating">
<source xml:lang="en">Creating</source>
<target state="translated">Creando</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.all">
<source xml:lang="en">Status: All</source>
<target state="translated">Estado: Todos</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.completing">
<source xml:lang="en">Status: Completing</source>
<target state="translated">Estado: completando</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.failed">
<source xml:lang="en">Status: Failed</source>
<target state="translated">Estado: Error</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.ongoing">
<source xml:lang="en">Status: Ongoing</source>
<target state="translated">Estado: en curso</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.succeeded">
<source xml:lang="en">Status: Succeeded</source>
<target state="translated">Estado: Correcto</target>
</trans-unit>
<trans-unit id="sql.migration.status.error.count.multiple">
<source xml:lang="en"> ({0} errors)</source>
<target state="translated"> ({0} errores)</target>
</trans-unit>
<trans-unit id="sql.migration.status.error.count.single">
<source xml:lang="en"> ({0} error)</source>
<target state="translated"> ({0} error)</target>
</trans-unit>
<trans-unit id="sql.migration.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.migration.status.inprogress">
<source xml:lang="en">In progress</source>
<target state="translated">En curso</target>
</trans-unit>
<trans-unit id="sql.migration.status.readyforcutover">
<source xml:lang="en">Ready for cutover</source>
<target state="translated">Listo para la transición</target>
</trans-unit>
<trans-unit id="sql.migration.status.refresh.label">
<source xml:lang="en">Refresh</source>
<target state="translated">Actualizar</target>
</trans-unit>
<trans-unit id="sql.migration.status.restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">Restaurando</target>
</trans-unit>
<trans-unit id="sql.migration.status.retriable">
<source xml:lang="en">Retriable</source>
<target state="translated">Posibilidad de volver a intentarlo</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">Seleccionar Database Migration Service para supervisar las migraciones.</target>
</trans-unit>
<trans-unit id="sql.migration.status.status.label">
<source xml:lang="en">Status</source>
<target state="translated">Estado</target>
</trans-unit>
<trans-unit id="sql.migration.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Correcto</target>
</trans-unit>
<trans-unit id="sql.migration.status.uploadingfullbackup">
<source xml:lang="en">Uploading full backup</source>
<target state="translated">Cargando copia de seguridad completa</target>
</trans-unit>
<trans-unit id="sql.migration.status.uploadinglogbackup">
<source xml:lang="en">Uploading log backup(s)</source>
<target state="translated">Cargando copias de seguridad de registros</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} advertencias)</target>
</trans-unit>
<trans-unit id="sql.migration.status.warning.count.single">
<source xml:lang="en"> ({0} warning)</source>
<target state="translated"> ({0} advertencia)</target>
</trans-unit>
<trans-unit id="sql.migration.storage.account">
<source xml:lang="en">Storage account</source>
<target state="translated">Cuenta de almacenamiento</target>
</trans-unit>
<trans-unit id="sql.migration.storageAccount.warning.many">
<source xml:lang="en">Target instance '{0}' may not be able to access storage account '{1}'. Ensure that the subnet of the target instance is whitelisted on the storage account, and if applicable, that the private endpoint is in the same virtual network as the target server.</source>
<target state="translated">Es posible que la instancia de destino "{0}" no pueda acceder a la cuenta de almacenamiento "{1}". Asegúrese de que la subred de la instancia de destino está en la lista blanca de la cuenta de almacenamiento y, si procede, de que el punto de conexión privado se encuentra en la misma red virtual que el servidor de destino.</target>
</trans-unit>
<trans-unit id="sql.migration.storageAccount.warning.one">
<source xml:lang="en">Target instance '{0}' may not be able to access storage accounts '{1}'. Ensure that the subnet of the target instance is whitelisted on the storage accounts, and if applicable, that the private endpoints are on the same virtual network as the target server.</source>
<target state="translated">Es posible que la instancia de destino "{0}" no pueda acceder a las cuentas de almacenamiento "{1}". Asegúrese de que la subred de la instancia de destino está en la lista blanca de las cuentas de almacenamiento y, si procede, de que los puntos de conexión privados están en la misma red virtual que el servidor de destino.</target>
</trans-unit>
<trans-unit id="sql.migration.subscription">
<source xml:lang="en">Subscription</source>
<target state="translated">Suscripción</target>
</trans-unit>
<trans-unit id="sql.migration.summary.azure.storage">
<source xml:lang="en">Azure storage</source>
<target state="translated">Azure Storage</target>
</trans-unit>
<trans-unit id="sql.migration.summary.azure.storage.subscription">
<source xml:lang="en">Azure storage subscription</source>
<target state="translated">Suscripción de Azure Storage</target>
</trans-unit>
<trans-unit id="sql.migration.summary.database.count">
<source xml:lang="en">Databases for migration</source>
<target state="translated">Bases de datos para migración</target>
</trans-unit>
<trans-unit id="sql.migration.summary.mi.type">
<source xml:lang="en">Azure SQL Managed Instance</source>
<target state="translated">Azure SQL Managed Instance</target>
</trans-unit>
<trans-unit id="sql.migration.summary.page.title">
<source xml:lang="en">Summary</source>
<target state="translated">Resumen</target>
</trans-unit>
<trans-unit id="sql.migration.summary.sqldb.type">
<source xml:lang="en">Azure SQL Database</source>
<target state="translated">Azure SQL Database</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 en una máquina virtual de Azure</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.feedback.description">
<source xml:lang="en">Feedback</source>
<target state="translated">Comentarios</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.feedback.label">
<source xml:lang="en">Feedback</source>
<target state="translated">Comentarios</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">Migrar inicios de sesión 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">Nueva migración de inicio de sesión (VERSIÓN PRELIMINAR)</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.migration.description">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Migrar a Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.migration.label">
<source xml:lang="en">New migration</source>
<target state="translated">Nueva migración</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.support.description">
<source xml:lang="en">New support request</source>
<target state="translated">Nueva solicitud de soporte técnico</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.support.label">
<source xml:lang="en">New support request</source>
<target state="translated">Nueva solicitud de soporte técnico</target>
</trans-unit>
<trans-unit id="sql.migration.tab.dashboard.title">
<source xml:lang="en">Dashboard</source>
<target state="translated">Panel</target>
</trans-unit>
<trans-unit id="sql.migration.tab.migrations.title">
<source xml:lang="en">Migrations</source>
<target state="translated">Migraciones</target>
</trans-unit>
<trans-unit id="sql.migration.table.error.title">
<source xml:lang="en">Table migration status details</source>
<target state="translated">Detalles del estado de migración de la tabla</target>
</trans-unit>
<trans-unit id="sql.migration.table.migration.status.label">
<source xml:lang="en">Table migration status: {0}</source>
<target state="translated">Estado de migración de la tabla: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.missing.count">
<source xml:lang="en">Tables missing on target: {0}</source>
<target state="translated">Tablas que faltan en el destino: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.select.label">
<source xml:lang="en">Select tables for {0}</source>
<target state="translated">Seleccionar tablas para {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} de {1} tablas seleccionadas</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.count">
<source xml:lang="en">{0} of {1}</source>
<target state="translated">{0} de {1}</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.edit">
<source xml:lang="en">Edit</source>
<target state="translated">Editar</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.filter">
<source xml:lang="en">Filter tables</source>
<target state="translated">Filtrar tablas</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.status.column">
<source xml:lang="en">Has rows</source>
<target state="translated">Tiene filas</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.tablename.column">
<source xml:lang="en">Table name</source>
<target state="translated">Nombre de la tabla</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.update.button">
<source xml:lang="en">Update</source>
<target state="translated">Actualizar</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.update.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">Cancelar</target>
</trans-unit>
<trans-unit id="sql.migration.target">
<source xml:lang="en">Target</source>
<target state="translated">Destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.database.name">
<source xml:lang="en">Target database</source>
<target state="translated">Base de datos de destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.name">
<source xml:lang="en">Target name</source>
<target state="translated">Nombre de destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.server.name">
<source xml:lang="en">Target name</source>
<target state="translated">Nombre de destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.database.name">
<source xml:lang="en">Target database name</source>
<target state="translated">Nombre de la base de datos de destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.platform">
<source xml:lang="en">Target platform</source>
<target state="translated">Plataforma de destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.server">
<source xml:lang="en">Target server</source>
<target state="translated">Servidor de destino</target>
</trans-unit>
<trans-unit id="sql.migration.target.table.count.name">
<source xml:lang="en">Tables selected</source>
<target state="translated">Tablas seleccionadas</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 tabla de destino no existe.</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 tabla de destino no está vacía.</target>
</trans-unit>
<trans-unit id="sql.migration.target.version">
<source xml:lang="en">Target version</source>
<target state="translated">Versión de destino</target>
</trans-unit>
<trans-unit id="sql.migration.tde.button.caption">
<source xml:lang="en">Edit</source>
<target state="translated">Editar</target>
</trans-unit>
<trans-unit id="sql.migration.tde.button.migrate">
<source xml:lang="en">Migrate certificates</source>
<target state="translated">Migrar certificados</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">Se canceló la migración de certificados. Ejecute y complete la migración de certificados para continuar.</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">Se canceló la validación con los siguientes errores: {0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.column.databases">
<source xml:lang="en">Databases</source>
<target state="translated">Bases de datos</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.column.status">
<source xml:lang="en">Status</source>
<target state="translated">Estado</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">La migración se completó con los siguientes errores:{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">Copiar los resultados de la migración</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.done.button">
<source xml:lang="en">Done</source>
<target state="translated">Listo</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">Migrando los certificados de las siguientes bases de datos:</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">No se ha ejecutado la migración de los certificados para la configuración actual. Ejecute y complete la configuración de migración de certificados para continuar.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading">
<source xml:lang="en">Certificates migration progress details:</source>
<target state="translated">Detalles del progreso de la migración de certificados:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading.completed">
<source xml:lang="en">Certificates migration results:</source>
<target state="translated">Resultados de la migración de certificados:</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">Resultados anteriores de la migración de certificados:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.start.validation">
<source xml:lang="en">Retry migration</source>
<target state="translated">Reintentar migración</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">Estado de migración: {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">La migración de certificados se completó correctamente. Haga clic en Siguiente para continuar con la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.validation.camceled">
<source xml:lang="en">Migration canceled</source>
<target state="translated">Migración cancelada</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.validation.completed">
<source xml:lang="en">Migration completed successfully.</source>
<target state="translated">Migración completada correctamente</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} El cifrado de datos transparente habilitó las bases de datos seleccionadas para la migración. {1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.msg.empty">
<source xml:lang="en">No encrypted database selected.</source>
<target state="translated">No se ha seleccionado ninguna base de datos cifrada.</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">Ha elegido migrar manualmente los certificados.</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">Ha concedido acceso a Azure Data Studio para migrar la base de datos y los certificados de cifrado.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.progress.update">
<source xml:lang="en">{0} of {1} completed</source>
<target state="translated">{0} de {1} completado</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} de {1} bases de datos seleccionadas usan cifrado de datos transparente.</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">Para migrar correctamente una base de datos cifrada, debe proporcionar acceso a los certificados de cifrado o migrarlos manualmente antes de continuar con la migración. {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">Ruta de acceso de red donde se colocará el certificado.</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">Ruta de acceso de red para el certificado</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.network.share.placeholder">
<source xml:lang="en">Enter network path</source>
<target state="translated">Escribir ruta de acceso a la red</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">Exportar mis certificados y clave privada al destino.</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">Doy mi consentimiento para usar mis credenciales para acceder a los certificados.</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">No quiero que Azure Data Studio exporte los certificados.</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">Debe migrar los certificados antes de continuar con la migración. De lo contrario, se producirá un error en la migración. {0}.</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionscaption">
<source xml:lang="en">Certificate migration</source>
<target state="translated">Migración de certificados</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.title">
<source xml:lang="en">Encrypted database selected.</source>
<target state="translated">Base de datos cifrada seleccionada.</target>
</trans-unit>
<trans-unit id="sql.migration.test.connection">
<source xml:lang="en">Test connection</source>
<target state="translated">Conexión de prueba</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">Escriba:</target>
</trans-unit>
<trans-unit id="sql.migration.unavailable.target">
<source xml:lang="en">(Unavailable) {0}</source>
<target state="translated">(No disponible) {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">Seleccione un nombre único para esta base de datos de destino</target>
</trans-unit>
<trans-unit id="sql.migration.username">
<source xml:lang="en">User name</source>
<target state="translated">Nombre de usuario</target>
</trans-unit>
<trans-unit id="sql.migration.username.label">
<source xml:lang="en">Target user name</source>
<target state="translated">Nombre de usuario de destino</target>
</trans-unit>
<trans-unit id="sql.migration.username.placeholder">
<source xml:lang="en">Enter the target user name</source>
<target state="translated">Introduzca el nombre de usuario de destino</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">Se agotó el tiempo de espera al validar una conexión de recursos. Más información: 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">Estado</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.column.validation.steps">
<source xml:lang="en">Validation steps</source>
<target state="translated">Pasos de la validación</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">La validación se completó con los siguientes errores:{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">Copiar los resultados de la validación</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.done.button">
<source xml:lang="en">Done</source>
<target state="translated">Listo</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.heading">
<source xml:lang="en">We are validating the following:</source>
<target state="translated">Estamos validando lo siguiente:</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.results.heading">
<source xml:lang="en">Validation step details</source>
<target state="translated">Detalles del paso de validación</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">Error de comprobación de validación{0}Base de datos de origen: {1}{0}Datos de destino: {2}{0}Error: {3} - {4}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.start.validation">
<source xml:lang="en">Start validation</source>
<target state="translated">Iniciar validación</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status">
<source xml:lang="en">Validation status: {0}</source>
<target state="translated">Estado de la validación: {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} errores</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 error</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">Estado de la validación: {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">Detener validación</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.camceled">
<source xml:lang="en">Validation check canceled</source>
<target state="translated">Comprobación de validación cancelada</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.completed">
<source xml:lang="en">Validation completed successfully.</source>
<target state="translated">La validación se completó correctamente.</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">Error de comprobación de validación{0}Base de datos:{1}{0}Error: {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">Error de comprobación de validación{0}Base de datos de origen: {1}{0}Ruta de acceso del recurso compartido de archivos: {2}{0}Error: {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">Conectividad del recurso compartido de red: "{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">Conectividad del entorno de ejecución de integración</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">Conectividad de la base de datos de origen: '{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">Conectividad de Azure Storage</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">Conectividad de la base de datos de destino: "{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">Se canceló la validación. Ejecute y valide la configuración de migración para continuar.</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">Se canceló la validación con los siguientes errores: {0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.validation.dialog.title">
<source xml:lang="en">Running validation</source>
<target state="translated">Validación en curso</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">No se ha ejecutado la validación para la configuración actual. Ejecute y valide la configuración de migración para continuar.</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">Cancelado</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.failed">
<source xml:lang="en">Failed</source>
<target state="translated">Error</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.pending">
<source xml:lang="en">Pending</source>
<target state="translated">Pendiente</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.running">
<source xml:lang="en">Running</source>
<target state="translated">En ejecución</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">Correcto</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">La validación se completó correctamente. Haga clic en Siguiente para continuar con la migración.</target>
</trans-unit>
<trans-unit id="sql.migration.view.all">
<source xml:lang="en">All database migrations</source>
<target state="translated">Todas las migraciones de bases de datos</target>
</trans-unit>
<trans-unit id="sql.migration.view.select.button.label">
<source xml:lang="en">View/Select</source>
<target state="translated">Ver o seleccionar</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 máquina virtual '{0}' no está disponible para la migración porque la extensión del agente de IaaS de SQL Server está actualmente en modo '{1}' en lugar de en modo completo. Más información: 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 máquina virtual '{0}' no está disponible para la migración porque la máquina virtual subyacente no se está ejecutando. Asegúrese de que esté encendida antes de volver a intentarlo.</target>
</trans-unit>
<trans-unit id="sql.migration.warning">
<source xml:lang="en">Warning</source>
<target state="translated">Advertencia</target>
</trans-unit>
<trans-unit id="sql.migration.warnings">
<source xml:lang="en">Warnings</source>
<target state="translated">Advertencias</target>
</trans-unit>
<trans-unit id="sql.migration.warnings.count">
<source xml:lang="en">Warnings ({0})</source>
<target state="translated">Advertencias ({0})</target>
</trans-unit>
<trans-unit id="sql.migration.warnings.details">
<source xml:lang="en">Warnings details</source>
<target state="translated">Detalles de las advertencias</target>
</trans-unit>
<trans-unit id="sql.migration.windows.user.account">
<source xml:lang="en">Domain\username</source>
<target state="translated">Dominio\nombre de usuario</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.add.button.label">
<source xml:lang="en">Link account</source>
<target state="translated">Vincular cuenta</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} cuentas vinculadas</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} cuenta vinculada</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">Seleccione una cuenta de Azure vinculada a Azure Data Studio o vincule una ahora.</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">Agregue una cuenta vinculada e inténtelo de nuevo.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.title">
<source xml:lang="en">Azure account</source>
<target state="translated">Cuenta de 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">Se produjo un error al conectar con el servidor de destino.</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">Error al intentar obtener {0} información de inicio de sesión.</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">Se produjeron errores al recopilar los datos de rendimiento del servidor \"{0}\". Si estos problemas persisten, intente reiniciar el proceso de recopilación de datos:
{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">Según los resultados de la evaluación, las {0} bases de datos en estado de conexión se pueden migrar a 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">Error al evaluar el servidor '{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">Active esta opción para omitir la evaluación y continuar con la migración.</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">[No hay resultados de evaluación para validar la preparación de la migración de la base de datos. Al activar esta casilla, confirma que quiere continuar migrando la base de datos al destino de Azure SQL deseado.]</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">Error inesperado al evaluar el servidor '{0}'.{3} Mensaje: {1}{3}pila: {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">Elija su destino de Azure SQL</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.choose_a_target.help">
<source xml:lang="en">Not sure which Azure SQL target is right for you? Learn more</source>
<target state="translated">¿No está seguro de qué destino de Azure SQL es adecuado para usted? Aprenda más</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">Error al generar recomendaciones de SKU para el servidor \"{0}\".</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.error.noRecommendation">
<source xml:lang="en">No recommendation available</source>
<target state="translated">No hay ninguna recomendación disponible.</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">No se generaron recomendaciones de SKU, ya que no había SKU que pudieran satisfacer las características de rendimiento del origen. Intente seleccionar una plataforma de destino diferente, ajustar los parámetros de recomendación, seleccionar un conjunto diferente de bases de datos para evaluar o cambiar el modelo de recomendación.</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 conexión se realizó correctamente, pero no se encontró ninguna base de datos de destino.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.connection.error">
<source xml:lang="en">Connection error: {0}</source>
<target state="translated">Error de conexión: {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">La conexión se realizó correctamente. Bases de datos de destino encontradas: {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">Seleccione una cuenta de Azure y su destino {0}.</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">Error al obtener la información de inicio de sesión: {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">Error de asignación de base de datos. No se puede seleccionar la base de datos de destino "{0}" como destino de migración para la base de datos "{1}". La base de datos de destino "{2}" ya está seleccionada como destino de migración para la base de datos "{3}". Seleccione otra base de datos de destino.</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">Error de asignación de base de datos. Faltan bases de datos de destino para migrar. Configure la conexión del servidor de destino y haga clic en conectar para recopilar la lista de destinos de migración de base de datos disponibles.</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">Se encontró un error de asignación (código de error: {0}) entre las bases de datos "{1}" y "{2}". La intercalación de la base de datos de origen "{3}" no coincide con la intercalación de la base de datos de destino "{4}". Seleccione o vuelva a crear una base de datos de destino con la misma intercalación que la base de datos de origen.</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">Error de asignación de base de datos. La base de datos de origen "{0}" no está asignada a una base de datos de destino. Seleccione una base de datos de destino a la que migrar.</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.title">
<source xml:lang="en">Azure SQL target</source>
<target state="translated">Destino de 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">Más información: 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="sql.retry.migration.prompt">
<source xml:lang="en">Do you want to retry the failed table migrations?</source>
<target state="translated">¿Desea reintentar las migraciones de tablas con errores?</target>
</trans-unit>
<trans-unit id="sql.retry.migration.summary">
<source xml:lang="en">Please resolve any errors before retrying the migration.</source>
<target state="translated">Resuelva los errores antes de reintentar la migración.</target>
</trans-unit>
<trans-unit id="sql.retry.migration.title">
<source xml:lang="en">The migration failed with the following errors:</source>
<target state="translated">Error en la migración con los siguientes errores:</target>
</trans-unit>
<trans-unit id="total.databases.selected">
<source xml:lang="en">{0} of {1} databases selected</source>
<target state="translated">{0} de {1} bases de datos seleccionadas</target>
</trans-unit>
<trans-unit id="total.tables.selected.of.total">
<source xml:lang="en">{0} of {1}</source>
<target state="translated">{0} de {1}</target>
</trans-unit>
<trans-unit id="waitingForService">
<source xml:lang="en">Waiting for {0} component to start.</source>
<target state="translated">Esperando a que se inicie el componente {0}.</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/dist/models/stateMachine" source-language="en" datatype="plaintext" target-language="es">
<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">Error al iniciar la migración: '{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">Iniciando la migración de la base de datos {0} a {1} - {2}</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/dist/service/serviceClient" source-language="en" datatype="plaintext" target-language="es">
<body>
<trans-unit id="downloadingService">
<source xml:lang="en">Downloading {0}</source>
<target state="translated">Descargando {0}</target>
</trans-unit>
<trans-unit id="downloadingServiceComplete">
<source xml:lang="en">Done downloading {0}</source>
<target state="translated">Descarga de {0} finalizada</target>
</trans-unit>
<trans-unit id="downloadingServiceFailed">
<source xml:lang="en">Failed to download binaries for {0}. Use the following link to troubleshoot: {1}</source>
<target state="translated">No se pudieron descargar los archivos binarios para {0}. Use el siguiente vínculo para solucionar problemas: {1}</target>
</trans-unit>
<trans-unit id="downloadingServiceFailedWithLinkMarkup">
<source xml:lang="en">Failed to download binaries for {0}. Use this [link to troubleshoot]({1}).</source>
<target state="translated">No se pudieron descargar los archivos binarios para {0}. Use este [vínculo para solucionar problemas]({1}).</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">Descargando {0}</target>
</trans-unit>
<trans-unit id="entryExtractedChannelMsg">
<source xml:lang="en">Extracted {0} ({1}/{2})</source>
<target state="translated">Elementos extraídos {0} ({1} de {2})</target>
</trans-unit>
<trans-unit id="flatFileImport.serviceStartFailed">
<source xml:lang="en">Failed to start {0}: {1}</source>
<target state="translated">No se pudo iniciar {0}: {1}</target>
</trans-unit>
<trans-unit id="installingService">
<source xml:lang="en">Installing {0} Service</source>
<target state="translated">Instalando servicio {0}</target>
</trans-unit>
<trans-unit id="installingServiceDetailed">
<source xml:lang="en">Installing {0} to {1}</source>
<target state="translated">Instalando {0} en {1}</target>
</trans-unit>
<trans-unit id="serviceInstalled">
<source xml:lang="en">Installed {0}</source>
<target state="translated">{0} instalado</target>
</trans-unit>
<trans-unit id="serviceStarted">
<source xml:lang="en">{0} Started</source>
<target state="translated">{0} Iniciado</target>
</trans-unit>
<trans-unit id="serviceStarting">
<source xml:lang="en">Starting {0}</source>
<target state="translated">Iniciando {0}</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/package" source-language="en" datatype="plaintext" target-language="es">
<body>
<trans-unit id="cancel-migration-menu">
<source xml:lang="en">Cancel migration</source>
<target state="translated">Cancelar migración</target>
</trans-unit>
<trans-unit id="complete-cutover-menu">
<source xml:lang="en">Complete cutover</source>
<target state="translated">Transición completa</target>
</trans-unit>
<trans-unit id="copy-migration-menu">
<source xml:lang="en">Copy migration details</source>
<target state="translated">Copiar detalles de la migración</target>
</trans-unit>
<trans-unit id="database-details-menu">
<source xml:lang="en">Database details</source>
<target state="translated">Detalles de la base de datos</target>
</trans-unit>
<trans-unit id="delete-migration-menu">
<source xml:lang="en">Delete migration</source>
<target state="translated">Eliminar migración</target>
</trans-unit>
<trans-unit id="description">
<source xml:lang="en">Azure SQL migration description</source>
<target state="translated">Descripción de la migración de Azure SQL</target>
</trans-unit>
<trans-unit id="displayName">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migración de Azure SQL</target>
</trans-unit>
<trans-unit id="migration-command-category">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migración de Azure SQL</target>
</trans-unit>
<trans-unit id="migration-context-menu-category">
<source xml:lang="en">Migration Context Menu</source>
<target state="translated">Menú contextual de migración</target>
</trans-unit>
<trans-unit id="migration-dashboard-tasks">
<source xml:lang="en">Migration Tasks</source>
<target state="translated">Tareas de migración</target>
</trans-unit>
<trans-unit id="migration-dashboard-title">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Migración de 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">Abrir blocs de notas de migración de Azure SQL</target>
</trans-unit>
<trans-unit id="new-support-request-command">
<source xml:lang="en">New support request</source>
<target state="translated">Nueva solicitud de soporte técnico</target>
</trans-unit>
<trans-unit id="refresh-migrations-command">
<source xml:lang="en">Refresh</source>
<target state="translated">Actualizar</target>
</trans-unit>
<trans-unit id="retry-migration-menu">
<source xml:lang="en">Retry migration</source>
<target state="translated">Reintentar migración</target>
</trans-unit>
<trans-unit id="send-feedback-command">
<source xml:lang="en">Feedback</source>
<target state="translated">Comentarios</target>
</trans-unit>
<trans-unit id="start-migration-command">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Migrar a Azure SQL</target>
</trans-unit>
<trans-unit id="view-service-menu">
<source xml:lang="en">Database Migration Service details</source>
<target state="translated">Detalles de Database Migration Service</target>
</trans-unit>
<trans-unit id="view-target-menu">
<source xml:lang="en">Azure SQL Target details</source>
<target state="translated">Detalles de destino de Azure SQL</target>
</trans-unit>
</body>
</file>
</xliff>