diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/de-DE/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/de-DE/resources.resjson index 299a1cf493da..ce91bcdedb87 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/de-DE/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/de-DE/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[Weitere Informationen zu dieser Aufgabe](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) oder [Azure CLI-Dokumentation anzeigen](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Hiermit werden Azure CLI-Befehle für ein Azure-Abonnement in einem PowerShell Core-/Shellskript (bei Ausführung für einen Linux-Agent) oder einem PowerShell-/PowerShell Core-/Batchskript (bei Ausführung für einen Windows-Agent) ausgeführt.", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "Neuerungen in Version 2.0:\n– Unterstützung für PowerShell- und PowerShell Core-Skripts. \n– PowerShell Core arbeitet mit plattformübergreifenden Agents (Linux, macOS oder Windows). Stellen Sie sicher, dass der Agent PowerShell-Version 6 oder höher verwendet. \n– Ein PowerShell-Skript funktioniert nur mit dem Windows-Agent. Stellen Sie sicher, dass der Agent PowerShell-Version 5 oder niedriger verwendet.", - "loc.group.displayName.advanced": "Erweitert", - "loc.input.label.connectedServiceNameARM": "Azure Resource Manager-Verbindung", - "loc.input.help.connectedServiceNameARM": "Wählen Sie eine Azure Resource Manager-Dienstverbindung für die Bereitstellung aus.", - "loc.input.label.scriptType": "Skripttyp", - "loc.input.help.scriptType": "Skripttyp: PowerShell-/PowerShell Core-/BAT-/Shellskript. Wählen Sie bei Ausführung für einen Linux-Agent ein Shell-/PowerShell Core-Skript oder bei Ausführung für einen Windows-Agent ein Batch-/PowerShell-/PowerShell Core-Skript aus. Das PowerShell Core-Skript kann für plattformübergreifende Agents (Linux, macOS oder Windows) ausgeführt werden.", - "loc.input.label.scriptLocation": "Skriptspeicherort", - "loc.input.help.scriptLocation": "Pfad zum Skript: Dateipfad oder Inlineskript", - "loc.input.label.scriptPath": "Skriptpfad", - "loc.input.help.scriptPath": "Vollqualifizierter Pfad des Skripts (PS1 oder BAT oder CMD bei Verwendung des Windows-basierten Agents, PS1 oder SH bei Verwendung eines Linux-basierten Agents) oder ein Pfad relativ zum Standardarbeitsverzeichnis", - "loc.input.label.inlineScript": "Inlineskript", - "loc.input.help.inlineScript": "Sie können Ihre Skripts hier inline einfügen. Bei Verwendung eines Windows-Agents verwenden Sie ein PowerShell-, PowerShell Core- oder Batchskript, bei Verwendung eines Linux-basierten Agents ein PowerShell- oder Shellskript. Verwenden Sie für Batchdateien das Präfix \"call\" vor jedem Azure-Befehl. Sie können außerdem mithilfe von Argumenten vordefinierte und benutzerdefinierte Variablen an das Skript übergeben. \n\n Beispiel für PowerShell/PowerShellCore/Shell: \naz --version \naz account show \n\n Beispiel für Batch: \ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "Skriptargumente", - "loc.input.help.scriptArguments": "An das Skript übergebenen Argumente", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "Stellt oben in Ihrem PowerShell-/PowerShell Core-Skript die Zeile \"$ErrorActionPreference = 'VALUE'\" voran.", - "loc.input.label.addSpnToEnvironment": "Auf Dienstprinzipaldetails im Skript zugreifen", - "loc.input.help.addSpnToEnvironment": "Fügt die Dienstprinzipal-ID, den Dienstprinzipalschlüssel und die Mandanten-ID des ausgewählten Azure-Endpunkts zur Ausführungsumgebung des Skripts hinzu. Sie können in Ihrem Skript die folgenden Variablen verwenden: \"servicePrincipalId\", \"servicePrincipalKey\" und \"tenantId\".\n\nEine Berücksichtigung erfolgt nur, wenn der Azure-Endpunkt das Dienstprinzipal-Authentifizierungsschema aufweist.\n\nDie Syntax für den Zugriff auf Umgebungsvariablen basiert auf dem Skripttyp.\n\nPowerShell-Skript: $env:servicePrincipalId\n\nBatchskript: %servicePrincipalId% \n\nShellskript: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "Globale Azure CLI-Konfiguration verwenden", - "loc.input.help.useGlobalConfig": "Bei Festlegung auf FALSE verwendet diese Aufgabe ein eigenes, separates [Azure CLI-Konfigurationsverzeichnis](https://docs.microsoft.com/de-de/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file). Dieses Verzeichnis kann zum Ausführen von Azure CLI-Aufgaben in *parallelen* Releases verwendet werden.", - "loc.input.label.cwd": "Arbeitsverzeichnis", - "loc.input.help.cwd": "Das aktuelle Arbeitsverzeichnis, in dem das Skript ausgeführt wird. Wenn keine Angabe erfolgt, wird der Stamm des Repositorys (Build) oder der Artefakte (Release) verwendet, das \"$(System.DefaultWorkingDirectory)\" lautet.", - "loc.input.label.failOnStandardError": "Fehler bei Standardfehler.", - "loc.input.help.failOnStandardError": "Bei aktivierter Option kann diese Aufgabe nicht erfolgreich ausgeführt werden, wenn Fehler in den StandardError-Stream geschrieben werden. Deaktivieren Sie das Kontrollkästchen, um Standardfehler zu ignorieren, und bestimmen Sie den Status mithilfe von Exitcodes.", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "$LASTEXITCODE ignorieren", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "Wenn dieser Wert FALSE ist, wird am Ende Ihres Skripts die Zeile \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\" angehängt. Dadurch wird der letzte Exitcode aus einem externen Befehl als Exitcode der PowerShell weitergegeben. Andernfalls wird die Zeile nicht an das Ende Ihres Skripts angehängt.", - "loc.input.label.visibleAzLogin": "Ausgabesichtbarkeit der az-Anmeldung", - "loc.input.help.visibleAzLogin": "Durch Festlegen auf „true“ wird der az-Anmeldebefehl an die Aufgabe ausgegeben. Durch Festlegen auf „false“ wird die Ausgabe der az-Anmeldung unterdrückt.", - "loc.input.label.keepAzSessionActive": "[Experimentell] Azure CLI-Sitzung aktiv halten", - "loc.input.help.keepAzSessionActive": "Wenn diese Option aktiviert ist, meldet die Aufgabe sich kontinuierlich bei Azure an, um AADSTS700024 Fehler beim Anfordern von Zugriffstoken über das IdToken-Ablaufdatum hinaus zu vermeiden. Beachten Sie, dass dieses Feature EXPERIMENTELL ist und möglicherweise nicht in allen Szenarien funktioniert und Sie es ohne jegliche Gewährleistungen verwenden. Gilt nur für Dienstverbindungen, die das Authentifizierungsschema des Workloadidentitätsverbunds verwenden.", - "loc.messages.ScriptReturnCode": "Skript wurde mit Rückgabecode beendet: %d", - "loc.messages.ScriptFailed": "Skriptfehler: %s", - "loc.messages.ScriptFailedStdErr": "Das Skript weist Ausgabe in stderr auf. Dies verursacht einen Fehler, weil \"failOnStdErr\" auf TRUE festgelegt ist.", - "loc.messages.ScriptFailedWithExitCode": "Skriptfehler mit Exitcode %d.", - "loc.messages.UnsupportedEndpointScheme": "Nicht unterstütztes Authentifizierungsschema für Dienstverbindung: Dienstprinzipal für AzureRM", - "loc.messages.AzureSDKNotFound": "Azure CLI 2.x ist nicht auf diesem Computer installiert.", - "loc.messages.FailedToLogout": "Beim Abmelden ist der folgende Fehler aufgetreten: %s", - "loc.messages.LoginFailed": "Fehler bei der Azure-Anmeldung.", - "loc.messages.MSILoginFailed": "Fehler bei der Azure-Anmeldung mit einer verwalteten Dienstidentität.", - "loc.messages.AuthSchemeNotSupported": "Das Authentifizierungsschema \"%s\" wird nicht unterstützt.", - "loc.messages.ErrorInSettingUpSubscription": "Fehler beim Festlegen des Abonnements.", - "loc.messages.SettingAzureConfigDir": "AZURE_CONFIG_DIR-Umgebungsvariable wird festgelegt auf: %s", - "loc.messages.SettingAzureCloud": "Aktive Cloud wird festgelegt auf: %s", - "loc.messages.JS_InvalidFilePath": "Die Skriptdatei wurde am angegebenen Skriptspeicherort nicht gefunden: \"%s\". Überprüfen Sie, ob das Skript im angegebenen Pfad vorhanden ist. Wenn Sie ein Inlineskript verwenden möchten, geben Sie den Skriptspeicherort als \"inlineScript\" an.", - "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference \"%s\" ungültig. Der Wert muss \"Stop\", \"Continue\" oder \"SilentlyContinue\" sein.", - "loc.messages.GlobalCliConfigAgentVersionWarning": "Für Agent-Versionen vor 2.115.0 kann nur die globale Azure CLI-Konfiguration verwendet werden.", - "loc.messages.UnacceptedScriptLocationValue": "\"%s\" ist kein gültiger Wert für die Aufgabeneingabe für den Skriptspeicherort (\"scriptLocation\" in YAML). Der Wert kann entweder \"inlineScript\"oder \"scriptPath\" lauten.", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "Das Geheimnis ist abgelaufen. Aktualisieren Sie die Dienstverbindung unter %s. Weitere Informationen zur Konvertierung in Dienstverbindungen ohne Geheimnis finden Sie unter https://aka.ms/azdo-rm-workload-identity-conversion.", - "loc.messages.ProxyConfig": "Das az-Tool ist für die Verwendung von „%s“ als Proxyserver konfiguriert.", - "loc.messages.FailedToRefreshAzSession": "Fehler beim Aktualisieren der AZ-CLI-Sitzung: %s", - "loc.messages.RefreshingAzSession": "Es wird versucht, die AZ-CLI-Sitzung zu aktualisieren...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "Die Eingabe \"keepAzSessionActive\" kann nur für die ARM-Dienstverbindung des Workloadidentitätsverbunds verwendet werden. Das Authentifizierungsschema des Dienstendpunkts, auf das verwiesen wird, war unerwartet: %s. Ändern Sie das Schema, oder entfernen Sie die Eingabe \"keepAzSessionActive\"." +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[Weitere Informationen zu dieser Aufgabe](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) oder [Azure CLI-Dokumentation anzeigen](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Hiermit werden Azure CLI-Befehle für ein Azure-Abonnement in einem PowerShell Core-/Shellskript (bei Ausführung für einen Linux-Agent) oder einem PowerShell-/PowerShell Core-/Batchskript (bei Ausführung für einen Windows-Agent) ausgeführt.", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "Neuerungen in Version 2.0:\n– Unterstützung für PowerShell- und PowerShell Core-Skripts. \n– PowerShell Core arbeitet mit plattformübergreifenden Agents (Linux, macOS oder Windows). Stellen Sie sicher, dass der Agent PowerShell-Version 6 oder höher verwendet. \n– Ein PowerShell-Skript funktioniert nur mit dem Windows-Agent. Stellen Sie sicher, dass der Agent PowerShell-Version 5 oder niedriger verwendet.", + "loc.group.displayName.advanced": "Erweitert", + "loc.input.label.connectedServiceNameARM": "Azure Resource Manager-Verbindung", + "loc.input.help.connectedServiceNameARM": "Wählen Sie eine Azure Resource Manager-Dienstverbindung für die Bereitstellung aus.", + "loc.input.label.scriptType": "Skripttyp", + "loc.input.help.scriptType": "Skripttyp: PowerShell-/PowerShell Core-/BAT-/Shellskript. Wählen Sie bei Ausführung für einen Linux-Agent ein Shell-/PowerShell Core-Skript oder bei Ausführung für einen Windows-Agent ein Batch-/PowerShell-/PowerShell Core-Skript aus. Das PowerShell Core-Skript kann für plattformübergreifende Agents (Linux, macOS oder Windows) ausgeführt werden.", + "loc.input.label.scriptLocation": "Skriptspeicherort", + "loc.input.help.scriptLocation": "Pfad zum Skript: Dateipfad oder Inlineskript", + "loc.input.label.scriptPath": "Skriptpfad", + "loc.input.help.scriptPath": "Vollqualifizierter Pfad des Skripts (PS1 oder BAT oder CMD bei Verwendung des Windows-basierten Agents, PS1 oder SH bei Verwendung eines Linux-basierten Agents) oder ein Pfad relativ zum Standardarbeitsverzeichnis", + "loc.input.label.inlineScript": "Inlineskript", + "loc.input.help.inlineScript": "Sie können Ihre Skripts hier inline einfügen. Bei Verwendung eines Windows-Agents verwenden Sie ein PowerShell-, PowerShell Core- oder Batchskript, bei Verwendung eines Linux-basierten Agents ein PowerShell- oder Shellskript. Verwenden Sie für Batchdateien das Präfix \"call\" vor jedem Azure-Befehl. Sie können außerdem mithilfe von Argumenten vordefinierte und benutzerdefinierte Variablen an das Skript übergeben. \n\n Beispiel für PowerShell/PowerShellCore/Shell: \naz --version \naz account show \n\n Beispiel für Batch: \ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "Skriptargumente", + "loc.input.help.scriptArguments": "An das Skript übergebenen Argumente", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "Stellt oben in Ihrem PowerShell-/PowerShell Core-Skript die Zeile \"$ErrorActionPreference = 'VALUE'\" voran.", + "loc.input.label.addSpnToEnvironment": "Auf Dienstprinzipaldetails im Skript zugreifen", + "loc.input.help.addSpnToEnvironment": "Fügt die Dienstprinzipal-ID, den Dienstprinzipalschlüssel und die Mandanten-ID des ausgewählten Azure-Endpunkts zur Ausführungsumgebung des Skripts hinzu. Sie können in Ihrem Skript die folgenden Variablen verwenden: \"servicePrincipalId\", \"servicePrincipalKey\" und \"tenantId\".\n\nEine Berücksichtigung erfolgt nur, wenn der Azure-Endpunkt das Dienstprinzipal-Authentifizierungsschema aufweist.\n\nDie Syntax für den Zugriff auf Umgebungsvariablen basiert auf dem Skripttyp.\n\nPowerShell-Skript: $env:servicePrincipalId\n\nBatchskript: %servicePrincipalId% \n\nShellskript: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "Globale Azure CLI-Konfiguration verwenden", + "loc.input.help.useGlobalConfig": "Bei Festlegung auf FALSE verwendet diese Aufgabe ein eigenes, separates [Azure CLI-Konfigurationsverzeichnis](https://docs.microsoft.com/de-de/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file). Dieses Verzeichnis kann zum Ausführen von Azure CLI-Aufgaben in *parallelen* Releases verwendet werden.", + "loc.input.label.cwd": "Arbeitsverzeichnis", + "loc.input.help.cwd": "Das aktuelle Arbeitsverzeichnis, in dem das Skript ausgeführt wird. Wenn keine Angabe erfolgt, wird der Stamm des Repositorys (Build) oder der Artefakte (Release) verwendet, das \"$(System.DefaultWorkingDirectory)\" lautet.", + "loc.input.label.failOnStandardError": "Fehler bei Standardfehler.", + "loc.input.help.failOnStandardError": "Bei aktivierter Option kann diese Aufgabe nicht erfolgreich ausgeführt werden, wenn Fehler in den StandardError-Stream geschrieben werden. Deaktivieren Sie das Kontrollkästchen, um Standardfehler zu ignorieren, und bestimmen Sie den Status mithilfe von Exitcodes.", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "$LASTEXITCODE ignorieren", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "Wenn dieser Wert FALSE ist, wird am Ende Ihres Skripts die Zeile \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\" angehängt. Dadurch wird der letzte Exitcode aus einem externen Befehl als Exitcode der PowerShell weitergegeben. Andernfalls wird die Zeile nicht an das Ende Ihres Skripts angehängt.", + "loc.input.label.visibleAzLogin": "Ausgabesichtbarkeit der az-Anmeldung", + "loc.input.help.visibleAzLogin": "Durch Festlegen auf „true“ wird der az-Anmeldebefehl an die Aufgabe ausgegeben. Durch Festlegen auf „false“ wird die Ausgabe der az-Anmeldung unterdrückt.", + "loc.input.label.keepAzSessionActive": "[Experimentell] Azure CLI-Sitzung aktiv halten", + "loc.input.help.keepAzSessionActive": "Wenn diese Option aktiviert ist, meldet die Aufgabe sich kontinuierlich bei Azure an, um AADSTS700024 Fehler beim Anfordern von Zugriffstoken über das IdToken-Ablaufdatum hinaus zu vermeiden. Beachten Sie, dass dieses Feature EXPERIMENTELL ist und möglicherweise nicht in allen Szenarien funktioniert und Sie es ohne jegliche Gewährleistungen verwenden. Gilt nur für Dienstverbindungen, die das Authentifizierungsschema des Workloadidentitätsverbunds verwenden.", + "loc.messages.ScriptReturnCode": "Skript wurde mit Rückgabecode beendet: %d", + "loc.messages.ScriptFailed": "Skriptfehler: %s", + "loc.messages.ScriptFailedStdErr": "Das Skript weist Ausgabe in stderr auf. Dies verursacht einen Fehler, weil \"failOnStdErr\" auf TRUE festgelegt ist.", + "loc.messages.ScriptFailedWithExitCode": "Skriptfehler mit Exitcode %d.", + "loc.messages.UnsupportedEndpointScheme": "Nicht unterstütztes Authentifizierungsschema für Dienstverbindung: Dienstprinzipal für AzureRM", + "loc.messages.AzureSDKNotFound": "Azure CLI 2.x ist nicht auf diesem Computer installiert.", + "loc.messages.FailedToLogout": "Beim Abmelden ist der folgende Fehler aufgetreten: %s", + "loc.messages.LoginFailed": "Fehler bei der Azure-Anmeldung.", + "loc.messages.MSILoginFailed": "Fehler bei der Azure-Anmeldung mit einer verwalteten Dienstidentität.", + "loc.messages.AuthSchemeNotSupported": "Das Authentifizierungsschema \"%s\" wird nicht unterstützt.", + "loc.messages.ErrorInSettingUpSubscription": "Fehler beim Festlegen des Abonnements.", + "loc.messages.SettingAzureConfigDir": "AZURE_CONFIG_DIR-Umgebungsvariable wird festgelegt auf: %s", + "loc.messages.SettingAzureCloud": "Aktive Cloud wird festgelegt auf: %s", + "loc.messages.JS_InvalidFilePath": "Die Skriptdatei wurde am angegebenen Skriptspeicherort nicht gefunden: \"%s\". Überprüfen Sie, ob das Skript im angegebenen Pfad vorhanden ist. Wenn Sie ein Inlineskript verwenden möchten, geben Sie den Skriptspeicherort als \"inlineScript\" an.", + "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference \"%s\" ungültig. Der Wert muss \"Stop\", \"Continue\" oder \"SilentlyContinue\" sein.", + "loc.messages.GlobalCliConfigAgentVersionWarning": "Für Agent-Versionen vor 2.115.0 kann nur die globale Azure CLI-Konfiguration verwendet werden.", + "loc.messages.UnacceptedScriptLocationValue": "%s ist kein gültiger Wert für die Taskeingabe „Script Location“ (scriptLocation in YAML). Der Wert kann entweder „inlineScript“ oder „scriptPath“ sein.", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "Das Geheimnis ist abgelaufen. Aktualisieren Sie die Dienstverbindung unter %s. Weitere Informationen zur Konvertierung in Dienstverbindungen ohne Geheimnis finden Sie unter https://aka.ms/azdo-rm-workload-identity-conversion.", + "loc.messages.ProxyConfig": "Das az-Tool ist für die Verwendung von „%s“ als Proxyserver konfiguriert.", + "loc.messages.FailedToRefreshAzSession": "Fehler beim Aktualisieren der AZ-CLI-Sitzung: %s", + "loc.messages.RefreshingAzSession": "Es wird versucht, die AZ-CLI-Sitzung zu aktualisieren...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "Die Eingabe \"keepAzSessionActive\" kann nur für die ARM-Dienstverbindung des Workloadidentitätsverbunds verwendet werden. Das Authentifizierungsschema des Dienstendpunkts, auf das verwiesen wird, war unerwartet: %s. Ändern Sie das Schema, oder entfernen Sie die Eingabe \"keepAzSessionActive\"." } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/es-ES/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/es-ES/resources.resjson index 45105693a30d..f6fc4a05276e 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/es-ES/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/es-ES/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "CLI de Azure", - "loc.helpMarkDown": "[Obtener más información acerca de esta tarea](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) o [consultar la documentación de la CLI de Azure](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Ejecute los comandos de la CLI de Azure para una suscripción de Azure en un script de PowerShell Core o Shell (al ejecutarse en un agente de Linux) o en un script de PowerShell/PowerShell Core/por lotes (al ejecutarse en un agente de Windows).", - "loc.instanceNameFormat": "CLI de Azure $(scriptPath)", - "loc.releaseNotes": "Novedades de la versión 2.0:\n- Compatibilidad con los scripts de PowerShell y PowerShell Core. \n- PowerShell Core funciona con agentes multiplataforma (Linux, macOS o Windows); asegúrese de que el agente tenga la versión 6 de PowerShell o una posterior. \n- El script de PowerShell funciona solo con el agente de Windows; asegúrese de que el agente tenga la versión 5 de PowerShell o una anterior.", - "loc.group.displayName.advanced": "Avanzado", - "loc.input.label.connectedServiceNameARM": "Conexión de Azure Resource Manager", - "loc.input.help.connectedServiceNameARM": "Seleccionar una conexión de servicio de Azure Resource Manager para la implementación", - "loc.input.label.scriptType": "Tipo de script", - "loc.input.help.scriptType": "Tipo de script: script de PowerShell/PowerShell Core/por lotes/Shell. Seleccione el script de Shell/PowerShell Core al ejecutarse en el agente de Linux o el script por lotes/PowerShell/PowerShell Core al ejecutarse en el agente de Windows. El script de PowerShell Core puede ejecutarse en agentes multiplataforma (Linux, macOS o Windows).", - "loc.input.label.scriptLocation": "Ubicación del script", - "loc.input.help.scriptLocation": "Ruta de acceso al script: ruta de acceso de archivo o script alineado", - "loc.input.label.scriptPath": "Ruta de acceso del script", - "loc.input.help.scriptPath": "Ruta de acceso completa del script (.ps1, .bat o .cmd cuando se usa el agente basado en Windows; de lo contrario, .ps1 o .sh cuando se usa el agente basado en Linux) o una ruta de acceso relativa al directorio de trabajo predeterminado", - "loc.input.label.inlineScript": "Script en línea", - "loc.input.help.inlineScript": "Puede escribir aquí los scripts alineados. Utilice el scripting de PowerShell, PowerShell Core o por lotes cuando use un agente de Windows o bien use el scripting del shell o de PowerShell Core con los agentes basados en Linux. Para los archivos por lotes, use el prefijo \"call\" delante de cada comando de Azure. También puede pasar variables predefinidas y personalizadas a este script mediante argumentos. \n\n Ejemplo para PowerShell, PowerShellCore o shell: \naz --version \naz account show \n\n Ejemplo por lotes:\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "Argumentos de script", - "loc.input.help.scriptArguments": "Argumentos pasados al script", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "Antepone la línea \"$ErrorActionPreference = 'VALUE'\" al principio del script de PowerShell o PowerShell Core.", - "loc.input.label.addSpnToEnvironment": "Acceder a los detalles de la entidad de servicio en el script", - "loc.input.help.addSpnToEnvironment": "Agrega el identificador de la entidad de servicio, la clave de la entidad de servicio y el identificador de inquilino del punto de conexión de Azure seleccionado al entorno de ejecución del script. Puede usar las variables \"servicePrincipalId\", \"servicePrincipalKey\" y \"tenantId\" en el script.\n\nEsto solo se sigue cuando el punto de conexión de Azure tiene el esquema de autenticación de la entidad de servicio.\n\nLa sintaxis para acceder a las variables de entorno se basa en el tipo de script.\n\nScript de PowerShell: $env:servicePrincipalId\n\nScript por lotes: %servicePrincipalId% \n\nScript del shell: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "Usar la configuración global de la CLI de Azure", - "loc.input.help.useGlobalConfig": "Si es false, esta tarea usará su propio [directorio de configuración de la CLI de Azure](https://docs.microsoft.com/en-us/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file). Se puede usar para ejecutar tareas de la CLI de Azure en versiones en *paralelo*.", - "loc.input.label.cwd": "Directorio de trabajo", - "loc.input.help.cwd": "Directorio de trabajo actual en el que se ejecuta el script. Si se deja vacío, es la raíz del repositorio (compilación) o artefactos (versión), que es $(System.DefaultWorkingDirectory)", - "loc.input.label.failOnStandardError": "Error si se produce un error estándar", - "loc.input.help.failOnStandardError": "Si es true, la tarea no se podrá ejecutar cuando se registre algún error en la secuencia StandardError. Anule la selección de la casilla para ignorar los errores estándar y use los códigos de salida para determinar el estado.", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "Ignorar $LASTEXITCODE", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "Si es false, se anexa la línea \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\" al final del script. Esto hará que se propague el último código de salida de un comando externo como código de salida de PowerShell. De lo contrario, no se anexa la línea al final del script.", - "loc.input.label.visibleAzLogin": "visibilidad de salida de acceso de zona de disponibilidad", - "loc.input.help.visibleAzLogin": "Si se establece en true, el comando de acceso de zona de disponibilidad generará la salida en la tarea. Si se establece en false, se suprimirá la salida de acceso de zona de disponibilidad.", - "loc.input.label.keepAzSessionActive": "[Experimental] Mantener la sesión de la CLI de Azure activa", - "loc.input.help.keepAzSessionActive": "Cuando se habilita, esta tarea iniciará sesión continuamente en Azure para evitar errores de AADSTS700024 al solicitar tokens de acceso más allá de la fecha de expiración del IdToken. Tenga en cuenta que esta característica es EXPERIMENTAL, podría no funcionar en todos los escenarios y está usándola sin ninguna garantía. Solo es válido para las conexiones de servicio que usan el esquema de autenticación de federación de identidades de carga de trabajo.", - "loc.messages.ScriptReturnCode": "El script finalizó con el código de retorno: %d", - "loc.messages.ScriptFailed": "No se pudo ejecutar el script. Error: %s", - "loc.messages.ScriptFailedStdErr": "El script tiene la salida en stderr. Se produce un error cuando failOnStdErr está establecido en true.", - "loc.messages.ScriptFailedWithExitCode": "Error del script con el código de salida %d", - "loc.messages.UnsupportedEndpointScheme": "Esquema de autorización de conexión de servicio no compatible: entidad de servicio para AzureRM", - "loc.messages.AzureSDKNotFound": "La CLI de Azure 2.x no está instalada en esta máquina.", - "loc.messages.FailedToLogout": "Error al cerrar sesión: %s", - "loc.messages.LoginFailed": "Error del inicio de sesión de Azure", - "loc.messages.MSILoginFailed": "Error de inicio de sesión de Azure con Managed Service Identity", - "loc.messages.AuthSchemeNotSupported": "No se admite el esquema de autenticación %s.", - "loc.messages.ErrorInSettingUpSubscription": "Error en la configuración de la suscripción", - "loc.messages.SettingAzureConfigDir": "Estableciendo la variable de entorno AZURE_CONFIG_DIR en %s", - "loc.messages.SettingAzureCloud": "Estableciendo la nube activa en %s", - "loc.messages.JS_InvalidFilePath": "No se encontró el archivo de script en la ubicación de script especificada: \"%s\". Compruebe que el script existe en la ruta de acceso especificada. Si desea usar un script alineado, especifique la entrada \"Ubicación del script\" como \"inlineScript\".", - "loc.messages.JS_InvalidErrorActionPreference": "El valor \"%s\" de ErrorActionPreference no es válido. El valor debe ser uno de los siguientes: \"Stop\", \"Continue\" o \"SilentlyContinue\"", - "loc.messages.GlobalCliConfigAgentVersionWarning": "Para la versión del agente < 2.115.0, solo se puede usar la configuración global de la CLI de Azure.", - "loc.messages.UnacceptedScriptLocationValue": "%s no es un valor válido para la entrada de tarea \"Ubicación del script\" (scriptLocation en YAML). El valor puede ser \"inlineScript\" o \"scriptPath\".", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "El secreto expiró. Actualice la conexión de servicio en %s Consulte https://aka.ms/azdo-rm-workload-identity-conversion para obtener más información sobre la conversión a conexiones de servicio sin secretos.", - "loc.messages.ProxyConfig": "la herramienta de zona de disponibilidad está configurada para usar %s como servidor proxy", - "loc.messages.FailedToRefreshAzSession": "Error al intentar actualizar la sesión de az-cli: %s", - "loc.messages.RefreshingAzSession": "Intentando actualizar la sesión de az-cli...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "La entrada \"keepAzSessionActive\" solo se puede usar para la conexión del servicio ARM de federación de identidades de carga de trabajo. No se esperaba el esquema de autenticación del punto de conexión de servicio al que se hace referencia: %s. Cambie el esquema o quite la entrada \"keepAzSessionActive\"." +{ + "loc.friendlyName": "CLI de Azure", + "loc.helpMarkDown": "[Obtener más información acerca de esta tarea](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) o [consultar la documentación de la CLI de Azure](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Ejecute los comandos de la CLI de Azure para una suscripción de Azure en un script de PowerShell Core o Shell (al ejecutarse en un agente de Linux) o en un script de PowerShell/PowerShell Core/por lotes (al ejecutarse en un agente de Windows).", + "loc.instanceNameFormat": "CLI de Azure $(scriptPath)", + "loc.releaseNotes": "Novedades de la versión 2.0:\n- Compatibilidad con los scripts de PowerShell y PowerShell Core. \n- PowerShell Core funciona con agentes multiplataforma (Linux, macOS o Windows); asegúrese de que el agente tenga la versión 6 de PowerShell o una posterior. \n- El script de PowerShell funciona solo con el agente de Windows; asegúrese de que el agente tenga la versión 5 de PowerShell o una anterior.", + "loc.group.displayName.advanced": "Avanzado", + "loc.input.label.connectedServiceNameARM": "Conexión de Azure Resource Manager", + "loc.input.help.connectedServiceNameARM": "Seleccionar una conexión de servicio de Azure Resource Manager para la implementación", + "loc.input.label.scriptType": "Tipo de script", + "loc.input.help.scriptType": "Tipo de script: script de PowerShell/PowerShell Core/por lotes/Shell. Seleccione el script de Shell/PowerShell Core al ejecutarse en el agente de Linux o el script por lotes/PowerShell/PowerShell Core al ejecutarse en el agente de Windows. El script de PowerShell Core puede ejecutarse en agentes multiplataforma (Linux, macOS o Windows).", + "loc.input.label.scriptLocation": "Ubicación del script", + "loc.input.help.scriptLocation": "Ruta de acceso al script: ruta de acceso de archivo o script alineado", + "loc.input.label.scriptPath": "Ruta de acceso del script", + "loc.input.help.scriptPath": "Ruta de acceso completa del script (.ps1, .bat o .cmd cuando se usa el agente basado en Windows; de lo contrario, .ps1 o .sh cuando se usa el agente basado en Linux) o una ruta de acceso relativa al directorio de trabajo predeterminado", + "loc.input.label.inlineScript": "Script en línea", + "loc.input.help.inlineScript": "Puede escribir aquí los scripts alineados. Utilice el scripting de PowerShell, PowerShell Core o por lotes cuando use un agente de Windows o bien use el scripting del shell o de PowerShell Core con los agentes basados en Linux. Para los archivos por lotes, use el prefijo \"call\" delante de cada comando de Azure. También puede pasar variables predefinidas y personalizadas a este script mediante argumentos. \n\n Ejemplo para PowerShell, PowerShellCore o shell: \naz --version \naz account show \n\n Ejemplo por lotes:\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "Argumentos de script", + "loc.input.help.scriptArguments": "Argumentos pasados al script", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "Antepone la línea \"$ErrorActionPreference = 'VALUE'\" al principio del script de PowerShell o PowerShell Core.", + "loc.input.label.addSpnToEnvironment": "Acceder a los detalles de la entidad de servicio en el script", + "loc.input.help.addSpnToEnvironment": "Agrega el identificador de la entidad de servicio, la clave de la entidad de servicio y el identificador de inquilino del punto de conexión de Azure seleccionado al entorno de ejecución del script. Puede usar las variables \"servicePrincipalId\", \"servicePrincipalKey\" y \"tenantId\" en el script.\n\nEsto solo se sigue cuando el punto de conexión de Azure tiene el esquema de autenticación de la entidad de servicio.\n\nLa sintaxis para acceder a las variables de entorno se basa en el tipo de script.\n\nScript de PowerShell: $env:servicePrincipalId\n\nScript por lotes: %servicePrincipalId% \n\nScript del shell: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "Usar la configuración global de la CLI de Azure", + "loc.input.help.useGlobalConfig": "Si es false, esta tarea usará su propio [directorio de configuración de la CLI de Azure](https://docs.microsoft.com/en-us/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file). Se puede usar para ejecutar tareas de la CLI de Azure en versiones en *paralelo*.", + "loc.input.label.cwd": "Directorio de trabajo", + "loc.input.help.cwd": "Directorio de trabajo actual en el que se ejecuta el script. Si se deja vacío, es la raíz del repositorio (compilación) o artefactos (versión), que es $(System.DefaultWorkingDirectory)", + "loc.input.label.failOnStandardError": "Error si se produce un error estándar", + "loc.input.help.failOnStandardError": "Si es true, la tarea no se podrá ejecutar cuando se registre algún error en la secuencia StandardError. Anule la selección de la casilla para ignorar los errores estándar y use los códigos de salida para determinar el estado.", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "Ignorar $LASTEXITCODE", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "Si es false, se anexa la línea \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\" al final del script. Esto hará que se propague el último código de salida de un comando externo como código de salida de PowerShell. De lo contrario, no se anexa la línea al final del script.", + "loc.input.label.visibleAzLogin": "visibilidad de salida de acceso de zona de disponibilidad", + "loc.input.help.visibleAzLogin": "Si se establece en true, el comando de acceso de zona de disponibilidad generará la salida en la tarea. Si se establece en false, se suprimirá la salida de acceso de zona de disponibilidad.", + "loc.input.label.keepAzSessionActive": "[Experimental] Mantener la sesión de la CLI de Azure activa", + "loc.input.help.keepAzSessionActive": "Cuando se habilita, esta tarea iniciará sesión continuamente en Azure para evitar errores de AADSTS700024 al solicitar tokens de acceso más allá de la fecha de expiración del IdToken. Tenga en cuenta que esta característica es EXPERIMENTAL, podría no funcionar en todos los escenarios y está usándola sin ninguna garantía. Solo es válido para las conexiones de servicio que usan el esquema de autenticación de federación de identidades de carga de trabajo.", + "loc.messages.ScriptReturnCode": "El script finalizó con el código de retorno: %d", + "loc.messages.ScriptFailed": "No se pudo ejecutar el script. Error: %s", + "loc.messages.ScriptFailedStdErr": "El script tiene la salida en stderr. Se produce un error cuando failOnStdErr está establecido en true.", + "loc.messages.ScriptFailedWithExitCode": "Error del script con el código de salida %d", + "loc.messages.UnsupportedEndpointScheme": "Esquema de autorización de conexión de servicio no compatible: entidad de servicio para AzureRM", + "loc.messages.AzureSDKNotFound": "La CLI de Azure 2.x no está instalada en esta máquina.", + "loc.messages.FailedToLogout": "Error al cerrar sesión: %s", + "loc.messages.LoginFailed": "Error del inicio de sesión de Azure", + "loc.messages.MSILoginFailed": "Error de inicio de sesión de Azure con Managed Service Identity", + "loc.messages.AuthSchemeNotSupported": "No se admite el esquema de autenticación %s.", + "loc.messages.ErrorInSettingUpSubscription": "Error en la configuración de la suscripción", + "loc.messages.SettingAzureConfigDir": "Estableciendo la variable de entorno AZURE_CONFIG_DIR en %s", + "loc.messages.SettingAzureCloud": "Estableciendo la nube activa en %s", + "loc.messages.JS_InvalidFilePath": "No se encontró el archivo de script en la ubicación de script especificada: \"%s\". Compruebe que el script existe en la ruta de acceso especificada. Si desea usar un script alineado, especifique la entrada \"Ubicación del script\" como \"inlineScript\".", + "loc.messages.JS_InvalidErrorActionPreference": "El valor \"%s\" de ErrorActionPreference no es válido. El valor debe ser uno de los siguientes: \"Stop\", \"Continue\" o \"SilentlyContinue\"", + "loc.messages.GlobalCliConfigAgentVersionWarning": "Para la versión del agente < 2.115.0, solo se puede usar la configuración global de la CLI de Azure.", + "loc.messages.UnacceptedScriptLocationValue": "%s no es un valor válido para la entrada de tarea 'Ubicación del script' (scriptLocation en YAML). El valor puede ser 'inlineScript' o 'scriptPath'", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "El secreto expiró. Actualice la conexión de servicio en %s Consulte https://aka.ms/azdo-rm-workload-identity-conversion para obtener más información sobre la conversión a conexiones de servicio sin secretos.", + "loc.messages.ProxyConfig": "la herramienta de zona de disponibilidad está configurada para usar %s como servidor proxy", + "loc.messages.FailedToRefreshAzSession": "Error al intentar actualizar la sesión de az-cli: %s", + "loc.messages.RefreshingAzSession": "Intentando actualizar la sesión de az-cli...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "La entrada \"keepAzSessionActive\" solo se puede usar para la conexión del servicio ARM de federación de identidades de carga de trabajo. No se esperaba el esquema de autenticación del punto de conexión de servicio al que se hace referencia: %s. Cambie el esquema o quite la entrada \"keepAzSessionActive\"." } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/fr-FR/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/fr-FR/resources.resjson index d6c430d2bd5e..74775e9414af 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/fr-FR/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/fr-FR/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[En savoir plus sur cette tâche](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) ou [consulter la documentation d'Azure CLI](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Exécutez des commandes Azure CLI sur un abonnement Azure via un script PowerShell Core/d'interpréteur de commandes sur un agent Linux, ou un script PowerShell/PowerShell Core/de commandes par lots sur un agent Windows.", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "Nouveautés de la version 2.0 :\n- Prise en charge de script PowerShell et PowerShell Core. \n- PowerShell Core fonctionne avec les agents multiplateformes (Linux, macOS ou Windows). Vérifiez que l'agent dispose de PowerShell version 6 ou ultérieure. \n- Un script PowerShell fonctionne uniquement avec un agent Windows. Vérifiez que l'agent dispose de PowerShell version 5 ou antérieure.", - "loc.group.displayName.advanced": "Avancé", - "loc.input.label.connectedServiceNameARM": "Connexion Azure Resource Manager", - "loc.input.help.connectedServiceNameARM": "Sélectionnez une connexion de service Azure Resource Manager pour le déploiement", - "loc.input.label.scriptType": "Type de script", - "loc.input.help.scriptType": "Type de script : PowerShell/PowerShell Core/commandes par lot/interpréteur de commandes. Sélectionnez un script d'interpréteur de commandes/PowerShell Core pour un agent Linux ou un script de commandes par lot/PowerShell/PowerShell Core pour un agent Windows. Un script PowerShell Core peut s'exécuter sur des agents multiplateformes (Linux, macOS ou Windows).", - "loc.input.label.scriptLocation": "Emplacement du script", - "loc.input.help.scriptLocation": "Chemin du script : chemin de fichier ou script inline", - "loc.input.label.scriptPath": "Chemin d'accès du script", - "loc.input.help.scriptPath": "Chemin complet du script (.ps1, .bat ou .cmd pour un agent Windows, et .ps1 ou .sh pour un agent Linux) ou chemin relatif au répertoire de travail par défaut", - "loc.input.label.inlineScript": "Script Inline", - "loc.input.help.inlineScript": "Vous pouvez écrire vos scripts inline ici. Pour les agents Windows, utilisez un script PowerShell, PowerShell Core ou de commandes par lot. Pour les agents Linux, utilisez un script PowerShell Core ou d'interpréteur de commandes. Pour les fichiers de commandes, utilisez le préfixe \"call\" avant chaque commande Azure. Vous pouvez également passer des variables prédéfinies et personnalisées à ce script à l'aide d'arguments \n\n exemple pour PowerShell/PowerShell Core/l'interpréteur de commandes : \naz --version \naz account show \n\n exemple pour les commandes par lot :\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "Arguments de script", - "loc.input.help.scriptArguments": "Arguments passés au script", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "Ajoute la ligne '$ErrorActionPreference = 'VALUE'' au début de votre script PowerShell/PowerShell Core.", - "loc.input.label.addSpnToEnvironment": "Accéder aux détails du principal de service dans le script", - "loc.input.help.addSpnToEnvironment": "Ajoute l'ID de principal de service, la clé de principal de service et l'ID de locataire du point de terminaison Azure choisi à l'environnement d'exécution du script. Vous pouvez utiliser les variables 'servicePrincipalId', 'servicePrincipalKey' et 'tenantId' dans votre script.\n\nCeci est valable uniquement quand le point de terminaison Azure a un schéma d'authentification du principal de service.\n\nSyntaxe permettant d'accéder aux variables d'environnement en fonction du type de script.\n\nScript PowerShell : $env:servicePrincipalId\n\nScript de commandes par lot : %servicePrincipalId% \n\nScript d'interpréteur de commandes : $servicePrincipalId", - "loc.input.label.useGlobalConfig": "Utiliser la configuration Azure CLI globale", - "loc.input.help.useGlobalConfig": "Si la valeur est false, cette tâche utilise son propre [répertoire de configuration Azure CLI](https://docs.microsoft.com/fr-fr/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file) distinct. Permet d'exécuter des tâches Azure CLI dans des mises en production *parallèles*", - "loc.input.label.cwd": "Répertoire de travail", - "loc.input.help.cwd": "Répertoire de travail actif dans lequel le script est exécuté. Une valeur vide représente la racine du dépôt (build) ou des artefacts (mise en production), à savoir $(System.DefaultWorkingDirectory)", - "loc.input.label.failOnStandardError": "Échec sur une erreur standard", - "loc.input.help.failOnStandardError": "Si la valeur est true, cette tâche se solde par un échec quand des erreurs sont écrites dans le flux de données StandardError. Décochez la case pour ignorer les erreurs standard et utiliser les codes de sortie afin de déterminer l'état", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "Ignorer $LASTEXITCODE", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "Si cette valeur est false, la ligne 'if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }' est ajoutée à la fin de votre script. Cela entraîne la propagation du dernier code de sortie d'une commande externe en tant que code de sortie de PowerShell. Sinon, la ligne n'est pas ajoutée à la fin de votre script.", - "loc.input.label.visibleAzLogin": "visibilité de sortie de connexion az", - "loc.input.help.visibleAzLogin": "Si la valeur est définie sur true, la commande de connexion az est générée dans la tâche. Si la valeur est définie sur false, la sortie de connexion az est supprimée", - "loc.input.label.keepAzSessionActive": "[Expérimental] Maintenir une session Azure CLI active", - "loc.input.help.keepAzSessionActive": "Si vous activez cette option, cette tâche va se connecter continuellement à Azure pour éviter des erreurs de type AADSTS700024 lors d’une demande de jetons d’accès au-delà de la date d’expiration de IdToken. Notez que cette fonctionnalité est EXPÉRIMENTALE, risque de ne pas fonctionner dans tous les scénarios et que vous l’utilisez sans aucune garantie. Valide uniquement pour les connexions de service utilisant le schéma d’authentification de fédération des identités de charge de travail.", - "loc.messages.ScriptReturnCode": "Arrêt du script. Code de retour : %d", - "loc.messages.ScriptFailed": "Échec du script. Erreur : %s", - "loc.messages.ScriptFailedStdErr": "Le script a une sortie vers stderr. Échec, car failOnStdErr a la valeur true.", - "loc.messages.ScriptFailedWithExitCode": "Échec du script. Code de sortie : %d", - "loc.messages.UnsupportedEndpointScheme": "Modèle d'autorisation de connexion de service non pris en charge : principal du service pour AzureRM", - "loc.messages.AzureSDKNotFound": "Azure CLI 2.x n'est pas installé sur cette machine.", - "loc.messages.FailedToLogout": "L'erreur suivante s'est produite durant la déconnexion : %s", - "loc.messages.LoginFailed": "Échec de la connexion Azure", - "loc.messages.MSILoginFailed": "Échec de la connexion Azure via Managed Service Identity", - "loc.messages.AuthSchemeNotSupported": "Le schéma d'authentification %s n'est pas pris en charge", - "loc.messages.ErrorInSettingUpSubscription": "Erreur durant la configuration de l'abonnement", - "loc.messages.SettingAzureConfigDir": "Affectation de %s à la variable d'environnement AZURE_CONFIG_DIR", - "loc.messages.SettingAzureCloud": "Affectation de %s au cloud actif", - "loc.messages.JS_InvalidFilePath": "Le fichier de script est introuvable à l'emplacement de script spécifié : '%s'. Vérifiez que le script existe dans le chemin spécifié. Si vous souhaitez utiliser un script inline, indiquez 'inlineScript' pour 'Script Location'.", - "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' non valide. La valeur doit correspondre à 'Stop', 'Continue' ou 'SilentlyContinue'", - "loc.messages.GlobalCliConfigAgentVersionWarning": "Pour une version d'agent < 2.115.0, seule la configuration Azure CLI globale peut être utilisée", - "loc.messages.UnacceptedScriptLocationValue": "%s n'est pas une valeur valide pour l'entrée de tâche 'Script Location' (scriptLocation en YAML). La valeur peut être 'inlineScript' ou 'scriptPath'", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "Secret expiré, mettez à jour la connexion de service à l’adresse %s Consultez https://aka.ms/azdo-rm-workload-identity-conversion pour en savoir plus sur la conversion en connexions de service sans secret.", - "loc.messages.ProxyConfig": "l’outil az est configuré pour utiliser %s comme serveur proxy", - "loc.messages.FailedToRefreshAzSession": "L’erreur suivante s’est produite lors de la tentative d’actualisation de la session az-cli : %s", - "loc.messages.RefreshingAzSession": "Tentative d’actualisation de la session az-cli... Merci de patienter.", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "L’entrée « keepAzSessionActive » est susceptible d’être uniquement utilisée pour la connexion du service ARM de fédération des identités de charge de travail. Le schéma d’authentification du point de terminaison de service référencé était inattendu : %s. Modifiez le schéma ou supprimez l’entrée « keepAzSessionActive »." +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[En savoir plus sur cette tâche](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) ou [consulter la documentation d'Azure CLI](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Exécutez des commandes Azure CLI sur un abonnement Azure via un script PowerShell Core/d'interpréteur de commandes sur un agent Linux, ou un script PowerShell/PowerShell Core/de commandes par lots sur un agent Windows.", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "Nouveautés de la version 2.0 :\n- Prise en charge de script PowerShell et PowerShell Core. \n- PowerShell Core fonctionne avec les agents multiplateformes (Linux, macOS ou Windows). Vérifiez que l'agent dispose de PowerShell version 6 ou ultérieure. \n- Un script PowerShell fonctionne uniquement avec un agent Windows. Vérifiez que l'agent dispose de PowerShell version 5 ou antérieure.", + "loc.group.displayName.advanced": "Avancé", + "loc.input.label.connectedServiceNameARM": "Connexion Azure Resource Manager", + "loc.input.help.connectedServiceNameARM": "Sélectionnez une connexion de service Azure Resource Manager pour le déploiement", + "loc.input.label.scriptType": "Type de script", + "loc.input.help.scriptType": "Type de script : PowerShell/PowerShell Core/commandes par lot/interpréteur de commandes. Sélectionnez un script d'interpréteur de commandes/PowerShell Core pour un agent Linux ou un script de commandes par lot/PowerShell/PowerShell Core pour un agent Windows. Un script PowerShell Core peut s'exécuter sur des agents multiplateformes (Linux, macOS ou Windows).", + "loc.input.label.scriptLocation": "Emplacement du script", + "loc.input.help.scriptLocation": "Chemin du script : chemin de fichier ou script inline", + "loc.input.label.scriptPath": "Chemin d'accès du script", + "loc.input.help.scriptPath": "Chemin complet du script (.ps1, .bat ou .cmd pour un agent Windows, et .ps1 ou .sh pour un agent Linux) ou chemin relatif au répertoire de travail par défaut", + "loc.input.label.inlineScript": "Script Inline", + "loc.input.help.inlineScript": "Vous pouvez écrire vos scripts inline ici. Pour les agents Windows, utilisez un script PowerShell, PowerShell Core ou de commandes par lot. Pour les agents Linux, utilisez un script PowerShell Core ou d'interpréteur de commandes. Pour les fichiers de commandes, utilisez le préfixe \"call\" avant chaque commande Azure. Vous pouvez également passer des variables prédéfinies et personnalisées à ce script à l'aide d'arguments \n\n exemple pour PowerShell/PowerShell Core/l'interpréteur de commandes : \naz --version \naz account show \n\n exemple pour les commandes par lot :\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "Arguments de script", + "loc.input.help.scriptArguments": "Arguments passés au script", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "Ajoute la ligne '$ErrorActionPreference = 'VALUE'' au début de votre script PowerShell/PowerShell Core.", + "loc.input.label.addSpnToEnvironment": "Accéder aux détails du principal de service dans le script", + "loc.input.help.addSpnToEnvironment": "Ajoute l'ID de principal de service, la clé de principal de service et l'ID de locataire du point de terminaison Azure choisi à l'environnement d'exécution du script. Vous pouvez utiliser les variables 'servicePrincipalId', 'servicePrincipalKey' et 'tenantId' dans votre script.\n\nCeci est valable uniquement quand le point de terminaison Azure a un schéma d'authentification du principal de service.\n\nSyntaxe permettant d'accéder aux variables d'environnement en fonction du type de script.\n\nScript PowerShell : $env:servicePrincipalId\n\nScript de commandes par lot : %servicePrincipalId% \n\nScript d'interpréteur de commandes : $servicePrincipalId", + "loc.input.label.useGlobalConfig": "Utiliser la configuration Azure CLI globale", + "loc.input.help.useGlobalConfig": "Si la valeur est false, cette tâche utilise son propre [répertoire de configuration Azure CLI](https://docs.microsoft.com/fr-fr/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file) distinct. Permet d'exécuter des tâches Azure CLI dans des mises en production *parallèles*", + "loc.input.label.cwd": "Répertoire de travail", + "loc.input.help.cwd": "Répertoire de travail actif dans lequel le script est exécuté. Une valeur vide représente la racine du dépôt (build) ou des artefacts (mise en production), à savoir $(System.DefaultWorkingDirectory)", + "loc.input.label.failOnStandardError": "Échec sur une erreur standard", + "loc.input.help.failOnStandardError": "Si la valeur est true, cette tâche se solde par un échec quand des erreurs sont écrites dans le flux de données StandardError. Décochez la case pour ignorer les erreurs standard et utiliser les codes de sortie afin de déterminer l'état", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "Ignorer $LASTEXITCODE", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "Si cette valeur est false, la ligne 'if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }' est ajoutée à la fin de votre script. Cela entraîne la propagation du dernier code de sortie d'une commande externe en tant que code de sortie de PowerShell. Sinon, la ligne n'est pas ajoutée à la fin de votre script.", + "loc.input.label.visibleAzLogin": "visibilité de sortie de connexion az", + "loc.input.help.visibleAzLogin": "Si la valeur est définie sur true, la commande de connexion az est générée dans la tâche. Si la valeur est définie sur false, la sortie de connexion az est supprimée", + "loc.input.label.keepAzSessionActive": "[Expérimental] Maintenir une session Azure CLI active", + "loc.input.help.keepAzSessionActive": "Si vous activez cette option, cette tâche va se connecter continuellement à Azure pour éviter des erreurs de type AADSTS700024 lors d’une demande de jetons d’accès au-delà de la date d’expiration de IdToken. Notez que cette fonctionnalité est EXPÉRIMENTALE, risque de ne pas fonctionner dans tous les scénarios et que vous l’utilisez sans aucune garantie. Valide uniquement pour les connexions de service utilisant le schéma d’authentification de fédération des identités de charge de travail.", + "loc.messages.ScriptReturnCode": "Arrêt du script. Code de retour : %d", + "loc.messages.ScriptFailed": "Échec du script. Erreur : %s", + "loc.messages.ScriptFailedStdErr": "Le script a une sortie vers stderr. Échec, car failOnStdErr a la valeur true.", + "loc.messages.ScriptFailedWithExitCode": "Échec du script. Code de sortie : %d", + "loc.messages.UnsupportedEndpointScheme": "Modèle d'autorisation de connexion de service non pris en charge : principal du service pour AzureRM", + "loc.messages.AzureSDKNotFound": "Azure CLI 2.x n'est pas installé sur cette machine.", + "loc.messages.FailedToLogout": "L'erreur suivante s'est produite durant la déconnexion : %s", + "loc.messages.LoginFailed": "Échec de la connexion Azure", + "loc.messages.MSILoginFailed": "Échec de la connexion Azure via Managed Service Identity", + "loc.messages.AuthSchemeNotSupported": "Le schéma d'authentification %s n'est pas pris en charge", + "loc.messages.ErrorInSettingUpSubscription": "Erreur durant la configuration de l'abonnement", + "loc.messages.SettingAzureConfigDir": "Affectation de %s à la variable d'environnement AZURE_CONFIG_DIR", + "loc.messages.SettingAzureCloud": "Affectation de %s au cloud actif", + "loc.messages.JS_InvalidFilePath": "Le fichier de script est introuvable à l'emplacement de script spécifié : '%s'. Vérifiez que le script existe dans le chemin spécifié. Si vous souhaitez utiliser un script inline, indiquez 'inlineScript' pour 'Script Location'.", + "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' non valide. La valeur doit correspondre à 'Stop', 'Continue' ou 'SilentlyContinue'", + "loc.messages.GlobalCliConfigAgentVersionWarning": "Pour une version d'agent < 2.115.0, seule la configuration Azure CLI globale peut être utilisée", + "loc.messages.UnacceptedScriptLocationValue": "%s n’est pas une valeur valide pour l’entrée de tâche « Emplacement du script » (scriptLocation dans YAML). La valeur peut être 'inlineScript' ou 'scriptPath'", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "Secret expiré, mettez à jour la connexion de service à l’adresse %s Consultez https://aka.ms/azdo-rm-workload-identity-conversion pour en savoir plus sur la conversion en connexions de service sans secret.", + "loc.messages.ProxyConfig": "l’outil az est configuré pour utiliser %s comme serveur proxy", + "loc.messages.FailedToRefreshAzSession": "L’erreur suivante s’est produite lors de la tentative d’actualisation de la session az-cli : %s", + "loc.messages.RefreshingAzSession": "Tentative d’actualisation de la session az-cli... Merci de patienter.", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "L’entrée « keepAzSessionActive » est susceptible d’être uniquement utilisée pour la connexion du service ARM de fédération des identités de charge de travail. Le schéma d’authentification du point de terminaison de service référencé était inattendu : %s. Modifiez le schéma ou supprimez l’entrée « keepAzSessionActive »." } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/it-IT/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/it-IT/resources.resjson index d0dd616fc988..be3780289777 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/it-IT/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/it-IT/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Interfaccia della riga di comando di Azure", - "loc.helpMarkDown": "[Altre informazioni su questa attività](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md). In alternativa [vedere la documentazione dell'interfaccia della riga di comando di Azure](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Consente di eseguire i comandi dell'interfaccia della riga di comando di Azure su una sottoscrizione di Azure in uno script PowerShell Core o della shell quando viene eseguito in un agente Linux oppure in uno script PowerShell/PowerShell Core/Batch quando viene eseguito in un agente Windows.", - "loc.instanceNameFormat": "Interfaccia della riga di comando di Azure $(scriptPath)", - "loc.releaseNotes": "Novità della versione 2.0:\n- Supporto per script PowerShell e PowerShell Core. \n- PowerShell Core è compatibile con agenti multipiattaforma (Linux, macOS o Windows). Assicurarsi che nell'agente sia installato almeno PowerShell versione 6. \n- Lo script Powershell è compatibile solo con l'agente Windows. Assicurarsi che nell'agente sia installato PowerShell versione 5 o versione precedente.", - "loc.group.displayName.advanced": "Avanzate", - "loc.input.label.connectedServiceNameARM": "Connessione ad Azure Resource Manager", - "loc.input.help.connectedServiceNameARM": "Consente di selezionare una connessione al servizio Azure Resource Manager per la distribuzione", - "loc.input.label.scriptType": "Tipo di script", - "loc.input.help.scriptType": "Tipo di script: script PowerShell/PowerShell Core/batch o della shell. Selezionare lo script PowerShell Core o della shell quando viene eseguito in un agente Linux oppure lo script batch/PowerShell/PowerShell Core quando viene eseguito nell'agente Windows. Lo script PowerShell Core può essere eseguito in agenti multipiattaforma (Linux, macOS o Windows).", - "loc.input.label.scriptLocation": "Percorso script", - "loc.input.help.scriptLocation": "Percorso dello script: Percorso file o Script inline", - "loc.input.label.scriptPath": "Percorso script", - "loc.input.help.scriptPath": "Percorso completo dello script (con estensione .ps1, .bat o .cmd quando si usa l'agente basato su Windows ed estensione .ps1 o .sh quando si usa l'agente basato su Linux) oppure un percorso relativo alla directory di lavoro predefinita", - "loc.input.label.inlineScript": "Script inline", - "loc.input.help.inlineScript": "È possibile scrivere qui gli script inline. Con l'agente Windows, usare script PowerShell/PowerShell Core/batch, mentre con gli agenti basati su Linux, usare script PowerShell Core o della shell. Per i file batch usare il prefisso \"call\" prima di ogni comando di Azure. È anche possibile passare a questo script variabili predefinite e personalizzate usando gli argomenti \n\n Esempio per PowerShell/PowerShellCore/shell: \naz --version \naz account show \n\n Esempio per batch:\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "Argomenti script", - "loc.input.help.scriptArguments": "Argomenti passati allo script", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "Antepone la riga `$ErrorActionPreference = 'VALUE'` all'inizio dello script PowerShell/PowerShell Core.", - "loc.input.label.addSpnToEnvironment": "Accedi ai dettagli dell'entità servizio nello script", - "loc.input.help.addSpnToEnvironment": "Aggiunge l'ID entità servizio, la chiave dell'entità servizio e l'ID tenant dell'endpoint di Azure scelto all'ambiente di esecuzione dello script. Nello script è possibile usare le variabili `servicePrincipalId`, `servicePrincipalKey` and `tenantId`.\n\nQuesta opzione è consentita solo quando l'endpoint di Azure prevede lo schema di autenticazione dell'entità servizio.\n\nSintassi per accedere alle variabili di ambiente in base al tipo di script.\n\nScript Powershell: $env:servicePrincipalId\n\nScript batch: %servicePrincipalId% \n\nScript della shell: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "Usa la configurazione globale dell'interfaccia della riga di comando di Azure", - "loc.input.help.useGlobalConfig": "Se è false, questa attività userà una [directory di configurazione dell'interfaccia della riga di comando di Azure](https://docs.microsoft.com/it-it/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file) separata. Può essere usato per eseguire attività dell'interfaccia della riga di comando di Azure in versioni *parallele*", - "loc.input.label.cwd": "Directory di lavoro", - "loc.input.help.cwd": "Directory di lavoro corrente in cui viene eseguito lo script. Se non si specifica un valore, corrisponde alla radice del repository (compilazione) o degli artefatti (versione), ovvero $(System.DefaultWorkingDirectory)", - "loc.input.label.failOnStandardError": "Interrompi in caso di errore standard", - "loc.input.help.failOnStandardError": "Se è impostato su true, questa attività non riuscirà nel caso in cui vengano scritti errori nel flusso StandardError. Deselezionare la casella di controllo per ignorare gli errori standard e determinare lo stato in base ai codici di uscita", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "Ignora $LASTEXITCODE", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "Se è false, la riga 'if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }' viene aggiunta alla fine dello script. In questo modo l'ultimo codice di uscita da un comando esterno verrà propagato come codice di uscita di PowerShell. In caso contrario, la riga non viene aggiunta alla fine dello script.", - "loc.input.label.visibleAzLogin": "visibilità dell'output dell'account di accesso az", - "loc.input.help.visibleAzLogin": "Se questa opzione è impostata su true, l'output del comando az login verrà restituito all'attività. Se si imposta su false, l'output dell'account di accesso az verrà eliminato", - "loc.input.label.keepAzSessionActive": "[Sperimentale] Mantenere attiva la sessione dell'interfaccia della riga di comando di Azure", - "loc.input.help.keepAzSessionActive": "Se abilitata, questa attività accederà continuamente ad Azure per evitare errori AADSTS700024 durante la richiesta di token di accesso oltre la data di scadenza di IdToken. Si noti che questa funzionalità è SPERIMENTALE, potrebbe non funzionare in tutti gli scenari e viene usata senza alcuna garanzia. Valido solo per le connessioni al servizio che usano lo schema di autenticazione della federazione delle identità del carico di lavoro.", - "loc.messages.ScriptReturnCode": "Lo script è stato terminato. Codice restituito: %d", - "loc.messages.ScriptFailed": "Lo script non è riuscito. Errore: %s", - "loc.messages.ScriptFailedStdErr": "L'output dello script viene inviato a STDERR. Verrà restituito un errore perché failOnStdErr è impostato su true.", - "loc.messages.ScriptFailedWithExitCode": "Lo script non è riuscito. Codice di uscita: %d", - "loc.messages.UnsupportedEndpointScheme": "Schema di autorizzazione della connessione al servizio non supportato: entità servizio per AzureRM", - "loc.messages.AzureSDKNotFound": "In questo computer non è installata la versione 2.x dell'interfaccia della riga di comando di Azure.", - "loc.messages.FailedToLogout": "Durante la disconnessione si è verificato l'errore seguente: %s", - "loc.messages.LoginFailed": "L'accesso ad Azure non è riuscito", - "loc.messages.MSILoginFailed": "L'accesso di Azure con l'identità del servizio gestita non è riuscito", - "loc.messages.AuthSchemeNotSupported": "Lo schema di autenticazione %s non è supportato", - "loc.messages.ErrorInSettingUpSubscription": "Si è verificato un errore durante la configurazione della sottoscrizione", - "loc.messages.SettingAzureConfigDir": "Impostazione della variabile di ambiente AZURE_CONFIG_DIR su: %s", - "loc.messages.SettingAzureCloud": "Impostazione del cloud attivo su: %s", - "loc.messages.JS_InvalidFilePath": "Non è stato possibile trovare il file di script nel percorso dello script specificato: '%s'. Verificare che lo script esista nel percorso specificato. Se si vuole usare lo script inline, specificare `inlineScript` come valore di input di `Percorso script`.", - "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' non valido. Il valore deve essere uno tra i seguenti: 'Stop', 'Continue' o 'SilentlyContinue'", - "loc.messages.GlobalCliConfigAgentVersionWarning": "Se la versione dell'agente è inferiore a quella 2.115.0, è possibile usare solo la configurazione globale dell'interfaccia della riga di comando di Azure", - "loc.messages.UnacceptedScriptLocationValue": "%s non è un valore valido per il valore di input attività 'Percorso script' (scriptLocation in YAML). Il valore può essere 'inlineScript' o 'scriptPath'", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "Segreto scaduto. Aggiornare la connessione al servizio in %s Per altre informazioni sulla conversione a connessioni al servizio senza segreto, vedere https://aka.ms/azdo-rm-workload-identity-conversion.", - "loc.messages.ProxyConfig": "lo strumento az è configurato per l'utilizzo di %s come server proxy", - "loc.messages.FailedToRefreshAzSession": "Si è verificato l'errore seguente durante il tentativo di aggiornare la sessione az-cli: %s", - "loc.messages.RefreshingAzSession": "Tentativo di aggiornamento della sessione az-cli in corso...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "L'input 'keepAzSessionActive' può essere usato solo per la connessione al servizio ARM della federazione delle identità del carico di lavoro. Schema di autenticazione dell'endpoint servizio a cui si fa riferimento imprevisto: %s. Modificare lo schema o rimuovere l'input 'keepAzSessionActive'." +{ + "loc.friendlyName": "Interfaccia della riga di comando di Azure", + "loc.helpMarkDown": "[Altre informazioni su questa attività](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md). In alternativa [vedere la documentazione dell'interfaccia della riga di comando di Azure](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Consente di eseguire i comandi dell'interfaccia della riga di comando di Azure su una sottoscrizione di Azure in uno script PowerShell Core o della shell quando viene eseguito in un agente Linux oppure in uno script PowerShell/PowerShell Core/Batch quando viene eseguito in un agente Windows.", + "loc.instanceNameFormat": "Interfaccia della riga di comando di Azure $(scriptPath)", + "loc.releaseNotes": "Novità della versione 2.0:\n- Supporto per script PowerShell e PowerShell Core. \n- PowerShell Core è compatibile con agenti multipiattaforma (Linux, macOS o Windows). Assicurarsi che nell'agente sia installato almeno PowerShell versione 6. \n- Lo script Powershell è compatibile solo con l'agente Windows. Assicurarsi che nell'agente sia installato PowerShell versione 5 o versione precedente.", + "loc.group.displayName.advanced": "Avanzate", + "loc.input.label.connectedServiceNameARM": "Connessione ad Azure Resource Manager", + "loc.input.help.connectedServiceNameARM": "Consente di selezionare una connessione al servizio Azure Resource Manager per la distribuzione", + "loc.input.label.scriptType": "Tipo di script", + "loc.input.help.scriptType": "Tipo di script: script PowerShell/PowerShell Core/batch o della shell. Selezionare lo script PowerShell Core o della shell quando viene eseguito in un agente Linux oppure lo script batch/PowerShell/PowerShell Core quando viene eseguito nell'agente Windows. Lo script PowerShell Core può essere eseguito in agenti multipiattaforma (Linux, macOS o Windows).", + "loc.input.label.scriptLocation": "Percorso script", + "loc.input.help.scriptLocation": "Percorso dello script: Percorso file o Script inline", + "loc.input.label.scriptPath": "Percorso script", + "loc.input.help.scriptPath": "Percorso completo dello script (con estensione .ps1, .bat o .cmd quando si usa l'agente basato su Windows ed estensione .ps1 o .sh quando si usa l'agente basato su Linux) oppure un percorso relativo alla directory di lavoro predefinita", + "loc.input.label.inlineScript": "Script inline", + "loc.input.help.inlineScript": "È possibile scrivere qui gli script inline. Con l'agente Windows, usare script PowerShell/PowerShell Core/batch, mentre con gli agenti basati su Linux, usare script PowerShell Core o della shell. Per i file batch usare il prefisso \"call\" prima di ogni comando di Azure. È anche possibile passare a questo script variabili predefinite e personalizzate usando gli argomenti \n\n Esempio per PowerShell/PowerShellCore/shell: \naz --version \naz account show \n\n Esempio per batch:\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "Argomenti script", + "loc.input.help.scriptArguments": "Argomenti passati allo script", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "Antepone la riga `$ErrorActionPreference = 'VALUE'` all'inizio dello script PowerShell/PowerShell Core.", + "loc.input.label.addSpnToEnvironment": "Accedi ai dettagli dell'entità servizio nello script", + "loc.input.help.addSpnToEnvironment": "Aggiunge l'ID entità servizio, la chiave dell'entità servizio e l'ID tenant dell'endpoint di Azure scelto all'ambiente di esecuzione dello script. Nello script è possibile usare le variabili `servicePrincipalId`, `servicePrincipalKey` and `tenantId`.\n\nQuesta opzione è consentita solo quando l'endpoint di Azure prevede lo schema di autenticazione dell'entità servizio.\n\nSintassi per accedere alle variabili di ambiente in base al tipo di script.\n\nScript Powershell: $env:servicePrincipalId\n\nScript batch: %servicePrincipalId% \n\nScript della shell: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "Usa la configurazione globale dell'interfaccia della riga di comando di Azure", + "loc.input.help.useGlobalConfig": "Se è false, questa attività userà una [directory di configurazione dell'interfaccia della riga di comando di Azure](https://docs.microsoft.com/it-it/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file) separata. Può essere usato per eseguire attività dell'interfaccia della riga di comando di Azure in versioni *parallele*", + "loc.input.label.cwd": "Directory di lavoro", + "loc.input.help.cwd": "Directory di lavoro corrente in cui viene eseguito lo script. Se non si specifica un valore, corrisponde alla radice del repository (compilazione) o degli artefatti (versione), ovvero $(System.DefaultWorkingDirectory)", + "loc.input.label.failOnStandardError": "Interrompi in caso di errore standard", + "loc.input.help.failOnStandardError": "Se è impostato su true, questa attività non riuscirà nel caso in cui vengano scritti errori nel flusso StandardError. Deselezionare la casella di controllo per ignorare gli errori standard e determinare lo stato in base ai codici di uscita", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "Ignora $LASTEXITCODE", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "Se è false, la riga 'if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }' viene aggiunta alla fine dello script. In questo modo l'ultimo codice di uscita da un comando esterno verrà propagato come codice di uscita di PowerShell. In caso contrario, la riga non viene aggiunta alla fine dello script.", + "loc.input.label.visibleAzLogin": "visibilità dell'output dell'account di accesso az", + "loc.input.help.visibleAzLogin": "Se questa opzione è impostata su true, l'output del comando az login verrà restituito all'attività. Se si imposta su false, l'output dell'account di accesso az verrà eliminato", + "loc.input.label.keepAzSessionActive": "[Sperimentale] Mantenere attiva la sessione dell'interfaccia della riga di comando di Azure", + "loc.input.help.keepAzSessionActive": "Se abilitata, questa attività accederà continuamente ad Azure per evitare errori AADSTS700024 durante la richiesta di token di accesso oltre la data di scadenza di IdToken. Si noti che questa funzionalità è SPERIMENTALE, potrebbe non funzionare in tutti gli scenari e viene usata senza alcuna garanzia. Valido solo per le connessioni al servizio che usano lo schema di autenticazione della federazione delle identità del carico di lavoro.", + "loc.messages.ScriptReturnCode": "Lo script è stato terminato. Codice restituito: %d", + "loc.messages.ScriptFailed": "Lo script non è riuscito. Errore: %s", + "loc.messages.ScriptFailedStdErr": "L'output dello script viene inviato a STDERR. Verrà restituito un errore perché failOnStdErr è impostato su true.", + "loc.messages.ScriptFailedWithExitCode": "Lo script non è riuscito. Codice di uscita: %d", + "loc.messages.UnsupportedEndpointScheme": "Schema di autorizzazione della connessione al servizio non supportato: entità servizio per AzureRM", + "loc.messages.AzureSDKNotFound": "In questo computer non è installata la versione 2.x dell'interfaccia della riga di comando di Azure.", + "loc.messages.FailedToLogout": "Durante la disconnessione si è verificato l'errore seguente: %s", + "loc.messages.LoginFailed": "L'accesso ad Azure non è riuscito", + "loc.messages.MSILoginFailed": "L'accesso di Azure con l'identità del servizio gestita non è riuscito", + "loc.messages.AuthSchemeNotSupported": "Lo schema di autenticazione %s non è supportato", + "loc.messages.ErrorInSettingUpSubscription": "Si è verificato un errore durante la configurazione della sottoscrizione", + "loc.messages.SettingAzureConfigDir": "Impostazione della variabile di ambiente AZURE_CONFIG_DIR su: %s", + "loc.messages.SettingAzureCloud": "Impostazione del cloud attivo su: %s", + "loc.messages.JS_InvalidFilePath": "Non è stato possibile trovare il file di script nel percorso dello script specificato: '%s'. Verificare che lo script esista nel percorso specificato. Se si vuole usare lo script inline, specificare `inlineScript` come valore di input di `Percorso script`.", + "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' non valido. Il valore deve essere uno tra i seguenti: 'Stop', 'Continue' o 'SilentlyContinue'", + "loc.messages.GlobalCliConfigAgentVersionWarning": "Se la versione dell'agente è inferiore a quella 2.115.0, è possibile usare solo la configurazione globale dell'interfaccia della riga di comando di Azure", + "loc.messages.UnacceptedScriptLocationValue": "%s non è un valore valido per l'input dell'attività 'Percorso script' (scriptLocation in YAML). Il valore può essere 'inlineScript' o 'scriptPath'", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "Segreto scaduto. Aggiornare la connessione al servizio in %s Per altre informazioni sulla conversione a connessioni al servizio senza segreto, vedere https://aka.ms/azdo-rm-workload-identity-conversion.", + "loc.messages.ProxyConfig": "lo strumento az è configurato per l'utilizzo di %s come server proxy", + "loc.messages.FailedToRefreshAzSession": "Si è verificato l'errore seguente durante il tentativo di aggiornare la sessione az-cli: %s", + "loc.messages.RefreshingAzSession": "Tentativo di aggiornamento della sessione az-cli in corso...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "L'input 'keepAzSessionActive' può essere usato solo per la connessione al servizio ARM della federazione delle identità del carico di lavoro. Schema di autenticazione dell'endpoint servizio a cui si fa riferimento imprevisto: %s. Modificare lo schema o rimuovere l'input 'keepAzSessionActive'." } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/ja-JP/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/ja-JP/resources.resjson index d8d964b9cd18..15c439cc0517 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/ja-JP/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/ja-JP/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[このタスクの詳細を表示](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md)、または [Azure CLI のドキュメントを参照](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Linux エージェントで実行している場合は PowerShell Core またはシェル スクリプト、Windows エージェントで実行している場合は PowerShell、PowerShell Core、バッチ スクリプトで、Azure サブスクリプションに対して Azure CLI コマンドを実行します。", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "バージョン 2.0 の新機能:\n- PowerShell および PowerShell Core スクリプトのサポート。\n- PowerShell Core はクロスプラットフォーム エージェント (Linux、macOS、または Windows) で動作します。エージェントに PowerShell バージョン 6 以上があることをご確認ください。\n- PowerShell スクリプトは Windows エージェントのみで動作します。エージェントに PowerShell バージョン 5 以下があることをご確認ください。", - "loc.group.displayName.advanced": "詳細設定", - "loc.input.label.connectedServiceNameARM": "Azure Resource Manager 接続", - "loc.input.help.connectedServiceNameARM": "デプロイ用の Azure Resource Manager サービス接続を選択します", - "loc.input.label.scriptType": "スクリプトの種類", - "loc.input.help.scriptType": "スクリプトの種類: PowerShell、PowerShell Core、Bat、シェル スクリプト。Linux エージェントで実行している場合はシェルまたは PowerShell Core スクリプト、Windows エージェントで実行している場合は Batch、PowerShell、PowerShell Core スクリプトのいずれかを選択します。PowerShell Core スクリプトは、クロスプラットフォーム エージェント (Linux、macOS、または Windows) で実行できます。", - "loc.input.label.scriptLocation": "スクリプトの場所", - "loc.input.help.scriptLocation": "スクリプトへのパス: ファイル パスまたはインライン スクリプト", - "loc.input.label.scriptPath": "スクリプト パス", - "loc.input.help.scriptPath": "スクリプト (Windows ベースのエージェントを使用している場合は .ps1、.bat、.cmd のいずれか、Linux ベースのエージェントを使用している場合は .ps1 または .sh) の完全修飾パスまたは既定の作業ディレクトリからの相対パス", - "loc.input.label.inlineScript": "インライン スクリプト", - "loc.input.help.inlineScript": "こちらにスクリプトをインラインで記述できます。Windows エージェントを使用する場合は PowerShell、PowerShell Core、バッチ スクリプトのいずれかを使用し、Linux ベースのエージェントを使用する場合は PowerShell Core かシェル スクリプトを使用します。バッチ ファイルの場合、それぞれの azure コマンドの前にプレフィックス \"call\" を使用します。また、引数を使用して、事前定義された変数とカスタム変数をこのスクリプトに渡すこともできます。\n\n PowerShell、PowerShellCore、シェルの例: \naz --version \naz account show \n\n バッチの例: \ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "スクリプトの引数", - "loc.input.help.scriptArguments": "スクリプトに渡される引数", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "PowerShell または PowerShell Core スクリプトの先頭に、`$ErrorActionPreference = 'VALUE'` という行を追加します。", - "loc.input.label.addSpnToEnvironment": "スクリプト内のサービス プリンシパルの詳細にアクセスする", - "loc.input.help.addSpnToEnvironment": "選択した Azure エンドポイントのサービス プリンシパル ID、サービス プリンシパル キー、テナント ID をスクリプトの実行環境に追加します。スクリプトでは、変数 'servicePrincipalId'、'servicePrincipalKey'、'tenantId' を使用できます。\n\nこれは、Azure エンドポイントにサービス プリンシパルの認証スキームがある場合にのみ受け付けられます。\n\nスクリプトの種類に基づいて環境変数にアクセスするための構文。\n\nPowerShell スクリプト: $env:servicePrincipalId\n\nバッチ スクリプト: %servicePrincipalId%\n\nシェル スクリプト: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "グローバルの Azure CLI 構成を使用する", - "loc.input.help.useGlobalConfig": "この値が false の場合、このタスクでは別個の [Azure CLI 構成ディレクトリ](https://docs.microsoft.com/ja-jp/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)が使用されます。これは、*並列*リリースで Azure CLI タスクを実行するために使用できます", - "loc.input.label.cwd": "作業ディレクトリ", - "loc.input.help.cwd": "スクリプトを実行する現行の作業ディレクトリ。空白はリポジトリ (ビルド) または成果物 (リリース) のルートであり、$(System.DefaultWorkingDirectory) となります", - "loc.input.label.failOnStandardError": "標準エラーで失敗", - "loc.input.help.failOnStandardError": "これが true の場合、StandardError ストリームにエラーが書き込まれると、このタスクは失敗します。チェック ボックスを選択解除して標準エラーを無視し、終了コードから状態を確認します", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "$LASTEXITCODE を無視する", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "これが false の場合、行 `if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }` がスクリプトの末尾に追加されます。この行があると、外部コマンドからの最後の終了コードが PowerShell の終了コードとして伝達されます。それ以外の場合、スクリプトの末尾にこの行が追加されることはありません。", - "loc.input.label.visibleAzLogin": "az ログイン出力の可視性", - "loc.input.help.visibleAzLogin": "これが true に設定されている場合、az login コマンドはタスクに出力します。false に設定すると、az ログイン出力は表示されません", - "loc.input.label.keepAzSessionActive": "[試験段階l] Azure CLI セッションをアクティブに保ってください", - "loc.input.help.keepAzSessionActive": "有効にすると、このタスクは引き続き Azure にサインインし、IdToken の有効期限を超えてアクセス トークンを要求するときに AADSTS700024 エラーが発生しないようにします。この機能は試験段階であるため、すべてのシナリオでは動作しない場合があり、保証なしで使用していることにご注意ください。ワークロード ID フェデレーション認証スキームを使用するサービス接続に対してのみ有効です。", - "loc.messages.ScriptReturnCode": "スクリプトが次のリターン コードで終了しました: %d", - "loc.messages.ScriptFailed": "スクリプトがエラーで失敗しました: %s", - "loc.messages.ScriptFailedStdErr": "スクリプトに stderr への出力があります。failOnStdErr が true に設定されているため、失敗しています。", - "loc.messages.ScriptFailedWithExitCode": "スクリプトが終了コード %d で失敗しました", - "loc.messages.UnsupportedEndpointScheme": "サポートされていないサービス接続の認証スキーム: AzureRM に対するサービス プリンシパル", - "loc.messages.AzureSDKNotFound": "Azure CLI 2.x はこのマシンにインストールされていません。", - "loc.messages.FailedToLogout": "ログアウト中に次のエラーが発生しました: %s", - "loc.messages.LoginFailed": "Azure のログインに失敗しました", - "loc.messages.MSILoginFailed": "マネージド サービス ID を使用する Azure ログインが失敗しました", - "loc.messages.AuthSchemeNotSupported": "認証スキーム %s はサポートされていません", - "loc.messages.ErrorInSettingUpSubscription": "サブスクリプションの設定のエラー", - "loc.messages.SettingAzureConfigDir": "AZURE_CONFIG_DIR 環境変数を %s に設定しています", - "loc.messages.SettingAzureCloud": "アクティブ クラウドを %s に設定しています", - "loc.messages.JS_InvalidFilePath": "指定されたスクリプトの場所 '%s' でスクリプト ファイルが見つかりませんでした。指定されたパスにスクリプトが存在することをご確認ください。インライン スクリプトを使用する場合は、入力 'スクリプトの場所' を 'inlineScript' と指定してください。", - "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' は無効です。値は、'Stop'、'Continue'、'SilentlyContinue' のいずれかである必要があります", - "loc.messages.GlobalCliConfigAgentVersionWarning": "エージェント バージョンが 2.115.0 より前の場合、グローバルの Azure CLI 構成のみ使用できます", - "loc.messages.UnacceptedScriptLocationValue": "%s はタスク入力 'スクリプトの場所' (YAML での scriptLocation) の有効な値ではありません。値には 'inlineScript' または 'scriptPath' のいずれかを指定できます", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "シークレットの有効期限が切れました。%s でサービスの接続を更新してください。秘密度の低いサービスの接続への変換については、https://aka.ms/azdo-rm-workload-identity-conversion を参照してください。", - "loc.messages.ProxyConfig": "az ツールは、%s をプロキシ サーバーとして使用するように構成されています", - "loc.messages.FailedToRefreshAzSession": "az-cli セッションの更新中に次のエラーが発生しました: %s", - "loc.messages.RefreshingAzSession": "az-cli セッションを更新しようとしています...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "'keepAzSessionActive' 入力は、ワークロード ID フェデレーション ARM サービス接続でのみ使用できます。参照されたサービス エンドポイント認証スキームは予期されていませんでした: %s。スキームを変更するか、'keepAzSessionActive' 入力を削除します。" +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[このタスクの詳細を表示](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md)、または [Azure CLI のドキュメントを参照](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Linux エージェントで実行している場合は PowerShell Core またはシェル スクリプト、Windows エージェントで実行している場合は PowerShell、PowerShell Core、バッチ スクリプトで、Azure サブスクリプションに対して Azure CLI コマンドを実行します。", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "バージョン 2.0 の新機能:\n- PowerShell および PowerShell Core スクリプトのサポート。\n- PowerShell Core はクロスプラットフォーム エージェント (Linux、macOS、または Windows) で動作します。エージェントに PowerShell バージョン 6 以上があることをご確認ください。\n- PowerShell スクリプトは Windows エージェントのみで動作します。エージェントに PowerShell バージョン 5 以下があることをご確認ください。", + "loc.group.displayName.advanced": "詳細設定", + "loc.input.label.connectedServiceNameARM": "Azure Resource Manager 接続", + "loc.input.help.connectedServiceNameARM": "デプロイ用の Azure Resource Manager サービス接続を選択します", + "loc.input.label.scriptType": "スクリプトの種類", + "loc.input.help.scriptType": "スクリプトの種類: PowerShell、PowerShell Core、Bat、シェル スクリプト。Linux エージェントで実行している場合はシェルまたは PowerShell Core スクリプト、Windows エージェントで実行している場合は Batch、PowerShell、PowerShell Core スクリプトのいずれかを選択します。PowerShell Core スクリプトは、クロスプラットフォーム エージェント (Linux、macOS、または Windows) で実行できます。", + "loc.input.label.scriptLocation": "スクリプトの場所", + "loc.input.help.scriptLocation": "スクリプトへのパス: ファイル パスまたはインライン スクリプト", + "loc.input.label.scriptPath": "スクリプト パス", + "loc.input.help.scriptPath": "スクリプト (Windows ベースのエージェントを使用している場合は .ps1、.bat、.cmd のいずれか、Linux ベースのエージェントを使用している場合は .ps1 または .sh) の完全修飾パスまたは既定の作業ディレクトリからの相対パス", + "loc.input.label.inlineScript": "インライン スクリプト", + "loc.input.help.inlineScript": "こちらにスクリプトをインラインで記述できます。Windows エージェントを使用する場合は PowerShell、PowerShell Core、バッチ スクリプトのいずれかを使用し、Linux ベースのエージェントを使用する場合は PowerShell Core かシェル スクリプトを使用します。バッチ ファイルの場合、それぞれの azure コマンドの前にプレフィックス \"call\" を使用します。また、引数を使用して、事前定義された変数とカスタム変数をこのスクリプトに渡すこともできます。\n\n PowerShell、PowerShellCore、シェルの例: \naz --version \naz account show \n\n バッチの例: \ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "スクリプトの引数", + "loc.input.help.scriptArguments": "スクリプトに渡される引数", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "PowerShell または PowerShell Core スクリプトの先頭に、`$ErrorActionPreference = 'VALUE'` という行を追加します。", + "loc.input.label.addSpnToEnvironment": "スクリプト内のサービス プリンシパルの詳細にアクセスする", + "loc.input.help.addSpnToEnvironment": "選択した Azure エンドポイントのサービス プリンシパル ID、サービス プリンシパル キー、テナント ID をスクリプトの実行環境に追加します。スクリプトでは、変数 'servicePrincipalId'、'servicePrincipalKey'、'tenantId' を使用できます。\n\nこれは、Azure エンドポイントにサービス プリンシパルの認証スキームがある場合にのみ受け付けられます。\n\nスクリプトの種類に基づいて環境変数にアクセスするための構文。\n\nPowerShell スクリプト: $env:servicePrincipalId\n\nバッチ スクリプト: %servicePrincipalId%\n\nシェル スクリプト: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "グローバルの Azure CLI 構成を使用する", + "loc.input.help.useGlobalConfig": "この値が false の場合、このタスクでは別個の [Azure CLI 構成ディレクトリ](https://docs.microsoft.com/ja-jp/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)が使用されます。これは、*並列*リリースで Azure CLI タスクを実行するために使用できます", + "loc.input.label.cwd": "作業ディレクトリ", + "loc.input.help.cwd": "スクリプトを実行する現行の作業ディレクトリ。空白はリポジトリ (ビルド) または成果物 (リリース) のルートであり、$(System.DefaultWorkingDirectory) となります", + "loc.input.label.failOnStandardError": "標準エラーで失敗", + "loc.input.help.failOnStandardError": "これが true の場合、StandardError ストリームにエラーが書き込まれると、このタスクは失敗します。チェック ボックスを選択解除して標準エラーを無視し、終了コードから状態を確認します", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "$LASTEXITCODE を無視する", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "これが false の場合、行 `if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }` がスクリプトの末尾に追加されます。この行があると、外部コマンドからの最後の終了コードが PowerShell の終了コードとして伝達されます。それ以外の場合、スクリプトの末尾にこの行が追加されることはありません。", + "loc.input.label.visibleAzLogin": "az ログイン出力の可視性", + "loc.input.help.visibleAzLogin": "これが true に設定されている場合、az login コマンドはタスクに出力します。false に設定すると、az ログイン出力は表示されません", + "loc.input.label.keepAzSessionActive": "[試験段階l] Azure CLI セッションをアクティブに保ってください", + "loc.input.help.keepAzSessionActive": "有効にすると、このタスクは引き続き Azure にサインインし、IdToken の有効期限を超えてアクセス トークンを要求するときに AADSTS700024 エラーが発生しないようにします。この機能は試験段階であるため、すべてのシナリオでは動作しない場合があり、保証なしで使用していることにご注意ください。ワークロード ID フェデレーション認証スキームを使用するサービス接続に対してのみ有効です。", + "loc.messages.ScriptReturnCode": "スクリプトが次のリターン コードで終了しました: %d", + "loc.messages.ScriptFailed": "スクリプトがエラーで失敗しました: %s", + "loc.messages.ScriptFailedStdErr": "スクリプトに stderr への出力があります。failOnStdErr が true に設定されているため、失敗しています。", + "loc.messages.ScriptFailedWithExitCode": "スクリプトが終了コード %d で失敗しました", + "loc.messages.UnsupportedEndpointScheme": "サポートされていないサービス接続の認証スキーム: AzureRM に対するサービス プリンシパル", + "loc.messages.AzureSDKNotFound": "Azure CLI 2.x はこのマシンにインストールされていません。", + "loc.messages.FailedToLogout": "ログアウト中に次のエラーが発生しました: %s", + "loc.messages.LoginFailed": "Azure のログインに失敗しました", + "loc.messages.MSILoginFailed": "マネージド サービス ID を使用する Azure ログインが失敗しました", + "loc.messages.AuthSchemeNotSupported": "認証スキーム %s はサポートされていません", + "loc.messages.ErrorInSettingUpSubscription": "サブスクリプションの設定のエラー", + "loc.messages.SettingAzureConfigDir": "AZURE_CONFIG_DIR 環境変数を %s に設定しています", + "loc.messages.SettingAzureCloud": "アクティブ クラウドを %s に設定しています", + "loc.messages.JS_InvalidFilePath": "指定されたスクリプトの場所 '%s' でスクリプト ファイルが見つかりませんでした。指定されたパスにスクリプトが存在することをご確認ください。インライン スクリプトを使用する場合は、入力 'スクリプトの場所' を 'inlineScript' と指定してください。", + "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' は無効です。値は、'Stop'、'Continue'、'SilentlyContinue' のいずれかである必要があります", + "loc.messages.GlobalCliConfigAgentVersionWarning": "エージェント バージョンが 2.115.0 より前の場合、グローバルの Azure CLI 構成のみ使用できます", + "loc.messages.UnacceptedScriptLocationValue": "%s は、タスク入力 'Script Location' (YAML の scriptLocation) に対して有効な値ではありません。値には 'inlineScript' または 'scriptPath' を指定できます", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "シークレットの有効期限が切れました。%s でサービスの接続を更新してください。秘密度の低いサービスの接続への変換については、https://aka.ms/azdo-rm-workload-identity-conversion を参照してください。", + "loc.messages.ProxyConfig": "az ツールは、%s をプロキシ サーバーとして使用するように構成されています", + "loc.messages.FailedToRefreshAzSession": "az-cli セッションの更新中に次のエラーが発生しました: %s", + "loc.messages.RefreshingAzSession": "az-cli セッションを更新しようとしています...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "'keepAzSessionActive' 入力は、ワークロード ID フェデレーション ARM サービス接続でのみ使用できます。参照されたサービス エンドポイント認証スキームは予期されていませんでした: %s。スキームを変更するか、'keepAzSessionActive' 入力を削除します。" } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/ko-KR/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/ko-KR/resources.resjson index adec692596c6..64ce1c50ff23 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/ko-KR/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/ko-KR/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[이 작업에 대한 자세한 정보](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) 또는 [Azure CLI 설명서 참조](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Linux 에이전트에서 실행하는 경우 PowerShell Core/셸 스크립트에서, Windows 에이전트에서 실행하는 경우 PowerShell/PowerShell Core/배치 스크립트에서 Azure 구독에 대해 Azure CLI 명령을 실행합니다.", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "버전 2.0의 새로운 기능:\n- PowerShell 및 PowerShell Core 스크립트를 지원합니다. \n- PowerShell Core는 플랫폼 간 에이전트(Linux, macOS 또는 Windows)에서 작동합니다. 에이전트에 PowerShell 버전 6 이상이 있는지 확인하세요. \n- Powershell 스크립트는 Windows 에이전트에서만 작동합니다. 에이전트에 PowerShell 버전 5 이상이 있는지 확인하세요.", - "loc.group.displayName.advanced": "고급", - "loc.input.label.connectedServiceNameARM": "Azure Resource Manager 연결", - "loc.input.help.connectedServiceNameARM": "배포를 위해 Azure Resource Manager 서비스 연결 선택", - "loc.input.label.scriptType": "스크립트 유형", - "loc.input.help.scriptType": "스크립트 형식: PowerShell/PowerShell Core/Bat/Shell 스크립트. Linux 에이전트에서 실행할 때는 Shell/PowerShell Core 스크립트를 선택하고, Windows 에이전트에서 실행할 때는 Batch/PowerShell/PowerShell Core 스크립트를 선택합니다. PowerShell Core 스크립트는 플랫폼 간 에이전트(Linux, macOS 또는 Windows)에서 실행할 수 있습니다.", - "loc.input.label.scriptLocation": "스크립트 위치", - "loc.input.help.scriptLocation": "스크립트 경로: 파일 경로 또는 인라인 스크립트", - "loc.input.label.scriptPath": "스크립트 경로", - "loc.input.help.scriptPath": "스크립트의 정규화된 경로(Windows 기반 에이전트를 사용하는 경우 .ps1, .bat 또는 .cmd, Linux 기반 에이전트를 사용하는 경우 .ps1 또는 .sh) 또는 기본 작업 디렉터리의 상대 경로입니다.", - "loc.input.label.inlineScript": "인라인 스크립트", - "loc.input.help.inlineScript": "여기서 스크립트를 인라인으로 작성할 수 있습니다. Windows 에이전트를 사용하는 경우 PowerShell, PowerShell Core 또는 배치 스크립팅을 사용하고, Linux 기반 에이전트를 사용하는 경우 PowerShell Core 또는 셸 스크립팅을 사용합니다. 배치 파일의 경우 모든 Azure 명령 앞에 \"call\" 접두사를 사용합니다. 인수를 사용하여 미리 정의된 변수와 사용자 지정 변수를 이 스크립트에 전달할 수도 있습니다. \n\nPowerShell/PowerShellCore/셸 예제: \naz --version \naz account show \n\n 배치 예제:\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "스크립트 인수", - "loc.input.help.scriptArguments": "스크립트에 전달되는 인수", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "powershell/powershell core 스크립트의 맨 위에 `$ErrorActionPreference = 'VALUE'` 줄을 추가합니다.", - "loc.input.label.addSpnToEnvironment": "스크립트의 서비스 주체 정보 액세스", - "loc.input.help.addSpnToEnvironment": "선택한 Azure 엔드포인트의 서비스 주체 ID, 서비스 주체 키 및 테넌트 ID를 스크립트의 실행 환경에 추가합니다. 스크립트에 'servicePrincipalId', 'servicePrincipalKey' 및 'tenantId' 변수를 사용할 수 있습니다.\n\nAzure 엔드포인트에 서비스 주체 인증 체계가 있는 경우에만 적용됩니다.\n\n스크립트 형식에 따라 환경 변수에 액세스하기 위한 구문입니다.\n\nPowershell 스크립트: $env:servicePrincipalId\n\nBatch 스크립트: %servicePrincipalId% \n\nShell 스크립트: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "전역 Azure CLI 구성 사용", - "loc.input.help.useGlobalConfig": "false이면, 이 작업은 고유한 별도 [Azure CLI 구성 디렉터리](https://docs.microsoft.com/en-us/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)를 사용합니다. *병렬* 릴리스에서 Azure CLI 작업을 실행하는 데 사용할 수 있습니다.", - "loc.input.label.cwd": "작업 디렉터리", - "loc.input.help.cwd": "스크립트가 실행되는 현재 작업 디렉터리입니다. 비어 있으면 리포(빌드) 또는 아티팩트(릴리스)의 루트이며 이 값은 $(System.DefaultWorkingDirectory)입니다.", - "loc.input.label.failOnStandardError": "표준 오류 시 실패", - "loc.input.help.failOnStandardError": "true이면 StandardError 스트림에 오류가 기록될 때 이 작업이 실패합니다. 표준 오류를 무시하고 종료 코드를 사용하여 상태를 확인하려면 이 확인란의 선택을 취소하세요.", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "$LASTEXITCODE 무시", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "false이면 스크립트의 끝에 `if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }` 줄이 추가됩니다. 이 줄로 인해 외부 명령의 마지막 종료 코드가 PowerShell의 종료 코드로 전파됩니다. true이면 줄이 스크립트의 끝에 추가되지 않습니다.", - "loc.input.label.visibleAzLogin": "az 로그인 출력 표시 여부", - "loc.input.help.visibleAzLogin": "true로 설정하면 az 로그인 명령이 작업에 출력됩니다. false로 설정하면 az 로그인 출력이 표시되지 않습니다.", - "loc.input.label.keepAzSessionActive": "[실험적] Azure CLI 세션을 활성 상태로 유지", - "loc.input.help.keepAzSessionActive": "사용하도록 설정하면 이 작업은 IdToken 만료 날짜 이후의 액세스 토큰을 요청할 때 AADSTS700024 오류를 방지하기 위해 Azure에 지속적으로 로그인합니다. 이 기능은 실험적인 기능으로 모든 시나리오에서 작동하지 않을 수 있으며 어떠한 보장도 없이 사용하고 있다는 점에 유의하세요. 워크로드 ID 페더레이션 인증 체계를 사용하는 서비스 연결에만 유효합니다.", - "loc.messages.ScriptReturnCode": "다음 반환 코드로 스크립트가 종료됨: %d", - "loc.messages.ScriptFailed": "다음 오류가 발생하여 스크립트 실패: %s", - "loc.messages.ScriptFailedStdErr": "스크립트가 STDERR에 출력되었습니다. failOnStdErr이 true로 설정되어 있으므로 실패합니다.", - "loc.messages.ScriptFailedWithExitCode": "종료 코드 %d을(를) 나타내며 스크립트가 실패했습니다.", - "loc.messages.UnsupportedEndpointScheme": "지원되지 않는 서비스 연결 인증 체계: AzureRM의 경우 서비스 주체", - "loc.messages.AzureSDKNotFound": "이 컴퓨터에 Azure CLI 2.x가 설치되어 있지 않습니다.", - "loc.messages.FailedToLogout": "로그아웃하는 동안 다음 오류가 발생했습니다. %s", - "loc.messages.LoginFailed": "Azure에 로그인하지 못했습니다.", - "loc.messages.MSILoginFailed": "관리 서비스 ID를 사용한 Azure 로그인에 실패했습니다.", - "loc.messages.AuthSchemeNotSupported": "인증 체계 %s은(는) 지원되지 않습니다.", - "loc.messages.ErrorInSettingUpSubscription": "구독을 설정하는 중 오류가 발생했습니다.", - "loc.messages.SettingAzureConfigDir": "AZURE_CONFIG_DIR 환경 변수를 %s(으)로 설정하는 중", - "loc.messages.SettingAzureCloud": "활성 클라우드를 %s(으)로 설정하는 중", - "loc.messages.JS_InvalidFilePath": "지정한 스크립트 위치 '%s'에서 스크립트 파일을 찾을 수 없습니다. 지정한 경로에 스크립트가 있는지 확인하세요. 인라인 스크립트를 사용하려면 입력 '스크립트 위치'를 'inlineScript'로 지정합니다.", - "loc.messages.JS_InvalidErrorActionPreference": "잘못된 ErrorActionPreference '%s'입니다. 값은 'Stop', 'Continue', 'SilentlyContinue' 중 하나여야 합니다.", - "loc.messages.GlobalCliConfigAgentVersionWarning": "2.115.0 이전의 에이전트 버전에서는 전역 Azure CLI 구성만 사용할 수 있습니다.", - "loc.messages.UnacceptedScriptLocationValue": "%s은(는) '스크립트 위치'(YAML의 scriptLocation) 작업 입력에 유효한 값이 아닙니다. 값은 be'inlineScript' 또는 'scriptPath' 중 하나일 수 있습니다.", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "비밀이 만료되었습니다. %s에서 서비스 연결을 업데이트하세요. 비밀 없는 서비스 연결로의 변환에 대한 자세한 정보는 https://aka.ms/azdo-rm-workload-identity-conversion을 참고하세요.", - "loc.messages.ProxyConfig": "az 도구가 %s을(를) 프록시 서버로 사용하도록 구성되어 있습니다.", - "loc.messages.FailedToRefreshAzSession": "az-cli 세션을 새로 고치는 동안 %s 오류가 발생했습니다.", - "loc.messages.RefreshingAzSession": "az-cli 세션을 새로 고치는 중...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "'keepAzSessionActive' 입력은 워크로드 ID 페더레이션 ARM 서비스 연결에만 사용할 수 있습니다. 참조된 서비스 엔드포인트 인증 체계가 예기치 않았습니다: %s. 스키마를 변경하거나 'keepAzSessionActive' 입력을 제거하세요." +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[이 작업에 대한 자세한 정보](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) 또는 [Azure CLI 설명서 참조](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Linux 에이전트에서 실행하는 경우 PowerShell Core/셸 스크립트에서, Windows 에이전트에서 실행하는 경우 PowerShell/PowerShell Core/배치 스크립트에서 Azure 구독에 대해 Azure CLI 명령을 실행합니다.", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "버전 2.0의 새로운 기능:\n- PowerShell 및 PowerShell Core 스크립트를 지원합니다. \n- PowerShell Core는 플랫폼 간 에이전트(Linux, macOS 또는 Windows)에서 작동합니다. 에이전트에 PowerShell 버전 6 이상이 있는지 확인하세요. \n- Powershell 스크립트는 Windows 에이전트에서만 작동합니다. 에이전트에 PowerShell 버전 5 이상이 있는지 확인하세요.", + "loc.group.displayName.advanced": "고급", + "loc.input.label.connectedServiceNameARM": "Azure Resource Manager 연결", + "loc.input.help.connectedServiceNameARM": "배포를 위해 Azure Resource Manager 서비스 연결 선택", + "loc.input.label.scriptType": "스크립트 유형", + "loc.input.help.scriptType": "스크립트 형식: PowerShell/PowerShell Core/Bat/Shell 스크립트. Linux 에이전트에서 실행할 때는 Shell/PowerShell Core 스크립트를 선택하고, Windows 에이전트에서 실행할 때는 Batch/PowerShell/PowerShell Core 스크립트를 선택합니다. PowerShell Core 스크립트는 플랫폼 간 에이전트(Linux, macOS 또는 Windows)에서 실행할 수 있습니다.", + "loc.input.label.scriptLocation": "스크립트 위치", + "loc.input.help.scriptLocation": "스크립트 경로: 파일 경로 또는 인라인 스크립트", + "loc.input.label.scriptPath": "스크립트 경로", + "loc.input.help.scriptPath": "스크립트의 정규화된 경로(Windows 기반 에이전트를 사용하는 경우 .ps1, .bat 또는 .cmd, Linux 기반 에이전트를 사용하는 경우 .ps1 또는 .sh) 또는 기본 작업 디렉터리의 상대 경로입니다.", + "loc.input.label.inlineScript": "인라인 스크립트", + "loc.input.help.inlineScript": "여기서 스크립트를 인라인으로 작성할 수 있습니다. Windows 에이전트를 사용하는 경우 PowerShell, PowerShell Core 또는 배치 스크립팅을 사용하고, Linux 기반 에이전트를 사용하는 경우 PowerShell Core 또는 셸 스크립팅을 사용합니다. 배치 파일의 경우 모든 Azure 명령 앞에 \"call\" 접두사를 사용합니다. 인수를 사용하여 미리 정의된 변수와 사용자 지정 변수를 이 스크립트에 전달할 수도 있습니다. \n\nPowerShell/PowerShellCore/셸 예제: \naz --version \naz account show \n\n 배치 예제:\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "스크립트 인수", + "loc.input.help.scriptArguments": "스크립트에 전달되는 인수", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "powershell/powershell core 스크립트의 맨 위에 `$ErrorActionPreference = 'VALUE'` 줄을 추가합니다.", + "loc.input.label.addSpnToEnvironment": "스크립트의 서비스 주체 정보 액세스", + "loc.input.help.addSpnToEnvironment": "선택한 Azure 엔드포인트의 서비스 주체 ID, 서비스 주체 키 및 테넌트 ID를 스크립트의 실행 환경에 추가합니다. 스크립트에 'servicePrincipalId', 'servicePrincipalKey' 및 'tenantId' 변수를 사용할 수 있습니다.\n\nAzure 엔드포인트에 서비스 주체 인증 체계가 있는 경우에만 적용됩니다.\n\n스크립트 형식에 따라 환경 변수에 액세스하기 위한 구문입니다.\n\nPowershell 스크립트: $env:servicePrincipalId\n\nBatch 스크립트: %servicePrincipalId% \n\nShell 스크립트: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "전역 Azure CLI 구성 사용", + "loc.input.help.useGlobalConfig": "false이면, 이 작업은 고유한 별도 [Azure CLI 구성 디렉터리](https://docs.microsoft.com/en-us/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)를 사용합니다. *병렬* 릴리스에서 Azure CLI 작업을 실행하는 데 사용할 수 있습니다.", + "loc.input.label.cwd": "작업 디렉터리", + "loc.input.help.cwd": "스크립트가 실행되는 현재 작업 디렉터리입니다. 비어 있으면 리포(빌드) 또는 아티팩트(릴리스)의 루트이며 이 값은 $(System.DefaultWorkingDirectory)입니다.", + "loc.input.label.failOnStandardError": "표준 오류 시 실패", + "loc.input.help.failOnStandardError": "true이면 StandardError 스트림에 오류가 기록될 때 이 작업이 실패합니다. 표준 오류를 무시하고 종료 코드를 사용하여 상태를 확인하려면 이 확인란의 선택을 취소하세요.", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "$LASTEXITCODE 무시", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "false이면 스크립트의 끝에 `if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }` 줄이 추가됩니다. 이 줄로 인해 외부 명령의 마지막 종료 코드가 PowerShell의 종료 코드로 전파됩니다. true이면 줄이 스크립트의 끝에 추가되지 않습니다.", + "loc.input.label.visibleAzLogin": "az 로그인 출력 표시 여부", + "loc.input.help.visibleAzLogin": "true로 설정하면 az 로그인 명령이 작업에 출력됩니다. false로 설정하면 az 로그인 출력이 표시되지 않습니다.", + "loc.input.label.keepAzSessionActive": "[실험적] Azure CLI 세션을 활성 상태로 유지", + "loc.input.help.keepAzSessionActive": "사용하도록 설정하면 이 작업은 IdToken 만료 날짜 이후의 액세스 토큰을 요청할 때 AADSTS700024 오류를 방지하기 위해 Azure에 지속적으로 로그인합니다. 이 기능은 실험적인 기능으로 모든 시나리오에서 작동하지 않을 수 있으며 어떠한 보장도 없이 사용하고 있다는 점에 유의하세요. 워크로드 ID 페더레이션 인증 체계를 사용하는 서비스 연결에만 유효합니다.", + "loc.messages.ScriptReturnCode": "다음 반환 코드로 스크립트가 종료됨: %d", + "loc.messages.ScriptFailed": "다음 오류가 발생하여 스크립트 실패: %s", + "loc.messages.ScriptFailedStdErr": "스크립트가 STDERR에 출력되었습니다. failOnStdErr이 true로 설정되어 있으므로 실패합니다.", + "loc.messages.ScriptFailedWithExitCode": "종료 코드 %d을(를) 나타내며 스크립트가 실패했습니다.", + "loc.messages.UnsupportedEndpointScheme": "지원되지 않는 서비스 연결 인증 체계: AzureRM의 경우 서비스 주체", + "loc.messages.AzureSDKNotFound": "이 컴퓨터에 Azure CLI 2.x가 설치되어 있지 않습니다.", + "loc.messages.FailedToLogout": "로그아웃하는 동안 다음 오류가 발생했습니다. %s", + "loc.messages.LoginFailed": "Azure에 로그인하지 못했습니다.", + "loc.messages.MSILoginFailed": "관리 서비스 ID를 사용한 Azure 로그인에 실패했습니다.", + "loc.messages.AuthSchemeNotSupported": "인증 체계 %s은(는) 지원되지 않습니다.", + "loc.messages.ErrorInSettingUpSubscription": "구독을 설정하는 중 오류가 발생했습니다.", + "loc.messages.SettingAzureConfigDir": "AZURE_CONFIG_DIR 환경 변수를 %s(으)로 설정하는 중", + "loc.messages.SettingAzureCloud": "활성 클라우드를 %s(으)로 설정하는 중", + "loc.messages.JS_InvalidFilePath": "지정한 스크립트 위치 '%s'에서 스크립트 파일을 찾을 수 없습니다. 지정한 경로에 스크립트가 있는지 확인하세요. 인라인 스크립트를 사용하려면 입력 '스크립트 위치'를 'inlineScript'로 지정합니다.", + "loc.messages.JS_InvalidErrorActionPreference": "잘못된 ErrorActionPreference '%s'입니다. 값은 'Stop', 'Continue', 'SilentlyContinue' 중 하나여야 합니다.", + "loc.messages.GlobalCliConfigAgentVersionWarning": "2.115.0 이전의 에이전트 버전에서는 전역 Azure CLI 구성만 사용할 수 있습니다.", + "loc.messages.UnacceptedScriptLocationValue": "%s은(는) 작업 입력 '스크립트 위치'(YAML의 scriptLocation)에 유효한 값이 아닙니다. 값은 'inlineScript'이거나 'scriptPath'일 수 있습니다.", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "비밀이 만료되었습니다. %s에서 서비스 연결을 업데이트하세요. 비밀 없는 서비스 연결로의 변환에 대한 자세한 정보는 https://aka.ms/azdo-rm-workload-identity-conversion을 참고하세요.", + "loc.messages.ProxyConfig": "az 도구가 %s을(를) 프록시 서버로 사용하도록 구성되어 있습니다.", + "loc.messages.FailedToRefreshAzSession": "az-cli 세션을 새로 고치는 동안 %s 오류가 발생했습니다.", + "loc.messages.RefreshingAzSession": "az-cli 세션을 새로 고치는 중...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "'keepAzSessionActive' 입력은 워크로드 ID 페더레이션 ARM 서비스 연결에만 사용할 수 있습니다. 참조된 서비스 엔드포인트 인증 체계가 예기치 않았습니다: %s. 스키마를 변경하거나 'keepAzSessionActive' 입력을 제거하세요." } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/ru-RU/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/ru-RU/resources.resjson index 0094682c58f1..9e49b9e39774 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/ru-RU/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/ru-RU/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[См. дополнительные сведения об этой задаче](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) или [документацию по Azure CLI](https://docs.microsoft.com/cli/azure/)", - "loc.description": "Выполнение команд Azure CLI для подписки Azure в скрипте оболочки/PowerShell Core при использовании агента Linux или в пакетном скрипте/PowerShell/PowerShell Core при использовании агента Windows.", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "Новые возможности версии 2.0\n— Поддержка скриптов PowerShell и PowerShell Core. \n— Скрипт PowerShell Core работает с кроссплатформенными агентами (Linux, macOS или Windows); убедитесь, что на агенте используется PowerShell версии 6 или более поздней. \n— Скрипт Powershell работает только с агентом Windows; убедитесь, что на агенте используется PowerShell версии 5 или более ранней.", - "loc.group.displayName.advanced": "Дополнительно", - "loc.input.label.connectedServiceNameARM": "Подключение к Azure Resource Manager", - "loc.input.help.connectedServiceNameARM": "Выберите подключение службы Azure Resource Manager для развертывания.", - "loc.input.label.scriptType": "Тип сценария", - "loc.input.help.scriptType": "Тип скрипта: пакетный скрипт/скрипт оболочки/PowerShell/PowerShell Core. Выберите скрипт оболочки или PowerShell Core при выполнении на агенте Linux либо пакетный скрипт, скрипт PowerShell или PowerShell Core при выполнении на агенте Windows. Скрипт PowerShell Core может выполняться на кроссплатформенных агентах (Linux, macOS или Windows).", - "loc.input.label.scriptLocation": "Расположение сценария", - "loc.input.help.scriptLocation": "Путь к скрипту: путь к файлу или встроенный скрипт", - "loc.input.label.scriptPath": "Путь к скрипту", - "loc.input.help.scriptPath": "Полный путь для скрипта (PS1, BAT или CMD при использовании агента на основе Windows и PS1 или SH при использовании агента на основе Linux) или путь относительно рабочего каталога по умолчанию", - "loc.input.label.inlineScript": "Встроенный скрипт", - "loc.input.help.inlineScript": "Здесь можно создать встроенные скрипты. При работе с агентом Windows используйте PowerShell, PowerShell Core или пакетные скрипты, а при работе с агентами на основе Linux — PowerShell Core или скрипты оболочки. Для пакетных файлов используйте префикс call перед каждой командой Azure. Вы также можете передать в этот скрипт предопределенные и пользовательские переменные с помощью аргументов. \n\n Пример для скриптов оболочки/PowerShell/PowerShellCore \naz --version \naz account show \n\n Пример для пакетных скриптов\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "Аргументы скрипта", - "loc.input.help.scriptArguments": "Аргументы, переданные в сценарий", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "Добавляет строку $ErrorActionPreference = 'VALUE' в начало скрипта PowerShell/PowerShell Core.", - "loc.input.label.addSpnToEnvironment": "Доступ к сведениям о субъекте-службе в скрипте", - "loc.input.help.addSpnToEnvironment": "Добавляет идентификатор субъекта-службы, ключ субъекта-службы и идентификатор клиента выбранной конечной точки Azure в среду выполнения скрипта. В скрипте можно использовать следующие переменные: servicePrincipalId, servicePrincipalKey и tenantId.\n\nЭто учитывается, только если конечная точка Azure имеет схему проверки подлинности \"Субъект-служба\".\n\nСинтаксис для доступа к переменным среды основан на типе скрипта.\n\nСкрипт Powershell: $env:servicePrincipalId\n\nПакетный скрипт: %servicePrincipalId% \n\nСкрипт оболочки: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "Использовать глобальную конфигурацию Azure CLI", - "loc.input.help.useGlobalConfig": "Если задано значение false, задача будет использовать собственный отдельный [каталог конфигурации Azure CLI](https://docs.microsoft.com/en-us/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file). Это можно использовать для выполнения задач Azure CLI в *параллельных* выпусках", - "loc.input.label.cwd": "Рабочий каталог", - "loc.input.help.cwd": "Текущий рабочий каталог, в котором выполняется сценарий. Если значение пустое, используется корень репозитория (сборки) или артефакты (выпуска): $(System.DefaultWorkingDirectory).", - "loc.input.label.failOnStandardError": "Сбой со стандартной ошибкой", - "loc.input.help.failOnStandardError": "Если задано значение true, то при наличии ошибок, записанных в стандартный поток ошибок, задача завершится сбоем. Снимите флажок, чтобы игнорировать стандартные ошибки и использовать коды завершения для определения состояния", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "Игнорировать $LASTEXITCODE", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "Если задано значение False, в конец скрипта добавляется строка \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\". Это приведет к тому, что последний код выхода из внешней команды будет использоваться как код выхода PowerShell. В противном случае эта строка не добавляется в конец скрипта.", - "loc.input.label.visibleAzLogin": "Видимость вывода при az login", - "loc.input.help.visibleAzLogin": "Если для этого параметра установлено значение ИСТИНА, команда az login выведет задачу. Установка значения ЛОЖЬ приведет к скрытию вывода az login.", - "loc.input.label.keepAzSessionActive": "[Экспериментальная] Сохранять сеанс Azure CLI активным", - "loc.input.help.keepAzSessionActive": "Если включено, эта задача будет непрерывно входить в Azure, чтобы избежать ошибок AADSTS700024 при запросе маркеров доступа после даты окончания срока действия IdToken. Обратите внимание, что эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ и может работать не во всех сценариях. Вы используете ее без каких-либо гарантий. Допустимо только для подключений службы, использующих схему проверки подлинности федерации удостоверений рабочей нагрузки.", - "loc.messages.ScriptReturnCode": "Выход из сценария с кодом возврата: %d", - "loc.messages.ScriptFailed": "Сбой сценария с ошибкой: %s", - "loc.messages.ScriptFailedStdErr": "Скрипт выводит выходные данные в stderr. Завершается сбоем, если failOnStdErr имеет значение true.", - "loc.messages.ScriptFailedWithExitCode": "Сбой скрипта с кодом завершения: %d", - "loc.messages.UnsupportedEndpointScheme": "Схема авторизации подключения к службе не поддерживается: субъект-служба для AzureRM", - "loc.messages.AzureSDKNotFound": "На этом компьютере не установлен Azure CLI 2.x.", - "loc.messages.FailedToLogout": "Во время выхода из системы произошла следующая ошибка: %s", - "loc.messages.LoginFailed": "Не удалось войти в Azure", - "loc.messages.MSILoginFailed": "Сбой входа Azure с использованием Управляемого удостоверения службы", - "loc.messages.AuthSchemeNotSupported": "Схема проверки подлинности %s не поддерживается", - "loc.messages.ErrorInSettingUpSubscription": "Ошибка при настройке подписки", - "loc.messages.SettingAzureConfigDir": "Задание переменной среды AZURE_CONFIG_DIR: %s", - "loc.messages.SettingAzureCloud": "Задание активного облака: %s", - "loc.messages.JS_InvalidFilePath": "Не удалось найти файл скрипта в указанном расположении: \"%s\". Убедитесь, что скрипт существует по указанному пути. Если требуется использовать встроенный скрипт, укажите входные данные \"Расположение скрипта\" как inlineScript.", - "loc.messages.JS_InvalidErrorActionPreference": "Недопустимое значение ErrorActionPreference \"%s\". Возможные значения: Stop, Continue или SilentlyContinue", - "loc.messages.GlobalCliConfigAgentVersionWarning": "Для агента версии ниже 2.115.0 можно использовать только глобальную конфигурацию Azure CLI", - "loc.messages.UnacceptedScriptLocationValue": "%s не является допустимым значением для входных данных задачи \"Расположение скрипта\" (scriptLocation в YAML). Значение может быть равно inlineScript либо scriptPath", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "Срок действия секрета истек. Обновите подключение службы %s. Подробнее о преобразовании в подключения служб без секретов см. https://aka.ms/azdo-rm-workload-identity-conversion.", - "loc.messages.ProxyConfig": "Инструмент az настроен на использование %s в качестве прокси-сервера", - "loc.messages.FailedToRefreshAzSession": "При попытке обновить сеанс az-cli произошла следующая ошибка: %s", - "loc.messages.RefreshingAzSession": "Попытка обновить сеанс az-cli...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "Входные данные \"keepAzSessionActive\" могут использоваться только для подключения службы ARM федерации удостоверений рабочей нагрузки. Указана непредвиденная схема проверки подлинности конечной точки службы: %s. Измените схему или удалите входные данные \"keepAzSessionActive\"." +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[См. дополнительные сведения об этой задаче](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md) или [документацию по Azure CLI](https://docs.microsoft.com/cli/azure/)", + "loc.description": "Выполнение команд Azure CLI для подписки Azure в скрипте оболочки/PowerShell Core при использовании агента Linux или в пакетном скрипте/PowerShell/PowerShell Core при использовании агента Windows.", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "Новые возможности версии 2.0\n— Поддержка скриптов PowerShell и PowerShell Core. \n— Скрипт PowerShell Core работает с кроссплатформенными агентами (Linux, macOS или Windows); убедитесь, что на агенте используется PowerShell версии 6 или более поздней. \n— Скрипт Powershell работает только с агентом Windows; убедитесь, что на агенте используется PowerShell версии 5 или более ранней.", + "loc.group.displayName.advanced": "Дополнительно", + "loc.input.label.connectedServiceNameARM": "Подключение к Azure Resource Manager", + "loc.input.help.connectedServiceNameARM": "Выберите подключение службы Azure Resource Manager для развертывания.", + "loc.input.label.scriptType": "Тип сценария", + "loc.input.help.scriptType": "Тип скрипта: пакетный скрипт/скрипт оболочки/PowerShell/PowerShell Core. Выберите скрипт оболочки или PowerShell Core при выполнении на агенте Linux либо пакетный скрипт, скрипт PowerShell или PowerShell Core при выполнении на агенте Windows. Скрипт PowerShell Core может выполняться на кроссплатформенных агентах (Linux, macOS или Windows).", + "loc.input.label.scriptLocation": "Расположение сценария", + "loc.input.help.scriptLocation": "Путь к скрипту: путь к файлу или встроенный скрипт", + "loc.input.label.scriptPath": "Путь к скрипту", + "loc.input.help.scriptPath": "Полный путь для скрипта (PS1, BAT или CMD при использовании агента на основе Windows и PS1 или SH при использовании агента на основе Linux) или путь относительно рабочего каталога по умолчанию", + "loc.input.label.inlineScript": "Встроенный скрипт", + "loc.input.help.inlineScript": "Здесь можно создать встроенные скрипты. При работе с агентом Windows используйте PowerShell, PowerShell Core или пакетные скрипты, а при работе с агентами на основе Linux — PowerShell Core или скрипты оболочки. Для пакетных файлов используйте префикс call перед каждой командой Azure. Вы также можете передать в этот скрипт предопределенные и пользовательские переменные с помощью аргументов. \n\n Пример для скриптов оболочки/PowerShell/PowerShellCore \naz --version \naz account show \n\n Пример для пакетных скриптов\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "Аргументы скрипта", + "loc.input.help.scriptArguments": "Аргументы, переданные в сценарий", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "Добавляет строку $ErrorActionPreference = 'VALUE' в начало скрипта PowerShell/PowerShell Core.", + "loc.input.label.addSpnToEnvironment": "Доступ к сведениям о субъекте-службе в скрипте", + "loc.input.help.addSpnToEnvironment": "Добавляет идентификатор субъекта-службы, ключ субъекта-службы и идентификатор клиента выбранной конечной точки Azure в среду выполнения скрипта. В скрипте можно использовать следующие переменные: servicePrincipalId, servicePrincipalKey и tenantId.\n\nЭто учитывается, только если конечная точка Azure имеет схему проверки подлинности \"Субъект-служба\".\n\nСинтаксис для доступа к переменным среды основан на типе скрипта.\n\nСкрипт Powershell: $env:servicePrincipalId\n\nПакетный скрипт: %servicePrincipalId% \n\nСкрипт оболочки: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "Использовать глобальную конфигурацию Azure CLI", + "loc.input.help.useGlobalConfig": "Если задано значение false, задача будет использовать собственный отдельный [каталог конфигурации Azure CLI](https://docs.microsoft.com/en-us/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file). Это можно использовать для выполнения задач Azure CLI в *параллельных* выпусках", + "loc.input.label.cwd": "Рабочий каталог", + "loc.input.help.cwd": "Текущий рабочий каталог, в котором выполняется сценарий. Если значение пустое, используется корень репозитория (сборки) или артефакты (выпуска): $(System.DefaultWorkingDirectory).", + "loc.input.label.failOnStandardError": "Сбой со стандартной ошибкой", + "loc.input.help.failOnStandardError": "Если задано значение true, то при наличии ошибок, записанных в стандартный поток ошибок, задача завершится сбоем. Снимите флажок, чтобы игнорировать стандартные ошибки и использовать коды завершения для определения состояния", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "Игнорировать $LASTEXITCODE", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "Если задано значение False, в конец скрипта добавляется строка \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\". Это приведет к тому, что последний код выхода из внешней команды будет использоваться как код выхода PowerShell. В противном случае эта строка не добавляется в конец скрипта.", + "loc.input.label.visibleAzLogin": "Видимость вывода при az login", + "loc.input.help.visibleAzLogin": "Если для этого параметра установлено значение ИСТИНА, команда az login выведет задачу. Установка значения ЛОЖЬ приведет к скрытию вывода az login.", + "loc.input.label.keepAzSessionActive": "[Экспериментальная] Сохранять сеанс Azure CLI активным", + "loc.input.help.keepAzSessionActive": "Если включено, эта задача будет непрерывно входить в Azure, чтобы избежать ошибок AADSTS700024 при запросе маркеров доступа после даты окончания срока действия IdToken. Обратите внимание, что эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ и может работать не во всех сценариях. Вы используете ее без каких-либо гарантий. Допустимо только для подключений службы, использующих схему проверки подлинности федерации удостоверений рабочей нагрузки.", + "loc.messages.ScriptReturnCode": "Выход из сценария с кодом возврата: %d", + "loc.messages.ScriptFailed": "Сбой сценария с ошибкой: %s", + "loc.messages.ScriptFailedStdErr": "Скрипт выводит выходные данные в stderr. Завершается сбоем, если failOnStdErr имеет значение true.", + "loc.messages.ScriptFailedWithExitCode": "Сбой скрипта с кодом завершения: %d", + "loc.messages.UnsupportedEndpointScheme": "Схема авторизации подключения к службе не поддерживается: субъект-служба для AzureRM", + "loc.messages.AzureSDKNotFound": "На этом компьютере не установлен Azure CLI 2.x.", + "loc.messages.FailedToLogout": "Во время выхода из системы произошла следующая ошибка: %s", + "loc.messages.LoginFailed": "Не удалось войти в Azure", + "loc.messages.MSILoginFailed": "Сбой входа Azure с использованием Управляемого удостоверения службы", + "loc.messages.AuthSchemeNotSupported": "Схема проверки подлинности %s не поддерживается", + "loc.messages.ErrorInSettingUpSubscription": "Ошибка при настройке подписки", + "loc.messages.SettingAzureConfigDir": "Задание переменной среды AZURE_CONFIG_DIR: %s", + "loc.messages.SettingAzureCloud": "Задание активного облака: %s", + "loc.messages.JS_InvalidFilePath": "Не удалось найти файл скрипта в указанном расположении: \"%s\". Убедитесь, что скрипт существует по указанному пути. Если требуется использовать встроенный скрипт, укажите входные данные \"Расположение скрипта\" как inlineScript.", + "loc.messages.JS_InvalidErrorActionPreference": "Недопустимое значение ErrorActionPreference \"%s\". Возможные значения: Stop, Continue или SilentlyContinue", + "loc.messages.GlobalCliConfigAgentVersionWarning": "Для агента версии ниже 2.115.0 можно использовать только глобальную конфигурацию Azure CLI", + "loc.messages.UnacceptedScriptLocationValue": "%s не является допустимым значением для входных данных задачи \"Расположение сценария\" (scriptLocation в YAML). Значением может быть \"inlineScript\" или \"scriptPath\"", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "Срок действия секрета истек. Обновите подключение службы %s. Подробнее о преобразовании в подключения служб без секретов см. https://aka.ms/azdo-rm-workload-identity-conversion.", + "loc.messages.ProxyConfig": "Инструмент az настроен на использование %s в качестве прокси-сервера", + "loc.messages.FailedToRefreshAzSession": "При попытке обновить сеанс az-cli произошла следующая ошибка: %s", + "loc.messages.RefreshingAzSession": "Попытка обновить сеанс az-cli...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "Входные данные \"keepAzSessionActive\" могут использоваться только для подключения службы ARM федерации удостоверений рабочей нагрузки. Указана непредвиденная схема проверки подлинности конечной точки службы: %s. Измените схему или удалите входные данные \"keepAzSessionActive\"." } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/zh-CN/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/zh-CN/resources.resjson index 53db0c804f7f..6cfd045294a1 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/zh-CN/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/zh-CN/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[详细了解此任务](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md)或[参阅 Azure CLI 文档](https://docs.microsoft.com/cli/azure/)", - "loc.description": "在 Linux 代理上运行时,在 PowerShell Core/Shell 脚本中运行针对 Azure 订阅的 Azure CLI 命令;在 Windows 代理上运行时,在 PowerShell/PowerShell Core/Batch 脚本中运行。", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "版本 2.0 中的新增功能:\n- 支持 PowerShell 和 PowerShell Core 脚本。\n- PowerShell Core 适用于跨平台代理(Linux、macOS 或 Windows),请确保该代理具有 PowerShell 版本 6 或更高版本。\n- Powershell 脚本仅适用于 Windows 代理,请确保该代理具有 PowerShell 版本 5 或更低版本。", - "loc.group.displayName.advanced": "高级", - "loc.input.label.connectedServiceNameARM": "Azure 资源管理器连接", - "loc.input.help.connectedServiceNameARM": "为部署选择 Azure 资源管理器服务连接", - "loc.input.label.scriptType": "脚本类型", - "loc.input.help.scriptType": "脚本类型: PowerShell/PowerShell Core/Bat/Shell 脚本。在 Linux 代理上运行时选择 Shell/PowerShell Core 脚本,在 Windows 代理上运行时选择批处理/PowerShell/PowerShell Core 脚本。PowerShell Core 脚本可在跨平台代理(Linux、macOS 或 Windows)上运行。", - "loc.input.label.scriptLocation": "脚本位置", - "loc.input.help.scriptLocation": "脚本路径: 文件路径或内联脚本", - "loc.input.label.scriptPath": "脚本路径", - "loc.input.help.scriptPath": "脚本(在使用基于 Windows 的代理时为 .ps1 或 .bat 或 .cmd,在使用基于 linux 的代理时为 .ps1 或 .sh)的完全限定的路径,或相对于默认工作目录的路径", - "loc.input.label.inlineScript": "内联脚本", - "loc.input.help.inlineScript": "可在此处编写内联脚本。使用 Windows 代理时,请使用 PowerShell 或 PowerShell Core 或批处理脚本;使用基于 Linux 的代理时,请使用 PowerShell Core 或 shell 脚本。对于批处理文件,请在每条 Azure 命令前使用前缀 \"call\"。还可使用参数将预定义和自定义变量传递到此脚本 \n\n PowerShell/PowerShellCore/shell 示例: \naz --version \naz account show \n\n 批处理示例:\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "脚本参数", - "loc.input.help.scriptArguments": "传递给脚本的参数", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "在 powershell/powershell core 脚本顶部添加行 `$ErrorActionPreference = 'VALUE'` 作为前缀。", - "loc.input.label.addSpnToEnvironment": "在脚本中访问服务主体详细信息", - "loc.input.help.addSpnToEnvironment": "将你选择的 Azure 终结点的服务主体 ID、服务主体键和租户 ID 添加到脚本的执行环境中。可在脚本中使用的变量有: \"servicePrincipalId\"、\"servicePrincipalKey\" 和 \"tenantId\"。\n\n仅当 Azure 终结点具有服务主体身份验证方案时,才可执行此操作。\n\n用于访问环境变量的语法基于脚本类型。\n\nPowershell 脚本: $env:servicePrincipalId\n\n批处理脚本: %servicePrincipalId% \n\nShell 脚本: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "使用全局 Azure CLI 配置", - "loc.input.help.useGlobalConfig": "如果为 false,此任务将使用其自己的独立 [Azure CLI 配置目录](https://docs.microsoft.com/zh-cn/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)。这可用于在*并行*发布中运行 Azure CLI 任务", - "loc.input.label.cwd": "工作目录", - "loc.input.help.cwd": "脚本运行于的当前工作目录。存储库(内部版本)或项目(发行版本)的根路径 $(System.DefaultWorkingDirectory) 为空", - "loc.input.label.failOnStandardError": "因标准错误失败", - "loc.input.help.failOnStandardError": "如果这为 true,在任何错误写入到 StandardError 流时,此任务将失败。取消选中此复选框可忽略标准错误,并依赖退出代码来确定状态", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "忽略 $LASTEXITCODE", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "如果为 false,行 \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\" 将追加到脚本的末尾。这将导致外部命令中的最后一个退出代码传播为 powershell 的退出代码。否则,行将不会追加到脚本的末尾。", - "loc.input.label.visibleAzLogin": "Az 登录输出可见性", - "loc.input.help.visibleAzLogin": "如果此项设置为 true,则 Az 登录命令将输出到任务。将其设置为 false 将禁止 Az 登录输出", - "loc.input.label.keepAzSessionActive": "[Experimental] 保持 Azure CLI 会话处于活动状态", - "loc.input.help.keepAzSessionActive": "启用后,此任务将持续登录到 Azure,以避免在请求访问超过 IdToken 到期日期的令牌时出现 AADSTS700024 错误。请注意,此功能是实验性的,可能无法在某些场景中运行,并且你将在不受任何保证的情况下使用它。仅对使用工作负载联合身份验证身份验证方案的服务连接有效。", - "loc.messages.ScriptReturnCode": "脚本已退出,返回代码: %d", - "loc.messages.ScriptFailed": "脚本失败,出现错误: %s", - "loc.messages.ScriptFailedStdErr": "脚本具有到 stderr 的输出。失败,因为 failOnStdErr 设置为 true。", - "loc.messages.ScriptFailedWithExitCode": "脚本失败,退出代码: %d", - "loc.messages.UnsupportedEndpointScheme": "不支持的服务连接授权方案: AzureRM 的服务主体", - "loc.messages.AzureSDKNotFound": "此计算机上未安装 Azure CLI 2.x。", - "loc.messages.FailedToLogout": "注销时出现以下错误: %s", - "loc.messages.LoginFailed": "Azure 登录失败", - "loc.messages.MSILoginFailed": "使用托管服务标识进行 Azure 登录失败", - "loc.messages.AuthSchemeNotSupported": "不支持身份验证方案 %s", - "loc.messages.ErrorInSettingUpSubscription": "设置订阅时出错", - "loc.messages.SettingAzureConfigDir": "将 AZURE_CONFIG_DIR 环境变量设置为 %s", - "loc.messages.SettingAzureCloud": "将活动云设置为 %s", - "loc.messages.JS_InvalidFilePath": "在指定的脚本位置 \"%s\" 找不到脚本文件。请验证该脚本是否存在于指定的路径中。如果要使用内联脚本,请将输入 `Script Location` 指定为 `inlineScript`。", - "loc.messages.JS_InvalidErrorActionPreference": "无效的 ErrorActionPreference“%s”。值必须为下列之一: \"Stop\"、\"Continue\" 或 \"SilentlyContinue\"", - "loc.messages.GlobalCliConfigAgentVersionWarning": "对于低于 2.115.0 的代理版本,只能使用全局 Azure CLI 配置", - "loc.messages.UnacceptedScriptLocationValue": "%s 不是任务输入“脚本位置”(YAML 中为 scriptLocation)的有效值。值可以是 \"inlineScript\" 或 \"scriptPath\"", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "机密已过期,请在 %s 更新服务连接。若要详细了解如何转换到无机密服务连接,请参阅 https://aka.ms/azdo-rm-workload-identity-conversion。", - "loc.messages.ProxyConfig": "Az 工具配置为将 %s 用作代理服务器", - "loc.messages.FailedToRefreshAzSession": "尝试刷新 az-cli 会话时出现以下错误:%s", - "loc.messages.RefreshingAzSession": "正在尝试刷新 az-cli 会话...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "“keepAzSessionActive”输入可能只能用于工作负载联合身份验证 ARM 服务连接。引用的服务终结点身份验证方案异常:%s。更改方案或删除“keepAzSessionActive”输入。" +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[详细了解此任务](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md)或[参阅 Azure CLI 文档](https://docs.microsoft.com/cli/azure/)", + "loc.description": "在 Linux 代理上运行时,在 PowerShell Core/Shell 脚本中运行针对 Azure 订阅的 Azure CLI 命令;在 Windows 代理上运行时,在 PowerShell/PowerShell Core/Batch 脚本中运行。", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "版本 2.0 中的新增功能:\n- 支持 PowerShell 和 PowerShell Core 脚本。\n- PowerShell Core 适用于跨平台代理(Linux、macOS 或 Windows),请确保该代理具有 PowerShell 版本 6 或更高版本。\n- Powershell 脚本仅适用于 Windows 代理,请确保该代理具有 PowerShell 版本 5 或更低版本。", + "loc.group.displayName.advanced": "高级", + "loc.input.label.connectedServiceNameARM": "Azure 资源管理器连接", + "loc.input.help.connectedServiceNameARM": "为部署选择 Azure 资源管理器服务连接", + "loc.input.label.scriptType": "脚本类型", + "loc.input.help.scriptType": "脚本类型: PowerShell/PowerShell Core/Bat/Shell 脚本。在 Linux 代理上运行时选择 Shell/PowerShell Core 脚本,在 Windows 代理上运行时选择批处理/PowerShell/PowerShell Core 脚本。PowerShell Core 脚本可在跨平台代理(Linux、macOS 或 Windows)上运行。", + "loc.input.label.scriptLocation": "脚本位置", + "loc.input.help.scriptLocation": "脚本路径: 文件路径或内联脚本", + "loc.input.label.scriptPath": "脚本路径", + "loc.input.help.scriptPath": "脚本(在使用基于 Windows 的代理时为 .ps1 或 .bat 或 .cmd,在使用基于 linux 的代理时为 .ps1 或 .sh)的完全限定的路径,或相对于默认工作目录的路径", + "loc.input.label.inlineScript": "内联脚本", + "loc.input.help.inlineScript": "可在此处编写内联脚本。使用 Windows 代理时,请使用 PowerShell 或 PowerShell Core 或批处理脚本;使用基于 Linux 的代理时,请使用 PowerShell Core 或 shell 脚本。对于批处理文件,请在每条 Azure 命令前使用前缀 \"call\"。还可使用参数将预定义和自定义变量传递到此脚本 \n\n PowerShell/PowerShellCore/shell 示例: \naz --version \naz account show \n\n 批处理示例:\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "脚本参数", + "loc.input.help.scriptArguments": "传递给脚本的参数", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "在 powershell/powershell core 脚本顶部添加行 `$ErrorActionPreference = 'VALUE'` 作为前缀。", + "loc.input.label.addSpnToEnvironment": "在脚本中访问服务主体详细信息", + "loc.input.help.addSpnToEnvironment": "将你选择的 Azure 终结点的服务主体 ID、服务主体键和租户 ID 添加到脚本的执行环境中。可在脚本中使用的变量有: \"servicePrincipalId\"、\"servicePrincipalKey\" 和 \"tenantId\"。\n\n仅当 Azure 终结点具有服务主体身份验证方案时,才可执行此操作。\n\n用于访问环境变量的语法基于脚本类型。\n\nPowershell 脚本: $env:servicePrincipalId\n\n批处理脚本: %servicePrincipalId% \n\nShell 脚本: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "使用全局 Azure CLI 配置", + "loc.input.help.useGlobalConfig": "如果为 false,此任务将使用其自己的独立 [Azure CLI 配置目录](https://docs.microsoft.com/zh-cn/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)。这可用于在*并行*发布中运行 Azure CLI 任务", + "loc.input.label.cwd": "工作目录", + "loc.input.help.cwd": "脚本运行于的当前工作目录。存储库(内部版本)或项目(发行版本)的根路径 $(System.DefaultWorkingDirectory) 为空", + "loc.input.label.failOnStandardError": "因标准错误失败", + "loc.input.help.failOnStandardError": "如果这为 true,在任何错误写入到 StandardError 流时,此任务将失败。取消选中此复选框可忽略标准错误,并依赖退出代码来确定状态", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "忽略 $LASTEXITCODE", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "如果为 false,行 \"if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }\" 将追加到脚本的末尾。这将导致外部命令中的最后一个退出代码传播为 powershell 的退出代码。否则,行将不会追加到脚本的末尾。", + "loc.input.label.visibleAzLogin": "Az 登录输出可见性", + "loc.input.help.visibleAzLogin": "如果此项设置为 true,则 Az 登录命令将输出到任务。将其设置为 false 将禁止 Az 登录输出", + "loc.input.label.keepAzSessionActive": "[Experimental] 保持 Azure CLI 会话处于活动状态", + "loc.input.help.keepAzSessionActive": "启用后,此任务将持续登录到 Azure,以避免在请求访问超过 IdToken 到期日期的令牌时出现 AADSTS700024 错误。请注意,此功能是实验性的,可能无法在某些场景中运行,并且你将在不受任何保证的情况下使用它。仅对使用工作负载联合身份验证身份验证方案的服务连接有效。", + "loc.messages.ScriptReturnCode": "脚本已退出,返回代码: %d", + "loc.messages.ScriptFailed": "脚本失败,出现错误: %s", + "loc.messages.ScriptFailedStdErr": "脚本具有到 stderr 的输出。失败,因为 failOnStdErr 设置为 true。", + "loc.messages.ScriptFailedWithExitCode": "脚本失败,退出代码: %d", + "loc.messages.UnsupportedEndpointScheme": "不支持的服务连接授权方案: AzureRM 的服务主体", + "loc.messages.AzureSDKNotFound": "此计算机上未安装 Azure CLI 2.x。", + "loc.messages.FailedToLogout": "注销时出现以下错误: %s", + "loc.messages.LoginFailed": "Azure 登录失败", + "loc.messages.MSILoginFailed": "使用托管服务标识进行 Azure 登录失败", + "loc.messages.AuthSchemeNotSupported": "不支持身份验证方案 %s", + "loc.messages.ErrorInSettingUpSubscription": "设置订阅时出错", + "loc.messages.SettingAzureConfigDir": "将 AZURE_CONFIG_DIR 环境变量设置为 %s", + "loc.messages.SettingAzureCloud": "将活动云设置为 %s", + "loc.messages.JS_InvalidFilePath": "在指定的脚本位置 \"%s\" 找不到脚本文件。请验证该脚本是否存在于指定的路径中。如果要使用内联脚本,请将输入 `Script Location` 指定为 `inlineScript`。", + "loc.messages.JS_InvalidErrorActionPreference": "无效的 ErrorActionPreference“%s”。值必须为下列之一: \"Stop\"、\"Continue\" 或 \"SilentlyContinue\"", + "loc.messages.GlobalCliConfigAgentVersionWarning": "对于低于 2.115.0 的代理版本,只能使用全局 Azure CLI 配置", + "loc.messages.UnacceptedScriptLocationValue": "%s 不是任务输入“脚本位置”(YAML 中的 scriptLocation) 的有效值。值可以是“inlineScript”或“scriptPath”", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "机密已过期,请在 %s 更新服务连接。若要详细了解如何转换到无机密服务连接,请参阅 https://aka.ms/azdo-rm-workload-identity-conversion。", + "loc.messages.ProxyConfig": "Az 工具配置为将 %s 用作代理服务器", + "loc.messages.FailedToRefreshAzSession": "尝试刷新 az-cli 会话时出现以下错误:%s", + "loc.messages.RefreshingAzSession": "正在尝试刷新 az-cli 会话...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "“keepAzSessionActive”输入可能只能用于工作负载联合身份验证 ARM 服务连接。引用的服务终结点身份验证方案异常:%s。更改方案或删除“keepAzSessionActive”输入。" } \ No newline at end of file diff --git a/Tasks/AzureCLIV2/Strings/resources.resjson/zh-TW/resources.resjson b/Tasks/AzureCLIV2/Strings/resources.resjson/zh-TW/resources.resjson index 3ba81a748d6d..6804cf32a506 100644 --- a/Tasks/AzureCLIV2/Strings/resources.resjson/zh-TW/resources.resjson +++ b/Tasks/AzureCLIV2/Strings/resources.resjson/zh-TW/resources.resjson @@ -1,58 +1,58 @@ -{ - "loc.friendlyName": "Azure CLI", - "loc.helpMarkDown": "[深入了解此工作](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md)或[參閱 Azure CLI 文件](https://docs.microsoft.com/cli/azure/)", - "loc.description": "在 Linux 代理程式上執行時,在 PowerShell Core/殼層指令碼中對 Azure 訂閱執行 Azure CLI 命令,或在 Windows 代理程式上執行時,在 PowerShell/PowerShell Core/批次指令碼中對 Azure 訂閱執行 Azure CLI 命令。", - "loc.instanceNameFormat": "Azure CLI $(scriptPath)", - "loc.releaseNotes": "2.0 版的新功能:\n- PowerShell 及 PowerShell Core 指令碼的支援。\n- PowerShell Core 適用於跨平台代理程式 (Linux、macOS 或 Windows),請確定代理程式使用 PowerShell 第 6 版或較新版本。\n- Powershell 指令碼僅適用於 Windows 代理程式,請確定代理程式使用 PowerShell 第 5 版或較舊版本。", - "loc.group.displayName.advanced": "進階", - "loc.input.label.connectedServiceNameARM": "Azure Resource Manager 連線", - "loc.input.help.connectedServiceNameARM": "為部署選取 Azure Resource Manager 服務連線", - "loc.input.label.scriptType": "指令碼類型", - "loc.input.help.scriptType": "指令碼類型: PowerShell/PowerShell Core/批次/殼層指令碼。請選取殼層/PowerShell Core 指令碼 (在 Linux 代理程式上執行時) 或批次/PowerShell/PowerShell Core 指令碼 (在 Windows 代理程式上執行時)。PowerShell Core 指令碼可在跨平台代理程式上執行 (Linux、macOS 或 Windows)。", - "loc.input.label.scriptLocation": "指令碼位置", - "loc.input.help.scriptLocation": "指令碼路徑: 檔案路徑或內嵌指令碼", - "loc.input.label.scriptPath": "指令碼路徑", - "loc.input.help.scriptPath": "指令碼的完整路徑 (使用 Windows 代理程式時為 .ps1 或 .bat 或 .cmd,使用 Linux 代理程式時為 .ps1 或 .sh),或相對於預設工作目錄的路徑", - "loc.input.label.inlineScript": "內嵌指令碼", - "loc.input.help.inlineScript": "您可於此處寫入您的指令碼內嵌。當使用 Windows 代理程式時,請使用 PowerShell、PowerShell Core 或批次指令碼,當使用 Linux 代理程式時,請使用 PowerShell Core 或殼層指令碼。針對批次檔案,請在每個 azure 命令前面使用前置詞 \"call\"。您也可以使用引數,將預先定義及自訂的變數傳遞至此指令碼 \n\n PowerShell/PowerShellCore/殼層的範例: \naz --version \naz account show \n\n 批次的範例:\ncall az --version \ncall az account show", - "loc.input.label.scriptArguments": "指令碼引數", - "loc.input.help.scriptArguments": "傳遞給指令碼的引數", - "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", - "loc.input.help.powerShellErrorActionPreference": "請在 powershell/powershell core 指令碼的頂端前面加上 `$ErrorActionPreference = 'VALUE'` 這行程式碼。", - "loc.input.label.addSpnToEnvironment": "存取指令碼中的服務主體詳細資料", - "loc.input.help.addSpnToEnvironment": "將您選擇的 Azure 端點服務主體識別碼、服務主體金鑰和租用戶識別碼新增至指令碼的執行環境。您可以在指令碼中使用下列變數: `servicePrincipalId`、`servicePrincipalKey` 和 `tenantId`。\n\n只有當 Azure 端點具有服務主體驗證配置時才接受此設定。\n\n存取環境變數的語法視指令碼類型而定。\n\nPowershell 指令碼: $env:servicePrincipalId\n\n批次指令碼: %servicePrincipalId% \n\n殼層指令碼: $servicePrincipalId", - "loc.input.label.useGlobalConfig": "使用全域 Azure CLI 設定", - "loc.input.help.useGlobalConfig": "如果此項目為 false,則此工作會使用其獨立的 [Azure CLI 設定目錄](https://docs.microsoft.com/zh-tw/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)。這個項目可在 *平行* 版本中用於執行 Azure CLI 工作", - "loc.input.label.cwd": "工作目錄", - "loc.input.help.cwd": "指令碼執行所在的現行工作目錄。Empty 是存放庫 (組建) 或成品 (發行) 的根目錄,即 $(System.DefaultWorkingDirectory)", - "loc.input.label.failOnStandardError": "發生標準錯誤的失敗", - "loc.input.help.failOnStandardError": "若此項目為 true,則當任何錯誤寫入 StandardError 串流時此工作將失敗。取消選取核取方塊可略過標準錯誤並根據結束代碼判斷狀態", - "loc.input.label.powerShellIgnoreLASTEXITCODE": "略過 $LASTEXITCODE", - "loc.input.help.powerShellIgnoreLASTEXITCODE": "若此為 false,則會將 `if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }` 附加至您指令碼的結尾。如此會讓來自外部命令中的最後一個結束代碼,以 PowerShell 的結束代碼散佈。否則,不會將此行附加至您的指令碼結尾。", - "loc.input.label.visibleAzLogin": "az 登入輸出可見度", - "loc.input.help.visibleAzLogin": "如果設定為 True,az 登入命令將會輸出到工作。設定為 False 將會隱藏 az 登入輸出", - "loc.input.label.keepAzSessionActive": "[實驗] 讓 Azure CLI 工作階段保持使用中", - "loc.input.help.keepAzSessionActive": "啟用時,此工作會持續登入 Azure,以避免在 IdToken 到期日之後,要求存取權杖時的 AADSTS700024 錯誤。請注意,此功能是實驗性的,可能無法在所有情況下運作,而且使用它並無法獲得任何保證。僅適用使用工作負載識別身分同盟驗證配置的服務連線。", - "loc.messages.ScriptReturnCode": "指令碼已結束。傳回碼: %d", - "loc.messages.ScriptFailed": "指令碼失敗。錯誤: %s", - "loc.messages.ScriptFailedStdErr": "指令碼有到 stderr 的輸出。因為 failOnStdErr 設為 true 而失敗。", - "loc.messages.ScriptFailedWithExitCode": "指令碼失敗。結束代碼: %d", - "loc.messages.UnsupportedEndpointScheme": "不支援的服務連線授權配置: AzureRM 的服務主體", - "loc.messages.AzureSDKNotFound": "此電腦上未安裝 Azure CLI 2.x。", - "loc.messages.FailedToLogout": "登出時發生下列錯誤: %s", - "loc.messages.LoginFailed": "Azure 登入失敗", - "loc.messages.MSILoginFailed": "使用受控服務識別登入 Azure 失敗", - "loc.messages.AuthSchemeNotSupported": "不支援驗證結構描述 %s", - "loc.messages.ErrorInSettingUpSubscription": "設定訂用帳戶時發生錯誤", - "loc.messages.SettingAzureConfigDir": "正在將 AZURE_CONFIG_DIR 環境變數設定為: %s", - "loc.messages.SettingAzureCloud": "正在將作用中雲端設定為: %s", - "loc.messages.JS_InvalidFilePath": "在指定的指令碼位置找不到指令檔: '%s'。請確認指令碼存在於指定路徑中。若要使用內嵌指令碼,請將輸入 `Script Location` 指定為 `inlineScript`。", - "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' 無效。此值必須是 'Stop'、'Continue' 或 'SilentlyContinue' 之一", - "loc.messages.GlobalCliConfigAgentVersionWarning": "2.115.0 以下的代理程式版本只能使用全域 Azure CLI 設定", - "loc.messages.UnacceptedScriptLocationValue": "%s 不是工作輸入 'Script Location' (在 YAML 中為 scriptLocation) 的有效值。值可以是 'inlineScript' 或 'scriptPath'", - "loc.messages.ExpiredServicePrincipalMessageWithLink": "秘密已過期,請在 %s 更新服務連線,參閱 https://aka.ms/azdo-rm-workload-identity-conversion 以深入了解如何轉換為無秘密服務連線。", - "loc.messages.ProxyConfig": "az 工具已設定為使用 %s 做為 Proxy 伺服器", - "loc.messages.FailedToRefreshAzSession": "嘗試重新整理 az-cli 工作階段時發生下列錯誤: %s", - "loc.messages.RefreshingAzSession": "正在嘗試重新整理 az-cli 工作階段...", - "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "'keepAzSessionActive' 輸入只能用於工作負載識別身分同盟 ARM 服務連線。參考的服務端點驗證配置非預期: %s。變更配置或移除 'keepAzSessionActive' 輸入。" +{ + "loc.friendlyName": "Azure CLI", + "loc.helpMarkDown": "[深入了解此工作](http://github.com/microsoft/azure-pipelines-tasks/blob/master/Tasks/AzureCLIV2/Readme.md)或[參閱 Azure CLI 文件](https://docs.microsoft.com/cli/azure/)", + "loc.description": "在 Linux 代理程式上執行時,在 PowerShell Core/殼層指令碼中對 Azure 訂閱執行 Azure CLI 命令,或在 Windows 代理程式上執行時,在 PowerShell/PowerShell Core/批次指令碼中對 Azure 訂閱執行 Azure CLI 命令。", + "loc.instanceNameFormat": "Azure CLI $(scriptPath)", + "loc.releaseNotes": "2.0 版的新功能:\n- PowerShell 及 PowerShell Core 指令碼的支援。\n- PowerShell Core 適用於跨平台代理程式 (Linux、macOS 或 Windows),請確定代理程式使用 PowerShell 第 6 版或較新版本。\n- Powershell 指令碼僅適用於 Windows 代理程式,請確定代理程式使用 PowerShell 第 5 版或較舊版本。", + "loc.group.displayName.advanced": "進階", + "loc.input.label.connectedServiceNameARM": "Azure Resource Manager 連線", + "loc.input.help.connectedServiceNameARM": "為部署選取 Azure Resource Manager 服務連線", + "loc.input.label.scriptType": "指令碼類型", + "loc.input.help.scriptType": "指令碼類型: PowerShell/PowerShell Core/批次/殼層指令碼。請選取殼層/PowerShell Core 指令碼 (在 Linux 代理程式上執行時) 或批次/PowerShell/PowerShell Core 指令碼 (在 Windows 代理程式上執行時)。PowerShell Core 指令碼可在跨平台代理程式上執行 (Linux、macOS 或 Windows)。", + "loc.input.label.scriptLocation": "指令碼位置", + "loc.input.help.scriptLocation": "指令碼路徑: 檔案路徑或內嵌指令碼", + "loc.input.label.scriptPath": "指令碼路徑", + "loc.input.help.scriptPath": "指令碼的完整路徑 (使用 Windows 代理程式時為 .ps1 或 .bat 或 .cmd,使用 Linux 代理程式時為 .ps1 或 .sh),或相對於預設工作目錄的路徑", + "loc.input.label.inlineScript": "內嵌指令碼", + "loc.input.help.inlineScript": "您可於此處寫入您的指令碼內嵌。當使用 Windows 代理程式時,請使用 PowerShell、PowerShell Core 或批次指令碼,當使用 Linux 代理程式時,請使用 PowerShell Core 或殼層指令碼。針對批次檔案,請在每個 azure 命令前面使用前置詞 \"call\"。您也可以使用引數,將預先定義及自訂的變數傳遞至此指令碼 \n\n PowerShell/PowerShellCore/殼層的範例: \naz --version \naz account show \n\n 批次的範例:\ncall az --version \ncall az account show", + "loc.input.label.scriptArguments": "指令碼引數", + "loc.input.help.scriptArguments": "傳遞給指令碼的引數", + "loc.input.label.powerShellErrorActionPreference": "ErrorActionPreference", + "loc.input.help.powerShellErrorActionPreference": "請在 powershell/powershell core 指令碼的頂端前面加上 `$ErrorActionPreference = 'VALUE'` 這行程式碼。", + "loc.input.label.addSpnToEnvironment": "存取指令碼中的服務主體詳細資料", + "loc.input.help.addSpnToEnvironment": "將您選擇的 Azure 端點服務主體識別碼、服務主體金鑰和租用戶識別碼新增至指令碼的執行環境。您可以在指令碼中使用下列變數: `servicePrincipalId`、`servicePrincipalKey` 和 `tenantId`。\n\n只有當 Azure 端點具有服務主體驗證配置時才接受此設定。\n\n存取環境變數的語法視指令碼類型而定。\n\nPowershell 指令碼: $env:servicePrincipalId\n\n批次指令碼: %servicePrincipalId% \n\n殼層指令碼: $servicePrincipalId", + "loc.input.label.useGlobalConfig": "使用全域 Azure CLI 設定", + "loc.input.help.useGlobalConfig": "如果此項目為 false,則此工作會使用其獨立的 [Azure CLI 設定目錄](https://docs.microsoft.com/zh-tw/cli/azure/azure-cli-configuration?view=azure-cli-latest#cli-configuration-file)。這個項目可在 *平行* 版本中用於執行 Azure CLI 工作", + "loc.input.label.cwd": "工作目錄", + "loc.input.help.cwd": "指令碼執行所在的現行工作目錄。Empty 是存放庫 (組建) 或成品 (發行) 的根目錄,即 $(System.DefaultWorkingDirectory)", + "loc.input.label.failOnStandardError": "發生標準錯誤的失敗", + "loc.input.help.failOnStandardError": "若此項目為 true,則當任何錯誤寫入 StandardError 串流時此工作將失敗。取消選取核取方塊可略過標準錯誤並根據結束代碼判斷狀態", + "loc.input.label.powerShellIgnoreLASTEXITCODE": "略過 $LASTEXITCODE", + "loc.input.help.powerShellIgnoreLASTEXITCODE": "若此為 false,則會將 `if ((Test-Path -LiteralPath variable:\\LASTEXITCODE)) { exit $LASTEXITCODE }` 附加至您指令碼的結尾。如此會讓來自外部命令中的最後一個結束代碼,以 PowerShell 的結束代碼散佈。否則,不會將此行附加至您的指令碼結尾。", + "loc.input.label.visibleAzLogin": "az 登入輸出可見度", + "loc.input.help.visibleAzLogin": "如果設定為 True,az 登入命令將會輸出到工作。設定為 False 將會隱藏 az 登入輸出", + "loc.input.label.keepAzSessionActive": "[實驗] 讓 Azure CLI 工作階段保持使用中", + "loc.input.help.keepAzSessionActive": "啟用時,此工作會持續登入 Azure,以避免在 IdToken 到期日之後,要求存取權杖時的 AADSTS700024 錯誤。請注意,此功能是實驗性的,可能無法在所有情況下運作,而且使用它並無法獲得任何保證。僅適用使用工作負載識別身分同盟驗證配置的服務連線。", + "loc.messages.ScriptReturnCode": "指令碼已結束。傳回碼: %d", + "loc.messages.ScriptFailed": "指令碼失敗。錯誤: %s", + "loc.messages.ScriptFailedStdErr": "指令碼有到 stderr 的輸出。因為 failOnStdErr 設為 true 而失敗。", + "loc.messages.ScriptFailedWithExitCode": "指令碼失敗。結束代碼: %d", + "loc.messages.UnsupportedEndpointScheme": "不支援的服務連線授權配置: AzureRM 的服務主體", + "loc.messages.AzureSDKNotFound": "此電腦上未安裝 Azure CLI 2.x。", + "loc.messages.FailedToLogout": "登出時發生下列錯誤: %s", + "loc.messages.LoginFailed": "Azure 登入失敗", + "loc.messages.MSILoginFailed": "使用受控服務識別登入 Azure 失敗", + "loc.messages.AuthSchemeNotSupported": "不支援驗證結構描述 %s", + "loc.messages.ErrorInSettingUpSubscription": "設定訂用帳戶時發生錯誤", + "loc.messages.SettingAzureConfigDir": "正在將 AZURE_CONFIG_DIR 環境變數設定為: %s", + "loc.messages.SettingAzureCloud": "正在將作用中雲端設定為: %s", + "loc.messages.JS_InvalidFilePath": "在指定的指令碼位置找不到指令檔: '%s'。請確認指令碼存在於指定路徑中。若要使用內嵌指令碼,請將輸入 `Script Location` 指定為 `inlineScript`。", + "loc.messages.JS_InvalidErrorActionPreference": "ErrorActionPreference '%s' 無效。此值必須是 'Stop'、'Continue' 或 'SilentlyContinue' 之一", + "loc.messages.GlobalCliConfigAgentVersionWarning": "2.115.0 以下的代理程式版本只能使用全域 Azure CLI 設定", + "loc.messages.UnacceptedScriptLocationValue": "%s 不是工作輸入 'Script Location' (YAML 中的 scriptLocation) 的有效值。值可以是 'inlineScript' 或 'scriptPath'", + "loc.messages.ExpiredServicePrincipalMessageWithLink": "秘密已過期,請在 %s 更新服務連線,參閱 https://aka.ms/azdo-rm-workload-identity-conversion 以深入了解如何轉換為無秘密服務連線。", + "loc.messages.ProxyConfig": "az 工具已設定為使用 %s 做為 Proxy 伺服器", + "loc.messages.FailedToRefreshAzSession": "嘗試重新整理 az-cli 工作階段時發生下列錯誤: %s", + "loc.messages.RefreshingAzSession": "正在嘗試重新整理 az-cli 工作階段...", + "loc.messages.KeepingAzSessionActiveUnsupportedScheme": "'keepAzSessionActive' 輸入只能用於工作負載識別身分同盟 ARM 服務連線。參考的服務端點驗證配置非預期: %s。變更配置或移除 'keepAzSessionActive' 輸入。" } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/de-DE/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/de-DE/resources.resjson index 945bbe42b961..27a6530f05f5 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/de-DE/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/de-DE/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "Manuelle Überprüfung", - "loc.helpMarkDown": "[Weitere Informationen zu dieser Aufgabe](https://aka.ms/manual-validation)", - "loc.description": "Halten Sie eine Pipelineausführung an, um auf eine manuelle Interaktion zu warten. Dies funktioniert nur bei YAML-Pipelines.", - "loc.instanceNameFormat": "Manuelle Validierung", - "loc.input.label.notifyUsers": "Benutzer benachrichtigen", - "loc.input.help.notifyUsers": "Senden Sie eine E-Mail an bestimmte Benutzer (oder Gruppen), um diese über ausstehende manuelle Überprüfungen zu informieren. Nur in den genehmigenden Personen angegebene Benutzer können eine manuelle Überprüfung durchführen.", - "loc.input.label.approvers": "Genehmigende Personen", - "loc.input.help.approvers": "Geben Sie Benutzer/Gruppen/Projektteams durch Kommas getrennt an, um auf eine manuelle Überprüfung zu reagieren. Wenn keine Eingabe vorhanden ist, können Benutzer mit der Berechtigung zum Erstellen einer Warteschlange Maßnahmen ergreifen.", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "Anleitung", - "loc.input.help.instructions": "Diese Anweisungen werden dem Benutzer angezeigt, damit dieser die manuelle Überprüfung fortsetzen oder ablehnen kann. Basierend auf diesen Anweisungen kann der Benutzer eine fundierte Entscheidung zu dieser manuellen Überprüfung treffen.", - "loc.input.label.onTimeout": "Bei Zeitlimit", - "loc.input.help.onTimeout": "Hiermit wird diese manuelle Überprüfung automatisch abgelehnt oder fortgesetzt, wenn sie für das angegebene Zeitlimit oder seit 30 Tagen aussteht, je nachdem, was zuerst eintritt." +{ + "loc.friendlyName": "Manuelle Überprüfung", + "loc.helpMarkDown": "[Weitere Informationen zu dieser Aufgabe](https://aka.ms/manual-validation)", + "loc.description": "Halten Sie eine Pipelineausführung an, um auf eine manuelle Interaktion zu warten. Dies funktioniert nur bei YAML-Pipelines.", + "loc.instanceNameFormat": "Manuelle Validierung", + "loc.input.label.notifyUsers": "Benutzer benachrichtigen", + "loc.input.help.notifyUsers": "Senden Sie eine E-Mail an bestimmte Benutzer (oder Gruppen), um diese über ausstehende manuelle Überprüfungen zu informieren. Nur in den genehmigenden Personen angegebene Benutzer können eine manuelle Überprüfung durchführen.", + "loc.input.label.approvers": "Genehmigende Personen", + "loc.input.help.approvers": "Geben Sie Benutzer/Gruppen/Projektteams durch Kommas getrennt an, um auf eine manuelle Überprüfung zu reagieren. Wenn keine Eingabe vorhanden ist, können Benutzer mit der Berechtigung zum Erstellen einer Warteschlange Maßnahmen ergreifen.", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "Genehmigern erlauben, ihre eigenen Ausführungen zu genehmigen", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "Wenn dies zutrifft, kann die genehmigende Person ihre eigene Ausführung genehmigen.", + "loc.input.label.instructions": "Anleitung", + "loc.input.help.instructions": "Diese Anweisungen werden dem Benutzer angezeigt, damit dieser die manuelle Überprüfung fortsetzen oder ablehnen kann. Basierend auf diesen Anweisungen kann der Benutzer eine fundierte Entscheidung zu dieser manuellen Überprüfung treffen.", + "loc.input.label.onTimeout": "Bei Zeitlimit", + "loc.input.help.onTimeout": "Hiermit wird diese manuelle Überprüfung automatisch abgelehnt oder fortgesetzt, wenn sie für das angegebene Zeitlimit oder seit 30 Tagen aussteht, je nachdem, was zuerst eintritt." } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/es-ES/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/es-ES/resources.resjson index f69ba26ee85c..d6c262013103 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/es-ES/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/es-ES/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "Validación manual", - "loc.helpMarkDown": "[Obtener más información acerca de esta tarea](https://aka.ms/manual-validation)", - "loc.description": "Pausa una ejecución de canalización para esperar la interacción manual. Solo funciona con las canalizaciones de YAML.", - "loc.instanceNameFormat": "Validación manual", - "loc.input.label.notifyUsers": "Notificar a los usuarios", - "loc.input.help.notifyUsers": "Envíe un correo electrónico de validación manual pendiente a usuarios (o grupos) específicos. Solo los usuarios especificados en los aprobadores pueden actuar en una validación manual.", - "loc.input.label.approvers": "Aprobadores", - "loc.input.help.approvers": "Especifique usuarios, grupos o equipos de proyecto separados por comas para actuar en una validación manual. En ausencia de entrada, los usuarios con permiso para crear colas podrán actuar.", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "Instrucciones", - "loc.input.help.instructions": "Estas instrucciones se mostrarán al usuario para reanudar o rechazar la validación manual. En función de ellas, el usuario tomará una decisión informada sobre esta validación manual.", - "loc.input.label.onTimeout": "Al agotarse el tiempo de espera", - "loc.input.help.onTimeout": "Rechaza o reanuda automáticamente esta validación manual después de estar pendiente durante el tiempo de espera especificado o 30 días, el que ocurra antes." +{ + "loc.friendlyName": "Validación manual", + "loc.helpMarkDown": "[Obtener más información acerca de esta tarea](https://aka.ms/manual-validation)", + "loc.description": "Pausa una ejecución de canalización para esperar la interacción manual. Solo funciona con las canalizaciones de YAML.", + "loc.instanceNameFormat": "Validación manual", + "loc.input.label.notifyUsers": "Notificar a los usuarios", + "loc.input.help.notifyUsers": "Envíe un correo electrónico de validación manual pendiente a usuarios (o grupos) específicos. Solo los usuarios especificados en los aprobadores pueden actuar en una validación manual.", + "loc.input.label.approvers": "Aprobadores", + "loc.input.help.approvers": "Especifique usuarios, grupos o equipos de proyecto separados por comas para actuar en una validación manual. En ausencia de entrada, los usuarios con permiso para crear colas podrán actuar.", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "Permitir que los aprobadores aprueben sus propias ejecuciones", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "Si es true, el aprobador podrá aprobar su propia ejecución", + "loc.input.label.instructions": "Instrucciones", + "loc.input.help.instructions": "Estas instrucciones se mostrarán al usuario para reanudar o rechazar la validación manual. En función de ellas, el usuario tomará una decisión informada sobre esta validación manual.", + "loc.input.label.onTimeout": "Al agotarse el tiempo de espera", + "loc.input.help.onTimeout": "Rechaza o reanuda automáticamente esta validación manual después de estar pendiente durante el tiempo de espera especificado o 30 días, el que ocurra antes." } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/fr-FR/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/fr-FR/resources.resjson index 3db1c84f204b..aae432d5722a 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/fr-FR/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/fr-FR/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "Validation manuelle", - "loc.helpMarkDown": "[En savoir plus sur cette tâche](https://aka.ms/manual-validation)", - "loc.description": "Suspendre une exécution de pipeline pour attendre une interaction manuelle. Fonctionne uniquement avec les pipelines YAML.", - "loc.instanceNameFormat": "Validation manuelle", - "loc.input.label.notifyUsers": "Notifier les utilisateurs", - "loc.input.help.notifyUsers": "Envoyez un e-mail relatif à une validation manuelle en attente à des utilisateurs (ou groupes) spécifiques. Seuls les utilisateurs spécifiés dans les approbateurs peuvent agir sur une validation manuelle.", - "loc.input.label.approvers": "Approbateurs", - "loc.input.help.approvers": "Spécifiez les utilisateurs/groupes/équipes de projet séparés par des virgules pour agir sur une validation manuelle. En l’absence d’entrée, les utilisateurs disposant de l’autorisation de génération de file d’attente pourront prendre des mesures.", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "Instructions", - "loc.input.help.instructions": "Ces instructions sont montrées à l'utilisateur pour lui permettre de reprendre ou de rejeter la validation manuelle. En fonction de ces instructions, l'utilisateur prend une décision en connaissance de cause sur cette validation manuelle.", - "loc.input.label.onTimeout": "Au délai d'expiration", - "loc.input.help.onTimeout": "Rejetez ou reprenez cette validation manuelle automatiquement après la fin du délai d'expiration spécifié ou après 30 jours, selon la valeur la plus proche." +{ + "loc.friendlyName": "Validation manuelle", + "loc.helpMarkDown": "[En savoir plus sur cette tâche](https://aka.ms/manual-validation)", + "loc.description": "Suspendre une exécution de pipeline pour attendre une interaction manuelle. Fonctionne uniquement avec les pipelines YAML.", + "loc.instanceNameFormat": "Validation manuelle", + "loc.input.label.notifyUsers": "Notifier les utilisateurs", + "loc.input.help.notifyUsers": "Envoyez un e-mail relatif à une validation manuelle en attente à des utilisateurs (ou groupes) spécifiques. Seuls les utilisateurs spécifiés dans les approbateurs peuvent agir sur une validation manuelle.", + "loc.input.label.approvers": "Approbateurs", + "loc.input.help.approvers": "Spécifiez les utilisateurs/groupes/équipes de projet séparés par des virgules pour agir sur une validation manuelle. En l’absence d’entrée, les utilisateurs disposant de l’autorisation de génération de file d’attente pourront prendre des mesures.", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "Autoriser les approbateurs à approuver leur propre exécution", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "Si cela est vrai, l’approbateur peut approuver sa propre exécution", + "loc.input.label.instructions": "Instructions", + "loc.input.help.instructions": "Ces instructions sont montrées à l'utilisateur pour lui permettre de reprendre ou de rejeter la validation manuelle. En fonction de ces instructions, l'utilisateur prend une décision en connaissance de cause sur cette validation manuelle.", + "loc.input.label.onTimeout": "Au délai d'expiration", + "loc.input.help.onTimeout": "Rejetez ou reprenez cette validation manuelle automatiquement après la fin du délai d'expiration spécifié ou après 30 jours, selon la valeur la plus proche." } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/it-IT/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/it-IT/resources.resjson index 6c9dae6e3f2f..e7a05a7ada5a 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/it-IT/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/it-IT/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "Convalida manuale", - "loc.helpMarkDown": "[Altre informazioni su questa attività](https://aka.ms/manual-validation)", - "loc.description": "Sospendere l'esecuzione di una pipeline in attesa dell'interazione manuale. Funziona solo con pipeline YAML.", - "loc.instanceNameFormat": "Convalida manuale", - "loc.input.label.notifyUsers": "Invia notifica agli utenti", - "loc.input.help.notifyUsers": "Consente di inviare un messaggio di posta elettronica relativo a una convalida manuale in sospeso a utenti o gruppi specifici. Solo gli utenti specificati nei responsabili approvazione possono eseguire una convalida manuale.", - "loc.input.label.approvers": "Responsabili approvazione", - "loc.input.help.approvers": "Specificare utenti/gruppi/team di progetto separati da virgole che possono eseguire una convalida manuale. In assenza di input, gli utenti con l'autorizzazione di compilazione della coda saranno in grado di intervenire.", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "Istruzioni", - "loc.input.help.instructions": "Queste istruzioni verranno visualizzate agli utenti per consentire loro di riprendere o rifiutare la convalida manuale. Usando queste istruzioni l'utente potrà prendere una decisione basata su informazioni aggiornate in merito a questa convalida manuale.", - "loc.input.label.onTimeout": "In caso di timeout", - "loc.input.help.onTimeout": "Rifiuta o riprende automaticamente questa convalida manuale dopo che è rimasta in sospeso per il timeout specificato o per 30 giorni, a seconda di quale sia la data più vicina." +{ + "loc.friendlyName": "Convalida manuale", + "loc.helpMarkDown": "[Altre informazioni su questa attività](https://aka.ms/manual-validation)", + "loc.description": "Sospendere l'esecuzione di una pipeline in attesa dell'interazione manuale. Funziona solo con pipeline YAML.", + "loc.instanceNameFormat": "Convalida manuale", + "loc.input.label.notifyUsers": "Invia notifica agli utenti", + "loc.input.help.notifyUsers": "Consente di inviare un messaggio di posta elettronica relativo a una convalida manuale in sospeso a utenti o gruppi specifici. Solo gli utenti specificati nei responsabili approvazione possono eseguire una convalida manuale.", + "loc.input.label.approvers": "Responsabili approvazione", + "loc.input.help.approvers": "Specificare utenti/gruppi/team di progetto separati da virgole che possono eseguire una convalida manuale. In assenza di input, gli utenti con l'autorizzazione di compilazione della coda saranno in grado di intervenire.", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "Consenti ai responsabili approvazione di approvare la propria esecuzione", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "Se è true, il responsabile approvazione potrà approvare la propria esecuzione", + "loc.input.label.instructions": "Istruzioni", + "loc.input.help.instructions": "Queste istruzioni verranno visualizzate agli utenti per consentire loro di riprendere o rifiutare la convalida manuale. Usando queste istruzioni l'utente potrà prendere una decisione basata su informazioni aggiornate in merito a questa convalida manuale.", + "loc.input.label.onTimeout": "In caso di timeout", + "loc.input.help.onTimeout": "Rifiuta o riprende automaticamente questa convalida manuale dopo che è rimasta in sospeso per il timeout specificato o per 30 giorni, a seconda di quale sia la data più vicina." } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/ja-JP/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/ja-JP/resources.resjson index 8351ee35309a..20a31829497d 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/ja-JP/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/ja-JP/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "手動検証", - "loc.helpMarkDown": "[このタスクの詳細を表示](https://aka.ms/manual-validation)", - "loc.description": "パイプライン実行を一時停止し、対話式操作を行うために待機します。YAML パイプラインでのみ機能します。", - "loc.instanceNameFormat": "手動検証", - "loc.input.label.notifyUsers": "ユーザーに通知", - "loc.input.help.notifyUsers": "手動検証の保留のメールを特定のユーザー (またはグループ) に送信します。承認者に指定されたユーザーのみが手動検証を操作できます。", - "loc.input.label.approvers": "承認者", - "loc.input.help.approvers": "手動検証を操作するには、ユーザー/グループ/プロジェクト チームをコンマで区切って指定します。入力がない場合、キュー ビルドのアクセス許可を持つユーザーがアクションを実行できます。", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "手順", - "loc.input.help.instructions": "手動検証を再開または拒否できるよう、ユーザーにこの指示が表示されます。これらの指示に基づき、ユーザーは十分な情報を得たうえで、この手動検証について決定します。", - "loc.input.label.onTimeout": "タイムアウト時", - "loc.input.help.onTimeout": "この手動検証は、指定されたタイムアウト期間または 30 日間 (いずれか早いほう) にわたって保留のままだと、自動的に拒否または再開されます。" +{ + "loc.friendlyName": "手動検証", + "loc.helpMarkDown": "[このタスクの詳細を表示](https://aka.ms/manual-validation)", + "loc.description": "パイプライン実行を一時停止し、対話式操作を行うために待機します。YAML パイプラインでのみ機能します。", + "loc.instanceNameFormat": "手動検証", + "loc.input.label.notifyUsers": "ユーザーに通知", + "loc.input.help.notifyUsers": "手動検証の保留のメールを特定のユーザー (またはグループ) に送信します。承認者に指定されたユーザーのみが手動検証を操作できます。", + "loc.input.label.approvers": "承認者", + "loc.input.help.approvers": "手動検証を操作するには、ユーザー/グループ/プロジェクト チームをコンマで区切って指定します。入力がない場合、キュー ビルドのアクセス許可を持つユーザーがアクションを実行できます。", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "承認者が自分の実行を承認できるようにします", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "これが true の場合、承認者は独自の実行を承認できます", + "loc.input.label.instructions": "手順", + "loc.input.help.instructions": "手動検証を再開または拒否できるよう、ユーザーにこの指示が表示されます。これらの指示に基づき、ユーザーは十分な情報を得たうえで、この手動検証について決定します。", + "loc.input.label.onTimeout": "タイムアウト時", + "loc.input.help.onTimeout": "この手動検証は、指定されたタイムアウト期間または 30 日間 (いずれか早いほう) にわたって保留のままだと、自動的に拒否または再開されます。" } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/ko-KR/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/ko-KR/resources.resjson index d59c776ba55b..d16a66b7cf2d 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/ko-KR/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/ko-KR/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "수동 유효성 검사", - "loc.helpMarkDown": "[이 작업에 대한 자세한 정보](https://aka.ms/manual-validation)", - "loc.description": "파이프라인 실행을 일시 중지하여 수동 조작을 기다리세요. YAML 파이프라인에서만 작동합니다.", - "loc.instanceNameFormat": "수동 유효성 검사", - "loc.input.label.notifyUsers": "사용자 알림", - "loc.input.help.notifyUsers": "수동 유효성 검사 보류 중 전자 메일을 특정 사용자나 그룹에 보냅니다. 승인자에 지정된 사용자만 수동 유효성 검사를 수행할 수 있습니다.", - "loc.input.label.approvers": "승인자", - "loc.input.help.approvers": "수동 유효성 검사를 수행하려면 사용자, 그룹, 프로젝트 팀을 쉼표로 구분하여 지정하세요. 입력이 없으면 큐 빌드 권한이 있는 사용자가 작업을 수행할 수 있습니다.", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "지침", - "loc.input.help.instructions": "이 지침은 사용자가 수동 유효성 검사를 다시 시작하거나 거부하려는 경우 표시됩니다. 사용자는 해당 지침에 따라 이 수동 유효성 검사에 대해 합리적인 결정을 내리게 됩니다.", - "loc.input.label.onTimeout": "시간 초과 시", - "loc.input.help.onTimeout": "지정된 시간 제한 또는 30일 중 빠른 기간에 보류된 후 이 수동 유효성 검사를 자동으로 거부하거나 다시 시작합니다." +{ + "loc.friendlyName": "수동 유효성 검사", + "loc.helpMarkDown": "[이 작업에 대한 자세한 정보](https://aka.ms/manual-validation)", + "loc.description": "파이프라인 실행을 일시 중지하여 수동 조작을 기다리세요. YAML 파이프라인에서만 작동합니다.", + "loc.instanceNameFormat": "수동 유효성 검사", + "loc.input.label.notifyUsers": "사용자 알림", + "loc.input.help.notifyUsers": "수동 유효성 검사 보류 중 전자 메일을 특정 사용자나 그룹에 보냅니다. 승인자에 지정된 사용자만 수동 유효성 검사를 수행할 수 있습니다.", + "loc.input.label.approvers": "승인자", + "loc.input.help.approvers": "수동 유효성 검사를 수행하려면 사용자, 그룹, 프로젝트 팀을 쉼표로 구분하여 지정하세요. 입력이 없으면 큐 빌드 권한이 있는 사용자가 작업을 수행할 수 있습니다.", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "승인자가 자신의 실행을 승인하도록 허용", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "True인 경우 승인자는 자신의 실행을 승인할 수 있습니다.", + "loc.input.label.instructions": "지침", + "loc.input.help.instructions": "이 지침은 사용자가 수동 유효성 검사를 다시 시작하거나 거부하려는 경우 표시됩니다. 사용자는 해당 지침에 따라 이 수동 유효성 검사에 대해 합리적인 결정을 내리게 됩니다.", + "loc.input.label.onTimeout": "시간 초과 시", + "loc.input.help.onTimeout": "지정된 시간 제한 또는 30일 중 빠른 기간에 보류된 후 이 수동 유효성 검사를 자동으로 거부하거나 다시 시작합니다." } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/zh-CN/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/zh-CN/resources.resjson index b86c7893d790..e45b3cfb648e 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/zh-CN/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/zh-CN/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "手动验证", - "loc.helpMarkDown": "[详细了解此任务](https://aka.ms/manual-validation)", - "loc.description": "暂停管道运行以等待手动交互。仅适用于 YAML 管道。", - "loc.instanceNameFormat": "手动验证", - "loc.input.label.notifyUsers": "通知用户", - "loc.input.help.notifyUsers": "将手动验证挂起电子邮件发送到特定用户(或组)。只有审批者中指定的用户才能执行手动验证。", - "loc.input.label.approvers": "审批者", - "loc.input.help.approvers": "指定用户/组/项目团队(以逗号分隔),以执行手动验证。如果没有输入,则具有队列生成权限的用户将能够执行操作。", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "说明", - "loc.input.help.instructions": "将向用户显示这些说明,以便恢复或拒绝手动验证。用户根据这些说明,对此手动验证作出知情的决策。", - "loc.input.label.onTimeout": "超时时", - "loc.input.help.onTimeout": "手动验证的挂起状态超过指定超时或 30 天后,系统将自动拒绝或继续此手动验证,以首先达到的条件为准。" +{ + "loc.friendlyName": "手动验证", + "loc.helpMarkDown": "[详细了解此任务](https://aka.ms/manual-validation)", + "loc.description": "暂停管道运行以等待手动交互。仅适用于 YAML 管道。", + "loc.instanceNameFormat": "手动验证", + "loc.input.label.notifyUsers": "通知用户", + "loc.input.help.notifyUsers": "将手动验证挂起电子邮件发送到特定用户(或组)。只有审批者中指定的用户才能执行手动验证。", + "loc.input.label.approvers": "审批者", + "loc.input.help.approvers": "指定用户/组/项目团队(以逗号分隔),以执行手动验证。如果没有输入,则具有队列生成权限的用户将能够执行操作。", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "允许审批者批准自己的运行", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "如果是这样,审批者将能够批准自己的运行", + "loc.input.label.instructions": "说明", + "loc.input.help.instructions": "将向用户显示这些说明,以便恢复或拒绝手动验证。用户根据这些说明,对此手动验证作出知情的决策。", + "loc.input.label.onTimeout": "超时时", + "loc.input.help.onTimeout": "手动验证的挂起状态超过指定超时或 30 天后,系统将自动拒绝或继续此手动验证,以首先达到的条件为准。" } \ No newline at end of file diff --git a/Tasks/ManualValidationV1/Strings/resources.resjson/zh-TW/resources.resjson b/Tasks/ManualValidationV1/Strings/resources.resjson/zh-TW/resources.resjson index f02f04129a75..3e97a1286d74 100644 --- a/Tasks/ManualValidationV1/Strings/resources.resjson/zh-TW/resources.resjson +++ b/Tasks/ManualValidationV1/Strings/resources.resjson/zh-TW/resources.resjson @@ -1,16 +1,16 @@ -{ - "loc.friendlyName": "手動驗證", - "loc.helpMarkDown": "[深入了解此工作](https://aka.ms/manual-validation)", - "loc.description": "暫停管線執行以待手動互動。僅適用於 YAML 管線。", - "loc.instanceNameFormat": "手動驗證", - "loc.input.label.notifyUsers": "通知使用者", - "loc.input.help.notifyUsers": "將手動驗證待決電子郵件傳送給特定使用者 (或群組)。只有核准者中指定的使用者可以執行手動驗證。", - "loc.input.label.approvers": "核准者", - "loc.input.help.approvers": "指定以逗號分隔以進行手動驗證的使用者/群組/專案小組。在沒有輸入的情況下,具有佇列建置權限的使用者將可以採取動作。", - "loc.input.label.allowApproversToApproveTheirOwnRuns": "Allow approvers to approve their own run", - "loc.input.help.allowApproversToApproveTheirOwnRuns": "If this is true, approver will be able to approve their own run", - "loc.input.label.instructions": "指示", - "loc.input.help.instructions": "使用者會看到這些指示,以繼續或拒絕手動驗證。使用者將會根據這些指示,對此手動驗證做出經旁徵博引的決定。", - "loc.input.label.onTimeout": "逾時時", - "loc.input.help.onTimeout": "當手動驗證暫止時間超過指定的逾時或 30 天時 (以先達到的時間為準),自動拒絕或繼續此手動驗證。" +{ + "loc.friendlyName": "手動驗證", + "loc.helpMarkDown": "[深入了解此工作](https://aka.ms/manual-validation)", + "loc.description": "暫停管線執行以待手動互動。僅適用於 YAML 管線。", + "loc.instanceNameFormat": "手動驗證", + "loc.input.label.notifyUsers": "通知使用者", + "loc.input.help.notifyUsers": "將手動驗證待決電子郵件傳送給特定使用者 (或群組)。只有核准者中指定的使用者可以執行手動驗證。", + "loc.input.label.approvers": "核准者", + "loc.input.help.approvers": "指定以逗號分隔以進行手動驗證的使用者/群組/專案小組。在沒有輸入的情況下,具有佇列建置權限的使用者將可以採取動作。", + "loc.input.label.allowApproversToApproveTheirOwnRuns": "允許核准者核准自己的回合", + "loc.input.help.allowApproversToApproveTheirOwnRuns": "若此為 true,核准者將能夠核准自己的執行", + "loc.input.label.instructions": "指示", + "loc.input.help.instructions": "使用者會看到這些指示,以繼續或拒絕手動驗證。使用者將會根據這些指示,對此手動驗證做出經旁徵博引的決定。", + "loc.input.label.onTimeout": "逾時時", + "loc.input.help.onTimeout": "當手動驗證暫止時間超過指定的逾時或 30 天時 (以先達到的時間為準),自動拒絕或繼續此手動驗證。" } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/de-DE/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/de-DE/resources.resjson index 2e149683e28e..328fc7e13261 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/de-DE/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/de-DE/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "npm-Authentifizierung (für Aufgabenausführungen)", - "loc.helpMarkDown": "", - "loc.description": "Verwenden Sie diese Aufgabe nicht, wenn Sie auch die npm-Aufgabe verwenden. Stellt npm-Anmeldeinformationen für eine NPMRC-Datei in Ihrem Repository für den Gültigkeitsbereich des Builds bereit. So können npm-Aufgabenausführungen wie gulp und Grunt sich bei privaten Registrierungen authentifizieren.", - "loc.instanceNameFormat": "npm-Authentifizierung $(workingFile)", - "loc.input.label.workingFile": "NPMRC-Datei zur Authentifizierung", - "loc.input.help.workingFile": "Pfad zur NPMRC-Datei, die die Registrierungen angibt, mit denen Sie arbeiten möchten. Wählen Sie die Datei aus, nicht den Ordner, z. B. „/packages/mypackage.npmrc“. Wenn Azure Artifacts URL und die von der Entra-Workload-ID gesicherte Azure DevOps Dienstverbindung des Benutzers festgelegt sind, werden Registrierungen in npmrc ignoriert.", - "loc.input.label.customEndpoint": "Anmeldeinformationen für Registrierungen außerhalb dieser Organisation/Sammlung", - "loc.input.help.customEndpoint": "Anmeldeinformationen zur Verwendung für externe Registrierungen in der NPMRC-Datei des Projekts. Lassen Sie dieses Feld bei Registrierungen in dieser Organisation/Sammlung leer. Es werden automatisch die Anmeldeinformationen für den Build verwendet.", - "loc.input.label.workloadIdentityServiceConnection": "Dienstverbindung „Azure DevOps“", - "loc.input.help.workloadIdentityServiceConnection": "Anmeldeinformationen für Registrierungen, die sich in der .npmrc-Datei eines Projekts befinden. Verwenden Sie feedUrl, um die Anmeldeinformationen für die einzelne Registrierung in einer .npmrc-Datei anzugeben. Nicht kompatibel mit customEndpoint.", - "loc.input.label.feedUrl": "Azure Artifacts-URL", - "loc.input.help.feedUrl": "Wenn diese Option festgelegt ist, ist azureDevOpsServiceConnection erforderlich. Nicht kompatibel mit customEndpoint. Die Feed-URL muss im npm-Registrierung Format vorliegen, z. B. https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "Buildanmeldeinformationen gefunden", - "loc.messages.NoBuildCredentials": "Die Buildanmeldeinformationen wurden nicht gefunden.", - "loc.messages.ServiceEndpointNotDefined": "Die Dienstverbindung wurde nicht gefunden. Stellen Sie sicher, dass die ausgewählte Dienstverbindung noch vorhanden ist.", - "loc.messages.NpmrcNotNpmrc": "Die für die Authentifizierung ausgewählte Datei (%s) ist keine gültige NPMRC-Datei.", - "loc.messages.ServiceEndpointUrlNotDefined": "Die URL für die Dienstverbindung wurde nicht gefunden. Stellen Sie sicher, dass die Dienstverbindung ordnungsgemäß konfiguriert ist.", - "loc.messages.SavingFile": "Datei %s wird gespeichert", - "loc.messages.RestoringFile": "Datei %s wird wiederhergestellt", - "loc.messages.AddingAuthRegistry": "Authentifizierung für die Registrierung wird hinzugefügt: %s", - "loc.messages.FoundLocalRegistries": "%d Registrierungen in dieser Organisation/Sammlung gefunden", - "loc.messages.AddingLocalCredentials": "Für eine lokale Registrierung werden Anmeldeinformationen hinzugefügt.", - "loc.messages.AddingEndpointCredentials": "Für die Dienstverbindung \"%s\" werden Anmeldeinformationen hinzugefügt.", - "loc.messages.AuthenticatingThisNpmrc": "Der NPMRC-Datei unter \"%s\" wird eine Authentifizierung hinzugefügt.", - "loc.messages.IgnoringRegistry": "Es wurden keine neuen Dienstverbindungen gefunden, die mit %s übereinstimmen.", - "loc.messages.ForcePackagingUrl": "URL zur Paketierung der Sammlung wird erzwungen als: %s", - "loc.messages.CheckedInCredentialsOverriden": "Für die %s-Registrierung in der ausgewählten NPMRC-Datei wurden Anmeldeinformationen gefunden und überschrieben. Entfernen Sie die Anmeldeinformationen aus der Datei, und speichern Sie sie stattdessen in einer npm-Dienstverbindung (empfohlen), oder entfernen Sie die Aufgabe zur npm-Authentifizierung aus Ihrem Build, um die in einer NPMRC-Datei eingecheckten Anmeldeinformationen zu verwenden.", - "loc.messages.NoIndexJsonFile": "Es wurde keine Datei \"index.json\" gefunden, und es wurden keine Dateien wiederhergestellt.", - "loc.messages.RevertedChangesToNpmrc": "Die Änderungen an \"%s\" wurden zurückgesetzt.", - "loc.messages.NpmrcDoesNotExist": "Die unter \"%s\" ausgewählte NPMRC-Datei ist zurzeit nicht vorhanden.", - "loc.messages.SuccessfulPush": "NPMRC erfolgreich gepusht", - "loc.messages.SuccessfulAppend": "NPMRC erfolgreich angefügt", - "loc.messages.Info_AddingFederatedFeedAuth": "Authentifizierungsinformationen der Dienstverbindung %s werden für Feed %s hinzugefügt", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Die Authentifizierung für den Feed %s wurde erfolgreich hinzugefügt.", - "loc.messages.FailedToGetServiceConnectionAuth": "Verbundanmeldeinformationen können nicht von der Dienstverbindung abgerufen werden: %s.", - "loc.messages.MissingFeedUrlOrServiceConnection": "Wenn eine Feed-URL angegeben wird, muss die „Azure DevOps“-Dienstverbindung angegeben werden und darf nicht leer sein.", - "loc.messages.SkippingParsingNpmrc": "Analyse von npmrc wird übersprungen.", - "loc.messages.DuplicateCredentials": "Die Authentifizierung für die Registrierung „%s“ wurde zuvor festgelegt. Wird mit neuer Konfiguration überschrieben.", - "loc.messages.FoundEndpointCredentials": "Es wurden festgelegte Anmeldeinformationen für die Dienstverbindung „%s“ gefunden." +{ + "loc.friendlyName": "npm-Authentifizierung (für Aufgabenausführungen)", + "loc.helpMarkDown": "", + "loc.description": "Verwenden Sie diese Aufgabe nicht, wenn Sie auch die npm-Aufgabe verwenden. Stellt npm-Anmeldeinformationen für eine NPMRC-Datei in Ihrem Repository für den Gültigkeitsbereich des Builds bereit. So können npm-Aufgabenausführungen wie gulp und Grunt sich bei privaten Registrierungen authentifizieren.", + "loc.instanceNameFormat": "npm-Authentifizierung $(workingFile)", + "loc.input.label.workingFile": "NPMRC-Datei zur Authentifizierung", + "loc.input.help.workingFile": "Pfad zur NPMRC-Datei, die die Registrierungen angibt, mit denen Sie arbeiten möchten. Wählen Sie die Datei aus, nicht den Ordner, z. B. „/packages/mypackage.npmrc“. Wenn Azure Artifacts URL und die von der Entra-Workload-ID gesicherte Azure DevOps Dienstverbindung des Benutzers festgelegt sind, werden Registrierungen in npmrc ignoriert.", + "loc.input.label.customEndpoint": "Anmeldeinformationen für Registrierungen außerhalb dieser Organisation/Sammlung", + "loc.input.help.customEndpoint": "Anmeldeinformationen zur Verwendung für externe Registrierungen in der NPMRC-Datei des Projekts. Lassen Sie dieses Feld bei Registrierungen in dieser Organisation/Sammlung leer. Es werden automatisch die Anmeldeinformationen für den Build verwendet.", + "loc.input.label.workloadIdentityServiceConnection": "Dienstverbindung „Azure DevOps“", + "loc.input.help.workloadIdentityServiceConnection": "Anmeldeinformationen für Registrierungen, die sich in der .npmrc-Datei eines Projekts befinden. Verwenden Sie feedUrl, um die Anmeldeinformationen für die einzelne Registrierung in einer .npmrc-Datei anzugeben. Nicht kompatibel mit customEndpoint.", + "loc.input.label.feedUrl": "Azure Artifacts-URL", + "loc.input.help.feedUrl": "Wenn diese Option festgelegt ist, ist azureDevOpsServiceConnection erforderlich. Nicht kompatibel mit customEndpoint. Die Feed-URL muss im npm-Registrierung Format vorliegen, z. B. https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "Buildanmeldeinformationen gefunden", + "loc.messages.NoBuildCredentials": "Die Buildanmeldeinformationen wurden nicht gefunden.", + "loc.messages.ServiceEndpointNotDefined": "Die Dienstverbindung wurde nicht gefunden. Stellen Sie sicher, dass die ausgewählte Dienstverbindung noch vorhanden ist.", + "loc.messages.NpmrcNotNpmrc": "Die für die Authentifizierung ausgewählte Datei (%s) ist keine gültige NPMRC-Datei.", + "loc.messages.ServiceEndpointUrlNotDefined": "Die URL für die Dienstverbindung wurde nicht gefunden. Stellen Sie sicher, dass die Dienstverbindung ordnungsgemäß konfiguriert ist.", + "loc.messages.SavingFile": "Datei %s wird gespeichert", + "loc.messages.RestoringFile": "Datei %s wird wiederhergestellt", + "loc.messages.AddingAuthRegistry": "Authentifizierung für die Registrierung wird hinzugefügt: %s", + "loc.messages.FoundLocalRegistries": "%d Registrierungen in dieser Organisation/Sammlung gefunden", + "loc.messages.AddingLocalCredentials": "Für eine lokale Registrierung werden Anmeldeinformationen hinzugefügt.", + "loc.messages.AddingEndpointCredentials": "Für die Dienstverbindung \"%s\" werden Anmeldeinformationen hinzugefügt.", + "loc.messages.AuthenticatingThisNpmrc": "Der NPMRC-Datei unter \"%s\" wird eine Authentifizierung hinzugefügt.", + "loc.messages.IgnoringRegistry": "Es wurden keine neuen Dienstverbindungen gefunden, die mit %s übereinstimmen.", + "loc.messages.ForcePackagingUrl": "URL zur Paketierung der Sammlung wird erzwungen als: %s", + "loc.messages.CheckedInCredentialsOverriden": "Für die %s-Registrierung in der ausgewählten NPMRC-Datei wurden Anmeldeinformationen gefunden und überschrieben. Entfernen Sie die Anmeldeinformationen aus der Datei, und speichern Sie sie stattdessen in einer npm-Dienstverbindung (empfohlen), oder entfernen Sie die Aufgabe zur npm-Authentifizierung aus Ihrem Build, um die in einer NPMRC-Datei eingecheckten Anmeldeinformationen zu verwenden.", + "loc.messages.NoIndexJsonFile": "Es wurde keine Datei \"index.json\" gefunden, und es wurden keine Dateien wiederhergestellt.", + "loc.messages.RevertedChangesToNpmrc": "Die Änderungen an \"%s\" wurden zurückgesetzt.", + "loc.messages.NpmrcDoesNotExist": "Die unter \"%s\" ausgewählte NPMRC-Datei ist zurzeit nicht vorhanden.", + "loc.messages.SuccessfulPush": "NPMRC erfolgreich gepusht", + "loc.messages.SuccessfulAppend": "NPMRC erfolgreich angefügt", + "loc.messages.Info_AddingFederatedFeedAuth": "Authentifizierungsinformationen der Dienstverbindung %s werden für Feed %s hinzugefügt", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Die Authentifizierung für den Feed %s wurde erfolgreich hinzugefügt.", + "loc.messages.FailedToGetServiceConnectionAuth": "Verbundanmeldeinformationen können nicht von der Dienstverbindung abgerufen werden: %s.", + "loc.messages.MissingFeedUrlOrServiceConnection": "Wenn eine Feed-URL angegeben wird, muss die „Azure DevOps“-Dienstverbindung angegeben werden und darf nicht leer sein.", + "loc.messages.SkippingParsingNpmrc": "Analyse von npmrc wird übersprungen.", + "loc.messages.DuplicateCredentials": "Die Authentifizierung für die Registrierung „%s“ wurde zuvor festgelegt. Wird mit neuer Konfiguration überschrieben.", + "loc.messages.FoundEndpointCredentials": "Es wurden festgelegte Anmeldeinformationen für die Dienstverbindung „%s“ gefunden." } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/es-ES/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/es-ES/resources.resjson index 4cf204b6da0b..aad26033e063 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/es-ES/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/es-ES/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "Autenticación npm (para ejecutores de tareas)", - "loc.helpMarkDown": "", - "loc.description": "No use esta tarea si utiliza también la tarea de npm. Proporciona credenciales de npm a un archivo .npmrc del repositorio para el ámbito de la compilación. Esto permite a los ejecutores de tareas de npm, como gulp y Grunt, realizar la autenticación con registros privados.", - "loc.instanceNameFormat": "Autenticación npm $(workingFile)", - "loc.input.label.workingFile": "Archivo .npmrc para autenticar", - "loc.input.help.workingFile": "Ruta de acceso al archivo .npmrc que especifica los registros con los que desea trabajar. Seleccione el archivo, no la carpeta; por ejemplo, \"/packages/mypackage.npmrc\". Si se establecen una dirección URL de Azure Artifacts y la conexión de servicio de usuario de Azure DevOps respaldada por el Id. de carga de trabajo de Entra, se omitirán los registros de npmrc.", - "loc.input.label.customEndpoint": "Credenciales para registros fuera de esta organización o colección", - "loc.input.help.customEndpoint": "Credenciales que deben usarse para registros externos que están en el archivo .npmrc del proyecto. Para registros en esta organización o colección, deje este valor en blanco; se usarán automáticamente las credenciales de la compilación.", - "loc.input.label.workloadIdentityServiceConnection": "Conexión de servicio de \"Azure DevOps\"", - "loc.input.help.workloadIdentityServiceConnection": "Las credenciales que se usan para los registros se encuentran en el archivo .npmrc de un proyecto. Se usan con feedUrl para especificar las credenciales usadas para el registro único en un archivo .npmrc. No es compatible con customEndpoint.", - "loc.input.label.feedUrl": "Dirección URL de Azure Artifacts", - "loc.input.help.feedUrl": "Si se establece, se requiere azureDevOpsServiceConnection. No es compatible con customEndpoint. La dirección URL de la fuente debe tener el formato de registro npm, por ejemplo, https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "Credenciales de compilación encontradas", - "loc.messages.NoBuildCredentials": "No se encuentran credenciales de compilación", - "loc.messages.ServiceEndpointNotDefined": "No se encontró la conexión de servicio. Asegúrese de que la conexión de servicio seleccionada aún existe.", - "loc.messages.NpmrcNotNpmrc": "El archivo que ha seleccionado para autenticar (%s) no es un archivo .npmrc válido.", - "loc.messages.ServiceEndpointUrlNotDefined": "No se encontró la dirección URL para la conexión de servicio. Asegúrese de que la conexión de servicio está configurada correctamente.", - "loc.messages.SavingFile": "Guardando el archivo %s", - "loc.messages.RestoringFile": "Restaurando el archivo %s", - "loc.messages.AddingAuthRegistry": "Agregando autenticación para el registro: %s", - "loc.messages.FoundLocalRegistries": "Se encontraron %d registros en esta organización o colección", - "loc.messages.AddingLocalCredentials": "Agregando credenciales para un Registro local", - "loc.messages.AddingEndpointCredentials": "Agregando las credenciales para la conexión de servicio %s", - "loc.messages.AuthenticatingThisNpmrc": "Agregando autenticación al archivo .npmrc en %s", - "loc.messages.IgnoringRegistry": "No se encontraron conexiones de servicio nuevas que coincidieran con %s.", - "loc.messages.ForcePackagingUrl": "Dirección URL de empaquetado de la colección forzada a: %s", - "loc.messages.CheckedInCredentialsOverriden": "Se encontraron las credenciales del Registro %s en el archivo .npmrc seleccionado y se invalidaron. Quite las credenciales del archivo y almacénelas en una conexión de servicio de npm en su lugar (recomendado), o bien quite la tarea Autenticar de npm de la compilación para usar las credenciales protegidas en un archivo .npmrc", - "loc.messages.NoIndexJsonFile": "No se encontró ningún archivo index.json y no se restauró ningún archivo.", - "loc.messages.RevertedChangesToNpmrc": "Se revirtieron los cambios realizados en %s.", - "loc.messages.NpmrcDoesNotExist": "El archivo .npmrc que ha seleccionado en %s no existe actualmente.", - "loc.messages.SuccessfulPush": ".npmrc se insertó correctamente .npmrc", - "loc.messages.SuccessfulAppend": ".npmrc se anexó correctamente .npmrc", - "loc.messages.Info_AddingFederatedFeedAuth": "Agregando información de autenticación de la conexión de servicio %s para la fuente %s", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Se agregó correctamente la autenticación para la fuente %s.", - "loc.messages.FailedToGetServiceConnectionAuth": "No se pueden obtener las credenciales federadas de la conexión de servicio: %s.", - "loc.messages.MissingFeedUrlOrServiceConnection": "Si se proporciona la dirección URL de la fuente de distribución, debe proporcionarse la conexión del servicio \"Azure DevOps\" y no puede estar vacía.", - "loc.messages.SkippingParsingNpmrc": "Omitiendo análisis de npmrc", - "loc.messages.DuplicateCredentials": "La autenticación para el registro \"%s\" se estableció previamente. Sobrescribiendo con la nueva configuración.", - "loc.messages.FoundEndpointCredentials": "Se encontraron credenciales establecidas para la conexión de servicio \"%s\"." +{ + "loc.friendlyName": "Autenticación npm (para ejecutores de tareas)", + "loc.helpMarkDown": "", + "loc.description": "No use esta tarea si utiliza también la tarea de npm. Proporciona credenciales de npm a un archivo .npmrc del repositorio para el ámbito de la compilación. Esto permite a los ejecutores de tareas de npm, como gulp y Grunt, realizar la autenticación con registros privados.", + "loc.instanceNameFormat": "Autenticación npm $(workingFile)", + "loc.input.label.workingFile": "Archivo .npmrc para autenticar", + "loc.input.help.workingFile": "Ruta de acceso al archivo .npmrc que especifica los registros con los que desea trabajar. Seleccione el archivo, no la carpeta; por ejemplo, \"/packages/mypackage.npmrc\". Si se establecen una dirección URL de Azure Artifacts y la conexión de servicio de usuario de Azure DevOps respaldada por el Id. de carga de trabajo de Entra, se omitirán los registros de npmrc.", + "loc.input.label.customEndpoint": "Credenciales para registros fuera de esta organización o colección", + "loc.input.help.customEndpoint": "Credenciales que deben usarse para registros externos que están en el archivo .npmrc del proyecto. Para registros en esta organización o colección, deje este valor en blanco; se usarán automáticamente las credenciales de la compilación.", + "loc.input.label.workloadIdentityServiceConnection": "Conexión de servicio de \"Azure DevOps\"", + "loc.input.help.workloadIdentityServiceConnection": "Las credenciales que se usan para los registros se encuentran en el archivo .npmrc de un proyecto. Se usan con feedUrl para especificar las credenciales usadas para el registro único en un archivo .npmrc. No es compatible con customEndpoint.", + "loc.input.label.feedUrl": "Dirección URL de Azure Artifacts", + "loc.input.help.feedUrl": "Si se establece, se requiere azureDevOpsServiceConnection. No es compatible con customEndpoint. La dirección URL de la fuente debe tener el formato de registro npm, por ejemplo, https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "Credenciales de compilación encontradas", + "loc.messages.NoBuildCredentials": "No se encuentran credenciales de compilación", + "loc.messages.ServiceEndpointNotDefined": "No se encontró la conexión de servicio. Asegúrese de que la conexión de servicio seleccionada aún existe.", + "loc.messages.NpmrcNotNpmrc": "El archivo que ha seleccionado para autenticar (%s) no es un archivo .npmrc válido.", + "loc.messages.ServiceEndpointUrlNotDefined": "No se encontró la dirección URL para la conexión de servicio. Asegúrese de que la conexión de servicio está configurada correctamente.", + "loc.messages.SavingFile": "Guardando el archivo %s", + "loc.messages.RestoringFile": "Restaurando el archivo %s", + "loc.messages.AddingAuthRegistry": "Agregando autenticación para el registro: %s", + "loc.messages.FoundLocalRegistries": "Se encontraron %d registros en esta organización o colección", + "loc.messages.AddingLocalCredentials": "Agregando credenciales para un Registro local", + "loc.messages.AddingEndpointCredentials": "Agregando las credenciales para la conexión de servicio %s", + "loc.messages.AuthenticatingThisNpmrc": "Agregando autenticación al archivo .npmrc en %s", + "loc.messages.IgnoringRegistry": "No se encontraron conexiones de servicio nuevas que coincidieran con %s.", + "loc.messages.ForcePackagingUrl": "Dirección URL de empaquetado de la colección forzada a: %s", + "loc.messages.CheckedInCredentialsOverriden": "Se encontraron las credenciales del Registro %s en el archivo .npmrc seleccionado y se invalidaron. Quite las credenciales del archivo y almacénelas en una conexión de servicio de npm en su lugar (recomendado), o bien quite la tarea Autenticar de npm de la compilación para usar las credenciales protegidas en un archivo .npmrc", + "loc.messages.NoIndexJsonFile": "No se encontró ningún archivo index.json y no se restauró ningún archivo.", + "loc.messages.RevertedChangesToNpmrc": "Se revirtieron los cambios realizados en %s.", + "loc.messages.NpmrcDoesNotExist": "El archivo .npmrc que ha seleccionado en %s no existe actualmente.", + "loc.messages.SuccessfulPush": ".npmrc se insertó correctamente .npmrc", + "loc.messages.SuccessfulAppend": ".npmrc se anexó correctamente .npmrc", + "loc.messages.Info_AddingFederatedFeedAuth": "Agregando información de autenticación de la conexión de servicio %s para la fuente %s", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Se agregó correctamente la autenticación para la fuente %s.", + "loc.messages.FailedToGetServiceConnectionAuth": "No se pueden obtener las credenciales federadas de la conexión de servicio: %s.", + "loc.messages.MissingFeedUrlOrServiceConnection": "Si se proporciona la dirección URL de la fuente de distribución, debe proporcionarse la conexión del servicio \"Azure DevOps\" y no puede estar vacía.", + "loc.messages.SkippingParsingNpmrc": "Omitiendo análisis de npmrc", + "loc.messages.DuplicateCredentials": "La autenticación para el registro \"%s\" se estableció previamente. Sobrescribiendo con la nueva configuración.", + "loc.messages.FoundEndpointCredentials": "Se encontraron credenciales establecidas para la conexión de servicio \"%s\"." } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/fr-FR/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/fr-FR/resources.resjson index 6f131dcd9bc3..bc41ba397f7f 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/fr-FR/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/fr-FR/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "Authentification npm (pour les exécuteurs de tâches)", - "loc.helpMarkDown": "", - "loc.description": "N'utilisez pas cette tâche si vous utilisez également la tâche npm. Fournit les informations d'identification npm à un fichier .npmrc de votre dépôt pour l'étendue de la build. Cela permet aux exécuteurs de tâches npm tels que gulp et Grunt de s'authentifier auprès des registres privés.", - "loc.instanceNameFormat": "Authentification npm $(workingFile)", - "loc.input.label.workingFile": "Fichier .npmrc utilisé pour l'authentification", - "loc.input.help.workingFile": "Chemin d’accès au fichier .npmrc qui spécifie les registres avec lesquels vous voulez travailler. Sélectionnez le fichier, et non le dossier, par exemple « /packages/mypackage.npmrc ». Si l’URL Azure Artifacts et la connexion de service « Utilisateur Azure DevOps adossé à l’ID de charge de travail Entra » sont définis, les registres dans npmrc sont ignorés.", - "loc.input.label.customEndpoint": "Informations d'identification des registres situés en dehors de cette organisation/collection", - "loc.input.help.customEndpoint": "Informations d'identification à utiliser pour les registres externes situés dans le fichier .npmrc du projet. Pour les registres présents dans cette organisation/collection, n'indiquez aucune valeur. Les informations d'identification de la build sont utilisées automatiquement.", - "loc.input.label.workloadIdentityServiceConnection": "Connexion au service « Azure DevOps »", - "loc.input.help.workloadIdentityServiceConnection": "Informations d’identification à utiliser pour les registres qui ont localisé le fichier .npmrc d’un projet. Utilisez feedUrl pour spécifier les informations d’identification utilisées pour le registre unique dans un fichier .npmrc. Non compatible avec customEndpoint.", - "loc.input.label.feedUrl": "URL Azure Artifacts", - "loc.input.help.feedUrl": "Si cette option est définie, workloadIdentityServiceConnection est requis. Non compatible avec customEndpoint. L’URL du flux doit être au format registre npm, par exemple, https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "Informations d'identification de build trouvées", - "loc.messages.NoBuildCredentials": "Informations d'identification de build introuvables", - "loc.messages.ServiceEndpointNotDefined": "La connexion de service est introuvable. Vérifiez que la connexion de service sélectionnée existe toujours.", - "loc.messages.NpmrcNotNpmrc": "Le fichier que vous avez sélectionné pour l'authentification (%s) n'est pas un fichier .npmrc valide.", - "loc.messages.ServiceEndpointUrlNotDefined": "L'URL de la connexion de service est introuvable. Vérifiez que la connexion de service est correctement configurée.", - "loc.messages.SavingFile": "Enregistrement du fichier %s", - "loc.messages.RestoringFile": "Restauration du fichier %s", - "loc.messages.AddingAuthRegistry": "Ajout de l'authentification pour le registre : %s", - "loc.messages.FoundLocalRegistries": "%d registres trouvés dans cette organisation/collection", - "loc.messages.AddingLocalCredentials": "Ajout des informations d'identification pour un registre local", - "loc.messages.AddingEndpointCredentials": "Ajout des informations d'identification pour la connexion de service %s", - "loc.messages.AuthenticatingThisNpmrc": "Ajout de l'authentification au fichier .npmrc sur %s", - "loc.messages.IgnoringRegistry": "Aucune nouvelle connexion de service correspondant à %s n’a été trouvée", - "loc.messages.ForcePackagingUrl": "URL de collection de création de package forcée vers : %s", - "loc.messages.CheckedInCredentialsOverriden": "Détection et remplacement des informations d'identification pour le registre %s dans le fichier .npmrc sélectionné. Supprimez les informations d'identification du fichier et stockez-les plutôt dans une connexion de service npm (recommandé), ou supprimez la tâche d'authentification npm de votre build pour utiliser les informations d'identification fournies à un fichier .npmrc.", - "loc.messages.NoIndexJsonFile": "Fichier index.json introuvable. Aucun fichier n'a été restauré", - "loc.messages.RevertedChangesToNpmrc": "Restauration des changements apportés à %s.", - "loc.messages.NpmrcDoesNotExist": "Le fichier .npmrc que vous avez sélectionné sur %s n'existe pas.", - "loc.messages.SuccessfulPush": "L’envoi (push) du fichier .npmrc a été correctement effectué", - "loc.messages.SuccessfulAppend": "Le fichier .npmrc est correctement ajouté", - "loc.messages.Info_AddingFederatedFeedAuth": "Ajout d’informations d’authentification à partir des %s de connexion de service pour les %s de flux", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Authentification ajoutée pour le flux %s.", - "loc.messages.FailedToGetServiceConnectionAuth": "Impossible d’obtenir les informations d’identification fédérées à partir de la connexion de service : %s.", - "loc.messages.MissingFeedUrlOrServiceConnection": "Si l’URL du flux est fournie, la connexion de service « Azure DevOps » doit être fournie et ne peut pas être vide.", - "loc.messages.SkippingParsingNpmrc": "Analyse npmrc ignorée", - "loc.messages.DuplicateCredentials": "L’authentification du registre « %s » a été précédemment définie. Remplacement par une nouvelle configuration.", - "loc.messages.FoundEndpointCredentials": "Informations d’identification définies pour la connexion de service « %s »." +{ + "loc.friendlyName": "Authentification npm (pour les exécuteurs de tâches)", + "loc.helpMarkDown": "", + "loc.description": "N'utilisez pas cette tâche si vous utilisez également la tâche npm. Fournit les informations d'identification npm à un fichier .npmrc de votre dépôt pour l'étendue de la build. Cela permet aux exécuteurs de tâches npm tels que gulp et Grunt de s'authentifier auprès des registres privés.", + "loc.instanceNameFormat": "Authentification npm $(workingFile)", + "loc.input.label.workingFile": "Fichier .npmrc utilisé pour l'authentification", + "loc.input.help.workingFile": "Chemin d’accès au fichier .npmrc qui spécifie les registres avec lesquels vous voulez travailler. Sélectionnez le fichier, et non le dossier, par exemple « /packages/mypackage.npmrc ». Si l’URL Azure Artifacts et la connexion de service « Utilisateur Azure DevOps adossé à l’ID de charge de travail Entra » sont définis, les registres dans npmrc sont ignorés.", + "loc.input.label.customEndpoint": "Informations d'identification des registres situés en dehors de cette organisation/collection", + "loc.input.help.customEndpoint": "Informations d'identification à utiliser pour les registres externes situés dans le fichier .npmrc du projet. Pour les registres présents dans cette organisation/collection, n'indiquez aucune valeur. Les informations d'identification de la build sont utilisées automatiquement.", + "loc.input.label.workloadIdentityServiceConnection": "Connexion au service « Azure DevOps »", + "loc.input.help.workloadIdentityServiceConnection": "Informations d’identification à utiliser pour les registres qui ont localisé le fichier .npmrc d’un projet. Utilisez feedUrl pour spécifier les informations d’identification utilisées pour le registre unique dans un fichier .npmrc. Non compatible avec customEndpoint.", + "loc.input.label.feedUrl": "URL Azure Artifacts", + "loc.input.help.feedUrl": "Si cette option est définie, workloadIdentityServiceConnection est requis. Non compatible avec customEndpoint. L’URL du flux doit être au format registre npm, par exemple, https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "Informations d'identification de build trouvées", + "loc.messages.NoBuildCredentials": "Informations d'identification de build introuvables", + "loc.messages.ServiceEndpointNotDefined": "La connexion de service est introuvable. Vérifiez que la connexion de service sélectionnée existe toujours.", + "loc.messages.NpmrcNotNpmrc": "Le fichier que vous avez sélectionné pour l'authentification (%s) n'est pas un fichier .npmrc valide.", + "loc.messages.ServiceEndpointUrlNotDefined": "L'URL de la connexion de service est introuvable. Vérifiez que la connexion de service est correctement configurée.", + "loc.messages.SavingFile": "Enregistrement du fichier %s", + "loc.messages.RestoringFile": "Restauration du fichier %s", + "loc.messages.AddingAuthRegistry": "Ajout de l'authentification pour le registre : %s", + "loc.messages.FoundLocalRegistries": "%d registres trouvés dans cette organisation/collection", + "loc.messages.AddingLocalCredentials": "Ajout des informations d'identification pour un registre local", + "loc.messages.AddingEndpointCredentials": "Ajout des informations d'identification pour la connexion de service %s", + "loc.messages.AuthenticatingThisNpmrc": "Ajout de l'authentification au fichier .npmrc sur %s", + "loc.messages.IgnoringRegistry": "Aucune nouvelle connexion de service correspondant à %s n’a été trouvée", + "loc.messages.ForcePackagingUrl": "URL de collection de création de package forcée vers : %s", + "loc.messages.CheckedInCredentialsOverriden": "Détection et remplacement des informations d'identification pour le registre %s dans le fichier .npmrc sélectionné. Supprimez les informations d'identification du fichier et stockez-les plutôt dans une connexion de service npm (recommandé), ou supprimez la tâche d'authentification npm de votre build pour utiliser les informations d'identification fournies à un fichier .npmrc.", + "loc.messages.NoIndexJsonFile": "Fichier index.json introuvable. Aucun fichier n'a été restauré", + "loc.messages.RevertedChangesToNpmrc": "Restauration des changements apportés à %s.", + "loc.messages.NpmrcDoesNotExist": "Le fichier .npmrc que vous avez sélectionné sur %s n'existe pas.", + "loc.messages.SuccessfulPush": "L’envoi (push) du fichier .npmrc a été correctement effectué", + "loc.messages.SuccessfulAppend": "Le fichier .npmrc est correctement ajouté", + "loc.messages.Info_AddingFederatedFeedAuth": "Ajout d’informations d’authentification à partir des %s de connexion de service pour les %s de flux", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Authentification ajoutée pour le flux %s.", + "loc.messages.FailedToGetServiceConnectionAuth": "Impossible d’obtenir les informations d’identification fédérées à partir de la connexion de service : %s.", + "loc.messages.MissingFeedUrlOrServiceConnection": "Si l’URL du flux est fournie, la connexion de service « Azure DevOps » doit être fournie et ne peut pas être vide.", + "loc.messages.SkippingParsingNpmrc": "Analyse npmrc ignorée", + "loc.messages.DuplicateCredentials": "L’authentification du registre « %s » a été précédemment définie. Remplacement par une nouvelle configuration.", + "loc.messages.FoundEndpointCredentials": "Informations d’identification définies pour la connexion de service « %s »." } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/it-IT/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/it-IT/resources.resjson index 0760888f2edf..0d486a465d56 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/it-IT/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/it-IT/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "Autenticazione npm (per strumenti di esecuzione attività)", - "loc.helpMarkDown": "", - "loc.description": "Non usare questa attività se si usa anche l'attività npm. Fornisce le credenziali npm a un file con estensione npmrc nel repository per l'ambito della compilazione. In questo modo gli strumenti di esecuzione attività di npm, come gulp e Grunt, possono eseguire l'autenticazione con registri privati.", - "loc.instanceNameFormat": "Autenticazione npm $(workingFile)", - "loc.input.label.workingFile": "File con estensione npmrc da autenticare", - "loc.input.help.workingFile": "Percorso del file con estensione npmrc che specifica i registri con cui si desidera lavorare. Selezionare il file, non la cartella, ad esempio \"/packages/mypackage.npmrc\". Se sono impostati l'URL Azure Artifacts e la connessione al servizio dell'utente con ID carico di lavoro Entra Azure DevOps, i registri in npmrc verranno ignorati.", - "loc.input.label.customEndpoint": "Credenziali per i registri esterni a questa organizzazione/raccolta", - "loc.input.help.customEndpoint": "Credenziali da usare per i registri esterni situati nel file del progetto con estensione npmrc. Per i registri in questa organizzazione/raccolta lasciare vuoto il campo. Verranno usate automaticamente le credenziali della compilazione.", - "loc.input.label.workloadIdentityServiceConnection": "Connessione al servizio 'Azure DevOps'", - "loc.input.help.workloadIdentityServiceConnection": "Credenziali da utilizzare per i registri che individuano il file .npmrc di un progetto. Usa con feedUrl per specificare le credenziali usate per il singolo registro in un file .npmrc. Non compatibile con customEndpoint.", - "loc.input.label.feedUrl": "Azure Artifacts URL", - "loc.input.help.feedUrl": "Con questa impostazione è necessario azureDevOpsServiceConnection. Non compatibile con customEndpoint. L'URL del feed deve essere nel formato registro npm, ad esempio https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "Sono state trovate le credenziali di compilazione", - "loc.messages.NoBuildCredentials": "Non è stato possibile trovare le credenziali di compilazione", - "loc.messages.ServiceEndpointNotDefined": "Non è stato possibile trovare la connessione al servizio. Assicurarsi che la connessione al servizio selezionata sia ancora esistente.", - "loc.messages.NpmrcNotNpmrc": "Il file selezionato per l'autenticazione (%s) non è un file con estensione npmrc valido.", - "loc.messages.ServiceEndpointUrlNotDefined": "Non è stato possibile trovare l'URL per la connessione al servizio. Assicurarsi che la connessione al servizio sia correttamente configurata.", - "loc.messages.SavingFile": "Salvataggio del file %s", - "loc.messages.RestoringFile": "Ripristino del file %s", - "loc.messages.AddingAuthRegistry": "Aggiunta dell'autenticazione per il registro: %s", - "loc.messages.FoundLocalRegistries": "Sono stati trovati %d registri in questa organizzazione/raccolta", - "loc.messages.AddingLocalCredentials": "Aggiunta le credenziali per un registro locale", - "loc.messages.AddingEndpointCredentials": "Aggiunta delle credenziali per la connessione al servizio %s", - "loc.messages.AuthenticatingThisNpmrc": "Aggiunta dell'autenticazione al file con estensione npmrc in %s", - "loc.messages.IgnoringRegistry": "Non sono state trovate nuove connessioni al servizio corrispondenti %s", - "loc.messages.ForcePackagingUrl": "Creazione pacchetto dell'URL della raccolta forzata su: %s", - "loc.messages.CheckedInCredentialsOverriden": "Le credenziali per il registro %s sono state trovate nel file con estensione npmrc selezionato e ne è stato eseguito l'override. Rimuovere le credenziali dal file e archiviarle in una connessione al servizio npm (scelta consigliata) oppure rimuovere l'attività Autenticazione npm dalla compilazione per usare le credenziali controllate in un file con estensione npmrc.", - "loc.messages.NoIndexJsonFile": "Non è stato trovato alcun file index.json e non è stato ripristinato alcun file", - "loc.messages.RevertedChangesToNpmrc": "Le modifiche apportate a %s sono state ripristinate.", - "loc.messages.NpmrcDoesNotExist": "Il file con estensione npmrc selezionato in %s al momento non esiste.", - "loc.messages.SuccessfulPush": "Push di .npmrc riuscito", - "loc.messages.SuccessfulAppend": "Aggiunta di .npmrc riuscita", - "loc.messages.Info_AddingFederatedFeedAuth": "Aggiunta di informazioni di autenticazione dalla connessione al servizio %s per il feed %s", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "L'autenticazione per il feed %s è stata aggiunta.", - "loc.messages.FailedToGetServiceConnectionAuth": "Non è possibile ottenere le credenziali federate dalla connessione al servizio: %s.", - "loc.messages.MissingFeedUrlOrServiceConnection": "Se viene specificato l'URL del feed, la connessione al servizio 'Azure DevOps' deve essere specificata e non può essere vuota.", - "loc.messages.SkippingParsingNpmrc": "L'analisi di npmrc verrà ignorata", - "loc.messages.DuplicateCredentials": "L'autenticazione per il '%s' del Registro di sistema è stata impostata in precedenza. Sovrascrittura con nuova configurazione.", - "loc.messages.FoundEndpointCredentials": "Trovate credenziali impostate per la connessione al servizio '%s'." +{ + "loc.friendlyName": "Autenticazione npm (per strumenti di esecuzione attività)", + "loc.helpMarkDown": "", + "loc.description": "Non usare questa attività se si usa anche l'attività npm. Fornisce le credenziali npm a un file con estensione npmrc nel repository per l'ambito della compilazione. In questo modo gli strumenti di esecuzione attività di npm, come gulp e Grunt, possono eseguire l'autenticazione con registri privati.", + "loc.instanceNameFormat": "Autenticazione npm $(workingFile)", + "loc.input.label.workingFile": "File con estensione npmrc da autenticare", + "loc.input.help.workingFile": "Percorso del file con estensione npmrc che specifica i registri con cui si desidera lavorare. Selezionare il file, non la cartella, ad esempio \"/packages/mypackage.npmrc\". Se sono impostati l'URL Azure Artifacts e la connessione al servizio dell'utente con ID carico di lavoro Entra Azure DevOps, i registri in npmrc verranno ignorati.", + "loc.input.label.customEndpoint": "Credenziali per i registri esterni a questa organizzazione/raccolta", + "loc.input.help.customEndpoint": "Credenziali da usare per i registri esterni situati nel file del progetto con estensione npmrc. Per i registri in questa organizzazione/raccolta lasciare vuoto il campo. Verranno usate automaticamente le credenziali della compilazione.", + "loc.input.label.workloadIdentityServiceConnection": "Connessione al servizio 'Azure DevOps'", + "loc.input.help.workloadIdentityServiceConnection": "Credenziali da utilizzare per i registri che individuano il file .npmrc di un progetto. Usa con feedUrl per specificare le credenziali usate per il singolo registro in un file .npmrc. Non compatibile con customEndpoint.", + "loc.input.label.feedUrl": "Azure Artifacts URL", + "loc.input.help.feedUrl": "Con questa impostazione è necessario azureDevOpsServiceConnection. Non compatibile con customEndpoint. L'URL del feed deve essere nel formato registro npm, ad esempio https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "Sono state trovate le credenziali di compilazione", + "loc.messages.NoBuildCredentials": "Non è stato possibile trovare le credenziali di compilazione", + "loc.messages.ServiceEndpointNotDefined": "Non è stato possibile trovare la connessione al servizio. Assicurarsi che la connessione al servizio selezionata sia ancora esistente.", + "loc.messages.NpmrcNotNpmrc": "Il file selezionato per l'autenticazione (%s) non è un file con estensione npmrc valido.", + "loc.messages.ServiceEndpointUrlNotDefined": "Non è stato possibile trovare l'URL per la connessione al servizio. Assicurarsi che la connessione al servizio sia correttamente configurata.", + "loc.messages.SavingFile": "Salvataggio del file %s", + "loc.messages.RestoringFile": "Ripristino del file %s", + "loc.messages.AddingAuthRegistry": "Aggiunta dell'autenticazione per il registro: %s", + "loc.messages.FoundLocalRegistries": "Sono stati trovati %d registri in questa organizzazione/raccolta", + "loc.messages.AddingLocalCredentials": "Aggiunta le credenziali per un registro locale", + "loc.messages.AddingEndpointCredentials": "Aggiunta delle credenziali per la connessione al servizio %s", + "loc.messages.AuthenticatingThisNpmrc": "Aggiunta dell'autenticazione al file con estensione npmrc in %s", + "loc.messages.IgnoringRegistry": "Non sono state trovate nuove connessioni al servizio corrispondenti %s", + "loc.messages.ForcePackagingUrl": "Creazione pacchetto dell'URL della raccolta forzata su: %s", + "loc.messages.CheckedInCredentialsOverriden": "Le credenziali per il registro %s sono state trovate nel file con estensione npmrc selezionato e ne è stato eseguito l'override. Rimuovere le credenziali dal file e archiviarle in una connessione al servizio npm (scelta consigliata) oppure rimuovere l'attività Autenticazione npm dalla compilazione per usare le credenziali controllate in un file con estensione npmrc.", + "loc.messages.NoIndexJsonFile": "Non è stato trovato alcun file index.json e non è stato ripristinato alcun file", + "loc.messages.RevertedChangesToNpmrc": "Le modifiche apportate a %s sono state ripristinate.", + "loc.messages.NpmrcDoesNotExist": "Il file con estensione npmrc selezionato in %s al momento non esiste.", + "loc.messages.SuccessfulPush": "Push di .npmrc riuscito", + "loc.messages.SuccessfulAppend": "Aggiunta di .npmrc riuscita", + "loc.messages.Info_AddingFederatedFeedAuth": "Aggiunta di informazioni di autenticazione dalla connessione al servizio %s per il feed %s", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "L'autenticazione per il feed %s è stata aggiunta.", + "loc.messages.FailedToGetServiceConnectionAuth": "Non è possibile ottenere le credenziali federate dalla connessione al servizio: %s.", + "loc.messages.MissingFeedUrlOrServiceConnection": "Se viene specificato l'URL del feed, la connessione al servizio 'Azure DevOps' deve essere specificata e non può essere vuota.", + "loc.messages.SkippingParsingNpmrc": "L'analisi di npmrc verrà ignorata", + "loc.messages.DuplicateCredentials": "L'autenticazione per il '%s' del Registro di sistema è stata impostata in precedenza. Sovrascrittura con nuova configurazione.", + "loc.messages.FoundEndpointCredentials": "Trovate credenziali impostate per la connessione al servizio '%s'." } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ja-JP/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ja-JP/resources.resjson index 1a6282050893..cb6a4affea64 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ja-JP/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ja-JP/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "npm 認証 (タスク ランナー用)", - "loc.helpMarkDown": "", - "loc.description": "npm タスクも使用している場合、このタスクを使用しないでください。ビルドのスコープに関しては、リポジトリ内の .npmrc ファイルに npm 資格情報を提供します。これにより、gulp や Grunt などの npm タスク ランナーで、プライベート レジストリを使用して認証できるようになります。", - "loc.instanceNameFormat": "npm 認証 $(workingFile)", - "loc.input.label.workingFile": "認証するための .npmrc ファイル", - "loc.input.help.workingFile": "操作したいレジストリを指定する .npmrc ファイルへのパス。フォルダーではなく、ファイル (例、\"/packages/mypackage.npmrc\") を選択します。Azure Artifacts URL と Entra Workload ID に対応した Azure DevOps ユーザーのサービス接続が設定されている場合、npmrc のレジストリは無視されます。", - "loc.input.label.customEndpoint": "この組織/コレクション外のレジストリの資格情報", - "loc.input.help.customEndpoint": "プロジェクトの .npmrc にある外部レジストリに使用する資格情報です。この組織/コレクションのレジストリの場合は、空白のままにします。ビルドの資格情報が自動的に使用されます。", - "loc.input.label.workloadIdentityServiceConnection": "'Azure DevOps' サービス接続", - "loc.input.help.workloadIdentityServiceConnection": "プロジェクトの .npmrc ファイルにあるレジストリに使用する資格情報。feedUrl と共に使用して、.npmrc ファイルの中で、単一のレジストリに使用される資格情報を指定します。customEndpoint とは互換性がありません。", - "loc.input.label.feedUrl": "Azure Artifacts URL", - "loc.input.help.feedUrl": "これが設定されている場合は azureDevOpsServiceConnection が必須です。customEndpoint と互換性がありません。フィード URL は npm レジストリ形式にする必要があります (例: https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/)", - "loc.messages.FoundBuildCredentials": "ビルドの資格情報が見つかりました", - "loc.messages.NoBuildCredentials": "ビルドの資格情報が見つかりませんでした", - "loc.messages.ServiceEndpointNotDefined": "サービス接続が見つかりませんでした。選択したサービス接続がまだ存在していることをご確認ください。", - "loc.messages.NpmrcNotNpmrc": "認証するために選択したファイル (%s) が有効な .npmrc ファイルではありません。", - "loc.messages.ServiceEndpointUrlNotDefined": "サービス接続の URL が見つかりませんでした。サービス接続が正しく構成されていることをご確認ください。", - "loc.messages.SavingFile": "ファイル %s を保存しています", - "loc.messages.RestoringFile": "ファイルを復元しています %s", - "loc.messages.AddingAuthRegistry": "次のレジストリに権限を追加しています: %s", - "loc.messages.FoundLocalRegistries": "この組織/コレクションに %d 個のレジストリが見つかりました", - "loc.messages.AddingLocalCredentials": "ローカル レジストリの資格情報を追加しています", - "loc.messages.AddingEndpointCredentials": "%s サービス接続の資格情報を追加しています", - "loc.messages.AuthenticatingThisNpmrc": "%s の .npmrc ファイルに認証を追加しています", - "loc.messages.IgnoringRegistry": "%s に一致する新しいサービスの接続が見つかりませんでした", - "loc.messages.ForcePackagingUrl": "コレクション URL を %s に強制してパッケージ化しています", - "loc.messages.CheckedInCredentialsOverriden": "選択された .npmrc ファイルの %s レジストリの資格情報を見つけて上書きしました。ファイルから資格情報を削除して、代わりに npm サービス接続にそれらを保存するか (推奨)、ビルドから npm の認証タスクを削除して、.npmrc に登録された資格情報を使用します。", - "loc.messages.NoIndexJsonFile": "Index.json ファイルが見つからず、復元されたファイルもありません", - "loc.messages.RevertedChangesToNpmrc": "%s に加えられた変更を元に戻しました。", - "loc.messages.NpmrcDoesNotExist": "%s で選択した .npmrc ファイルが現時点では存在しません。", - "loc.messages.SuccessfulPush": ".npmrc が正常にプッシュされました", - "loc.messages.SuccessfulAppend": ".npmrc が正常に追加されました", - "loc.messages.Info_AddingFederatedFeedAuth": "フィード %s のサービス接続 %s から認証情報を追加しています", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "フィード %s の認証が正常に追加されました。", - "loc.messages.FailedToGetServiceConnectionAuth": "サービス接続からフェデレーション資格情報を取得できません: %s。", - "loc.messages.MissingFeedUrlOrServiceConnection": "フィード URL を指定する場合は、'Azure DevOps' サービス接続を指定する必要があり、また、これを空にすることはできません。", - "loc.messages.SkippingParsingNpmrc": "npmrc の解析をスキップしています", - "loc.messages.DuplicateCredentials": "レジストリ '%s' の認証は以前に設定されています。新しい構成で上書きしています。", - "loc.messages.FoundEndpointCredentials": "'%s' サービス接続用に設定された資格情報が見つかりました。" +{ + "loc.friendlyName": "npm 認証 (タスク ランナー用)", + "loc.helpMarkDown": "", + "loc.description": "npm タスクも使用している場合、このタスクを使用しないでください。ビルドのスコープに関しては、リポジトリ内の .npmrc ファイルに npm 資格情報を提供します。これにより、gulp や Grunt などの npm タスク ランナーで、プライベート レジストリを使用して認証できるようになります。", + "loc.instanceNameFormat": "npm 認証 $(workingFile)", + "loc.input.label.workingFile": "認証するための .npmrc ファイル", + "loc.input.help.workingFile": "操作したいレジストリを指定する .npmrc ファイルへのパス。フォルダーではなく、ファイル (例、\"/packages/mypackage.npmrc\") を選択します。Azure Artifacts URL と Entra Workload ID に対応した Azure DevOps ユーザーのサービス接続が設定されている場合、npmrc のレジストリは無視されます。", + "loc.input.label.customEndpoint": "この組織/コレクション外のレジストリの資格情報", + "loc.input.help.customEndpoint": "プロジェクトの .npmrc にある外部レジストリに使用する資格情報です。この組織/コレクションのレジストリの場合は、空白のままにします。ビルドの資格情報が自動的に使用されます。", + "loc.input.label.workloadIdentityServiceConnection": "'Azure DevOps' サービス接続", + "loc.input.help.workloadIdentityServiceConnection": "プロジェクトの .npmrc ファイルにあるレジストリに使用する資格情報。feedUrl と共に使用して、.npmrc ファイルの中で、単一のレジストリに使用される資格情報を指定します。customEndpoint とは互換性がありません。", + "loc.input.label.feedUrl": "Azure Artifacts URL", + "loc.input.help.feedUrl": "これが設定されている場合は azureDevOpsServiceConnection が必須です。customEndpoint と互換性がありません。フィード URL は npm レジストリ形式にする必要があります (例: https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/)", + "loc.messages.FoundBuildCredentials": "ビルドの資格情報が見つかりました", + "loc.messages.NoBuildCredentials": "ビルドの資格情報が見つかりませんでした", + "loc.messages.ServiceEndpointNotDefined": "サービス接続が見つかりませんでした。選択したサービス接続がまだ存在していることをご確認ください。", + "loc.messages.NpmrcNotNpmrc": "認証するために選択したファイル (%s) が有効な .npmrc ファイルではありません。", + "loc.messages.ServiceEndpointUrlNotDefined": "サービス接続の URL が見つかりませんでした。サービス接続が正しく構成されていることをご確認ください。", + "loc.messages.SavingFile": "ファイル %s を保存しています", + "loc.messages.RestoringFile": "ファイルを復元しています %s", + "loc.messages.AddingAuthRegistry": "次のレジストリに権限を追加しています: %s", + "loc.messages.FoundLocalRegistries": "この組織/コレクションに %d 個のレジストリが見つかりました", + "loc.messages.AddingLocalCredentials": "ローカル レジストリの資格情報を追加しています", + "loc.messages.AddingEndpointCredentials": "%s サービス接続の資格情報を追加しています", + "loc.messages.AuthenticatingThisNpmrc": "%s の .npmrc ファイルに認証を追加しています", + "loc.messages.IgnoringRegistry": "%s に一致する新しいサービスの接続が見つかりませんでした", + "loc.messages.ForcePackagingUrl": "コレクション URL を %s に強制してパッケージ化しています", + "loc.messages.CheckedInCredentialsOverriden": "選択された .npmrc ファイルの %s レジストリの資格情報を見つけて上書きしました。ファイルから資格情報を削除して、代わりに npm サービス接続にそれらを保存するか (推奨)、ビルドから npm の認証タスクを削除して、.npmrc に登録された資格情報を使用します。", + "loc.messages.NoIndexJsonFile": "Index.json ファイルが見つからず、復元されたファイルもありません", + "loc.messages.RevertedChangesToNpmrc": "%s に加えられた変更を元に戻しました。", + "loc.messages.NpmrcDoesNotExist": "%s で選択した .npmrc ファイルが現時点では存在しません。", + "loc.messages.SuccessfulPush": ".npmrc が正常にプッシュされました", + "loc.messages.SuccessfulAppend": ".npmrc が正常に追加されました", + "loc.messages.Info_AddingFederatedFeedAuth": "フィード %s のサービス接続 %s から認証情報を追加しています", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "フィード %s の認証が正常に追加されました。", + "loc.messages.FailedToGetServiceConnectionAuth": "サービス接続からフェデレーション資格情報を取得できません: %s。", + "loc.messages.MissingFeedUrlOrServiceConnection": "フィード URL を指定する場合は、'Azure DevOps' サービス接続を指定する必要があり、また、これを空にすることはできません。", + "loc.messages.SkippingParsingNpmrc": "npmrc の解析をスキップしています", + "loc.messages.DuplicateCredentials": "レジストリ '%s' の認証は以前に設定されています。新しい構成で上書きしています。", + "loc.messages.FoundEndpointCredentials": "'%s' サービス接続用に設定された資格情報が見つかりました。" } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ko-KR/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ko-KR/resources.resjson index 24710dff5db1..569589329faf 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ko-KR/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ko-KR/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "npm 인증(작업 실행기의 경우)", - "loc.helpMarkDown": "", - "loc.description": "npm 작업도 사용하는 경우에는 이 작업을 사용할 수 없습니다. 리포지토리의 .npmrc 파일에 빌드 범위의 npm 자격 증명을 지정합니다. 이렇게 하면 gulp, Grunt 등의 npm 작업 실행기가 프라이빗 레지스트리에 인증할 수 있습니다.", - "loc.instanceNameFormat": "npm 인증 $(workingFile)", - "loc.input.label.workingFile": "인증할 .npmrc 파일", - "loc.input.help.workingFile": "작업하려는 레지스트리를 지정하는 .npmrc 파일의 경로입니다. 폴더가 아닌 파일을 선택하세요(예: \"/packages/mypackage.npmrc\"). Azure Artifacts URL 및 Entra 워크로드 ID 지원 Azure DevOps 사용자의 서비스 연결이 설정된 경우 npmrc의 레지스트리가 무시됩니다.", - "loc.input.label.customEndpoint": "이 조직/컬렉션 외부 레지스트리에 대한 자격 증명", - "loc.input.help.customEndpoint": "외부 레지스트리에 사용할 자격 증명으로, 프로젝트의 .npmrc에 있습니다. 이 조직/컬렉션에 있는 레지스트리의 경우 이 필드를 비워 둡니다. 빌드의 자격 증명이 자동으로 사용됩니다.", - "loc.input.label.workloadIdentityServiceConnection": "'Azure DevOps' 서비스 연결", - "loc.input.help.workloadIdentityServiceConnection": "프로젝트의 .npmrc 파일을 찾은 레지스트리에 사용할 자격 증명입니다. feedUrl과 함께 사용하여 .npmrc 파일의 단일 레지스트리에 사용되는 자격 증명을 지정합니다. customEndpoint와 호환되지 않습니다.", - "loc.input.label.feedUrl": "Azure Artifacts URL", - "loc.input.help.feedUrl": "이 설정을 지정하면 azureDevOpsServiceConnection이 필요합니다. customEndpoint와 호환되지 않습니다. 피드 URL은 npm 레지스트리 형식(예: https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/)이어야 합니다.", - "loc.messages.FoundBuildCredentials": "빌드 자격 증명을 찾았습니다.", - "loc.messages.NoBuildCredentials": "빌드 자격 증명을 찾을 수 없습니다.", - "loc.messages.ServiceEndpointNotDefined": "서비스 연결을 찾을 수 없습니다. 선택한 서비스 연결이 여전히 있는지 확인하세요.", - "loc.messages.NpmrcNotNpmrc": "인증하도록 선택한 파일(%s)이 유효한.npmrc 파일이 아닙니다.", - "loc.messages.ServiceEndpointUrlNotDefined": "서비스 연결에 대한 URL을 찾을 수 없습니다. 서비스 연결이 올바르게 구성되었는지 확인하세요.", - "loc.messages.SavingFile": "%s 파일 저장 중", - "loc.messages.RestoringFile": "%s 파일 복원 중", - "loc.messages.AddingAuthRegistry": "레지스트리에 대한 인증 추가: %s", - "loc.messages.FoundLocalRegistries": "이 조직/컬렉션에서 레지스트리 %d개를 찾았습니다.", - "loc.messages.AddingLocalCredentials": "로컬 레지스트리에 대한 자격 증명을 추가하는 중", - "loc.messages.AddingEndpointCredentials": "%s 서비스 연결에 대한 자격 증명을 추가하는 중", - "loc.messages.AuthenticatingThisNpmrc": "%s의 .npmrc 파일에 인증을 추가하는 중", - "loc.messages.IgnoringRegistry": "%s과(와) 일치하는 새 서비스 연결을 찾을 수 없음", - "loc.messages.ForcePackagingUrl": "강제로 다음 위치에 컬렉션 URL 패키지 중: %s", - "loc.messages.CheckedInCredentialsOverriden": "선택한 .npmrc 파일에서 %s 레지스트리에 대한 자격 증명을 찾고 재정의했습니다. 파일에서 자격 증명을 제거하고 대신 npm 서비스 연결에 저장하거나(권장), .npmrc에 체크 인된 자격 증명을 사용하도록 빌드에서 npm 인증 작업을 제거하세요.", - "loc.messages.NoIndexJsonFile": "index.json 파일을 찾을 수 없어서 복원된 파일이 없습니다.", - "loc.messages.RevertedChangesToNpmrc": "%s에 대한 변경 내용을 되돌렸습니다.", - "loc.messages.NpmrcDoesNotExist": "%s에서 선택한 .npmrc 파일이 현재 없습니다.", - "loc.messages.SuccessfulPush": ".npmrc를 푸시함", - "loc.messages.SuccessfulAppend": ".npmrc가 추가됨", - "loc.messages.Info_AddingFederatedFeedAuth": "피드 %s에 대한 서비스 연결 %s의 인증 정보를 추가하는 중", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "피드 %s에 대한 인증을 추가했습니다.", - "loc.messages.FailedToGetServiceConnectionAuth": "서비스 연결에서 페더레이션 자격 증명을 가져올 수 없습니다. %s.", - "loc.messages.MissingFeedUrlOrServiceConnection": "피드 URL이 제공되면 'Azure DevOps' 서비스 연결을 제공해야 하며 비워 둘 수 없습니다.", - "loc.messages.SkippingParsingNpmrc": "npmrc 구문 분석 건너뛰기", - "loc.messages.DuplicateCredentials": "레지스트리 '%s'에 대한 인증이 이전에 설정되었습니다. 새 구성으로 덮어씁니다.", - "loc.messages.FoundEndpointCredentials": "'%s' 서비스 연결에 대해 설정된 자격 증명을 찾았습니다." +{ + "loc.friendlyName": "npm 인증(작업 실행기의 경우)", + "loc.helpMarkDown": "", + "loc.description": "npm 작업도 사용하는 경우에는 이 작업을 사용할 수 없습니다. 리포지토리의 .npmrc 파일에 빌드 범위의 npm 자격 증명을 지정합니다. 이렇게 하면 gulp, Grunt 등의 npm 작업 실행기가 프라이빗 레지스트리에 인증할 수 있습니다.", + "loc.instanceNameFormat": "npm 인증 $(workingFile)", + "loc.input.label.workingFile": "인증할 .npmrc 파일", + "loc.input.help.workingFile": "작업하려는 레지스트리를 지정하는 .npmrc 파일의 경로입니다. 폴더가 아닌 파일을 선택하세요(예: \"/packages/mypackage.npmrc\"). Azure Artifacts URL 및 Entra 워크로드 ID 지원 Azure DevOps 사용자의 서비스 연결이 설정된 경우 npmrc의 레지스트리가 무시됩니다.", + "loc.input.label.customEndpoint": "이 조직/컬렉션 외부 레지스트리에 대한 자격 증명", + "loc.input.help.customEndpoint": "외부 레지스트리에 사용할 자격 증명으로, 프로젝트의 .npmrc에 있습니다. 이 조직/컬렉션에 있는 레지스트리의 경우 이 필드를 비워 둡니다. 빌드의 자격 증명이 자동으로 사용됩니다.", + "loc.input.label.workloadIdentityServiceConnection": "'Azure DevOps' 서비스 연결", + "loc.input.help.workloadIdentityServiceConnection": "프로젝트의 .npmrc 파일을 찾은 레지스트리에 사용할 자격 증명입니다. feedUrl과 함께 사용하여 .npmrc 파일의 단일 레지스트리에 사용되는 자격 증명을 지정합니다. customEndpoint와 호환되지 않습니다.", + "loc.input.label.feedUrl": "Azure Artifacts URL", + "loc.input.help.feedUrl": "이 설정을 지정하면 azureDevOpsServiceConnection이 필요합니다. customEndpoint와 호환되지 않습니다. 피드 URL은 npm 레지스트리 형식(예: https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/)이어야 합니다.", + "loc.messages.FoundBuildCredentials": "빌드 자격 증명을 찾았습니다.", + "loc.messages.NoBuildCredentials": "빌드 자격 증명을 찾을 수 없습니다.", + "loc.messages.ServiceEndpointNotDefined": "서비스 연결을 찾을 수 없습니다. 선택한 서비스 연결이 여전히 있는지 확인하세요.", + "loc.messages.NpmrcNotNpmrc": "인증하도록 선택한 파일(%s)이 유효한.npmrc 파일이 아닙니다.", + "loc.messages.ServiceEndpointUrlNotDefined": "서비스 연결에 대한 URL을 찾을 수 없습니다. 서비스 연결이 올바르게 구성되었는지 확인하세요.", + "loc.messages.SavingFile": "%s 파일 저장 중", + "loc.messages.RestoringFile": "%s 파일 복원 중", + "loc.messages.AddingAuthRegistry": "레지스트리에 대한 인증 추가: %s", + "loc.messages.FoundLocalRegistries": "이 조직/컬렉션에서 레지스트리 %d개를 찾았습니다.", + "loc.messages.AddingLocalCredentials": "로컬 레지스트리에 대한 자격 증명을 추가하는 중", + "loc.messages.AddingEndpointCredentials": "%s 서비스 연결에 대한 자격 증명을 추가하는 중", + "loc.messages.AuthenticatingThisNpmrc": "%s의 .npmrc 파일에 인증을 추가하는 중", + "loc.messages.IgnoringRegistry": "%s과(와) 일치하는 새 서비스 연결을 찾을 수 없음", + "loc.messages.ForcePackagingUrl": "강제로 다음 위치에 컬렉션 URL 패키지 중: %s", + "loc.messages.CheckedInCredentialsOverriden": "선택한 .npmrc 파일에서 %s 레지스트리에 대한 자격 증명을 찾고 재정의했습니다. 파일에서 자격 증명을 제거하고 대신 npm 서비스 연결에 저장하거나(권장), .npmrc에 체크 인된 자격 증명을 사용하도록 빌드에서 npm 인증 작업을 제거하세요.", + "loc.messages.NoIndexJsonFile": "index.json 파일을 찾을 수 없어서 복원된 파일이 없습니다.", + "loc.messages.RevertedChangesToNpmrc": "%s에 대한 변경 내용을 되돌렸습니다.", + "loc.messages.NpmrcDoesNotExist": "%s에서 선택한 .npmrc 파일이 현재 없습니다.", + "loc.messages.SuccessfulPush": ".npmrc를 푸시함", + "loc.messages.SuccessfulAppend": ".npmrc가 추가됨", + "loc.messages.Info_AddingFederatedFeedAuth": "피드 %s에 대한 서비스 연결 %s의 인증 정보를 추가하는 중", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "피드 %s에 대한 인증을 추가했습니다.", + "loc.messages.FailedToGetServiceConnectionAuth": "서비스 연결에서 페더레이션 자격 증명을 가져올 수 없습니다. %s.", + "loc.messages.MissingFeedUrlOrServiceConnection": "피드 URL이 제공되면 'Azure DevOps' 서비스 연결을 제공해야 하며 비워 둘 수 없습니다.", + "loc.messages.SkippingParsingNpmrc": "npmrc 구문 분석 건너뛰기", + "loc.messages.DuplicateCredentials": "레지스트리 '%s'에 대한 인증이 이전에 설정되었습니다. 새 구성으로 덮어씁니다.", + "loc.messages.FoundEndpointCredentials": "'%s' 서비스 연결에 대해 설정된 자격 증명을 찾았습니다." } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ru-RU/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ru-RU/resources.resjson index 4059444f87d8..2510043b5f3d 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ru-RU/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/ru-RU/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "Проверка подлинности npm (для запускателей задач)", - "loc.helpMarkDown": "", - "loc.description": "Не используйте эту задачу, если также используется задача npm. Она предоставляет учетные данные npm в файле NPMRC в репозитории для области сборки. Благодаря этому запускатели задач npm, такие как gulp и Grunt, могут проходить проверку подлинности в частных реестрах.", - "loc.instanceNameFormat": "Проверка подлинности npm $(workingFile)", - "loc.input.label.workingFile": "Файл NPMRC для проверки подлинности", - "loc.input.help.workingFile": "Путь к NPMRC-файлу, указывающему реестры, с которыми вы хотите работать. Выберите файл, а не папку, например \"/packages/mypackage.npmrc\". Если настроен URL-адрес Azure Artifacts и подключение к службе пользователя Azure DevOps на основе Идентификации рабочей нагрузки Microsoft Entra, реестры в npmrc будут игнорироваться.", - "loc.input.label.customEndpoint": "Учетные данные для реестров за пределами этой организации или коллекции", - "loc.input.help.customEndpoint": "Учетные данные, которые следует использовать для внешних реестров, находящихся в файле NPMRC проекта. Для реестров в данной организации или коллекции оставьте это поле пустым; учетные данные сборки используются автоматически.", - "loc.input.label.workloadIdentityServiceConnection": "Подключение службы \"Azure DevOps\"", - "loc.input.help.workloadIdentityServiceConnection": "Учетные данные для использования в реестрах, расположенных в NPMRC-файле проекта. Используйте с feedUrl, чтобы указать учетные данные, применяемые для одного реестра в файле NPMRC. Несовместимо с customEndpoint.", - "loc.input.label.feedUrl": "URL-адрес Azure Artifacts", - "loc.input.help.feedUrl": "Если этот параметр задан, требуется azureDevOpsServiceConnection. Несовместимо с customEndpoint. URL-адрес веб-канала должен быть в формате реестра npm, например https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "Найдены учетные данные сборки", - "loc.messages.NoBuildCredentials": "Не удалось найти учетные данные сборки", - "loc.messages.ServiceEndpointNotDefined": "Не удалось найти подключение службы. Убедитесь в том, что выбранное подключение службы все еще существует.", - "loc.messages.NpmrcNotNpmrc": "Файл, выбранный для проверки подлинности (%s), не является допустимым файлом NPMRC.", - "loc.messages.ServiceEndpointUrlNotDefined": "Не удалось найти URL-адрес подключения службы. Убедитесь в том, что подключение службы настроено правильно.", - "loc.messages.SavingFile": "Сохраняется файл %s", - "loc.messages.RestoringFile": "Восстанавливается файл %s", - "loc.messages.AddingAuthRegistry": "Добавление проверки подлинности для реестра: %s", - "loc.messages.FoundLocalRegistries": "Найдено реестров в этой организации или коллекции: %d", - "loc.messages.AddingLocalCredentials": "Добавляются учетные данные для локального реестра", - "loc.messages.AddingEndpointCredentials": "Добавляются учетные данные для подключения к службе %s", - "loc.messages.AuthenticatingThisNpmrc": "Добавление проверки подлинности в файл NPMRC в %s", - "loc.messages.IgnoringRegistry": "Новые подключения к службам, соответствующие %s, не найдены", - "loc.messages.ForcePackagingUrl": "Принудительная упаковка URL-адреса коллекции: %s", - "loc.messages.CheckedInCredentialsOverriden": "Найдены и переопределены учетные данные для реестра %s в выбранном файле NPMRC. Вместо этого удалите учетные данные из файла и сохраните их в подключении к службе npm (рекомендуется) или удалите задачу проверки подлинности npm из сборки, чтобы использовать учетные данные, сохраненные в файле NPMRC.", - "loc.messages.NoIndexJsonFile": "Файл index.json не найден, и файлы не были восстановлены.", - "loc.messages.RevertedChangesToNpmrc": "Изменения, внесенные в %s, отменены.", - "loc.messages.NpmrcDoesNotExist": "Файл NPMRC, выбранный в %s, в настоящее время не существует.", - "loc.messages.SuccessfulPush": "Отправлен файл .npmrc.", - "loc.messages.SuccessfulAppend": "Добавлен файл .npmrc.", - "loc.messages.Info_AddingFederatedFeedAuth": "Добавление сведений о проверке подлинности из подключения службы %s для веб-канала %s", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Проверка подлинности для веб-канала %s добавлена.", - "loc.messages.FailedToGetServiceConnectionAuth": "Не удалось получить федеративные учетные данные из подключения службы: %s.", - "loc.messages.MissingFeedUrlOrServiceConnection": "Если указан URL-адрес канала, необходимо указать подключение службы \"Azure DevOps\" и оно не может быть пустым.", - "loc.messages.SkippingParsingNpmrc": "Пропуск синтаксического анализа npmrc", - "loc.messages.DuplicateCredentials": "Проверка подлинности для реестра \"%s\" была настроена ранее. Перезапись с новой конфигурацией.", - "loc.messages.FoundEndpointCredentials": "Найдены настроенные учетные данные для подключения к службе \"%s\"." +{ + "loc.friendlyName": "Проверка подлинности npm (для запускателей задач)", + "loc.helpMarkDown": "", + "loc.description": "Не используйте эту задачу, если также используется задача npm. Она предоставляет учетные данные npm в файле NPMRC в репозитории для области сборки. Благодаря этому запускатели задач npm, такие как gulp и Grunt, могут проходить проверку подлинности в частных реестрах.", + "loc.instanceNameFormat": "Проверка подлинности npm $(workingFile)", + "loc.input.label.workingFile": "Файл NPMRC для проверки подлинности", + "loc.input.help.workingFile": "Путь к NPMRC-файлу, указывающему реестры, с которыми вы хотите работать. Выберите файл, а не папку, например \"/packages/mypackage.npmrc\". Если настроен URL-адрес Azure Artifacts и подключение к службе пользователя Azure DevOps на основе Идентификации рабочей нагрузки Microsoft Entra, реестры в npmrc будут игнорироваться.", + "loc.input.label.customEndpoint": "Учетные данные для реестров за пределами этой организации или коллекции", + "loc.input.help.customEndpoint": "Учетные данные, которые следует использовать для внешних реестров, находящихся в файле NPMRC проекта. Для реестров в данной организации или коллекции оставьте это поле пустым; учетные данные сборки используются автоматически.", + "loc.input.label.workloadIdentityServiceConnection": "Подключение службы \"Azure DevOps\"", + "loc.input.help.workloadIdentityServiceConnection": "Учетные данные для использования в реестрах, расположенных в NPMRC-файле проекта. Используйте с feedUrl, чтобы указать учетные данные, применяемые для одного реестра в файле NPMRC. Несовместимо с customEndpoint.", + "loc.input.label.feedUrl": "URL-адрес Azure Artifacts", + "loc.input.help.feedUrl": "Если этот параметр задан, требуется azureDevOpsServiceConnection. Несовместимо с customEndpoint. URL-адрес веб-канала должен быть в формате реестра npm, например https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "Найдены учетные данные сборки", + "loc.messages.NoBuildCredentials": "Не удалось найти учетные данные сборки", + "loc.messages.ServiceEndpointNotDefined": "Не удалось найти подключение службы. Убедитесь в том, что выбранное подключение службы все еще существует.", + "loc.messages.NpmrcNotNpmrc": "Файл, выбранный для проверки подлинности (%s), не является допустимым файлом NPMRC.", + "loc.messages.ServiceEndpointUrlNotDefined": "Не удалось найти URL-адрес подключения службы. Убедитесь в том, что подключение службы настроено правильно.", + "loc.messages.SavingFile": "Сохраняется файл %s", + "loc.messages.RestoringFile": "Восстанавливается файл %s", + "loc.messages.AddingAuthRegistry": "Добавление проверки подлинности для реестра: %s", + "loc.messages.FoundLocalRegistries": "Найдено реестров в этой организации или коллекции: %d", + "loc.messages.AddingLocalCredentials": "Добавляются учетные данные для локального реестра", + "loc.messages.AddingEndpointCredentials": "Добавляются учетные данные для подключения к службе %s", + "loc.messages.AuthenticatingThisNpmrc": "Добавление проверки подлинности в файл NPMRC в %s", + "loc.messages.IgnoringRegistry": "Новые подключения к службам, соответствующие %s, не найдены", + "loc.messages.ForcePackagingUrl": "Принудительная упаковка URL-адреса коллекции: %s", + "loc.messages.CheckedInCredentialsOverriden": "Найдены и переопределены учетные данные для реестра %s в выбранном файле NPMRC. Вместо этого удалите учетные данные из файла и сохраните их в подключении к службе npm (рекомендуется) или удалите задачу проверки подлинности npm из сборки, чтобы использовать учетные данные, сохраненные в файле NPMRC.", + "loc.messages.NoIndexJsonFile": "Файл index.json не найден, и файлы не были восстановлены.", + "loc.messages.RevertedChangesToNpmrc": "Изменения, внесенные в %s, отменены.", + "loc.messages.NpmrcDoesNotExist": "Файл NPMRC, выбранный в %s, в настоящее время не существует.", + "loc.messages.SuccessfulPush": "Отправлен файл .npmrc.", + "loc.messages.SuccessfulAppend": "Добавлен файл .npmrc.", + "loc.messages.Info_AddingFederatedFeedAuth": "Добавление сведений о проверке подлинности из подключения службы %s для веб-канала %s", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "Проверка подлинности для веб-канала %s добавлена.", + "loc.messages.FailedToGetServiceConnectionAuth": "Не удалось получить федеративные учетные данные из подключения службы: %s.", + "loc.messages.MissingFeedUrlOrServiceConnection": "Если указан URL-адрес канала, необходимо указать подключение службы \"Azure DevOps\" и оно не может быть пустым.", + "loc.messages.SkippingParsingNpmrc": "Пропуск синтаксического анализа npmrc", + "loc.messages.DuplicateCredentials": "Проверка подлинности для реестра \"%s\" была настроена ранее. Перезапись с новой конфигурацией.", + "loc.messages.FoundEndpointCredentials": "Найдены настроенные учетные данные для подключения к службе \"%s\"." } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-CN/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-CN/resources.resjson index 3778741257a9..b6163b68febf 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-CN/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-CN/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "npm 身份验证(适用于任务运行程序)", - "loc.helpMarkDown": "", - "loc.description": "如果还使用 npm 任务,请不要使用此任务。向该生成范围的存储库中的 .npmrc 文件提供 npm 凭据,使得 Gulp 和 Grunt 之类的 npm 任务运行程序能在专用注册表进行身份验证。", - "loc.instanceNameFormat": "npm 身份验证 $(workingFile)", - "loc.input.label.workingFile": "要进行身份验证的 .npmrc 文件", - "loc.input.help.workingFile": "用于指定要使用的注册表的 .npmrc 文件的路径。选择文件,而不是文件夹,例如 \"/packages/mypackage.npmrc\"。如果设置了 Azure Artifacts URL 和基于 Entra Workload ID 的 Azure DevOps 用户的服务连接,则将忽略 npmrc 中的注册表。", - "loc.input.label.customEndpoint": "用于此组织/集合外部的注册表的凭据", - "loc.input.help.customEndpoint": "用于位于项目的 .npmrc 中的外部注册表的凭据。对于此组织/集合中的注册表,请将其留空;将自动使用生成的凭据。", - "loc.input.label.workloadIdentityServiceConnection": "\"Azure DevOps\" 服务连接", - "loc.input.help.workloadIdentityServiceConnection": "用于注册表的凭据位于项目的 .npmrc 文件中。与 feedUrl 一起使用以指定 .npmrc 文件中用于单个注册表的凭据。与 customEndpoint 不兼容。", - "loc.input.label.feedUrl": "Azure Artifacts URL", - "loc.input.help.feedUrl": "如果设定了此设置,则需要 azureDevOpsServiceConnection。与 customEndpoint 不兼容。源 URL 应采用 npm 注册表格式,例如 https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "找到生成凭据", - "loc.messages.NoBuildCredentials": "无法找到生成凭据", - "loc.messages.ServiceEndpointNotDefined": "找不到服务连接。请确保所选的服务连接仍存在。", - "loc.messages.NpmrcNotNpmrc": "选择进行身份验证的文件(%s)不是一个有效的 .npmrc 文件。", - "loc.messages.ServiceEndpointUrlNotDefined": "找不到服务连接的 URL。请确保正确配置服务连接。", - "loc.messages.SavingFile": "正在保存文件 %s", - "loc.messages.RestoringFile": "正在还原文件 %s", - "loc.messages.AddingAuthRegistry": "为注册表 %s 添加身份验证", - "loc.messages.FoundLocalRegistries": "在此组织/集合中找到 %d 个注册表", - "loc.messages.AddingLocalCredentials": "添加本地注册表的凭据", - "loc.messages.AddingEndpointCredentials": "正在添加 %s 服务连接的凭据", - "loc.messages.AuthenticatingThisNpmrc": "向在 %s 的 .npmrc 文件添加身份验证", - "loc.messages.IgnoringRegistry": "找不到与 %s 匹配的新服务连接", - "loc.messages.ForcePackagingUrl": "正在打包强制执行到后列对象的集合 URL: %s", - "loc.messages.CheckedInCredentialsOverriden": "找到并替代所选 .npmrc 文件中 %s 注册表的凭据。从文件中删除凭据并改为将其存储在 npm 服务连接中(推荐),或从生成中删除 npm 身份验证任务以使用签入 .npmrc 的凭据。", - "loc.messages.NoIndexJsonFile": "找不到任何 index.json 文件,未还原任何文件", - "loc.messages.RevertedChangesToNpmrc": "已还原对 %s 所做的更改。", - "loc.messages.NpmrcDoesNotExist": "在 %s 选择的 .npmrc 文件当前不存在。", - "loc.messages.SuccessfulPush": "已成功推送 .npmrc", - "loc.messages.SuccessfulAppend": "已成功追加 .npmrc", - "loc.messages.Info_AddingFederatedFeedAuth": "正在为源 %s 添加服务连接 %s 中的身份验证信息", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "已成功为源 %s 添加身份验证。", - "loc.messages.FailedToGetServiceConnectionAuth": "无法从服务连接 %s 获取联合凭据。", - "loc.messages.MissingFeedUrlOrServiceConnection": "如果提供了源 URL,则必须提供 \"Azure DevOps\" 服务连接,并且该连接不能为空。", - "loc.messages.SkippingParsingNpmrc": "正在跳过分析 npmrc", - "loc.messages.DuplicateCredentials": "注册表“%s”的身份验证已在以前设置。正在使用新配置覆盖。", - "loc.messages.FoundEndpointCredentials": "已找到为“%s”服务连接设置的凭据。" +{ + "loc.friendlyName": "npm 身份验证(适用于任务运行程序)", + "loc.helpMarkDown": "", + "loc.description": "如果还使用 npm 任务,请不要使用此任务。向该生成范围的存储库中的 .npmrc 文件提供 npm 凭据,使得 Gulp 和 Grunt 之类的 npm 任务运行程序能在专用注册表进行身份验证。", + "loc.instanceNameFormat": "npm 身份验证 $(workingFile)", + "loc.input.label.workingFile": "要进行身份验证的 .npmrc 文件", + "loc.input.help.workingFile": "用于指定要使用的注册表的 .npmrc 文件的路径。选择文件,而不是文件夹,例如 \"/packages/mypackage.npmrc\"。如果设置了 Azure Artifacts URL 和基于 Entra Workload ID 的 Azure DevOps 用户的服务连接,则将忽略 npmrc 中的注册表。", + "loc.input.label.customEndpoint": "用于此组织/集合外部的注册表的凭据", + "loc.input.help.customEndpoint": "用于位于项目的 .npmrc 中的外部注册表的凭据。对于此组织/集合中的注册表,请将其留空;将自动使用生成的凭据。", + "loc.input.label.workloadIdentityServiceConnection": "\"Azure DevOps\" 服务连接", + "loc.input.help.workloadIdentityServiceConnection": "用于注册表的凭据位于项目的 .npmrc 文件中。与 feedUrl 一起使用以指定 .npmrc 文件中用于单个注册表的凭据。与 customEndpoint 不兼容。", + "loc.input.label.feedUrl": "Azure Artifacts URL", + "loc.input.help.feedUrl": "如果设定了此设置,则需要 azureDevOpsServiceConnection。与 customEndpoint 不兼容。源 URL 应采用 npm 注册表格式,例如 https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "找到生成凭据", + "loc.messages.NoBuildCredentials": "无法找到生成凭据", + "loc.messages.ServiceEndpointNotDefined": "找不到服务连接。请确保所选的服务连接仍存在。", + "loc.messages.NpmrcNotNpmrc": "选择进行身份验证的文件(%s)不是一个有效的 .npmrc 文件。", + "loc.messages.ServiceEndpointUrlNotDefined": "找不到服务连接的 URL。请确保正确配置服务连接。", + "loc.messages.SavingFile": "正在保存文件 %s", + "loc.messages.RestoringFile": "正在还原文件 %s", + "loc.messages.AddingAuthRegistry": "为注册表 %s 添加身份验证", + "loc.messages.FoundLocalRegistries": "在此组织/集合中找到 %d 个注册表", + "loc.messages.AddingLocalCredentials": "添加本地注册表的凭据", + "loc.messages.AddingEndpointCredentials": "正在添加 %s 服务连接的凭据", + "loc.messages.AuthenticatingThisNpmrc": "向在 %s 的 .npmrc 文件添加身份验证", + "loc.messages.IgnoringRegistry": "找不到与 %s 匹配的新服务连接", + "loc.messages.ForcePackagingUrl": "正在打包强制执行到后列对象的集合 URL: %s", + "loc.messages.CheckedInCredentialsOverriden": "找到并替代所选 .npmrc 文件中 %s 注册表的凭据。从文件中删除凭据并改为将其存储在 npm 服务连接中(推荐),或从生成中删除 npm 身份验证任务以使用签入 .npmrc 的凭据。", + "loc.messages.NoIndexJsonFile": "找不到任何 index.json 文件,未还原任何文件", + "loc.messages.RevertedChangesToNpmrc": "已还原对 %s 所做的更改。", + "loc.messages.NpmrcDoesNotExist": "在 %s 选择的 .npmrc 文件当前不存在。", + "loc.messages.SuccessfulPush": "已成功推送 .npmrc", + "loc.messages.SuccessfulAppend": "已成功追加 .npmrc", + "loc.messages.Info_AddingFederatedFeedAuth": "正在为源 %s 添加服务连接 %s 中的身份验证信息", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "已成功为源 %s 添加身份验证。", + "loc.messages.FailedToGetServiceConnectionAuth": "无法从服务连接 %s 获取联合凭据。", + "loc.messages.MissingFeedUrlOrServiceConnection": "如果提供了源 URL,则必须提供 \"Azure DevOps\" 服务连接,并且该连接不能为空。", + "loc.messages.SkippingParsingNpmrc": "正在跳过分析 npmrc", + "loc.messages.DuplicateCredentials": "注册表“%s”的身份验证已在以前设置。正在使用新配置覆盖。", + "loc.messages.FoundEndpointCredentials": "已找到为“%s”服务连接设置的凭据。" } \ No newline at end of file diff --git a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-TW/resources.resjson b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-TW/resources.resjson index 9cb291aca92f..65db62c56728 100644 --- a/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-TW/resources.resjson +++ b/Tasks/NpmAuthenticateV0/Strings/resources.resjson/zh-TW/resources.resjson @@ -1,41 +1,41 @@ -{ - "loc.friendlyName": "npm 驗證 (適用於工作執行器)", - "loc.helpMarkDown": "", - "loc.description": "如果您同時使用 npm 工作,請不要使用此工作。請為組建範圍提供存放庫中 .npmrc 檔案的 npm 認證。這可讓 npm 工作執行器 (如 gulp 和 Grunt) 向私人登錄驗證。", - "loc.instanceNameFormat": "npm 驗證 $(workingFile)", - "loc.input.label.workingFile": "要驗證的 .npmrc 檔案", - "loc.input.help.workingFile": "指定您要使用的登錄的 .npmrc 檔案的路徑。選取檔案,而非資料夾,例如 \"/packages/mypackage.npmrc\"。如果設定 Azure Artifacts URL 與 Entra 工作負載識別碼支援的 Azure DevOps 使用者的服務連線,則會忽略 npmrc 中的登錄。", - "loc.input.label.customEndpoint": "此組織/集合外部登錄的認證", - "loc.input.help.customEndpoint": "要用於專案 .npmrc 中外部登錄的認證。針對此組織/集合中的登錄,請將此欄位保留空白,系統會自動使用組建的認證。", - "loc.input.label.workloadIdentityServiceConnection": "'Azure DevOps' 服務連線", - "loc.input.help.workloadIdentityServiceConnection": "要用於找到專案 .npmrc 檔案之登錄的認證。搭配 feedUrl 使用,以指定用於 .npmrc 檔案中單一登錄的認證。與 customEndpoint 不相容。", - "loc.input.label.feedUrl": "Azure Artifacts URL", - "loc.input.help.feedUrl": "如果設定此選項,則需要 azureDevOpsServiceConnection。與 customEndpoint 不相容。摘要 URL 應該為 npm 登錄格式,例如 https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", - "loc.messages.FoundBuildCredentials": "找到組建認證", - "loc.messages.NoBuildCredentials": "找不到組建認證", - "loc.messages.ServiceEndpointNotDefined": "找不到服務連線。請確定選取的服務連線仍然存在。", - "loc.messages.NpmrcNotNpmrc": "您選取要驗證的檔案 (%s) 不是有效的 .npmrc 檔案。", - "loc.messages.ServiceEndpointUrlNotDefined": "找不到服務連線的 URL。請確定服務連線的設定正確。", - "loc.messages.SavingFile": "正在儲存檔案 %s", - "loc.messages.RestoringFile": "正在還原檔案 %s", - "loc.messages.AddingAuthRegistry": "正在新增登錄 %s 的驗證", - "loc.messages.FoundLocalRegistries": "在此組織/集合中找到 %d 個登錄", - "loc.messages.AddingLocalCredentials": "正在新增本機登錄的認證", - "loc.messages.AddingEndpointCredentials": "正在新增 %s 服務連線的認證", - "loc.messages.AuthenticatingThisNpmrc": "正在為位於 %s 的 .npmrc 檔案新增驗證", - "loc.messages.IgnoringRegistry": "找不到任何符合 %s 的新服務連線", - "loc.messages.ForcePackagingUrl": "封裝集合 URL 會強制前往: %s", - "loc.messages.CheckedInCredentialsOverriden": "已在選取的 .npmrc 檔案中找到並覆寫 %s 登錄的認證。請從檔案中移除認證,並改為將其儲存在 npm 服務連線中 (建議做法),或從您的組建移除 npm 驗證工作,即可使用簽入 .npmrc 的認證。", - "loc.messages.NoIndexJsonFile": "找不到任何 index.json 檔案,未還原任何檔案", - "loc.messages.RevertedChangesToNpmrc": "已還原對 %s 進行的變更。", - "loc.messages.NpmrcDoesNotExist": "您在 %s 選取的 .npmrc 檔案目前不存在。", - "loc.messages.SuccessfulPush": "已成功推送 .npmrc", - "loc.messages.SuccessfulAppend": "已成功附加 .npmrc", - "loc.messages.Info_AddingFederatedFeedAuth": "正在新增摘要 %s 的服務連線 %s 驗證資訊", - "loc.messages.Info_SuccessAddingFederatedFeedAuth": "已成功為摘要 %s 新增驗證。", - "loc.messages.FailedToGetServiceConnectionAuth": "無法取得服務連線的同盟認證: %s。", - "loc.messages.MissingFeedUrlOrServiceConnection": "如果提供摘要 URL,則必須提供「Azure DevOps」服務連線,而且不能是空的。", - "loc.messages.SkippingParsingNpmrc": "正在略過剖析 npmrc", - "loc.messages.DuplicateCredentials": "登錄 '%s' 的驗證先前已設定。正在使用新設定覆寫。", - "loc.messages.FoundEndpointCredentials": "找到 '%s' 服務連線的設定認證。" +{ + "loc.friendlyName": "npm 驗證 (適用於工作執行器)", + "loc.helpMarkDown": "", + "loc.description": "如果您同時使用 npm 工作,請不要使用此工作。請為組建範圍提供存放庫中 .npmrc 檔案的 npm 認證。這可讓 npm 工作執行器 (如 gulp 和 Grunt) 向私人登錄驗證。", + "loc.instanceNameFormat": "npm 驗證 $(workingFile)", + "loc.input.label.workingFile": "要驗證的 .npmrc 檔案", + "loc.input.help.workingFile": "指定您要使用的登錄的 .npmrc 檔案的路徑。選取檔案,而非資料夾,例如 \"/packages/mypackage.npmrc\"。如果設定 Azure Artifacts URL 與 Entra 工作負載識別碼支援的 Azure DevOps 使用者的服務連線,則會忽略 npmrc 中的登錄。", + "loc.input.label.customEndpoint": "此組織/集合外部登錄的認證", + "loc.input.help.customEndpoint": "要用於專案 .npmrc 中外部登錄的認證。針對此組織/集合中的登錄,請將此欄位保留空白,系統會自動使用組建的認證。", + "loc.input.label.workloadIdentityServiceConnection": "'Azure DevOps' 服務連線", + "loc.input.help.workloadIdentityServiceConnection": "要用於找到專案 .npmrc 檔案之登錄的認證。搭配 feedUrl 使用,以指定用於 .npmrc 檔案中單一登錄的認證。與 customEndpoint 不相容。", + "loc.input.label.feedUrl": "Azure Artifacts URL", + "loc.input.help.feedUrl": "如果設定此選項,則需要 azureDevOpsServiceConnection。與 customEndpoint 不相容。摘要 URL 應該為 npm 登錄格式,例如 https://pkgs.dev.azure.com/{ORG_NAME}/{PROJECT}/_packaging/{FEED_NAME}/npm/registry/", + "loc.messages.FoundBuildCredentials": "找到組建認證", + "loc.messages.NoBuildCredentials": "找不到組建認證", + "loc.messages.ServiceEndpointNotDefined": "找不到服務連線。請確定選取的服務連線仍然存在。", + "loc.messages.NpmrcNotNpmrc": "您選取要驗證的檔案 (%s) 不是有效的 .npmrc 檔案。", + "loc.messages.ServiceEndpointUrlNotDefined": "找不到服務連線的 URL。請確定服務連線的設定正確。", + "loc.messages.SavingFile": "正在儲存檔案 %s", + "loc.messages.RestoringFile": "正在還原檔案 %s", + "loc.messages.AddingAuthRegistry": "正在新增登錄 %s 的驗證", + "loc.messages.FoundLocalRegistries": "在此組織/集合中找到 %d 個登錄", + "loc.messages.AddingLocalCredentials": "正在新增本機登錄的認證", + "loc.messages.AddingEndpointCredentials": "正在新增 %s 服務連線的認證", + "loc.messages.AuthenticatingThisNpmrc": "正在為位於 %s 的 .npmrc 檔案新增驗證", + "loc.messages.IgnoringRegistry": "找不到任何符合 %s 的新服務連線", + "loc.messages.ForcePackagingUrl": "封裝集合 URL 會強制前往: %s", + "loc.messages.CheckedInCredentialsOverriden": "已在選取的 .npmrc 檔案中找到並覆寫 %s 登錄的認證。請從檔案中移除認證,並改為將其儲存在 npm 服務連線中 (建議做法),或從您的組建移除 npm 驗證工作,即可使用簽入 .npmrc 的認證。", + "loc.messages.NoIndexJsonFile": "找不到任何 index.json 檔案,未還原任何檔案", + "loc.messages.RevertedChangesToNpmrc": "已還原對 %s 進行的變更。", + "loc.messages.NpmrcDoesNotExist": "您在 %s 選取的 .npmrc 檔案目前不存在。", + "loc.messages.SuccessfulPush": "已成功推送 .npmrc", + "loc.messages.SuccessfulAppend": "已成功附加 .npmrc", + "loc.messages.Info_AddingFederatedFeedAuth": "正在新增摘要 %s 的服務連線 %s 驗證資訊", + "loc.messages.Info_SuccessAddingFederatedFeedAuth": "已成功為摘要 %s 新增驗證。", + "loc.messages.FailedToGetServiceConnectionAuth": "無法取得服務連線的同盟認證: %s。", + "loc.messages.MissingFeedUrlOrServiceConnection": "如果提供摘要 URL,則必須提供「Azure DevOps」服務連線,而且不能是空的。", + "loc.messages.SkippingParsingNpmrc": "正在略過剖析 npmrc", + "loc.messages.DuplicateCredentials": "登錄 '%s' 的驗證先前已設定。正在使用新設定覆寫。", + "loc.messages.FoundEndpointCredentials": "找到 '%s' 服務連線的設定認證。" } \ No newline at end of file