updates to xlfs in sql-migration, database-projects, data-workspace (#16771)

This commit is contained in:
Alex Ma
2021-08-13 11:42:25 -07:00
committed by GitHub
parent 941998bee6
commit 21a1db1045
3 changed files with 120 additions and 0 deletions

View File

@@ -25,6 +25,9 @@
<trans-unit id="sqlDatabaseProjects.publish">
<source xml:lang="en">Publish</source>
</trans-unit>
<trans-unit id="sqlDatabaseProjects.deployLocal">
<source xml:lang="en">Deploy</source>
</trans-unit>
<trans-unit id="sqlDatabaseProjects.createProjectFromDatabase">
<source xml:lang="en">Create Project From Database</source>
</trans-unit>
@@ -352,6 +355,105 @@
<trans-unit id="nameMustNotBeEmpty">
<source xml:lang="en">Name must not be empty</source>
</trans-unit>
<trans-unit id="selectDeployOption">
<source xml:lang="en">Select where to deploy the project to</source>
</trans-unit>
<trans-unit id="deployToExistingServer">
<source xml:lang="en">Deploy to existing server</source>
</trans-unit>
<trans-unit id="deployToDockerContainer">
<source xml:lang="en">Deploy to docker container</source>
</trans-unit>
<trans-unit id="enterPortNumber">
<source xml:lang="en">Enter port number or press enter to use the default value</source>
</trans-unit>
<trans-unit id="enterConnectionStringEnvName">
<source xml:lang="en">Enter connection string environment variable name</source>
</trans-unit>
<trans-unit id="enterConnectionStringTemplate">
<source xml:lang="en">Enter connection string template</source>
</trans-unit>
<trans-unit id="enterPassword">
<source xml:lang="en">Enter password or press enter to use the generated password</source>
</trans-unit>
<trans-unit id="portMustNotBeNumber">
<source xml:lang="en">Port must a be number</source>
</trans-unit>
<trans-unit id="valueCannotBeEmpty">
<source xml:lang="en">Value cannot be empty</source>
</trans-unit>
<trans-unit id="enterConnStringTemplateDescription">
<source xml:lang="en">Enter a template for SQL connection string</source>
</trans-unit>
<trans-unit id="appSettingPrompt">
<source xml:lang="en">Would you like to update Azure Function local.settings.json with the new connection string?</source>
</trans-unit>
<trans-unit id="enterConnectionStringEnvNameDescription">
<source xml:lang="en">Enter environment variable for SQL connection string</source>
</trans-unit>
<trans-unit id="deployDbTaskName">
<source xml:lang="en">Deploying SQL Db Project Locally</source>
</trans-unit>
<trans-unit id="deployProjectSucceed">
<source xml:lang="en">Database project deployed successfully</source>
</trans-unit>
<trans-unit id="cleaningDockerImagesMessage">
<source xml:lang="en">Cleaning existing deployments...</source>
</trans-unit>
<trans-unit id="creatingDeploymentSettingsMessage">
<source xml:lang="en">Creating deployment settings ...</source>
</trans-unit>
<trans-unit id="runningDockerMessage">
<source xml:lang="en">Building and running the docker container ...</source>
</trans-unit>
<trans-unit id="dockerContainerNotRunningErrorMessage">
<source xml:lang="en">Docker container is not running</source>
</trans-unit>
<trans-unit id="dockerContainerFailedToRunErrorMessage">
<source xml:lang="en">Failed to run the docker container</source>
</trans-unit>
<trans-unit id="connectingToSqlServerOnDockerMessage">
<source xml:lang="en">Connecting to SQL Server on Docker</source>
</trans-unit>
<trans-unit id="deployProjectFailedMessage">
<source xml:lang="en">Failed to open a connection to the deployed database'</source>
</trans-unit>
<trans-unit id="taskFailedError.error">
<source xml:lang="en">Failed to complete task '{0}'. Error: {1}</source>
</trans-unit>
<trans-unit id="deployProjectFailed">
<source xml:lang="en">Failed to deploy project. Check output pane for more details. {0}</source>
</trans-unit>
<trans-unit id="deployAppSettingUpdateFailed">
<source xml:lang="en">Failed to update app setting '{0}'</source>
</trans-unit>
<trans-unit id="deployAppSettingUpdating">
<source xml:lang="en">Updating app setting: '{0}'</source>
</trans-unit>
<trans-unit id="connectionFailedError">
<source xml:lang="en">Connection failed error: '{0}'</source>
</trans-unit>
<trans-unit id="dockerContainerCreatedMessage">
<source xml:lang="en">Docker created id: '{0}'</source>
</trans-unit>
<trans-unit id="dockerLogMessage">
<source xml:lang="en">Docker logs: '{0}'</source>
</trans-unit>
<trans-unit id="retryWaitMessage">
<source xml:lang="en">Waiting for {0} seconds before another attempt for operation '{1}'</source>
</trans-unit>
<trans-unit id="retryRunMessage">
<source xml:lang="en">Running operation '{2}' Attempt {0} of {1}</source>
</trans-unit>
<trans-unit id="retrySucceedMessage">
<source xml:lang="en">Operation '{0}' completed successfully. Result: {1}</source>
</trans-unit>
<trans-unit id="retryFailedMessage">
<source xml:lang="en">Operation '{0}' failed. Re-trying... Current Result: {1}. Error: '{2}'</source>
</trans-unit>
<trans-unit id="retryMessage">
<source xml:lang="en">Operation '{0}' failed. Re-trying... Error: '{1}'</source>
</trans-unit>
<trans-unit id="addDatabaseReferencedialogName">
<source xml:lang="en">Add database reference</source>
</trans-unit>