|
17 | 17 | "loc.input.label.SlotName": "Slot", |
18 | 18 | "loc.input.help.SlotName": "Enter or Select an existing Slot other than the Production slot.", |
19 | 19 | "loc.input.label.VirtualApplication": "Virtual application", |
20 | | - "loc.input.help.VirtualApplication": "Specify the name of the Virtual application that has been configured in the Azure portal. The option is not required for deployments to the website root.", |
| 20 | + "loc.input.help.VirtualApplication": "Specify the name of the Virtual application that has been configured in the Azure portal. The option is not required for deployments to the App Service root.", |
21 | 21 | "loc.input.label.Package": "Package or folder", |
22 | 22 | "loc.input.help.Package": "Folder or file path to the App Service package. Variables ( [Build](https://www.visualstudio.com/docs/build/define/variables) | [Release](https://www.visualstudio.com/docs/release/author-release-definition/understanding-tasks#predefvariables)), wild cards are supported. <br/> For example, $(System.DefaultWorkingDirectory)/\\*\\*/\\*.zip.", |
23 | 23 | "loc.input.label.WebAppUri": "App Service URL", |
24 | 24 | "loc.input.help.WebAppUri": "Specify a name for the output variable that is generated for the URL of the Azure App Service. The variable can be consumed in subsequent tasks.", |
25 | 25 | "loc.input.label.TakeAppOfflineFlag": "Take App Offline", |
26 | | - "loc.input.help.TakeAppOfflineFlag": "Select the option to take the AzureRM Web App offline by placing an app_offline.htm file in the root directory of the Web App before the sync operation begins. The file will be removed after the sync operation completes successfully.", |
| 26 | + "loc.input.help.TakeAppOfflineFlag": "Select the option to take the Azure App Service offline by placing an app_offline.htm file in the root directory of the App Service before the sync operation begins. The file will be removed after the sync operation completes successfully.", |
27 | 27 | "loc.input.label.UseWebDeploy": "Publish using Web Deploy", |
28 | 28 | "loc.input.help.UseWebDeploy": "Publish using Web Deploy options are supported only when using Windows agent. On other platforms, the task relies on [Kudu REST APIs](https://github.com/projectkudu/kudu/wiki/REST-API) to deploy the Azure App Service, and following options are not supported", |
29 | 29 | "loc.input.label.SetParametersFile": "SetParameters file", |
30 | 30 | "loc.input.help.SetParametersFile": "Optional: location of the SetParameters.xml file to use.", |
31 | 31 | "loc.input.label.RemoveAdditionalFilesFlag": "Remove additional files at destination", |
32 | | - "loc.input.help.RemoveAdditionalFilesFlag": "Select the option to delete files on the Azure App Service that have no matching files in the App Service zip package.", |
| 32 | + "loc.input.help.RemoveAdditionalFilesFlag": "Select the option to delete files on the Azure App Service that have no matching files in the App Service package or folder.", |
33 | 33 | "loc.input.label.ExcludeFilesFromAppDataFlag": "Exclude files from the App_Data folder", |
34 | 34 | "loc.input.help.ExcludeFilesFromAppDataFlag": "Select the option to prevent files in the App_Data folder from being deployed to the Azure App Service.", |
35 | 35 | "loc.input.label.AdditionalArguments": "Additional arguments", |
36 | | - "loc.input.help.AdditionalArguments": "Additional Web Deploy arguments that will be applied when deploying the Azure App Service like,-disableLink:AppPoolExtension -disableLink:ContentExtension.", |
| 36 | + "loc.input.help.AdditionalArguments": "Additional Web Deploy arguments following the syntax -key:value .<br />These will be applied when deploying the Azure App Service. Example: -disableLink:AppPoolExtension -disableLink:ContentExtension.<br />For more examples of Web Deploy operation settings, refer to [this](https://go.microsoft.com/fwlink/?linkid=838471).", |
37 | 37 | "loc.input.label.RenameFilesFlag": "Rename locked files", |
38 | | - "loc.input.help.RenameFilesFlag": "Select the option to enable msdeploy flag MSDEPLOY_RENAME_FILES_FLAG in Azure web site's appsetting. The option if set enables msdeploy to rename locked files that are locked during app deployment", |
39 | | - "loc.input.label.XmlTransformation": "XML Transformation", |
40 | | - "loc.input.help.XmlTransformation": "The config transfoms will be run for `*.Release.config` and `*.<EnvironmentName>.config` on the `*.config file`.<br/> Config transforms will be run prior to the Variable Substitution.", |
41 | | - "loc.input.label.XmlVariableSubstitution": "XML Variable Substitution", |
| 38 | + "loc.input.help.RenameFilesFlag": "Select the option to enable msdeploy flag MSDEPLOY_RENAME_FILES_FLAG in Azure App Service application settings. The option if set enables msdeploy to rename locked files that are locked during app deployment", |
| 39 | + "loc.input.label.XmlTransformation": "XML transformation", |
| 40 | + "loc.input.help.XmlTransformation": "The config transfoms will be run for `*.Release.config` and `*.<EnvironmentName>.config` on the `*.config file`.<br/> Config transforms will be run prior to the Variable Substitution.<br/>XML transformations are supported only for Windows platform.", |
| 41 | + "loc.input.label.XmlVariableSubstitution": "XML variable substitution", |
42 | 42 | "loc.input.help.XmlVariableSubstitution": "Variables defined in the Build or Release Definition will be matched against the 'key' or 'name' entries in the appSettings, applicationSettings, and connectionStrings sections of any config file. Variable Substitution is run after config transforms. <br/><br/> Note: If same variables are defined in the Release Definition and in the Environment, then the Environment variables will supersede the Release Definition variables.<br/>", |
43 | | - "loc.input.label.JSONFiles": "JSON Variable Substitution", |
| 43 | + "loc.input.label.JSONFiles": "JSON variable substitution", |
44 | 44 | "loc.input.help.JSONFiles": "Provide new line separated list of JSON files to substitute the variable values. Files names are to be provided relative to the root folder. <br/> To substitute JSON variables that are nested or hierarchical, specify them using JSONPath expressions. <br/> <br/> For example, to replace the value of ‘ConnectionString’ in the sample below, you need to define a variable as ‘Data.DefaultConnection.ConnectionString’ in the build/release definition (or release definition’s environment). <br/> {<br/> \"Data\": {<br/> \"DefaultConnection\": {<br/> \"ConnectionString\": \"Server=(localdb)\\SQLEXPRESS;Database=MyDB;Trusted_Connection=True\"<br/> }<br/> }<br/> }<br/> Variable Substitution is run after configuration transforms. <br/><br/> Note: Build/Release’s system definition variables are excluded in substitution", |
45 | | - "loc.messages.Invalidwebapppackageorfolderpathprovided": "Invalid webapp package or folder path provided: %s", |
| 45 | + "loc.messages.Invalidwebapppackageorfolderpathprovided": "Invalid App Service package or folder path provided: %s", |
46 | 46 | "loc.messages.SetParamFilenotfound0": "Set parameters file not found: %s", |
47 | 47 | "loc.messages.XDTTransformationsappliedsuccessfully": "XDT Transformations applied successfully", |
48 | 48 | "loc.messages.GotconnectiondetailsforazureRMWebApp0": "Got connection details for Azure App Service:'%s'", |
49 | | - "loc.messages.ErrorNoSuchDeployingMethodExists": "Error : No Such Deploying Method Exists", |
50 | | - "loc.messages.UnabletoretrieveconnectiondetailsforazureRMWebApp": "Unable to retrieve connectiondetails for Azure App Service : %s. Status Code: %s (%s)", |
| 49 | + "loc.messages.ErrorNoSuchDeployingMethodExists": "Error : No such deploying method exists", |
| 50 | + "loc.messages.UnabletoretrieveconnectiondetailsforazureRMWebApp": "Unable to retrieve connection details for Azure App Service : %s. Status Code: %s (%s)", |
51 | 51 | "loc.messages.UnabletoretrieveWebAppID": "Unable to retrieve connection details for Azure App Service:'%s'. Status Code: %s", |
52 | 52 | "loc.messages.CouldnotfetchacccesstokenforAzureStatusCode": "Could not fetch acccess token for Azure. Status Code: %s (%s)", |
53 | 53 | "loc.messages.Successfullyupdateddeploymenthistory": "Successfully updated deployment History at %s", |
54 | 54 | "loc.messages.Failedtoupdatedeploymenthistory": "Failed to update deployment history.", |
55 | 55 | "loc.messages.WARNINGCannotupdatedeploymentstatusSCMendpointisnotenabledforthiswebsite": "WARNING : Cannot update deployment status : SCM endpoint is not enabled for this website", |
56 | | - "loc.messages.UnabletoretrieveAzureRMWebAppConfigDetails": "Error Occurred : [Status Code : '%s']", |
57 | | - "loc.messages.UnabletoretrieveAzureRMWebAppAppSettings": "Error Occurred : [Status Code : '%s', Error Message: '%s']", |
58 | | - "loc.messages.UnabletoupdateAzureRMWebAppAppSettings": "Error Occurred : [Status Code : '%s', Error Message: '%s']", |
| 56 | + "loc.messages.Unabletoretrievewebconfigdetails": "Unable to retrieve App Service configuration details.[Status Code: '%s', Error Message: '%s']", |
| 57 | + "loc.messages.Unabletoretrievewebappsettings": "Unable to retrieve App Service application settings. [Status Code: '%s', Error Message: '%s']", |
| 58 | + "loc.messages.Unabletoupdatewebappsettings": "Unable to update App service application settings. [Status Code: '%s', Error Message: '%s']", |
59 | 59 | "loc.messages.CannotupdatedeploymentstatusuniquedeploymentIdCannotBeRetrieved": "Cannot update deployment status : Unique Deployment ID cannot be retrieved", |
60 | 60 | "loc.messages.WebappsuccessfullypublishedatUrl0": "App Service successfully deployed at url %s", |
61 | 61 | "loc.messages.Failedtodeploywebsite": "Failed to deploy website.", |
62 | 62 | "loc.messages.Runningcommand": "Running command: %s", |
63 | 63 | "loc.messages.Deployingwebapplicationatvirtualpathandphysicalpath": "Deploying web package : %s at virtual path (physical path) : %s (%s)", |
64 | 64 | "loc.messages.Successfullydeployedpackageusingkuduserviceat": "Successfully deployed package %s using kudu service at %s", |
65 | | - "loc.messages.Failedtodeploywebapppackageusingkuduservice": "Failed to deploy webapp package using kudu service : %s", |
66 | | - "loc.messages.Unabletodeploywebappresponsecode": "Unable to deploy webapp due to error code : %s", |
67 | | - "loc.messages.MSDeploygeneratedpackageareonlysupportedforWindowsplatform": "MSDeploy generated package are only supported for Windows platform.", |
| 65 | + "loc.messages.Failedtodeploywebapppackageusingkuduservice": "Failed to deploy App Service package using kudu service : %s", |
| 66 | + "loc.messages.Unabletodeploywebappresponsecode": "Unable to deploy App Service due to error code : %s", |
| 67 | + "loc.messages.MSDeploygeneratedpackageareonlysupportedforWindowsplatform": "MSDeploy generated packages are only supported for Windows platform.", |
68 | 68 | "loc.messages.UnsupportedinstalledversionfoundforMSDeployversionshouldbealteast3orabove": "Unsupported installed version: %s found for MSDeploy. version should be alteast 3 or above", |
69 | 69 | "loc.messages.UnabletofindthelocationofMSDeployfromregistryonmachineError": "Unable to find the location of MS Deploy from registry on machine (Error : %s)", |
70 | 70 | "loc.messages.Nopackagefoundwithspecifiedpattern": "No package found with specified pattern", |
71 | | - "loc.messages.MorethanonepackagematchedwithspecifiedpatternPleaserestrainthesearchpatern": "More than one package matched with specified pattern. Please restrain the search patern.", |
| 71 | + "loc.messages.MorethanonepackagematchedwithspecifiedpatternPleaserestrainthesearchpatern": "More than one package matched with specified pattern. Please restrain the search pattern.", |
72 | 72 | "loc.messages.Trytodeploywebappagainwithappofflineoptionselected": "Try to deploy app service again with Take application offline option selected.", |
73 | 73 | "loc.messages.Trytodeploywebappagainwithrenamefileoptionselected": "Try to deploy app service again with Rename locked files option selected.", |
74 | 74 | "loc.messages.NOJSONfilematchedwithspecificpattern": "NO JSON file matched with specific pattern", |
75 | 75 | "loc.messages.JSONvariablesubstitutioncanonlybeappliedforJSONfiles": "JSON variable substitution can only be applied for JSON files", |
76 | | - "loc.messages.Configfiledoesntexists": "Config file %s doesn't exist.", |
| 76 | + "loc.messages.Configfiledoesntexists": "Configuration file %s doesn't exist.", |
77 | 77 | "loc.messages.Failedtowritetoconfigfilewitherror": "Failed to write to config file %s with error : %s", |
78 | | - "loc.messages.AppOfflineModeenabled": "App Offline Mode enabled.", |
| 78 | + "loc.messages.AppOfflineModeenabled": "App offline mode enabled.", |
79 | 79 | "loc.messages.Failedtoenableappofflinemode": "Failed to enable app offline mode. Status Code: %s (%s)", |
80 | | - "loc.messages.AppOflineModedisabled": "App Offline Mode disabled.", |
81 | | - "loc.messages.FailedtodisableAppOfflineMode": "Failed to disable App Offline Mode. Status Code: %s (%s)", |
82 | | - "loc.messages.CannotPerformXdtTransformationOnNonWindowsPlatform": "Cannot Perform XDT Transformations on a Non-Windows platform.", |
83 | | - "loc.messages.XdtTransformationErrorWhileTransforming": "XDT Transformation Error while transforming %s using %s.", |
| 80 | + "loc.messages.AppOflineModedisabled": "App offline mode disabled.", |
| 81 | + "loc.messages.FailedtodisableAppOfflineMode": "Failed to disable App offline mode. Status Code: %s (%s)", |
| 82 | + "loc.messages.CannotPerformXdtTransformationOnNonWindowsPlatform": "Cannot perform XML transformations on a non-Windows platform.", |
| 83 | + "loc.messages.XdtTransformationErrorWhileTransforming": "XML transformation error while transforming %s using %s.", |
84 | 84 | "loc.messages.PublishusingwebdeployoptionsaresupportedonlywhenusingWindowsagent": "Publish using webdeploy options are supported only when using Windows agent", |
85 | | - "loc.messages.WebAppDoesntExist": "Webapp '%s' doesn't exist. Webapp should exist before deployment.", |
86 | | - "loc.messages.EncodeNotSupported": "Detected file encoding of the file %s as %s. Variable substitution and Transformation is not supported with file encoding %s. Supported encodings are UTF-8 and UTF-16 LE.", |
| 85 | + "loc.messages.WebAppDoesntExist": "App Service '%s' doesn't exist. App Service should exist before deployment.", |
| 86 | + "loc.messages.EncodeNotSupported": "Detected file encoding of the file %s as %s. Variable substitution is not supported with file encoding %s. Supported encodings are UTF-8 and UTF-16 LE.", |
87 | 87 | "loc.messages.UnknownFileEncodeError": "Unable to detect encoding of the file %s (typeCode: %s). Supported encodings are UTF-8 and UTF-16 LE.", |
88 | 88 | "loc.messages.ShortFileBufferError": "File buffer is too short to detect encoding type : %s", |
89 | | - "loc.messages.FailedToUpdateAzureRMWebAppConfigDetails": "Failed to update Web App config details. Error: %s", |
90 | | - "loc.messages.SuccessfullyUpdatedAzureRMWebAppConfigDetails": "Successfully updated Web App service configuration details", |
| 89 | + "loc.messages.FailedToUpdateAzureRMWebAppConfigDetails": "Failed to update App Service configuration details. Error: %s", |
| 90 | + "loc.messages.SuccessfullyUpdatedAzureRMWebAppConfigDetails": "Successfully updated App Service configuration details", |
91 | 91 | "loc.messages.RequestedURLforkuduphysicalpath": "Requested URL for kudu physical path : %s", |
92 | 92 | "loc.messages.Physicalpathalreadyexists": "Physical path '%s' already exists", |
93 | 93 | "loc.messages.KuduPhysicalpathCreatedSuccessfully": "Kudu physical path created successfully : %s", |
|
0 commit comments