forked from microsoft/vstest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResources.cs.xlf
1708 lines (1696 loc) · 111 KB
/
Resources.cs.xlf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="../Resources.resx" build-num="1899456624">
<header>
<count-group name="BlackBox wordcount">
<count count-type="x-wordCount">1766</count>
<count count-type="x-adjWordCount">1498.1</count>
<count count-type="x-curAdjWordCount">1498.1</count>
<count count-type="x-repeatAdjWordCount">1.25</count>
<count count-type="x-termWordCount">0</count>
</count-group>
<count-group name="BlackBox wordcount analysis">
<count count-type="x-match102%">0</count>
<count count-type="x-match101%">0</count>
<count count-type="x-match100%">0</count>
<count count-type="x-match99-90%">0</count>
<count count-type="x-match89-75%">0</count>
<count count-type="x-mt">1761</count>
<count count-type="repetition">5</count>
</count-group>
</header>
<body>
<trans-unit id="FileNotFound">
<source>'{0}' not found.</source>
<target state="translated">{0} se nenašel.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">'{0}' wurde nicht gefunden.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="3" adjWordcount="2.55" curWordcount="2.55"</note>
</trans-unit>
<trans-unit id="AvailableDiscoverersHeaderMessage">
<source>The following Test Discovery Add-Ins are available:</source>
<target state="translated">Jsou k dispozici tyto doplňky zjišťování testů:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Die folgende Tests Discovery Add-Ins sind verfügbar:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="AvailableExecutorsHeaderMessage">
<source>The following Test Execution Add-Ins are available:</source>
<target state="translated">Jsou k dispozici tyto doplňky pro provádění testů:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Die folgende Test Execution Add-Ins sind verfügbar:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="AvailableExtensionFormat">
<source> {0}</source>
<target state="new"> {0}</target>
<note>{Locked}</note>
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="1" adjWordcount="0.85" curWordcount="0.85"</note>
</trans-unit>
<trans-unit id="AvailableExtensionsMetadataFormat">
<source> {0}: {1}</source>
<target state="translated"> {0}: {1}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0}: {1}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="AvailableLoggersHeaderMessage">
<source>The following Test Logger Add-Ins are available:</source>
<target state="translated">Jsou k dispozici tyto doplňky protokolovače testu:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Die folgende Tests Protokollierung Add-Ins sind verfügbar:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="AvailableTestsFormat">
<source> {0}</source>
<target state="new"> {0}</target>
<note>{Locked}</note>
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="1" adjWordcount="0.25" curWordcount="0.25"</note>
</trans-unit>
<trans-unit id="CommandLineError">
<source>Error: {0}</source>
<target state="translated">Chyba: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Fehler: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="CommaSeparatedFormat">
<source>, {0}</source>
<target state="translated">, {0}</target>
<note>Format used to comma separate a list of values.</note>
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">, {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="1" adjWordcount="0.85" curWordcount="0.85"</note>
</trans-unit>
<trans-unit id="DuplicateArgumentError">
<source>The parameter "{0}" should be provided only once.</source>
<target state="translated">Parametr {0} by se měl poskytnout jenom jednou.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der Parameter '{0}' sollte nur einmal erfolgen.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="8" adjWordcount="6.8" curWordcount="6.8"</note>
</trans-unit>
<trans-unit id="ExceptionFromExtension">
<source>Exception occurred when instantiating extension '{0}': {1}</source>
<target state="translated">Při vytváření instance rozšíření {0} došlo k výjimce: {1}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Ausnahme beim Instanziieren Erweiterung '{0}': {1}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="ListTestsHeaderMessage">
<source>The following Tests are available:</source>
<target state="translated">Jsou k dispozici následující testy:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Die folgenden Tests sind verfügbar:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="5" adjWordcount="4.25" curWordcount="4.25"</note>
</trans-unit>
<trans-unit id="NoArgumentProcessorFound">
<source>Unrecognized parameter "{0}".</source>
<target state="translated">Nerozpoznaný parametr {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Unbekannte Parameter '{0}'.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="3" adjWordcount="2.55" curWordcount="2.55"</note>
</trans-unit>
<trans-unit id="TestSourceFileNotFound">
<source>The test source file "{0}" provided was not found.</source>
<target state="translated">Poskytnutý zdrojový soubor testu {0} se nenašel.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Quelldatei Test "{0}' bereitgestellt wurde nicht gefunden.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="9" adjWordcount="7.65" curWordcount="7.65"</note>
</trans-unit>
<trans-unit id="LoggerUriInvalid">
<source>The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.</source>
<target state="translated">Identifikátor URI {0} protokolovače testu není platný. Protokolovač testu se bude ignorovat.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Test Protokollierung URI '{0}' ist ungültig. Die Test-Protokollierung wird ignoriert.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="14" adjWordcount="11.9" curWordcount="11.9"</note>
</trans-unit>
<trans-unit id="CommandLineInformational">
<source>Information: {0}</source>
<target state="translated">Informace: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Informationen: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="CommandLineWarning">
<source>Warning: {0}</source>
<target state="translated">Upozornění: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Warnung: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="HelpArgumentHelp">
<source>-?|--Help|/?|/Help
Display this usage message.</source>
<target state="translated">-?|--Help|/?|/Help
Zobrazí tuto zprávu o používání.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">-?| --Hilfreiche | /? | / Help
Diesen Hilfetext anzeigen.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="8" adjWordcount="6.8" curWordcount="6.8"</note>
</trans-unit>
<trans-unit id="CopyrightCommandLineTitle">
<source>Copyright (c) Microsoft Corporation. All rights reserved.</source>
<target state="translated">Copyright (c) Microsoft Corporation. Všechna práva vyhrazena.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Copyright (c) Microsoft Corporation. Alle Rechte vorbehalten.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="MicrosoftCommandLineTitle">
<source>Microsoft (R) Test Execution Command Line Tool Version {0}</source>
<target state="translated">Microsoft (R) Test Execution Command Line Tool verze {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Microsoft (R) Test Execution Command Line Tool Version {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="9" adjWordcount="7.65" curWordcount="7.65"</note>
</trans-unit>
<trans-unit id="EnableLoggersArgumentHelp">
<source>--logger|/logger:<Logger Uri/FriendlyName>
Specify a logger for test results. For example, to log results into a
Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=<Defaults to unique file name>]
Creates file in TestResults directory with given LogFileName.
Change the verbosity level in log messages for console logger as shown below
Example: /logger:console;verbosity=<Defaults to "normal">
Allowed values for verbosity: quiet, minimal, normal and detailed.
Change the diagnostic level prefix for console logger as shown below
Example: /logger:console;prefix=<Defaults to "false">
More info on Console Logger here : https://aka.ms/console-logger</source>
<target state="translated">--logger|/logger:<identifikátor URI nebo popisný název protokolovacího nástroje>
Určuje protokolovací nástroj pro výsledky testu. Pokud chcete protokolovat výsledky třeba
do souboru výsledků testu sady Visual Studio (TRX), použijte /logger:trx[;LogFileName=<výchozí hodnota je jedinečný název souboru>]
Vytvoří soubor v adresáři TestResults s daným LogFileName.
Změní úroveň podrobností ve zprávách protokolu pro protokolovací nástroj konzoly tak, jak je uvedeno níže.
Příklad: /logger:console;verbosity=<výchozí hodnota je normal>
Povolené hodnoty pro verbosity: quiet, minimal, normal a detailed
Změní předponu úrovně diagnostiky pro protokolovací nástroj konzoly tak, jak je uvedeno níže.
Příklad: /logger:console;prefix=<výchozí hodnota je false>
Další informace o protokolovacím nástroji konzoly: https://aka.ms/console-logger</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">-Protokollierung | / Logger: < Logger Uri/FriendlyName >
Geben Sie eine Protokollierung für Testergebnisse. Z. B. protokollieren Ergebnisse in ein Visual Studio--Hardwareabstraktionsschicht (Test Ergebnisse Datei, TK) /logger:trx.
Verwenden Sie TfsPublisher zum Veröffentlichen von Testergebnissen in Team Foundation Server wie folgt
Beispiel: /logger:TfsPublisher;
Auflistung = < Team Project Collection-Url >;
BuildName = < Buildnamen >;
TeamProject = < Team Projektname >
[; Plattform = < standardmäßig "Any CPU" >]
[; Typ = < standardmäßig "Debug" >]
[; RunTitle = < Title >]</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="63" adjWordcount="53.55" curWordcount="53.55"</note>
</trans-unit>
<trans-unit id="HelpDescriptionText">
<source>Description: Runs tests from the specified files.</source>
<target state="translated">Popis: Spustí testy ze zadaných souborů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Beschreibung: Führt Tests aus den angegebenen Dateien.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="HelpOptionsText">
<source>Options:</source>
<target state="translated">Možnosti:</target>
<note>Section Header for subsequent command help listing</note>
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Optionen:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="1" adjWordcount="0.85" curWordcount="0.85"</note>
</trans-unit>
<trans-unit id="HelpUsageText">
<source>Usage: vstest.console.exe [Arguments] [Options] [[--] <RunSettings arguments>...]]</source>
<target state="translated">Použití: vstest.console.exe [argumenty] [možnosti] [[--] <argumenty RunSettings>...]]</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Syntax: vstest.console.exe [Optionen] [Argumente]</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="4" adjWordcount="3.4" curWordcount="3.4"</note>
</trans-unit>
<trans-unit id="MissingTestSourceFile">
<source>No test source files were specified.</source>
<target state="translated">Nezadaly se žádné zdrojové soubory testů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Es wurden keine Quelldateien Test angegeben.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="6" adjWordcount="5.1" curWordcount="5.1"</note>
</trans-unit>
<trans-unit id="NoArgumentsProvided">
<source>No arguments were specified.</source>
<target state="translated">Nezadaly se žádné argumenty.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Keine Argumente wurden angegeben.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="4" adjWordcount="3.4" curWordcount="3.4"</note>
</trans-unit>
<trans-unit id="RunTestsArgumentHelp">
<source>[TestFileNames]
Run tests from the specified files or wild card pattern. Separate multiple test file names or pattern
by spaces. Set console logger verbosity to detailed to view matched test files.
Examples: mytestproject.dll
mytestproject.dll myothertestproject.exe
testproject*.dll my*project.dll</source>
<target state="translated">[TestFileNames]
Spusťte testy ze zadaných souborů nebo ze vzoru se zástupnými znaky. Oddělte více názvů nebo vzorů testovacích souborů pomocí mezer.
Nastavte úroveň podrobností protokolovacího nástroje konzoly na podrobnou, aby se zobrazily odpovídající testovací soubory.
Příklady: mytestproject.dll
mytestproject.dll myothertestproject.exe
testproject*.dll my*project.dll</target>
<note></note>
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">[TestFileNames]
Führen Sie Tests aus den angegebenen Dateien. Trennen Sie mehrere Test-Dateinamen
durch Leerzeichen.
Beispiele: mytestproject.dll
mytestproject.dll myothertestproject.exe</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="18" adjWordcount="15.3" curWordcount="15.3"</note>
</trans-unit>
<trans-unit id="AvailableSettingsProvidersHeaderMessage">
<source>The following Settings Providers Add-Ins are available:</source>
<target state="translated">Jsou k dispozici tyto doplňky poskytovatelů nastavení:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Die folgende Einstellung Anbieter Add-Ins sind verfügbar:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="7" adjWordcount="5.95" curWordcount="5.95"</note>
</trans-unit>
<trans-unit id="RunSettingsArgumentHelp">
<source>--Settings|/Settings:<Settings File>
Settings to use when running tests.</source>
<target state="translated">--Settings|/Settings:<soubor nastavení>
Nastavení, která se použijí při testování.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">-Einstellungen | / Settings: < Datei >
Einstellungen Tests ausgeführt.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="10" adjWordcount="8.5" curWordcount="8.5"</note>
</trans-unit>
<trans-unit id="RunSettingsRequired">
<source>The /Settings parameter requires a settings file to be provided.</source>
<target state="translated">Parametr /Settings vyžaduje, aby se poskytl soubor nastavení.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der Parameter/Settings erfordert eine Einstellungsdatei bereitgestellt werden.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="10" adjWordcount="8.5" curWordcount="8.5"</note>
</trans-unit>
<trans-unit id="RunSettingsFileNotFound">
<source>The Settings file '{0}' could not be found.</source>
<target state="translated">Soubor nastavení {0} se nenašel.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Die Einstellungsdatei '{0}' konnte nicht gefunden werden.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="8" adjWordcount="6.8" curWordcount="6.8"</note>
</trans-unit>
<trans-unit id="TestRunFailed">
<source>Test Run Failed.</source>
<target state="translated">Testovací běh nebyl úspěšný.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der Testlauf ist fehlgeschlagen.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="3" adjWordcount="2.55" curWordcount="2.55"</note>
</trans-unit>
<trans-unit id="TestRunSuccessful">
<source>Test Run Successful.</source>
<target state="translated">Testovací běh byl úspěšný.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Testlauf erfolgreich.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="3" adjWordcount="2.55" curWordcount="2.55"</note>
</trans-unit>
<trans-unit id="InvalidInIsolationCommand">
<source>Argument {0} is not expected in the 'InIsolation' command. Specify the command without the argument (Example: vstest.console.exe myTests.dll /InIsolation) and try again.</source>
<target state="translated">V příkazu InIsolation se argument {0} neočekává. Zadejte příkaz bez tohoto argumentu (třeba vstest.console.exe myTests.dll /InIsolation) a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument {0} erwartet nicht den Befehl 'InIsolation'. Geben Sie den Befehl ohne das Argument (Beispiel: vstest.console.exe myTests.dll /InIsolation) und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="22" adjWordcount="18.7" curWordcount="18.7"</note>
</trans-unit>
<trans-unit id="UseVsixExtensionsValueRequired">
<source>The /UseVsixExtensions parameter requires a value. If 'true', the installed VSIX extensions (if any) will be used in the test run. If false, they will be ignored. Example: /UseVsixExtensions:true</source>
<target state="translated">Parametr /UseVsixExtensions vyžaduje hodnotu. Pokud hodnota bude true, v testovacím běhu se použijí nainstalovaná rozšíření VSIX (pokud nějaká jsou). Pokud je hodnota false, budou se rozšíření ignorovat. Příklad: /UseVsixExtensions:true</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der /UseVsixExtensions-Parameter erfordert einen Wert. "True" werden der installierten VSIX-Erweiterung (falls vorhanden) im Testlauf verwendet. Wenn false, werden sie ignoriert. Beispiel: /UseVsixExtensions:true</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="29" adjWordcount="24.65" curWordcount="24.65"</note>
</trans-unit>
<trans-unit id="InvalidUseVsixExtensionsCommand">
<source>Argument {0} is not expected in the 'UseVsixExtensions' command. Specify the command indicating whether the vsix extensions should be used or skipped (Example: vstest.console.exe myTests.dll /UseVsixExtensions:true) and try again.</source>
<target state="translated">V příkazu UseVsixExtensions se argument {0} neočekává. Zadejte příkaz, který určí, jestli se mají rozšíření vsix používat, nebo přeskočit (třeba vstest.console.exe myTests.dll /UseVsixExtensions:true) a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument {0} erwartet nicht den Befehl 'UseVsixExtensions'. Geben Sie den Befehl an, ob die VSIX-Erweiterung verwendet oder übersprungen werden (Beispiel: vstest.console.exe myTests.dll /UseVsixExtensions:true) und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="29" adjWordcount="24.65" curWordcount="24.65"</note>
</trans-unit>
<trans-unit id="InIsolationHelp">
<source>--InIsolation|/InIsolation
Runs the tests in an isolated process. This makes vstest.console.exe
process less likely to be stopped on an error in the tests, but tests
may run slower.</source>
<target state="translated">--InIsolation|/InIsolation
Spustí testy v izolovaném procesu. Díky tomu je méně pravděpodobné,
že se proces vstest.console.exe zastaví, pokud se v testech stane chyba,
ale testy můžou být pomalejší.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ InIsolation
Führt Tests in einem isolierten Prozess. Vstest.console.exe wird voraussichtlich auf Fehler in den Tests beendet jedoch Tests möglicherweise langsamer ausgeführt.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="28" adjWordcount="23.8" curWordcount="23.8"</note>
</trans-unit>
<trans-unit id="UseVsixExtensionsHelp">
<source>/UseVsixExtensions
This makes vstest.console.exe process use or skip the VSIX extensions
installed(if any) in the test run.
Example /UseVsixExtensions:true</source>
<target state="translated">/UseVsixExtensions
Tato možnost určí, jestli má proces vstest.console.exe v testovacím běhu používat,
nebo přeskočit nainstalovaná rozšíření VSIX (pokud nějaká jsou).
Příklad: /UseVsixExtensions:true</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ UseVsixExtensions
Das macht vstest.console.exe verwenden oder das VSIX-Extensions installiert (sofern vorhanden) in der überspringen.
Beispiel /UseVsixExtensions:true</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="19" adjWordcount="16.15" curWordcount="16.15"</note>
</trans-unit>
<trans-unit id="BatchSizeRequired">
<source>The /BatchSize argument requires the size of the batch. Example: /BatchSize:10</source>
<target state="translated">Argument /BatchSize vyžaduje velikost dávky. Příklad: /BatchSize:10</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument /BatchSize muss die Größe des Stapels. Beispiel: /BatchSize:10</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="11" adjWordcount="9.35" curWordcount="9.35"</note>
</trans-unit>
<trans-unit id="InvalidBatchSize">
<source>Invalid batch size {0}. The batch size should be greater than zero. Example: /BatchSize:10</source>
<target state="translated">Neplatná velikost dávky {0}. Velikost dávky by měla být větší než nula. Příklad: /BatchSize:10</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Ungültige Batchgröße {0}. Die Batch-Größe muss größer als NULL sein. Beispiel: /BatchSize:10</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="14" adjWordcount="11.9" curWordcount="11.9"</note>
</trans-unit>
<trans-unit id="Examples">
<source> To run tests:
>vstest.console.exe tests.dll
To run tests with additional settings such as data collectors:
>vstest.console.exe tests.dll /Settings:Local.RunSettings</source>
<target state="translated"> Pro spuštění testů:
>vstest.console.exe tests.dll
Pro spuštění testů s dalšími nastaveními, třeba kolekcemi dat:
>vstest.console.exe tests.dll /Settings:Local.RunSettings</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Tests im gleichen Prozess ausgeführt:
> vstest.console.exe tests.dll Tests in einem separaten Prozess ausführen:
> vstest.console.exe /inIsolation tests.dll
Zum Ausführen von Tests mit zusätzlichen wie Datensammlungen
> vstest.console.exe tests.dll /Settings:Local.RunSettings</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="35" adjWordcount="29.75" curWordcount="29.75"</note>
</trans-unit>
<trans-unit id="ListDiscoverersHelp">
<source>/ListDiscoverers
Lists installed test discoverers.</source>
<target state="translated">/ListDiscoverers
Vypíše nainstalované nástroje zjišťování testů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ ListDiscoverers
Listet die installierten Test Entdecker.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="5" adjWordcount="4.25" curWordcount="4.25"</note>
</trans-unit>
<trans-unit id="ListExecutorsHelp">
<source>/ListExecutors
Lists installed test executors.</source>
<target state="translated">/ListExecutors
Vypíše nainstalované prováděcí moduly testů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ ListExecutors
Listet die installierten Test Executor.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="5" adjWordcount="4.25" curWordcount="4.25"</note>
</trans-unit>
<trans-unit id="ListLoggersHelp">
<source>/ListLoggers
Lists installed test loggers.</source>
<target state="translated">/ListLoggers
Vypíše nainstalované protokolovače testů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ ListLoggers
Listet die installierten Test Protokollierungsmodule.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="5" adjWordcount="4.25" curWordcount="4.25"</note>
</trans-unit>
<trans-unit id="ListSettingsProvidersHelp">
<source>/ListSettingsProviders
Lists installed test settings providers.</source>
<target state="translated">/ListSettingsProviders
Vypíše nainstalované poskytovatele nastavení testů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ ListSettingsProviders
Listet die installierten Test Einstellungsanbieter.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="6" adjWordcount="5.1" curWordcount="5.1"</note>
</trans-unit>
<trans-unit id="ListTestsHelp">
<source>-lt|--ListTests|/lt|/ListTests:<File Name>
Lists all discovered tests from the given test container.</source>
<target state="translated">-lt|--ListTests|/lt|/ListTests:<název souboru>
Vypíše všechny zjištěné testy z daného kontejneru testů.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">-Lt |-ListTests | / Lt | / ListTests: < Dateiname >
Listen entdeckt Tests im angegebenen Testcontainer.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="14" adjWordcount="11.9" curWordcount="11.9"</note>
</trans-unit>
<trans-unit id="TimeElapsed">
<source>Time elapsed :</source>
<target state="translated">Uplynulý čas:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Verstrichene Zeit:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="SpecificTestsRequired">
<source>The /Tests argument requires one or more specific test names or their substrings.
Examples: /Tests:TestsMethod1, /Tests:TestMethod1,method2 </source>
<target state="translated">Argument /Tests vyžaduje aspoň jeden konkrétní název testu nebo jeho podřetězec.
Příklady: /Tests:TestovaciMetoda1, /Tests:TestovaciMetoda1,metoda2 </target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Batch.log-Argument erfordert eine oder mehrere bestimmte Testnamen oder die Teilzeichenfolgen.
Beispiele: /Tests:TestsMethod1, /Tests:TestMethod1, Methode2</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="17" adjWordcount="14.45" curWordcount="14.45"</note>
</trans-unit>
<trans-unit id="NoTestsAvailableAfterFiltering">
<source>A total of {0} tests were discovered but no test matches the specified selection criteria({1}). Use right value(s) and try again.</source>
<target state="translated">Zjistilo se několik testů (celkem {0}), ale žádný z testů neodpovídá zadaným kritériím výběru ({1}). Použijte správné hodnoty a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Insgesamt {0} Tests entdeckt wurden, aber kein Test entspricht der angegebenen Auswahl criteria({1}). Richtige Werte verwenden und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="21" adjWordcount="17.85" curWordcount="17.85"</note>
</trans-unit>
<trans-unit id="SearchStringDelimiter">
<source>,</source>
<target state="translated">,</target>
<note />
<alt-trans match-quality="0%" tool="BlackBox/MSR MT">
<source />
<target state-qualifier="tm-suggestion">,</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="0" wordcount="0" adjWordcount="0" curWordcount="0"</note>
</trans-unit>
<trans-unit id="RunSpecificTestsHelp">
<source>--Tests|/Tests:<Test Names>
Run tests with names that match the provided values. To provide multiple
values, separate them by commas.
Examples: /Tests:TestMethod1
/Tests:TestMethod1,testMethod2</source>
<target state="translated">--Tests|/Tests:<názvy testů>
Spustí testy s názvy odpovídajícími zadaným hodnotám. Chcete-li zadat více
hodnot, oddělte je čárkami.
Příklady: /Tests:TestMethod1
/Tests:TestMethod1,testMethod2</target>
<note>Please verify if the console output looks good after modifiaction. </note>
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">– Testet | / Tests: < Test Namen >
Führen Sie Tests, deren Namen, die mit die angegebenen Werten übereinstimmen. Bereitstellen mehrerer
Werte trennen durch Kommas.
Beispiele: /Tests:TestMethod1
/Tests:TestMethod1 testMethod2</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="25" adjWordcount="21.25" curWordcount="21.25"</note>
</trans-unit>
<trans-unit id="SwitchToNoIsolation">
<source>Using Isolation mode to run the tests as diagnostic data adapters were enabled in the runsettings. Use the /inIsolation parameter to suppress this warning.</source>
<target state="translated">Ke spouštění testů se používá režim izolace, protože v nastavení Runsettings se povolily adaptéry diagnostických dat. Pokud chcete toto upozornění potlačit, použijte parametr /InIsolation.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Unter Verwendung des Isolationsmodus zum Ausführen der Tests als Adapter für diagnostische Daten in die Runsettings aktiviert wurden. Verwenden Sie den Parameter /inIsolation Sie diese Warnung unterdrücken.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="24" adjWordcount="20.4" curWordcount="20.4"</note>
</trans-unit>
<trans-unit id="SwitchToIsolationInAppContainerMode">
<source>Using Isolation mode to run unit tests for Windows Store apps. Use the /InIsolation parameter to suppress this warning.</source>
<target state="translated">Ke spouštění testů jednotek pro aplikace pro Windows Store se používá režim izolace. Pokud chcete toto upozornění potlačit, použijte parametr /InIsolation.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Mit Isolationsmodus führen tests für Windows Store-apps. Verwenden Sie den Parameter /InIsolation Sie diese Warnung unterdrücken.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="19" adjWordcount="16.15" curWordcount="16.15"</note>
</trans-unit>
<trans-unit id="DisablingDataCollectionInAppContainerTestExecution">
<source>Diagnostic data adapters are not supported when running unit tests for Windows Store apps. Remove diagnostic data adapters settings from settings.</source>
<target state="translated">Pokud se spouští testy jednotek pro aplikace pro Windows Store, nepodporují se adaptéry diagnostických dat. Odeberte nastavení adaptérů diagnostických dat z nastavení.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Adapter für diagnostische Daten werden bei laufenden für Windows Store-apps Komponententests unterstützt. Entfernen Sie Diagnosedaten Adapter Einstellungen aus.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="21" adjWordcount="17.85" curWordcount="17.85"</note>
</trans-unit>
<trans-unit id="LoggerFriendlyNameFormat">
<source> FriendlyName: {0}</source>
<target state="translated"> PopisnýNázev: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">FriendlyName: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="ExtensionUriFormat">
<source> Uri: {0}</source>
<target state="translated"> Identifikátor URI: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">URI: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="SettingFormat">
<source> SettingName: {0}</source>
<target state="translated"> NázevNastavení: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">SettingName: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="1.7" curWordcount="1.7"</note>
</trans-unit>
<trans-unit id="SupportedFileTypesIndicator">
<source> Supported File Types:</source>
<target state="translated"> Podporované typy souborů:</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Unterstützte Dateitypen:</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="3" adjWordcount="2.55" curWordcount="2.55"</note>
</trans-unit>
<trans-unit id="SupportedFileWithoutSeparator">
<source> {0}</source>
<target state="translated"> {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="1" adjWordcount="0.25" curWordcount="0.25"</note>
</trans-unit>
<trans-unit id="SupportedFileWithSeparator">
<source> {0},</source>
<target state="translated"> {0},</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0}.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="1" adjWordcount="0.85" curWordcount="0.85"</note>
</trans-unit>
<trans-unit id="UriOfDefaultExecutor">
<source> Default Executor Uri: {0}</source>
<target state="translated"> Identifikátor URI výchozího prováděcího modulu: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Standard-Executor Uri: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="4" adjWordcount="3.4" curWordcount="3.4"</note>
</trans-unit>
<trans-unit id="LoggerUriFormat">
<source> Uri: {0}</source>
<target state="translated"> Identifikátor URI: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">URI: {0}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="2" adjWordcount="0.5" curWordcount="0.5"</note>
</trans-unit>
<trans-unit id="InvalidPlatformType">
<source>Invalid platform type:{0}. Valid platform types are x86, x64 and Arm.</source>
<target state="translated">Neplatný typ platformy: {0}. Platné typy platformy jsou x86, x64 a Arm.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Ungültige Plattform: {0}. gültige Plattformtypen sind X86, X64 und Arm.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="11" adjWordcount="9.35" curWordcount="9.35"</note>
</trans-unit>
<trans-unit id="PlatformTypeRequired">
<source>The /Platform argument requires the target platform type for the test run to be provided. Example: /Platform:x86</source>
<target state="translated">Argument /Platform vyžaduje, aby se pro testovací běh poskytl typ platformy. Příklad: /Platform:x86</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ Platform Argument erfordert den Zieltyp Plattform für den Testlauf bereitgestellt werden. Beispiel: /Platform:x 86</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="17" adjWordcount="14.45" curWordcount="14.45"</note>
</trans-unit>
<trans-unit id="PlatformArgumentHelp">
<source>--Platform|/Platform:<Platform type>
Target platform architecture to be used for test execution.
Valid values are x86, x64 and ARM.</source>
<target state="translated">--Platform|/Platform:<typ platformy>
Cílová architektura platformy, která se použije ke spuštění testu.
Platné hodnoty jsou x86, x64 a ARM.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">-Plattform | / Platform: < Plattformtyp >
Ziel Plattformarchitektur für Ausführung verwendet werden.
Gültige Werte sind X86, X64 und ARM.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="20" adjWordcount="17" curWordcount="17"</note>
</trans-unit>
<trans-unit id="SwitchToIsolationInMultiTargetingMode">
<source>Using Isolation mode to run tests as required by effective Platform:{0} and .Net Framework:{1} settings for test run. Use the /inIsolation parameter to suppress this warning.</source>
<target state="translated">Pro provádění testů se používá režim izolace tak, jak to vyžaduje nastavení platformy {0} a rozhraní .NET Framework {1} pro testovací běh. Pokud chcete toto upozornění potlačit, použijte parametr /InIsolation.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Isolation Modus zum Ausführen von Tests gemäß wirksame Plattform: {0} und .net Framework: {1} Einstellungen für den Testlauf. Verwenden Sie den Parameter /inIsolation Sie diese Warnung unterdrücken.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="26" adjWordcount="22.1" curWordcount="22.1"</note>
</trans-unit>
<trans-unit id="FrameworkArgumentHelp">
<source>--Framework|/Framework:<Framework Version>
Target .Net Framework version to be used for test execution.
Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.
Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.</source>
<target state="translated">--Framework|/Framework:<verze rozhraní>
Cílová verze rozhraní .NET Framework, která se použije ke spuštění testu.
Platné hodnoty jsou .NETFramework,Version=v4.5.1, .NETCoreApp,Version=v1.0 apod.
Další podporované hodnoty jsou Framework40, Framework45, FrameworkCore10 a FrameworkUap10.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">-Framework | / Framework: < Frameworkversion >
Ziel von .net Framework-Version für die Ausführung verwendet werden.
Gültige Werte sind ". NETFramework, Version v4. 6 = ",". NETCoreApp, Version = 1.0 "usw..
Andere unterstützte Werte sind Framework35, Framework40, Framework45 und FrameworkCore10.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="31" adjWordcount="26.35" curWordcount="26.35"</note>
</trans-unit>
<trans-unit id="FrameworkVersionRequired">
<source>The /Framework argument requires the target .Net Framework version for the test run. Example: /Framework:".NETFramework,Version=v4.5.1"</source>
<target state="translated">Argument /Framework vyžaduje cílovou verzi rozhraní .NET Framework pro testovací běh. Příklad: /Framework:".NETFramework,Version=v4.5.1"</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument /Framework muss das Ziel .net Framework-Version für den Testlauf. Beispiel: /Framework: ". NETFramework, Version v4. 6 = "</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="16" adjWordcount="13.6" curWordcount="13.6"</note>
</trans-unit>
<trans-unit id="InvalidFrameworkVersion">
<source>Invalid .Net Framework version:{0}. Please give the fullname of the TargetFramework(Example: .NETCoreApp,Version=v2.0). Other supported .Net Framework versions are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.</source>
<target state="translated">Neplatná verze rozhraní .NET Framework: {0}. Zadejte prosím úplný název cílového rozhraní (příklad: .NETCoreApp,Version=v2.0). Další podporované verze jsou Framework40, Framework45, FrameworkCore10 a FrameworkUap10.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Ungültige .net Framework-Version: {0}. Geben Fullname der TargetFramework. Andere unterstützt .net Framework-Versionen sind Framework35, Framework40 und Framework45.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="21" adjWordcount="17.85" curWordcount="17.85"</note>
</trans-unit>
<trans-unit id="AppContainerTestPrerequisiteFail">
<source>Could not start test run for unit tests for Windows Store app: {0}.</source>
<target state="translated">Nepovedlo se spustit testovací běh pro testy jednotek aplikace pro Windows Store: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Testlauf für Komponententests für Windows Store-app konnte nicht gestartet werden: {0}.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="13" adjWordcount="11.05" curWordcount="11.05"</note>
</trans-unit>
<trans-unit id="TestCaseFilterArgumentHelp">
<source>--TestCaseFilter|/TestCaseFilter:<Expression>
Run tests that match the given expression.
<Expression> is of the format <property>Operator<value>[|&<Expression>]
where Operator is one of =, != or ~ (Operator ~ has 'contains'
semantics and is applicable for string properties like DisplayName).
Parenthesis () can be used to group sub-expressions.
Examples: /TestCaseFilter:"Priority=1"
/TestCaseFilter:"(FullyQualifiedName~Nightly
|Name=MyTestMethod)"</source>
<target state="translated">--TestCaseFilter|/TestCaseFilter:<výraz>
Spustí testy, které odpovídají danému výrazu.
<výraz> musí být formátu <vlastnost>operátor<hodnota>[|&<výraz>],
kde operátor je =, != nebo ~ (operátor ~ má sémantiku
contains a je použitelný na vlastnosti řetězce, jako je DisplayName).
Závorky () mohou být použity pro seskupení podvýrazů.
Příklady: /TestCaseFilter:"Priority=1"
/TestCaseFilter:"(FullyQualifiedName~Nightly
|Name=MyTestMethod)"</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">--TestCaseFilter | / TestCaseFilter: < Ausdruck >
Ausführen von Tests, die mit dem angegebenen Ausdruck übereinstimmt.
< Ausdruck > Format < Eigenschaft > Operator < Wert > ist [| & < Ausdruck >]
Operator ist eine =,! = oder ~ (Operator ~ ' enthält '
Semantik und für Eigenschaften wie "DisplayName").
Klammern () kann Teilausdrücke Gruppe verwendet werden.
Beispiele: /TestCaseFilter: "Priorität 1"
/TestCaseFilter:"(FullyQualifiedName~Nightly
| Name=MyTestMethod) "</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="57" adjWordcount="48.45" curWordcount="48.45"</note>
</trans-unit>
<trans-unit id="TestCaseFilterValueRequired">
<source>The /TestCaseFilter argument requires the filter value.
Filter value can be <property>=<value> type.
Examples: "Priority=1", "TestCategory=Nightly"</source>
<target state="translated">Argument příkazu /TestCaseFilter vyžaduje hodnotu filtru.
Hodnota filtru by měla být typu<vlastnost>=<hodnota>.
Příklady: "Priority=1", "TestCategory=Nightly"</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument /TestCaseFilter muss den Filterwert.
Filter kann < Eigenschaft > = < Wert >.
Beispiel: "Priorität 1", "TestCategory = jede Nacht"</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="19" adjWordcount="16.15" curWordcount="16.15"</note>
</trans-unit>
<trans-unit id="InvalidTestCaseFilterValueForSpecificTests">
<source>The /TestCaseFilter argument cannot be specified with /Tests. Filtering of test cases is not applicable when tests are specified.</source>
<target state="translated">Argument /TestCaseFilter nejde zadat spolu s argumentem /Tests. Když se zadají testy, filtrování testovacích případů nejde použít.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument /TestCaseFilter kann mit Batch.log angegeben werden. Filtern von Testfällen ist nicht anwendbar, wenn Tests angegeben werden.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="19" adjWordcount="16.15" curWordcount="16.15"</note>
</trans-unit>
<trans-unit id="NonDefaultFrameworkAndOrArchDetected">
<source>{0} is built for {1}/{2}. The test assemblies specified in a run should have a common target .Net framework and platform.</source>
<target state="translated">Projekt {0} je sestavený pro {1}/{2}. Testovací sestavení zadané v běhu by měly mít společné cílové rozhraní .NET Framework a platformu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0} wurde für {1} / {2}. In einer angegebenen Testassemblys müssen eine allgemeine .net Framework-Zielversion und Plattform.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="21" adjWordcount="17.85" curWordcount="17.85"</note>
</trans-unit>
<trans-unit id="RunSingleAppContainerSource">
<source>Only one app package (.appx file) can be specified for running tests.</source>
<target state="translated">Pro spouštění testů se dá zadat jenom jeden balíček aplikace (soubor .appx).</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Zum Ausführen von Tests kann nur ein Anwendungspaket (.appx Datei) angegeben werden.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="12" adjWordcount="10.2" curWordcount="10.2"</note>
</trans-unit>
<trans-unit id="StartingDiscovery">
<source>Starting test discovery, please wait...</source>
<target state="translated">Začínají se zjišťovat testy, počkejte prosím...</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Warten Sie Discovery Test gestartet, bitte...</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="5" adjWordcount="4.25" curWordcount="4.25"</note>
</trans-unit>
<trans-unit id="StartingExecution">
<source>Starting test execution, please wait...</source>
<target state="translated">Začínají se provádět testy, počkejte prosím...</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Warten Sie Ausführung gestartet, bitte...</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="5" adjWordcount="4.25" curWordcount="4.25"</note>
</trans-unit>
<trans-unit id="DisablingDCOnExceptionWhileParsingDCInfo">
<source>Reading diagnostic data adapter settings threw an running '{0}'. All diagnostic data adapters will be skipped in this run.</source>
<target state="translated">Při čtení nastavení adaptéru diagnostických dat se vyvolala výjimka {0}. Všechny adaptéry diagnostických dat se v tomto běhu přeskočí.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Lesen von Diagnosedaten adaptereinstellungen hat eine laufende '{0}'. Alle Adapter für diagnostische Daten werden in diesem Durchlauf übersprungen.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="19" adjWordcount="16.15" curWordcount="16.15"</note>
</trans-unit>
<trans-unit id="EnableCodeCoverageArgumentProcessorHelp">
<source>/EnableCodeCoverage
Enables data collector 'CodeCoverage' for the test run.</source>
<target state="translated">/EnableCodeCoverage
Povolí kolekci dat CodeCoverage pro testovací běh.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">/ EnableCodeCoverage
Adapter für diagnostische Daten "CodeCoverage" im Testlauf ermöglicht. Standardeinstellungen werden nicht angegeben, mit der Datei.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="20" adjWordcount="17" curWordcount="17"</note>
</trans-unit>
<trans-unit id="InvalidEnableCodeCoverageCommand">
<source>Argument {0} is not expected in the 'EnableCodeCoverage' command. Specify the command without the argument (Example: vstest.console.exe myTests.dll /EnableCodeCoverage) and try again.</source>
<target state="translated">V příkazu EnableCodeCoverage se argument {0} neočekává. Zadejte příkaz bez tohoto argumentu (třeba vstest.console.exe myTests.dll /EnableCodeCoverage) a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Das Argument {0} erwartet nicht den Befehl 'EnableCodeCoverage'. Geben Sie den Befehl ohne das Argument (Beispiel: vstest.console.exe myTests.dll /EnableCodeCoverage) und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="22" adjWordcount="18.7" curWordcount="18.7"</note>
</trans-unit>
<trans-unit id="NoTestEntryPoint">
<source>App package '{0}' does not has test executor entry point. For running unit tests for Windows Store apps, create app package using Windows Store app Unit Test Library project.</source>
<target state="translated">Balíček aplikace {0} nemá vstupní bod prováděcího modulu testování. Pokud chcete spouštět testy jednotek pro aplikace pro Windows Store, vytvořte balíček aplikace pomocí projektu Knihovna testu jednotek pro aplikaci pro Windows Store.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">App-Paket '{0}' hat keine Test Executor Einstiegspunkt. Erstellen Sie zum Ausführen von Komponententests für Windows Store-apps, app-Paket mit Windows Store-app Einheitenbibliothek-Projekt.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="29" adjWordcount="24.65" curWordcount="24.65"</note>
</trans-unit>
<trans-unit id="DisablingCodeCoverageInAppContainerTestExecution">
<source>Code coverage is not available for Windows Store apps. Code coverage analysis skipped for this test run.</source>
<target state="translated">Pro aplikace pro Windows Store není pokrytí kódu k dispozici. Pro tento testovací běh se analýza pokrytí kódu přeskočí.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Codeabdeckungsdaten ist nicht verfügbar für Windows Store-apps. Codeabdeckungsanalyse übersprungen für diesen Testlauf.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="17" adjWordcount="14.45" curWordcount="14.45"</note>
</trans-unit>
<trans-unit id="SomeTestsUnavailableAfterFiltering">
<source>A total of {0} tests were discovered but some tests do not match the specified selection criteria({1}). Use right value(s) and try again.</source>
<target state="translated">Zjistilo se několik testů (celkem {0}), ale některé z testů neodpovídají zadaným kritériím výběru ({1}). Použijte správné hodnoty a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">{0} Tests entdeckt wurden jedoch einige Tests entsprechen nicht der angegebenen Auswahl criteria({1}). Richtige Werte verwenden und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="23" adjWordcount="19.55" curWordcount="19.55"</note>
</trans-unit>
<trans-unit id="TestAdapterPathHelp">
<source>--TestAdapterPath|/TestAdapterPath
This makes vstest.console.exe process use custom test adapters
from a given path (if any) in the test run.
Example /TestAdapterPath:<pathToCustomAdapters></source>
<target state="translated">--TestAdapterPath|/TestAdapterPath
Proces vstest.console.exe použije v testovacím běhu vlastní
adaptéry testu ze zadané cesty (pokud existují).
Příklad: /TestAdapterPath:<cesta_k_vlastním_adaptérům></target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">--TestAdapterPath | / TestAdapterPath
Das macht vstest.console.exe benutzerdefinierten Testadapter verwendet
aus einem angegebenen Pfad (falls vorhanden) im Testlauf.
Beispiel /TestAdapterPath: < PathToCustomAdapters ></target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="23" adjWordcount="19.55" curWordcount="19.55"</note>
</trans-unit>
<trans-unit id="TestAdapterPathValueRequired">
<source>The /TestAdapterPath parameter requires a value, which is path of a location containing custom test adapters. Example: /TestAdapterPath:c:\MyCustomAdapters</source>
<target state="translated">Parametr /TestAdapterPath vyžaduje hodnotu, která je součástí umístění obsahujícího vlastní adaptéry testů. Příklad: /TestAdapterPath:c:\MojeVlastniAdaptery</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der /TestAdapterPath-Parameter erfordert einen Wert, der Pfad zu einem Speicherort mit benutzerdefinierten Testadapter. Beispiel: /TestAdapterPath:c:\MyCustomAdapters</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="18" adjWordcount="15.3" curWordcount="15.3"</note>
</trans-unit>
<trans-unit id="InvalidTestAdapterPathCommand">
<source>The path '{0}' specified in the 'TestAdapterPath' is invalid. Error: {1}</source>
<target state="translated">Cesta {0} zadaná v TestAdapterPath není platná. Chyba: {1}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der Pfad '{0}' in 'TestAdapterPath' angegeben ist ungültig. Fehler: {1}</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="11" adjWordcount="9.35" curWordcount="9.35"</note>
</trans-unit>
<trans-unit id="TestAdapterPathDoesNotExist">
<source>The custom test adapter search path provided was not found, provide a valid path and try again.</source>
<target state="translated">Zadaná cesta pro vyhledávání vlastních adaptérů testů se nenašla. Zadejte platnou cestu a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Bereitgestellten benutzerdefinierten Test Adapter Suchpfad nicht gefunden, geben Sie einen gültigen Pfad, und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="17" adjWordcount="14.45" curWordcount="14.45"</note>
</trans-unit>
<trans-unit id="NoAdaptersFoundInTestAdapterPath">
<source>The path '{0}' specified in the 'TestAdapterPath' does not contain any test adapters, provide a valid path and try again.</source>
<target state="translated">Cesta {0} zadaná v TestAdapterPath neobsahuje žádné adaptéry testů. Zadejte platnou cestu a zkuste to znovu.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Der Pfad '{0}' in 'TestAdapterPath' angegebene nicht Testadapter enthalten, geben Sie einen gültigen Pfad und versuchen Sie es erneut.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="20" adjWordcount="17" curWordcount="17"</note>
</trans-unit>
<trans-unit id="PhoneAppContainerTestPrerequisiteFail">
<source>Could not start test run for the tests for Windows Phone app: {0}.</source>
<target state="translated">Nepovedlo se spustit testovací běh pro testy aplikace pro Windows Phone: {0}</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Testlauf für die Tests für Windows Phone-Anwendung konnte nicht gestartet werden: {0}.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="13" adjWordcount="11.05" curWordcount="11.05"</note>
</trans-unit>
<trans-unit id="SwitchToIsolationInPhoneAppContainerMode">
<source>Using Isolation mode to run unit tests for Windows Phone apps. Use the /InIsolation parameter to suppress this warning.</source>
<target state="translated">Ke spouštění testů jednotek pro aplikace pro Windows Phone se používá režim izolace. Pokud chcete toto upozornění potlačit, použijte parametr /InIsolation.</target>
<note />
<alt-trans match-quality="100%" tool="BlackBox/MSR MT">
<target state-qualifier="mt-suggestion">Windows Phone apps prüft mit Isolationsmodus führen. Verwenden Sie den Parameter /InIsolation Sie diese Warnung unterdrücken.</target>
</alt-trans>
<note from="bb-metadata">fuzzyMatch="15" wordcount="19" adjWordcount="16.15" curWordcount="16.15"</note>
</trans-unit>
<trans-unit id="DisablingCodeCoverageInPhoneAppContainerTestExecution">
<source>Code coverage is not available for Windows Phone apps. Code coverage analysis skipped for this test run.</source>
<target state="translated">Pro aplikace pro Windows Phone není pokrytí kódu k dispozici. Pro tento testovací běh se analýza pokrytí kódu přeskočí.</target>
<note />