From dde459fb51682ee82090d0fb7f74ace7db4d0591 Mon Sep 17 00:00:00 2001
From: Copilot <223556219+Copilot@users.noreply.github.com>
Date: Fri, 19 Jun 2026 14:13:13 +0200
Subject: [PATCH 1/3] Rename DotnetTestProtocol source package to
Microsoft.Testing.Platform.Internal.DotnetTest
Make the cross-repo source-sharing package a single, generically-named INTERNAL
package for the 'dotnet test' <-> Microsoft.Testing.Platform integration, instead of
one package per shared contract. The package is currently unused, so the rename is safe.
- Package id/folder: Microsoft.Testing.Platform.DotnetTestProtocol ->
Microsoft.Testing.Platform.Internal.DotnetTest. The 'Internal' segment (plus the
existing IsShipping=false + DevelopmentDependency=true) makes clear it is an
implementation detail, not a public client library (cf. #5667, closed pending a real
use case for a public MTP client).
- It still ships the named-pipe wire contract (ObjectFieldIds.cs + Constants.cs) as
contentFiles, and is designed to also host the terminal reporter source.
- Updated PACKAGE.md + PackageDescription; updated TestFx.slnx. The protocol contract
.props and its standalone consumer test are unchanged.
Verified: pack produces Microsoft.Testing.Platform.Internal.DotnetTest.2.3.0-dev.nupkg
(NonShipping) with both contract files as contentFiles/cs/any (buildAction=Compile).
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
TestFx.slnx | 2 +-
.../PACKAGE.md | 31 -----------------
...sting.Platform.Internal.DotnetTest.csproj} | 23 ++++++++-----
.../PACKAGE.md | 34 +++++++++++++++++++
4 files changed, 49 insertions(+), 41 deletions(-)
delete mode 100644 src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/PACKAGE.md
rename src/Platform/{Microsoft.Testing.Platform.DotnetTestProtocol/Microsoft.Testing.Platform.DotnetTestProtocol.csproj => Microsoft.Testing.Platform.Internal.DotnetTest/Microsoft.Testing.Platform.Internal.DotnetTest.csproj} (61%)
create mode 100644 src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md
diff --git a/TestFx.slnx b/TestFx.slnx
index 5d7f088626..5640a8b22e 100644
--- a/TestFx.slnx
+++ b/TestFx.slnx
@@ -55,7 +55,7 @@
-
+
diff --git a/src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/PACKAGE.md b/src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/PACKAGE.md
deleted file mode 100644
index 2b609543b0..0000000000
--- a/src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/PACKAGE.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# Microsoft.Testing.Platform.DotnetTestProtocol
-
-This package shares — **as compiled source** — the `dotnet test` named-pipe **wire contract** used between a
-[Microsoft.Testing.Platform](https://www.nuget.org/packages/Microsoft.Testing.Platform) test host and the
-`dotnet test` command line.
-
-It exists so the protocol's serializer/field ids and handshake/session/state constants have a **single source of
-truth** across the [microsoft/testfx](https://github.com/microsoft/testfx) and
-[dotnet/sdk](https://github.com/dotnet/sdk) repositories, instead of being hand-copied (where any drift is a silent
-wire-protocol break).
-
-> This package is an implementation detail of `dotnet test` integration. It is **not** intended for direct
-> end-user consumption.
-
-## What's inside
-
-The package ships two zero-dependency source files as `contentFiles` (compiled into the consuming assembly):
-
-- `ObjectFieldIds.cs` — serializer ids and per-message field ids.
-- `Constants.cs` — handshake property names, execution modes, session-event types, test states and the protocol
- version.
-
-Because they are delivered as `contentFiles/cs/any` with `BuildAction=Compile`, the consumer compiles them into its
-**own** assembly, so the `internal` types are visible without any `InternalsVisibleTo` plumbing.
-
-## Scope
-
-Only the wire **contract** (ids + constants) is shared here. The message **models** and **serializers** are not
-included yet because they still depend on `TestMetadataProperty`
-(`Microsoft.Testing.Platform.Extensions.Messages`) and use a different class shape than the SDK's copy; sharing them
-requires decoupling/unifying first.
diff --git a/src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/Microsoft.Testing.Platform.DotnetTestProtocol.csproj b/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/Microsoft.Testing.Platform.Internal.DotnetTest.csproj
similarity index 61%
rename from src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/Microsoft.Testing.Platform.DotnetTestProtocol.csproj
rename to src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/Microsoft.Testing.Platform.Internal.DotnetTest.csproj
index 977aac4bef..7029e32f37 100644
--- a/src/Platform/Microsoft.Testing.Platform.DotnetTestProtocol/Microsoft.Testing.Platform.DotnetTestProtocol.csproj
+++ b/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/Microsoft.Testing.Platform.Internal.DotnetTest.csproj
@@ -11,14 +11,19 @@
netstandard2.0truefalse
@@ -42,7 +47,7 @@
+This is an INTERNAL, source-only package: it shares - as compiled source - the pieces of the 'dotnet test' <-> Microsoft.Testing.Platform integration that must stay a single source of truth across the microsoft/testfx and dotnet/sdk repositories (today: the named-pipe wire contract; designed to also host the terminal reporter). It is an implementation detail of 'dotnet test' integration and is NOT intended for direct end-user consumption.]]>
diff --git a/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md b/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md
new file mode 100644
index 0000000000..e0bafacd02
--- /dev/null
+++ b/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md
@@ -0,0 +1,34 @@
+# Microsoft.Testing.Platform.Internal.DotnetTest
+
+This is an **internal, source-only** package. It shares — **as compiled source** — the pieces of the `dotnet test`
+↔ [Microsoft.Testing.Platform](https://www.nuget.org/packages/Microsoft.Testing.Platform) integration that must
+stay a **single source of truth** across the [microsoft/testfx](https://github.com/microsoft/testfx) and
+[dotnet/sdk](https://github.com/dotnet/sdk) repositories, instead of being hand-copied (where any drift is a silent
+break).
+
+> ⚠️ This package is an **implementation detail** of `dotnet test` integration — that is what the `Internal` in the
+> name signals. It is `IsShipping=false` (not published to nuget.org) and is **not** intended for direct end-user
+> consumption. (A *public* MTP client/orchestration library was proposed in
+> [#5667](https://github.com/microsoft/testfx/issues/5667); that is a separate effort, closed pending a real use
+> case.)
+
+## What's inside
+
+The package ships shared source files as `contentFiles/cs/any` with `BuildAction=Compile`, so the consumer compiles
+them into its **own** assembly and the `internal` types are visible without any `InternalsVisibleTo` plumbing.
+
+Today it ships the `dotnet test` named-pipe **wire contract**:
+
+- `ObjectFieldIds.cs` — serializer ids and per-message field ids.
+- `Constants.cs` — handshake property names, execution modes, session-event types, test states and the protocol
+ version.
+
+It is designed to grow to host the other source shared with `dotnet test` (e.g. the terminal reporter).
+
+## Scope
+
+Only the wire **contract** (ids + constants) is shared today. The message **models** and **serializers** are not
+included yet because they still depend on `TestMetadataProperty`
+(`Microsoft.Testing.Platform.Extensions.Messages`) and use a different class shape than the SDK's copy; sharing them
+requires decoupling/unifying first.
+
From c9aed40c60c6f156ab00f151d7a0587fa91c8f05 Mon Sep 17 00:00:00 2001
From: Copilot <223556219+Copilot@users.noreply.github.com>
Date: Fri, 19 Jun 2026 14:29:35 +0200
Subject: [PATCH 2/3] Fix markdownlint MD012 (trailing blank lines) in
PACKAGE.md
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
.../Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md b/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md
index e0bafacd02..78e8636516 100644
--- a/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md
+++ b/src/Platform/Microsoft.Testing.Platform.Internal.DotnetTest/PACKAGE.md
@@ -31,4 +31,3 @@ Only the wire **contract** (ids + constants) is shared today. The message **mode
included yet because they still depend on `TestMetadataProperty`
(`Microsoft.Testing.Platform.Extensions.Messages`) and use a different class shape than the SDK's copy; sharing them
requires decoupling/unifying first.
-
From 028c4ec97af3ba836d505ec98652d310fc049bec Mon Sep 17 00:00:00 2001
From: Copilot <223556219+Copilot@users.noreply.github.com>
Date: Fri, 19 Jun 2026 15:40:02 +0200
Subject: [PATCH 3/3] Restore TerminalResources translations wiped by
OneLocBuild (#9248)
#9246 extracted the terminal test-run summary strings into the new
TerminalResources.resx and switched TerminalTestReporter to use it, with
the translations carried over (its CI was green). The subsequent
OneLocBuild check-in (#9248) then reset every TerminalResources.*.xlf
entry from state="translated" back to state="new" with the English source
as the target, because the localization database did not yet know about
the freshly added resource.
As a result, all TerminalTestReporter summary output (e.g. "Test run
summary:", and the total/failed/succeeded/skipped labels) rendered in
English regardless of locale, breaking LocalizationTests and
LocalizationFailingTests on every PR built after #9248.
This restores the 13 TerminalResources.*.xlf files to their #9246
(translated) state. A future OneLocBuild run will reconcile them once the
loc database is updated.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
.../Terminal/xlf/TerminalResources.cs.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.de.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.es.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.fr.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.it.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.ja.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.ko.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.pl.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.pt-BR.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.ru.xlf | 76 +++++++++----------
.../Terminal/xlf/TerminalResources.tr.xlf | 76 +++++++++----------
.../xlf/TerminalResources.zh-Hans.xlf | 76 +++++++++----------
.../xlf/TerminalResources.zh-Hant.xlf | 76 +++++++++----------
13 files changed, 494 insertions(+), 494 deletions(-)
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.cs.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.cs.xlf
index 1955a184a4..71476aebb8 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.cs.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.cs.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ PřerušenoActual
- Actual
+ Skutečnostcanceled
- canceled
+ zrušenoCanceling the test session...
- Canceling the test session...
+ Ruší se testovací relace...Console is already in batching mode.
- Console is already in batching mode.
+ Konzole je již v režimu dávkování.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ doba trváníExpected
- Expected
+ Očekávánofailed
- failed
+ selhaloFor test
- For test
+ Pro testováníis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Vytvořené artefakty souboru v procesu:and {0} more
- and {0} more
+ a ještě {0}{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} spuštěné testy{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Vytvořené artefakty souboru mimo proces:passed
- passed
+ úspěchPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Dalším stisknutím kombinace kláves Ctrl+C vynutíte ukončení.{Locked="Ctrl+C"}skipped
- skipped
+ vynechánoat
- at
+ vat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ vin that is used in stack frame it is followed by file nameError output
- Error output
+ Chybový výstupStandard output
- Standard output
+ Standardní výstupsucceeded
- succeeded
+ úspěšné
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ Přepínač --ansi očekává jeden parametr s hodnotou auto, on (nebo true, enable, 1) nebo off (nebo false, disable, 0).{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Zakažte výstup řídicích znaků ANSI na obrazovku.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Podrobnosti výstupu při vytváření sestav testů.
+Platné hodnoty jsou Normal a Detailed. Výchozí hodnota je Normal.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output očekává jeden parametr s hodnotou Normal nebo Detailed.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout a --show-stderr očekávají jeden parametr s hodnotou All, Failed nebo None.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Určuje, kdy se má zobrazit zachycený výstup chyby testu.
+Platné hodnoty jsou All, Failed, None. Výchozí hodnota je All (nebo Failed, když se zjistí prostředí LLM / agenta AI).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Určuje, kdy se má zobrazit zachycený standardní výstup testu.
+Platné hodnoty jsou All, Failed, None. Výchozí hodnota je All (nebo Failed, když se zjistí prostředí LLM / agenta AI).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Zapíše výsledky testu do terminálu.Terminal test reporter
- Terminal test reporter
+ Oznamovatel testu termináluTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Souhrn zjišťování testů: nalezené testy: {0}{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Souhrn testovacího běhu:total
- total
+ celkem
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.de.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.de.xlf
index 1448bc7746..d0974c4a92 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.de.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.de.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ AbgebrochenActual
- Actual
+ Aktuellcanceled
- canceled
+ AbgebrochenCanceling the test session...
- Canceling the test session...
+ Die Testsitzung wird abgebrochen...Console is already in batching mode.
- Console is already in batching mode.
+ Die Konsole befindet sich bereits im Batchmodus.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ DauerExpected
- Expected
+ Erwartetfailed
- failed
+ fehlerhaftFor test
- For test
+ Für Testis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ In Bearbeitung Dateiartefakte erstellt:and {0} more
- and {0} more
+ und {0} weitere{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} ausgeführten Tests{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Nicht verarbeitete Dateiartefakte erstellt:passed
- passed
+ erfolgreichPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Drücken Sie erneut Ctrl+C, um das Beenden zu erzwingen.{Locked="Ctrl+C"}skipped
- skipped
+ übersprungenat
- at
+ umat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ inin that is used in stack frame it is followed by file nameError output
- Error output
+ FehlerausgabeStandard output
- Standard output
+ Standardausgabesucceeded
- succeeded
+ erfolgreich
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi erwartet einen einzelnen Parameter mit dem Wert „auto“, „on“ (oder „true“, „enable“,„1“) oder „off“ (oder „false“, „disable“, „0“).{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Deaktivieren Sie die Ausgabe von ANSI-Escape-Zeichen auf dem Bildschirm.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Ausgabeausführlichkeit beim Melden von Tests.
+Gültige Werte sind „Normal“, „Detailed“. Der Standardwert ist „Normal“.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ „--output“ erwartet einen einzelnen Parameter mit dem Wert „Normal“ oder „Detailed“.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ Die Optionen --show-stdout und --show-stderr erwarten einen einzelnen Parameter mit dem Wert „All“, „Failed“ oder „None“.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Legt fest, wann die erfasste Fehlerausgabe eines Tests angezeigt werden soll.
+Gültige Werte sind „All“, „Failed“ und „None“. Der Standardwert ist „All“ (oder „Failed“, wenn eine LLM-/KI-Agent-Umgebung erkannt wird).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Legt fest, wann die erfasste Standardausgabe eines Tests angezeigt werden soll.
+Gültige Werte sind „All“, „Failed“ und „None“. Der Standardwert ist „All“ (oder „Failed“, wenn eine LLM-/KI-Agent-Umgebung erkannt wird).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Schreibt Testergebnisse in das Terminal.Terminal test reporter
- Terminal test reporter
+ Terminaltest-ReporterTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Zusammenfassung der Testermittlung: {0} Test(s) gefunden{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Testlaufzusammenfassung:total
- total
+ gesamt
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.es.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.es.xlf
index 9739739cb0..67a0ff5f7d 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.es.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.es.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ AnuladoActual
- Actual
+ Realcanceled
- canceled
+ canceladaCanceling the test session...
- Canceling the test session...
+ Cancelando la sesión de prueba...Console is already in batching mode.
- Console is already in batching mode.
+ La consola ya está en modo de procesamiento por lotes.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ duraciónExpected
- Expected
+ Se esperabafailed
- failed
+ con erroresFor test
- For test
+ Para pruebais followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Artefactos de archivo en proceso producidos:and {0} more
- and {0} more
+ y {0} más{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} pruebas en ejecución{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Artefactos de archivo fuera de proceso producidos:passed
- passed
+ correctoPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Presione Ctrl+C de nuevo para forzar la salida.{Locked="Ctrl+C"}skipped
- skipped
+ omitidoat
- at
+ a lasat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ enin that is used in stack frame it is followed by file nameError output
- Error output
+ Salida de errorStandard output
- Standard output
+ Salida estándarsucceeded
- succeeded
+ correcto
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi espera un único parámetro con el valor 'auto', 'on' (o 'true', 'enable', '1') o 'off' (o 'false', 'disable', '0').{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Deshabilite la salida de caracteres de escape ANSI en la pantalla.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Nivel de detalle de la salida al crear informes de pruebas.
+Los valores válidos son 'Normal', 'Detailed'. El valor predeterminado es 'Normal'.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output espera un único parámetro con el valor "Normal" o "Detailed".{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout y --show-stderr esperan un único parámetro con el valor "All", "Failed" o "None".{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Determina cuándo mostrar la salida de error capturada de una prueba.
+Los valores válidos son "All", "Failed", "None". El valor predeterminado es "All" (o "Failed" cuando se detecta un entorno de agente LLM/AI).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Determina cuándo mostrar la salida estándar capturada de una prueba.
+Los valores válidos son "All", "Failed", "None". El valor predeterminado es "All" (o "Failed" cuando se detecta un entorno de agente LLM/AI).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Escribe los resultados de pruebas en el terminal.Terminal test reporter
- Terminal test reporter
+ Informador de pruebas de terminalTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Resumen de detección de pruebas: se encontraron {0} pruebas{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Resumen de la serie de pruebas:total
- total
+ total
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.fr.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.fr.xlf
index 0d9d510aa0..75a6f42bf3 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.fr.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.fr.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ AbandonnéActual
- Actual
+ Réelcanceled
- canceled
+ annuléCanceling the test session...
- Canceling the test session...
+ Annulation en cours de la session de test... Merci de patienter.Console is already in batching mode.
- Console is already in batching mode.
+ La console est déjà en mode de traitement par lot.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ duréeExpected
- Expected
+ Attendufailed
- failed
+ échecFor test
- For test
+ Pour le testis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Artéfacts produits dans les dossiers en cours de traitement :and {0} more
- and {0} more
+ et {0} de plus{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} tests en cours d’exécution{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Artefacts de fichier hors processus produits :passed
- passed
+ réussitePress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Appuyez de nouveau sur Ctrl+C pour forcer la fermeture.{Locked="Ctrl+C"}skipped
- skipped
+ ignoréat
- at
+ surat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ dansin that is used in stack frame it is followed by file nameError output
- Error output
+ Sortie d’erreurStandard output
- Standard output
+ Sortie standardsucceeded
- succeeded
+ opération réussie
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi attend un seul paramètre avec la valeur « auto », « on » (ou « true », « enable », « 1 ») ou « off » (ou « false », « disable », « 0 »).{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Désactiver la sortie des caractères d’échappement ANSI à l’écran.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Verbosité de la sortie lors de l’établissement des rapports de tests.
+Les valeurs valides sont « Normal » et « Detailed ». La valeur par défaut est « Normal ».{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output attend un seul paramètre avec la valeur « Normal » ou « Detailed ».{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout et --show-stderr attendent un seul paramètre avec la valeur « All », « Failed » ou « None ».{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Permet de déterminer quand afficher la sortie d’erreur capturée d’un test.
+Les valeurs valides sont « All », « Failed » et « None ». La valeur par défaut est « All » (ou « Failed » lorsqu’un environnement d’agent LLM/IA est détecté).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Permet de déterminer quand afficher la sortie standard capturée d’un test.
+Les valeurs valides sont « All », « Failed » et « None ». La valeur par défaut est « All » (ou « Failed » lorsqu’un environnement d’agent LLM/IA est détecté).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Écrit les résultats des tests dans le terminal.Terminal test reporter
- Terminal test reporter
+ Rapporteur de test terminalTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Résumé de la découverte de tests : {0} test(s) trouvé(s){0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Résumé de série de tests :total
- total
+ total
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.it.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.it.xlf
index 44634a52c1..870691db61 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.it.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.it.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ Operazione interrottaActual
- Actual
+ Effettivicanceled
- canceled
+ operazione annullataCanceling the test session...
- Canceling the test session...
+ Annullamento della sessione di test in corso...Console is already in batching mode.
- Console is already in batching mode.
+ La console è già in modalità batch.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ durataExpected
- Expected
+ Previstofailed
- failed
+ operazione non riuscitaFor test
- For test
+ Per testis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Artefatti file in fase di elaborazione prodotti:and {0} more
- and {0} more
+ e altri {0}{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} test in esecuzione{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Artefatti file non in elaborazione prodotti:passed
- passed
+ superatoPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Premere di nuovo Ctrl+C per forzare l'uscita.{Locked="Ctrl+C"}skipped
- skipped
+ ignoratoat
- at
+ aat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ inin that is used in stack frame it is followed by file nameError output
- Error output
+ Output erroriStandard output
- Standard output
+ Output standardsucceeded
- succeeded
+ riusciti
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi prevede un singolo parametro con valore ''auto'', ''on'' (o ''true'', ''enable'', ''1'') o ''off'' (o ''false'', ''disable'', ''0'').{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Disabilita l'output dei caratteri di escape ANSI sullo schermo.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Livello di dettaglio di output durante la creazione di report di test.
+I valori validi sono 'Normal', 'Detailed'. L'impostazione predefinita è 'Normal'.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ l’--output prevede un singolo parametro con un valore 'Normal' o 'Detailed'.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout e --show-stderr prevedono un singolo parametro con valore 'All', 'Failed' o 'None'.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Determina quando mostrare l'output degli errori acquisito di un test.
+I valori validi sono 'All', 'Failed', 'None'. L'impostazione predefinita è 'All' (o 'Failed' quando viene rilevato un ambiente agente LLM/IA).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Determina quando mostrare l'output standard acquisito di un test.
+I valori validi sono 'All', 'Failed', 'None'. L'impostazione predefinita è 'All' (o 'Failed' quando viene rilevato un ambiente agente LLM/IA).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Scrive i risultati del test nel terminale.Terminal test reporter
- Terminal test reporter
+ Reporter test terminaleTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Riepilogo individuazione test: trovati {0} test{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Riepilogo esecuzione test:total
- total
+ totali
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ja.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ja.xlf
index 3ae6441728..57b9cb667a 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ja.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ja.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ 中止されましたActual
- Actual
+ 実際canceled
- canceled
+ キャンセルされましたCanceling the test session...
- Canceling the test session...
+ テスト セッションを取り消しています...Console is already in batching mode.
- Console is already in batching mode.
+ コンソールは既にバッチ 処理モードです。Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ 期間Expected
- Expected
+ 予想failed
- failed
+ 失敗For test
- For test
+ テスト用is followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ インプロセスのファイル成果物が生成されました:and {0} more
- and {0} more
+ その他 {0} 件{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} テストを実行しています{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ アウトプロセスのファイル成果物が生成されました:passed
- passed
+ 合格しましたPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ 強制終了するには、Ctrl+C キーをもう一度押してください。{Locked="Ctrl+C"}skipped
- skipped
+ スキップされましたat
- at
+ 場所:at that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ 場所:in that is used in stack frame it is followed by file nameError output
- Error output
+ エラー出力Standard output
- Standard output
+ 標準出力succeeded
- succeeded
+ 成功
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi には、値 'auto'、'on' (または 'true'、'enable'、'1')、あるいは 'off' (または 'false'、'disable'、'0') の単一のパラメーターが必要です。{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ 画面への ANSI エスケープ文字の出力を無効にします。
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ テストを報告する際の出力の詳細。
+有効な値は 'Normal'、'Detailed' です。既定値は 'Normal' です。{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output には、値が 'Normal' または 'Detailed' の単一のパラメーターが必要です。{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout と --show-stderr には、値が 'All'、'Failed'、または 'None' の 1 つのパラメーターが必要です。{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ テストのキャプチャされたエラー出力を表示するタイミングを決定します。
+有効な値は 'All'、'Failed'、'None' です。既定値は 'All' (LLM/AI エージェント環境が検出された場合は 'Failed') です。{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ テストのキャプチャされた標準の出力を表示するタイミングを決定します。
+有効な値は 'All'、'Failed'、'None' です。既定値は 'All' (LLM/AI エージェント環境が検出された場合は 'Failed') です。{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ テスト結果をターミナルに書き込みます。Terminal test reporter
- Terminal test reporter
+ ターミナル テストの報告者Test discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ テスト検出の要約: {0} 個のテストが見つかりました{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ テストの実行の概要:total
- total
+ 合計
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ko.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ko.xlf
index b38a343f43..3f75bd79af 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ko.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ko.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ 중단됨Actual
- Actual
+ 실제canceled
- canceled
+ 취소됨Canceling the test session...
- Canceling the test session...
+ 테스트 세션을 취소하는 중...Console is already in batching mode.
- Console is already in batching mode.
+ 콘솔이 이미 일괄 처리 모드에 있습니다.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ 기간Expected
- Expected
+ 필요failed
- failed
+ 실패For test
- For test
+ 테스트용is followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ 생성된 In process 파일 아티팩트:and {0} more
- and {0} more
+ 외 {0}개{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ 실행 중인 테스트 {0}{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ 생성된 Out of process 파일 아티팩트:passed
- passed
+ 통과Press Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ 강제 종료하려면 Ctrl+C를 한 번 더 누르세요.{Locked="Ctrl+C"}skipped
- skipped
+ 건너뜀at
- at
+ 위치at that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ 포함in that is used in stack frame it is followed by file nameError output
- Error output
+ 오류 출력Standard output
- Standard output
+ 표준 출력succeeded
- succeeded
+ 성공
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi에는 값이 'auto', 'on'(또는 'true', 'enable', '1') 또는 'off'(또는 'false', 'disable', '0')인 단일 매개 변수가 필요합니다.{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ ANSI 이스케이프 문자를 화면에 출력하지 않도록 설정합니다.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ 테스트를 보고할 때 세부 정보 표시를 출력합니다.
+유효한 값은 'Normal', 'Detailed'입니다. 기본값은 'Normal'입니다.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output에는 값이 'Normal' 또는 'Detailed'인 단일 매개 변수가 필요합니다.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout 및 --show-stderr에는 값이 'All', 'Failed' 또는 'None'인 단일 매개 변수가 필요합니다.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ 테스트에서 캡처한 오류 출력을 언제 표시할지 결정합니다.
+유효한 값은 'All', 'Failed', 'None'입니다. LLM/AI 에이전트 환경이 감지되면 기본값은 'All'(또는 'Failed')입니다.{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ 테스트에서 캡처한 표준 출력을 언제 표시할지 결정합니다.
+유효한 값은 'All', 'Failed', 'None'입니다. LLM/AI 에이전트 환경이 감지되면 기본값은 'All'(또는 'Failed')입니다.{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ 테스트 결과를 터미널에 씁니다.Terminal test reporter
- Terminal test reporter
+ 터미널 테스트 보고자Test discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ 테스트 검색 요약: {0}개의 테스트를 찾음{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ 테스트 실행 요약:total
- total
+ 합계
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pl.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pl.xlf
index d7220ab5a3..89e39e7552 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pl.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pl.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ PrzerwanoActual
- Actual
+ Rzeczywistecanceled
- canceled
+ anulowaneCanceling the test session...
- Canceling the test session...
+ Trwa anulowanie sesji testowej...Console is already in batching mode.
- Console is already in batching mode.
+ Konsola jest już w trybie dzielenia na partie.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ czas trwaniaExpected
- Expected
+ Oczekiwanefailed
- failed
+ zakończone niepowodzeniemFor test
- For test
+ Na potrzeby testuis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Wygenerowane artefakty pliku w trakcie procesu:and {0} more
- and {0} more
+ i {0} więcej{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ testy {0} uruchomione{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Wygenerowane artefakty pliku poza procesem:passed
- passed
+ zakończone powodzeniemPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Naciśnij ponownie klawisze Ctrl+C, aby wymusić wyjście.{Locked="Ctrl+C"}skipped
- skipped
+ pominięteat
- at
+ oat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ win that is used in stack frame it is followed by file nameError output
- Error output
+ Dane wyjściowe w przypadku błęduStandard output
- Standard output
+ Standardowe dane wyjściowesucceeded
- succeeded
+ zakończone powodzeniem
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi oczekuje jednego parametru o wartości „auto”, „on” (lub „true”, „enable”, „1”) albo „off” (lub „false”, „disable”, „0”).{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Wyłącz wyprowadzanie znaków ucieczki ANSI na ekran.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Szczegółowość danych wyjściowych podczas raportowania testów.
+Prawidłowe wartości to „Normal”, „Detailed”. Wartość domyślna to „Normal”.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ Parametr --output oczekuje pojedynczego parametru o wartości „Normal” lub „Detailed”.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ Polecenia --show-stdout i --show-stderr oczekują pojedynczego parametru o wartości „All”, „Failed” lub „None”.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Określa, kiedy pokazać przechwycone dane wyjściowe błędu testu.
+Prawidłowe wartości to „All”, „Failed”, „None”. Wartość domyślna to „All” (lub „Failed” po wykryciu środowiska modelu LLM / agenta AI).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Określa, kiedy pokazać przechwycone standardowe dane wyjściowe testu.
+Prawidłowe wartości to „All”, „Failed”, „None”. Wartość domyślna to „All” (lub „Failed” po wykryciu środowiska modelu LLM / agenta AI).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Zapisuje wyniki testu w terminalu.Terminal test reporter
- Terminal test reporter
+ Raport testowy terminaluTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Podsumowanie odnajdywania testów: znalezione testy: {0}{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Podsumowanie przebiegu testu:total
- total
+ łącznie
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pt-BR.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pt-BR.xlf
index cb5bf5d2ca..50a17cfe63 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pt-BR.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.pt-BR.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ AnuladoActual
- Actual
+ Realcanceled
- canceled
+ canceladoCanceling the test session...
- Canceling the test session...
+ Cancelamento da sessão de testes...Console is already in batching mode.
- Console is already in batching mode.
+ O console já está no modo de lote.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ duraçãoExpected
- Expected
+ Esperadofailed
- failed
+ com falhaFor test
- For test
+ Para testeis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Artefatos de arquivo de processo produzidos:and {0} more
- and {0} more
+ e mais {0}{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} testes em execução{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Artefatos de arquivo fora do processo produzidos:passed
- passed
+ aprovadoPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Pressione Ctrl+C de novo para forçar a saída.{Locked="Ctrl+C"}skipped
- skipped
+ ignoradoat
- at
+ emat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ emin that is used in stack frame it is followed by file nameError output
- Error output
+ Saída de errosStandard output
- Standard output
+ Saída padrãosucceeded
- succeeded
+ bem-sucedido
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi espera um único parâmetro com o valor 'auto', 'on' (ou 'true', 'enable', '1') ou 'off' (ou 'false', 'disable', '0').{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Desabilite a saída de caracteres de escape ANSI para a tela.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Detalhamento da saída ao relatar testes
+Os valores válidos são “Normal”, “Detailed”. O padrão é “Normal”.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output espera um único parâmetro com o valor “Normal” ou “Detailed”.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout e --show-stderr esperam um único parâmetro com o valor 'All', 'Failed' ou 'None'.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Determina quando mostrar a saída de erro capturada de um teste.
+Os valores válidos são 'All', 'Failed', 'None'. O padrão é 'All' (ou 'Failed' quando um ambiente de agente de LLM/IA é detectado).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Determina quando mostrar a saída padrão capturada de um teste.
+Os valores válidos são 'All', 'Failed', 'None'. O padrão é 'All' (ou 'Failed' quando um ambiente de agente de LLM/IA é detectado).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Grava resultados de teste no terminal.Terminal test reporter
- Terminal test reporter
+ Relator de teste do terminalTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Resumo da descoberta de teste: {0} teste(s) encontrado(s){0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Resumo da execução de teste:total
- total
+ total
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ru.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ru.xlf
index 37251dc87b..537c1dd9e7 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ru.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.ru.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ ПрерваноActual
- Actual
+ Фактическиеcanceled
- canceled
+ отмененоCanceling the test session...
- Canceling the test session...
+ Отмена тестового сеанса...Console is already in batching mode.
- Console is already in batching mode.
+ Консоль уже находится в пакетном режиме.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ длительностьExpected
- Expected
+ Ожидалосьfailed
- failed
+ сбойFor test
- For test
+ Для тестированияis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Созданные в процессе артефакты файлов:and {0} more
- and {0} more
+ и еще {0}{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} тестов{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Созданные вне процесса артефакты файлов:passed
- passed
+ пройденоPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Нажмите Ctrl+C еще раз, чтобы выполнить принудительный выход.{Locked="Ctrl+C"}skipped
- skipped
+ пропущеноat
- at
+ вat that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ вin that is used in stack frame it is followed by file nameError output
- Error output
+ Вывод ошибокStandard output
- Standard output
+ Стандартный выводsucceeded
- succeeded
+ успешно выполнено
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi ожидает один параметр со значением "auto", "on" (или "true", "enable", "1") либо "off" (или "false", "disable", "0").{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ Отключить вывод escape-символов ANSI на экран.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Уровень детализации вывода при отправке отчетов о тестах.
+Допустимые значения: "Normal", "Detailed". Значение по умолчанию: "Normal".{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output ожидает один параметр со значением "Normal" или "Detailed".{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout и --show-stderr принимают один параметр со значением "All" (Все), "Failed" (Сбой), "None" (Нет).{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Определяет, когда показывать зафиксированный вывод ошибок теста.
+Допустимые значения: "All" (Все), "Failed" (Сбой), "None" (Нет). Значение по умолчанию — "All" (Все) (или "Failed" (Сбой), если обнаружена среда агента LLM/ИИ).{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Определяет, когда показывать зафиксированный стандартный вывод теста.
+Допустимые значения: "All" (Все), "Failed" (Сбой), "None" (Нет). Значение по умолчанию — "All" (Все) (или "Failed" (Сбой), если обнаружена среда агента LLM/ИИ).{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Записывает результаты теста в терминал.Terminal test reporter
- Terminal test reporter
+ Средство отчетности о тесте для терминалаTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Сводка по обнаружению тестов: найдены тесты ({0}){0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Сводка тестового запуска:total
- total
+ всего
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.tr.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.tr.xlf
index a50dee3cb1..ecf9265e56 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.tr.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.tr.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ DurdurulduActual
- Actual
+ Fiilicanceled
- canceled
+ iptal edildiCanceling the test session...
- Canceling the test session...
+ Test oturumu iptal ediliyor...Console is already in batching mode.
- Console is already in batching mode.
+ Konsol zaten işlem grubu oluşturma modunda bulunuyor.Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ süreExpected
- Expected
+ Beklenenfailed
- failed
+ başarısızFor test
- For test
+ Test içinis followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ Üretilen işlem içi dosya yapıtları:and {0} more
- and {0} more
+ ve {0} tane daha{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ {0} test çalıştırılıyor{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ Üretilen işlem dışı dosya yapıtları:passed
- passed
+ başarılıPress Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ Çıkmayı zorlamak için Ctrl+C tuşlarına yeniden basın.{Locked="Ctrl+C"}skipped
- skipped
+ atlandıat
- at
+ şu yöntemle:at that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ şu dosyada:in that is used in stack frame it is followed by file nameError output
- Error output
+ Hata çıkışıStandard output
- Standard output
+ Standart çıkışsucceeded
- succeeded
+ başarılı
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi, değeri 'auto', 'on' (veya 'true', 'enable', '1') ya da 'off' (veya 'false', 'disable', '0') olan tek bir parametre bekliyor.{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ ANSI kaçış karakterlerinin ekrana çıkışını devre dışı bırakın.
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ Testleri bildirirken çıkış ayrıntı düzeyi.
+Geçerli değerler: ‘Normal’, ‘Detailed’. Varsayılan değer: ‘Normal’.{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output ‘Normal’ veya ‘Detailed’ değerine sahip tek bir parametre beklenir.{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout ve --show-stderr, değeri 'All', 'Failed' veya 'None' olan tek bir parametre bekliyor.{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Testte yakalanan hata çıktısının ne zaman gösterileceğini belirler.
+Geçerli değerler: 'All', 'Failed', 'None'. Varsayılan değer 'All' (veya bir LLM/AI destekli aracı ortamı algılandığında 'Failed').{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ Testte yakalanan standart çıktının ne zaman gösterileceğini belirler.
+Geçerli değerler: 'All', 'Failed', 'None'. Varsayılan değer 'All' (veya bir LLM/AI destekli aracı ortamı algılandığında 'Failed').{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ Test sonuçlarını terminale yazar.Terminal test reporter
- Terminal test reporter
+ Terminal test raporlayıcısıTest discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ Test bulma özeti: {0} test bulundu{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ Test çalıştırması özeti:total
- total
+ toplam
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hans.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hans.xlf
index dfe80b0c2a..6c94f4aec6 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hans.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hans.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ 已中止Actual
- Actual
+ 实际canceled
- canceled
+ 已取消Canceling the test session...
- Canceling the test session...
+ 正在取消测试会话...Console is already in batching mode.
- Console is already in batching mode.
+ 控制台已处于批处理模式。Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ 持续时间Expected
- Expected
+ 预期failed
- failed
+ 失败For test
- For test
+ 用于测试is followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ 生成的进程内文件项目:and {0} more
- and {0} more
+ 和其他 {0} 项{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ 正在运行 {0} 测试{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ 生成的进程外文件项目:passed
- passed
+ 已通过Press Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ 再次按 Ctrl+C 强制退出。{Locked="Ctrl+C"}skipped
- skipped
+ 已跳过at
- at
+ 在at that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ 位于in that is used in stack frame it is followed by file nameError output
- Error output
+ 错误输出Standard output
- Standard output
+ 标准输出succeeded
- succeeded
+ 成功
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi 需要值为“auto”、“on”(或 'true'、“enable”、'1')或“off”(或 'false'、“disable”、'0')的单个参数。{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ 禁用将 ANSI 转义字符输出到屏幕。
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ 报告测试时的输出详细程度。
+有效值为 "Normal"、"Detailed"。默认值为 "Normal"。{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output 应为值为“Normal”或“Detailed”的单个参数。{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout and --show-stderr 需要值为“All”、“Failed”或“None”的单个参数。{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ 确定何时显示测试捕获的错误输出。
+有效值为“All”、“Failed”、“None”。默认值为“All”(如果检测到 LLM/AI 智能体环境,则为“Failed”)。{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ 确定何时显示测试的捕获标准输出。
+有效值为“All”、“Failed”、“None”。默认值为“All”(如果检测到 LLM/AI 智能体环境,则为“Failed”)。{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ 将测试结果写入终端。Terminal test reporter
- Terminal test reporter
+ 终端测试报告器Test discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ 测试发现摘要: 找到 {0} 个测试{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ 测试运行摘要:total
- total
+ 总计
-
\ No newline at end of file
+
diff --git a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hant.xlf b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hant.xlf
index 3af8fc72d8..dcfe375665 100644
--- a/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hant.xlf
+++ b/src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/xlf/TerminalResources.zh-Hant.xlf
@@ -2,109 +2,109 @@
-
+ Aborted
- Aborted
+ 已中止Actual
- Actual
+ 實際canceled
- canceled
+ 已取消Canceling the test session...
- Canceling the test session...
+ 正在取消測試工作階段...Console is already in batching mode.
- Console is already in batching mode.
+ 主控台已處於批次處理模式。Exception that is thrown when console is already collecting input into a batch (into a string builder), and code asks to enable batching mode again.duration
- duration
+ 持續時間Expected
- Expected
+ 預期failed
- failed
+ 已失敗For test
- For test
+ 用於測試is followed by test nameIn process file artifacts produced:
- In process file artifacts produced:
+ 產生的流程内檔案成品:and {0} more
- and {0} more
+ 和其他 {0} 個{0} is the number of additional active tests.{0} tests running
- {0} tests running
+ 正在執行 {0} 測試{0} is the number of currently running tests.Out of process file artifacts produced:
- Out of process file artifacts produced:
+ 產生的流程外檔案成品:passed
- passed
+ 已通過Press Ctrl+C again to force exit.
- Press Ctrl+C again to force exit.
+ 再次按 Ctrl+C 以強制離開。{Locked="Ctrl+C"}skipped
- skipped
+ 已跳過at
- at
+ 於at that is used for a stack frame location in a stack trace, is followed by a class and method namein
- in
+ 在in that is used in stack frame it is followed by file nameError output
- Error output
+ 錯誤輸出Standard output
- Standard output
+ 標準輸出succeeded
- succeeded
+ 成功
@@ -120,12 +120,12 @@ When both --ansi and --no-ansi are provided, --ansi wins.
--ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
- --ansi expects a single parameter with value 'auto', 'on' (or 'true', 'enable', '1') or 'off' (or 'false', 'disable', '0').
+ --ansi 應有值為 'auto'、'on' (或 'true'、'enable'、'1') 或 'off' (或 'false'、'disable'、'0') 的單一參數。{Locked="--ansi"}{Locked="auto"}{Locked="on"}{Locked="true"}{Locked="enable"}{Locked="1"}{Locked="off"}{Locked="false"}{Locked="disable"}{Locked="0"}Disable outputting ANSI escape characters to screen.
- Disable outputting ANSI escape characters to screen.
+ 停用將 ANSI 逸出字元輸出至螢幕。
@@ -136,13 +136,13 @@ When both --ansi and --no-ansi are provided, --ansi wins.
Output verbosity when reporting tests.
Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
- Output verbosity when reporting tests.
-Valid values are 'Normal', 'Detailed'. Default is 'Normal'.
+ 報告測試時的輸出詳細程度。
+有效值為 'Normal'、'Detailed'。預設為 'Normal'。{Locked="Normal"}{Locked="Detailed"}--output expects a single parameter with value 'Normal' or 'Detailed'.
- --output expects a single parameter with value 'Normal' or 'Detailed'.
+ --output 需要值為 'Normal' 或 'Detailed' 的單一參數。{Locked="--output"}{Locked="Normal"}{Locked="Detailed"}
@@ -178,48 +178,48 @@ This option takes precedence over the deprecated --no-progress flag.
--show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
- --show-stdout and --show-stderr expect a single parameter with value 'All', 'Failed', or 'None'.
+ --show-stdout 和 --show-stderr 需接收一個參數,其值必須為「All」、「Failed」或「None」。{Locked="--show-stdout"}{Locked="--show-stderr"}{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured error output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured error output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ 決定何時顯示測試擷取到的錯誤輸出。
+有效值為 'All'、'Failed'、'None'。預設值為 'All' (或偵測到 LLM/AI 代理程式環境時為 'Failed')。{Locked="All"}{Locked="Failed"}{Locked="None"}Determines when to show captured standard output of a test.
Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
- Determines when to show captured standard output of a test.
-Valid values are 'All', 'Failed', 'None'. Default is 'All' (or 'Failed' when an LLM/AI agent environment is detected).
+ 決定何時顯示測試擷取到的標準輸出。
+有效值為 'All'、'Failed'、'None'。預設值為 'All' (或偵測到 LLM/AI 代理程式環境時為 'Failed')。{Locked="All"}{Locked="Failed"}{Locked="None"}Writes test results to terminal.
- Writes test results to terminal.
+ 將測試結果寫入終端機。Terminal test reporter
- Terminal test reporter
+ 終端機測試報告者Test discovery summary: found {0} test(s)
- Test discovery summary: found {0} test(s)
+ 測試探索摘要: 找到 {0} 個測試{0} is the number of discovered tests.Test run summary:
- Test run summary:
+ 測試回合摘要:total
- total
+ 總計
-
\ No newline at end of file
+