[Loc] changes made to xlfs for 2-1-2023 (#21810)

This commit is contained in:
Alex Ma
2023-02-01 17:05:14 -08:00
committed by GitHub
parent cce794dd14
commit 1071c6dfff
3 changed files with 30 additions and 3 deletions

View File

@@ -268,6 +268,9 @@
<trans-unit id="deleteReferenceConfirmation">
<source xml:lang="en">Are you sure you want to delete the reference to {0}?</source>
</trans-unit>
<trans-unit id="deleteSqlCmdVariableConfirmation">
<source xml:lang="en">Are you sure you want to delete the SQLCMD Variable '{0}'?</source>
</trans-unit>
<trans-unit id="deployAppSettingUpdateFailed">
<source xml:lang="en">Failed to update app setting '{0}'</source>
</trans-unit>
@@ -376,6 +379,12 @@
<trans-unit id="enterNewDatabaseName">
<source xml:lang="en">Enter new database name</source>
</trans-unit>
<trans-unit id="enterNewSqlCmdVariableDefaultValue">
<source xml:lang="en">Enter default value for SQLCMD variable '{0}'</source>
</trans-unit>
<trans-unit id="enterNewSqlCmdVariableName">
<source xml:lang="en">Enter new SQLCMD Variable name</source>
</trans-unit>
<trans-unit id="enterNewValueForVar">
<source xml:lang="en">Enter new value for variable '{0}'</source>
</trans-unit>
@@ -915,6 +924,9 @@
<trans-unit id="sqlDatabaseProjects.outputChannel">
<source xml:lang="en">Database Projects</source>
</trans-unit>
<trans-unit id="sqlcmdVariableAlreadyExists">
<source xml:lang="en">A SQLCMD Variable with the same name already exists in this project</source>
</trans-unit>
<trans-unit id="sqlcmdVariablesNodeName">
<source xml:lang="en">SQLCMD Variables</source>
</trans-unit>
@@ -1041,6 +1053,9 @@
<trans-unit id="sqlDatabaseProjects.addExistingItem">
<source xml:lang="en">Add Existing Item...</source>
</trans-unit>
<trans-unit id="sqlDatabaseProjects.addSqlCmdVariable">
<source xml:lang="en">Add SQLCMD Variable</source>
</trans-unit>
<trans-unit id="sqlDatabaseProjects.autorestSqlVersion">
<source xml:lang="en">Which version of Autorest.Sql to use from NPM. Latest will be used if not set.</source>
</trans-unit>
@@ -1074,6 +1089,9 @@
<trans-unit id="sqlDatabaseProjects.dotnetInstallLocation">
<source xml:lang="en">Full path to .NET SDK on the machine. For example, if dotnet.exe is located at C:\folder1\dotnet\dotnet.exe, set the path for this setting to C:\folder1\dotnet</source>
</trans-unit>
<trans-unit id="sqlDatabaseProjects.edit">
<source xml:lang="en">Edit</source>
</trans-unit>
<trans-unit id="sqlDatabaseProjects.editProjectFile">
<source xml:lang="en">Edit .sqlproj File</source>
</trans-unit>

View File

@@ -2437,16 +2437,16 @@ This may take some time.</source>
<source xml:lang="en">Error getting login information: {0}</source>
</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 '${targetDatabaseName}' is already selected as a migration target for database '{2}'. Please select a different target database.</source>
<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>
</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>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.source.collation.error">
<source xml:lang="en">A mapping error was found between '{0}' and '{1}' databases. The source database collation '{2}' does not match the target database collation '{3}'. Please select or re-create a target database with the same collation as the source database.</source>
<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>
</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>
<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>
</trans-unit>
<trans-unit id="sql.migration.wizard.target.title">
<source xml:lang="en">Azure SQL target</source>

View File

@@ -5557,6 +5557,12 @@ Error: {1}</source>
</trans-unit>
</body></file>
<file original="src/sql/workbench/services/connection/browser/passwordChangeDialog" source-language="en" datatype="plaintext"><body>
<trans-unit id="passwordChangeDialog.Message1">
<source xml:lang="en">Password must be changed for '{0}' to continue logging into '{1}'.</source>
</trans-unit>
<trans-unit id="passwordChangeDialog.Message2">
<source xml:lang="en">Please enter a new password below:</source>
</trans-unit>
<trans-unit id="passwordChangeDialog.cancel">
<source xml:lang="en">Cancel</source>
</trans-unit>
@@ -5581,6 +5587,9 @@ Error: {1}</source>
<trans-unit id="passwordChangeDialog.ok">
<source xml:lang="en">OK</source>
</trans-unit>
<trans-unit id="passwordChangeDialog.passwordChangeInProgress">
<source xml:lang="en">Password change already in progress</source>
</trans-unit>
<trans-unit id="passwordChangeDialog.title">
<source xml:lang="en">Change Password</source>
</trans-unit>