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

3843 lines
251 KiB
XML

<?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="ja">
<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">選択したアカウント '{0}' とテナント '{1}' へのアクセス中にエラーが発生しました。'リンク アカウント' を選択して、アカウントを更新するか、別のアカウントを選択してください。エラー '{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">選択したアカウント '{0}' とテナント '{1}' のアクセス トークンは有効でなくなりました。'リンク アカウント' を選択して、アカウントを更新するか、別のアカウントを選択してください。</target>
</trans-unit>
<trans-unit id="serviceCrashMessage">
<source xml:lang="en">Migration service component could not start. {0}</source>
<target state="translated">移行サービス コンポーネントを開始できませんでした。{0}</target>
</trans-unit>
<trans-unit id="serviceCrashed">
<source xml:lang="en">Service component crashed.</source>
<target state="translated">サービス コンポーネントがクラッシュしました。</target>
</trans-unit>
<trans-unit id="serviceProviderIntializationError">
<source xml:lang="en">Service provider could not be initialized.</source>
<target state="translated">データ プロバイダーを初期化できませんでした。</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">'{0}' から 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">'{0}' を 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">この移行を取り消しますか?</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">この移行を削除しますか?</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 ドメイン名 (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">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">ターゲット ログインの収集がエラー コード {0} で失敗しました</target>
</trans-unit>
<trans-unit id="sql.login.migration.complete">
<source xml:lang="en">Completed migrating logins</source>
<target state="translated">ログインの移行が完了しました</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">Windows ログインを移行するには、Azure Active Directory (AAD) ドメイン名が必要です。AAD ドメイン名を入力するか、Windows ログインの選択を解除してください。</target>
</trans-unit>
<trans-unit id="sql.login.migration.error">
<source xml:lang="en">Login migration error: {0}</source>
<target state="translated">ログイン移行エラー: {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">ログインの検証と移行が完了しました。
ユーザー マッピングを確立しています。</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">ユーザー マッピングの確立に失敗しました</target>
</trans-unit>
<trans-unit id="sql.login.migration.failed">
<source xml:lang="en">Migrating logins failed</source>
<target state="translated">ログインの移行に失敗しました</target>
</trans-unit>
<trans-unit id="sql.login.migration.get.connection.string">
<source xml:lang="en">data source={0};initial catalog=master;user id={1};password={2};TrustServerCertificate=True;Integrated Security=false;</source>
<target state="translated">data source={0};initial catalog=master;user id={1};password={2};TrustServerCertificate=True;Integrated Security=false;</target>
</trans-unit>
<trans-unit id="sql.login.migration.get.logins.query">
<source xml:lang="en">SELECT sp.name as login, sp.type_desc as login_type, sp.default_database_name, case when sp.is_disabled = 1 then 'Disabled' else 'Enabled' end as status FROM sys.server_principals sp LEFT JOIN sys.sql_logins sl ON sp.principal_id = sl.principal_id WHERE sp.type NOT IN ('G', 'R') AND sp.type_desc IN ('SQL_LOGIN', 'WINDOWS_LOGIN') ORDER BY sp.name;</source>
<target state="translated">SELECT sp.name as login, sp.type_desc as login_type, sp.default_database_name, case when sp.is_disabled = 1 then 'Disabled' else 'Enabled' end as status FROM sys.server_principals sp LEFT JOIN sys.sql_logins sl ON sp.principal_id = sl.principal_id WHERE sp.type NOT IN ('G', 'R') AND sp.type_desc IN ('SQL_LOGIN', 'WINDOWS_LOGIN') ORDER BY sp.name;</target>
</trans-unit>
<trans-unit id="sql.login.migration.in.progress">
<source xml:lang="en">Login migration in progress</source>
<target state="translated">テスト移行が進行中</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">{0} の移行状態の詳細</target>
</trans-unit>
<trans-unit id="sql.login.migration.logins.found">
<source xml:lang="en">Login found</source>
<target state="translated">ログインが見つかりました</target>
</trans-unit>
<trans-unit id="sql.login.migration.logins.not.found">
<source xml:lang="en">Login not found</source>
<target state="translated">ログインが見つかりません</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">ユーザー マッピングの確立が完了しました。
現在、サーバーの役割を移行し、サーバー マッピングを確立し、アクセス許可を設定しています。これには時間がかかります。</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">サーバーの役割の移行、サーバー マッピングの確立、アクセス許可の設定に失敗しました。</target>
</trans-unit>
<trans-unit id="sql.login.migration.migration.status.column">
<source xml:lang="en">Migration Status</source>
<target state="translated">移行の状態</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">ログイン リストの更新に成功しました。ソース ログインが {0} 件、ターゲット ログインが {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">ソースからのログイン リストの更新に失敗しました</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">ターゲットのログイン リストの更新に失敗しました</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">ソースとターゲットからログイン リストを更新しています</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">このウィザードでは、Windows 認証ログインの種類は表示されません。この種類の移行は現在サポートされていません。Windows 認証ログインの移行機能は近日公開予定です。</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">移行するログインの選択</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.column">
<source xml:lang="en">Status</source>
<target state="translated">状態</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">失敗</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.in.progress">
<source xml:lang="en">In progress</source>
<target state="translated">進行中</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">{0} 件のログインをターゲット {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">{0} 件のログインを {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">{0} 件のログインを {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">ログイン移行は既に開始されており、前のページに戻る操作は無効になっています。</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.previous.button.title">
<source xml:lang="en">Previous (Disabled)</source>
<target state="translated">前 (無効)</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.page.title">
<source xml:lang="en">Migration Status</source>
<target state="translated">移行の状態</target>
</trans-unit>
<trans-unit id="sql.login.migration.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">成功</target>
</trans-unit>
<trans-unit id="sql.login.migration.steps.migrate.logins">
<source xml:lang="en">Migrate logins</source>
<target state="translated">ログインの移行</target>
</trans-unit>
<trans-unit id="sql.login.migration.steps.not.started">
<source xml:lang="en">Not started</source>
<target state="translated">未開始</target>
</trans-unit>
<trans-unit id="sql.login.migration.target.status.column">
<source xml:lang="en">Target Status</source>
<target state="translated">ターゲットの状態</target>
</trans-unit>
<trans-unit id="sql.login.migration.target.title">
<source xml:lang="en">Azure SQL target</source>
<target state="translated">Azure SQL のターゲット</target>
</trans-unit>
<trans-unit id="sql.login.migration.type">
<source xml:lang="en">Login type</source>
<target state="translated">ログインの種類</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">Azure Virtual Machine 上の SQL Server</target>
</trans-unit>
<trans-unit id="sql.login.migration.wizard.target.connection.success">
<source xml:lang="en">Connection was successful.</source>
<target state="translated">接続が正常に完了しました。</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">ログイン移行機能はパブリック プレビュー モードであることに注意してください。</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">ログインを移行するターゲット Azure SQL Managed Instance、Azure SQL VM、Azure SQL Database を選択します。</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">現在のユーザーに、現在のインスタンス ({0}) のすべてのログイン情報を取得するための sysadmin アクセス許可があることを確認してください。</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">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} 件のログインが選択されました</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">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} (資格情報の更新が必要)</target>
</trans-unit>
<trans-unit id="sql.migration.active.backup.files">
<source xml:lang="en">Active backup files</source>
<target state="translated">アクティブなバックアップ ファイル</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">アクティブなバックアップ ファイル (1 項目)</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">アクティブなバックアップ ファイル ({0} 項目)</target>
</trans-unit>
<trans-unit id="sql.migration.all.backups.restored">
<source xml:lang="en">All backups restored</source>
<target state="translated">すべてのバックアップが復元されました</target>
</trans-unit>
<trans-unit id="sql.migration.all.fields.required">
<source xml:lang="en">All fields are required.</source>
<target state="translated">すべてのフィールドに入力してください。</target>
</trans-unit>
<trans-unit id="sql.migration.apply">
<source xml:lang="en">Apply</source>
<target state="translated">適用</target>
</trans-unit>
<trans-unit id="sql.migration.assessed.databases">
<source xml:lang="en">(for {0} assessed databases)</source>
<target state="translated">(評価済みデータベース {0} 件の場合)</target>
</trans-unit>
<trans-unit id="sql.migration.assessment">
<source xml:lang="en">Assessment results for '{0}'</source>
<target state="translated">'{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">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">評価の実行中</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">適切な Azure SQL ターゲットを特定するために、SQL Server インスタンス {0} でデータベースを評価しています。
これには時間がかかることがあります。</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">Azure SQL Managed Instance または Azure SQL Database への移行準備が整っていないデータベースは、Azure Virtual Machines の SQL Server に移行させることができます。</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">Azure SQL Database への移行準備が整っていないデータベースは、Azure Virtual Machines の SQL Server に移行できます。または、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">Azure SQL Managed Instance への移行準備が整っていないデータベースは、Azure Virtual Machines の SQL Serverに移行できます。または、Azure SQL Managed Instance 移行の準備度に関する評価結果を確認します。</target>
</trans-unit>
<trans-unit id="sql.migration.assessment.results">
<source xml:lang="en">Assessment results</source>
<target state="translated">評価結果</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">評価の結果とレコメンデーション</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">これがデータベース移行の成功を妨げるブロック問題です。</target>
</trans-unit>
<trans-unit id="sql.migration.authKeys.header">
<source xml:lang="en">Authentication key</source>
<target state="translated">認証キー</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">認証キー '{0}' が更新されました。</target>
</trans-unit>
<trans-unit id="sql.migration.authentication.type">
<source xml:lang="en">Authentication type</source>
<target state="translated">認証の種類</target>
</trans-unit>
<trans-unit id="sql.migration.authentication.types">
<source xml:lang="en">Authentication keys</source>
<target state="translated">認証キー</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">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">Azure Virtual Machines 上の SQL Server</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">Azure VM での SQL Server</target>
</trans-unit>
<trans-unit id="sql.migration.azure.sql.target">
<source xml:lang="en">Target type</source>
<target state="translated">ターゲットの種類</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">バックアップをアップロードする Azure Storage アカウント</target>
</trans-unit>
<trans-unit id="sql.migration.azure.tenant">
<source xml:lang="en">Azure AD tenant</source>
<target state="translated">Azure AD テナント</target>
</trans-unit>
<trans-unit id="sql.migration.azureRecommendation.folder.name">
<source xml:lang="en">Folder name</source>
<target state="translated">フォルダー名</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.backup.size">
<source xml:lang="en">Backup size (MB)</source>
<target state="translated">バックアップ サイズ (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.name">
<source xml:lang="en">File name</source>
<target state="translated">ファイル名</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.number.of.stripes">
<source xml:lang="en">Number of stripes</source>
<target state="translated">ストライプの数</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.restore.finish.date">
<source xml:lang="en">Restore finish date</source>
<target state="translated">復元の終了日</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.restore.start.date">
<source xml:lang="en">Restore start date</source>
<target state="translated">復元の開始日</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.restore.status">
<source xml:lang="en">Restore status</source>
<target state="translated">復元の状態</target>
</trans-unit>
<trans-unit id="sql.migration.backup.file.status">
<source xml:lang="en">File status</source>
<target state="translated">ファイルの状態</target>
</trans-unit>
<trans-unit id="sql.migration.backup.location">
<source xml:lang="en">Backup location</source>
<target state="translated">バックアップの場所</target>
</trans-unit>
<trans-unit id="sql.migration.backup.start.time">
<source xml:lang="en">Backup start time</source>
<target state="translated">バックアップ開始時刻</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">ビジネス クリティカル サービス層の SQL Managed Instance の一括移行では、Always On 高可用性グループに 3 つのセカンダリ レプリカをシードする必要があるため、通常の目的よりも大幅に時間がかかります。このオペレーションの期間は、データのサイズに依存します。シードの速度は、90% のケースで220GB/時以上となっています。</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.folder.label">
<source xml:lang="en">Folder</source>
<target state="translated">フォルダー</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.label">
<source xml:lang="en">Blob container resource group</source>
<target state="translated">BLOB コンテナー リソース グループ</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.last.backup.file.label">
<source xml:lang="en">Last backup file</source>
<target state="translated">最終バックアップ ファイル</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">最初に BLOB コンテナーの値を選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.storage.account.label">
<source xml:lang="en">Blob container storage account</source>
<target state="translated">BLOB コンテナー ストレージ アカウント</target>
</trans-unit>
<trans-unit id="sql.migration.blob.container.title">
<source xml:lang="en">Blob container</source>
<target state="translated">BLOB コンテナー</target>
</trans-unit>
<trans-unit id="sql.migration.blob.resourceGroup.select">
<source xml:lang="en">Select a resource group.</source>
<target state="translated">リソース グループを選択します。</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">最初にリソース グループの値を選択します。</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">データベースのバックアップを BLOB コンテナーにアップロードする際、異なるデータベースのバックアップ ファイルは必ず異なるフォルダーに保存してください。コンテナーのルートと深さ 1 レベルまでのフォルダーのみがサポートされています。</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">複数のデータベースについて同じバックアップの場所が選択されています。異なるデータベースのバックアップ ファイルは必ず異なるフォルダーに保存してください。</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">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">バックアップを含む Azure Storage Blob コンテナーを指定します。</target>
</trans-unit>
<trans-unit id="sql.migration.blob.storage.subscription.label">
<source xml:lang="en">Subscription</source>
<target state="translated">サブスクリプション</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">ターゲット データベース名を入力し、選択したソース データベースのリソース グループ、ストレージ アカウント、コンテナーを選択します。</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">最初にストレージ アカウントの値を選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.browse">
<source xml:lang="en">Browse</source>
<target state="translated">参照</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} 個のデータベースはイシューなく移行可能</target>
</trans-unit>
<trans-unit id="sql.migration.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">キャンセル</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">移行のキャンセル中にエラーが発生しました。</target>
</trans-unit>
<trans-unit id="sql.migration.cancel.migration">
<source xml:lang="en">Cancel migration</source>
<target state="translated">移行のキャンセル</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">移行は進行中ではないため、取り消すことができません。</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">移行は進行中ではないため、一括移行にすることができません。</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">移行は現在進行中です。削除できません。</target>
</trans-unit>
<trans-unit id="sql.migration.cannot.retry">
<source xml:lang="en">Migration cannot be retried.</source>
<target state="translated">移行を再試行できません。</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">すべての移行が完了するまで一括移行処理を開始できません。最新のファイル状態に戻るには、ブラウザー ウィンドウを更新します。</target>
</trans-unit>
<trans-unit id="sql.migration.clear">
<source xml:lang="en">Clear</source>
<target state="translated">クリア</target>
</trans-unit>
<trans-unit id="sql.migration.close">
<source xml:lang="en">Close</source>
<target state="translated">閉じる</target>
</trans-unit>
<trans-unit id="sql.migration.complete.cutover">
<source xml:lang="en">Complete cutover</source>
<target state="translated">一括移行を完了する</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">次のステップを実行しました:</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">すべてのバックアップを復元せずに一括移行を完了すると、データが失われる可能性があります。</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">提供する追加のログ バックアップがないことを確認し、一括移行の完了を希望します。</target>
</trans-unit>
<trans-unit id="sql.migration.connection.label">
<source xml:lang="en">Connect</source>
<target state="translated">接続</target>
</trans-unit>
<trans-unit id="sql.migration.connection.status">
<source xml:lang="en">Connection status</source>
<target state="translated">接続の状態</target>
</trans-unit>
<trans-unit id="sql.migration.copy.key1">
<source xml:lang="en">Copy key 1</source>
<target state="translated">キー 1 のコピー</target>
</trans-unit>
<trans-unit id="sql.migration.copy.key2">
<source xml:lang="en">Copy key 2</source>
<target state="translated">キー 2 のコピー</target>
</trans-unit>
<trans-unit id="sql.migration.copy.migration.details">
<source xml:lang="en">Copy migration details</source>
<target state="translated">移行の詳細をコピー</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">取り消し</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.cancelled">
<source xml:lang="en">Cancelled</source>
<target state="translated">取り消されました</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.copyfinished">
<source xml:lang="en">Copy finished</source>
<target state="translated">コピーの完了</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.copying">
<source xml:lang="en">Copying</source>
<target state="translated">コピー中</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">失敗</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.inprogress">
<source xml:lang="en">In progress</source>
<target state="translated">進行中</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.preparingforcopy">
<source xml:lang="en">Preparing</source>
<target state="translated">準備中</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.queued">
<source xml:lang="en">Queued</source>
<target state="translated">キューに投入済み</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.rebuildingindexes">
<source xml:lang="en">Rebuilding indexes</source>
<target state="translated">インデックスの再構築</target>
</trans-unit>
<trans-unit id="sql.migration.copy.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">成功しました</target>
</trans-unit>
<trans-unit id="sql.migration.copy.throughput">
<source xml:lang="en">Copy throughput (MBPS)</source>
<target state="translated">コピー スループット (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">データベース バックアップを Azure に移行する場合に達成したデータ移動のスループット。これは、データ読み込み量を Azure へのバックアップ移行期間で割ったデータ転送の比率です。</target>
</trans-unit>
<trans-unit id="sql.migration.count.database.multiple">
<source xml:lang="en">{0} databases</source>
<target state="translated">{0} データベース</target>
</trans-unit>
<trans-unit id="sql.migration.count.database.single">
<source xml:lang="en">{0} database</source>
<target state="translated">{0} データベース</target>
</trans-unit>
<trans-unit id="sql.migration.create">
<source xml:lang="en">Create</source>
<target state="translated">作成</target>
</trans-unit>
<trans-unit id="sql.migration.create.new">
<source xml:lang="en">Create new</source>
<target state="translated">新規作成</target>
</trans-unit>
<trans-unit id="sql.migration.create.new.migration.service">
<source xml:lang="en">Create new migration service</source>
<target state="translated">新しい移行サービスの作成</target>
</trans-unit>
<trans-unit id="sql.migration.create.new.resource.group">
<source xml:lang="en">Create new resource group</source>
<target state="translated">新しいリソース グループの作成</target>
</trans-unit>
<trans-unit id="sql.migration.creating.rg.loading">
<source xml:lang="en">Creating resource group</source>
<target state="translated">リソース グループを作成しています</target>
</trans-unit>
<trans-unit id="sql.migration.currently.restoring.file">
<source xml:lang="en">Currently restoring file</source>
<target state="translated">現在ファイルを復元しています</target>
</trans-unit>
<trans-unit id="sql.migration.cutover">
<source xml:lang="en">Migration cutover</source>
<target state="translated">一括移行</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.card">
<source xml:lang="en">Database migrations completing cutover</source>
<target state="translated">一括移行を完了するデータベースの移行</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.error">
<source xml:lang="en">An error occurred while initiating cutover.</source>
<target state="translated">一括移行開始中にエラーが発生しました。</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">一括移行を完了する前に、次の手順を実行してください。</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">データベース '{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">復元された最後のファイル: {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">復元保留中のログ バックアップ: {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">移行ステータスの更新中にエラーが発生しました。</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. ソース データベースに送信されるすべてのトランザクションを停止します。</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. 最終の差分またはトランザクション ログのバックアップを作成し、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. トランザクション ログの最終的なバックアップを取り、それをネットワーク共有に格納します。</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. ターゲット データベースですべてのバックアップが復元されていることを確認します。"復元保留中のログ バックアップ" 値は、0 にする必要があります。</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. ターゲット データベースですべてのログ バックアップが復元されていることを確認します。"復元保留中のログ バックアップ" 値は、0 にする必要があります。</target>
</trans-unit>
<trans-unit id="sql.migration.cutover.type">
<source xml:lang="en">Migration mode</source>
<target state="translated">移行モード</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">SQL Server インスタンスの移行準備状況を判断し、推奨されるAzure SQLターゲットを特定し、SQL Server インスタンスの Azure SQL Managed Instance への移行、Azure Virtual Machines または Azure SQL Database でのSQL Serverを完了します。</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">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">SQL Server インスタンス (オンプレミスまたは Azure Virtual Machines) から Azure SQL Managed Instance に最小のダウンタイムでデータベースを移行するための手順を追ったチュートリアルです。</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">Azure Data Studio の Azure SQL 移行拡張機能では、アセスメントを実行し、適切なサイズの Azure 推奨事項を取得し、SQL Server データベースを 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">SQL Server インスタンス (オンプレミスまたは Azure Virtual Machines) から 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">SQL Server インスタンス (オンプレミス) から Azure Virtual Machines 上の SQL Server に最小のダウンタイムでデータベースを移行するための手順を追ったチュートリアルです。</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.dmsGuide">
<source xml:lang="en">Azure Database Migration Guides</source>
<target state="translated">Azure データベースの移行ガイド</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.link.mi">
<source xml:lang="en">Tutorial: Migrate to Azure SQL Managed Instance (online)</source>
<target state="translated">チュートリアル: Azure SQL Managed Instance への移行 (オンライン)</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">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">チュートリアル: Azure SQL Database でSQL Serverに移行する (オフライン)</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">チュートリアル: Azure Virtual Machines 上の SQL Server に移行する (オンライン)</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.help.title">
<source xml:lang="en">Help articles and video links</source>
<target state="translated">ヘルプ記事とビデオ リンク</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">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">SQL Server ログインを 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">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">SQL Server インスタンスを Azure SQL に移行します。</target>
</trans-unit>
<trans-unit id="sql.migration.dashboard.title">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">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">データ ソースの構成</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">ソースから読み取られた実際のデータ量と、ターゲットにアップロードされた実際のデータ量の比較。</target>
</trans-unit>
<trans-unit id="sql.migration.data.uploaded.size">
<source xml:lang="en">Data uploaded / size</source>
<target state="translated">アップロードされたデータ/サイズ</target>
</trans-unit>
<trans-unit id="sql.migration.database">
<source xml:lang="en">Database</source>
<target state="translated">データベース</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">データベース '{0}' は、ターゲット マネージド インスタンス '{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">指定されたデータベース名が Azure 仮想マシンのターゲット SQL Server にまだ存在しないことを確認してください。</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">Azure SQLへの移行を評価するデータベースを選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.title">
<source xml:lang="en">Databases for assessment</source>
<target state="translated">評価用のデータベース</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">選択したデータベースに対して、必要に応じて拡張イベント セッション ファイルを提供して、アドホックまたは動的 SQL クエリ、またはアプリケーション データ レイヤーを介して開始された DML ステートメントを評価します。{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">拡張イベント セッション ファイル (.xel および .xem) が格納されているフォルダーを選択します</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.xevents.link">
<source xml:lang="en">Learn more</source>
<target state="translated">詳細情報</target>
</trans-unit>
<trans-unit id="sql.migration.database.assessment.xevents.title">
<source xml:lang="en">Assess extended event sessions</source>
<target state="translated">拡張イベント セッションの評価</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">データベースの詳細へのアクセス中にエラーが発生しました。</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">ターゲット移行データベースへの接続中にエラーが発生しました。</target>
</trans-unit>
<trans-unit id="sql.migration.database.connection.error.message">
<source xml:lang="en">Connection error:{0} {1}</source>
<target state="translated">接続エラー:{0} {1}</target>
</trans-unit>
<trans-unit id="sql.migration.database.loading">
<source xml:lang="en">Loading database table list..</source>
<target state="translated">データベース テーブルの一覧を読み込んでいます...</target>
</trans-unit>
<trans-unit id="sql.migration.database.loading.tables">
<source xml:lang="en">Loading tables list...</source>
<target state="translated">テーブルの一覧を読み込んでいます...</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">この列をクリックすると、コンテキスト コマンド メニューが表示されます</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">移行の期間</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">移行の完了時刻</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">Azure Database Migration Service では、データベースをオフラインにして移行するか、オンライン状態のまま移行することができます。オフライン移行では、移行の開始時にアプリケーションのダウンタイムが開始されます。ダウンタイムの長さを、移行後の新しい環境へのカットオーバー時間のみに限定するには、オンライン移行を使用します。</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">Azure SQL ターゲットに移行するには、ダウンタイムの要件に基づいて移行モードを選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.label">
<source xml:lang="en">Migration mode</source>
<target state="translated">移行モード</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">アプリケーションのダウンタイムは、移行開始時に開始します。</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.offline.label">
<source xml:lang="en">Offline migration</source>
<target state="translated">オフライン移行</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">アプリケーションのダウンタイムは、移行終了時の一括移行に限定されます。</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.mode.online.label">
<source xml:lang="en">Online migration</source>
<target state="translated">オンライン移行</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">データベース移行サービスの認証キー</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">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">移行の開始時刻</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.status">
<source xml:lang="en">Database migration status</source>
<target state="translated">データベースの移行状態</target>
</trans-unit>
<trans-unit id="sql.migration.database.migration.status.label">
<source xml:lang="en">Database migration status: {0}</source>
<target state="translated">データベース移行の状態: {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">ターゲット データベース名</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">ターゲット サーバー名</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">Azure リソース ターゲットの種類 [SQL Managed Instance、SQL 仮想マシン、SQL データベース]</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 個のテーブルが見つかりました。</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">移行中に使用するデータベース バックアップの場所を選択します。</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 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">移行の対象にするテーブルを選択する前に、Azure Data Studio の {0} または {1} を使用して、データベース スキーマをソースからターゲットに移行してください。</target>
</trans-unit>
<trans-unit id="sql.migration.database.schema.migration.project">
<source xml:lang="en">SQL Database Projects extension</source>
<target state="translated">SQL データベース プロジェクト拡張機能</target>
</trans-unit>
<trans-unit id="sql.migration.database.status.column">
<source xml:lang="en">Migration status</source>
<target state="translated">移行の状態</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">移行の現在の状態</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.refresh.label">
<source xml:lang="en">Refresh</source>
<target state="translated">更新</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">以下の各データベースについて、[編集] をクリックし、ソースからターゲットへの移行対象にするテーブルを選択してください。その後、[検証の実行] をクリックして指定の構成を検証してから、[次へ] をクリックしてください。</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.selection.label">
<source xml:lang="en">Table selection</source>
<target state="translated">テーブルの選択</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.source.column.label">
<source xml:lang="en">Source database</source>
<target state="translated">ソース データベース</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.tables.column.label">
<source xml:lang="en">Select tables</source>
<target state="translated">テーブルの選択</target>
</trans-unit>
<trans-unit id="sql.migration.database.table.target.column.label">
<source xml:lang="en">Target database</source>
<target state="translated">ターゲット データベース</target>
</trans-unit>
<trans-unit id="sql.migration.database.to.be.migrated">
<source xml:lang="en">Database to be migrated</source>
<target state="translated">移行されるデータベース</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">移行先のターゲット データベース テーブルを選択してください。 1 つのテーブルを持つ少なくとも 1 つのデータベースが必要です。</target>
</trans-unit>
<trans-unit id="sql.migration.databases">
<source xml:lang="en">Databases ({0}/{1})</source>
<target state="translated">データベース ({0}/{1})</target>
</trans-unit>
<trans-unit id="sql.migration.databases.selected">
<source xml:lang="en">{0}/{1} databases selected</source>
<target state="translated">{0}/{1} のデータベースが選択されています</target>
</trans-unit>
<trans-unit id="sql.migration.databases.table.title">
<source xml:lang="en">Databases</source>
<target state="translated">データベース</target>
</trans-unit>
<trans-unit id="sql.migration.day">
<source xml:lang="en">{0} day</source>
<target state="translated">{0} 日</target>
</trans-unit>
<trans-unit id="sql.migration.days">
<source xml:lang="en">{0} days</source>
<target state="translated">{0} 日</target>
</trans-unit>
<trans-unit id="sql.migration.default.database">
<source xml:lang="en">Default database</source>
<target state="translated">既定のデータベース</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">移行の削除中にエラーが発生しました。</target>
</trans-unit>
<trans-unit id="sql.migration.delete.migration">
<source xml:lang="en">Delete migration</source>
<target state="translated">移行の削除</target>
</trans-unit>
<trans-unit id="sql.migration.description">
<source xml:lang="en">Description</source>
<target state="translated">説明</target>
</trans-unit>
<trans-unit id="sql.migration.details.breadcrumb.migrations">
<source xml:lang="en">Migrations</source>
<target state="translated">移行</target>
</trans-unit>
<trans-unit id="sql.migration.details.copied">
<source xml:lang="en">Details copied</source>
<target state="translated">詳細をコピー済み</target>
</trans-unit>
<trans-unit id="sql.migration.details.refresh">
<source xml:lang="en">Refresh</source>
<target state="translated">最新の情報に更新</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.all.tables.label">
<source xml:lang="en">Total tables</source>
<target state="translated">テーブルの合計数</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.cancelled.tables.label">
<source xml:lang="en">Cancelled</source>
<target state="translated">取り消されました</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.failed.tables.label">
<source xml:lang="en">Failed</source>
<target state="translated">失敗</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.field.label">
<source xml:lang="en">Server objects</source>
<target state="translated">サーバー オブジェクト</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">キーワードを使用してテーブル移行の結果をフィルター処理する</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.filter.label">
<source xml:lang="en">Filter table migration results</source>
<target state="translated">テーブル移行結果のフィルター処理</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.inprogress.tables.label">
<source xml:lang="en">In progress</source>
<target state="translated">進行中</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.label">
<source xml:lang="en">Server objects</source>
<target state="translated">サーバー オブジェクト</target>
</trans-unit>
<trans-unit id="sql.migration.details.serverobjects.successful.tables.label">
<source xml:lang="en">Successful</source>
<target state="translated">成功</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">Azure Database Migration Service における Azure リージョン。サービスを含むリージョンのみが表示されます。</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">Database Migration Service をプロビジョニングできませんでした。数分待ってからもう一度やり直してください。</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">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">Azure SQL ターゲット用途のリソース グループ。サービスを含むリソース グループのみが表示されます。</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">Azure Database Migration Service のサブスクリプション名。</target>
</trans-unit>
<trans-unit id="sql.migration.duration">
<source xml:lang="en">Duration</source>
<target state="translated">時間</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">結果が期待通りだった場合、SQL Server インスタンスへの接続を確認します。</target>
</trans-unit>
<trans-unit id="sql.migration.empty.table.text">
<source xml:lang="en">No backup files</source>
<target state="translated">バックアップ ファイルなし</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">ソース SQL Server インスタンスの資格情報を入力します。これらの資格情報は、データベースを Azure SQL に移行する場合に使用されます。</target>
</trans-unit>
<trans-unit id="sql.migration.error">
<source xml:lang="en">Error</source>
<target state="translated">エラー</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">クリックするとエラー詳細が表示されます。</target>
</trans-unit>
<trans-unit id="sql.migration.error.details.label">
<source xml:lang="en">Migration error(s))</source>
<target state="translated">移行エラー</target>
</trans-unit>
<trans-unit id="sql.migration.error.details.title">
<source xml:lang="en">Migration error details</source>
<target state="translated">移行エラーの詳細</target>
</trans-unit>
<trans-unit id="sql.migration.error.title">
<source xml:lang="en">Migration status details</source>
<target state="translated">移行状態の詳細</target>
</trans-unit>
<trans-unit id="sql.migration.failed">
<source xml:lang="en">Database migrations failed</source>
<target state="translated">データベースの移行に失敗しました</target>
</trans-unit>
<trans-unit id="sql.migration.feedback.issue.title">
<source xml:lang="en">Feedback on the migration experience</source>
<target state="translated">移行エクスペリエンスのフィードバック</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.deteected.files">
<source xml:lang="en">Detected files</source>
<target state="translated">検出されたファイル</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">最後に復元されたファイル時間</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">最後にアップロードしたファイル時間</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.last.uploaded.file">
<source xml:lang="en">Last uploaded file</source>
<target state="translated">最後にアップロードしたファイル</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">マネージド インスタンスの復元状態</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.pending.differential.backups">
<source xml:lang="en">Pending differential backups</source>
<target state="translated">保留中の差分バックアップ</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.queued.files">
<source xml:lang="en">Queued files</source>
<target state="translated">キューに登録済みのファイル</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restore.percent.completed">
<source xml:lang="en">Restore percent completed</source>
<target state="translated">復元の完了率</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">復元プランのサイズ (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restored.files">
<source xml:lang="en">Restored files</source>
<target state="translated">復元されたファイル</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restored.size">
<source xml:lang="en">Restored size (MB)</source>
<target state="translated">復元されたサイズ (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.restoring.files">
<source xml:lang="en">Restoring files</source>
<target state="translated">ファイルを復元しています</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.skipped.files">
<source xml:lang="en">Skipped files</source>
<target state="translated">スキップされたファイル</target>
</trans-unit>
<trans-unit id="sql.migration.field.label.unrestorable.files">
<source xml:lang="en">Unrestorable files</source>
<target state="translated">復元不可能なファイル</target>
</trans-unit>
<trans-unit id="sql.migration.file.name">
<source xml:lang="en">File name</source>
<target state="translated">ファイル名</target>
</trans-unit>
<trans-unit id="sql.migration.finish.time">
<source xml:lang="en">Finish time</source>
<target state="translated">終了時刻</target>
</trans-unit>
<trans-unit id="sql.migration.first.lsn">
<source xml:lang="en">First LSN</source>
<target state="translated">最初の LSN</target>
</trans-unit>
<trans-unit id="sql.migration.full.backup.files">
<source xml:lang="en">Full backup file(s)</source>
<target state="translated">完全バックアップ ファイル</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">SQL Server インスタンス '{0}' の評価が完了しました。</target>
</trans-unit>
<trans-unit id="sql.migration.hr">
<source xml:lang="en">{0} hr</source>
<target state="translated">{0} 時間</target>
</trans-unit>
<trans-unit id="sql.migration.hrs">
<source xml:lang="en">{0} hrs</source>
<target state="translated">{0} 時間</target>
</trans-unit>
<trans-unit id="sql.migration.impact">
<source xml:lang="en">Impact</source>
<target state="translated">Impact</target>
</trans-unit>
<trans-unit id="sql.migration.impact.object.name">
<source xml:lang="en">Name: {0}</source>
<target state="translated">名前: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.impact.object.type">
<source xml:lang="en">Type: {0}</source>
<target state="translated">種類: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.impacted.objects">
<source xml:lang="en">Impacted objects</source>
<target state="translated">影響を受けたオブジェクト</target>
</trans-unit>
<trans-unit id="sql.migration.inline.migration.notebook.title">
<source xml:lang="en">Inline migration</source>
<target state="translated">インライン移行</target>
</trans-unit>
<trans-unit id="sql.migration.inprogress.warning.multiple">
<source xml:lang="en">{0} databases have warnings</source>
<target state="translated">{0} データベースに警告があります</target>
</trans-unit>
<trans-unit id="sql.migration.inprogress.warning.single">
<source xml:lang="en">{0} database has warnings</source>
<target state="translated">{0} データベースに警告があります</target>
</trans-unit>
<trans-unit id="sql.migration.instance">
<source xml:lang="en">Instance</source>
<target state="translated">インスタンス</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">続けるには、有効な Azure アカウントを選択してください。</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">先に進むには、ソース データベース '{0}' の有効な BLOB コンテナーを選択してください。</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">先に進むには、ソース データベース '{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">続行するには、ソース データベース '{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">先に進むには、ソース データベース '{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">先に進むには、ソース データベース '{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">先に進むには、有効な場所を選択してください。</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">続行するには、有効なマネージド インスタンスを選択してください。</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">有効な Database Migration Service を選択してください。</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">ノードに接続された Database Migration Service を選択します。</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">無効なネットワーク共有の場所の形式です。例: {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">続行するには、すべてのバックアップ ファイルがソース データベース '{0}' のページ BLOB である BLOB コンテナーを選択してください。ブロック BLOB は、SQL Server 2016 以降を実行しているターゲットでのみサポートされています。詳細情報: 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">OwnerUri が無効なため、データベースに接続できません (パラメーター '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">続行するには、有効なリソースグループを選択してください。</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">保存されたセッションを回復できません。新しいセッションを選択して、もう一度お試しください。</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">移行サービスに有効な名前を入力してください。</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">続行するには、有効なAzure SQL Database サーバーを選択します。</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">先に進むには、有効なストレージ アカウントを選択してください。</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">先に進むには、有効なサブスクリプションを選択してください。</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">ターゲット データベースに有効な名前を入力してください。</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">無効なユーザー アカウントの形式です。例: {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">続行するには、有効な仮想マシンを選択してください。</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 は、データベース移行アクティビティを調整し、その進行状況を追跡します。以前に作成した場合は既存のDatabase Migration Serviceを選択するか、以下で新しいDatabase Migration Serviceを作成できます。</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">Database Migration Service が見つかりません。新しいのを作成します。</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">ステップ 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">障害となっている問題: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.issues">
<source xml:lang="en">Issues</source>
<target state="translated">問題</target>
</trans-unit>
<trans-unit id="sql.migration.issues.count">
<source xml:lang="en">Issues ({0})</source>
<target state="translated">問題 ({0} 件)</target>
</trans-unit>
<trans-unit id="sql.migration.issues.details">
<source xml:lang="en">Issue details</source>
<target state="translated">問題の詳細</target>
</trans-unit>
<trans-unit id="sql.migration.key1.copied">
<source xml:lang="en">Key 1 copied</source>
<target state="translated">キー 1 がコピーされました</target>
</trans-unit>
<trans-unit id="sql.migration.key1.label">
<source xml:lang="en">Key 1</source>
<target state="translated">キー 1</target>
</trans-unit>
<trans-unit id="sql.migration.key2.copied">
<source xml:lang="en">Key 2 copied</source>
<target state="translated">キー 2 がコピーされました</target>
</trans-unit>
<trans-unit id="sql.migration.key2.label">
<source xml:lang="en">Key 2</source>
<target state="translated">キー 2</target>
</trans-unit>
<trans-unit id="sql.migration.last.LSN">
<source xml:lang="en">Last LSN</source>
<target state="translated">最後の 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">最後に適用されたバックアップ ファイル</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">以下で作成された、最後に適用されたバックアップ</target>
</trans-unit>
<trans-unit id="sql.migration.last.applied.lsn">
<source xml:lang="en">Last applied LSN</source>
<target state="translated">最後に適用された LSN</target>
</trans-unit>
<trans-unit id="sql.migration.last.scan.completed">
<source xml:lang="en">Last scan completed: {0}</source>
<target state="translated">完了した最後のスキャン: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.learn.more">
<source xml:lang="en">Learn more</source>
<target state="translated">詳細情報</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">移行を開始する前に、必要な事項の詳細を説明します。</target>
</trans-unit>
<trans-unit id="sql.migration.load.migration.list.error">
<source xml:lang="en">Error loading migrations list</source>
<target state="translated">移行一覧の読み込みエラー</target>
</trans-unit>
<trans-unit id="sql.migration.location">
<source xml:lang="en">Location</source>
<target state="translated">場所</target>
</trans-unit>
<trans-unit id="sql.migration.map.source.column">
<source xml:lang="en">Source database</source>
<target state="translated">ソース データベース</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.column">
<source xml:lang="en">Target database</source>
<target state="translated">ターゲット データベース</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">ソース データベースの移行先となるターゲット データベースを選択します。 1 つのソース データベースに対してのみターゲット データベースを選択できます。</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">選択したソース データベースを移行先データベースにマップする</target>
</trans-unit>
<trans-unit id="sql.migration.map.target.placeholder">
<source xml:lang="en">Select a target database</source>
<target state="translated">ターゲット データベースを選択する</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">マネージド インスタンス '{0}' は、現在 '{1}' 状態であるため、移行のために使用できません。続行するには、使用可能なマネージド インスタンスを選択してください。</target>
</trans-unit>
<trans-unit id="sql.migration.migration.completed">
<source xml:lang="en">Database migrations completed</source>
<target state="translated">データベースの移行が完了しました</target>
</trans-unit>
<trans-unit id="sql.migration.migration.in.progress">
<source xml:lang="en">Database migrations in progress</source>
<target state="translated">データベースの移行が進行中</target>
</trans-unit>
<trans-unit id="sql.migration.migration.list.ascending.label">
<source xml:lang="en">Ascending</source>
<target state="translated">昇順</target>
</trans-unit>
<trans-unit id="sql.migration.migration.list.sort.label">
<source xml:lang="en">Sort</source>
<target state="translated">ソート</target>
</trans-unit>
<trans-unit id="sql.migration.migration.status">
<source xml:lang="en">Migration status</source>
<target state="translated">移行の状態</target>
</trans-unit>
<trans-unit id="sql.migration.migration.status.filter">
<source xml:lang="en">Migration status filter</source>
<target state="translated">移行状態フィルター</target>
</trans-unit>
<trans-unit id="sql.migration.min">
<source xml:lang="en">{0} min</source>
<target state="translated">{0} 分</target>
</trans-unit>
<trans-unit id="sql.migration.mins">
<source xml:lang="en">{0} mins</source>
<target state="translated">{0} 分</target>
</trans-unit>
<trans-unit id="sql.migration.missing.table.name.column">
<source xml:lang="en">Table name</source>
<target state="translated">テーブル名</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">続行するには、有効なターゲット パスワードを入力します。</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">続行するには、有効なターゲット ユーザー名を入力します。</target>
</trans-unit>
<trans-unit id="sql.migration.mode">
<source xml:lang="en">Mode</source>
<target state="translated">モード</target>
</trans-unit>
<trans-unit id="sql.migration.more.info">
<source xml:lang="en">More info</source>
<target state="translated">詳細情報</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">全てのステップは次のエラーで完了しました: {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">すべてのステップが成功しました。</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">一部のステップはまだ実行中です。</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status">
<source xml:lang="en">Step status: {0}</source>
<target state="translated">ステップの状態: {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">結果のコピー</target>
</trans-unit>
<trans-unit id="sql.migration.multi.step.status.dialog.heading">
<source xml:lang="en">Step details</source>
<target state="translated">ステップの詳細</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">ステップの状態: {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">ステップ</target>
</trans-unit>
<trans-unit id="sql.migration.na">
<source xml:lang="en">N/A</source>
<target state="translated">該当なし</target>
</trans-unit>
<trans-unit id="sql.migration.name">
<source xml:lang="en">Name</source>
<target state="translated">名前</target>
</trans-unit>
<trans-unit id="sql.migration.name.label">
<source xml:lang="en">Names:</source>
<target state="translated">名前:</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">新しいリソース グループの名前</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">データベースのバックアップは、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">データベースのバックアップは、ネットワーク共有にあります</target>
</trans-unit>
<trans-unit id="sql.migration.network.share">
<source xml:lang="en">Network share</source>
<target state="translated">ネットワーク共有</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.azure.header">
<source xml:lang="en">Storage account details</source>
<target state="translated">ストレージ アカウントの詳細</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">バックアップのアップロード先の Azure Storage アカウントを指定します。</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.header.text">
<source xml:lang="en">Network share details</source>
<target state="translated">ネットワーク共有の詳細</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">バックアップが格納されているネットワーク共有の場所、および共有へのアクセスに使用するユーザーの資格情報を指定します。</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">データベース バックアップのネットワーク共有パス。移行プロセスでは、このネットワーク共有から有効なバックアップ ファイルを自動的に取得します。</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">バックアップが保存されているネットワーク共有の場所</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.password.label">
<source xml:lang="en">Password</source>
<target state="translated">パスワード</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.password.placeholder">
<source xml:lang="en">Enter password.</source>
<target state="translated">パスワードを入力します。</target>
</trans-unit>
<trans-unit id="sql.migration.network.share.path">
<source xml:lang="en">Network share path</source>
<target state="translated">ネットワーク共有パス</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">選択したソース データベースのターゲット データベース名とネットワーク共有パス情報を入力します。</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">ネットワーク共有の場所への読み取り権限のある Windows ユーザー アカウント。</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">ネットワーク共有の場所への読み取り権限のある Windows ユーザー アカウント</target>
</trans-unit>
<trans-unit id="sql.migration.new.resource.group">
<source xml:lang="en">(new) {0}</source>
<target state="translated">(新規) {0}</target>
</trans-unit>
<trans-unit id="sql.migration.newSupportRequest">
<source xml:lang="en">New support request</source>
<target state="translated">新しいサポート リクエスト</target>
</trans-unit>
<trans-unit id="sql.migration.no">
<source xml:lang="en">No</source>
<target state="translated">いいえ</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobContainers.found">
<source xml:lang="en">No blob containers found.</source>
<target state="translated">BLOB コンテナーが見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobFiles.found">
<source xml:lang="en">No blob files found.</source>
<target state="translated">BLOB ファイルが見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.blobFolders.found">
<source xml:lang="en">No blob folders found.</source>
<target state="translated">BLOB フォルダーが見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.fileShares.found">
<source xml:lang="en">No file shares found.</source>
<target state="translated">ファイル共有が見つかりません。</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">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">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">Azure Virtual Machine 上で SQL Server への移行に関する問題は見つかりませんでした。</target>
</trans-unit>
<trans-unit id="sql.migration.no.location.found">
<source xml:lang="en">No locations found.</source>
<target state="translated">場所が見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.managedInstance.found">
<source xml:lang="en">No managed instances found.</source>
<target state="translated">マネージド インスタンスが見つかりません。</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">保留中のバックアップはありません。[最新の情報に更新] をクリックして、現在の状態を確認します。</target>
</trans-unit>
<trans-unit id="sql.migration.no.results">
<source xml:lang="en">Assessment results are unavailable.</source>
<target state="translated">評価結果を使用できません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.sqldatabase.found">
<source xml:lang="en">No Azure SQL databases found.</source>
<target state="translated">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">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">ストレージ アカウントが見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.subscription.found">
<source xml:lang="en">No subscriptions found.</source>
<target state="translated">サブスクリプションが見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.no.virtualMachine.found">
<source xml:lang="en">No virtual machines found.</source>
<target state="translated">仮想マシンが見つかりません。</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">移行ノートブックを開けませんでした。</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} 件の表示されているログインの移行</target>
</trans-unit>
<trans-unit id="sql.migration.object.details">
<source xml:lang="en">Object details</source>
<target state="translated">オブジェクトの詳細</target>
</trans-unit>
<trans-unit id="sql.migration.offline">
<source xml:lang="en">Offline</source>
<target state="translated">オフライン</target>
</trans-unit>
<trans-unit id="sql.migration.offline.caps">
<source xml:lang="en">OFFLINE</source>
<target state="translated">OFFLINE</target>
</trans-unit>
<trans-unit id="sql.migration.ok">
<source xml:lang="en">OK</source>
<target state="translated">OK</target>
</trans-unit>
<trans-unit id="sql.migration.online">
<source xml:lang="en">Online</source>
<target state="translated">オンライン</target>
</trans-unit>
<trans-unit id="sql.migration.open">
<source xml:lang="en">Open</source>
<target state="translated">開く</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">移行の詳細ダイアログ オープン時エラー</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">移行サービス ダイアログのオープン時エラー</target>
</trans-unit>
<trans-unit id="sql.migration.open.migration.target.error">
<source xml:lang="en">Error opening migration target</source>
<target state="translated">移行ターゲット オープン時エラー</target>
</trans-unit>
<trans-unit id="sql.migration.option">
<source xml:lang="en">Download and install integration runtime</source>
<target state="translated">統合ランタイムのダウンロードとインストール</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.dynamic">
<source xml:lang="en">Dynamic range</source>
<target state="translated">動的範囲</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.none">
<source xml:lang="en">None</source>
<target state="translated">なし</target>
</trans-unit>
<trans-unit id="sql.migration.parallel.copy.type.physical">
<source xml:lang="en">Physical partitions</source>
<target state="translated">物理パーティション</target>
</trans-unit>
<trans-unit id="sql.migration.password.label">
<source xml:lang="en">Target password</source>
<target state="translated">ターゲット パスワード</target>
</trans-unit>
<trans-unit id="sql.migration.password.placeholder">
<source xml:lang="en">Enter the target password</source>
<target state="translated">ターゲット パスワードを入力してください</target>
</trans-unit>
<trans-unit id="sql.migration.path.user.account">
<source xml:lang="en">User account</source>
<target state="translated">ユーザー アカウント</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">Azure アカウント (評価または 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">オンプレミス、Azure 仮想マシン上のSQL Server、またはクラウドで実行されている任意の仮想マシン (プライベート、パブリック) で実行されているソース SQL Server データベース。</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">データベースの移行先となる Azure SQL Managed Instance、Azure Virtual Machine 上のSQL Server、または Azure SQL Database。</target>
</trans-unit>
<trans-unit id="sql.migration.pre.req.4">
<source xml:lang="en">Your database backup location details, either a network file share or an Azure Blob Storage container (not required for Azure SQL Database targets).</source>
<target state="translated">データベースバックアップの場所の詳細、ネットワーク ファイル共有またはAzure Blob Storageコンテナー (Azure SQL データベース ターゲットには必要ありません)。</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">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">ターゲット データベースごとに一意のコンテナーを指定してください。影響を受けるデータベースは以下のとおりです。</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">実行する操作を選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.recommendation">
<source xml:lang="en">Recommendation</source>
<target state="translated">推奨事項</target>
</trans-unit>
<trans-unit id="sql.migration.refresh">
<source xml:lang="en">Refresh</source>
<target state="translated">最新の情報に更新</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.assessment.button.label">
<source xml:lang="en">Refresh assessment</source>
<target state="translated">評価の更新</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.key1">
<source xml:lang="en">Refresh key 1</source>
<target state="translated">キー 1 を最新の情報に更新する</target>
</trans-unit>
<trans-unit id="sql.migration.refresh.key2">
<source xml:lang="en">Refresh key 2</source>
<target state="translated">キー 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">移行リストの更新中にエラーが発生しました。リンクされた Azure 接続を確認し、[更新] をクリックしてもう一度お試しください。</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">移行リストの更新中にエラーが発生しました。</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">リソース グループは、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">リソース グループが見つかりません。</target>
</trans-unit>
<trans-unit id="sql.migration.resourceGroups">
<source xml:lang="en">Resource group</source>
<target state="translated">リソース グループ</target>
</trans-unit>
<trans-unit id="sql.migration.restart.migration.wizard">
<source xml:lang="en">Restart migration wizard</source>
<target state="translated">移行ウィザードの再起動</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.none">
<source xml:lang="en">None</source>
<target state="translated">なし</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.queued">
<source xml:lang="en">Queued</source>
<target state="translated">キューに登録済み</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.restored">
<source xml:lang="en">Restored</source>
<target state="translated">復元済み</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">復元しています</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backupset.status.skipped">
<source xml:lang="en">Skipped</source>
<target state="translated">スキップされました</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.database">
<source xml:lang="en">Database</source>
<target state="translated">データベース</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.differentialdatabase">
<source xml:lang="en">Differential database</source>
<target state="translated">差分データベース</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.differentialfile">
<source xml:lang="en">Differential file</source>
<target state="translated">差分ファイル</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.differentialpartial">
<source xml:lang="en">Differential partial</source>
<target state="translated">部分的な差分</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.file">
<source xml:lang="en">File</source>
<target state="translated">ファイル</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.partial">
<source xml:lang="en">Partial</source>
<target state="translated">部分的</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.transactionlog">
<source xml:lang="en">Transaction log</source>
<target state="translated">トランザクション ログ</target>
</trans-unit>
<trans-unit id="sql.migration.restore.backuptype.unknown">
<source xml:lang="en">Unknown</source>
<target state="translated">不明</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.Restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">復元しています</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.blocked">
<source xml:lang="en">Blocked</source>
<target state="translated">ブロックされている</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.cancelled">
<source xml:lang="en">Cancelled</source>
<target state="translated">キャンセル済み</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.completed">
<source xml:lang="en">Completed</source>
<target state="translated">完了済み</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.completing.migration">
<source xml:lang="en">Completing migration</source>
<target state="translated">移行を完了しています</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">失敗しました</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.initializing">
<source xml:lang="en">Initializing</source>
<target state="translated">初期化しています</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.none">
<source xml:lang="en">None</source>
<target state="translated">なし</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.not.started">
<source xml:lang="en">Not started</source>
<target state="translated">未開始</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.restore.completed">
<source xml:lang="en">Restore completed</source>
<target state="translated">復元が完了しました</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.restore.paused">
<source xml:lang="en">Restore paused</source>
<target state="translated">復元が一時停止されました</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.searching.backups">
<source xml:lang="en">Searching backups</source>
<target state="translated">バックアップの検索</target>
</trans-unit>
<trans-unit id="sql.migration.restore.status.waiting">
<source xml:lang="en">Waiting</source>
<target state="translated">待機中</target>
</trans-unit>
<trans-unit id="sql.migration.resume.session">
<source xml:lang="en">Resume previously saved session</source>
<target state="translated">以前に保存したセッションを再開する</target>
</trans-unit>
<trans-unit id="sql.migration.resume.title">
<source xml:lang="en">Run migration workflow again</source>
<target state="translated">移行ワークフローを再度実行する</target>
</trans-unit>
<trans-unit id="sql.migration.retry.migration">
<source xml:lang="en">Retry migration</source>
<target state="translated">移行の再試行</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">移行の再試行中にエラーが発生しました。</target>
</trans-unit>
<trans-unit id="sql.migration.rg.created">
<source xml:lang="en">Resource group created</source>
<target state="translated">リソース グループが作成されました</target>
</trans-unit>
<trans-unit id="sql.migration.run.validation">
<source xml:lang="en">Run validation</source>
<target state="translated">検証の実行</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">次のステップを実行しています:</target>
</trans-unit>
<trans-unit id="sql.migration.save.assessment.report">
<source xml:lang="en">Save assessment report</source>
<target state="translated">評価レポートを保存する</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">評価レポートが {0} に正常に保存されました。</target>
</trans-unit>
<trans-unit id="sql.migration.save.close">
<source xml:lang="en">Save and close</source>
<target state="translated">保存して閉じる</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">構成が保存されました。パフォーマンス データの収集はバックグラウンドで実行されたままになります。必要に応じて、コレクションを停止できます。</target>
</trans-unit>
<trans-unit id="sql.migration.save.recommendation.report">
<source xml:lang="en">Save recommendation report</source>
<target state="translated">推奨事項レポートを保存する</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">推奨事項レポートが {0} に正常に保存されました。</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">キャンセル</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.next">
<source xml:lang="en">Next</source>
<target state="translated">次へ</target>
</trans-unit>
<trans-unit id="sql.migration.saved.assessment.result">
<source xml:lang="en">Saved session</source>
<target state="translated">保存されたセッション</target>
</trans-unit>
<trans-unit id="sql.migration.search">
<source xml:lang="en">Search</source>
<target state="translated">検索</target>
</trans-unit>
<trans-unit id="sql.migration.search.for.migration">
<source xml:lang="en">Filter migration results</source>
<target state="translated">移行結果のフィルター処理</target>
</trans-unit>
<trans-unit id="sql.migration.sec">
<source xml:lang="en">{0} sec</source>
<target state="translated">{0} 秒</target>
</trans-unit>
<trans-unit id="sql.migration.select">
<source xml:lang="en">Select</source>
<target state="translated">選択</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">対象の Azure サブスクリプションと対象の Azure SQL Managed Instance を選択します。</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">対象の Azure サブスクリプションと Azure Virtual Machine 上の対象の SQL Server で選択します。</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">移行に 1 つ以上のログインを選択してください</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">移行するデータベースを選択してください。</target>
</trans-unit>
<trans-unit id="sql.migration.select.migration.tables">
<source xml:lang="en">Select tables for migration</source>
<target state="translated">移行するテーブルの選択</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">SQL Server インスタンス、または左側にあるいずれかのデータベースをクリックすると、その詳細が表示されます。</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.apply.label">
<source xml:lang="en">Apply</source>
<target state="translated">適用</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.delete.label">
<source xml:lang="en">Clear</source>
<target state="translated">クリア</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">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">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">Azure にサインインしてアカウントを選択する</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.location">
<source xml:lang="en">Select a location</source>
<target state="translated">場所を選択してください</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">リソース グループを選択します</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">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">サブスクリプションの選択</target>
</trans-unit>
<trans-unit id="sql.migration.select.service.select.a.tenant">
<source xml:lang="en">Select a tenant</source>
<target state="translated">テナントを選択してください</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">使用可能な Azure アカウントの読み込み中にエラーが発生しました。</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">場所の読み込み中にエラーが発生しました。Azure 接続を確認して、もう一度お試しください。</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">ターゲット サーバーを選択します。</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">使用可能なリソース グループの読み込み中にエラーが発生しました。Azure 接続を確認して、もう一度お試しください。</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">使用可能なデータベースの移行サービスの読み込み中にエラーが発生しました。Azure 接続を確認して、もう一度お試しください。</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">アカウント サブスクリプションの読み込み中にエラーが発生しました。Azure 接続を確認して、もう一度お試しください。</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">ターゲット Azure SQL の型の選択</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">使用可能な Azure アカウント テナントの読み込み中にエラーが発生しました。</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">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">続行するには、ターゲットを選択してください。</target>
</trans-unit>
<trans-unit id="sql.migration.server">
<source xml:lang="en">Server</source>
<target state="translated">サーバー</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">ソース SQL Server インスタンスを実行しているサービス アカウントに、ネットワーク共有に対する読み取り権限があることを確認してください。</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">移行サービスの読み込み中</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.authKeys.label">
<source xml:lang="en">Authentication keys</source>
<target state="translated">認証キー</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">セルフホステッド統合ランタイム ノードへの接続に使用される認証キー</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.button.label">
<source xml:lang="en">Close</source>
<target state="translated">閉じる</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">セルフホステッド統合ランタイム ノード</target>
</trans-unit>
<trans-unit id="sql.migration.service.details.status.unavailable">
<source xml:lang="en">-- unavailable --</source>
<target state="translated">-- 使用不可 --</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">Azure Database Migration Service '{0}' の登録情報の取得中に次のエラーが発生しました。[更新] をクリックして、もう一度お試しください。エラー: '{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">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">Migration Services が見つかりません。新しく作成してください。</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 が登録されていません。Azure Database Migration Service '{0}' は、任意のノードでセルフホステッド統合ランタイムに登録する必要があります。</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} (変更)</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">続行する前に、データベース バックアップ ファイルの場所を選択してください。</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">Migration Service の作成ステータスを更新中にエラーが発生しました。</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">以下の情報を入力して、新しい 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">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">Azure Database Migration Service の Azure リージョン。これは、ターゲット Azure SQL と同じリージョンである必要があります。</target>
</trans-unit>
<trans-unit id="sql.migration.services.name">
<source xml:lang="en">Azure Database Migration Service name.</source>
<target state="translated">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">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">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">既定として Azure SQL ターゲットが選択されました。</target>
</trans-unit>
<trans-unit id="sql.migration.shir">
<source xml:lang="en">Self-hosted integration runtime node</source>
<target state="translated">セルフホステッド統合ランタイム ノード</target>
</trans-unit>
<trans-unit id="sql.migration.show.status">
<source xml:lang="en">Show status</source>
<target state="translated">状態の表示</target>
</trans-unit>
<trans-unit id="sql.migration.size">
<source xml:lang="en">Size (MB)</source>
<target state="translated">サイズ (MB)</target>
</trans-unit>
<trans-unit id="sql.migration.size.column.header">
<source xml:lang="en">Size</source>
<target state="translated">サイズ</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} 件の利用可能なレコメンデーション</target>
</trans-unit>
<trans-unit id="sql.migration.sku.available.recommendations.one">
<source xml:lang="en">{0} recommendation available</source>
<target state="translated">{0}件のレコメンデーションがあります</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration">
<source xml:lang="en">Azure configuration</source>
<target state="translated">Azure の構成</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.businessCritical">
<source xml:lang="en">Business critical</source>
<target state="translated">Business Critical</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.gen5">
<source xml:lang="en">Gen5</source>
<target state="translated">第 5 世代</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.generalPurpose">
<source xml:lang="en">General purpose</source>
<target state="translated">汎用</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.hyperscale">
<source xml:lang="en">Hyperscale</source>
<target state="translated">ハイパースケール</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} 仮想コア</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.miPreview">
<source xml:lang="en">{0} - {1} - {2} vCore - {3} GB</source>
<target state="translated">{0} - {1} - {2} 仮想コア - {3} GB</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.premiumSeries">
<source xml:lang="en">Premium-series</source>
<target state="translated">Premium シリーズ</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.premiumSeriesMemoryOptimized">
<source xml:lang="en">Memory optimized premium-series</source>
<target state="translated">メモリ最適化 Premium シリーズ</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.sqldb">
<source xml:lang="en">{0} - {1} vCore</source>
<target state="translated">{0} - {1} 仮想コア</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureConfiguration.sqldbPreview">
<source xml:lang="en">{0} - {1} - {2} vCore - {3} GB</source>
<target state="translated">{0} - {1} - {2} 仮想コア - {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">データ: {0}、ログ: {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">パフォーマンス データを提供する方法を選択する</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.collectData.method">
<source xml:lang="en">Collect performance data now</source>
<target state="translated">パフォーマンス データを今すぐ収集する</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">パフォーマンス データが保存されるローカル ドライブ上のフォルダーを選択します</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">Azure のレコメンデーションでは、ターゲット レコメンデーションを提供するために SQL Server インスタンスのパフォーマンス データが必要です。パフォーマンス データの収集を有効にして、移行するデータベースのターゲット レコメンデーションを受け取ります。これを長くすればするほど、より良いレコメンデーションが得られます。パフォーマンス データ収集はいつでも無効にできます。</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">以前に収集したことがある場合は、既存のフォルダーからこのデータを選択することもできます。</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">パフォーマンス データが既にあります</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">以前に収集したパフォーマンス データが保存されているローカル ドライブ上のフォルダーを選択します</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.start">
<source xml:lang="en">Start</source>
<target state="translated">開始</target>
</trans-unit>
<trans-unit id="sql.migration.sku.azureRecommendation.start.popup">
<source xml:lang="en">Starting performance data collection...</source>
<target state="translated">パフォーマンス データの収集を開始しています...</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">最初のレコメンデーションは、約 {0} 分後に自動的に更新されます。</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">提供されたデータを使用して Azure のレコメンデーションが適用されています。追加のデータをインポートまたは収集して、レコメンデーションを絞り込みます。</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">データ収集が進行中です。最初のレコメンデーションを生成しています...</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">[レコメンデーションの更新] ボタンを押して、更新されたレコメンデーションを定期的に確認します。</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">Azure のレコメンデーションでは、パフォーマンス データを収集して分析し、ワークロードに適したサイズのターゲットを Azure で推奨します。</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">データ収集はまだ進行中です。既存のレコメンデーションを絞り込んでいます...</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">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">パフォーマンス データ収集を停止しています...</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">パフォーマンス コレクションをより長い期間実行すると、より正確なレコメンデーションが得られます。</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">下のボタンをクリックして、データベースのパフォーマンス データをインポートまたは収集します。</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">データ収集が完了すると、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">Azure のレコメンデーションは使用できません。下にある [Azure のレコメンデーションを取得] ボタンをクリックしてください。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.cpu">
<source xml:lang="en">{0} cores</source>
<target state="translated">{0} コア</target>
</trans-unit>
<trans-unit id="sql.migration.sku.cpu.requirement">
<source xml:lang="en">CPU requirement</source>
<target state="translated">CPU 要件</target>
</trans-unit>
<trans-unit id="sql.migration.sku.data.iops.requirement">
<source xml:lang="en">Data IOPS requirement</source>
<target state="translated">データ IOPS 要件</target>
</trans-unit>
<trans-unit id="sql.migration.sku.data.storage.requirement">
<source xml:lang="en">Data storage requirement</source>
<target state="translated">データ ストレージの要件</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">Azure のレコメンデーションを取得する</target>
</trans-unit>
<trans-unit id="sql.migration.sku.io.memory.requirement">
<source xml:lang="en">IO latency requirement</source>
<target state="translated">IO 待機時間の要件</target>
</trans-unit>
<trans-unit id="sql.migration.sku.iops">
<source xml:lang="en">{0} IOPS</source>
<target state="translated">{0} IOPS</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">Azure SQL ターゲット用途の Azure リージョン。移行先として適しているターゲットを含むリージョンのみが表示されます。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.log.storage.requirement">
<source xml:lang="en">Log storage requirement</source>
<target state="translated">ログ ストレージの要件</target>
</trans-unit>
<trans-unit id="sql.migration.sku.logs.iops.requirement">
<source xml:lang="en">Logs IOPS requirement</source>
<target state="translated">ログ IOPS 要件</target>
</trans-unit>
<trans-unit id="sql.migration.sku.memory.requirement">
<source xml:lang="en">Memory requirement</source>
<target state="translated">メモリ要件</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} ミリ秒</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters">
<source xml:lang="en">Recommendation parameters</source>
<target state="translated">レコメンデーション パラメーター</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.edit">
<source xml:lang="en">Edit parameters</source>
<target state="translated">パラメーターの編集</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.edit.title">
<source xml:lang="en">Edit recommendation parameters</source>
<target state="translated">レコメンデーション パラメーターの編集</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.elastic">
<source xml:lang="en">Enable elastic recommendation</source>
<target state="translated">エラスティック レコメンデーションを有効にする</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">エラスティック レコメンデーションでは、既存のクラウド顧客に対してパーソナライズされた価格パフォーマンス プロファイリングを利用する代替の推奨モデルが使用されます。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.enable.preview">
<source xml:lang="en">Enable preview features</source>
<target state="translated">プレビュー機能を有効にする</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">このオプションを有効にすることにより、パフォーマンスとスケーラビリティが大幅に向上した最新のハードウェア世代が含まれます。これらの SKU は現在プレビュー段階であり、一部のリージョンではまだ利用できない場合があります。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.percentage.utilization">
<source xml:lang="en">Percentage utilization</source>
<target state="translated">使用率</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">パフォーマンス データの集計中に使用されるデータ ポイントのパーセンタイル。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.scale.factor">
<source xml:lang="en">Scale factor</source>
<target state="translated">倍率:</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">倍率が無効です。正の整数値を入力してください。</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">Azure レコメンデーションを現在のワークロードよりも大きく、または小さくする場合は、倍率を変更します。</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">レコメンデーション パラメーターを編集するには、以下の情報を入力します。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.parameters.update">
<source xml:lang="en">Update</source>
<target state="translated">更新</target>
</trans-unit>
<trans-unit id="sql.migration.sku.percentage">
<source xml:lang="en">{0}%</source>
<target state="translated">{0}%</target>
</trans-unit>
<trans-unit id="sql.migration.sku.percentile">
<source xml:lang="en">{0}th percentile</source>
<target state="translated">{0} パーセンタイル</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendation">
<source xml:lang="en">Azure recommendation (PREVIEW)</source>
<target state="translated">Azure のレコメンデーション (プレビュー)</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">Azure SQL Managed Instance に移行するには、評価結果を表示し、1 つ以上のデータベースを選択します。</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">Azure SQL Database に移行するには、評価結果を表示し、1 つ以上のデータベースを選択します。</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">Azure Virtual Machine 上の SQL Server に移行するには、評価結果を表示し、1 つ以上のデータベースを選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendationReason">
<source xml:lang="en">Recommendation reason</source>
<target state="translated">レコメンデーションの理由</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations">
<source xml:lang="en">Recommendations</source>
<target state="translated">レコメンデーション</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">最終更新: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.loading">
<source xml:lang="en">Loading...</source>
<target state="translated">読み込んでいます...</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendations.title">
<source xml:lang="en">{0} Recommendations</source>
<target state="translated">{0} 件のレコメンデーション</target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommended.value">
<source xml:lang="en">Value</source>
<target state="translated"></target>
</trans-unit>
<trans-unit id="sql.migration.sku.recommendedConfiguration">
<source xml:lang="en">Recommended configuration</source>
<target state="translated">推奨される構成</target>
</trans-unit>
<trans-unit id="sql.migration.sku.refine.recommendation">
<source xml:lang="en">Refine Azure recommendation</source>
<target state="translated">Azure のレコメンデーションを絞り込む</target>
</trans-unit>
<trans-unit id="sql.migration.sku.refresh.recommendation">
<source xml:lang="en">Refresh recommendation</source>
<target state="translated">レコメンデーションの更新</target>
</trans-unit>
<trans-unit id="sql.migration.sku.resource">
<source xml:lang="en">Your Azure SQL target resource name</source>
<target state="translated">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">Azure SQL ターゲット用途のリソース グループ。移行先として適したターゲットを含むリソース グループのみが表示されます。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.restart.performance.collection">
<source xml:lang="en">Restart data collection</source>
<target state="translated">データ収集を再開する</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sourceProperties">
<source xml:lang="en">Source properties</source>
<target state="translated">ソースのプロパティ</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.dataDisk">
<source xml:lang="en">SQL data files</source>
<target state="translated">SQL データ ファイル</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.logDisk">
<source xml:lang="en">SQL log files</source>
<target state="translated">SQL ログ ファイル</target>
</trans-unit>
<trans-unit id="sql.migration.sku.sql.temp">
<source xml:lang="en">SQL tempdb</source>
<target state="translated">SQL tempdb</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">データ収集の停止</target>
</trans-unit>
<trans-unit id="sql.migration.sku.storage.dimension">
<source xml:lang="en">Dimension</source>
<target state="translated">ディメンション</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">Azure SQL ターゲットのサブスクリプション名</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetDeploymentType">
<source xml:lang="en">Target deployment type</source>
<target state="translated">ターゲットのデプロイの種類</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration">
<source xml:lang="en">Recommendation target storage configuration</source>
<target state="translated">レコメンデーション ターゲット ストレージの構成</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching">
<source xml:lang="en">Host caching</source>
<target state="translated">ホスト キャッシュ</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.na">
<source xml:lang="en">Not applicable</source>
<target state="translated">適用なし</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.none">
<source xml:lang="en">None</source>
<target state="translated">なし</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.readOnly">
<source xml:lang="en">Read-only</source>
<target state="translated">読み取り専用</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.caching.readWrite">
<source xml:lang="en">Read/write</source>
<target state="translated">読み取り/書き込み</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">ローカル エフェメラル SSD (既定の D:\) ドライブに tempdb を配置する</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">ストレージ パフォーマンスのニーズを満たすために必要なターゲット ストレージ構成を次に示します。</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.local.SSD">
<source xml:lang="en">Local SSD</source>
<target state="translated">ローカル SSD</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.recommendedStorageConfiguration">
<source xml:lang="en">Recommended storage configuration</source>
<target state="translated">推奨されるストレージ構成</target>
</trans-unit>
<trans-unit id="sql.migration.sku.targetStorageConfiguration.storage">
<source xml:lang="en">Storage</source>
<target state="translated">ストレージ</target>
</trans-unit>
<trans-unit id="sql.migration.sku.viewDetails">
<source xml:lang="en">View details</source>
<target state="translated">詳細の表示</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">Azure Virtual Machine 上の SQL Server</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">Azure Virtual Machine 上の SQL Server</target>
</trans-unit>
<trans-unit id="sql.migration.source.configuration">
<source xml:lang="en">Source configuration</source>
<target state="translated">ソース構成</target>
</trans-unit>
<trans-unit id="sql.migration.source.credentials">
<source xml:lang="en">Source credentials</source>
<target state="translated">ソースの資格情報</target>
</trans-unit>
<trans-unit id="sql.migration.source.database">
<source xml:lang="en">Source database name</source>
<target state="translated">転送元データベース名</target>
</trans-unit>
<trans-unit id="sql.migration.source.databases">
<source xml:lang="en">Source databases</source>
<target state="translated">ソース データベース</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">SQL Server インスタンス {0} への接続に使用する SQL 認証の資格情報を入力してください。これらの資格情報は、セルフホステッド統合ランタイムから SQL Server インスタンスへの接続に使用されます。</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">SQL Server インスタンス {0} への接続に使用する SQL 認証の資格情報を入力します。これらの資格情報は、SQL Server インスタンスに接続して、有効なバックアップ ファイルを識別するために使用されます。</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">SQL Server インスタンス {0} への接続に使用する Windows 認証の資格情報を入力してください。これらの資格情報は、セルフホステッド統合ランタイムから SQL Server インスタンスへの接続に使用されます。</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">SQL Server インスタンス {0} への接続に使用する Windows 認証の資格情報を入力します。これらの資格情報は、SQL Server インスタンスに接続して、有効なバックアップ ファイルを識別するために使用されます。</target>
</trans-unit>
<trans-unit id="sql.migration.source.login">
<source xml:lang="en">Source login</source>
<target state="translated">ソース ログイン</target>
</trans-unit>
<trans-unit id="sql.migration.source.server">
<source xml:lang="en">Source server</source>
<target state="translated">ソース サーバー</target>
</trans-unit>
<trans-unit id="sql.migration.source.version">
<source xml:lang="en">Source version</source>
<target state="translated">ソース バージョン</target>
</trans-unit>
<trans-unit id="sql.migration.sql.assessment.notebook.title">
<source xml:lang="en">SQL migration assessment</source>
<target state="translated">SQL 移行評価</target>
</trans-unit>
<trans-unit id="sql.migration.sql.database">
<source xml:lang="en">SQL Database</source>
<target state="translated">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">SQL Server インスタンス</target>
</trans-unit>
<trans-unit id="sql.migration.sql.virtual.machine">
<source xml:lang="en">SQL Virtual Machine</source>
<target state="translated">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">SQL Server 2014 以下を実行しているターゲット サーバーでは、ネットワーク共有オプションを使用してデータベース バックアップをアップロードするのではなく、Azure Storage Blob コンテナーに格納する必要があります。また、ブロック BLOB はSQL Server 2016 以降を実行しているターゲットでのみサポートされているため、バックアップ ファイルをページ BLOB として保存する必要があります。詳細情報: {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">既知の問題、制限事項、トラブルシューティング</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copyduration">
<source xml:lang="en">Copy duration</source>
<target state="translated">コピー期間</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copystart">
<source xml:lang="en">Copy start</source>
<target state="translated">コピーの開始</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.copythroughput">
<source xml:lang="en">Copy throughput</source>
<target state="translated">コピーのスループット</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.dataread">
<source xml:lang="en">Data read</source>
<target state="translated">データの読み取り</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.datawritten">
<source xml:lang="en">Data written</source>
<target state="translated">書き込み済みデータ</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.parallelcopytype">
<source xml:lang="en">Parallel copy type</source>
<target state="translated">並列コピー タイプ</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.rowscopied">
<source xml:lang="en">Rows copied</source>
<target state="translated">コピーされた行</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.rowsread">
<source xml:lang="en">Rows read</source>
<target state="translated">読み取られた行</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.tablename">
<source xml:lang="en">Table name</source>
<target state="translated">テーブル名</target>
</trans-unit>
<trans-unit id="sql.migration.sqldb.column.usedparallelcopies">
<source xml:lang="en">Used parallel copies</source>
<target state="translated">並列コピーが使用されました</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">SQL データベース サーバー '{0}' は現在 '{1}' 状態であるため、移行できません。続行するには、使用可能な SQL データベース サーバーを選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.src.database">
<source xml:lang="en">Source database</source>
<target state="translated">ソース データベース</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">ソース データベースの名前</target>
</trans-unit>
<trans-unit id="sql.migration.src.server">
<source xml:lang="en">Source name</source>
<target state="translated">ソース名</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">ソース サーバーの名前</target>
</trans-unit>
<trans-unit id="sql.migration.start.login.migration.button">
<source xml:lang="en">Migrate</source>
<target state="translated">移行</target>
</trans-unit>
<trans-unit id="sql.migration.start.migration.button">
<source xml:lang="en">Start migration</source>
<target state="translated">移行の開始</target>
</trans-unit>
<trans-unit id="sql.migration.start.session">
<source xml:lang="en">Start a new session</source>
<target state="translated">新しいセッションを開始</target>
</trans-unit>
<trans-unit id="sql.migration.start.time">
<source xml:lang="en">Start time</source>
<target state="translated">開始時刻</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">ログインの検証と移行が進行中です</target>
</trans-unit>
<trans-unit id="sql.migration.starting.login.failed">
<source xml:lang="en">Validating and migrating logins failed</source>
<target state="translated">ログインの検証と移行に失敗しました</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">データベース {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">証明書移行の開始中にエラーが発生しました: '{0}'</target>
</trans-unit>
<trans-unit id="sql.migration.state.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">取り消されました</target>
</trans-unit>
<trans-unit id="sql.migration.state.failed">
<source xml:lang="en">Failed</source>
<target state="translated">失敗</target>
</trans-unit>
<trans-unit id="sql.migration.state.pending">
<source xml:lang="en">Pending</source>
<target state="translated">保留中</target>
</trans-unit>
<trans-unit id="sql.migration.state.running">
<source xml:lang="en">Running</source>
<target state="translated">実行中</target>
</trans-unit>
<trans-unit id="sql.migration.state.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">成功</target>
</trans-unit>
<trans-unit id="sql.migration.status">
<source xml:lang="en">Status</source>
<target state="translated">状態</target>
</trans-unit>
<trans-unit id="sql.migration.status.add.account">
<source xml:lang="en">Add account</source>
<target state="translated">アカウントを追加</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">Azure アカウントを追加して、既存の移行とその状態を表示します。</target>
</trans-unit>
<trans-unit id="sql.migration.status.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">取り消し</target>
</trans-unit>
<trans-unit id="sql.migration.status.canceling">
<source xml:lang="en">Canceling</source>
<target state="translated">取り消しています</target>
</trans-unit>
<trans-unit id="sql.migration.status.completing">
<source xml:lang="en">Completing</source>
<target state="translated">完了処理中</target>
</trans-unit>
<trans-unit id="sql.migration.status.creating">
<source xml:lang="en">Creating</source>
<target state="translated">作成中</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.all">
<source xml:lang="en">Status: All</source>
<target state="translated">状態: すべて</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.completing">
<source xml:lang="en">Status: Completing</source>
<target state="translated">状態: 完了しています</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.failed">
<source xml:lang="en">Status: Failed</source>
<target state="translated">状態: 失敗</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.ongoing">
<source xml:lang="en">Status: Ongoing</source>
<target state="translated">状態: 進行中</target>
</trans-unit>
<trans-unit id="sql.migration.status.dropdown.succeeded">
<source xml:lang="en">Status: Succeeded</source>
<target state="translated">状態: 成功</target>
</trans-unit>
<trans-unit id="sql.migration.status.error.count.multiple">
<source xml:lang="en"> ({0} errors)</source>
<target state="translated"> ({0} エラー)</target>
</trans-unit>
<trans-unit id="sql.migration.status.error.count.single">
<source xml:lang="en"> ({0} error)</source>
<target state="translated"> ({0} エラー)</target>
</trans-unit>
<trans-unit id="sql.migration.status.failed">
<source xml:lang="en">Failed</source>
<target state="translated">失敗</target>
</trans-unit>
<trans-unit id="sql.migration.status.inprogress">
<source xml:lang="en">In progress</source>
<target state="translated">進行中</target>
</trans-unit>
<trans-unit id="sql.migration.status.readyforcutover">
<source xml:lang="en">Ready for cutover</source>
<target state="translated">一括移行の準備完了</target>
</trans-unit>
<trans-unit id="sql.migration.status.refresh.label">
<source xml:lang="en">Refresh</source>
<target state="translated">最新の情報に更新</target>
</trans-unit>
<trans-unit id="sql.migration.status.restoring">
<source xml:lang="en">Restoring</source>
<target state="translated">復元しています</target>
</trans-unit>
<trans-unit id="sql.migration.status.retriable">
<source xml:lang="en">Retriable</source>
<target state="translated">取得可能</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">移行を監視する Database Migration Service を選択します。</target>
</trans-unit>
<trans-unit id="sql.migration.status.status.label">
<source xml:lang="en">Status</source>
<target state="translated">状態</target>
</trans-unit>
<trans-unit id="sql.migration.status.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">成功</target>
</trans-unit>
<trans-unit id="sql.migration.status.uploadingfullbackup">
<source xml:lang="en">Uploading full backup</source>
<target state="translated">完全バックアップをアップロードしています</target>
</trans-unit>
<trans-unit id="sql.migration.status.uploadinglogbackup">
<source xml:lang="en">Uploading log backup(s)</source>
<target state="translated">ログ バックアップをアップロードしています</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} 警告)</target>
</trans-unit>
<trans-unit id="sql.migration.status.warning.count.single">
<source xml:lang="en"> ({0} warning)</source>
<target state="translated"> ({0} 警告)</target>
</trans-unit>
<trans-unit id="sql.migration.storage.account">
<source xml:lang="en">Storage account</source>
<target state="translated">ストレージ アカウント</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">ターゲット インスタンス '{0}' はストレージ アカウント '{1}' にアクセスできない可能性があります。ターゲット インスタンスのサブネットがストレージ アカウントでホワイトリストに登録されていることを確認し、該当する場合は、プライベート エンドポイントがターゲット サーバーと同じ仮想ネットワーク内にあることを確認します。</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">ターゲット インスタンス '{0}' はストレージ アカウント '{1}' にアクセスできない可能性があります。ターゲット インスタンスのサブネットがストレージ アカウントでホワイトリストに登録されていることを確認し、該当する場合は、プライベート エンドポイントがターゲット サーバーと同じ仮想ネットワーク上にあることを確認します。</target>
</trans-unit>
<trans-unit id="sql.migration.subscription">
<source xml:lang="en">Subscription</source>
<target state="translated">サブスクリプション</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">Azure ストレージ サブスクリプション</target>
</trans-unit>
<trans-unit id="sql.migration.summary.database.count">
<source xml:lang="en">Databases for migration</source>
<target state="translated">移行用のデータベース</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">概要</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">Azure Virtual Machine 上の SQL Server</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.feedback.description">
<source xml:lang="en">Feedback</source>
<target state="translated">フィードバック</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.feedback.label">
<source xml:lang="en">Feedback</source>
<target state="translated">フィードバック</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">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">新しいログイン移行 (プレビュー)</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.migration.description">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Azure SQLへの移行</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.migration.label">
<source xml:lang="en">New migration</source>
<target state="translated">新規の移行</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.support.description">
<source xml:lang="en">New support request</source>
<target state="translated">新規のサポート要求</target>
</trans-unit>
<trans-unit id="sql.migration.tab.button.support.label">
<source xml:lang="en">New support request</source>
<target state="translated">新規のサポート要求</target>
</trans-unit>
<trans-unit id="sql.migration.tab.dashboard.title">
<source xml:lang="en">Dashboard</source>
<target state="translated">ダッシュボード</target>
</trans-unit>
<trans-unit id="sql.migration.tab.migrations.title">
<source xml:lang="en">Migrations</source>
<target state="translated">移行</target>
</trans-unit>
<trans-unit id="sql.migration.table.error.title">
<source xml:lang="en">Table migration status details</source>
<target state="translated">テーブル移行状態の詳細</target>
</trans-unit>
<trans-unit id="sql.migration.table.migration.status.label">
<source xml:lang="en">Table migration status: {0}</source>
<target state="translated">テーブル移行の状態: {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">ターゲットにないテーブルの数: {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.select.label">
<source xml:lang="en">Select tables for {0}</source>
<target state="translated">{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">{1} テーブルの{0} が選択されています</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.count">
<source xml:lang="en">{0} of {1}</source>
<target state="translated">{1}のうち {0}</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.edit">
<source xml:lang="en">Edit</source>
<target state="translated">編集</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.filter">
<source xml:lang="en">Filter tables</source>
<target state="translated">フィルター テーブル</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.status.column">
<source xml:lang="en">Has rows</source>
<target state="translated">行を含む</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.tablename.column">
<source xml:lang="en">Table name</source>
<target state="translated">テーブル名</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.update.button">
<source xml:lang="en">Update</source>
<target state="translated">更新</target>
</trans-unit>
<trans-unit id="sql.migration.table.selection.update.cancel">
<source xml:lang="en">Cancel</source>
<target state="translated">キャンセル</target>
</trans-unit>
<trans-unit id="sql.migration.target">
<source xml:lang="en">Target</source>
<target state="translated">ターゲット</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.database.name">
<source xml:lang="en">Target database</source>
<target state="translated">ターゲット データベース</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.name">
<source xml:lang="en">Target name</source>
<target state="translated">ターゲット名</target>
</trans-unit>
<trans-unit id="sql.migration.target.azure.sql.instance.server.name">
<source xml:lang="en">Target name</source>
<target state="translated">ターゲット名</target>
</trans-unit>
<trans-unit id="sql.migration.target.database.name">
<source xml:lang="en">Target database name</source>
<target state="translated">ターゲット データベース名</target>
</trans-unit>
<trans-unit id="sql.migration.target.platform">
<source xml:lang="en">Target platform</source>
<target state="translated">ターゲット プラットフォーム</target>
</trans-unit>
<trans-unit id="sql.migration.target.server">
<source xml:lang="en">Target server</source>
<target state="translated">ターゲット サーバー</target>
</trans-unit>
<trans-unit id="sql.migration.target.table.count.name">
<source xml:lang="en">Tables selected</source>
<target state="translated">選択されたテーブル</target>
</trans-unit>
<trans-unit id="sql.migration.target.table.missing">
<source xml:lang="en">Target table does not exist</source>
<target state="translated">ターゲット テーブルが存在しません</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">ターゲット テーブルが空ではありません。</target>
</trans-unit>
<trans-unit id="sql.migration.target.version">
<source xml:lang="en">Target version</source>
<target state="translated">ターゲット バージョン</target>
</trans-unit>
<trans-unit id="sql.migration.tde.button.caption">
<source xml:lang="en">Edit</source>
<target state="translated">編集</target>
</trans-unit>
<trans-unit id="sql.migration.tde.button.migrate">
<source xml:lang="en">Migrate certificates</source>
<target state="translated">証明書を移行する</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">証明書移行が取り消されました。続行するには、証明書移行を実行および完了してください。</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">次のエラーで検証が取り消されました: {0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.column.databases">
<source xml:lang="en">Databases</source>
<target state="translated">データベース</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.column.status">
<source xml:lang="en">Status</source>
<target state="translated">状態</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">移行は完了しましたが、次のエラーが発生しました:{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">移行結果をコピーする</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.done.button">
<source xml:lang="en">Done</source>
<target state="translated">完了</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">次のデータベースから証明書を移行しています:</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">現在の構成では証明書移行がまだ実行されていません。続行するには、証明書移行を実行および完了してください。</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading">
<source xml:lang="en">Certificates migration progress details:</source>
<target state="translated">証明書の移行に関する進行状況の詳細:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.results.heading.completed">
<source xml:lang="en">Certificates migration results:</source>
<target state="translated">証明書移行の結果:</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">以前の証明書移行の結果:</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.start.validation">
<source xml:lang="en">Retry migration</source>
<target state="translated">移行の再試行</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">移行の状態: {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">証明書移行が正常に完了しました。移行を続行するには、[次へ] をクリックしてください。</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.validation.camceled">
<source xml:lang="en">Migration canceled</source>
<target state="translated">移行が取り消されました</target>
</trans-unit>
<trans-unit id="sql.migration.tde.migrate.validation.completed">
<source xml:lang="en">Migration completed successfully.</source>
<target state="translated">移行が正常に完了しました。</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">Transparent Data Encryption に対応したデータベース {0} つを移行対象に選択しました。{1}</target>
</trans-unit>
<trans-unit id="sql.migration.tde.msg.empty">
<source xml:lang="en">No encrypted database selected.</source>
<target state="translated">暗号化されたデータベースは選択されていません。</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">証明書を手動で移行することを選択しました。</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">暗号化証明書とデータベースを移行するために、Azure Data Studio へのアクセス権を付与しました。</target>
</trans-unit>
<trans-unit id="sql.migration.tde.progress.update">
<source xml:lang="en">{0} of {1} completed</source>
<target state="translated">{0} / {1} 完了</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">選択したデータベース {1} つのうち {0} つで、Transparent Data Encryption が使用されています。</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.description">
<source xml:lang="en">To migrate an encrypted database successfully you need to provide access to the encryption certificates or migrate certificates manually before proceeding with the migration. {0}.</source>
<target state="translated">暗号化されたデータベースを正常に移行するには、暗号化証明書へのアクセスを許可するか、移行を続行する前に証明書を手動で移行する必要があります。{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">証明書の配置先とするネットワーク パス。</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">証明書のネットワーク パス</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.network.share.placeholder">
<source xml:lang="en">Enter network path</source>
<target state="translated">ネットワーク パスを入力してください</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">証明書と秘密キーをターゲットにエクスポートします。</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">証明書へのアクセスに自分の資格情報を使用することに同意します。</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">Azure Data Studio による証明書のエクスポートすることを希望しません。</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">移行作業を続行する前に証明書を移行する必要があります。証明書を移行しない場合、この移行は失敗します。{0}。</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.optionscaption">
<source xml:lang="en">Certificate migration</source>
<target state="translated">証明書の移行</target>
</trans-unit>
<trans-unit id="sql.migration.tde.wizard.title">
<source xml:lang="en">Encrypted database selected.</source>
<target state="translated">暗号化されたデータベースが選択されています。</target>
</trans-unit>
<trans-unit id="sql.migration.test.connection">
<source xml:lang="en">Test connection</source>
<target state="translated">接続のテスト</target>
</trans-unit>
<trans-unit id="sql.migration.type">
<source xml:lang="en">Type</source>
<target state="translated">種類</target>
</trans-unit>
<trans-unit id="sql.migration.type.label">
<source xml:lang="en">Type:</source>
<target state="translated">入力:</target>
</trans-unit>
<trans-unit id="sql.migration.unavailable.target">
<source xml:lang="en">(Unavailable) {0}</source>
<target state="translated">(使用不可) {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">対象データベースに一意の名前を選択する</target>
</trans-unit>
<trans-unit id="sql.migration.username">
<source xml:lang="en">User name</source>
<target state="translated">ユーザー名</target>
</trans-unit>
<trans-unit id="sql.migration.username.label">
<source xml:lang="en">Target user name</source>
<target state="translated">ターゲット ユーザー名</target>
</trans-unit>
<trans-unit id="sql.migration.username.placeholder">
<source xml:lang="en">Enter the target user name</source>
<target state="translated">ターゲット ユーザー名を入力してください</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">リソース接続の検証中にタイムアウトが発生しました。詳細情報: 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">状態</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.column.validation.steps">
<source xml:lang="en">Validation steps</source>
<target state="translated">検証手順</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">検証は次のエラーで完了しました: {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">検証結果をコピー</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.done.button">
<source xml:lang="en">Done</source>
<target state="translated">完了</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.heading">
<source xml:lang="en">We are validating the following:</source>
<target state="translated">次を検証しています:</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.results.heading">
<source xml:lang="en">Validation step details</source>
<target state="translated">検証手順の詳細</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">ソース データベース {0} の検証チェック エラー: {1}{0}ターゲット データベース: {2}{0} エラー: {3} - {4}</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.start.validation">
<source xml:lang="en">Start validation</source>
<target state="translated">検証を開始</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.status">
<source xml:lang="en">Validation status: {0}</source>
<target state="translated">検証状態: {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} 件のエラー</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 件のエラー</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">検証状態: {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">検証を停止</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.camceled">
<source xml:lang="en">Validation check canceled</source>
<target state="translated">検証チェックが取り消されました</target>
</trans-unit>
<trans-unit id="sql.migration.validate.ir.validation.completed">
<source xml:lang="en">Validation completed successfully.</source>
<target state="translated">検証が正常に完了しました。</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">データベース {0} の検証チェック エラー: {1}{0}エラー: {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">ソース データベース {0} の検証チェック エラー: {1}{0}ファイル共有パス: {2}{0}エラー: {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">ネットワーク共有の接続性: '{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">統合ランタイムの接続性</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">ソース データベースの接続性: '{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">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">ターゲット データベースの接続性: '{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">検証が取り消されました。続行するには、移行設定を実行して検証してください。</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">次のエラーで検証が取り消されました: {0}{1}</target>
</trans-unit>
<trans-unit id="sql.migration.validation.dialog.title">
<source xml:lang="en">Running validation</source>
<target state="translated">検証を実行しています</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">現在の構成に対して検証が実行されていません。続行するには、移行設定を実行して検証してください。</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.canceled">
<source xml:lang="en">Canceled</source>
<target state="translated">取り消されました</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.failed">
<source xml:lang="en">Failed</source>
<target state="translated">失敗しました</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.pending">
<source xml:lang="en">Pending</source>
<target state="translated">保留中</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.running">
<source xml:lang="en">Running</source>
<target state="translated">実行中</target>
</trans-unit>
<trans-unit id="sql.migration.validation.state.succeeded">
<source xml:lang="en">Succeeded</source>
<target state="translated">成功しました</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">検証が正常に完了しました。 移行を続行するには、[次へ] をクリックしてください。</target>
</trans-unit>
<trans-unit id="sql.migration.view.all">
<source xml:lang="en">All database migrations</source>
<target state="translated">すべてのデータベース移行</target>
</trans-unit>
<trans-unit id="sql.migration.view.select.button.label">
<source xml:lang="en">View/Select</source>
<target state="translated">表示/選択</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">SQL Server IaaS エージェント拡張機能が現在フル モードではなく '{1}' モードであるため、仮想マシン '{0}' を移行できません。詳細情報: 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">仮想マシン '{0}' は、基になる仮想マシンが実行されていないため、移行に使用できません。再試行する前に、電源がオンになっていることを確認してください。</target>
</trans-unit>
<trans-unit id="sql.migration.warning">
<source xml:lang="en">Warning</source>
<target state="translated">警告</target>
</trans-unit>
<trans-unit id="sql.migration.warnings">
<source xml:lang="en">Warnings</source>
<target state="translated">警告</target>
</trans-unit>
<trans-unit id="sql.migration.warnings.count">
<source xml:lang="en">Warnings ({0})</source>
<target state="translated">警告 ({0})</target>
</trans-unit>
<trans-unit id="sql.migration.warnings.details">
<source xml:lang="en">Warnings details</source>
<target state="translated">警告の詳細</target>
</trans-unit>
<trans-unit id="sql.migration.windows.user.account">
<source xml:lang="en">Domain\username</source>
<target state="translated">ドメイン\ユーザー名</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.add.button.label">
<source xml:lang="en">Link account</source>
<target state="translated">アカウントのリンク</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} アカウント</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} アカウント</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">Azure Data Studio にリンクされている Azure アカウントを選択するか、今すぐリンクします。</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">リンクされたアカウントを追加して、もう一度お試しください。</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.account.title">
<source xml:lang="en">Azure account</source>
<target state="translated">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">ターゲット サーバーへの接続中にエラーが発生しました。</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">{0} ログイン情報の取得中にエラーが発生しました。</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">サーバー `{0}` のパフォーマンス データの収集中にエラーが発生しました。これらの問題が解決しない場合は、 データ収集プロセスをリスタートしてみてください:
{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">評価結果に基づくと、オンライン状態のデータベースのすべての {0} を 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">サーバー '{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">このオプションをチェックして評価をスキップし、移行を続行します。</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">[データベース移行の準備状況を確認するための評価結果はありません。このチェックボックスをオンにすることで、データベースを目的の Azure SQL ターゲットに移行することを承認します。]</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">サーバー '{0}' の評価中に予期しないエラーが発生しました。{3}メッセージ: {1}{3}スタック {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">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">どの Azure SQL ターゲットが適切かわからない場合は、詳細情報を参照してください</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.error">
<source xml:lang="en">An error occurred while generating SKU recommendations for the server '{0}'.</source>
<target state="translated">サーバー `{0}` の SKU レコメンデーションの生成中にエラーが発生しました。</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.sku.error.noRecommendation">
<source xml:lang="en">No recommendation available</source>
<target state="translated">利用可能なレコメンデーションはありません</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">ソースのパフォーマンス特性を満たす SKU がないため、SKU のレコメンデーションは生成されませんでした。別のターゲット プラットフォームの選択、推奨事項パラメーターの調整、評価するデータベースの別のセットの選択、または推奨事項モデルの変更を試してください。</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">接続は成功しましたが、ターゲット データベースが見つかりませんでした。</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.connection.error">
<source xml:lang="en">Connection error: {0}</source>
<target state="translated">接続エラー: {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">接続に成功しました。ターゲット データベースが見つかりました: {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">Azure アカウントとターゲット {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">ログイン情報の取得中にエラーが発生しました: {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">データベース マッピング エラーです。ターゲット データベース '{0}' は、データベース '{1}' の移行ターゲットとして選択できません。 ターゲット データベース '{2}' は、データベース '{3}' の移行ターゲットとして既に選択されています。 別のターゲット データベースを選択してください。</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">データベース マッピング エラーです。移行するターゲット データベースがありません。 ターゲット サーバー接続を構成し、[接続] をクリックして、使用可能なデータベース移行ターゲットの一覧を収集してください。</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">' {1}' と '{2}' データベースの間で、データベース マッピング エラー (エラー コード:{0}) が見つかりました。ソース データベースの照合順序 '{3}' がターゲット データベースの照合順序 '{4}' と一致しません。ソース データベースと同じ照合順序のターゲット データベースを選択するか再作成してください。</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">データベース マッピング エラーです。ソース データベース '{0}' はターゲット データベースにマップされていません。 移行先のターゲット データベースを選択してください。</target>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.title">
<source xml:lang="en">Azure SQL target</source>
<target state="translated">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">詳細情報: 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">失敗したテーブルの移行を再試行しますか?</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">移行を再試行する前に、エラーを解決してください。</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">次のエラーで移行に失敗しました。</target>
</trans-unit>
<trans-unit id="total.databases.selected">
<source xml:lang="en">{0} of {1} databases selected</source>
<target state="translated">{1} 個中の {0} 個のデータベースが選択されています</target>
</trans-unit>
<trans-unit id="total.tables.selected.of.total">
<source xml:lang="en">{0} of {1}</source>
<target state="translated">{1}のうち {0}</target>
</trans-unit>
<trans-unit id="waitingForService">
<source xml:lang="en">Waiting for {0} component to start.</source>
<target state="translated">{0} コンポーネントの開始を待機しています。</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/dist/models/stateMachine" source-language="en" datatype="plaintext" target-language="ja">
<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">移行の開始中にエラーが発生しました: '{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">データベース {0} から {1} - {2} に移行を開始する</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/dist/service/serviceClient" source-language="en" datatype="plaintext" target-language="ja">
<body>
<trans-unit id="downloadingService">
<source xml:lang="en">Downloading {0}</source>
<target state="translated">{0} をダウンロードしています</target>
</trans-unit>
<trans-unit id="downloadingServiceComplete">
<source xml:lang="en">Done downloading {0}</source>
<target state="translated">{0} のダウンロードが完了しました</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">{0} のバイナリをダウンロードできませんでした。トラブルシューティングを行うには、次のリンクを使用します: {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">{0} のバイナリをダウンロードできませんでした。この [トラブルシューティングへのリンク]({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">{0} をダウンロードしています</target>
</trans-unit>
<trans-unit id="entryExtractedChannelMsg">
<source xml:lang="en">Extracted {0} ({1}/{2})</source>
<target state="translated">{0} ({1}/{2}) を抽出しました</target>
</trans-unit>
<trans-unit id="flatFileImport.serviceStartFailed">
<source xml:lang="en">Failed to start {0}: {1}</source>
<target state="translated">{0}を開始できませんでした: {1}</target>
</trans-unit>
<trans-unit id="installingService">
<source xml:lang="en">Installing {0} Service</source>
<target state="translated">{0} サービスをインストールしています</target>
</trans-unit>
<trans-unit id="installingServiceDetailed">
<source xml:lang="en">Installing {0} to {1}</source>
<target state="translated">{0} を {1} にインストールしています</target>
</trans-unit>
<trans-unit id="serviceInstalled">
<source xml:lang="en">Installed {0}</source>
<target state="translated">{0} がインストールされました</target>
</trans-unit>
<trans-unit id="serviceStarted">
<source xml:lang="en">{0} Started</source>
<target state="translated">{0} が開始されました</target>
</trans-unit>
<trans-unit id="serviceStarting">
<source xml:lang="en">Starting {0}</source>
<target state="translated">{0} を開始しています</target>
</trans-unit>
</body>
</file>
<file original="extensions/sql-migration/package" source-language="en" datatype="plaintext" target-language="ja">
<body>
<trans-unit id="cancel-migration-menu">
<source xml:lang="en">Cancel migration</source>
<target state="translated">移行のキャンセル</target>
</trans-unit>
<trans-unit id="complete-cutover-menu">
<source xml:lang="en">Complete cutover</source>
<target state="translated">一括移行を完了する</target>
</trans-unit>
<trans-unit id="copy-migration-menu">
<source xml:lang="en">Copy migration details</source>
<target state="translated">移行の詳細をコピー</target>
</trans-unit>
<trans-unit id="database-details-menu">
<source xml:lang="en">Database details</source>
<target state="translated">データベースの詳細</target>
</trans-unit>
<trans-unit id="delete-migration-menu">
<source xml:lang="en">Delete migration</source>
<target state="translated">移行の削除</target>
</trans-unit>
<trans-unit id="description">
<source xml:lang="en">Azure SQL migration description</source>
<target state="translated">Azure SQL の移行の説明</target>
</trans-unit>
<trans-unit id="displayName">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Azure SQL の移行</target>
</trans-unit>
<trans-unit id="migration-command-category">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">Azure SQL の移行</target>
</trans-unit>
<trans-unit id="migration-context-menu-category">
<source xml:lang="en">Migration Context Menu</source>
<target state="translated">移行コンテキスト メニュー</target>
</trans-unit>
<trans-unit id="migration-dashboard-tasks">
<source xml:lang="en">Migration Tasks</source>
<target state="translated">移行タスク</target>
</trans-unit>
<trans-unit id="migration-dashboard-title">
<source xml:lang="en">Azure SQL Migration</source>
<target state="translated">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">Azure SQL 移行ノートブックを開く</target>
</trans-unit>
<trans-unit id="new-support-request-command">
<source xml:lang="en">New support request</source>
<target state="translated">新しいサポート リクエスト</target>
</trans-unit>
<trans-unit id="refresh-migrations-command">
<source xml:lang="en">Refresh</source>
<target state="translated">最新の情報に更新</target>
</trans-unit>
<trans-unit id="retry-migration-menu">
<source xml:lang="en">Retry migration</source>
<target state="translated">移行の再試行</target>
</trans-unit>
<trans-unit id="send-feedback-command">
<source xml:lang="en">Feedback</source>
<target state="translated">フィードバック</target>
</trans-unit>
<trans-unit id="start-migration-command">
<source xml:lang="en">Migrate to Azure SQL</source>
<target state="translated">Azure SQLへの移行</target>
</trans-unit>
<trans-unit id="view-service-menu">
<source xml:lang="en">Database Migration Service details</source>
<target state="translated">Database Migration Service の詳細</target>
</trans-unit>
<trans-unit id="view-target-menu">
<source xml:lang="en">Azure SQL Target details</source>
<target state="translated">Azure SQL ターゲットの名前</target>
</trans-unit>
</body>
</file>
</xliff>