From aa5a6fbed3ebf580637cf04e36b6e8ce713df3d2 Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Fri, 29 Jan 2021 22:17:50 +0300 Subject: [PATCH 01/31] Added localization pipeline and LocProject.json --- Localize/LocProject.json | 20 ++++++++++++++++++++ Localize/localize-pipeline.yml | 21 +++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 Localize/LocProject.json create mode 100644 Localize/localize-pipeline.yml diff --git a/Localize/LocProject.json b/Localize/LocProject.json new file mode 100644 index 000000000..9435ec168 --- /dev/null +++ b/Localize/LocProject.json @@ -0,0 +1,20 @@ +{ + "Projects": [ + { + "LocItems": [ + { + "Languages": "de-de;en-US;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", + "SourceFile": "node\\Strings\\resources.resjson\\en-US\\resources.resjson", + "CopyOption": "LangIDOnPath", + "OutputPath": "node\\Strings\\resources.resjson" + }, + { + "Languages": "de-de;en-US;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", + "SourceFile": "powershell\\VstsTaskSdk\\Strings\\resources.resjson\\en-US\\resources.resjson", + "CopyOption": "LangIDOnPath", + "OutputPath": "powershell\\VstsTaskSdk\\Strings\\resources.resjson" + } + ] + } + ] + } \ No newline at end of file diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml new file mode 100644 index 000000000..a9d5d9b69 --- /dev/null +++ b/Localize/localize-pipeline.yml @@ -0,0 +1,21 @@ +name: $(Date:MMddyy)$(Rev:.rrrr) + +trigger: none + +stages: +- stage: __default + jobs: + - job: Job1 + pool: + vmImage: windows-latest + steps: + - task: OneLocBuild@2 + inputs: + locProj: 'Localize/LocProject.json' + outDir: '$(Build.ArtifactStagingDirectory)' + packageSourceAuth: 'patAuth' + patVariable: '$(OneLocBuildPAT)' + + - task: PublishBuildArtifacts@1 + displayName: 'Publish Artifact: drop' + From 37e9eb961fdd7866aa37c237d27a309c48bb595d Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 1 Feb 2021 12:48:59 +0300 Subject: [PATCH 02/31] Removed en-US --- Localize/LocProject.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Localize/LocProject.json b/Localize/LocProject.json index 9435ec168..5509aaa7e 100644 --- a/Localize/LocProject.json +++ b/Localize/LocProject.json @@ -3,13 +3,13 @@ { "LocItems": [ { - "Languages": "de-de;en-US;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", + "Languages": "de-de;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", "SourceFile": "node\\Strings\\resources.resjson\\en-US\\resources.resjson", "CopyOption": "LangIDOnPath", "OutputPath": "node\\Strings\\resources.resjson" }, { - "Languages": "de-de;en-US;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", + "Languages": "de-de;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", "SourceFile": "powershell\\VstsTaskSdk\\Strings\\resources.resjson\\en-US\\resources.resjson", "CopyOption": "LangIDOnPath", "OutputPath": "powershell\\VstsTaskSdk\\Strings\\resources.resjson" From aee54480692704ccba2b7daebb278533e586c96c Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Fri, 5 Feb 2021 12:19:24 +0300 Subject: [PATCH 03/31] Update localize-pipeline.yml for Azure Pipelines --- Localize/localize-pipeline.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml index a9d5d9b69..a39b75abf 100644 --- a/Localize/localize-pipeline.yml +++ b/Localize/localize-pipeline.yml @@ -15,6 +15,11 @@ stages: outDir: '$(Build.ArtifactStagingDirectory)' packageSourceAuth: 'patAuth' patVariable: '$(OneLocBuildPAT)' + isCreatePrSelected: true + repoType: 'gitHub' + prSourceBranchPrefix: 'Localize' + gitHubPatVariable: '$(GitHubPAT)' + isAutoCompletePrSelected: false - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: drop' From 5742e6b3f21f9216b9b9be18f773d54ebae933ac Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Fri, 5 Feb 2021 12:21:56 +0300 Subject: [PATCH 04/31] Update localize-pipeline.yml for Azure Pipelines --- Localize/localize-pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml index a39b75abf..fa2b7b930 100644 --- a/Localize/localize-pipeline.yml +++ b/Localize/localize-pipeline.yml @@ -20,6 +20,8 @@ stages: prSourceBranchPrefix: 'Localize' gitHubPatVariable: '$(GitHubPAT)' isAutoCompletePrSelected: false + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: drop' From 2fe1055c9c766c8df70cd657a63f23bf61815026 Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Fri, 5 Feb 2021 12:31:55 +0300 Subject: [PATCH 05/31] Made letter case consistent for languages --- .../resources.resjson/de-DE/resources.resjson | 29 +++++++++++++++++++ .../resources.resjson/es-ES/resources.resjson | 29 +++++++++++++++++++ .../resources.resjson/fr-FR/resources.resjson | 29 +++++++++++++++++++ .../resources.resjson/ja-JP/resources.resjson | 29 +++++++++++++++++++ .../resources.resjson/de-DE/resources.resjson | 18 ++++++++++++ .../resources.resjson/es-ES/resources.resjson | 18 ++++++++++++ .../resources.resjson/fr-FR/resources.resjson | 18 ++++++++++++ .../resources.resjson/ja-JP/resources.resjson | 18 ++++++++++++ 8 files changed, 188 insertions(+) create mode 100644 node/Strings/resources.resjson/de-DE/resources.resjson create mode 100644 node/Strings/resources.resjson/es-ES/resources.resjson create mode 100644 node/Strings/resources.resjson/fr-FR/resources.resjson create mode 100644 node/Strings/resources.resjson/ja-JP/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson diff --git a/node/Strings/resources.resjson/de-DE/resources.resjson b/node/Strings/resources.resjson/de-DE/resources.resjson new file mode 100644 index 000000000..75a1a0379 --- /dev/null +++ b/node/Strings/resources.resjson/de-DE/resources.resjson @@ -0,0 +1,29 @@ +{ + "loc.messages.LIB_UnhandledEx": "Ausnahmefehler: %s", + "loc.messages.LIB_FailOnCode": "Fehler beim Rückgabecode: %d", + "loc.messages.LIB_MkdirFailed": "Das Verzeichnis \"%s\" kann nicht erstellt werden. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Eine in Konflikt stehende Datei ist vorhanden: \"%s\"", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Das Stammverzeichnis ist nicht vorhanden: %s", + "loc.messages.LIB_MkdirFailedInvalidShare": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Es kann nicht überprüft werden, ob das Verzeichnis vorhanden ist: {%s}. Wenn das Verzeichnis eine Dateifreigabe ist, stellen Sie sicher, dass der Freigabename richtig, die Freigabe online und der aktuelle Prozess berechtigt ist, auf die Freigabe zuzugreifen.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ReturnCode": "Rückgabecode: %d", + "loc.messages.LIB_ResourceFileNotExist": "Die Ressourcendatei ist nicht vorhanden: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Die Ressourcendatei wurde bereits festgelegt auf: %s", + "loc.messages.LIB_ResourceFileNotSet": "Die Ressourcendatei wurde nicht festgelegt. Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", + "loc.messages.LIB_WhichNotFound_Linux": "Ausführbare Datei nicht gefunden: '%s'. Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem den Dateimodus, um sicherzustellen, dass die Datei ausführbar ist.", + "loc.messages.LIB_WhichNotFound_Win": "Ausführbare Datei nicht gefunden: \"%s\". Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem, ob die Datei eine gültige Erweiterung für eine ausführbare Datei aufweist.", + "loc.messages.LIB_LocStringNotFound": "Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", + "loc.messages.LIB_ParameterIsRequired": "\"%s\" wurde nicht angegeben.", + "loc.messages.LIB_InputRequired": "Eingabe erforderlich: %s", + "loc.messages.LIB_InvalidPattern": "Ungültiges Muster: \"%s\"", + "loc.messages.LIB_EndpointNotExist": "Der Endpunkt ist nicht vorhanden: %s", + "loc.messages.LIB_EndpointDataNotExist": "Der Endpunkt-Datenparameter %s ist nicht vorhanden: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Die Endpunkt-Authentifizierungsdatensind nicht vorhanden: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Ungültige Endpunktauthentifizierung: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Ungültige sichere Dateiausgabe: %s", + "loc.messages.LIB_PathNotFound": "Nicht gefunden %s: %s", + "loc.messages.LIB_PathHasNullByte": "Der Pfad darf keine NULL-Bytes enthalten.", + "loc.messages.LIB_OperationFailed": "Fehler %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Mehrere Arbeitsbereichübereinstimmungen. Die erste Übereinstimmung wird verwendet.", + "loc.messages.LIB_MergeTestResultNotSupported": "Das Mergen von Testergebnissen aus mehreren Dateien in einen Testlauf wird von dieser Version des Build-Agents für OSX/Linux nicht unterstützt. Jede Testergebnisdatei wird als separater Testlauf in VSO/TFS veröffentlicht." +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-ES/resources.resjson b/node/Strings/resources.resjson/es-ES/resources.resjson new file mode 100644 index 000000000..6ae378812 --- /dev/null +++ b/node/Strings/resources.resjson/es-ES/resources.resjson @@ -0,0 +1,29 @@ +{ + "loc.messages.LIB_UnhandledEx": "No controlada: %s", + "loc.messages.LIB_FailOnCode": "Código de retorno de error: %d", + "loc.messages.LIB_MkdirFailed": "No se puede crear el directorio '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "No se puede crear el directorio '%s'. Hay un conflicto entre archivos: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "No se puede crear el directorio '%s'. El directorio raíz no existe: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "No se puede crear el directorio '%s'. No se puede comprobar si el directorio existe: '%s'. Si el directorio es un recurso compartido de archivos, compruebe que el nombre es correcto, que está en línea y que el proceso actual tiene permiso de acceso a este.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ReturnCode": "Código de retorno: %d", + "loc.messages.LIB_ResourceFileNotExist": "El archivo de recursos no existe: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "El archivo de recursos se ha establecido ya en: %s", + "loc.messages.LIB_ResourceFileNotSet": "No se ha establecido el archivo de recursos. No se encuentra la cadena localizada para la clave: %s", + "loc.messages.LIB_WhichNotFound_Linux": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también el modo de archivo para comprobar que el archivo es ejecutable.", + "loc.messages.LIB_WhichNotFound_Win": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también que el archivo tenga una extensión válida para un archivo ejecutable.", + "loc.messages.LIB_LocStringNotFound": "No se encuentra la cadena localizada para la clave: %s", + "loc.messages.LIB_ParameterIsRequired": "No se ha proporcionado %s", + "loc.messages.LIB_InputRequired": "Entrada requerida: %s", + "loc.messages.LIB_InvalidPattern": "Patrón no válido: '%s'", + "loc.messages.LIB_EndpointNotExist": "No hay punto de conexión: %s", + "loc.messages.LIB_EndpointDataNotExist": "El parámetro %s de datos del punto de conexión no existe: %s.", + "loc.messages.LIB_EndpointAuthNotExist": "Los datos de autenticación del punto de conexión no existen: %s.", + "loc.messages.LIB_InvalidEndpointAuth": "Autenticación de punto de conexión no válida: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Entrada de archivo seguro no válida: %s", + "loc.messages.LIB_PathNotFound": "No se encuentra %s: %s", + "loc.messages.LIB_PathHasNullByte": "La ruta de acceso no puede tener bytes nulos", + "loc.messages.LIB_OperationFailed": "Error de %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Hay varias coincidencias en el área de trabajo. Se usará la primera.", + "loc.messages.LIB_MergeTestResultNotSupported": "Esta versión del agente de compilación para OSX/Linux no admite la fusión mediante combinación de resultados de pruebas de varios archivos en una serie de pruebas. Cada archivo de resultados de pruebas se publicará como una serie de pruebas diferente en VSO/TFS." +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-FR/resources.resjson b/node/Strings/resources.resjson/fr-FR/resources.resjson new file mode 100644 index 000000000..334162833 --- /dev/null +++ b/node/Strings/resources.resjson/fr-FR/resources.resjson @@ -0,0 +1,29 @@ +{ + "loc.messages.LIB_UnhandledEx": "Non géré : %s", + "loc.messages.LIB_FailOnCode": "Code de retour de l'échec : %d", + "loc.messages.LIB_MkdirFailed": "Impossible de créer le répertoire '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Impossible de créer le répertoire '%s'. Présence d'un fichier en conflit : '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Impossible de créer le répertoire '%s'. Le répertoire racine n'existe pas : '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Impossible de créer le répertoire '%s'. Impossible de vérifier l'existence du répertoire : '%s'. Si le répertoire est un partage de fichiers, vérifiez que le nom du partage est correct, que le partage est en ligne, et que le processus actuel est autorisé à accéder au partage.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ReturnCode": "Code de retour : %d", + "loc.messages.LIB_ResourceFileNotExist": "Le fichier de ressources n'existe pas : %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Le fichier de ressources est déjà défini : %s", + "loc.messages.LIB_ResourceFileNotSet": "Le fichier de ressources n'est pas défini. La chaîne localisée de la clé est introuvable : %s", + "loc.messages.LIB_WhichNotFound_Linux": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également le Mode de Fichier pour déterminer si le fichier est exécutable.", + "loc.messages.LIB_WhichNotFound_Win": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également si le fichier a une extension de fichier exécutable valide.", + "loc.messages.LIB_LocStringNotFound": "Chaîne localisée introuvable pour la clé : %s", + "loc.messages.LIB_ParameterIsRequired": "%s non fourni", + "loc.messages.LIB_InputRequired": "Entrée nécessaire : %s", + "loc.messages.LIB_InvalidPattern": "Modèle non valide : '%s'", + "loc.messages.LIB_EndpointNotExist": "Point de terminaison absent : %s", + "loc.messages.LIB_EndpointDataNotExist": "Paramètre de données du point de terminaison %s absent : %s", + "loc.messages.LIB_EndpointAuthNotExist": "Données d'authentification du point de terminaison absentes : %s", + "loc.messages.LIB_InvalidEndpointAuth": "Authentification du point de terminaison non valide : %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Entrée de fichier sécurisé non valide : %s", + "loc.messages.LIB_PathNotFound": "%s : %s introuvable", + "loc.messages.LIB_PathHasNullByte": "Le chemin ne peut pas contenir d'octets de valeur Null", + "loc.messages.LIB_OperationFailed": "Échec de %s : %s", + "loc.messages.LIB_UseFirstGlobMatch": "Plusieurs espaces de travail correspondants. Utilisation du premier d'entre eux.", + "loc.messages.LIB_MergeTestResultNotSupported": "La fusion des résultats des tests de plusieurs fichiers en une seule série de tests n'est pas prise en charge dans cette version de l'agent de build pour OSX/Linux. Chaque fichier de résultats des tests est publié en tant que série de tests distincte dans VSO/TFS." +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-JP/resources.resjson b/node/Strings/resources.resjson/ja-JP/resources.resjson new file mode 100644 index 000000000..18bbd0d29 --- /dev/null +++ b/node/Strings/resources.resjson/ja-JP/resources.resjson @@ -0,0 +1,29 @@ +{ + "loc.messages.LIB_UnhandledEx": "未処理: %s", + "loc.messages.LIB_FailOnCode": "失敗のリターン コード: %d", + "loc.messages.LIB_MkdirFailed": "ディレクトリ '%s' を作成できません。%s", + "loc.messages.LIB_MkdirFailedFileExists": "ディレクトリ '%s' を作成できません。競合するファイルが存在します: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "ディレクトリ '%s' を作成できません。ルート ディレクトリが存在しません: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "ディレクトリ '%s' を作成できません。ディレクトリが存在することを確認できません: '%s'。ディレクトリがファイル共有である場合、その共有名が正しいこと、その共有がオンラインであること、そして現在のプロセスにその共有へのアクセス許可があることをご確認ください。", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ReturnCode": "リターン コード: %d", + "loc.messages.LIB_ResourceFileNotExist": "リソース ファイルが存在しません: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "リソース ファイルは既に %s に設定されています", + "loc.messages.LIB_ResourceFileNotSet": "リソース ファイルが設定されておらず、キーの loc 文字列が見つかりません: %s", + "loc.messages.LIB_WhichNotFound_Linux": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。ファイルが実行可能かどうかについてファイル モードもご確認ください。", + "loc.messages.LIB_WhichNotFound_Win": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。そのファイルに実行可能ファイルの有効な拡張子がついていることもご確認ください。", + "loc.messages.LIB_LocStringNotFound": "キーの loc 文字列が見つかりません: %s", + "loc.messages.LIB_ParameterIsRequired": "%s が提供されていません", + "loc.messages.LIB_InputRequired": "入力が必要です: %s", + "loc.messages.LIB_InvalidPattern": "無効なパターン: '%s'", + "loc.messages.LIB_EndpointNotExist": "エンドポイントが存在しません: %s", + "loc.messages.LIB_EndpointDataNotExist": "エンドポイントのデータ パラメーター %s がありません: %s", + "loc.messages.LIB_EndpointAuthNotExist": "エンドポイントの認証データがありません: %s", + "loc.messages.LIB_InvalidEndpointAuth": "エンドポイントの認証が無効です: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "無効なセキュア ファイル入力: %s", + "loc.messages.LIB_PathNotFound": "見つかりませんでした %s: %s", + "loc.messages.LIB_PathHasNullByte": "パスに null バイトを含めることはできません", + "loc.messages.LIB_OperationFailed": "失敗しました %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "複数のワークスペースが一致します。最初のワークスペースが使用されます。", + "loc.messages.LIB_MergeTestResultNotSupported": "複数のファイルからのテスト結果を 1 つのテスト実行にマージする処理は、OSX/Linux 用のビルド エージェントのこのバージョンではサポートされていません。各テスト結果ファイルが VSO/TFS で別個のテスト実行として発行されます。" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson new file mode 100644 index 000000000..248b674d6 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agentversion {0} oder höher ist erforderlich.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Der Containerpfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_EndpointAuth0": "\"{0}\"-Dienstendpunkt-Anmeldeinformationen", + "loc.messages.PSLIB_EndpointUrl0": "\"{0}\"-Dienstendpunkt-URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Fehler beim Aufzählen von Unterverzeichnissen für den folgenden Pfad: \"{0}\"", + "loc.messages.PSLIB_FileNotFound0": "Die Datei wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_Input0": "\"{0}\"-Eingabe", + "loc.messages.PSLIB_InvalidPattern0": "Ungültiges Muster: \"{0}\"", + "loc.messages.PSLIB_LeafPathNotFound0": "Der Blattpfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Fehler bei der Normalisierung bzw. Erweiterung des Pfads. Die Pfadlänge wurde vom Kernel32-Subsystem nicht zurückgegeben für: \"{0}\"", + "loc.messages.PSLIB_PathNotFound0": "Der Pfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Der Prozess \"{0}\" wurde mit dem Code \"{1}\" beendet.", + "loc.messages.PSLIB_Required0": "Erforderlich: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Fehler beim Zeichenfolgenformat.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Der Zeichenfolgen-Ressourcenschlüssel wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_TaskVariable0": "\"{0}\"-Taskvariable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson new file mode 100644 index 000000000..b79ac21aa --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Se require la versión {0} o posterior del agente.", + "loc.messages.PSLIB_ContainerPathNotFound0": "No se encuentra la ruta de acceso del contenedor: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Credenciales del punto de conexión de servicio '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL del punto de conexión de servicio '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "No se pudieron enumerar los subdirectorios de la ruta de acceso: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "Archivo no encontrado: '{0}'", + "loc.messages.PSLIB_Input0": "Entrada '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Patrón no válido: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "No se encuentra la ruta de acceso de la hoja: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "No se pudo normalizar o expandir la ruta de acceso. El subsistema Kernel32 no devolvió la longitud de la ruta de acceso para: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "No se encuentra la ruta de acceso: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "El proceso '{0}' finalizó con el código '{1}'.", + "loc.messages.PSLIB_Required0": "Se requiere: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Error de formato de cadena.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "No se encuentra la clave de recurso de la cadena: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variable de tarea '{0}'" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson new file mode 100644 index 000000000..dc2da0521 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "L'agent version {0} (ou une version ultérieure) est obligatoire.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Le chemin du conteneur est introuvable : '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Informations d'identification du point de terminaison de service '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL du point de terminaison de service '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Échec de l'énumération des sous-répertoires pour le chemin : '{0}'", + "loc.messages.PSLIB_FileNotFound0": "Fichier introuvable : {0}.", + "loc.messages.PSLIB_Input0": "Entrée '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Modèle non valide : '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Le chemin feuille est introuvable : '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Échec de la normalisation/l'expansion du chemin. La longueur du chemin n'a pas été retournée par le sous-système Kernel32 pour : '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Chemin introuvable : '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Le processus '{0}' s'est arrêté avec le code '{1}'.", + "loc.messages.PSLIB_Required0": "Obligatoire : {0}", + "loc.messages.PSLIB_StringFormatFailed": "Échec du format de la chaîne.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Clé de la ressource de type chaîne introuvable : '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variable de tâche '{0}'" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson new file mode 100644 index 000000000..9f2f9feae --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "バージョン {0} 以降のエージェントが必要です。", + "loc.messages.PSLIB_ContainerPathNotFound0": "コンテナーのパスが見つかりません: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' サービス エンドポイントの資格情報", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' サービス エンドポイントの URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "パス '{0}' のサブディレクトリを列挙できませんでした", + "loc.messages.PSLIB_FileNotFound0": "ファイルが見つかりません: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' 入力", + "loc.messages.PSLIB_InvalidPattern0": "使用できないパターンです: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "リーフ パスが見つかりません: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "パスの正規化/展開に失敗しました。Kernel32 サブシステムからパス '{0}' の長さが返されませんでした", + "loc.messages.PSLIB_PathNotFound0": "パスが見つかりません: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "プロセス '{0}' がコード '{1}' で終了しました。", + "loc.messages.PSLIB_Required0": "必要: {0}", + "loc.messages.PSLIB_StringFormatFailed": "文字列のフォーマットに失敗しました。", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "文字列のリソース キーが見つかりません: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' タスク変数" +} \ No newline at end of file From f28660ede6ffad3da5d50e23e28b14052e09f83d Mon Sep 17 00:00:00 2001 From: csigs Date: Sun, 7 Feb 2021 10:54:24 -0800 Subject: [PATCH 06/31] LEGO: check in for Localization to temporary branch. (#703) --- .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ .../en-US/resources.resjson.lcl | 206 ++++++++++++++++++ .../en-US/resources.resjson.lcl | 110 ++++++++++ 18 files changed, 2844 insertions(+) create mode 100644 Localize/loc/de-de/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/de-de/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/es-es/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/es-es/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/fr-fr/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/fr-fr/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/ja-jp/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/ja-jp/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl create mode 100644 Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/de-de/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-de/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..76d0fcfb6 --- /dev/null +++ b/Localize/loc/de-de/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/de-de/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-de/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..df7ff618c --- /dev/null +++ b/Localize/loc/de-de/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/es-es/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-es/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..cde040b72 --- /dev/null +++ b/Localize/loc/es-es/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/es-es/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-es/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..6b2020db8 --- /dev/null +++ b/Localize/loc/es-es/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/fr-fr/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-fr/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..9dcb1934e --- /dev/null +++ b/Localize/loc/fr-fr/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/fr-fr/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-fr/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..d3dfd34cb --- /dev/null +++ b/Localize/loc/fr-fr/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..d20dfd8c0 --- /dev/null +++ b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..1ee6f4d34 --- /dev/null +++ b/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/ja-jp/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-jp/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..be787a2c3 --- /dev/null +++ b/Localize/loc/ja-jp/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/ja-jp/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-jp/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..5e18a63dc --- /dev/null +++ b/Localize/loc/ja-jp/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..3c80ce251 --- /dev/null +++ b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..878881d10 --- /dev/null +++ b/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..706630a11 --- /dev/null +++ b/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..5959fee32 --- /dev/null +++ b/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..984555ec3 --- /dev/null +++ b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..a882dddbf --- /dev/null +++ b/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..232da588e --- /dev/null +++ b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl new file mode 100644 index 000000000..70c5f303d --- /dev/null +++ b/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From e78a44670fff885cecf227f4fd9405c2e9a52548 Mon Sep 17 00:00:00 2001 From: csigs Date: Thu, 18 Feb 2021 08:55:52 -0800 Subject: [PATCH 07/31] LEGO: check in for Localization to temporary branch. (#714) --- .../en-US/resources.resjson.lcl | 98 ++++++++++++++++++- .../en-US/resources.resjson.lcl | 98 ++++++++++++++++++- .../en-US/resources.resjson.lcl | 98 ++++++++++++++++++- 3 files changed, 291 insertions(+), 3 deletions(-) diff --git a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl index d20dfd8c0..0edf1d63e 100644 --- a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,192 +12,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 3c80ce251..e97e59af8 100644 --- a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,192 +12,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 984555ec3..2b461199b 100644 --- a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,192 +12,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 38464c21aa2679f9d276354a6834b83104de4aef Mon Sep 17 00:00:00 2001 From: csigs Date: Wed, 10 Mar 2021 05:21:45 -0800 Subject: [PATCH 08/31] LEGO: check in for Localization to temporary branch. (#720) --- .../en-US/resources.resjson.lcl | 98 ++++++++++++++++++- 1 file changed, 97 insertions(+), 1 deletion(-) diff --git a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 232da588e..57a05ab95 100644 --- a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,192 +12,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 8641a3d73fbbed48bd419bec8fcf35b15d33561e Mon Sep 17 00:00:00 2001 From: Egor Bryzgalov Date: Wed, 10 Mar 2021 17:08:12 +0300 Subject: [PATCH 09/31] Temp renaming --- .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../en-US/resources.resjson.lcl | 0 .../{de-DE => _de-DE}/resources.resjson | 0 .../{es-ES => _es-ES}/resources.resjson | 0 .../{fr-FR => _fr-FR}/resources.resjson | 0 .../{ja-JP => _ja-JP}/resources.resjson | 0 .../resources.resjson/de-de/resources.resjson | 29 ------------------- .../resources.resjson/es-es/resources.resjson | 29 ------------------- .../resources.resjson/fr-fr/resources.resjson | 29 ------------------- .../resources.resjson/ja-jp/resources.resjson | 29 ------------------- .../{de-DE => _de-DE}/resources.resjson | 0 .../{es-ES => _es-ES}/resources.resjson | 0 .../{fr-FR => _fr-FR}/resources.resjson | 0 .../{ja-JP => _ja-JP}/resources.resjson | 0 .../resources.resjson/de-de/resources.resjson | 18 ------------ .../resources.resjson/es-es/resources.resjson | 18 ------------ .../resources.resjson/fr-fr/resources.resjson | 18 ------------ .../resources.resjson/ja-jp/resources.resjson | 18 ------------ 24 files changed, 188 deletions(-) rename Localize/loc/{de-de => _de-DE}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{de-de => _de-DE}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{es-es => _es-ES}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{es-es => _es-ES}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{fr-fr => _fr-FR}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{fr-fr => _fr-FR}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{ja-jp => _ja-JP}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{ja-jp => _ja-JP}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename node/Strings/resources.resjson/{de-DE => _de-DE}/resources.resjson (100%) rename node/Strings/resources.resjson/{es-ES => _es-ES}/resources.resjson (100%) rename node/Strings/resources.resjson/{fr-FR => _fr-FR}/resources.resjson (100%) rename node/Strings/resources.resjson/{ja-JP => _ja-JP}/resources.resjson (100%) delete mode 100644 node/Strings/resources.resjson/de-de/resources.resjson delete mode 100644 node/Strings/resources.resjson/es-es/resources.resjson delete mode 100644 node/Strings/resources.resjson/fr-fr/resources.resjson delete mode 100644 node/Strings/resources.resjson/ja-jp/resources.resjson rename powershell/VstsTaskSdk/Strings/resources.resjson/{de-DE => _de-DE}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{es-ES => _es-ES}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{fr-FR => _fr-FR}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{ja-JP => _ja-JP}/resources.resjson (100%) delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson diff --git a/Localize/loc/de-de/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/de-de/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/de-de/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/de-de/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/es-es/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/es-es/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/es-es/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/es-es/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/fr-fr/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/fr-fr/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/fr-fr/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/fr-fr/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/ja-jp/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/ja-jp/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/ja-jp/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/_ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/ja-jp/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/_ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/node/Strings/resources.resjson/de-DE/resources.resjson b/node/Strings/resources.resjson/_de-DE/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/de-DE/resources.resjson rename to node/Strings/resources.resjson/_de-DE/resources.resjson diff --git a/node/Strings/resources.resjson/es-ES/resources.resjson b/node/Strings/resources.resjson/_es-ES/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/es-ES/resources.resjson rename to node/Strings/resources.resjson/_es-ES/resources.resjson diff --git a/node/Strings/resources.resjson/fr-FR/resources.resjson b/node/Strings/resources.resjson/_fr-FR/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/fr-FR/resources.resjson rename to node/Strings/resources.resjson/_fr-FR/resources.resjson diff --git a/node/Strings/resources.resjson/ja-JP/resources.resjson b/node/Strings/resources.resjson/_ja-JP/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/ja-JP/resources.resjson rename to node/Strings/resources.resjson/_ja-JP/resources.resjson diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/de-de/resources.resjson deleted file mode 100644 index 75a1a0379..000000000 --- a/node/Strings/resources.resjson/de-de/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Ausnahmefehler: %s", - "loc.messages.LIB_FailOnCode": "Fehler beim Rückgabecode: %d", - "loc.messages.LIB_MkdirFailed": "Das Verzeichnis \"%s\" kann nicht erstellt werden. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Eine in Konflikt stehende Datei ist vorhanden: \"%s\"", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Das Stammverzeichnis ist nicht vorhanden: %s", - "loc.messages.LIB_MkdirFailedInvalidShare": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Es kann nicht überprüft werden, ob das Verzeichnis vorhanden ist: {%s}. Wenn das Verzeichnis eine Dateifreigabe ist, stellen Sie sicher, dass der Freigabename richtig, die Freigabe online und der aktuelle Prozess berechtigt ist, auf die Freigabe zuzugreifen.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Rückgabecode: %d", - "loc.messages.LIB_ResourceFileNotExist": "Die Ressourcendatei ist nicht vorhanden: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Die Ressourcendatei wurde bereits festgelegt auf: %s", - "loc.messages.LIB_ResourceFileNotSet": "Die Ressourcendatei wurde nicht festgelegt. Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", - "loc.messages.LIB_WhichNotFound_Linux": "Ausführbare Datei nicht gefunden: '%s'. Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem den Dateimodus, um sicherzustellen, dass die Datei ausführbar ist.", - "loc.messages.LIB_WhichNotFound_Win": "Ausführbare Datei nicht gefunden: \"%s\". Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem, ob die Datei eine gültige Erweiterung für eine ausführbare Datei aufweist.", - "loc.messages.LIB_LocStringNotFound": "Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", - "loc.messages.LIB_ParameterIsRequired": "\"%s\" wurde nicht angegeben.", - "loc.messages.LIB_InputRequired": "Eingabe erforderlich: %s", - "loc.messages.LIB_InvalidPattern": "Ungültiges Muster: \"%s\"", - "loc.messages.LIB_EndpointNotExist": "Der Endpunkt ist nicht vorhanden: %s", - "loc.messages.LIB_EndpointDataNotExist": "Der Endpunkt-Datenparameter %s ist nicht vorhanden: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Die Endpunkt-Authentifizierungsdatensind nicht vorhanden: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Ungültige Endpunktauthentifizierung: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Ungültige sichere Dateiausgabe: %s", - "loc.messages.LIB_PathNotFound": "Nicht gefunden %s: %s", - "loc.messages.LIB_PathHasNullByte": "Der Pfad darf keine NULL-Bytes enthalten.", - "loc.messages.LIB_OperationFailed": "Fehler %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Mehrere Arbeitsbereichübereinstimmungen. Die erste Übereinstimmung wird verwendet.", - "loc.messages.LIB_MergeTestResultNotSupported": "Das Mergen von Testergebnissen aus mehreren Dateien in einen Testlauf wird von dieser Version des Build-Agents für OSX/Linux nicht unterstützt. Jede Testergebnisdatei wird als separater Testlauf in VSO/TFS veröffentlicht." -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/es-es/resources.resjson deleted file mode 100644 index 6ae378812..000000000 --- a/node/Strings/resources.resjson/es-es/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "No controlada: %s", - "loc.messages.LIB_FailOnCode": "Código de retorno de error: %d", - "loc.messages.LIB_MkdirFailed": "No se puede crear el directorio '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "No se puede crear el directorio '%s'. Hay un conflicto entre archivos: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "No se puede crear el directorio '%s'. El directorio raíz no existe: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "No se puede crear el directorio '%s'. No se puede comprobar si el directorio existe: '%s'. Si el directorio es un recurso compartido de archivos, compruebe que el nombre es correcto, que está en línea y que el proceso actual tiene permiso de acceso a este.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Código de retorno: %d", - "loc.messages.LIB_ResourceFileNotExist": "El archivo de recursos no existe: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "El archivo de recursos se ha establecido ya en: %s", - "loc.messages.LIB_ResourceFileNotSet": "No se ha establecido el archivo de recursos. No se encuentra la cadena localizada para la clave: %s", - "loc.messages.LIB_WhichNotFound_Linux": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también el modo de archivo para comprobar que el archivo es ejecutable.", - "loc.messages.LIB_WhichNotFound_Win": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también que el archivo tenga una extensión válida para un archivo ejecutable.", - "loc.messages.LIB_LocStringNotFound": "No se encuentra la cadena localizada para la clave: %s", - "loc.messages.LIB_ParameterIsRequired": "No se ha proporcionado %s", - "loc.messages.LIB_InputRequired": "Entrada requerida: %s", - "loc.messages.LIB_InvalidPattern": "Patrón no válido: '%s'", - "loc.messages.LIB_EndpointNotExist": "No hay punto de conexión: %s", - "loc.messages.LIB_EndpointDataNotExist": "El parámetro %s de datos del punto de conexión no existe: %s.", - "loc.messages.LIB_EndpointAuthNotExist": "Los datos de autenticación del punto de conexión no existen: %s.", - "loc.messages.LIB_InvalidEndpointAuth": "Autenticación de punto de conexión no válida: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Entrada de archivo seguro no válida: %s", - "loc.messages.LIB_PathNotFound": "No se encuentra %s: %s", - "loc.messages.LIB_PathHasNullByte": "La ruta de acceso no puede tener bytes nulos", - "loc.messages.LIB_OperationFailed": "Error de %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Hay varias coincidencias en el área de trabajo. Se usará la primera.", - "loc.messages.LIB_MergeTestResultNotSupported": "Esta versión del agente de compilación para OSX/Linux no admite la fusión mediante combinación de resultados de pruebas de varios archivos en una serie de pruebas. Cada archivo de resultados de pruebas se publicará como una serie de pruebas diferente en VSO/TFS." -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/fr-fr/resources.resjson deleted file mode 100644 index 334162833..000000000 --- a/node/Strings/resources.resjson/fr-fr/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Non géré : %s", - "loc.messages.LIB_FailOnCode": "Code de retour de l'échec : %d", - "loc.messages.LIB_MkdirFailed": "Impossible de créer le répertoire '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Impossible de créer le répertoire '%s'. Présence d'un fichier en conflit : '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Impossible de créer le répertoire '%s'. Le répertoire racine n'existe pas : '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Impossible de créer le répertoire '%s'. Impossible de vérifier l'existence du répertoire : '%s'. Si le répertoire est un partage de fichiers, vérifiez que le nom du partage est correct, que le partage est en ligne, et que le processus actuel est autorisé à accéder au partage.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Code de retour : %d", - "loc.messages.LIB_ResourceFileNotExist": "Le fichier de ressources n'existe pas : %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Le fichier de ressources est déjà défini : %s", - "loc.messages.LIB_ResourceFileNotSet": "Le fichier de ressources n'est pas défini. La chaîne localisée de la clé est introuvable : %s", - "loc.messages.LIB_WhichNotFound_Linux": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également le Mode de Fichier pour déterminer si le fichier est exécutable.", - "loc.messages.LIB_WhichNotFound_Win": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également si le fichier a une extension de fichier exécutable valide.", - "loc.messages.LIB_LocStringNotFound": "Chaîne localisée introuvable pour la clé : %s", - "loc.messages.LIB_ParameterIsRequired": "%s non fourni", - "loc.messages.LIB_InputRequired": "Entrée nécessaire : %s", - "loc.messages.LIB_InvalidPattern": "Modèle non valide : '%s'", - "loc.messages.LIB_EndpointNotExist": "Point de terminaison absent : %s", - "loc.messages.LIB_EndpointDataNotExist": "Paramètre de données du point de terminaison %s absent : %s", - "loc.messages.LIB_EndpointAuthNotExist": "Données d'authentification du point de terminaison absentes : %s", - "loc.messages.LIB_InvalidEndpointAuth": "Authentification du point de terminaison non valide : %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Entrée de fichier sécurisé non valide : %s", - "loc.messages.LIB_PathNotFound": "%s : %s introuvable", - "loc.messages.LIB_PathHasNullByte": "Le chemin ne peut pas contenir d'octets de valeur Null", - "loc.messages.LIB_OperationFailed": "Échec de %s : %s", - "loc.messages.LIB_UseFirstGlobMatch": "Plusieurs espaces de travail correspondants. Utilisation du premier d'entre eux.", - "loc.messages.LIB_MergeTestResultNotSupported": "La fusion des résultats des tests de plusieurs fichiers en une seule série de tests n'est pas prise en charge dans cette version de l'agent de build pour OSX/Linux. Chaque fichier de résultats des tests est publié en tant que série de tests distincte dans VSO/TFS." -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/ja-jp/resources.resjson deleted file mode 100644 index 18bbd0d29..000000000 --- a/node/Strings/resources.resjson/ja-jp/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "未処理: %s", - "loc.messages.LIB_FailOnCode": "失敗のリターン コード: %d", - "loc.messages.LIB_MkdirFailed": "ディレクトリ '%s' を作成できません。%s", - "loc.messages.LIB_MkdirFailedFileExists": "ディレクトリ '%s' を作成できません。競合するファイルが存在します: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "ディレクトリ '%s' を作成できません。ルート ディレクトリが存在しません: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "ディレクトリ '%s' を作成できません。ディレクトリが存在することを確認できません: '%s'。ディレクトリがファイル共有である場合、その共有名が正しいこと、その共有がオンラインであること、そして現在のプロセスにその共有へのアクセス許可があることをご確認ください。", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "リターン コード: %d", - "loc.messages.LIB_ResourceFileNotExist": "リソース ファイルが存在しません: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "リソース ファイルは既に %s に設定されています", - "loc.messages.LIB_ResourceFileNotSet": "リソース ファイルが設定されておらず、キーの loc 文字列が見つかりません: %s", - "loc.messages.LIB_WhichNotFound_Linux": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。ファイルが実行可能かどうかについてファイル モードもご確認ください。", - "loc.messages.LIB_WhichNotFound_Win": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。そのファイルに実行可能ファイルの有効な拡張子がついていることもご確認ください。", - "loc.messages.LIB_LocStringNotFound": "キーの loc 文字列が見つかりません: %s", - "loc.messages.LIB_ParameterIsRequired": "%s が提供されていません", - "loc.messages.LIB_InputRequired": "入力が必要です: %s", - "loc.messages.LIB_InvalidPattern": "無効なパターン: '%s'", - "loc.messages.LIB_EndpointNotExist": "エンドポイントが存在しません: %s", - "loc.messages.LIB_EndpointDataNotExist": "エンドポイントのデータ パラメーター %s がありません: %s", - "loc.messages.LIB_EndpointAuthNotExist": "エンドポイントの認証データがありません: %s", - "loc.messages.LIB_InvalidEndpointAuth": "エンドポイントの認証が無効です: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "無効なセキュア ファイル入力: %s", - "loc.messages.LIB_PathNotFound": "見つかりませんでした %s: %s", - "loc.messages.LIB_PathHasNullByte": "パスに null バイトを含めることはできません", - "loc.messages.LIB_OperationFailed": "失敗しました %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "複数のワークスペースが一致します。最初のワークスペースが使用されます。", - "loc.messages.LIB_MergeTestResultNotSupported": "複数のファイルからのテスト結果を 1 つのテスト実行にマージする処理は、OSX/Linux 用のビルド エージェントのこのバージョンではサポートされていません。各テスト結果ファイルが VSO/TFS で別個のテスト実行として発行されます。" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/_de-DE/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/_de-DE/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/_es-ES/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/_es-ES/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/_fr-FR/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/_fr-FR/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/_ja-JP/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/_ja-JP/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson deleted file mode 100644 index 248b674d6..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agentversion {0} oder höher ist erforderlich.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Der Containerpfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_EndpointAuth0": "\"{0}\"-Dienstendpunkt-Anmeldeinformationen", - "loc.messages.PSLIB_EndpointUrl0": "\"{0}\"-Dienstendpunkt-URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Fehler beim Aufzählen von Unterverzeichnissen für den folgenden Pfad: \"{0}\"", - "loc.messages.PSLIB_FileNotFound0": "Die Datei wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_Input0": "\"{0}\"-Eingabe", - "loc.messages.PSLIB_InvalidPattern0": "Ungültiges Muster: \"{0}\"", - "loc.messages.PSLIB_LeafPathNotFound0": "Der Blattpfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Fehler bei der Normalisierung bzw. Erweiterung des Pfads. Die Pfadlänge wurde vom Kernel32-Subsystem nicht zurückgegeben für: \"{0}\"", - "loc.messages.PSLIB_PathNotFound0": "Der Pfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Der Prozess \"{0}\" wurde mit dem Code \"{1}\" beendet.", - "loc.messages.PSLIB_Required0": "Erforderlich: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Fehler beim Zeichenfolgenformat.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Der Zeichenfolgen-Ressourcenschlüssel wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_TaskVariable0": "\"{0}\"-Taskvariable" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson deleted file mode 100644 index b79ac21aa..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Se require la versión {0} o posterior del agente.", - "loc.messages.PSLIB_ContainerPathNotFound0": "No se encuentra la ruta de acceso del contenedor: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Credenciales del punto de conexión de servicio '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL del punto de conexión de servicio '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "No se pudieron enumerar los subdirectorios de la ruta de acceso: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "Archivo no encontrado: '{0}'", - "loc.messages.PSLIB_Input0": "Entrada '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Patrón no válido: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "No se encuentra la ruta de acceso de la hoja: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "No se pudo normalizar o expandir la ruta de acceso. El subsistema Kernel32 no devolvió la longitud de la ruta de acceso para: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "No se encuentra la ruta de acceso: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "El proceso '{0}' finalizó con el código '{1}'.", - "loc.messages.PSLIB_Required0": "Se requiere: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Error de formato de cadena.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "No se encuentra la clave de recurso de la cadena: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variable de tarea '{0}'" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson deleted file mode 100644 index dc2da0521..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "L'agent version {0} (ou une version ultérieure) est obligatoire.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Le chemin du conteneur est introuvable : '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Informations d'identification du point de terminaison de service '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL du point de terminaison de service '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Échec de l'énumération des sous-répertoires pour le chemin : '{0}'", - "loc.messages.PSLIB_FileNotFound0": "Fichier introuvable : {0}.", - "loc.messages.PSLIB_Input0": "Entrée '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Modèle non valide : '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Le chemin feuille est introuvable : '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Échec de la normalisation/l'expansion du chemin. La longueur du chemin n'a pas été retournée par le sous-système Kernel32 pour : '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Chemin introuvable : '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Le processus '{0}' s'est arrêté avec le code '{1}'.", - "loc.messages.PSLIB_Required0": "Obligatoire : {0}", - "loc.messages.PSLIB_StringFormatFailed": "Échec du format de la chaîne.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Clé de la ressource de type chaîne introuvable : '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variable de tâche '{0}'" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson deleted file mode 100644 index 9f2f9feae..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "バージョン {0} 以降のエージェントが必要です。", - "loc.messages.PSLIB_ContainerPathNotFound0": "コンテナーのパスが見つかりません: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' サービス エンドポイントの資格情報", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' サービス エンドポイントの URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "パス '{0}' のサブディレクトリを列挙できませんでした", - "loc.messages.PSLIB_FileNotFound0": "ファイルが見つかりません: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' 入力", - "loc.messages.PSLIB_InvalidPattern0": "使用できないパターンです: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "リーフ パスが見つかりません: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "パスの正規化/展開に失敗しました。Kernel32 サブシステムからパス '{0}' の長さが返されませんでした", - "loc.messages.PSLIB_PathNotFound0": "パスが見つかりません: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "プロセス '{0}' がコード '{1}' で終了しました。", - "loc.messages.PSLIB_Required0": "必要: {0}", - "loc.messages.PSLIB_StringFormatFailed": "文字列のフォーマットに失敗しました。", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "文字列のリソース キーが見つかりません: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' タスク変数" -} \ No newline at end of file From e438e8bd8f6dc1df8474ea5e8013e87b600142a1 Mon Sep 17 00:00:00 2001 From: Egor Bryzgalov Date: Wed, 10 Mar 2021 17:09:26 +0300 Subject: [PATCH 10/31] Renamed localization files --- .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/{_de-DE => de-DE}/resources.resjson | 0 .../Strings/resources.resjson/{_es-ES => es-ES}/resources.resjson | 0 .../Strings/resources.resjson/{_fr-FR => fr-FR}/resources.resjson | 0 .../Strings/resources.resjson/{_ja-JP => ja-JP}/resources.resjson | 0 .../Strings/resources.resjson/{_de-DE => de-DE}/resources.resjson | 0 .../Strings/resources.resjson/{_es-ES => es-ES}/resources.resjson | 0 .../Strings/resources.resjson/{_fr-FR => fr-FR}/resources.resjson | 0 .../Strings/resources.resjson/{_ja-JP => ja-JP}/resources.resjson | 0 16 files changed, 0 insertions(+), 0 deletions(-) rename Localize/loc/{_de-DE => de-DE}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_de-DE => de-DE}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_es-ES => es-ES}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_es-ES => es-ES}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_fr-FR => fr-FR}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_fr-FR => fr-FR}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_ja-JP => ja-JP}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{_ja-JP => ja-JP}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename node/Strings/resources.resjson/{_de-DE => de-DE}/resources.resjson (100%) rename node/Strings/resources.resjson/{_es-ES => es-ES}/resources.resjson (100%) rename node/Strings/resources.resjson/{_fr-FR => fr-FR}/resources.resjson (100%) rename node/Strings/resources.resjson/{_ja-JP => ja-JP}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{_de-DE => de-DE}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{_es-ES => es-ES}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{_fr-FR => fr-FR}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{_ja-JP => ja-JP}/resources.resjson (100%) diff --git a/Localize/loc/_de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/_ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/_ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/node/Strings/resources.resjson/_de-DE/resources.resjson b/node/Strings/resources.resjson/de-DE/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/_de-DE/resources.resjson rename to node/Strings/resources.resjson/de-DE/resources.resjson diff --git a/node/Strings/resources.resjson/_es-ES/resources.resjson b/node/Strings/resources.resjson/es-ES/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/_es-ES/resources.resjson rename to node/Strings/resources.resjson/es-ES/resources.resjson diff --git a/node/Strings/resources.resjson/_fr-FR/resources.resjson b/node/Strings/resources.resjson/fr-FR/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/_fr-FR/resources.resjson rename to node/Strings/resources.resjson/fr-FR/resources.resjson diff --git a/node/Strings/resources.resjson/_ja-JP/resources.resjson b/node/Strings/resources.resjson/ja-JP/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/_ja-JP/resources.resjson rename to node/Strings/resources.resjson/ja-JP/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/_de-DE/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/_de-DE/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/_es-ES/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/_es-ES/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/_fr-FR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/_fr-FR/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/_ja-JP/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/_ja-JP/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson From ecc61e08d0d1cc28a0b69bfd465c217b86735f96 Mon Sep 17 00:00:00 2001 From: Egor Bryzgalov Date: Fri, 12 Mar 2021 10:24:43 +0300 Subject: [PATCH 11/31] Applied enhancements for the localization pipeline (#733) [skip ci] --- Localize/localize-pipeline.yml | 80 ++++++++++++++++++++++++++++++++-- open-pullrequest.ps1 | 3 +- 2 files changed, 78 insertions(+), 5 deletions(-) diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml index fa2b7b930..c74beff31 100644 --- a/Localize/localize-pipeline.yml +++ b/Localize/localize-pipeline.yml @@ -2,13 +2,40 @@ name: $(Date:MMddyy)$(Rev:.rrrr) trigger: none +schedules: +- cron: 0 8 * * Mon # mm HH DD MM DW + displayName: Localization update + branches: + include: + - Localization + always: true + stages: - stage: __default jobs: - - job: Job1 + - job: LocalizationUpdate + displayName: 'Update localization' pool: vmImage: windows-latest steps: + - checkout: self + persistCredentials: true + + - powershell: | + $sprintInfo = Invoke-WebRequest https://whatsprintis.it -Headers @{"Accept"= "application/json"} | ConvertFrom-Json + Write-Host "##vso[task.setvariable variable=week]$($sprintInfo.week)" + Write-Host "##vso[task.setvariable variable=sprint]$($sprintInfo.sprint)" + displayName: "Determine the number of the week in the sprint and sprint number" + + - powershell: | + git config --global user.email "$(github_email)" + git config --global user.name "$(username)" + git checkout -b Localization origin/Localization + git merge origin/master + git push origin Localization + displayName: "Sync with master branch" + condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + - task: OneLocBuild@2 inputs: locProj: 'Localize/LocProject.json' @@ -19,10 +46,55 @@ stages: repoType: 'gitHub' prSourceBranchPrefix: 'Localize' gitHubPatVariable: '$(GitHubPAT)' - isAutoCompletePrSelected: false + isAutoCompletePrSelected: true + gitHubPrMergeMethod: 'squash' env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) + condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + + - powershell: | + $date= Get-Date -Format "MMddyyyy" + $updateBranch="Localization-update_$date" + echo "##vso[task.setvariable variable=updateBranch]$updateBranch" + + git checkout -b $updateBranch + + Remove-Item -Recurse -Force Localize + + git add -A + git commit -m "Removing Localize folder" + git push origin $updateBranch + displayName: Create and push localization update branch + condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + + - task: PowerShell@2 + inputs: + filePath: 'open-pullrequest.ps1' + arguments: "-SourceBranch $(updateBranch)" + failOnStderr: true + env: + GH_TOKEN: '$(GitHubPAT)' + displayName: Open a PR + condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + + - powershell: | + $message="Created task-lib localization update PR. Someone please approve/merge it. :please-puss-in-boots: $env:PR_LINK" + $body = [PSCustomObject]@{ + text = $message + } | ConvertTo-Json + + Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' + displayName: 'Send Slack notification about PR opened' + condition: and(succeeded(), eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')) + + - powershell: | + $buildUrl = "$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)&_a=summary" + $message="Something went wrong while creating task-lib localization update PR. Build: $buildUrl" + $body = [PSCustomObject]@{ + text = $message + } | ConvertTo-Json - - task: PublishBuildArtifacts@1 - displayName: 'Publish Artifact: drop' + Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' + displayName: 'Send Slack notification about error' + condition: and(failed(), eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')) diff --git a/open-pullrequest.ps1 b/open-pullrequest.ps1 index 25afaa84d..0ddbb4440 100644 --- a/open-pullrequest.ps1 +++ b/open-pullrequest.ps1 @@ -21,4 +21,5 @@ $body = "This PR was auto-generated with [the localization pipeline build]($buil gh pr create --head $SourceBranch --title 'Localization update' --body $body # Getting a link to the opened PR -$env:PR_LINK = Get-PullRequest +$PR_LINK = Get-PullRequest +Write-Host "##vso[task.setvariable variable=PR_LINK]$PR_LINK" From 1db1e58ca2272b3fa8d3dd289d34cbe24bfb219c Mon Sep 17 00:00:00 2001 From: Egor Bryzgalov Date: Tue, 16 Mar 2021 21:23:34 +0300 Subject: [PATCH 12/31] [Localization] Fixed localization pipeline issue with already localized strings replaced (#737) --- Localize/localize-pipeline.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml index c74beff31..d92279650 100644 --- a/Localize/localize-pipeline.yml +++ b/Localize/localize-pipeline.yml @@ -52,6 +52,10 @@ stages: SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + - task: PublishBuildArtifacts@1 + condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + displayName: 'Publish an artifact' + - powershell: | $date= Get-Date -Format "MMddyyyy" $updateBranch="Localization-update_$date" @@ -97,4 +101,3 @@ stages: Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' displayName: 'Send Slack notification about error' condition: and(failed(), eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')) - From 70d21f3415bd5ea5b591925c4caa06444970e0aa Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Tue, 16 Mar 2021 21:27:12 +0300 Subject: [PATCH 13/31] Localized file check-in by OneLocBuild Task: Build definition ID 10947: Build ID 14646607 Localized file check-in by OneLocBuild Task --- .../resources.resjson/de-de/resources.resjson | 35 +++++++++++ .../resources.resjson/es-es/resources.resjson | 35 +++++++++++ .../resources.resjson/fr-fr/resources.resjson | 35 +++++++++++ .../resources.resjson/it-IT/resources.resjson | 62 ++++++++++--------- .../resources.resjson/ja-jp/resources.resjson | 35 +++++++++++ .../resources.resjson/ko-KR/resources.resjson | 62 ++++++++++--------- .../resources.resjson/ru-RU/resources.resjson | 62 ++++++++++--------- .../resources.resjson/zh-CN/resources.resjson | 62 ++++++++++--------- .../resources.resjson/zh-TW/resources.resjson | 62 ++++++++++--------- .../resources.resjson/de-de/resources.resjson | 18 ++++++ .../resources.resjson/es-es/resources.resjson | 18 ++++++ .../resources.resjson/fr-fr/resources.resjson | 18 ++++++ .../resources.resjson/it-IT/resources.resjson | 34 +++++----- .../resources.resjson/ja-jp/resources.resjson | 18 ++++++ .../resources.resjson/ko-KR/resources.resjson | 34 +++++----- .../resources.resjson/ru-RU/resources.resjson | 34 +++++----- .../resources.resjson/zh-CN/resources.resjson | 34 +++++----- .../resources.resjson/zh-TW/resources.resjson | 34 +++++----- 18 files changed, 467 insertions(+), 225 deletions(-) create mode 100644 node/Strings/resources.resjson/de-de/resources.resjson create mode 100644 node/Strings/resources.resjson/es-es/resources.resjson create mode 100644 node/Strings/resources.resjson/fr-fr/resources.resjson create mode 100644 node/Strings/resources.resjson/ja-jp/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/de-de/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/de-de/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/es-es/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/es-es/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/fr-fr/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/fr-fr/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/it-IT/resources.resjson b/node/Strings/resources.resjson/it-IT/resources.resjson index bd97a92e8..91a012e3b 100644 --- a/node/Strings/resources.resjson/it-IT/resources.resjson +++ b/node/Strings/resources.resjson/it-IT/resources.resjson @@ -1,29 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "Eccezione non gestita: %s", - "loc.messages.LIB_FailOnCode": "Codice restituito dell'errore: %d", - "loc.messages.LIB_MkdirFailed": "Non è possibile creare la directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Non è possibile creare la directory '%s'. Esiste un file in conflitto: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Non è possibile creare la directory '%s'. La directory radice non esiste: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Non è possibile creare la directory '%s' perché non è possibile verificarne l'esistenza: '%s'. Se la directory è una condivisione file, verificare che il nome della condivisione sia corretto, che la condivisione sia online e che il processo corrente sia autorizzato ad accedervi.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Codice restituito: %d", - "loc.messages.LIB_ResourceFileNotExist": "Il file di risorse non esiste: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Il file di risorse è già stato impostato su %s", - "loc.messages.LIB_ResourceFileNotSet": "Il file di risorse non è stato impostato. La stringa localizzata per la chiave %s non è stata trovata", - "loc.messages.LIB_WhichNotFound_Linux": "Il file eseguibile '%s' non è stato trovato. Verificare se il percorso di file esiste o il file è presente in una directory specificata dalla variabile di ambiente PATH. Controllare anche la modalità file per verificare che il file sia eseguibile.", - "loc.messages.LIB_WhichNotFound_Win": "Il file eseguibile '%s' non è stato trovato. Verificare se il percorso di file esiste o il file è presente in una directory specificata dalla variabile di ambiente PATH. Controllare anche che l'estensione sia valida per un file eseguibile.", - "loc.messages.LIB_LocStringNotFound": "La stringa localizzata per la chiave %s non è stata trovata", - "loc.messages.LIB_ParameterIsRequired": "Parametro %s non fornito", - "loc.messages.LIB_InputRequired": "Input richiesto: %s", - "loc.messages.LIB_InvalidPattern": "Criterio non valido: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint non presente: %s", - "loc.messages.LIB_EndpointDataNotExist": "Il parametro %s dei dati dell'endpoint non è presente: %s", - "loc.messages.LIB_EndpointAuthNotExist": "I dati di autenticazione endpoint non sono presenti: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Autenticazione endpoint non valida: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "L'input del file protetto non è valido: %s", - "loc.messages.LIB_PathNotFound": "Percorso %s non trovato: %s", - "loc.messages.LIB_PathHasNullByte": "Il percorso non può contenere byte Null", - "loc.messages.LIB_OperationFailed": "Operazione %s non riuscita: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Sono presenti più corrispondenze dell'area di lavoro. Verrà usata la prima.", - "loc.messages.LIB_MergeTestResultNotSupported": "L'unione di più file risultanti da un'unica esecuzione dei test non è supportata in questa versione dell'agente di compilazione per OS X/Linux. Ogni file dei risultati del test verrà pubblicato come esecuzione dei test separata in VSO/TFS." +{ + "loc.messages.LIB_UnhandledEx": "Eccezione non gestita: %s", + "loc.messages.LIB_FailOnCode": "Codice restituito dell'errore: %d", + "loc.messages.LIB_MkdirFailed": "Non è possibile creare la directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Non è possibile creare la directory '%s'. Esiste un file in conflitto: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Non è possibile creare la directory '%s'. La directory radice non esiste: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Non è possibile creare la directory '%s' perché non è possibile verificarne l'esistenza: '%s'. Se la directory è una condivisione file, verificare che il nome della condivisione sia corretto, che la condivisione sia online e che il processo corrente sia autorizzato ad accedervi.", + "loc.messages.LIB_MultilineSecret": "I segreti non possono contenere più righe", + "loc.messages.LIB_ProcessError": "Si è verificato un errore durante il tentativo di eseguire il processo '%s'. Questo errore può indicare che non è stato possibile avviare il processo. Errore: %s", + "loc.messages.LIB_ProcessExitCode": "Il processo '%s' non è riuscito. Codice di uscita: %s", + "loc.messages.LIB_ProcessStderr": "Il processo '%s' non è riuscito perché una o più righe sono state scritte nel flusso STDERR", + "loc.messages.LIB_ReturnCode": "Codice restituito: %d", + "loc.messages.LIB_ResourceFileNotExist": "Il file di risorse non esiste: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Il file di risorse è già stato impostato su %s", + "loc.messages.LIB_ResourceFileNotSet": "Il file di risorse non è stato impostato. La stringa localizzata per la chiave %s non è stata trovata", + "loc.messages.LIB_StdioNotClosed": "I flussi STDIO non si sono chiusi entro %s secondi dall'evento di uscita dal processo '%s'. Questa condizione può indicare che un processo figlio ha ereditato i flussi STDIO e non è ancora stato terminato.", + "loc.messages.LIB_WhichNotFound_Linux": "Il file eseguibile '%s' non è stato trovato. Verificare se il percorso di file esiste o il file è presente in una directory specificata dalla variabile di ambiente PATH. Controllare anche la modalità file per verificare che il file sia eseguibile.", + "loc.messages.LIB_WhichNotFound_Win": "Il file eseguibile '%s' non è stato trovato. Verificare se il percorso di file esiste o il file è presente in una directory specificata dalla variabile di ambiente PATH. Controllare anche che l'estensione sia valida per un file eseguibile.", + "loc.messages.LIB_LocStringNotFound": "La stringa localizzata per la chiave %s non è stata trovata", + "loc.messages.LIB_ParameterIsRequired": "Parametro %s non fornito", + "loc.messages.LIB_InputRequired": "Input richiesto: %s", + "loc.messages.LIB_InvalidPattern": "Criterio non valido: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint non presente: %s", + "loc.messages.LIB_EndpointDataNotExist": "Il parametro %s dei dati dell'endpoint non è presente: %s", + "loc.messages.LIB_EndpointAuthNotExist": "I dati di autenticazione endpoint non sono presenti: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Autenticazione endpoint non valida: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "L'input del file protetto non è valido: %s", + "loc.messages.LIB_PathNotFound": "Percorso %s non trovato: %s", + "loc.messages.LIB_PathHasNullByte": "Il percorso non può contenere byte Null", + "loc.messages.LIB_OperationFailed": "Operazione %s non riuscita: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Sono presenti più corrispondenze dell'area di lavoro. Verrà usata la prima.", + "loc.messages.LIB_MergeTestResultNotSupported": "L'unione di più file risultanti da un'unica esecuzione dei test non è supportata in questa versione dell'agente di compilazione per OS X/Linux. Ogni file dei risultati del test verrà pubblicato come esecuzione dei test separata in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Piattaforma non supportata: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/ja-jp/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/ja-jp/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ko-KR/resources.resjson b/node/Strings/resources.resjson/ko-KR/resources.resjson index 98f410084..f60dfb9c0 100644 --- a/node/Strings/resources.resjson/ko-KR/resources.resjson +++ b/node/Strings/resources.resjson/ko-KR/resources.resjson @@ -1,29 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "처리되지 않음: %s", - "loc.messages.LIB_FailOnCode": "실패 반환 코드: %d", - "loc.messages.LIB_MkdirFailed": "'%s' 디렉터리를 만들 수 없습니다. %s", - "loc.messages.LIB_MkdirFailedFileExists": "'%s' 디렉터리를 만들 수 없습니다. 충돌하는 파일 '%s'이(가) 있습니다.", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "'%s' 디렉터리를 만들 수 없습니다. 루트 디렉터리 '%s'이(가) 없습니다.", - "loc.messages.LIB_MkdirFailedInvalidShare": "'%s' 디렉터리를 만들 수 없습니다. '%s' 디렉터리가 있는지 확인할 수 없습니다. 디렉터리가 파일 공유인 경우 공유 이름이 올바르고, 공유가 온라인 상태이며, 현재 프로세스에 공유에 액세스할 수 있는 권한이 있는지 확인하세요.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "반환 코드: %d", - "loc.messages.LIB_ResourceFileNotExist": "리소스 파일이 없음: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "리소스 파일이 이미 다음으로 설정됨: %s", - "loc.messages.LIB_ResourceFileNotSet": "리소스 파일이 설정되지 않았고 키에 대한 loc 문자열을 찾을 수 없음: %s", - "loc.messages.LIB_WhichNotFound_Linux": "실행 파일 '%s'을(를) 찾을 수 없습니다. 파일 경로가 있는지 또는 PATH 환경 변수에서 지정한 디렉터리 내에서 파일을 찾을 수 있는지 확인하세요. 또한 파일 모드를 확인하여 파일을 실행할 수 있는지 확인하세요.", - "loc.messages.LIB_WhichNotFound_Win": "실행 파일 '%s'을(를) 찾을 수 없습니다. 파일 경로가 있는지 또는 PATH 환경 변수에서 지정한 디렉터리 내에서 파일을 찾을 수 있는지 확인하세요. 또한 파일이 실행 파일에 대해 올바른 확장명을 가지고 있는지 확인하세요.", - "loc.messages.LIB_LocStringNotFound": "키에 대한 loc 문자열을 찾을 수 없음: %s", - "loc.messages.LIB_ParameterIsRequired": "%s이(가) 제공되지 않음", - "loc.messages.LIB_InputRequired": "입력 필요: %s", - "loc.messages.LIB_InvalidPattern": "잘못된 패턴: '%s'", - "loc.messages.LIB_EndpointNotExist": "끝점이 없음: %s", - "loc.messages.LIB_EndpointDataNotExist": "끝점 데이터 매개 변수 %s이(가) 없음: %s", - "loc.messages.LIB_EndpointAuthNotExist": "끝점 인증 데이터가 없음: %s", - "loc.messages.LIB_InvalidEndpointAuth": "잘못된 끝점 인증: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "보안 파일 입력이 잘못됨: %s", - "loc.messages.LIB_PathNotFound": "%s을(를) 찾을 수 없음: %s", - "loc.messages.LIB_PathHasNullByte": "경로에 null 바이트를 포함할 수 없음", - "loc.messages.LIB_OperationFailed": "%s 실패: %s", - "loc.messages.LIB_UseFirstGlobMatch": "여러 작업 영역이 일치합니다. 첫 번째 작업 영역을 사용하세요.", - "loc.messages.LIB_MergeTestResultNotSupported": "이 OSX/Linux용 빌드 에이전트 버전에서 여러 파일의 테스트 결과를 하나의 테스트 실행으로 병합하는 것을 지원하지 않습니다. 각 테스트 결과 파일은 VSO/TFS에서 별도의 테스트 실행으로 게시됩니다." +{ + "loc.messages.LIB_UnhandledEx": "처리되지 않음: %s", + "loc.messages.LIB_FailOnCode": "실패 반환 코드: %d", + "loc.messages.LIB_MkdirFailed": "'%s' 디렉터리를 만들 수 없습니다. %s", + "loc.messages.LIB_MkdirFailedFileExists": "'%s' 디렉터리를 만들 수 없습니다. 충돌하는 파일 '%s'이(가) 있습니다.", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "'%s' 디렉터리를 만들 수 없습니다. 루트 디렉터리 '%s'이(가) 없습니다.", + "loc.messages.LIB_MkdirFailedInvalidShare": "'%s' 디렉터리를 만들 수 없습니다. '%s' 디렉터리가 있는지 확인할 수 없습니다. 디렉터리가 파일 공유인 경우 공유 이름이 올바르고, 공유가 온라인 상태이며, 현재 프로세스에 공유에 액세스할 수 있는 권한이 있는지 확인하세요.", + "loc.messages.LIB_MultilineSecret": "비밀에 여러 줄을 사용할 수 없습니다.", + "loc.messages.LIB_ProcessError": "'%s' 프로세스를 실행할 때 오류가 발생했습니다. 이는 프로세스를 시작하지 못했음을 나타낼 수 있습니다. 오류: %s", + "loc.messages.LIB_ProcessExitCode": "'%s' 프로세스가 실패함(종료 코드 %s)", + "loc.messages.LIB_ProcessStderr": "하나 이상의 줄이 STDERR 스트림에 쓰였으므로 '%s' 프로세스가 실패함", + "loc.messages.LIB_ReturnCode": "반환 코드: %d", + "loc.messages.LIB_ResourceFileNotExist": "리소스 파일이 없음: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "리소스 파일이 이미 다음으로 설정됨: %s", + "loc.messages.LIB_ResourceFileNotSet": "리소스 파일이 설정되지 않았고 키에 대한 loc 문자열을 찾을 수 없음: %s", + "loc.messages.LIB_StdioNotClosed": "STDIO 스트림이 %s초 이내('%s' 프로세스의 종료 이벤트 후)에 닫히지 않았습니다. 이는 자식 프로세스가 STDIO 스트림을 상속했으며 아직 종료되지 않았음을 나타낼 수 있습니다.", + "loc.messages.LIB_WhichNotFound_Linux": "실행 파일 '%s'을(를) 찾을 수 없습니다. 파일 경로가 있는지 또는 PATH 환경 변수에서 지정한 디렉터리 내에서 파일을 찾을 수 있는지 확인하세요. 또한 파일 모드를 확인하여 파일을 실행할 수 있는지 확인하세요.", + "loc.messages.LIB_WhichNotFound_Win": "실행 파일 '%s'을(를) 찾을 수 없습니다. 파일 경로가 있는지 또는 PATH 환경 변수에서 지정한 디렉터리 내에서 파일을 찾을 수 있는지 확인하세요. 또한 파일이 실행 파일에 대해 올바른 확장명을 가지고 있는지 확인하세요.", + "loc.messages.LIB_LocStringNotFound": "키에 대한 loc 문자열을 찾을 수 없음: %s", + "loc.messages.LIB_ParameterIsRequired": "%s이(가) 제공되지 않음", + "loc.messages.LIB_InputRequired": "입력 필요: %s", + "loc.messages.LIB_InvalidPattern": "잘못된 패턴: '%s'", + "loc.messages.LIB_EndpointNotExist": "엔드포인트가 없음: %s", + "loc.messages.LIB_EndpointDataNotExist": "엔드포인트 데이터 매개 변수 %s이(가) 없음: %s", + "loc.messages.LIB_EndpointAuthNotExist": "엔드포인트 인증 데이터가 없음: %s", + "loc.messages.LIB_InvalidEndpointAuth": "잘못된 엔드포인트 인증: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "보안 파일 입력이 잘못됨: %s", + "loc.messages.LIB_PathNotFound": "%s을(를) 찾을 수 없음: %s", + "loc.messages.LIB_PathHasNullByte": "경로에 null 바이트를 포함할 수 없음", + "loc.messages.LIB_OperationFailed": "%s 실패: %s", + "loc.messages.LIB_UseFirstGlobMatch": "여러 작업 영역이 일치합니다. 첫 번째 작업 영역을 사용하세요.", + "loc.messages.LIB_MergeTestResultNotSupported": "이 OSX/Linux용 빌드 에이전트 버전에서 여러 파일의 테스트 결과를 하나의 테스트 실행으로 병합하는 것을 지원하지 않습니다. 각 테스트 결과 파일은 VSO/TFS에서 별도의 테스트 실행으로 게시됩니다.", + "loc.messages.LIB_PlatformNotSupported": "지원되지 않는 플랫폼: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/ru-RU/resources.resjson b/node/Strings/resources.resjson/ru-RU/resources.resjson index 2949128f1..8a76dd509 100644 --- a/node/Strings/resources.resjson/ru-RU/resources.resjson +++ b/node/Strings/resources.resjson/ru-RU/resources.resjson @@ -1,29 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "Не обработано: %s", - "loc.messages.LIB_FailOnCode": "Код возврата при сбое: %d.", - "loc.messages.LIB_MkdirFailed": "Не удается создать каталог \"%s\". %s", - "loc.messages.LIB_MkdirFailedFileExists": "Не удается создать каталог \"%s\". Существует конфликтующий файл: \"%s\"", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Не удалось создать каталог \"%s\". Корневой каталог не существует: \"%s\"", - "loc.messages.LIB_MkdirFailedInvalidShare": "Не удалось создать каталог \"%s\". Не удалось проверить, существует ли каталог \"%s\". Если каталог является файловым ресурсом, убедитесь, что имя ресурса указано правильно, он работает и текущий процесс имеет разрешение на доступ к нему.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Код возврата: %d", - "loc.messages.LIB_ResourceFileNotExist": "Файл ресурсов не существует: %s.", - "loc.messages.LIB_ResourceFileAlreadySet": "Файл ресурсов уже задан: %s.", - "loc.messages.LIB_ResourceFileNotSet": "Файл ресурсов не задан, не удается найти локализованную строку для ключа: %s.", - "loc.messages.LIB_WhichNotFound_Linux": "Не удалось найти исполняемый файл: \"%s\". Убедитесь, что путь к файлу существует и файл можно найти в каталоге, указанном переменной окружения PATH. Также проверьте режим файла, чтобы убедиться, что файл является исполняемым.", - "loc.messages.LIB_WhichNotFound_Win": "Не удалось найти исполняемый файл: \"%s\". Убедитесь, что путь к файлу существует и что файл можно найти в каталоге, указанном переменной окружения PATH. Также убедитесь, что у файла есть допустимое расширение для исполняемого файла.", - "loc.messages.LIB_LocStringNotFound": "Не удается найти локализованную строку для ключа: %s.", - "loc.messages.LIB_ParameterIsRequired": "Не указан %s.", - "loc.messages.LIB_InputRequired": "Требуется ввести данные: %s.", - "loc.messages.LIB_InvalidPattern": "Недопустимый шаблон: \"%s\"", - "loc.messages.LIB_EndpointNotExist": "Конечная точка отсутствует: %s.", - "loc.messages.LIB_EndpointDataNotExist": "Отсутствует параметр %s данных конечной точки: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Отсутствуют данные для проверки подлинности конечной точки: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Недопустимая проверка подлинности конечной точки: %s.", - "loc.messages.LIB_InvalidSecureFilesInput": "Недопустимые входные данные защитного файла: %s", - "loc.messages.LIB_PathNotFound": "Не найден %s: %s.", - "loc.messages.LIB_PathHasNullByte": "Путь не может содержать пустые байты.", - "loc.messages.LIB_OperationFailed": "Сбой %s: %s.", - "loc.messages.LIB_UseFirstGlobMatch": "Несколько рабочих областей совпадает, использована первая рабочая область.", - "loc.messages.LIB_MergeTestResultNotSupported": "Объединение результатов тестов из нескольких файлов в один тестовый запуск не поддерживается в этой версии агента сборки для OSX/Linux. Каждый файл результатов теста будет опубликован в качестве отдельного тестового запуска в VSO/TFS." +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/zh-CN/resources.resjson b/node/Strings/resources.resjson/zh-CN/resources.resjson index 6ae8cad0e..d2a9a84b2 100644 --- a/node/Strings/resources.resjson/zh-CN/resources.resjson +++ b/node/Strings/resources.resjson/zh-CN/resources.resjson @@ -1,29 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "未处理: %s", - "loc.messages.LIB_FailOnCode": "故障返回代码: %d", - "loc.messages.LIB_MkdirFailed": "无法创建目录“%s”。%s", - "loc.messages.LIB_MkdirFailedFileExists": "无法创建目录“%s”。存在冲突文件:“%s”", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "无法创建目录“%s”。根目录不存在:“%s”", - "loc.messages.LIB_MkdirFailedInvalidShare": "无法创建目录“%s”。无法验证“%s”目录是否存在。如果目录是文件共享,请验证共享名称是否正确、共享是否已联机以及当前进程是否有权访问该共享。", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "返回代码: %d", - "loc.messages.LIB_ResourceFileNotExist": "资源文件不存在: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "资源文件已被设置为 %s", - "loc.messages.LIB_ResourceFileNotSet": "资源文件尚未设置,无法找到关键字的本地字符串: %s", - "loc.messages.LIB_WhichNotFound_Linux": "无法定位可执行文件: \"%s\"。请验证文件路径是否存在或文件是否可在 PATH 环境变量指定的目录内找到。另请检查文件模式以验证文件是否可执行。", - "loc.messages.LIB_WhichNotFound_Win": "无法定位可执行文件: \"%s\"。请验证文件路径是否存在或文件是否可在 PATH 环境变量指定的目录内找到。另请验证该文件是否具有可执行文件的有效扩展名。", - "loc.messages.LIB_LocStringNotFound": "无法找到关键字的本地字符串: %s", - "loc.messages.LIB_ParameterIsRequired": "未提供 %s", - "loc.messages.LIB_InputRequired": "输入必需项: %s", - "loc.messages.LIB_InvalidPattern": "无效的模式: \"%s\"", - "loc.messages.LIB_EndpointNotExist": "终结点不存在: %s", - "loc.messages.LIB_EndpointDataNotExist": "终结点数据参数 %s 不存在: %s", - "loc.messages.LIB_EndpointAuthNotExist": "终结点授权数据不存在: %s", - "loc.messages.LIB_InvalidEndpointAuth": "终结点验证无效: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "无效的安全文件输入: %s", - "loc.messages.LIB_PathNotFound": "找不到 %s: %s", - "loc.messages.LIB_PathHasNullByte": "路径不能包含 null 字节", - "loc.messages.LIB_OperationFailed": "%s 失败: %s", - "loc.messages.LIB_UseFirstGlobMatch": "出现多个工作区匹配时,使用第一个。", - "loc.messages.LIB_MergeTestResultNotSupported": "此版本的 OSX/Linux 生成代理不支持来自某个测试运行的多文件合并测试结果,在 VSO/TFS 中,每个测试结果文件都将作为单独的测试运行进行发布。" +{ + "loc.messages.LIB_UnhandledEx": "未处理: %s", + "loc.messages.LIB_FailOnCode": "故障返回代码: %d", + "loc.messages.LIB_MkdirFailed": "无法创建目录“%s”。%s", + "loc.messages.LIB_MkdirFailedFileExists": "无法创建目录“%s”。存在冲突文件:“%s”", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "无法创建目录“%s”。根目录不存在:“%s”", + "loc.messages.LIB_MkdirFailedInvalidShare": "无法创建目录“%s”。无法验证“%s”目录是否存在。如果目录是文件共享,请验证共享名称是否正确、共享是否已联机以及当前进程是否有权访问该共享。", + "loc.messages.LIB_MultilineSecret": "密码不能包含多个行", + "loc.messages.LIB_ProcessError": "尝试执行进程“%s”时出错。这可能表示进程启动失败。错误: %s", + "loc.messages.LIB_ProcessExitCode": "进程“%s”失败,退出代码为 %s", + "loc.messages.LIB_ProcessStderr": "进程“%s”失败,因为已将一行或多行写入 STDERR 流", + "loc.messages.LIB_ReturnCode": "返回代码: %d", + "loc.messages.LIB_ResourceFileNotExist": "资源文件不存在: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "资源文件已被设置为 %s", + "loc.messages.LIB_ResourceFileNotSet": "资源文件尚未设置,无法找到关键字的本地字符串: %s", + "loc.messages.LIB_StdioNotClosed": "STDIO 流在进程“%s”中发生退出事件 %s 秒内未关闭 。这可能表示子进程继承了 STDIO 流且尚未退出。", + "loc.messages.LIB_WhichNotFound_Linux": "无法定位可执行文件: \"%s\"。请验证文件路径是否存在或文件是否可在 PATH 环境变量指定的目录内找到。另请检查文件模式以验证文件是否可执行。", + "loc.messages.LIB_WhichNotFound_Win": "无法定位可执行文件: \"%s\"。请验证文件路径是否存在或文件是否可在 PATH 环境变量指定的目录内找到。另请验证该文件是否具有可执行文件的有效扩展名。", + "loc.messages.LIB_LocStringNotFound": "无法找到关键字的本地字符串: %s", + "loc.messages.LIB_ParameterIsRequired": "未提供 %s", + "loc.messages.LIB_InputRequired": "输入必需项: %s", + "loc.messages.LIB_InvalidPattern": "无效的模式: \"%s\"", + "loc.messages.LIB_EndpointNotExist": "终结点不存在: %s", + "loc.messages.LIB_EndpointDataNotExist": "终结点数据参数 %s 不存在: %s", + "loc.messages.LIB_EndpointAuthNotExist": "终结点授权数据不存在: %s", + "loc.messages.LIB_InvalidEndpointAuth": "终结点验证无效: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "无效的安全文件输入: %s", + "loc.messages.LIB_PathNotFound": "找不到 %s: %s", + "loc.messages.LIB_PathHasNullByte": "路径不能包含 null 字节", + "loc.messages.LIB_OperationFailed": "%s 失败: %s", + "loc.messages.LIB_UseFirstGlobMatch": "出现多个工作区匹配时,使用第一个。", + "loc.messages.LIB_MergeTestResultNotSupported": "此版本的 OSX/Linux 生成代理不支持来自某个测试运行的多文件合并测试结果,在 VSO/TFS 中,每个测试结果文件都将作为单独的测试运行进行发布。", + "loc.messages.LIB_PlatformNotSupported": "平台不受支持: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/zh-TW/resources.resjson b/node/Strings/resources.resjson/zh-TW/resources.resjson index bd12064ec..58b43ca9d 100644 --- a/node/Strings/resources.resjson/zh-TW/resources.resjson +++ b/node/Strings/resources.resjson/zh-TW/resources.resjson @@ -1,29 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "未經處理: %s", - "loc.messages.LIB_FailOnCode": "傳回程式碼失敗: %d", - "loc.messages.LIB_MkdirFailed": "無法建立目錄 '%s'。%s", - "loc.messages.LIB_MkdirFailedFileExists": "無法建立目錄 '%s'。存在衝突的檔案: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "無法建立目錄 '%s'。根目錄不存在: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "無法建立目錄 '%s'。無法驗證目錄是否存在: '%s'。如果目錄是檔案共用,請驗證共用名稱正確、共用在線上,而且目前的流程具有存取共用的權限。", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "傳回程式碼: %d", - "loc.messages.LIB_ResourceFileNotExist": "資源檔案不存在: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "資源檔案已設定至: %s", - "loc.messages.LIB_ResourceFileNotSet": "尚未設定資源檔案,找不到索引鍵的 loc 字串: %s", - "loc.messages.LIB_WhichNotFound_Linux": "找不到可執行檔: '%s'。請確認檔案路徑存在,或檔案可以在 PATH 環境變數指定的目錄中找到。另請檢查檔案模式,確認檔案可以執行。", - "loc.messages.LIB_WhichNotFound_Win": "找不到可執行檔: '%s'。請確認檔案路徑存在,或檔案可以在 PATH 環境變數指定的目錄中找到。另請確認檔案具備有效的可執行檔副檔名。", - "loc.messages.LIB_LocStringNotFound": "找不到索引鍵的 loc 字串: %s", - "loc.messages.LIB_ParameterIsRequired": "未提供 %s", - "loc.messages.LIB_InputRequired": "需要輸入內容: %s", - "loc.messages.LIB_InvalidPattern": "模式無效: '%s'", - "loc.messages.LIB_EndpointNotExist": "端點不存在: %s", - "loc.messages.LIB_EndpointDataNotExist": "端點資料參數 %s 不存在: %s", - "loc.messages.LIB_EndpointAuthNotExist": "端點驗證資料不存在: %s", - "loc.messages.LIB_InvalidEndpointAuth": "端點驗證無效: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "安全檔案輸入無效: %s", - "loc.messages.LIB_PathNotFound": "找不到 %s: %s", - "loc.messages.LIB_PathHasNullByte": "路徑不能包含 null 位元組", - "loc.messages.LIB_OperationFailed": "%s 失敗: %s", - "loc.messages.LIB_UseFirstGlobMatch": "多個工作區相符。請先使用。", - "loc.messages.LIB_MergeTestResultNotSupported": "OSX/Linux 的此版本組建代理程式不支援將多個檔案的測試結果合併至單一測試回合,每個測試結果檔案將作為個別測試回合在 VSO/TFS 中發行。" +{ + "loc.messages.LIB_UnhandledEx": "未經處理: %s", + "loc.messages.LIB_FailOnCode": "傳回程式碼失敗: %d", + "loc.messages.LIB_MkdirFailed": "無法建立目錄 '%s'。%s", + "loc.messages.LIB_MkdirFailedFileExists": "無法建立目錄 '%s'。存在衝突的檔案: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "無法建立目錄 '%s'。根目錄不存在: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "無法建立目錄 '%s'。無法驗證目錄是否存在: '%s'。如果目錄是檔案共用,請驗證共用名稱正確、共用在線上,而且目前的流程具有存取共用的權限。", + "loc.messages.LIB_MultilineSecret": "祕密不得包含多個行", + "loc.messages.LIB_ProcessError": "嘗試執行處理序 '%s' 時發生錯誤。這可能表示處理序無法啟動。錯誤: %s", + "loc.messages.LIB_ProcessExitCode": "處理序 '%s' 失敗,結束代碼為 %s", + "loc.messages.LIB_ProcessStderr": "因為 STDERR 資料流中寫入了一或多行程式碼,所以處理序 '%s' 失敗", + "loc.messages.LIB_ReturnCode": "傳回程式碼: %d", + "loc.messages.LIB_ResourceFileNotExist": "資源檔案不存在: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "資源檔案已設定至: %s", + "loc.messages.LIB_ResourceFileNotSet": "尚未設定資源檔案,找不到索引鍵的 loc 字串: %s", + "loc.messages.LIB_StdioNotClosed": "STDIO 資料流未在 %s 秒內關閉 (從處理序 '%s' 結束事件發生後算起)。這可能表示子處理序繼承了 STDIO 資料流且尚未結束。", + "loc.messages.LIB_WhichNotFound_Linux": "找不到可執行檔: '%s'。請確認檔案路徑存在,或檔案可以在 PATH 環境變數指定的目錄中找到。另請檢查檔案模式,確認檔案可以執行。", + "loc.messages.LIB_WhichNotFound_Win": "找不到可執行檔: '%s'。請確認檔案路徑存在,或檔案可以在 PATH 環境變數指定的目錄中找到。另請確認檔案具備有效的可執行檔副檔名。", + "loc.messages.LIB_LocStringNotFound": "找不到索引鍵的 loc 字串: %s", + "loc.messages.LIB_ParameterIsRequired": "未提供 %s", + "loc.messages.LIB_InputRequired": "需要輸入內容: %s", + "loc.messages.LIB_InvalidPattern": "模式無效: '%s'", + "loc.messages.LIB_EndpointNotExist": "端點不存在: %s", + "loc.messages.LIB_EndpointDataNotExist": "端點資料參數 %s 不存在: %s", + "loc.messages.LIB_EndpointAuthNotExist": "端點驗證資料不存在: %s", + "loc.messages.LIB_InvalidEndpointAuth": "端點驗證無效: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "安全檔案輸入無效: %s", + "loc.messages.LIB_PathNotFound": "找不到 %s: %s", + "loc.messages.LIB_PathHasNullByte": "路徑不能包含 null 位元組", + "loc.messages.LIB_OperationFailed": "%s 失敗: %s", + "loc.messages.LIB_UseFirstGlobMatch": "多個工作區相符。請先使用。", + "loc.messages.LIB_MergeTestResultNotSupported": "OSX/Linux 的此版本組建代理程式不支援將多個檔案的測試結果合併至單一測試回合,每個測試結果檔案將作為個別測試回合在 VSO/TFS 中發行。", + "loc.messages.LIB_PlatformNotSupported": "不支援的平台: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson index 77bea5360..ded9fc6b2 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "È richiesta la versione dell'agente {0} o superiore.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Percorso del contenitore non trovato: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Credenziali dell'endpoint servizio '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL dell'endpoint servizio '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "L'enumerazione delle sottodirectory per il percorso '{0}' non è riuscita", - "loc.messages.PSLIB_FileNotFound0": "File non trovato: '{0}'", - "loc.messages.PSLIB_Input0": "Input di '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Criterio non valido: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Percorso foglia non trovato: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "La normalizzazione o l'espansione del percorso non è riuscita. Il sottosistema Kernel32 non ha restituito la lunghezza del percorso per '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Percorso non trovato: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Il processo '{0}' è stato terminato ed è stato restituito il codice '{1}'.", - "loc.messages.PSLIB_Required0": "Obbligatorio: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Errore nel formato della stringa.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "La chiave della risorsa stringa non è stata trovata: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variabile dell'attività '{0}'" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson index 17e0d28a8..ded9fc6b2 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "에이전트 버전 {0} 이상이 필요합니다.", - "loc.messages.PSLIB_ContainerPathNotFound0": "컨테이너 경로를 찾을 수 없음: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' 서비스 끝점 자격 증명", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' 서비스 끝점 URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "경로에 대해 하위 디렉터리를 열거하지 못함: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "{0} 파일을 찾을 수 없습니다.", - "loc.messages.PSLIB_Input0": "'{0}' 입력", - "loc.messages.PSLIB_InvalidPattern0": "잘못된 패턴: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf 경로를 찾을 수 없음: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "경로 정규화/확장에 실패했습니다. 다음에 대해 Kernel32 subsystem에서 경로 길이를 반환하지 않음: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "경로를 찾을 수 없음: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "'{1}' 코드로 '{0}' 프로세스가 종료되었습니다.", - "loc.messages.PSLIB_Required0": "필수: {0}", - "loc.messages.PSLIB_StringFormatFailed": "문자열을 포맷하지 못했습니다.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "문자열 리소스 키를 찾을 수 없음: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' 작업 변수" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson index b9c5a2709..ded9fc6b2 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Требуется версия агента {0} или более поздняя.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Путь к контейнеру не найден: \"{0}\".", - "loc.messages.PSLIB_EndpointAuth0": "Учетные данные конечной точки службы \"{0}\"", - "loc.messages.PSLIB_EndpointUrl0": "URL-адрес конечной точки службы \"{0}\"", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Сбой перечисления подкаталогов для пути: \"{0}\".", - "loc.messages.PSLIB_FileNotFound0": "Файл не найден: \"{0}\".", - "loc.messages.PSLIB_Input0": "Входные данные \"{0}\".", - "loc.messages.PSLIB_InvalidPattern0": "Недопустимый шаблон: \"{0}\".", - "loc.messages.PSLIB_LeafPathNotFound0": "Путь к конечному объекту не найден: \"{0}\".", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Сбой нормализации и расширения пути. Длина пути не была возвращена подсистемой Kernel32 для: \"{0}\".", - "loc.messages.PSLIB_PathNotFound0": "Путь не найден: \"{0}\".", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Процесс \"{0}\" завершил работу с кодом \"{1}\".", - "loc.messages.PSLIB_Required0": "Требуется: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Сбой формата строки.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Ключ ресурса строки не найден: \"{0}\".", - "loc.messages.PSLIB_TaskVariable0": "Переменная задачи \"{0}\"" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson index 49d824b50..ded9fc6b2 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "需要代理版本 {0} 或更高版本。", - "loc.messages.PSLIB_ContainerPathNotFound0": "找不到容器路径:“{0}”", - "loc.messages.PSLIB_EndpointAuth0": "“{0}”服务终结点凭据", - "loc.messages.PSLIB_EndpointUrl0": "“{0}”服务终结点 URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "枚举路径的子目录失败:“{0}”", - "loc.messages.PSLIB_FileNotFound0": "找不到文件: {0}。", - "loc.messages.PSLIB_Input0": "“{0}”输入", - "loc.messages.PSLIB_InvalidPattern0": "无效的模式:“{0}”", - "loc.messages.PSLIB_LeafPathNotFound0": "找不到叶路径:“{0}”", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "路径规范化/扩展失败。路径长度不是由“{0}”的 Kernel32 子系统返回的", - "loc.messages.PSLIB_PathNotFound0": "找不到路径:“{0}”", - "loc.messages.PSLIB_Process0ExitedWithCode1": "过程“{0}”已退出,代码为“{1}”。", - "loc.messages.PSLIB_Required0": "必需: {0}", - "loc.messages.PSLIB_StringFormatFailed": "字符串格式无效。", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "找不到字符串资源关键字:“{0}”", - "loc.messages.PSLIB_TaskVariable0": "“{0}”任务变量" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson index 7cbf22e17..ded9fc6b2 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "需要代理程式版本 {0} 或更新的版本。", - "loc.messages.PSLIB_ContainerPathNotFound0": "找不到容器路徑: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' 服務端點認證", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' 服務端點 URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "為路徑列舉子目錄失敗: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "找不到檔案: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' 輸入", - "loc.messages.PSLIB_InvalidPattern0": "模式無效: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "找不到分葉路徑: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "路徑正規化/展開失敗。Kernel32 子系統未傳回 '{0}' 的路徑長度", - "loc.messages.PSLIB_PathNotFound0": "找不到路徑: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "處理序 '{0}' 以返回碼 '{1}' 結束。", - "loc.messages.PSLIB_Required0": "必要項: {0}", - "loc.messages.PSLIB_StringFormatFailed": "字串格式失敗。", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "找不到字串資源索引鍵: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' 工作變數" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file From ba370205967aa87348779d5d105db342d9b1736f Mon Sep 17 00:00:00 2001 From: csigs Date: Tue, 6 Apr 2021 03:52:44 -0700 Subject: [PATCH 14/31] LEGO: check in for Localization to temporary branch. (#740) --- .../resources.resjson/en-US/resources.resjson.lcl | 9 +++++++++ .../resources.resjson/en-US/resources.resjson.lcl | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl index e97e59af8..f2bfc6799 100644 --- a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -9,6 +9,15 @@ + + + + + + + + + diff --git a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 57a05ab95..c1a53e6a0 100644 --- a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -9,6 +9,15 @@ + + + + + + + + + From 693c4bd80da4c004eb4d1146862207197ff7a5c8 Mon Sep 17 00:00:00 2001 From: csigs Date: Tue, 6 Apr 2021 03:52:58 -0700 Subject: [PATCH 15/31] LEGO: check in for Localization to temporary branch. (#741) --- .../en-US/resources.resjson.lcl | 9 ++ .../en-US/resources.resjson.lcl | 107 +++++++++++++++++- .../en-US/resources.resjson.lcl | 9 ++ 3 files changed, 124 insertions(+), 1 deletion(-) diff --git a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 0edf1d63e..1539b8cbb 100644 --- a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -9,6 +9,15 @@ + + + + + + + + + diff --git a/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 706630a11..013f710ab 100644 --- a/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -9,195 +9,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 2b461199b..ee67a055c 100644 --- a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -9,6 +9,15 @@ + + + + + + + + + From 698d02c43904113654c612a8488fec95f36ab6da Mon Sep 17 00:00:00 2001 From: csigs Date: Tue, 6 Apr 2021 03:53:04 -0700 Subject: [PATCH 16/31] LEGO: check in for Localization to temporary branch. (#742) From 5dd9cba30f5ddc31a2f3a90b6642614195c9cf4d Mon Sep 17 00:00:00 2001 From: csigs Date: Tue, 6 Apr 2021 03:53:14 -0700 Subject: [PATCH 17/31] LEGO: check in for Localization to temporary branch. (#743) From c6c8616e174df9b4b2e12eb159208b4232e7b5f1 Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 12 Apr 2021 18:39:31 +0300 Subject: [PATCH 18/31] Temporary renamed files - to resolve conflicts --- .../resources.resjson/de-DE/resources.resjson | 29 -------- .../{fr-fr => de-DE_}/resources.resjson | 68 +++++++++---------- .../resources.resjson/es-ES/resources.resjson | 29 -------- .../{de-de => es-ES_}/resources.resjson | 68 +++++++++---------- .../resources.resjson/fr-FR/resources.resjson | 29 -------- .../{ja-jp => fr-FR_}/resources.resjson | 68 +++++++++---------- .../resources.resjson/ja-JP/resources.resjson | 29 -------- .../{es-es => ja-JP_}/resources.resjson | 68 +++++++++---------- .../resources.resjson/de-DE/resources.resjson | 18 ----- .../{ja-jp => de-DE_}/resources.resjson | 34 +++++----- .../resources.resjson/es-ES/resources.resjson | 18 ----- .../{de-de => es-ES_}/resources.resjson | 34 +++++----- .../resources.resjson/fr-FR/resources.resjson | 18 ----- .../{fr-fr => fr-FR_}/resources.resjson | 34 +++++----- .../resources.resjson/ja-JP/resources.resjson | 18 ----- .../{es-es => ja-JP_}/resources.resjson | 34 +++++----- 16 files changed, 204 insertions(+), 392 deletions(-) delete mode 100644 node/Strings/resources.resjson/de-DE/resources.resjson rename node/Strings/resources.resjson/{fr-fr => de-DE_}/resources.resjson (99%) delete mode 100644 node/Strings/resources.resjson/es-ES/resources.resjson rename node/Strings/resources.resjson/{de-de => es-ES_}/resources.resjson (99%) delete mode 100644 node/Strings/resources.resjson/fr-FR/resources.resjson rename node/Strings/resources.resjson/{ja-jp => fr-FR_}/resources.resjson (99%) delete mode 100644 node/Strings/resources.resjson/ja-JP/resources.resjson rename node/Strings/resources.resjson/{es-es => ja-JP_}/resources.resjson (99%) delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson rename powershell/VstsTaskSdk/Strings/resources.resjson/{ja-jp => de-DE_}/resources.resjson (98%) delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson rename powershell/VstsTaskSdk/Strings/resources.resjson/{de-de => es-ES_}/resources.resjson (98%) delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson rename powershell/VstsTaskSdk/Strings/resources.resjson/{fr-fr => fr-FR_}/resources.resjson (98%) delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson rename powershell/VstsTaskSdk/Strings/resources.resjson/{es-es => ja-JP_}/resources.resjson (98%) diff --git a/node/Strings/resources.resjson/de-DE/resources.resjson b/node/Strings/resources.resjson/de-DE/resources.resjson deleted file mode 100644 index 75a1a0379..000000000 --- a/node/Strings/resources.resjson/de-DE/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Ausnahmefehler: %s", - "loc.messages.LIB_FailOnCode": "Fehler beim Rückgabecode: %d", - "loc.messages.LIB_MkdirFailed": "Das Verzeichnis \"%s\" kann nicht erstellt werden. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Eine in Konflikt stehende Datei ist vorhanden: \"%s\"", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Das Stammverzeichnis ist nicht vorhanden: %s", - "loc.messages.LIB_MkdirFailedInvalidShare": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Es kann nicht überprüft werden, ob das Verzeichnis vorhanden ist: {%s}. Wenn das Verzeichnis eine Dateifreigabe ist, stellen Sie sicher, dass der Freigabename richtig, die Freigabe online und der aktuelle Prozess berechtigt ist, auf die Freigabe zuzugreifen.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Rückgabecode: %d", - "loc.messages.LIB_ResourceFileNotExist": "Die Ressourcendatei ist nicht vorhanden: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Die Ressourcendatei wurde bereits festgelegt auf: %s", - "loc.messages.LIB_ResourceFileNotSet": "Die Ressourcendatei wurde nicht festgelegt. Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", - "loc.messages.LIB_WhichNotFound_Linux": "Ausführbare Datei nicht gefunden: '%s'. Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem den Dateimodus, um sicherzustellen, dass die Datei ausführbar ist.", - "loc.messages.LIB_WhichNotFound_Win": "Ausführbare Datei nicht gefunden: \"%s\". Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem, ob die Datei eine gültige Erweiterung für eine ausführbare Datei aufweist.", - "loc.messages.LIB_LocStringNotFound": "Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", - "loc.messages.LIB_ParameterIsRequired": "\"%s\" wurde nicht angegeben.", - "loc.messages.LIB_InputRequired": "Eingabe erforderlich: %s", - "loc.messages.LIB_InvalidPattern": "Ungültiges Muster: \"%s\"", - "loc.messages.LIB_EndpointNotExist": "Der Endpunkt ist nicht vorhanden: %s", - "loc.messages.LIB_EndpointDataNotExist": "Der Endpunkt-Datenparameter %s ist nicht vorhanden: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Die Endpunkt-Authentifizierungsdatensind nicht vorhanden: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Ungültige Endpunktauthentifizierung: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Ungültige sichere Dateiausgabe: %s", - "loc.messages.LIB_PathNotFound": "Nicht gefunden %s: %s", - "loc.messages.LIB_PathHasNullByte": "Der Pfad darf keine NULL-Bytes enthalten.", - "loc.messages.LIB_OperationFailed": "Fehler %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Mehrere Arbeitsbereichübereinstimmungen. Die erste Übereinstimmung wird verwendet.", - "loc.messages.LIB_MergeTestResultNotSupported": "Das Mergen von Testergebnissen aus mehreren Dateien in einen Testlauf wird von dieser Version des Build-Agents für OSX/Linux nicht unterstützt. Jede Testergebnisdatei wird als separater Testlauf in VSO/TFS veröffentlicht." -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/de-DE_/resources.resjson similarity index 99% rename from node/Strings/resources.resjson/fr-fr/resources.resjson rename to node/Strings/resources.resjson/de-DE_/resources.resjson index 8a76dd509..5abc0b4e7 100644 --- a/node/Strings/resources.resjson/fr-fr/resources.resjson +++ b/node/Strings/resources.resjson/de-DE_/resources.resjson @@ -1,35 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-ES/resources.resjson b/node/Strings/resources.resjson/es-ES/resources.resjson deleted file mode 100644 index 6ae378812..000000000 --- a/node/Strings/resources.resjson/es-ES/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "No controlada: %s", - "loc.messages.LIB_FailOnCode": "Código de retorno de error: %d", - "loc.messages.LIB_MkdirFailed": "No se puede crear el directorio '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "No se puede crear el directorio '%s'. Hay un conflicto entre archivos: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "No se puede crear el directorio '%s'. El directorio raíz no existe: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "No se puede crear el directorio '%s'. No se puede comprobar si el directorio existe: '%s'. Si el directorio es un recurso compartido de archivos, compruebe que el nombre es correcto, que está en línea y que el proceso actual tiene permiso de acceso a este.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Código de retorno: %d", - "loc.messages.LIB_ResourceFileNotExist": "El archivo de recursos no existe: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "El archivo de recursos se ha establecido ya en: %s", - "loc.messages.LIB_ResourceFileNotSet": "No se ha establecido el archivo de recursos. No se encuentra la cadena localizada para la clave: %s", - "loc.messages.LIB_WhichNotFound_Linux": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también el modo de archivo para comprobar que el archivo es ejecutable.", - "loc.messages.LIB_WhichNotFound_Win": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también que el archivo tenga una extensión válida para un archivo ejecutable.", - "loc.messages.LIB_LocStringNotFound": "No se encuentra la cadena localizada para la clave: %s", - "loc.messages.LIB_ParameterIsRequired": "No se ha proporcionado %s", - "loc.messages.LIB_InputRequired": "Entrada requerida: %s", - "loc.messages.LIB_InvalidPattern": "Patrón no válido: '%s'", - "loc.messages.LIB_EndpointNotExist": "No hay punto de conexión: %s", - "loc.messages.LIB_EndpointDataNotExist": "El parámetro %s de datos del punto de conexión no existe: %s.", - "loc.messages.LIB_EndpointAuthNotExist": "Los datos de autenticación del punto de conexión no existen: %s.", - "loc.messages.LIB_InvalidEndpointAuth": "Autenticación de punto de conexión no válida: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Entrada de archivo seguro no válida: %s", - "loc.messages.LIB_PathNotFound": "No se encuentra %s: %s", - "loc.messages.LIB_PathHasNullByte": "La ruta de acceso no puede tener bytes nulos", - "loc.messages.LIB_OperationFailed": "Error de %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Hay varias coincidencias en el área de trabajo. Se usará la primera.", - "loc.messages.LIB_MergeTestResultNotSupported": "Esta versión del agente de compilación para OSX/Linux no admite la fusión mediante combinación de resultados de pruebas de varios archivos en una serie de pruebas. Cada archivo de resultados de pruebas se publicará como una serie de pruebas diferente en VSO/TFS." -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/es-ES_/resources.resjson similarity index 99% rename from node/Strings/resources.resjson/de-de/resources.resjson rename to node/Strings/resources.resjson/es-ES_/resources.resjson index 8a76dd509..5abc0b4e7 100644 --- a/node/Strings/resources.resjson/de-de/resources.resjson +++ b/node/Strings/resources.resjson/es-ES_/resources.resjson @@ -1,35 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-FR/resources.resjson b/node/Strings/resources.resjson/fr-FR/resources.resjson deleted file mode 100644 index 334162833..000000000 --- a/node/Strings/resources.resjson/fr-FR/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Non géré : %s", - "loc.messages.LIB_FailOnCode": "Code de retour de l'échec : %d", - "loc.messages.LIB_MkdirFailed": "Impossible de créer le répertoire '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Impossible de créer le répertoire '%s'. Présence d'un fichier en conflit : '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Impossible de créer le répertoire '%s'. Le répertoire racine n'existe pas : '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Impossible de créer le répertoire '%s'. Impossible de vérifier l'existence du répertoire : '%s'. Si le répertoire est un partage de fichiers, vérifiez que le nom du partage est correct, que le partage est en ligne, et que le processus actuel est autorisé à accéder au partage.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "Code de retour : %d", - "loc.messages.LIB_ResourceFileNotExist": "Le fichier de ressources n'existe pas : %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Le fichier de ressources est déjà défini : %s", - "loc.messages.LIB_ResourceFileNotSet": "Le fichier de ressources n'est pas défini. La chaîne localisée de la clé est introuvable : %s", - "loc.messages.LIB_WhichNotFound_Linux": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également le Mode de Fichier pour déterminer si le fichier est exécutable.", - "loc.messages.LIB_WhichNotFound_Win": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également si le fichier a une extension de fichier exécutable valide.", - "loc.messages.LIB_LocStringNotFound": "Chaîne localisée introuvable pour la clé : %s", - "loc.messages.LIB_ParameterIsRequired": "%s non fourni", - "loc.messages.LIB_InputRequired": "Entrée nécessaire : %s", - "loc.messages.LIB_InvalidPattern": "Modèle non valide : '%s'", - "loc.messages.LIB_EndpointNotExist": "Point de terminaison absent : %s", - "loc.messages.LIB_EndpointDataNotExist": "Paramètre de données du point de terminaison %s absent : %s", - "loc.messages.LIB_EndpointAuthNotExist": "Données d'authentification du point de terminaison absentes : %s", - "loc.messages.LIB_InvalidEndpointAuth": "Authentification du point de terminaison non valide : %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Entrée de fichier sécurisé non valide : %s", - "loc.messages.LIB_PathNotFound": "%s : %s introuvable", - "loc.messages.LIB_PathHasNullByte": "Le chemin ne peut pas contenir d'octets de valeur Null", - "loc.messages.LIB_OperationFailed": "Échec de %s : %s", - "loc.messages.LIB_UseFirstGlobMatch": "Plusieurs espaces de travail correspondants. Utilisation du premier d'entre eux.", - "loc.messages.LIB_MergeTestResultNotSupported": "La fusion des résultats des tests de plusieurs fichiers en une seule série de tests n'est pas prise en charge dans cette version de l'agent de build pour OSX/Linux. Chaque fichier de résultats des tests est publié en tant que série de tests distincte dans VSO/TFS." -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/fr-FR_/resources.resjson similarity index 99% rename from node/Strings/resources.resjson/ja-jp/resources.resjson rename to node/Strings/resources.resjson/fr-FR_/resources.resjson index 8a76dd509..5abc0b4e7 100644 --- a/node/Strings/resources.resjson/ja-jp/resources.resjson +++ b/node/Strings/resources.resjson/fr-FR_/resources.resjson @@ -1,35 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-JP/resources.resjson b/node/Strings/resources.resjson/ja-JP/resources.resjson deleted file mode 100644 index 18bbd0d29..000000000 --- a/node/Strings/resources.resjson/ja-JP/resources.resjson +++ /dev/null @@ -1,29 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "未処理: %s", - "loc.messages.LIB_FailOnCode": "失敗のリターン コード: %d", - "loc.messages.LIB_MkdirFailed": "ディレクトリ '%s' を作成できません。%s", - "loc.messages.LIB_MkdirFailedFileExists": "ディレクトリ '%s' を作成できません。競合するファイルが存在します: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "ディレクトリ '%s' を作成できません。ルート ディレクトリが存在しません: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "ディレクトリ '%s' を作成できません。ディレクトリが存在することを確認できません: '%s'。ディレクトリがファイル共有である場合、その共有名が正しいこと、その共有がオンラインであること、そして現在のプロセスにその共有へのアクセス許可があることをご確認ください。", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ReturnCode": "リターン コード: %d", - "loc.messages.LIB_ResourceFileNotExist": "リソース ファイルが存在しません: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "リソース ファイルは既に %s に設定されています", - "loc.messages.LIB_ResourceFileNotSet": "リソース ファイルが設定されておらず、キーの loc 文字列が見つかりません: %s", - "loc.messages.LIB_WhichNotFound_Linux": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。ファイルが実行可能かどうかについてファイル モードもご確認ください。", - "loc.messages.LIB_WhichNotFound_Win": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。そのファイルに実行可能ファイルの有効な拡張子がついていることもご確認ください。", - "loc.messages.LIB_LocStringNotFound": "キーの loc 文字列が見つかりません: %s", - "loc.messages.LIB_ParameterIsRequired": "%s が提供されていません", - "loc.messages.LIB_InputRequired": "入力が必要です: %s", - "loc.messages.LIB_InvalidPattern": "無効なパターン: '%s'", - "loc.messages.LIB_EndpointNotExist": "エンドポイントが存在しません: %s", - "loc.messages.LIB_EndpointDataNotExist": "エンドポイントのデータ パラメーター %s がありません: %s", - "loc.messages.LIB_EndpointAuthNotExist": "エンドポイントの認証データがありません: %s", - "loc.messages.LIB_InvalidEndpointAuth": "エンドポイントの認証が無効です: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "無効なセキュア ファイル入力: %s", - "loc.messages.LIB_PathNotFound": "見つかりませんでした %s: %s", - "loc.messages.LIB_PathHasNullByte": "パスに null バイトを含めることはできません", - "loc.messages.LIB_OperationFailed": "失敗しました %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "複数のワークスペースが一致します。最初のワークスペースが使用されます。", - "loc.messages.LIB_MergeTestResultNotSupported": "複数のファイルからのテスト結果を 1 つのテスト実行にマージする処理は、OSX/Linux 用のビルド エージェントのこのバージョンではサポートされていません。各テスト結果ファイルが VSO/TFS で別個のテスト実行として発行されます。" -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/ja-JP_/resources.resjson similarity index 99% rename from node/Strings/resources.resjson/es-es/resources.resjson rename to node/Strings/resources.resjson/ja-JP_/resources.resjson index 8a76dd509..5abc0b4e7 100644 --- a/node/Strings/resources.resjson/es-es/resources.resjson +++ b/node/Strings/resources.resjson/ja-JP_/resources.resjson @@ -1,35 +1,35 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson deleted file mode 100644 index 248b674d6..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agentversion {0} oder höher ist erforderlich.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Der Containerpfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_EndpointAuth0": "\"{0}\"-Dienstendpunkt-Anmeldeinformationen", - "loc.messages.PSLIB_EndpointUrl0": "\"{0}\"-Dienstendpunkt-URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Fehler beim Aufzählen von Unterverzeichnissen für den folgenden Pfad: \"{0}\"", - "loc.messages.PSLIB_FileNotFound0": "Die Datei wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_Input0": "\"{0}\"-Eingabe", - "loc.messages.PSLIB_InvalidPattern0": "Ungültiges Muster: \"{0}\"", - "loc.messages.PSLIB_LeafPathNotFound0": "Der Blattpfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Fehler bei der Normalisierung bzw. Erweiterung des Pfads. Die Pfadlänge wurde vom Kernel32-Subsystem nicht zurückgegeben für: \"{0}\"", - "loc.messages.PSLIB_PathNotFound0": "Der Pfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Der Prozess \"{0}\" wurde mit dem Code \"{1}\" beendet.", - "loc.messages.PSLIB_Required0": "Erforderlich: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Fehler beim Zeichenfolgenformat.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Der Zeichenfolgen-Ressourcenschlüssel wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_TaskVariable0": "\"{0}\"-Taskvariable" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE_/resources.resjson similarity index 98% rename from powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/de-DE_/resources.resjson index ded9fc6b2..66c17bc8d 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE_/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson deleted file mode 100644 index b79ac21aa..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Se require la versión {0} o posterior del agente.", - "loc.messages.PSLIB_ContainerPathNotFound0": "No se encuentra la ruta de acceso del contenedor: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Credenciales del punto de conexión de servicio '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL del punto de conexión de servicio '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "No se pudieron enumerar los subdirectorios de la ruta de acceso: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "Archivo no encontrado: '{0}'", - "loc.messages.PSLIB_Input0": "Entrada '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Patrón no válido: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "No se encuentra la ruta de acceso de la hoja: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "No se pudo normalizar o expandir la ruta de acceso. El subsistema Kernel32 no devolvió la longitud de la ruta de acceso para: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "No se encuentra la ruta de acceso: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "El proceso '{0}' finalizó con el código '{1}'.", - "loc.messages.PSLIB_Required0": "Se requiere: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Error de formato de cadena.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "No se encuentra la clave de recurso de la cadena: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variable de tarea '{0}'" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES_/resources.resjson similarity index 98% rename from powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/es-ES_/resources.resjson index ded9fc6b2..66c17bc8d 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES_/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson deleted file mode 100644 index dc2da0521..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "L'agent version {0} (ou une version ultérieure) est obligatoire.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Le chemin du conteneur est introuvable : '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Informations d'identification du point de terminaison de service '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL du point de terminaison de service '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Échec de l'énumération des sous-répertoires pour le chemin : '{0}'", - "loc.messages.PSLIB_FileNotFound0": "Fichier introuvable : {0}.", - "loc.messages.PSLIB_Input0": "Entrée '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Modèle non valide : '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Le chemin feuille est introuvable : '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Échec de la normalisation/l'expansion du chemin. La longueur du chemin n'a pas été retournée par le sous-système Kernel32 pour : '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Chemin introuvable : '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Le processus '{0}' s'est arrêté avec le code '{1}'.", - "loc.messages.PSLIB_Required0": "Obligatoire : {0}", - "loc.messages.PSLIB_StringFormatFailed": "Échec du format de la chaîne.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Clé de la ressource de type chaîne introuvable : '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variable de tâche '{0}'" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR_/resources.resjson similarity index 98% rename from powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR_/resources.resjson index ded9fc6b2..66c17bc8d 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR_/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson deleted file mode 100644 index 9f2f9feae..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "バージョン {0} 以降のエージェントが必要です。", - "loc.messages.PSLIB_ContainerPathNotFound0": "コンテナーのパスが見つかりません: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' サービス エンドポイントの資格情報", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' サービス エンドポイントの URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "パス '{0}' のサブディレクトリを列挙できませんでした", - "loc.messages.PSLIB_FileNotFound0": "ファイルが見つかりません: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' 入力", - "loc.messages.PSLIB_InvalidPattern0": "使用できないパターンです: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "リーフ パスが見つかりません: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "パスの正規化/展開に失敗しました。Kernel32 サブシステムからパス '{0}' の長さが返されませんでした", - "loc.messages.PSLIB_PathNotFound0": "パスが見つかりません: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "プロセス '{0}' がコード '{1}' で終了しました。", - "loc.messages.PSLIB_Required0": "必要: {0}", - "loc.messages.PSLIB_StringFormatFailed": "文字列のフォーマットに失敗しました。", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "文字列のリソース キーが見つかりません: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' タスク変数" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP_/resources.resjson similarity index 98% rename from powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP_/resources.resjson index ded9fc6b2..66c17bc8d 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP_/resources.resjson @@ -1,18 +1,18 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" } \ No newline at end of file From c535280e4fb77c696528c990716cf671e2feb90e Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 12 Apr 2021 18:42:29 +0300 Subject: [PATCH 19/31] Temporary renamed --- .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename Localize/loc/{de-DE => de-DE_}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{de-DE => de-DE_}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{es-ES => es-ES_}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{es-ES => es-ES_}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{fr-FR => fr-FR_}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{fr-FR => fr-FR_}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{ja-JP => ja-JP_}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{ja-JP => ja-JP_}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) diff --git a/Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl From b65c296841a6162c5905ad0cf4138003de37674d Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Mon, 12 Apr 2021 18:47:22 +0300 Subject: [PATCH 20/31] LEGO: check in for Localization to temporary branch. (#745) Co-authored-by: csigs --- .../en-US/resources.resjson.lcl | 83 ++++++++++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 83 ++++++++++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 83 ++++++++++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 83 ++++++++++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- .../en-US/resources.resjson.lcl | 50 ++++++++++- 13 files changed, 769 insertions(+), 13 deletions(-) diff --git a/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 76d0fcfb6..61324808b 100644 --- a/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,114 +12,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -150,24 +207,36 @@ + + + + + + + + + + + + @@ -180,24 +249,36 @@ + + + + + + + + + + + + diff --git a/Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index df7ff618c..b57e0d97a 100644 --- a/Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index cde040b72..3ff76db84 100644 --- a/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,114 +12,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -150,24 +207,36 @@ + + + + + + + + + + + + @@ -180,24 +249,36 @@ + + + + + + + + + + + + diff --git a/Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index 6b2020db8..64342b797 100644 --- a/Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 9dcb1934e..8f5882e81 100644 --- a/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,114 +12,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -150,24 +207,36 @@ + + + + + + + + + + + + @@ -180,24 +249,36 @@ + + + + + + + + + + + + diff --git a/Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index d3dfd34cb..d2d35faaf 100644 --- a/Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index 1ee6f4d34..702fb82ec 100644 --- a/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index be787a2c3..8b38d3e72 100644 --- a/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,114 +12,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -150,24 +207,36 @@ + + + + + + + + + + + + @@ -180,24 +249,36 @@ + + + + + + + + + + + + diff --git a/Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index 5e18a63dc..6d2ea0682 100644 --- a/Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index 878881d10..8a873ac1f 100644 --- a/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index 5959fee32..deaa2df36 100644 --- a/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index a882dddbf..d781281de 100644 --- a/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl index 70c5f303d..38a7b4970 100644 --- a/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -1,5 +1,5 @@  - + @@ -12,96 +12,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 6045e7dbec69d8ad3a5ee6427092a72e8e34e9e4 Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Mon, 12 Apr 2021 18:51:20 +0300 Subject: [PATCH 21/31] LEGO: check in for Localization to temporary branch. (#746) Co-authored-by: csigs --- .../resources.resjson/en-US/resources.resjson.lcl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 8b38d3e72..707643669 100644 --- a/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -183,24 +183,36 @@ + + + + + + + + + + + + @@ -243,6 +255,9 @@ + + + From eb0b5786d9fc1206594fc7066531eb5c15e05d37 Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Mon, 12 Apr 2021 18:53:36 +0300 Subject: [PATCH 22/31] LEGO: check in for Localization to temporary branch. (#747) Co-authored-by: csigs --- .../resources.resjson/en-US/resources.resjson.lcl | 15 +++++++++++++++ .../resources.resjson/en-US/resources.resjson.lcl | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 61324808b..6527d0ec1 100644 --- a/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -183,24 +183,36 @@ + + + + + + + + + + + + @@ -243,6 +255,9 @@ + + + diff --git a/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 3ff76db84..94a3c9316 100644 --- a/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -183,24 +183,36 @@ + + + + + + + + + + + + @@ -243,6 +255,9 @@ + + + From a0f6a9dee0bd5306c84a54bd2ba66a06a7af16cd Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Mon, 12 Apr 2021 18:55:19 +0300 Subject: [PATCH 23/31] LEGO: check in for Localization to temporary branch. (#748) Co-authored-by: csigs --- .../resources.resjson/en-US/resources.resjson.lcl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl index 8f5882e81..73b4a37e7 100644 --- a/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ b/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl @@ -183,24 +183,36 @@ + + + + + + + + + + + + @@ -243,6 +255,9 @@ + + + From d1a60df8e9aacb18b52cb09539ada3690cf79151 Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Mon, 12 Apr 2021 18:58:41 +0300 Subject: [PATCH 24/31] Localized file check-in by OneLocBuild Task: Build definition ID 10947: Build ID 14905562 Localized file check-in by OneLocBuild Task --- .../resources.resjson/de-de/resources.resjson | 35 ++++++++++ .../resources.resjson/es-es/resources.resjson | 35 ++++++++++ .../resources.resjson/fr-fr/resources.resjson | 35 ++++++++++ .../resources.resjson/it-IT/resources.resjson | 2 +- .../resources.resjson/ja-jp/resources.resjson | 35 ++++++++++ .../resources.resjson/ko-KR/resources.resjson | 2 +- .../resources.resjson/ru-RU/resources.resjson | 66 +++++++++---------- .../resources.resjson/zh-CN/resources.resjson | 2 +- .../resources.resjson/zh-TW/resources.resjson | 2 +- .../resources.resjson/de-de/resources.resjson | 18 +++++ .../resources.resjson/es-es/resources.resjson | 18 +++++ .../resources.resjson/fr-fr/resources.resjson | 18 +++++ .../resources.resjson/it-IT/resources.resjson | 32 ++++----- .../resources.resjson/ja-jp/resources.resjson | 18 +++++ .../resources.resjson/ko-KR/resources.resjson | 32 ++++----- .../resources.resjson/ru-RU/resources.resjson | 32 ++++----- .../resources.resjson/zh-CN/resources.resjson | 32 ++++----- .../resources.resjson/zh-TW/resources.resjson | 32 ++++----- 18 files changed, 329 insertions(+), 117 deletions(-) create mode 100644 node/Strings/resources.resjson/de-de/resources.resjson create mode 100644 node/Strings/resources.resjson/es-es/resources.resjson create mode 100644 node/Strings/resources.resjson/fr-fr/resources.resjson create mode 100644 node/Strings/resources.resjson/ja-jp/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/de-de/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/de-de/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/es-es/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/es-es/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/fr-fr/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/fr-fr/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/it-IT/resources.resjson b/node/Strings/resources.resjson/it-IT/resources.resjson index 91a012e3b..a24444fe1 100644 --- a/node/Strings/resources.resjson/it-IT/resources.resjson +++ b/node/Strings/resources.resjson/it-IT/resources.resjson @@ -31,5 +31,5 @@ "loc.messages.LIB_UseFirstGlobMatch": "Sono presenti più corrispondenze dell'area di lavoro. Verrà usata la prima.", "loc.messages.LIB_MergeTestResultNotSupported": "L'unione di più file risultanti da un'unica esecuzione dei test non è supportata in questa versione dell'agente di compilazione per OS X/Linux. Ogni file dei risultati del test verrà pubblicato come esecuzione dei test separata in VSO/TFS.", "loc.messages.LIB_PlatformNotSupported": "Piattaforma non supportata: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" + "loc.messages.LIB_CopyFileFailed": "Si è verificato un errore durante la copia del file. Tentativi rimasti: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/ja-jp/resources.resjson new file mode 100644 index 000000000..8a76dd509 --- /dev/null +++ b/node/Strings/resources.resjson/ja-jp/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Unhandled: %s", + "loc.messages.LIB_FailOnCode": "Failure return code: %d", + "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", + "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", + "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", + "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", + "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", + "loc.messages.LIB_ReturnCode": "Return code: %d", + "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", + "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", + "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", + "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", + "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", + "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", + "loc.messages.LIB_ParameterIsRequired": "%s not supplied", + "loc.messages.LIB_InputRequired": "Input required: %s", + "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", + "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", + "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", + "loc.messages.LIB_PathNotFound": "Not found %s: %s", + "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", + "loc.messages.LIB_OperationFailed": "Failed %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", + "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ko-KR/resources.resjson b/node/Strings/resources.resjson/ko-KR/resources.resjson index f60dfb9c0..a5010b122 100644 --- a/node/Strings/resources.resjson/ko-KR/resources.resjson +++ b/node/Strings/resources.resjson/ko-KR/resources.resjson @@ -31,5 +31,5 @@ "loc.messages.LIB_UseFirstGlobMatch": "여러 작업 영역이 일치합니다. 첫 번째 작업 영역을 사용하세요.", "loc.messages.LIB_MergeTestResultNotSupported": "이 OSX/Linux용 빌드 에이전트 버전에서 여러 파일의 테스트 결과를 하나의 테스트 실행으로 병합하는 것을 지원하지 않습니다. 각 테스트 결과 파일은 VSO/TFS에서 별도의 테스트 실행으로 게시됩니다.", "loc.messages.LIB_PlatformNotSupported": "지원되지 않는 플랫폼: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" + "loc.messages.LIB_CopyFileFailed": "파일을 복사하는 동안 오류가 발생했습니다. 남은 시도 횟수: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/ru-RU/resources.resjson b/node/Strings/resources.resjson/ru-RU/resources.resjson index 8a76dd509..d2d2ceb90 100644 --- a/node/Strings/resources.resjson/ru-RU/resources.resjson +++ b/node/Strings/resources.resjson/ru-RU/resources.resjson @@ -1,35 +1,35 @@ { - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" + "loc.messages.LIB_UnhandledEx": "Не обработано: %s", + "loc.messages.LIB_FailOnCode": "Код возврата при сбое: %d.", + "loc.messages.LIB_MkdirFailed": "Не удается создать каталог \"%s\". %s", + "loc.messages.LIB_MkdirFailedFileExists": "Не удается создать каталог \"%s\". Существует конфликтующий файл: \"%s\"", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Не удалось создать каталог \"%s\". Корневой каталог не существует: \"%s\"", + "loc.messages.LIB_MkdirFailedInvalidShare": "Не удалось создать каталог \"%s\". Не удалось проверить, существует ли каталог \"%s\". Если каталог является файловым ресурсом, убедитесь, что имя ресурса указано правильно, он работает и текущий процесс имеет разрешение на доступ к нему.", + "loc.messages.LIB_MultilineSecret": "Секрет не может быть многострочным", + "loc.messages.LIB_ProcessError": "Произошла ошибка при попытке выполнить процесс \"%s\". Это может означать, что процесс не удалось запустить. Ошибка: %s", + "loc.messages.LIB_ProcessExitCode": "Произошел сбой процесса \"%s\" с кодом выхода %s.", + "loc.messages.LIB_ProcessStderr": "Произошел сбой процесса \"%s\", так как одна или несколько строк были записаны в поток STDERR.", + "loc.messages.LIB_ReturnCode": "Код возврата: %d", + "loc.messages.LIB_ResourceFileNotExist": "Файл ресурсов не существует: %s.", + "loc.messages.LIB_ResourceFileAlreadySet": "Файл ресурсов уже задан: %s.", + "loc.messages.LIB_ResourceFileNotSet": "Файл ресурсов не задан, не удается найти локализованную строку для ключа: %s.", + "loc.messages.LIB_StdioNotClosed": "Потоки STDIO не были закрыты в течение %s с после получения события выхода от процесса \"%s\". Это может свидетельствовать о том, что дочерний процесс унаследовал потоки STDIO и еще не завершил работу.", + "loc.messages.LIB_WhichNotFound_Linux": "Не удалось найти исполняемый файл: \"%s\". Убедитесь, что путь к файлу существует и файл можно найти в каталоге, указанном переменной окружения PATH. Также проверьте режим файла, чтобы убедиться, что файл является исполняемым.", + "loc.messages.LIB_WhichNotFound_Win": "Не удалось найти исполняемый файл: \"%s\". Убедитесь, что путь к файлу существует и что файл можно найти в каталоге, указанном переменной окружения PATH. Также убедитесь, что у файла есть допустимое расширение для исполняемого файла.", + "loc.messages.LIB_LocStringNotFound": "Не удается найти локализованную строку для ключа: %s.", + "loc.messages.LIB_ParameterIsRequired": "Не указан %s.", + "loc.messages.LIB_InputRequired": "Требуется ввести данные: %s.", + "loc.messages.LIB_InvalidPattern": "Недопустимый шаблон: \"%s\"", + "loc.messages.LIB_EndpointNotExist": "Конечная точка отсутствует: %s.", + "loc.messages.LIB_EndpointDataNotExist": "Отсутствует параметр %s данных конечной точки: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Отсутствуют данные для проверки подлинности конечной точки: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Недопустимая проверка подлинности конечной точки: %s.", + "loc.messages.LIB_InvalidSecureFilesInput": "Недопустимые входные данные защитного файла: %s", + "loc.messages.LIB_PathNotFound": "Не найден %s: %s.", + "loc.messages.LIB_PathHasNullByte": "Путь не может содержать пустые байты.", + "loc.messages.LIB_OperationFailed": "Сбой %s: %s.", + "loc.messages.LIB_UseFirstGlobMatch": "Несколько рабочих областей совпадает, использована первая рабочая область.", + "loc.messages.LIB_MergeTestResultNotSupported": "Объединение результатов тестов из нескольких файлов в один тестовый запуск не поддерживается в этой версии агента сборки для OSX/Linux. Каждый файл результатов теста будет опубликован в качестве отдельного тестового запуска в VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Платформа не поддерживается: %s", + "loc.messages.LIB_CopyFileFailed": "Ошибка при копировании файла. Оставшееся число попыток: %s." } \ No newline at end of file diff --git a/node/Strings/resources.resjson/zh-CN/resources.resjson b/node/Strings/resources.resjson/zh-CN/resources.resjson index d2a9a84b2..b30eb1d81 100644 --- a/node/Strings/resources.resjson/zh-CN/resources.resjson +++ b/node/Strings/resources.resjson/zh-CN/resources.resjson @@ -31,5 +31,5 @@ "loc.messages.LIB_UseFirstGlobMatch": "出现多个工作区匹配时,使用第一个。", "loc.messages.LIB_MergeTestResultNotSupported": "此版本的 OSX/Linux 生成代理不支持来自某个测试运行的多文件合并测试结果,在 VSO/TFS 中,每个测试结果文件都将作为单独的测试运行进行发布。", "loc.messages.LIB_PlatformNotSupported": "平台不受支持: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" + "loc.messages.LIB_CopyFileFailed": "复制文件时出错。剩余尝试次数: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/zh-TW/resources.resjson b/node/Strings/resources.resjson/zh-TW/resources.resjson index 58b43ca9d..ecf4ee743 100644 --- a/node/Strings/resources.resjson/zh-TW/resources.resjson +++ b/node/Strings/resources.resjson/zh-TW/resources.resjson @@ -31,5 +31,5 @@ "loc.messages.LIB_UseFirstGlobMatch": "多個工作區相符。請先使用。", "loc.messages.LIB_MergeTestResultNotSupported": "OSX/Linux 的此版本組建代理程式不支援將多個檔案的測試結果合併至單一測試回合,每個測試結果檔案將作為個別測試回合在 VSO/TFS 中發行。", "loc.messages.LIB_PlatformNotSupported": "不支援的平台: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" + "loc.messages.LIB_CopyFileFailed": "複製檔案時發生錯誤。剩餘嘗試次數: %s" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson index ded9fc6b2..6aeb1dfe7 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/it-IT/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "È richiesta la versione dell'agente {0} o superiore.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Percorso del contenitore non trovato: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Credenziali dell'endpoint servizio '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL dell'endpoint servizio '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "L'enumerazione delle sottodirectory per il percorso '{0}' non è riuscita", + "loc.messages.PSLIB_FileNotFound0": "File non trovato: '{0}'", + "loc.messages.PSLIB_Input0": "Input di '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Criterio non valido: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Percorso foglia non trovato: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "La normalizzazione o l'espansione del percorso non è riuscita. Il sottosistema Kernel32 non ha restituito la lunghezza del percorso per '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Percorso non trovato: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Il processo '{0}' è stato terminato ed è stato restituito il codice '{1}'.", + "loc.messages.PSLIB_Required0": "Obbligatorio: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Errore nel formato della stringa.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "La chiave della risorsa stringa non è stata trovata: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variabile dell'attività '{0}'" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson new file mode 100644 index 000000000..ded9fc6b2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' input", + "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", + "loc.messages.PSLIB_Required0": "Required: {0}", + "loc.messages.PSLIB_StringFormatFailed": "String format failed.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson index ded9fc6b2..58fa35393 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ko-KR/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "에이전트 버전 {0} 이상이 필요합니다.", + "loc.messages.PSLIB_ContainerPathNotFound0": "컨테이너 경로를 찾을 수 없음: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' 서비스 엔드포인트 자격 증명", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' 서비스 엔드포인트 URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "경로에 대해 하위 디렉터리를 열거하지 못함: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "{0} 파일을 찾을 수 없습니다.", + "loc.messages.PSLIB_Input0": "'{0}' 입력", + "loc.messages.PSLIB_InvalidPattern0": "잘못된 패턴: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Leaf 경로를 찾을 수 없음: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "경로 정규화/확장에 실패했습니다. 다음에 대해 Kernel32 subsystem에서 경로 길이를 반환하지 않음: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "경로를 찾을 수 없음: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "'{1}' 코드로 '{0}' 프로세스가 종료되었습니다.", + "loc.messages.PSLIB_Required0": "필수: {0}", + "loc.messages.PSLIB_StringFormatFailed": "문자열을 포맷하지 못했습니다.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "문자열 리소스 키를 찾을 수 없음: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' 작업 변수" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson index ded9fc6b2..335b6fbab 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ru-RU/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "Требуется версия агента {0} или более поздняя.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Путь к контейнеру не найден: \"{0}\".", + "loc.messages.PSLIB_EndpointAuth0": "Учетные данные конечной точки службы \"{0}\"", + "loc.messages.PSLIB_EndpointUrl0": "URL-адрес конечной точки службы \"{0}\"", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Сбой перечисления подкаталогов для пути: \"{0}\".", + "loc.messages.PSLIB_FileNotFound0": "Файл не найден: \"{0}\"", + "loc.messages.PSLIB_Input0": "Входные данные \"{0}\".", + "loc.messages.PSLIB_InvalidPattern0": "Недопустимый шаблон: \"{0}\".", + "loc.messages.PSLIB_LeafPathNotFound0": "Путь к конечному объекту не найден: \"{0}\".", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Сбой нормализации и расширения пути. Длина пути не была возвращена подсистемой Kernel32 для: \"{0}\".", + "loc.messages.PSLIB_PathNotFound0": "Путь не найден: \"{0}\".", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Процесс \"{0}\" завершил работу с кодом \"{1}\".", + "loc.messages.PSLIB_Required0": "Требуется: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Сбой формата строки.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Ключ ресурса строки не найден: \"{0}\".", + "loc.messages.PSLIB_TaskVariable0": "Переменная задачи \"{0}\"" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson index ded9fc6b2..1d333de7d 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-CN/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "需要代理版本 {0} 或更高版本。", + "loc.messages.PSLIB_ContainerPathNotFound0": "找不到容器路径:“{0}”", + "loc.messages.PSLIB_EndpointAuth0": "“{0}”服务终结点凭据", + "loc.messages.PSLIB_EndpointUrl0": "“{0}”服务终结点 URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "枚举路径的子目录失败:“{0}”", + "loc.messages.PSLIB_FileNotFound0": "找不到文件: {0}。", + "loc.messages.PSLIB_Input0": "“{0}”输入", + "loc.messages.PSLIB_InvalidPattern0": "无效的模式:“{0}”", + "loc.messages.PSLIB_LeafPathNotFound0": "找不到叶路径:“{0}”", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "路径规范化/扩展失败。路径长度不是由“{0}”的 Kernel32 子系统返回的", + "loc.messages.PSLIB_PathNotFound0": "找不到路径:“{0}”", + "loc.messages.PSLIB_Process0ExitedWithCode1": "过程“{0}”已退出,代码为“{1}”。", + "loc.messages.PSLIB_Required0": "必需: {0}", + "loc.messages.PSLIB_StringFormatFailed": "字符串格式无效。", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "找不到字符串资源关键字:“{0}”", + "loc.messages.PSLIB_TaskVariable0": "“{0}”任务变量" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson index ded9fc6b2..512509bdd 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/zh-TW/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "需要代理程式版本 {0} 或更新的版本。", + "loc.messages.PSLIB_ContainerPathNotFound0": "找不到容器路徑: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' 服務端點認證", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' 服務端點 URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "為路徑列舉子目錄失敗: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "找不到檔案: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' 輸入", + "loc.messages.PSLIB_InvalidPattern0": "模式無效: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "找不到分葉路徑: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "路徑正規化/展開失敗。Kernel32 子系統未傳回 '{0}' 的路徑長度", + "loc.messages.PSLIB_PathNotFound0": "找不到路徑: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "處理序 '{0}' 以返回碼 '{1}' 結束。", + "loc.messages.PSLIB_Required0": "必要項: {0}", + "loc.messages.PSLIB_StringFormatFailed": "字串格式失敗。", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "找不到字串資源索引鍵: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' 工作變數" } \ No newline at end of file From c31a2a7a91452f1898e3ffab1f08eef1d14a6bcb Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 12 Apr 2021 19:12:58 +0300 Subject: [PATCH 25/31] Returned back original names --- .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../node/Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/en-US/resources.resjson.lcl | 0 .../Strings/resources.resjson/{de-DE_ => de-DE}/resources.resjson | 0 .../Strings/resources.resjson/{es-ES_ => es-ES}/resources.resjson | 0 .../Strings/resources.resjson/{fr-FR_ => fr-FR}/resources.resjson | 0 .../Strings/resources.resjson/{ja-JP_ => ja-JP}/resources.resjson | 0 .../Strings/resources.resjson/{de-DE_ => de-DE}/resources.resjson | 0 .../Strings/resources.resjson/{es-ES_ => es-ES}/resources.resjson | 0 .../Strings/resources.resjson/{fr-FR_ => fr-FR}/resources.resjson | 0 .../Strings/resources.resjson/{ja-JP_ => ja-JP}/resources.resjson | 0 16 files changed, 0 insertions(+), 0 deletions(-) rename Localize/loc/{de-DE_ => de-DE}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{de-DE_ => de-DE}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{es-ES_ => es-ES}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{es-ES_ => es-ES}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{fr-FR_ => fr-FR}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{fr-FR_ => fr-FR}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{ja-JP_ => ja-JP}/node/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename Localize/loc/{ja-JP_ => ja-JP}/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl (100%) rename node/Strings/resources.resjson/{de-DE_ => de-DE}/resources.resjson (100%) rename node/Strings/resources.resjson/{es-ES_ => es-ES}/resources.resjson (100%) rename node/Strings/resources.resjson/{fr-FR_ => fr-FR}/resources.resjson (100%) rename node/Strings/resources.resjson/{ja-JP_ => ja-JP}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{de-DE_ => de-DE}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{es-ES_ => es-ES}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{fr-FR_ => fr-FR}/resources.resjson (100%) rename powershell/VstsTaskSdk/Strings/resources.resjson/{ja-JP_ => ja-JP}/resources.resjson (100%) diff --git a/Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/de-DE_/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/de-DE_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/es-ES_/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/es-ES_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/fr-FR_/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/fr-FR_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/ja-JP_/node/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl similarity index 100% rename from Localize/loc/ja-JP_/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl rename to Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl diff --git a/node/Strings/resources.resjson/de-DE_/resources.resjson b/node/Strings/resources.resjson/de-DE/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/de-DE_/resources.resjson rename to node/Strings/resources.resjson/de-DE/resources.resjson diff --git a/node/Strings/resources.resjson/es-ES_/resources.resjson b/node/Strings/resources.resjson/es-ES/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/es-ES_/resources.resjson rename to node/Strings/resources.resjson/es-ES/resources.resjson diff --git a/node/Strings/resources.resjson/fr-FR_/resources.resjson b/node/Strings/resources.resjson/fr-FR/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/fr-FR_/resources.resjson rename to node/Strings/resources.resjson/fr-FR/resources.resjson diff --git a/node/Strings/resources.resjson/ja-JP_/resources.resjson b/node/Strings/resources.resjson/ja-JP/resources.resjson similarity index 100% rename from node/Strings/resources.resjson/ja-JP_/resources.resjson rename to node/Strings/resources.resjson/ja-JP/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE_/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/de-DE_/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES_/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/es-ES_/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR_/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR_/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP_/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson similarity index 100% rename from powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP_/resources.resjson rename to powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson From 3bd1b23f4ebd654e405511f9ea50e8c7aa9531b0 Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 12 Apr 2021 19:40:56 +0300 Subject: [PATCH 26/31] Removed redundant locale - test --- .../resources.resjson/de-de/resources.resjson | 35 ------------------- 1 file changed, 35 deletions(-) delete mode 100644 node/Strings/resources.resjson/de-de/resources.resjson diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/de-de/resources.resjson deleted file mode 100644 index 8a76dd509..000000000 --- a/node/Strings/resources.resjson/de-de/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file From fce6f68cb5d37b70c23a6d3ae15830f4883fa031 Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 12 Apr 2021 19:43:41 +0300 Subject: [PATCH 27/31] Removed redundant folders --- .../resources.resjson/es-es/resources.resjson | 35 ------------------- .../resources.resjson/fr-fr/resources.resjson | 35 ------------------- .../resources.resjson/ja-jp/resources.resjson | 35 ------------------- .../resources.resjson/de-de/resources.resjson | 18 ---------- .../resources.resjson/es-es/resources.resjson | 18 ---------- .../resources.resjson/fr-fr/resources.resjson | 18 ---------- .../resources.resjson/ja-jp/resources.resjson | 18 ---------- 7 files changed, 177 deletions(-) delete mode 100644 node/Strings/resources.resjson/es-es/resources.resjson delete mode 100644 node/Strings/resources.resjson/fr-fr/resources.resjson delete mode 100644 node/Strings/resources.resjson/ja-jp/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/es-es/resources.resjson deleted file mode 100644 index 8a76dd509..000000000 --- a/node/Strings/resources.resjson/es-es/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/fr-fr/resources.resjson deleted file mode 100644 index 8a76dd509..000000000 --- a/node/Strings/resources.resjson/fr-fr/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/ja-jp/resources.resjson deleted file mode 100644 index 8a76dd509..000000000 --- a/node/Strings/resources.resjson/ja-jp/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson deleted file mode 100644 index ded9fc6b2..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson deleted file mode 100644 index ded9fc6b2..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson deleted file mode 100644 index ded9fc6b2..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson deleted file mode 100644 index ded9fc6b2..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" -} \ No newline at end of file From 7495ac917cd34cf181f078a354da9e5220791ddd Mon Sep 17 00:00:00 2001 From: Anatoly Bolshakov Date: Mon, 12 Apr 2021 19:46:55 +0300 Subject: [PATCH 28/31] Localized file check-in by OneLocBuild Task: Build definition ID 10947: Build ID 14906155 Localized file check-in by OneLocBuild Task --- .../resources.resjson/de-de/resources.resjson | 35 +++++++++++++++++++ .../resources.resjson/es-es/resources.resjson | 35 +++++++++++++++++++ .../resources.resjson/fr-fr/resources.resjson | 35 +++++++++++++++++++ .../resources.resjson/ja-jp/resources.resjson | 35 +++++++++++++++++++ .../resources.resjson/de-de/resources.resjson | 18 ++++++++++ .../resources.resjson/es-es/resources.resjson | 18 ++++++++++ .../resources.resjson/fr-fr/resources.resjson | 18 ++++++++++ .../resources.resjson/ja-jp/resources.resjson | 18 ++++++++++ 8 files changed, 212 insertions(+) create mode 100644 node/Strings/resources.resjson/de-de/resources.resjson create mode 100644 node/Strings/resources.resjson/es-es/resources.resjson create mode 100644 node/Strings/resources.resjson/fr-fr/resources.resjson create mode 100644 node/Strings/resources.resjson/ja-jp/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson create mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/de-de/resources.resjson new file mode 100644 index 000000000..7bbcf3393 --- /dev/null +++ b/node/Strings/resources.resjson/de-de/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Ausnahmefehler: %s", + "loc.messages.LIB_FailOnCode": "Fehler beim Rückgabecode: %d", + "loc.messages.LIB_MkdirFailed": "Das Verzeichnis \"%s\" kann nicht erstellt werden. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Eine in Konflikt stehende Datei ist vorhanden: \"%s\"", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Das Stammverzeichnis ist nicht vorhanden: %s", + "loc.messages.LIB_MkdirFailedInvalidShare": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Es kann nicht überprüft werden, ob das Verzeichnis vorhanden ist: {%s}. Wenn das Verzeichnis eine Dateifreigabe ist, stellen Sie sicher, dass der Freigabename richtig, die Freigabe online und der aktuelle Prozess berechtigt ist, auf die Freigabe zuzugreifen.", + "loc.messages.LIB_MultilineSecret": "Geheimnisse dürfen nicht mehrere Zeilen enthalten", + "loc.messages.LIB_ProcessError": "Fehler beim Ausführen des Prozesses \"%s\". Möglicherweise konnte der Prozess nicht gestartet werden. Fehler: %s", + "loc.messages.LIB_ProcessExitCode": "Fehler beim Prozess \"%s\" mit Exitcode %s.", + "loc.messages.LIB_ProcessStderr": "Fehler beim Prozess \"%s\": Mindestens eine Zeile wurde in den STDERR-Datenstrom geschrieben.", + "loc.messages.LIB_ReturnCode": "Rückgabecode: %d", + "loc.messages.LIB_ResourceFileNotExist": "Die Ressourcendatei ist nicht vorhanden: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Die Ressourcendatei wurde bereits festgelegt auf: %s", + "loc.messages.LIB_ResourceFileNotSet": "Die Ressourcendatei wurde nicht festgelegt. Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", + "loc.messages.LIB_StdioNotClosed": "Die STDIO-Datenströme wurden nicht innerhalb von %s Sekunden nach dem Beendigungsereignis aus dem Prozess \"%s\" geschlossen. Möglicherweise hat ein untergeordneter Prozess die STDIO-Datenströme geerbt und wurde noch nicht beendet.", + "loc.messages.LIB_WhichNotFound_Linux": "Ausführbare Datei nicht gefunden: '%s'. Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem den Dateimodus, um sicherzustellen, dass die Datei ausführbar ist.", + "loc.messages.LIB_WhichNotFound_Win": "Ausführbare Datei nicht gefunden: \"%s\". Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem, ob die Datei eine gültige Erweiterung für eine ausführbare Datei aufweist.", + "loc.messages.LIB_LocStringNotFound": "Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", + "loc.messages.LIB_ParameterIsRequired": "\"%s\" wurde nicht angegeben.", + "loc.messages.LIB_InputRequired": "Eingabe erforderlich: %s", + "loc.messages.LIB_InvalidPattern": "Ungültiges Muster: \"%s\"", + "loc.messages.LIB_EndpointNotExist": "Der Endpunkt ist nicht vorhanden: %s", + "loc.messages.LIB_EndpointDataNotExist": "Der Endpunkt-Datenparameter %s ist nicht vorhanden: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Die Endpunkt-Authentifizierungsdatensind nicht vorhanden: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Ungültige Endpunktauthentifizierung: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Ungültige sichere Dateiausgabe: %s", + "loc.messages.LIB_PathNotFound": "Nicht gefunden %s: %s", + "loc.messages.LIB_PathHasNullByte": "Der Pfad darf keine NULL-Bytes enthalten.", + "loc.messages.LIB_OperationFailed": "Fehler %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Mehrere Arbeitsbereichübereinstimmungen. Die erste Übereinstimmung wird verwendet.", + "loc.messages.LIB_MergeTestResultNotSupported": "Das Mergen von Testergebnissen aus mehreren Dateien in einen Testlauf wird von dieser Version des Build-Agents für OSX/Linux nicht unterstützt. Jede Testergebnisdatei wird als separater Testlauf in VSO/TFS veröffentlicht.", + "loc.messages.LIB_PlatformNotSupported": "Plattform wird nicht unterstützt: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/es-es/resources.resjson new file mode 100644 index 000000000..0df6dd6b1 --- /dev/null +++ b/node/Strings/resources.resjson/es-es/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "No controlada: %s", + "loc.messages.LIB_FailOnCode": "Código de retorno de error: %d", + "loc.messages.LIB_MkdirFailed": "No se puede crear el directorio '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "No se puede crear el directorio '%s'. Hay un conflicto entre archivos: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "No se puede crear el directorio '%s'. El directorio raíz no existe: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "No se puede crear el directorio '%s'. No se puede comprobar si el directorio existe: '%s'. Si el directorio es un recurso compartido de archivos, compruebe que el nombre es correcto, que está en línea y que el proceso actual tiene permiso de acceso a este.", + "loc.messages.LIB_MultilineSecret": "Los secretos no pueden contener varias líneas.", + "loc.messages.LIB_ProcessError": "Error al intentar ejecutar el proceso \"%s\". Esto puede indicar que no se pudo iniciar el proceso. Error: %s", + "loc.messages.LIB_ProcessExitCode": "Error del proceso \"%s\" con el código de salida %s", + "loc.messages.LIB_ProcessStderr": "Error del proceso \"%s\" porque se escribieron una o varias líneas en la secuencia STDERR", + "loc.messages.LIB_ReturnCode": "Código de retorno: %d", + "loc.messages.LIB_ResourceFileNotExist": "El archivo de recursos no existe: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "El archivo de recursos se ha establecido ya en: %s", + "loc.messages.LIB_ResourceFileNotSet": "No se ha establecido el archivo de recursos. No se encuentra la cadena localizada para la clave: %s", + "loc.messages.LIB_StdioNotClosed": "Las secuencias STDIO no se cerraron en un plazo de %s segundos desde el evento de salida del proceso \"%s\". Esto puede indicar que un proceso secundario ha heredado las secuencias STDIO y aún no se ha cerrado.", + "loc.messages.LIB_WhichNotFound_Linux": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también el modo de archivo para comprobar que el archivo es ejecutable.", + "loc.messages.LIB_WhichNotFound_Win": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también que el archivo tenga una extensión válida para un archivo ejecutable.", + "loc.messages.LIB_LocStringNotFound": "No se encuentra la cadena localizada para la clave: %s", + "loc.messages.LIB_ParameterIsRequired": "No se ha proporcionado %s", + "loc.messages.LIB_InputRequired": "Entrada requerida: %s", + "loc.messages.LIB_InvalidPattern": "Patrón no válido: '%s'", + "loc.messages.LIB_EndpointNotExist": "No hay punto de conexión: %s", + "loc.messages.LIB_EndpointDataNotExist": "El parámetro %s de datos del punto de conexión no existe: %s.", + "loc.messages.LIB_EndpointAuthNotExist": "Los datos de autenticación del punto de conexión no existen: %s.", + "loc.messages.LIB_InvalidEndpointAuth": "Autenticación de punto de conexión no válida: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Entrada de archivo seguro no válida: %s", + "loc.messages.LIB_PathNotFound": "No se encuentra %s: %s", + "loc.messages.LIB_PathHasNullByte": "La ruta de acceso no puede tener bytes nulos", + "loc.messages.LIB_OperationFailed": "Error de %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Hay varias coincidencias en el área de trabajo. Se usará la primera.", + "loc.messages.LIB_MergeTestResultNotSupported": "Esta versión del agente de compilación para OSX/Linux no admite la fusión mediante combinación de resultados de pruebas de varios archivos en una serie de pruebas. Cada archivo de resultados de pruebas se publicará como una serie de pruebas diferente en VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "No se admite la plataforma: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/fr-fr/resources.resjson new file mode 100644 index 000000000..0728dbf0f --- /dev/null +++ b/node/Strings/resources.resjson/fr-fr/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "Non géré : %s", + "loc.messages.LIB_FailOnCode": "Code de retour de l'échec : %d", + "loc.messages.LIB_MkdirFailed": "Impossible de créer le répertoire '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Impossible de créer le répertoire '%s'. Présence d'un fichier en conflit : '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Impossible de créer le répertoire '%s'. Le répertoire racine n'existe pas : '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Impossible de créer le répertoire '%s'. Impossible de vérifier l'existence du répertoire : '%s'. Si le répertoire est un partage de fichiers, vérifiez que le nom du partage est correct, que le partage est en ligne, et que le processus actuel est autorisé à accéder au partage.", + "loc.messages.LIB_MultilineSecret": "Les secrets ne peuvent pas contenir plusieurs lignes", + "loc.messages.LIB_ProcessError": "Erreur durant la tentative d'exécution du processus '%s'. Cela peut indiquer que le processus n'a pas réussi à démarrer. Erreur : %s", + "loc.messages.LIB_ProcessExitCode": "Échec du processus '%s'. Code de sortie : %s", + "loc.messages.LIB_ProcessStderr": "Échec du processus '%s', car une ou plusieurs lignes ont été écrites dans le flux STDERR", + "loc.messages.LIB_ReturnCode": "Code de retour : %d", + "loc.messages.LIB_ResourceFileNotExist": "Le fichier de ressources n'existe pas : %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Le fichier de ressources est déjà défini : %s", + "loc.messages.LIB_ResourceFileNotSet": "Le fichier de ressources n'est pas défini. La chaîne localisée de la clé est introuvable : %s", + "loc.messages.LIB_StdioNotClosed": "Les flux STDIO ne se sont pas fermés dans les %s secondes qui ont suivi l'événement exit du processus '%s'. Cela peut indiquer qu'un processus enfant a hérité des flux STDIO et qu'il n'est pas encore sorti.", + "loc.messages.LIB_WhichNotFound_Linux": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également le Mode de Fichier pour déterminer si le fichier est exécutable.", + "loc.messages.LIB_WhichNotFound_Win": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également si le fichier a une extension de fichier exécutable valide.", + "loc.messages.LIB_LocStringNotFound": "Chaîne localisée introuvable pour la clé : %s", + "loc.messages.LIB_ParameterIsRequired": "%s non fourni", + "loc.messages.LIB_InputRequired": "Entrée nécessaire : %s", + "loc.messages.LIB_InvalidPattern": "Modèle non valide : '%s'", + "loc.messages.LIB_EndpointNotExist": "Point de terminaison absent : %s", + "loc.messages.LIB_EndpointDataNotExist": "Paramètre de données du point de terminaison %s absent : %s", + "loc.messages.LIB_EndpointAuthNotExist": "Données d'authentification du point de terminaison absentes : %s", + "loc.messages.LIB_InvalidEndpointAuth": "Authentification du point de terminaison non valide : %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Entrée de fichier sécurisé non valide : %s", + "loc.messages.LIB_PathNotFound": "%s : %s introuvable", + "loc.messages.LIB_PathHasNullByte": "Le chemin ne peut pas contenir d'octets de valeur Null", + "loc.messages.LIB_OperationFailed": "Échec de %s : %s", + "loc.messages.LIB_UseFirstGlobMatch": "Plusieurs espaces de travail correspondants. Utilisation du premier d'entre eux.", + "loc.messages.LIB_MergeTestResultNotSupported": "La fusion des résultats des tests de plusieurs fichiers en une seule série de tests n'est pas prise en charge dans cette version de l'agent de build pour OSX/Linux. Chaque fichier de résultats des tests est publié en tant que série de tests distincte dans VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Plateforme non prise en charge : %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/ja-jp/resources.resjson new file mode 100644 index 000000000..0b7ff425c --- /dev/null +++ b/node/Strings/resources.resjson/ja-jp/resources.resjson @@ -0,0 +1,35 @@ +{ + "loc.messages.LIB_UnhandledEx": "未処理: %s", + "loc.messages.LIB_FailOnCode": "失敗のリターン コード: %d", + "loc.messages.LIB_MkdirFailed": "ディレクトリ '%s' を作成できません。%s", + "loc.messages.LIB_MkdirFailedFileExists": "ディレクトリ '%s' を作成できません。競合するファイルが存在します: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "ディレクトリ '%s' を作成できません。ルート ディレクトリが存在しません: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "ディレクトリ '%s' を作成できません。ディレクトリが存在することを確認できません: '%s'。ディレクトリがファイル共有である場合、その共有名が正しいこと、その共有がオンラインであること、そして現在のプロセスにその共有へのアクセス許可があることをご確認ください。", + "loc.messages.LIB_MultilineSecret": "シークレットに複数の行を含めることはできません", + "loc.messages.LIB_ProcessError": "プロセス '%s' を実行しようとしているときにエラーが発生しました。プロセスの開始に失敗したおそれがあります。エラー: %s", + "loc.messages.LIB_ProcessExitCode": "プロセス '%s' が終了コード %s で失敗しました", + "loc.messages.LIB_ProcessStderr": "1 つ以上の行が STDERR ストリームに書き込まれたため、プロセス '%s' が失敗しました", + "loc.messages.LIB_ReturnCode": "リターン コード: %d", + "loc.messages.LIB_ResourceFileNotExist": "リソース ファイルが存在しません: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "リソース ファイルは既に %s に設定されています", + "loc.messages.LIB_ResourceFileNotSet": "リソース ファイルが設定されておらず、キーの loc 文字列が見つかりません: %s", + "loc.messages.LIB_StdioNotClosed": "STDIO ストリームが、プロセス '%s' の終了イベントから %s 秒以内に終了しませんでした。これは、子プロセスが STDIO ストリームを継承し、まだ終了していないことを示している可能性があります。", + "loc.messages.LIB_WhichNotFound_Linux": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。ファイルが実行可能かどうかについてファイル モードもご確認ください。", + "loc.messages.LIB_WhichNotFound_Win": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。そのファイルに実行可能ファイルの有効な拡張子がついていることもご確認ください。", + "loc.messages.LIB_LocStringNotFound": "キーの loc 文字列が見つかりません: %s", + "loc.messages.LIB_ParameterIsRequired": "%s が提供されていません", + "loc.messages.LIB_InputRequired": "入力が必要です: %s", + "loc.messages.LIB_InvalidPattern": "無効なパターン: '%s'", + "loc.messages.LIB_EndpointNotExist": "エンドポイントが存在しません: %s", + "loc.messages.LIB_EndpointDataNotExist": "エンドポイントのデータ パラメーター %s がありません: %s", + "loc.messages.LIB_EndpointAuthNotExist": "エンドポイントの認証データがありません: %s", + "loc.messages.LIB_InvalidEndpointAuth": "エンドポイントの認証が無効です: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "無効なセキュア ファイル入力: %s", + "loc.messages.LIB_PathNotFound": "見つかりませんでした %s: %s", + "loc.messages.LIB_PathHasNullByte": "パスに null バイトを含めることはできません", + "loc.messages.LIB_OperationFailed": "失敗しました %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "複数のワークスペースが一致します。最初のワークスペースが使用されます。", + "loc.messages.LIB_MergeTestResultNotSupported": "複数のファイルからのテスト結果を 1 つのテスト実行にマージする処理は、OSX/Linux 用のビルド エージェントのこのバージョンではサポートされていません。各テスト結果ファイルが VSO/TFS で別個のテスト実行として発行されます。", + "loc.messages.LIB_PlatformNotSupported": "プラットフォームがサポートされていません: %s", + "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson new file mode 100644 index 000000000..7871c36e7 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Agentversion {0} oder höher ist erforderlich.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Der Containerpfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_EndpointAuth0": "\"{0}\"-Dienstendpunkt-Anmeldeinformationen", + "loc.messages.PSLIB_EndpointUrl0": "\"{0}\"-Dienstendpunkt-URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Fehler beim Aufzählen von Unterverzeichnissen für den folgenden Pfad: \"{0}\"", + "loc.messages.PSLIB_FileNotFound0": "Die Datei wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_Input0": "\"{0}\"-Eingabe", + "loc.messages.PSLIB_InvalidPattern0": "Ungültiges Muster: \"{0}\"", + "loc.messages.PSLIB_LeafPathNotFound0": "Der Blattpfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Fehler bei der Normalisierung bzw. Erweiterung des Pfads. Die Pfadlänge wurde vom Kernel32-Subsystem nicht zurückgegeben für: \"{0}\"", + "loc.messages.PSLIB_PathNotFound0": "Der Pfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Der Prozess \"{0}\" wurde mit dem Code \"{1}\" beendet.", + "loc.messages.PSLIB_Required0": "Erforderlich: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Fehler beim Zeichenfolgenformat.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Der Zeichenfolgen-Ressourcenschlüssel wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_TaskVariable0": "\"{0}\"-Taskvariable" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson new file mode 100644 index 000000000..f5c9c23e7 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "Se require la versión {0} o posterior del agente.", + "loc.messages.PSLIB_ContainerPathNotFound0": "No se encuentra la ruta de acceso del contenedor: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Credenciales del punto de conexión de servicio '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL del punto de conexión de servicio '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "No se pudieron enumerar los subdirectorios de la ruta de acceso: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "Archivo no encontrado: '{0}'", + "loc.messages.PSLIB_Input0": "Entrada '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Patrón no válido: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "No se encuentra la ruta de acceso de la hoja: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "No se pudo normalizar o expandir la ruta de acceso. El subsistema Kernel32 no devolvió la longitud de la ruta de acceso para: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "No se encuentra la ruta de acceso: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "El proceso '{0}' finalizó con el código '{1}'.", + "loc.messages.PSLIB_Required0": "Se requiere: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Error de formato de cadena.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "No se encuentra la clave de recurso de la cadena: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variable de tarea '{0}'" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson new file mode 100644 index 000000000..652870cd2 --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "L'agent version {0} (ou une version ultérieure) est obligatoire.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Le chemin du conteneur est introuvable : '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Informations d'identification du point de terminaison de service '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL du point de terminaison de service '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Échec de l'énumération des sous-répertoires pour le chemin : '{0}'", + "loc.messages.PSLIB_FileNotFound0": "Fichier introuvable : {0}.", + "loc.messages.PSLIB_Input0": "Entrée '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Modèle non valide : '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Le chemin feuille est introuvable : '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Échec de la normalisation/l'expansion du chemin. La longueur du chemin n'a pas été retournée par le sous-système Kernel32 pour : '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Chemin introuvable : '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Le processus '{0}' s'est arrêté avec le code '{1}'.", + "loc.messages.PSLIB_Required0": "Obligatoire : {0}", + "loc.messages.PSLIB_StringFormatFailed": "Échec du format de la chaîne.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Clé de la ressource de type chaîne introuvable : '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variable de tâche '{0}'" +} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson new file mode 100644 index 000000000..6b07ab69c --- /dev/null +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson @@ -0,0 +1,18 @@ +{ + "loc.messages.PSLIB_AgentVersion0Required": "バージョン {0} 以降のエージェントが必要です。", + "loc.messages.PSLIB_ContainerPathNotFound0": "コンテナーのパスが見つかりません: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' サービス エンドポイントの資格情報", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' サービス エンドポイントの URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "パス '{0}' のサブディレクトリを列挙できませんでした", + "loc.messages.PSLIB_FileNotFound0": "ファイルが見つかりません: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' 入力", + "loc.messages.PSLIB_InvalidPattern0": "使用できないパターンです: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "リーフ パスが見つかりません: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "パスの正規化/展開に失敗しました。Kernel32 サブシステムからパス '{0}' の長さが返されませんでした", + "loc.messages.PSLIB_PathNotFound0": "パスが見つかりません: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "プロセス '{0}' がコード '{1}' で終了しました。", + "loc.messages.PSLIB_Required0": "必要: {0}", + "loc.messages.PSLIB_StringFormatFailed": "文字列のフォーマットに失敗しました。", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "文字列のリソース キーが見つかりません: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' タスク変数" +} \ No newline at end of file From 466296aa1259fbcf4720db5b2fd6b7ce68d8198f Mon Sep 17 00:00:00 2001 From: "Anatolii Bolshakov (Akvelon INC)" Date: Mon, 12 Apr 2021 19:55:33 +0300 Subject: [PATCH 29/31] Returned back changes. Removed redundant --- .../resources.resjson/de-DE/resources.resjson | 64 +++++++++---------- .../resources.resjson/de-de/resources.resjson | 35 ---------- .../resources.resjson/es-ES/resources.resjson | 64 +++++++++---------- .../resources.resjson/es-es/resources.resjson | 35 ---------- .../resources.resjson/fr-FR/resources.resjson | 64 +++++++++---------- .../resources.resjson/fr-fr/resources.resjson | 35 ---------- .../resources.resjson/ja-JP/resources.resjson | 64 +++++++++---------- .../resources.resjson/ja-jp/resources.resjson | 35 ---------- .../resources.resjson/de-DE/resources.resjson | 32 +++++----- .../resources.resjson/de-de/resources.resjson | 18 ------ .../resources.resjson/es-ES/resources.resjson | 32 +++++----- .../resources.resjson/es-es/resources.resjson | 18 ------ .../resources.resjson/fr-FR/resources.resjson | 32 +++++----- .../resources.resjson/fr-fr/resources.resjson | 18 ------ .../resources.resjson/ja-JP/resources.resjson | 32 +++++----- .../resources.resjson/ja-jp/resources.resjson | 18 ------ 16 files changed, 192 insertions(+), 404 deletions(-) delete mode 100644 node/Strings/resources.resjson/de-de/resources.resjson delete mode 100644 node/Strings/resources.resjson/es-es/resources.resjson delete mode 100644 node/Strings/resources.resjson/fr-fr/resources.resjson delete mode 100644 node/Strings/resources.resjson/ja-jp/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson delete mode 100644 powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson diff --git a/node/Strings/resources.resjson/de-DE/resources.resjson b/node/Strings/resources.resjson/de-DE/resources.resjson index 5abc0b4e7..efd6ee72c 100644 --- a/node/Strings/resources.resjson/de-DE/resources.resjson +++ b/node/Strings/resources.resjson/de-DE/resources.resjson @@ -1,35 +1,35 @@ { - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_UnhandledEx": "Ausnahmefehler: %s", + "loc.messages.LIB_FailOnCode": "Fehler beim Rückgabecode: %d", + "loc.messages.LIB_MkdirFailed": "Das Verzeichnis \"%s\" kann nicht erstellt werden. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Eine in Konflikt stehende Datei ist vorhanden: \"%s\"", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Das Stammverzeichnis ist nicht vorhanden: %s", + "loc.messages.LIB_MkdirFailedInvalidShare": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Es kann nicht überprüft werden, ob das Verzeichnis vorhanden ist: {%s}. Wenn das Verzeichnis eine Dateifreigabe ist, stellen Sie sicher, dass der Freigabename richtig, die Freigabe online und der aktuelle Prozess berechtigt ist, auf die Freigabe zuzugreifen.", + "loc.messages.LIB_MultilineSecret": "Geheimnisse dürfen nicht mehrere Zeilen enthalten", + "loc.messages.LIB_ProcessError": "Fehler beim Ausführen des Prozesses \"%s\". Möglicherweise konnte der Prozess nicht gestartet werden. Fehler: %s", + "loc.messages.LIB_ProcessExitCode": "Fehler beim Prozess \"%s\" mit Exitcode %s.", + "loc.messages.LIB_ProcessStderr": "Fehler beim Prozess \"%s\": Mindestens eine Zeile wurde in den STDERR-Datenstrom geschrieben.", + "loc.messages.LIB_ReturnCode": "Rückgabecode: %d", + "loc.messages.LIB_ResourceFileNotExist": "Die Ressourcendatei ist nicht vorhanden: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Die Ressourcendatei wurde bereits festgelegt auf: %s", + "loc.messages.LIB_ResourceFileNotSet": "Die Ressourcendatei wurde nicht festgelegt. Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", + "loc.messages.LIB_StdioNotClosed": "Die STDIO-Datenströme wurden nicht innerhalb von %s Sekunden nach dem Beendigungsereignis aus dem Prozess \"%s\" geschlossen. Möglicherweise hat ein untergeordneter Prozess die STDIO-Datenströme geerbt und wurde noch nicht beendet.", + "loc.messages.LIB_WhichNotFound_Linux": "Ausführbare Datei nicht gefunden: '%s'. Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem den Dateimodus, um sicherzustellen, dass die Datei ausführbar ist.", + "loc.messages.LIB_WhichNotFound_Win": "Ausführbare Datei nicht gefunden: \"%s\". Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem, ob die Datei eine gültige Erweiterung für eine ausführbare Datei aufweist.", + "loc.messages.LIB_LocStringNotFound": "Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", + "loc.messages.LIB_ParameterIsRequired": "\"%s\" wurde nicht angegeben.", + "loc.messages.LIB_InputRequired": "Eingabe erforderlich: %s", + "loc.messages.LIB_InvalidPattern": "Ungültiges Muster: \"%s\"", + "loc.messages.LIB_EndpointNotExist": "Der Endpunkt ist nicht vorhanden: %s", + "loc.messages.LIB_EndpointDataNotExist": "Der Endpunkt-Datenparameter %s ist nicht vorhanden: %s", + "loc.messages.LIB_EndpointAuthNotExist": "Die Endpunkt-Authentifizierungsdatensind nicht vorhanden: %s", + "loc.messages.LIB_InvalidEndpointAuth": "Ungültige Endpunktauthentifizierung: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Ungültige sichere Dateiausgabe: %s", + "loc.messages.LIB_PathNotFound": "Nicht gefunden %s: %s", + "loc.messages.LIB_PathHasNullByte": "Der Pfad darf keine NULL-Bytes enthalten.", + "loc.messages.LIB_OperationFailed": "Fehler %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Mehrere Arbeitsbereichübereinstimmungen. Die erste Übereinstimmung wird verwendet.", + "loc.messages.LIB_MergeTestResultNotSupported": "Das Mergen von Testergebnissen aus mehreren Dateien in einen Testlauf wird von dieser Version des Build-Agents für OSX/Linux nicht unterstützt. Jede Testergebnisdatei wird als separater Testlauf in VSO/TFS veröffentlicht.", + "loc.messages.LIB_PlatformNotSupported": "Plattform wird nicht unterstützt: %s", "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/de-de/resources.resjson b/node/Strings/resources.resjson/de-de/resources.resjson deleted file mode 100644 index 7bbcf3393..000000000 --- a/node/Strings/resources.resjson/de-de/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Ausnahmefehler: %s", - "loc.messages.LIB_FailOnCode": "Fehler beim Rückgabecode: %d", - "loc.messages.LIB_MkdirFailed": "Das Verzeichnis \"%s\" kann nicht erstellt werden. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Eine in Konflikt stehende Datei ist vorhanden: \"%s\"", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Das Stammverzeichnis ist nicht vorhanden: %s", - "loc.messages.LIB_MkdirFailedInvalidShare": "Das Verzeichnis \"%s\" kann nicht erstellt werden. Es kann nicht überprüft werden, ob das Verzeichnis vorhanden ist: {%s}. Wenn das Verzeichnis eine Dateifreigabe ist, stellen Sie sicher, dass der Freigabename richtig, die Freigabe online und der aktuelle Prozess berechtigt ist, auf die Freigabe zuzugreifen.", - "loc.messages.LIB_MultilineSecret": "Geheimnisse dürfen nicht mehrere Zeilen enthalten", - "loc.messages.LIB_ProcessError": "Fehler beim Ausführen des Prozesses \"%s\". Möglicherweise konnte der Prozess nicht gestartet werden. Fehler: %s", - "loc.messages.LIB_ProcessExitCode": "Fehler beim Prozess \"%s\" mit Exitcode %s.", - "loc.messages.LIB_ProcessStderr": "Fehler beim Prozess \"%s\": Mindestens eine Zeile wurde in den STDERR-Datenstrom geschrieben.", - "loc.messages.LIB_ReturnCode": "Rückgabecode: %d", - "loc.messages.LIB_ResourceFileNotExist": "Die Ressourcendatei ist nicht vorhanden: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Die Ressourcendatei wurde bereits festgelegt auf: %s", - "loc.messages.LIB_ResourceFileNotSet": "Die Ressourcendatei wurde nicht festgelegt. Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", - "loc.messages.LIB_StdioNotClosed": "Die STDIO-Datenströme wurden nicht innerhalb von %s Sekunden nach dem Beendigungsereignis aus dem Prozess \"%s\" geschlossen. Möglicherweise hat ein untergeordneter Prozess die STDIO-Datenströme geerbt und wurde noch nicht beendet.", - "loc.messages.LIB_WhichNotFound_Linux": "Ausführbare Datei nicht gefunden: '%s'. Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem den Dateimodus, um sicherzustellen, dass die Datei ausführbar ist.", - "loc.messages.LIB_WhichNotFound_Win": "Ausführbare Datei nicht gefunden: \"%s\". Prüfen Sie, ob der Dateipfad vorhanden ist oder sich die Datei in einem von der PATH-Umgebungsvariablen angegebenen Verzeichnis befindet. Prüfen Sie zudem, ob die Datei eine gültige Erweiterung für eine ausführbare Datei aufweist.", - "loc.messages.LIB_LocStringNotFound": "Die Lokalisierungszeichenfolge für den folgenden Schlüssel wurde nicht gefunden: %s", - "loc.messages.LIB_ParameterIsRequired": "\"%s\" wurde nicht angegeben.", - "loc.messages.LIB_InputRequired": "Eingabe erforderlich: %s", - "loc.messages.LIB_InvalidPattern": "Ungültiges Muster: \"%s\"", - "loc.messages.LIB_EndpointNotExist": "Der Endpunkt ist nicht vorhanden: %s", - "loc.messages.LIB_EndpointDataNotExist": "Der Endpunkt-Datenparameter %s ist nicht vorhanden: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Die Endpunkt-Authentifizierungsdatensind nicht vorhanden: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Ungültige Endpunktauthentifizierung: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Ungültige sichere Dateiausgabe: %s", - "loc.messages.LIB_PathNotFound": "Nicht gefunden %s: %s", - "loc.messages.LIB_PathHasNullByte": "Der Pfad darf keine NULL-Bytes enthalten.", - "loc.messages.LIB_OperationFailed": "Fehler %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Mehrere Arbeitsbereichübereinstimmungen. Die erste Übereinstimmung wird verwendet.", - "loc.messages.LIB_MergeTestResultNotSupported": "Das Mergen von Testergebnissen aus mehreren Dateien in einen Testlauf wird von dieser Version des Build-Agents für OSX/Linux nicht unterstützt. Jede Testergebnisdatei wird als separater Testlauf in VSO/TFS veröffentlicht.", - "loc.messages.LIB_PlatformNotSupported": "Plattform wird nicht unterstützt: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-ES/resources.resjson b/node/Strings/resources.resjson/es-ES/resources.resjson index 5abc0b4e7..24090d0fc 100644 --- a/node/Strings/resources.resjson/es-ES/resources.resjson +++ b/node/Strings/resources.resjson/es-ES/resources.resjson @@ -1,35 +1,35 @@ { - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_UnhandledEx": "No controlada: %s", + "loc.messages.LIB_FailOnCode": "Código de retorno de error: %d", + "loc.messages.LIB_MkdirFailed": "No se puede crear el directorio '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "No se puede crear el directorio '%s'. Hay un conflicto entre archivos: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "No se puede crear el directorio '%s'. El directorio raíz no existe: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "No se puede crear el directorio '%s'. No se puede comprobar si el directorio existe: '%s'. Si el directorio es un recurso compartido de archivos, compruebe que el nombre es correcto, que está en línea y que el proceso actual tiene permiso de acceso a este.", + "loc.messages.LIB_MultilineSecret": "Los secretos no pueden contener varias líneas.", + "loc.messages.LIB_ProcessError": "Error al intentar ejecutar el proceso \"%s\". Esto puede indicar que no se pudo iniciar el proceso. Error: %s", + "loc.messages.LIB_ProcessExitCode": "Error del proceso \"%s\" con el código de salida %s", + "loc.messages.LIB_ProcessStderr": "Error del proceso \"%s\" porque se escribieron una o varias líneas en la secuencia STDERR", + "loc.messages.LIB_ReturnCode": "Código de retorno: %d", + "loc.messages.LIB_ResourceFileNotExist": "El archivo de recursos no existe: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "El archivo de recursos se ha establecido ya en: %s", + "loc.messages.LIB_ResourceFileNotSet": "No se ha establecido el archivo de recursos. No se encuentra la cadena localizada para la clave: %s", + "loc.messages.LIB_StdioNotClosed": "Las secuencias STDIO no se cerraron en un plazo de %s segundos desde el evento de salida del proceso \"%s\". Esto puede indicar que un proceso secundario ha heredado las secuencias STDIO y aún no se ha cerrado.", + "loc.messages.LIB_WhichNotFound_Linux": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también el modo de archivo para comprobar que el archivo es ejecutable.", + "loc.messages.LIB_WhichNotFound_Win": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también que el archivo tenga una extensión válida para un archivo ejecutable.", + "loc.messages.LIB_LocStringNotFound": "No se encuentra la cadena localizada para la clave: %s", + "loc.messages.LIB_ParameterIsRequired": "No se ha proporcionado %s", + "loc.messages.LIB_InputRequired": "Entrada requerida: %s", + "loc.messages.LIB_InvalidPattern": "Patrón no válido: '%s'", + "loc.messages.LIB_EndpointNotExist": "No hay punto de conexión: %s", + "loc.messages.LIB_EndpointDataNotExist": "El parámetro %s de datos del punto de conexión no existe: %s.", + "loc.messages.LIB_EndpointAuthNotExist": "Los datos de autenticación del punto de conexión no existen: %s.", + "loc.messages.LIB_InvalidEndpointAuth": "Autenticación de punto de conexión no válida: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Entrada de archivo seguro no válida: %s", + "loc.messages.LIB_PathNotFound": "No se encuentra %s: %s", + "loc.messages.LIB_PathHasNullByte": "La ruta de acceso no puede tener bytes nulos", + "loc.messages.LIB_OperationFailed": "Error de %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "Hay varias coincidencias en el área de trabajo. Se usará la primera.", + "loc.messages.LIB_MergeTestResultNotSupported": "Esta versión del agente de compilación para OSX/Linux no admite la fusión mediante combinación de resultados de pruebas de varios archivos en una serie de pruebas. Cada archivo de resultados de pruebas se publicará como una serie de pruebas diferente en VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "No se admite la plataforma: %s", "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/es-es/resources.resjson b/node/Strings/resources.resjson/es-es/resources.resjson deleted file mode 100644 index 0df6dd6b1..000000000 --- a/node/Strings/resources.resjson/es-es/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "No controlada: %s", - "loc.messages.LIB_FailOnCode": "Código de retorno de error: %d", - "loc.messages.LIB_MkdirFailed": "No se puede crear el directorio '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "No se puede crear el directorio '%s'. Hay un conflicto entre archivos: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "No se puede crear el directorio '%s'. El directorio raíz no existe: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "No se puede crear el directorio '%s'. No se puede comprobar si el directorio existe: '%s'. Si el directorio es un recurso compartido de archivos, compruebe que el nombre es correcto, que está en línea y que el proceso actual tiene permiso de acceso a este.", - "loc.messages.LIB_MultilineSecret": "Los secretos no pueden contener varias líneas.", - "loc.messages.LIB_ProcessError": "Error al intentar ejecutar el proceso \"%s\". Esto puede indicar que no se pudo iniciar el proceso. Error: %s", - "loc.messages.LIB_ProcessExitCode": "Error del proceso \"%s\" con el código de salida %s", - "loc.messages.LIB_ProcessStderr": "Error del proceso \"%s\" porque se escribieron una o varias líneas en la secuencia STDERR", - "loc.messages.LIB_ReturnCode": "Código de retorno: %d", - "loc.messages.LIB_ResourceFileNotExist": "El archivo de recursos no existe: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "El archivo de recursos se ha establecido ya en: %s", - "loc.messages.LIB_ResourceFileNotSet": "No se ha establecido el archivo de recursos. No se encuentra la cadena localizada para la clave: %s", - "loc.messages.LIB_StdioNotClosed": "Las secuencias STDIO no se cerraron en un plazo de %s segundos desde el evento de salida del proceso \"%s\". Esto puede indicar que un proceso secundario ha heredado las secuencias STDIO y aún no se ha cerrado.", - "loc.messages.LIB_WhichNotFound_Linux": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también el modo de archivo para comprobar que el archivo es ejecutable.", - "loc.messages.LIB_WhichNotFound_Win": "No se puede encontrar el archivo ejecutable: \"%s\". Compruebe que la ruta de acceso del archivo existe o que el archivo se puede encontrar en un directorio especificado en la variable de entorno PATH. Revise también que el archivo tenga una extensión válida para un archivo ejecutable.", - "loc.messages.LIB_LocStringNotFound": "No se encuentra la cadena localizada para la clave: %s", - "loc.messages.LIB_ParameterIsRequired": "No se ha proporcionado %s", - "loc.messages.LIB_InputRequired": "Entrada requerida: %s", - "loc.messages.LIB_InvalidPattern": "Patrón no válido: '%s'", - "loc.messages.LIB_EndpointNotExist": "No hay punto de conexión: %s", - "loc.messages.LIB_EndpointDataNotExist": "El parámetro %s de datos del punto de conexión no existe: %s.", - "loc.messages.LIB_EndpointAuthNotExist": "Los datos de autenticación del punto de conexión no existen: %s.", - "loc.messages.LIB_InvalidEndpointAuth": "Autenticación de punto de conexión no válida: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Entrada de archivo seguro no válida: %s", - "loc.messages.LIB_PathNotFound": "No se encuentra %s: %s", - "loc.messages.LIB_PathHasNullByte": "La ruta de acceso no puede tener bytes nulos", - "loc.messages.LIB_OperationFailed": "Error de %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Hay varias coincidencias en el área de trabajo. Se usará la primera.", - "loc.messages.LIB_MergeTestResultNotSupported": "Esta versión del agente de compilación para OSX/Linux no admite la fusión mediante combinación de resultados de pruebas de varios archivos en una serie de pruebas. Cada archivo de resultados de pruebas se publicará como una serie de pruebas diferente en VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "No se admite la plataforma: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-FR/resources.resjson b/node/Strings/resources.resjson/fr-FR/resources.resjson index 5abc0b4e7..0893f6e3f 100644 --- a/node/Strings/resources.resjson/fr-FR/resources.resjson +++ b/node/Strings/resources.resjson/fr-FR/resources.resjson @@ -1,35 +1,35 @@ { - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_UnhandledEx": "Non géré : %s", + "loc.messages.LIB_FailOnCode": "Code de retour de l'échec : %d", + "loc.messages.LIB_MkdirFailed": "Impossible de créer le répertoire '%s'. %s", + "loc.messages.LIB_MkdirFailedFileExists": "Impossible de créer le répertoire '%s'. Présence d'un fichier en conflit : '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Impossible de créer le répertoire '%s'. Le répertoire racine n'existe pas : '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "Impossible de créer le répertoire '%s'. Impossible de vérifier l'existence du répertoire : '%s'. Si le répertoire est un partage de fichiers, vérifiez que le nom du partage est correct, que le partage est en ligne, et que le processus actuel est autorisé à accéder au partage.", + "loc.messages.LIB_MultilineSecret": "Les secrets ne peuvent pas contenir plusieurs lignes", + "loc.messages.LIB_ProcessError": "Erreur durant la tentative d'exécution du processus '%s'. Cela peut indiquer que le processus n'a pas réussi à démarrer. Erreur : %s", + "loc.messages.LIB_ProcessExitCode": "Échec du processus '%s'. Code de sortie : %s", + "loc.messages.LIB_ProcessStderr": "Échec du processus '%s', car une ou plusieurs lignes ont été écrites dans le flux STDERR", + "loc.messages.LIB_ReturnCode": "Code de retour : %d", + "loc.messages.LIB_ResourceFileNotExist": "Le fichier de ressources n'existe pas : %s", + "loc.messages.LIB_ResourceFileAlreadySet": "Le fichier de ressources est déjà défini : %s", + "loc.messages.LIB_ResourceFileNotSet": "Le fichier de ressources n'est pas défini. La chaîne localisée de la clé est introuvable : %s", + "loc.messages.LIB_StdioNotClosed": "Les flux STDIO ne se sont pas fermés dans les %s secondes qui ont suivi l'événement exit du processus '%s'. Cela peut indiquer qu'un processus enfant a hérité des flux STDIO et qu'il n'est pas encore sorti.", + "loc.messages.LIB_WhichNotFound_Linux": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également le Mode de Fichier pour déterminer si le fichier est exécutable.", + "loc.messages.LIB_WhichNotFound_Win": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également si le fichier a une extension de fichier exécutable valide.", + "loc.messages.LIB_LocStringNotFound": "Chaîne localisée introuvable pour la clé : %s", + "loc.messages.LIB_ParameterIsRequired": "%s non fourni", + "loc.messages.LIB_InputRequired": "Entrée nécessaire : %s", + "loc.messages.LIB_InvalidPattern": "Modèle non valide : '%s'", + "loc.messages.LIB_EndpointNotExist": "Point de terminaison absent : %s", + "loc.messages.LIB_EndpointDataNotExist": "Paramètre de données du point de terminaison %s absent : %s", + "loc.messages.LIB_EndpointAuthNotExist": "Données d'authentification du point de terminaison absentes : %s", + "loc.messages.LIB_InvalidEndpointAuth": "Authentification du point de terminaison non valide : %s", + "loc.messages.LIB_InvalidSecureFilesInput": "Entrée de fichier sécurisé non valide : %s", + "loc.messages.LIB_PathNotFound": "%s : %s introuvable", + "loc.messages.LIB_PathHasNullByte": "Le chemin ne peut pas contenir d'octets de valeur Null", + "loc.messages.LIB_OperationFailed": "Échec de %s : %s", + "loc.messages.LIB_UseFirstGlobMatch": "Plusieurs espaces de travail correspondants. Utilisation du premier d'entre eux.", + "loc.messages.LIB_MergeTestResultNotSupported": "La fusion des résultats des tests de plusieurs fichiers en une seule série de tests n'est pas prise en charge dans cette version de l'agent de build pour OSX/Linux. Chaque fichier de résultats des tests est publié en tant que série de tests distincte dans VSO/TFS.", + "loc.messages.LIB_PlatformNotSupported": "Plateforme non prise en charge : %s", "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/fr-fr/resources.resjson b/node/Strings/resources.resjson/fr-fr/resources.resjson deleted file mode 100644 index 0728dbf0f..000000000 --- a/node/Strings/resources.resjson/fr-fr/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "Non géré : %s", - "loc.messages.LIB_FailOnCode": "Code de retour de l'échec : %d", - "loc.messages.LIB_MkdirFailed": "Impossible de créer le répertoire '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Impossible de créer le répertoire '%s'. Présence d'un fichier en conflit : '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Impossible de créer le répertoire '%s'. Le répertoire racine n'existe pas : '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Impossible de créer le répertoire '%s'. Impossible de vérifier l'existence du répertoire : '%s'. Si le répertoire est un partage de fichiers, vérifiez que le nom du partage est correct, que le partage est en ligne, et que le processus actuel est autorisé à accéder au partage.", - "loc.messages.LIB_MultilineSecret": "Les secrets ne peuvent pas contenir plusieurs lignes", - "loc.messages.LIB_ProcessError": "Erreur durant la tentative d'exécution du processus '%s'. Cela peut indiquer que le processus n'a pas réussi à démarrer. Erreur : %s", - "loc.messages.LIB_ProcessExitCode": "Échec du processus '%s'. Code de sortie : %s", - "loc.messages.LIB_ProcessStderr": "Échec du processus '%s', car une ou plusieurs lignes ont été écrites dans le flux STDERR", - "loc.messages.LIB_ReturnCode": "Code de retour : %d", - "loc.messages.LIB_ResourceFileNotExist": "Le fichier de ressources n'existe pas : %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Le fichier de ressources est déjà défini : %s", - "loc.messages.LIB_ResourceFileNotSet": "Le fichier de ressources n'est pas défini. La chaîne localisée de la clé est introuvable : %s", - "loc.messages.LIB_StdioNotClosed": "Les flux STDIO ne se sont pas fermés dans les %s secondes qui ont suivi l'événement exit du processus '%s'. Cela peut indiquer qu'un processus enfant a hérité des flux STDIO et qu'il n'est pas encore sorti.", - "loc.messages.LIB_WhichNotFound_Linux": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également le Mode de Fichier pour déterminer si le fichier est exécutable.", - "loc.messages.LIB_WhichNotFound_Win": "Impossible de localiser le fichier exécutable : '%s'. Vérifiez si le chemin du fichier existe ou si le fichier peut se trouver dans un répertoire spécifié par la variable d'environnement PATH. Vérifiez également si le fichier a une extension de fichier exécutable valide.", - "loc.messages.LIB_LocStringNotFound": "Chaîne localisée introuvable pour la clé : %s", - "loc.messages.LIB_ParameterIsRequired": "%s non fourni", - "loc.messages.LIB_InputRequired": "Entrée nécessaire : %s", - "loc.messages.LIB_InvalidPattern": "Modèle non valide : '%s'", - "loc.messages.LIB_EndpointNotExist": "Point de terminaison absent : %s", - "loc.messages.LIB_EndpointDataNotExist": "Paramètre de données du point de terminaison %s absent : %s", - "loc.messages.LIB_EndpointAuthNotExist": "Données d'authentification du point de terminaison absentes : %s", - "loc.messages.LIB_InvalidEndpointAuth": "Authentification du point de terminaison non valide : %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Entrée de fichier sécurisé non valide : %s", - "loc.messages.LIB_PathNotFound": "%s : %s introuvable", - "loc.messages.LIB_PathHasNullByte": "Le chemin ne peut pas contenir d'octets de valeur Null", - "loc.messages.LIB_OperationFailed": "Échec de %s : %s", - "loc.messages.LIB_UseFirstGlobMatch": "Plusieurs espaces de travail correspondants. Utilisation du premier d'entre eux.", - "loc.messages.LIB_MergeTestResultNotSupported": "La fusion des résultats des tests de plusieurs fichiers en une seule série de tests n'est pas prise en charge dans cette version de l'agent de build pour OSX/Linux. Chaque fichier de résultats des tests est publié en tant que série de tests distincte dans VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Plateforme non prise en charge : %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-JP/resources.resjson b/node/Strings/resources.resjson/ja-JP/resources.resjson index 5abc0b4e7..e52e13056 100644 --- a/node/Strings/resources.resjson/ja-JP/resources.resjson +++ b/node/Strings/resources.resjson/ja-JP/resources.resjson @@ -1,35 +1,35 @@ { - "loc.messages.LIB_UnhandledEx": "Unhandled: %s", - "loc.messages.LIB_FailOnCode": "Failure return code: %d", - "loc.messages.LIB_MkdirFailed": "Unable to create directory '%s'. %s", - "loc.messages.LIB_MkdirFailedFileExists": "Unable to create directory '%s'. Conflicting file exists: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "Unable to create directory '%s'. Root directory does not exist: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "Unable to create directory '%s'. Unable to verify the directory exists: '%s'. If directory is a file share, please verify the share name is correct, the share is online, and the current process has permission to access the share.", - "loc.messages.LIB_MultilineSecret": "Secrets cannot contain multiple lines", - "loc.messages.LIB_ProcessError": "There was an error when attempting to execute the process '%s'. This may indicate the process failed to start. Error: %s", - "loc.messages.LIB_ProcessExitCode": "The process '%s' failed with exit code %s", - "loc.messages.LIB_ProcessStderr": "The process '%s' failed because one or more lines were written to the STDERR stream", - "loc.messages.LIB_ReturnCode": "Return code: %d", - "loc.messages.LIB_ResourceFileNotExist": "Resource file doesn\\'t exist: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "Resource file has already set to: %s", - "loc.messages.LIB_ResourceFileNotSet": "Resource file haven\\'t set, can\\'t find loc string for key: %s", - "loc.messages.LIB_StdioNotClosed": "The STDIO streams did not close within %s seconds of the exit event from process '%s'. This may indicate a child process inherited the STDIO streams and has not yet exited.", - "loc.messages.LIB_WhichNotFound_Linux": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.", - "loc.messages.LIB_WhichNotFound_Win": "Unable to locate executable file: '%s'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.", - "loc.messages.LIB_LocStringNotFound": "Can\\'t find loc string for key: %s", - "loc.messages.LIB_ParameterIsRequired": "%s not supplied", - "loc.messages.LIB_InputRequired": "Input required: %s", - "loc.messages.LIB_InvalidPattern": "Invalid pattern: '%s'", - "loc.messages.LIB_EndpointNotExist": "Endpoint not present: %s", - "loc.messages.LIB_EndpointDataNotExist": "Endpoint data parameter %s not present: %s", - "loc.messages.LIB_EndpointAuthNotExist": "Endpoint auth data not present: %s", - "loc.messages.LIB_InvalidEndpointAuth": "Invalid endpoint auth: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "Invalid secure file input: %s", - "loc.messages.LIB_PathNotFound": "Not found %s: %s", - "loc.messages.LIB_PathHasNullByte": "Path cannot contain null bytes", - "loc.messages.LIB_OperationFailed": "Failed %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "Multiple workspace matches. using first.", - "loc.messages.LIB_MergeTestResultNotSupported": "Merging test results from multiple files to one test run is not supported on this version of build agent for OSX/Linux, each test result file will be published as a separate test run in VSO/TFS.", - "loc.messages.LIB_PlatformNotSupported": "Platform not supported: %s", + "loc.messages.LIB_UnhandledEx": "未処理: %s", + "loc.messages.LIB_FailOnCode": "失敗のリターン コード: %d", + "loc.messages.LIB_MkdirFailed": "ディレクトリ '%s' を作成できません。%s", + "loc.messages.LIB_MkdirFailedFileExists": "ディレクトリ '%s' を作成できません。競合するファイルが存在します: '%s'", + "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "ディレクトリ '%s' を作成できません。ルート ディレクトリが存在しません: '%s'", + "loc.messages.LIB_MkdirFailedInvalidShare": "ディレクトリ '%s' を作成できません。ディレクトリが存在することを確認できません: '%s'。ディレクトリがファイル共有である場合、その共有名が正しいこと、その共有がオンラインであること、そして現在のプロセスにその共有へのアクセス許可があることをご確認ください。", + "loc.messages.LIB_MultilineSecret": "シークレットに複数の行を含めることはできません", + "loc.messages.LIB_ProcessError": "プロセス '%s' を実行しようとしているときにエラーが発生しました。プロセスの開始に失敗したおそれがあります。エラー: %s", + "loc.messages.LIB_ProcessExitCode": "プロセス '%s' が終了コード %s で失敗しました", + "loc.messages.LIB_ProcessStderr": "1 つ以上の行が STDERR ストリームに書き込まれたため、プロセス '%s' が失敗しました", + "loc.messages.LIB_ReturnCode": "リターン コード: %d", + "loc.messages.LIB_ResourceFileNotExist": "リソース ファイルが存在しません: %s", + "loc.messages.LIB_ResourceFileAlreadySet": "リソース ファイルは既に %s に設定されています", + "loc.messages.LIB_ResourceFileNotSet": "リソース ファイルが設定されておらず、キーの loc 文字列が見つかりません: %s", + "loc.messages.LIB_StdioNotClosed": "STDIO ストリームが、プロセス '%s' の終了イベントから %s 秒以内に終了しませんでした。これは、子プロセスが STDIO ストリームを継承し、まだ終了していないことを示している可能性があります。", + "loc.messages.LIB_WhichNotFound_Linux": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。ファイルが実行可能かどうかについてファイル モードもご確認ください。", + "loc.messages.LIB_WhichNotFound_Win": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。そのファイルに実行可能ファイルの有効な拡張子がついていることもご確認ください。", + "loc.messages.LIB_LocStringNotFound": "キーの loc 文字列が見つかりません: %s", + "loc.messages.LIB_ParameterIsRequired": "%s が提供されていません", + "loc.messages.LIB_InputRequired": "入力が必要です: %s", + "loc.messages.LIB_InvalidPattern": "無効なパターン: '%s'", + "loc.messages.LIB_EndpointNotExist": "エンドポイントが存在しません: %s", + "loc.messages.LIB_EndpointDataNotExist": "エンドポイントのデータ パラメーター %s がありません: %s", + "loc.messages.LIB_EndpointAuthNotExist": "エンドポイントの認証データがありません: %s", + "loc.messages.LIB_InvalidEndpointAuth": "エンドポイントの認証が無効です: %s", + "loc.messages.LIB_InvalidSecureFilesInput": "無効なセキュア ファイル入力: %s", + "loc.messages.LIB_PathNotFound": "見つかりませんでした %s: %s", + "loc.messages.LIB_PathHasNullByte": "パスに null バイトを含めることはできません", + "loc.messages.LIB_OperationFailed": "失敗しました %s: %s", + "loc.messages.LIB_UseFirstGlobMatch": "複数のワークスペースが一致します。最初のワークスペースが使用されます。", + "loc.messages.LIB_MergeTestResultNotSupported": "複数のファイルからのテスト結果を 1 つのテスト実行にマージする処理は、OSX/Linux 用のビルド エージェントのこのバージョンではサポートされていません。各テスト結果ファイルが VSO/TFS で別個のテスト実行として発行されます。", + "loc.messages.LIB_PlatformNotSupported": "プラットフォームがサポートされていません: %s", "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" } \ No newline at end of file diff --git a/node/Strings/resources.resjson/ja-jp/resources.resjson b/node/Strings/resources.resjson/ja-jp/resources.resjson deleted file mode 100644 index 0b7ff425c..000000000 --- a/node/Strings/resources.resjson/ja-jp/resources.resjson +++ /dev/null @@ -1,35 +0,0 @@ -{ - "loc.messages.LIB_UnhandledEx": "未処理: %s", - "loc.messages.LIB_FailOnCode": "失敗のリターン コード: %d", - "loc.messages.LIB_MkdirFailed": "ディレクトリ '%s' を作成できません。%s", - "loc.messages.LIB_MkdirFailedFileExists": "ディレクトリ '%s' を作成できません。競合するファイルが存在します: '%s'", - "loc.messages.LIB_MkdirFailedInvalidDriveRoot": "ディレクトリ '%s' を作成できません。ルート ディレクトリが存在しません: '%s'", - "loc.messages.LIB_MkdirFailedInvalidShare": "ディレクトリ '%s' を作成できません。ディレクトリが存在することを確認できません: '%s'。ディレクトリがファイル共有である場合、その共有名が正しいこと、その共有がオンラインであること、そして現在のプロセスにその共有へのアクセス許可があることをご確認ください。", - "loc.messages.LIB_MultilineSecret": "シークレットに複数の行を含めることはできません", - "loc.messages.LIB_ProcessError": "プロセス '%s' を実行しようとしているときにエラーが発生しました。プロセスの開始に失敗したおそれがあります。エラー: %s", - "loc.messages.LIB_ProcessExitCode": "プロセス '%s' が終了コード %s で失敗しました", - "loc.messages.LIB_ProcessStderr": "1 つ以上の行が STDERR ストリームに書き込まれたため、プロセス '%s' が失敗しました", - "loc.messages.LIB_ReturnCode": "リターン コード: %d", - "loc.messages.LIB_ResourceFileNotExist": "リソース ファイルが存在しません: %s", - "loc.messages.LIB_ResourceFileAlreadySet": "リソース ファイルは既に %s に設定されています", - "loc.messages.LIB_ResourceFileNotSet": "リソース ファイルが設定されておらず、キーの loc 文字列が見つかりません: %s", - "loc.messages.LIB_StdioNotClosed": "STDIO ストリームが、プロセス '%s' の終了イベントから %s 秒以内に終了しませんでした。これは、子プロセスが STDIO ストリームを継承し、まだ終了していないことを示している可能性があります。", - "loc.messages.LIB_WhichNotFound_Linux": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。ファイルが実行可能かどうかについてファイル モードもご確認ください。", - "loc.messages.LIB_WhichNotFound_Win": "実行可能ファイルが見つかりません: '%s'。ファイル パスが存在すること、またはそのファイルが PATH 環境変数で指定されたディレクトリ内にあることをご確認ください。そのファイルに実行可能ファイルの有効な拡張子がついていることもご確認ください。", - "loc.messages.LIB_LocStringNotFound": "キーの loc 文字列が見つかりません: %s", - "loc.messages.LIB_ParameterIsRequired": "%s が提供されていません", - "loc.messages.LIB_InputRequired": "入力が必要です: %s", - "loc.messages.LIB_InvalidPattern": "無効なパターン: '%s'", - "loc.messages.LIB_EndpointNotExist": "エンドポイントが存在しません: %s", - "loc.messages.LIB_EndpointDataNotExist": "エンドポイントのデータ パラメーター %s がありません: %s", - "loc.messages.LIB_EndpointAuthNotExist": "エンドポイントの認証データがありません: %s", - "loc.messages.LIB_InvalidEndpointAuth": "エンドポイントの認証が無効です: %s", - "loc.messages.LIB_InvalidSecureFilesInput": "無効なセキュア ファイル入力: %s", - "loc.messages.LIB_PathNotFound": "見つかりませんでした %s: %s", - "loc.messages.LIB_PathHasNullByte": "パスに null バイトを含めることはできません", - "loc.messages.LIB_OperationFailed": "失敗しました %s: %s", - "loc.messages.LIB_UseFirstGlobMatch": "複数のワークスペースが一致します。最初のワークスペースが使用されます。", - "loc.messages.LIB_MergeTestResultNotSupported": "複数のファイルからのテスト結果を 1 つのテスト実行にマージする処理は、OSX/Linux 用のビルド エージェントのこのバージョンではサポートされていません。各テスト結果ファイルが VSO/TFS で別個のテスト実行として発行されます。", - "loc.messages.LIB_PlatformNotSupported": "プラットフォームがサポートされていません: %s", - "loc.messages.LIB_CopyFileFailed": "Error while copying the file. Attempts left: %s" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson index 66c17bc8d..248b674d6 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/de-DE/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "Agentversion {0} oder höher ist erforderlich.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Der Containerpfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_EndpointAuth0": "\"{0}\"-Dienstendpunkt-Anmeldeinformationen", + "loc.messages.PSLIB_EndpointUrl0": "\"{0}\"-Dienstendpunkt-URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Fehler beim Aufzählen von Unterverzeichnissen für den folgenden Pfad: \"{0}\"", + "loc.messages.PSLIB_FileNotFound0": "Die Datei wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_Input0": "\"{0}\"-Eingabe", + "loc.messages.PSLIB_InvalidPattern0": "Ungültiges Muster: \"{0}\"", + "loc.messages.PSLIB_LeafPathNotFound0": "Der Blattpfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Fehler bei der Normalisierung bzw. Erweiterung des Pfads. Die Pfadlänge wurde vom Kernel32-Subsystem nicht zurückgegeben für: \"{0}\"", + "loc.messages.PSLIB_PathNotFound0": "Der Pfad wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Der Prozess \"{0}\" wurde mit dem Code \"{1}\" beendet.", + "loc.messages.PSLIB_Required0": "Erforderlich: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Fehler beim Zeichenfolgenformat.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Der Zeichenfolgen-Ressourcenschlüssel wurde nicht gefunden: \"{0}\".", + "loc.messages.PSLIB_TaskVariable0": "\"{0}\"-Taskvariable" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson deleted file mode 100644 index 7871c36e7..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/de-de/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Agentversion {0} oder höher ist erforderlich.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Der Containerpfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_EndpointAuth0": "\"{0}\"-Dienstendpunkt-Anmeldeinformationen", - "loc.messages.PSLIB_EndpointUrl0": "\"{0}\"-Dienstendpunkt-URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Fehler beim Aufzählen von Unterverzeichnissen für den folgenden Pfad: \"{0}\"", - "loc.messages.PSLIB_FileNotFound0": "Die Datei wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_Input0": "\"{0}\"-Eingabe", - "loc.messages.PSLIB_InvalidPattern0": "Ungültiges Muster: \"{0}\"", - "loc.messages.PSLIB_LeafPathNotFound0": "Der Blattpfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Fehler bei der Normalisierung bzw. Erweiterung des Pfads. Die Pfadlänge wurde vom Kernel32-Subsystem nicht zurückgegeben für: \"{0}\"", - "loc.messages.PSLIB_PathNotFound0": "Der Pfad wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Der Prozess \"{0}\" wurde mit dem Code \"{1}\" beendet.", - "loc.messages.PSLIB_Required0": "Erforderlich: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Fehler beim Zeichenfolgenformat.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Der Zeichenfolgen-Ressourcenschlüssel wurde nicht gefunden: \"{0}\".", - "loc.messages.PSLIB_TaskVariable0": "\"{0}\"-Taskvariable" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson index 66c17bc8d..b79ac21aa 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/es-ES/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "Se require la versión {0} o posterior del agente.", + "loc.messages.PSLIB_ContainerPathNotFound0": "No se encuentra la ruta de acceso del contenedor: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Credenciales del punto de conexión de servicio '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL del punto de conexión de servicio '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "No se pudieron enumerar los subdirectorios de la ruta de acceso: '{0}'", + "loc.messages.PSLIB_FileNotFound0": "Archivo no encontrado: '{0}'", + "loc.messages.PSLIB_Input0": "Entrada '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Patrón no válido: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "No se encuentra la ruta de acceso de la hoja: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "No se pudo normalizar o expandir la ruta de acceso. El subsistema Kernel32 no devolvió la longitud de la ruta de acceso para: '{0}'", + "loc.messages.PSLIB_PathNotFound0": "No se encuentra la ruta de acceso: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "El proceso '{0}' finalizó con el código '{1}'.", + "loc.messages.PSLIB_Required0": "Se requiere: {0}", + "loc.messages.PSLIB_StringFormatFailed": "Error de formato de cadena.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "No se encuentra la clave de recurso de la cadena: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variable de tarea '{0}'" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson deleted file mode 100644 index f5c9c23e7..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/es-es/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "Se require la versión {0} o posterior del agente.", - "loc.messages.PSLIB_ContainerPathNotFound0": "No se encuentra la ruta de acceso del contenedor: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Credenciales del punto de conexión de servicio '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL del punto de conexión de servicio '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "No se pudieron enumerar los subdirectorios de la ruta de acceso: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "Archivo no encontrado: '{0}'", - "loc.messages.PSLIB_Input0": "Entrada '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Patrón no válido: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "No se encuentra la ruta de acceso de la hoja: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "No se pudo normalizar o expandir la ruta de acceso. El subsistema Kernel32 no devolvió la longitud de la ruta de acceso para: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "No se encuentra la ruta de acceso: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "El proceso '{0}' finalizó con el código '{1}'.", - "loc.messages.PSLIB_Required0": "Se requiere: {0}", - "loc.messages.PSLIB_StringFormatFailed": "Error de formato de cadena.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "No se encuentra la clave de recurso de la cadena: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variable de tarea '{0}'" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson index 66c17bc8d..dc2da0521 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-FR/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "L'agent version {0} (ou une version ultérieure) est obligatoire.", + "loc.messages.PSLIB_ContainerPathNotFound0": "Le chemin du conteneur est introuvable : '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "Informations d'identification du point de terminaison de service '{0}'", + "loc.messages.PSLIB_EndpointUrl0": "URL du point de terminaison de service '{0}'", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Échec de l'énumération des sous-répertoires pour le chemin : '{0}'", + "loc.messages.PSLIB_FileNotFound0": "Fichier introuvable : {0}.", + "loc.messages.PSLIB_Input0": "Entrée '{0}'", + "loc.messages.PSLIB_InvalidPattern0": "Modèle non valide : '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "Le chemin feuille est introuvable : '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Échec de la normalisation/l'expansion du chemin. La longueur du chemin n'a pas été retournée par le sous-système Kernel32 pour : '{0}'", + "loc.messages.PSLIB_PathNotFound0": "Chemin introuvable : '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "Le processus '{0}' s'est arrêté avec le code '{1}'.", + "loc.messages.PSLIB_Required0": "Obligatoire : {0}", + "loc.messages.PSLIB_StringFormatFailed": "Échec du format de la chaîne.", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "Clé de la ressource de type chaîne introuvable : '{0}'", + "loc.messages.PSLIB_TaskVariable0": "Variable de tâche '{0}'" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson deleted file mode 100644 index 652870cd2..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/fr-fr/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "L'agent version {0} (ou une version ultérieure) est obligatoire.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Le chemin du conteneur est introuvable : '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "Informations d'identification du point de terminaison de service '{0}'", - "loc.messages.PSLIB_EndpointUrl0": "URL du point de terminaison de service '{0}'", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Échec de l'énumération des sous-répertoires pour le chemin : '{0}'", - "loc.messages.PSLIB_FileNotFound0": "Fichier introuvable : {0}.", - "loc.messages.PSLIB_Input0": "Entrée '{0}'", - "loc.messages.PSLIB_InvalidPattern0": "Modèle non valide : '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Le chemin feuille est introuvable : '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Échec de la normalisation/l'expansion du chemin. La longueur du chemin n'a pas été retournée par le sous-système Kernel32 pour : '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Chemin introuvable : '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Le processus '{0}' s'est arrêté avec le code '{1}'.", - "loc.messages.PSLIB_Required0": "Obligatoire : {0}", - "loc.messages.PSLIB_StringFormatFailed": "Échec du format de la chaîne.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "Clé de la ressource de type chaîne introuvable : '{0}'", - "loc.messages.PSLIB_TaskVariable0": "Variable de tâche '{0}'" -} \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson index 66c17bc8d..9f2f9feae 100644 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson +++ b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-JP/resources.resjson @@ -1,18 +1,18 @@ { - "loc.messages.PSLIB_AgentVersion0Required": "Agent version {0} or higher is required.", - "loc.messages.PSLIB_ContainerPathNotFound0": "Container path not found: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' service endpoint credentials", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' service endpoint URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "Enumerating subdirectories failed for path: '{0}'", - "loc.messages.PSLIB_FileNotFound0": "File not found: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' input", - "loc.messages.PSLIB_InvalidPattern0": "Invalid pattern: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "Leaf path not found: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "Path normalization/expansion failed. The path length was not returned by the Kernel32 subsystem for: '{0}'", - "loc.messages.PSLIB_PathNotFound0": "Path not found: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "Process '{0}' exited with code '{1}'.", - "loc.messages.PSLIB_Required0": "Required: {0}", - "loc.messages.PSLIB_StringFormatFailed": "String format failed.", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "String resource key not found: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' task variable" + "loc.messages.PSLIB_AgentVersion0Required": "バージョン {0} 以降のエージェントが必要です。", + "loc.messages.PSLIB_ContainerPathNotFound0": "コンテナーのパスが見つかりません: '{0}'", + "loc.messages.PSLIB_EndpointAuth0": "'{0}' サービス エンドポイントの資格情報", + "loc.messages.PSLIB_EndpointUrl0": "'{0}' サービス エンドポイントの URL", + "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "パス '{0}' のサブディレクトリを列挙できませんでした", + "loc.messages.PSLIB_FileNotFound0": "ファイルが見つかりません: '{0}'", + "loc.messages.PSLIB_Input0": "'{0}' 入力", + "loc.messages.PSLIB_InvalidPattern0": "使用できないパターンです: '{0}'", + "loc.messages.PSLIB_LeafPathNotFound0": "リーフ パスが見つかりません: '{0}'", + "loc.messages.PSLIB_PathLengthNotReturnedFor0": "パスの正規化/展開に失敗しました。Kernel32 サブシステムからパス '{0}' の長さが返されませんでした", + "loc.messages.PSLIB_PathNotFound0": "パスが見つかりません: '{0}'", + "loc.messages.PSLIB_Process0ExitedWithCode1": "プロセス '{0}' がコード '{1}' で終了しました。", + "loc.messages.PSLIB_Required0": "必要: {0}", + "loc.messages.PSLIB_StringFormatFailed": "文字列のフォーマットに失敗しました。", + "loc.messages.PSLIB_StringResourceKeyNotFound0": "文字列のリソース キーが見つかりません: '{0}'", + "loc.messages.PSLIB_TaskVariable0": "'{0}' タスク変数" } \ No newline at end of file diff --git a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson b/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson deleted file mode 100644 index 6b07ab69c..000000000 --- a/powershell/VstsTaskSdk/Strings/resources.resjson/ja-jp/resources.resjson +++ /dev/null @@ -1,18 +0,0 @@ -{ - "loc.messages.PSLIB_AgentVersion0Required": "バージョン {0} 以降のエージェントが必要です。", - "loc.messages.PSLIB_ContainerPathNotFound0": "コンテナーのパスが見つかりません: '{0}'", - "loc.messages.PSLIB_EndpointAuth0": "'{0}' サービス エンドポイントの資格情報", - "loc.messages.PSLIB_EndpointUrl0": "'{0}' サービス エンドポイントの URL", - "loc.messages.PSLIB_EnumeratingSubdirectoriesFailedForPath0": "パス '{0}' のサブディレクトリを列挙できませんでした", - "loc.messages.PSLIB_FileNotFound0": "ファイルが見つかりません: '{0}'", - "loc.messages.PSLIB_Input0": "'{0}' 入力", - "loc.messages.PSLIB_InvalidPattern0": "使用できないパターンです: '{0}'", - "loc.messages.PSLIB_LeafPathNotFound0": "リーフ パスが見つかりません: '{0}'", - "loc.messages.PSLIB_PathLengthNotReturnedFor0": "パスの正規化/展開に失敗しました。Kernel32 サブシステムからパス '{0}' の長さが返されませんでした", - "loc.messages.PSLIB_PathNotFound0": "パスが見つかりません: '{0}'", - "loc.messages.PSLIB_Process0ExitedWithCode1": "プロセス '{0}' がコード '{1}' で終了しました。", - "loc.messages.PSLIB_Required0": "必要: {0}", - "loc.messages.PSLIB_StringFormatFailed": "文字列のフォーマットに失敗しました。", - "loc.messages.PSLIB_StringResourceKeyNotFound0": "文字列のリソース キーが見つかりません: '{0}'", - "loc.messages.PSLIB_TaskVariable0": "'{0}' タスク変数" -} \ No newline at end of file From 9de24af178d322a99c8e2c47107b13c3def825c4 Mon Sep 17 00:00:00 2001 From: Nikita Ezzhev Date: Wed, 21 Apr 2021 13:24:26 +0300 Subject: [PATCH 30/31] Create PR in OneLocBuild task only on third week of sprint (#755) * Fix localization pipeline * Add missed change * Added option to disable PR creation --- Localize/localize-pipeline.yml | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml index d92279650..cef451c3a 100644 --- a/Localize/localize-pipeline.yml +++ b/Localize/localize-pipeline.yml @@ -23,8 +23,16 @@ stages: - powershell: | $sprintInfo = Invoke-WebRequest https://whatsprintis.it -Headers @{"Accept"= "application/json"} | ConvertFrom-Json - Write-Host "##vso[task.setvariable variable=week]$($sprintInfo.week)" - Write-Host "##vso[task.setvariable variable=sprint]$($sprintInfo.sprint)" + if (($env:PR_CREATION_ENABLED -eq 'True') -and (($sprintInfo.week -eq 3) -or ($env:BUILD_REASON -eq 'Manual'))) + { + Write-Host "shouldCreatePR was set to true" + Write-Host "##vso[task.setvariable variable=shouldCreatePR]$($true)" + } + else + { + Write-Host "shouldCreatePR was set to false" + Write-Host "##vso[task.setvariable variable=shouldCreatePR]$($false)" + } displayName: "Determine the number of the week in the sprint and sprint number" - powershell: | @@ -34,7 +42,7 @@ stages: git merge origin/master git push origin Localization displayName: "Sync with master branch" - condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual')) - task: OneLocBuild@2 inputs: @@ -42,7 +50,7 @@ stages: outDir: '$(Build.ArtifactStagingDirectory)' packageSourceAuth: 'patAuth' patVariable: '$(OneLocBuildPAT)' - isCreatePrSelected: true + isCreatePrSelected: $(shouldCreatePR) repoType: 'gitHub' prSourceBranchPrefix: 'Localize' gitHubPatVariable: '$(GitHubPAT)' @@ -50,10 +58,10 @@ stages: gitHubPrMergeMethod: 'squash' env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual')) - task: PublishBuildArtifacts@1 - condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual')) displayName: 'Publish an artifact' - powershell: | @@ -69,7 +77,7 @@ stages: git commit -m "Removing Localize folder" git push origin $updateBranch displayName: Create and push localization update branch - condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + condition: and(succeeded(), or(and(eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) - task: PowerShell@2 inputs: @@ -79,7 +87,7 @@ stages: env: GH_TOKEN: '$(GitHubPAT)' displayName: Open a PR - condition: and(succeeded(), or(and(eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) + condition: and(succeeded(), or(and(eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) - powershell: | $message="Created task-lib localization update PR. Someone please approve/merge it. :please-puss-in-boots: $env:PR_LINK" @@ -89,7 +97,7 @@ stages: Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' displayName: 'Send Slack notification about PR opened' - condition: and(succeeded(), eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')) + condition: and(succeeded(), eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')) - powershell: | $buildUrl = "$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)&_a=summary" @@ -100,4 +108,4 @@ stages: Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' displayName: 'Send Slack notification about error' - condition: and(failed(), eq(variables['WEEK'], '3'), eq(variables['build.reason'], 'Schedule')) + condition: and(failed(), eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')) From 7c6ab4efa56b77760032e0eb8c30318266fe3caf Mon Sep 17 00:00:00 2001 From: anatolybolshakov Date: Mon, 10 May 2021 08:02:37 +0000 Subject: [PATCH 31/31] Removing Localize folder --- Localize/LocProject.json | 20 -- .../en-US/resources.resjson.lcl | 302 ----------------- .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 302 ----------------- .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 302 ----------------- .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 311 ------------------ .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 302 ----------------- .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 311 ------------------ .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 311 ------------------ .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 311 ------------------ .../en-US/resources.resjson.lcl | 158 --------- .../en-US/resources.resjson.lcl | 311 ------------------ .../en-US/resources.resjson.lcl | 158 --------- Localize/localize-pipeline.yml | 111 ------- 20 files changed, 4316 deletions(-) delete mode 100644 Localize/LocProject.json delete mode 100644 Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl delete mode 100644 Localize/localize-pipeline.yml diff --git a/Localize/LocProject.json b/Localize/LocProject.json deleted file mode 100644 index 5509aaa7e..000000000 --- a/Localize/LocProject.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Projects": [ - { - "LocItems": [ - { - "Languages": "de-de;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", - "SourceFile": "node\\Strings\\resources.resjson\\en-US\\resources.resjson", - "CopyOption": "LangIDOnPath", - "OutputPath": "node\\Strings\\resources.resjson" - }, - { - "Languages": "de-de;es-es;fr-fr;it-IT;ja-jp;ko-KR;ru-RU;zh-CN;zh-TW", - "SourceFile": "powershell\\VstsTaskSdk\\Strings\\resources.resjson\\en-US\\resources.resjson", - "CopyOption": "LangIDOnPath", - "OutputPath": "powershell\\VstsTaskSdk\\Strings\\resources.resjson" - } - ] - } - ] - } \ No newline at end of file diff --git a/Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 6527d0ec1..000000000 --- a/Localize/loc/de-DE/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index b57e0d97a..000000000 --- a/Localize/loc/de-DE/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 94a3c9316..000000000 --- a/Localize/loc/es-ES/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 64342b797..000000000 --- a/Localize/loc/es-ES/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 73b4a37e7..000000000 --- a/Localize/loc/fr-FR/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index d2d35faaf..000000000 --- a/Localize/loc/fr-FR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 1539b8cbb..000000000 --- a/Localize/loc/it-IT/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 702fb82ec..000000000 --- a/Localize/loc/it-IT/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 707643669..000000000 --- a/Localize/loc/ja-JP/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 6d2ea0682..000000000 --- a/Localize/loc/ja-JP/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index f2bfc6799..000000000 --- a/Localize/loc/ko-KR/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 8a873ac1f..000000000 --- a/Localize/loc/ko-KR/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 013f710ab..000000000 --- a/Localize/loc/ru-RU/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index deaa2df36..000000000 --- a/Localize/loc/ru-RU/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index ee67a055c..000000000 --- a/Localize/loc/zh-CN/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index d781281de..000000000 --- a/Localize/loc/zh-CN/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index c1a53e6a0..000000000 --- a/Localize/loc/zh-TW/node/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl b/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl deleted file mode 100644 index 38a7b4970..000000000 --- a/Localize/loc/zh-TW/powershell/VstsTaskSdk/Strings/resources.resjson/en-US/resources.resjson.lcl +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Localize/localize-pipeline.yml b/Localize/localize-pipeline.yml deleted file mode 100644 index cef451c3a..000000000 --- a/Localize/localize-pipeline.yml +++ /dev/null @@ -1,111 +0,0 @@ -name: $(Date:MMddyy)$(Rev:.rrrr) - -trigger: none - -schedules: -- cron: 0 8 * * Mon # mm HH DD MM DW - displayName: Localization update - branches: - include: - - Localization - always: true - -stages: -- stage: __default - jobs: - - job: LocalizationUpdate - displayName: 'Update localization' - pool: - vmImage: windows-latest - steps: - - checkout: self - persistCredentials: true - - - powershell: | - $sprintInfo = Invoke-WebRequest https://whatsprintis.it -Headers @{"Accept"= "application/json"} | ConvertFrom-Json - if (($env:PR_CREATION_ENABLED -eq 'True') -and (($sprintInfo.week -eq 3) -or ($env:BUILD_REASON -eq 'Manual'))) - { - Write-Host "shouldCreatePR was set to true" - Write-Host "##vso[task.setvariable variable=shouldCreatePR]$($true)" - } - else - { - Write-Host "shouldCreatePR was set to false" - Write-Host "##vso[task.setvariable variable=shouldCreatePR]$($false)" - } - displayName: "Determine the number of the week in the sprint and sprint number" - - - powershell: | - git config --global user.email "$(github_email)" - git config --global user.name "$(username)" - git checkout -b Localization origin/Localization - git merge origin/master - git push origin Localization - displayName: "Sync with master branch" - condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual')) - - - task: OneLocBuild@2 - inputs: - locProj: 'Localize/LocProject.json' - outDir: '$(Build.ArtifactStagingDirectory)' - packageSourceAuth: 'patAuth' - patVariable: '$(OneLocBuildPAT)' - isCreatePrSelected: $(shouldCreatePR) - repoType: 'gitHub' - prSourceBranchPrefix: 'Localize' - gitHubPatVariable: '$(GitHubPAT)' - isAutoCompletePrSelected: true - gitHubPrMergeMethod: 'squash' - env: - SYSTEM_ACCESSTOKEN: $(System.AccessToken) - condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual')) - - - task: PublishBuildArtifacts@1 - condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual')) - displayName: 'Publish an artifact' - - - powershell: | - $date= Get-Date -Format "MMddyyyy" - $updateBranch="Localization-update_$date" - echo "##vso[task.setvariable variable=updateBranch]$updateBranch" - - git checkout -b $updateBranch - - Remove-Item -Recurse -Force Localize - - git add -A - git commit -m "Removing Localize folder" - git push origin $updateBranch - displayName: Create and push localization update branch - condition: and(succeeded(), or(and(eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) - - - task: PowerShell@2 - inputs: - filePath: 'open-pullrequest.ps1' - arguments: "-SourceBranch $(updateBranch)" - failOnStderr: true - env: - GH_TOKEN: '$(GitHubPAT)' - displayName: Open a PR - condition: and(succeeded(), or(and(eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual'))) - - - powershell: | - $message="Created task-lib localization update PR. Someone please approve/merge it. :please-puss-in-boots: $env:PR_LINK" - $body = [PSCustomObject]@{ - text = $message - } | ConvertTo-Json - - Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' - displayName: 'Send Slack notification about PR opened' - condition: and(succeeded(), eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')) - - - powershell: | - $buildUrl = "$(System.TeamFoundationCollectionUri)$(System.TeamProject)/_build/results?buildId=$(Build.BuildId)&_a=summary" - $message="Something went wrong while creating task-lib localization update PR. Build: $buildUrl" - $body = [PSCustomObject]@{ - text = $message - } | ConvertTo-Json - - Invoke-RestMethod -Uri $(slackUri) -Method Post -Body $body -ContentType 'application/json' - displayName: 'Send Slack notification about error' - condition: and(failed(), eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule'))