Skip to content

Commit d951723

Browse files
authored
Update localization [08/07/24] (#20263)
* Update loc folders case for AzureKeyVaultV2 * Update _generated * Update PackerBuildV1 loc
1 parent 9a8b216 commit d951723

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+643
-752
lines changed

Tasks/AzureKeyVaultV2/package-lock.json

Lines changed: 32 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tasks/AzureKeyVaultV2/task.json

Lines changed: 126 additions & 126 deletions
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,132 @@
11
{
2-
"id": "1E244D32-2DD4-4165-96FB-B7441CA9331E",
3-
"name": "AzureKeyVault",
4-
"friendlyName": "Azure Key Vault",
5-
"description": "Download Azure Key Vault secrets",
6-
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/deploy/azure-key-vault",
7-
"helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?linkid=848891)",
8-
"category": "Deploy",
9-
"releaseNotes": "What's new in Version 2.0: <br/>&nbsp;Added support for %3B, %5D in secrets",
10-
"visibility": [
11-
"Build",
12-
"Release"
13-
],
14-
"author": "Microsoft Corporation",
15-
"version": {
16-
"Major": 2,
17-
"Minor": 243,
18-
"Patch": 2
19-
},
20-
"demands": [],
21-
"minimumAgentVersion": "2.182.1",
22-
"inputs": [
23-
{
24-
"name": "ConnectedServiceName",
25-
"aliases": [
26-
"azureSubscription"
27-
],
28-
"type": "connectedService:AzureRM",
29-
"label": "Azure subscription",
30-
"defaultValue": "",
31-
"required": true,
32-
"helpMarkDown": "Select the Azure subscription for the key vault"
2+
"id": "1E244D32-2DD4-4165-96FB-B7441CA9331E",
3+
"name": "AzureKeyVault",
4+
"friendlyName": "Azure Key Vault",
5+
"description": "Download Azure Key Vault secrets",
6+
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/deploy/azure-key-vault",
7+
"helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?linkid=848891)",
8+
"category": "Deploy",
9+
"releaseNotes": "What's new in Version 2.0: <br/>&nbsp;Added support for %3B, %5D in secrets",
10+
"visibility": [
11+
"Build",
12+
"Release"
13+
],
14+
"author": "Microsoft Corporation",
15+
"version": {
16+
"Major": 2,
17+
"Minor": 244,
18+
"Patch": 0
3319
},
34-
{
35-
"name": "KeyVaultName",
36-
"type": "pickList",
37-
"label": "Key vault",
38-
"required": true,
39-
"helpMarkDown": "Provide the name of an existing key vault",
40-
"properties": {
41-
"EditableOptions": "True"
42-
}
20+
"demands": [],
21+
"minimumAgentVersion": "2.182.1",
22+
"inputs": [
23+
{
24+
"name": "ConnectedServiceName",
25+
"aliases": [
26+
"azureSubscription"
27+
],
28+
"type": "connectedService:AzureRM",
29+
"label": "Azure subscription",
30+
"defaultValue": "",
31+
"required": true,
32+
"helpMarkDown": "Select the Azure subscription for the key vault"
33+
},
34+
{
35+
"name": "KeyVaultName",
36+
"type": "pickList",
37+
"label": "Key vault",
38+
"required": true,
39+
"helpMarkDown": "Provide the name of an existing key vault",
40+
"properties": {
41+
"EditableOptions": "True"
42+
}
43+
},
44+
{
45+
"name": "SecretsFilter",
46+
"type": "string",
47+
"label": "Secrets filter",
48+
"defaultValue": "*",
49+
"required": true,
50+
"helpMarkDown": "Comma separated list of secret names or leave * to download all secrets from the selected key vault.",
51+
"properties": {
52+
"EditableOptions": "True"
53+
}
54+
},
55+
{
56+
"name": "RunAsPreJob",
57+
"type": "boolean",
58+
"label": "Make secrets available to whole job",
59+
"defaultValue": false,
60+
"required": true,
61+
"helpMarkDown": "Run the task before job execution begins. Exposes secrets to all tasks in the job, not just tasks that follow this one.",
62+
"properties": {
63+
"EditableOptions": "True"
64+
}
65+
}
66+
],
67+
"dataSourceBindings": [
68+
{
69+
"target": "KeyVaultName",
70+
"endpointId": "$(ConnectedServiceName)",
71+
"dataSourceName": "AzureKeyVaultsListV2",
72+
"resultTemplate": "{ \"Value\" : \"{{{name}}}\", \"DisplayValue\" : \"{{{name}}}\" }"
73+
}
74+
],
75+
"instanceNameFormat": "Azure Key Vault: $(KeyVaultName)",
76+
"prejobexecution": {
77+
"Node16": {
78+
"target": "runprejob.js",
79+
"argumentFormat": ""
80+
},
81+
"Node10": {
82+
"target": "runprejob.js"
83+
}
4384
},
44-
{
45-
"name": "SecretsFilter",
46-
"type": "string",
47-
"label": "Secrets filter",
48-
"defaultValue": "*",
49-
"required": true,
50-
"helpMarkDown": "Comma separated list of secret names or leave * to download all secrets from the selected key vault.",
51-
"properties": {
52-
"EditableOptions": "True"
53-
}
85+
"execution": {
86+
"Node16": {
87+
"target": "run.js",
88+
"argumentFormat": ""
89+
},
90+
"Node10": {
91+
"target": "run.js"
92+
}
5493
},
55-
{
56-
"name": "RunAsPreJob",
57-
"type": "boolean",
58-
"label": "Make secrets available to whole job",
59-
"defaultValue": false,
60-
"required": true,
61-
"helpMarkDown": "Run the task before job execution begins. Exposes secrets to all tasks in the job, not just tasks that follow this one.",
62-
"properties": {
63-
"EditableOptions": "True"
64-
}
94+
"messages": {
95+
"ClientIdCannotBeEmpty": "clientId must be a non empty string.",
96+
"DomainCannotBeEmpty": "domain must be a non empty string.",
97+
"SecretCannotBeEmpty": "secret must be a non empty string.",
98+
"armUrlCannotBeEmpty": "arm URL must be a non empty string.",
99+
"authorityUrlCannotBeEmpty": "authority must be a non empty string.",
100+
"CallbackCannotBeNull": "callback cannot be null.",
101+
"CredentialsCannotBeNull": "'credentials' cannot be null.",
102+
"SubscriptionIdCannotBeNull": "'subscriptionId' cannot be null.",
103+
"InvalidResponseLongRunningOperation": "Invalid response received for fetching status of a long running operation.",
104+
"TimeoutWhileWaiting": "Timed out while waiting",
105+
"ResourceGroupCannotBeNull": "resourceGroupName cannot be null or undefined and it must be of type string.",
106+
"ResourceGroupExceededLength": "\"resourceGroupName\" should satisfy the constraint - \"MaxLength\": 90",
107+
"ResourceGroupDeceededLength": "\"resourceGroupName\" should satisfy the constraint - \"MinLength\": 1",
108+
"ResourceGroupDoesntMatchPattern": "\"resourceGroupName\" should satisfy the constraint - \"Pattern\": /^[-\\w\\._\\(\\)]+$/",
109+
"AzKv_ConstructorFailed": "Azure key vault parameters initialization failed. Error: %s.",
110+
"SubscriptionIdLabel": "SubscriptionId: %s.",
111+
"KeyVaultNameLabel": "Key vault name: %s.",
112+
"DownloadingSecretsUsing": "Downloading secrets using: %s.",
113+
"GetSecretsFailed": "Get secrets failed. Error: %s.",
114+
"NoSecretsFound": "No secrets found in: %s",
115+
"NumberOfSecretsFound": "Number of secrets found in %s: %s",
116+
"NumberOfEnabledSecretsFound": "Number of enabled and unexpired secrets found in %s: %s",
117+
"DownloadingSecretValue": "Downloading secret value for: %s.",
118+
"AccessDeniedError": "%s. The specified Azure service connection needs to have Get, List secret management permissions on the selected key vault. To set these permissions, download the ProvisionKeyVaultPermissions.ps1 script from build/release logs and execute it, or set them from the Azure portal.",
119+
"GetSecretValueFailed": "Get secret value failed for: %s. Error: %s.",
120+
"ConflictingVariableFound": "Variable with name %s is defined in both environment and key vault",
121+
"GetSecretFailedBecauseOfInvalidCharacters": "Secret not found: %s. Secret name must be a string 1-127 characters in length containing only -, 0-9, a-z and A-Z.",
122+
"UploadingAttachment": "Uploading %s as attachment",
123+
"CouldNotWriteToFile": "Could not save content to file. Failed with an error %s",
124+
"CouldNotMaskSecret": "%s value has regular expressions hence could not mask completely",
125+
"CouldNotFetchAccessTokenforAzureStatusCode": "Could not fetch access token for Azure. Status code: %s, status message: %s",
126+
"CouldNotFetchAccessTokenforMSIDueToMSINotConfiguredProperlyStatusCode": "Could not fetch access token for Managed Service Principal. Please configure Managed Service Identity (MSI) for virtual machine 'https://aka.ms/azure-msi-docs'. Status code: %s, status message: %s",
127+
"CouldNotFetchAccessTokenforMSIStatusCode": "Could not fetch access token for Managed Service Principal. Status code: %s, status message: %s",
128+
"RetryingWithVaultResourceIdFromResponse": "Retrying with vault resource Id reterieved from response : %s",
129+
"ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired.",
130+
"InvalidKeyVaultName": "%s is an invalid KeyVault name."
65131
}
66-
],
67-
"dataSourceBindings": [
68-
{
69-
"target": "KeyVaultName",
70-
"endpointId": "$(ConnectedServiceName)",
71-
"dataSourceName": "AzureKeyVaultsListV2",
72-
"resultTemplate": "{ \"Value\" : \"{{{name}}}\", \"DisplayValue\" : \"{{{name}}}\" }"
73-
}
74-
],
75-
"instanceNameFormat": "Azure Key Vault: $(KeyVaultName)",
76-
"prejobexecution": {
77-
"Node16": {
78-
"target": "runprejob.js",
79-
"argumentFormat": ""
80-
},
81-
"Node10": {
82-
"target": "runprejob.js"
83-
}
84-
},
85-
"execution": {
86-
"Node16": {
87-
"target": "run.js",
88-
"argumentFormat": ""
89-
},
90-
"Node10": {
91-
"target": "run.js"
92-
}
93-
},
94-
"messages": {
95-
"ClientIdCannotBeEmpty": "clientId must be a non empty string.",
96-
"DomainCannotBeEmpty": "domain must be a non empty string.",
97-
"SecretCannotBeEmpty": "secret must be a non empty string.",
98-
"armUrlCannotBeEmpty": "arm URL must be a non empty string.",
99-
"authorityUrlCannotBeEmpty": "authority must be a non empty string.",
100-
"CallbackCannotBeNull": "callback cannot be null.",
101-
"CredentialsCannotBeNull": "'credentials' cannot be null.",
102-
"SubscriptionIdCannotBeNull": "'subscriptionId' cannot be null.",
103-
"InvalidResponseLongRunningOperation": "Invalid response received for fetching status of a long running operation.",
104-
"TimeoutWhileWaiting": "Timed out while waiting",
105-
"ResourceGroupCannotBeNull": "resourceGroupName cannot be null or undefined and it must be of type string.",
106-
"ResourceGroupExceededLength": "\"resourceGroupName\" should satisfy the constraint - \"MaxLength\": 90",
107-
"ResourceGroupDeceededLength": "\"resourceGroupName\" should satisfy the constraint - \"MinLength\": 1",
108-
"ResourceGroupDoesntMatchPattern": "\"resourceGroupName\" should satisfy the constraint - \"Pattern\": /^[-\\w\\._\\(\\)]+$/",
109-
"AzKv_ConstructorFailed": "Azure key vault parameters initialization failed. Error: %s.",
110-
"SubscriptionIdLabel": "SubscriptionId: %s.",
111-
"KeyVaultNameLabel": "Key vault name: %s.",
112-
"DownloadingSecretsUsing": "Downloading secrets using: %s.",
113-
"GetSecretsFailed": "Get secrets failed. Error: %s.",
114-
"NoSecretsFound": "No secrets found in: %s",
115-
"NumberOfSecretsFound": "Number of secrets found in %s: %s",
116-
"NumberOfEnabledSecretsFound": "Number of enabled and unexpired secrets found in %s: %s",
117-
"DownloadingSecretValue": "Downloading secret value for: %s.",
118-
"AccessDeniedError": "%s. The specified Azure service connection needs to have Get, List secret management permissions on the selected key vault. To set these permissions, download the ProvisionKeyVaultPermissions.ps1 script from build/release logs and execute it, or set them from the Azure portal.",
119-
"GetSecretValueFailed": "Get secret value failed for: %s. Error: %s.",
120-
"ConflictingVariableFound": "Variable with name %s is defined in both environment and key vault",
121-
"GetSecretFailedBecauseOfInvalidCharacters": "Secret not found: %s. Secret name must be a string 1-127 characters in length containing only -, 0-9, a-z and A-Z.",
122-
"UploadingAttachment": "Uploading %s as attachment",
123-
"CouldNotWriteToFile": "Could not save content to file. Failed with an error %s",
124-
"CouldNotMaskSecret": "%s value has regular expressions hence could not mask completely",
125-
"CouldNotFetchAccessTokenforAzureStatusCode": "Could not fetch access token for Azure. Status code: %s, status message: %s",
126-
"CouldNotFetchAccessTokenforMSIDueToMSINotConfiguredProperlyStatusCode": "Could not fetch access token for Managed Service Principal. Please configure Managed Service Identity (MSI) for virtual machine 'https://aka.ms/azure-msi-docs'. Status code: %s, status message: %s",
127-
"CouldNotFetchAccessTokenforMSIStatusCode": "Could not fetch access token for Managed Service Principal. Status code: %s, status message: %s",
128-
"RetryingWithVaultResourceIdFromResponse": "Retrying with vault resource Id reterieved from response : %s",
129-
"ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired.",
130-
"InvalidKeyVaultName": "%s is an invalid KeyVault name."
131-
}
132132
}

Tasks/AzureKeyVaultV2/task.loc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"author": "Microsoft Corporation",
1515
"version": {
1616
"Major": 2,
17-
"Minor": 243,
18-
"Patch": 2
17+
"Minor": 244,
18+
"Patch": 0
1919
},
2020
"demands": [],
2121
"minimumAgentVersion": "2.182.1",

Tasks/PackerBuildV1/Strings/resources.resjson/de-DE/resources.resjson

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,6 @@
8989
"loc.messages.ParsingAdditionalBuilderParameters": "JSON mit zusätzlichen Generatorparametern wird analysiert.",
9090
"loc.messages.ParsingTemplateFileContentFailed": "Analysieren des JSON-Inhalts von der Vorlagendatei %s nicht möglich. Fehler: %s.",
9191
"loc.messages.ParsingCustomTemplateParameters": "JSON mit benutzerdefinierten Vorlagenparametern wird analysiert.",
92-
"loc.messages.FetchingSPNDetailsRemotely": "SPN-Details für App-ID %s werden aus der Azure AD-Diagrammdienstverbindung abgerufen...",
93-
"loc.messages.FetchedSPNDetailsRemotely": "SPN-Details erfolgreich abgerufen. ObjectId: %s",
94-
"loc.messages.FailedToFetchSPNDetailsRemotely": "Abrufen von SPN-Details aus der Diagrammdienstverbindung nicht möglich. Fehler: %s.",
9592
"loc.messages.GetArtifactItemsNotSupported": "Das Abrufen von Artefaktelementen wird nicht unterstützt, ungültiger Codepfad.",
9693
"loc.messages.CouldNotFetchAccessTokenforMSIDueToMSINotConfiguredProperlyStatusCode": "Ein Zugriffstoken für den verwalteten Dienstprinzipal konnte nicht abgerufen werden. Konfigurieren Sie die verwaltete Dienstidentität (MSI) für den virtuellen Computer (https://aka.ms/azure-msi-docs). Statuscode: %s, Statusmeldung: %s",
9794
"loc.messages.CouldNotFetchAccessTokenforMSIStatusCode": "Ein Zugriffstoken für den verwalteten Dienstprinzipal konnte nicht abgerufen werden. Statuscode: %s, Statusmeldung: %s",

Tasks/PackerBuildV1/Strings/resources.resjson/es-ES/resources.resjson

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,6 @@
8989
"loc.messages.ParsingAdditionalBuilderParameters": "Analizando parámetros JSON adicionales del compilador.",
9090
"loc.messages.ParsingTemplateFileContentFailed": "No se puede analizar el contenido de JSON del archivo de plantilla %s. Error: %s.",
9191
"loc.messages.ParsingCustomTemplateParameters": "Analizando parámetros JSON de la plantilla personalizada.",
92-
"loc.messages.FetchingSPNDetailsRemotely": "Capturando detalles de SPN para el identificador de aplicación %s desde la conexión del servicio de Azure AD Graph...",
93-
"loc.messages.FetchedSPNDetailsRemotely": "Los detalles de SPN se han recuperado correctamente. Id. de objeto: %s",
94-
"loc.messages.FailedToFetchSPNDetailsRemotely": "No se pueden capturar los detalles de SPN de la conexión de servicio de Graph. Error: %s.",
9592
"loc.messages.GetArtifactItemsNotSupported": "No se admite la obtención de elementos de artefacto. La ruta de acceso del código no es válida.",
9693
"loc.messages.CouldNotFetchAccessTokenforMSIDueToMSINotConfiguredProperlyStatusCode": "No se pudo capturar el token de acceso para la entidad de servicio administrada. Configure Managed Service Identity (MSI) para la máquina virtual \"https://aka.ms/azure-msi-docs\". Código de estado: %s. Mensaje de estado: %s",
9794
"loc.messages.CouldNotFetchAccessTokenforMSIStatusCode": "No se pudo capturar el token de acceso para la entidad de servicio administrada. Código de estado: %s. Mensaje de estado: %s",

0 commit comments

Comments
 (0)