@allurereport/web-awesome 3.0.0-beta.9 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (279) hide show
  1. package/dist/multi/173.app-9931797d1602fc52db5b.js +1 -0
  2. package/dist/multi/174.app-9931797d1602fc52db5b.js +1 -0
  3. package/dist/multi/252.app-9931797d1602fc52db5b.js +1 -0
  4. package/dist/multi/282.app-9931797d1602fc52db5b.js +1 -0
  5. package/dist/multi/29.app-9931797d1602fc52db5b.js +1 -0
  6. package/dist/multi/416.app-9931797d1602fc52db5b.js +1 -0
  7. package/dist/multi/527.app-9931797d1602fc52db5b.js +1 -0
  8. package/dist/multi/600.app-9931797d1602fc52db5b.js +1 -0
  9. package/dist/multi/605.app-9931797d1602fc52db5b.js +1 -0
  10. package/dist/multi/638.app-9931797d1602fc52db5b.js +1 -0
  11. package/dist/multi/672.app-9931797d1602fc52db5b.js +1 -0
  12. package/dist/multi/686.app-9931797d1602fc52db5b.js +1 -0
  13. package/dist/multi/725.app-9931797d1602fc52db5b.js +1 -0
  14. package/dist/multi/741.app-9931797d1602fc52db5b.js +1 -0
  15. package/dist/multi/755.app-9931797d1602fc52db5b.js +1 -0
  16. package/dist/multi/894.app-9931797d1602fc52db5b.js +1 -0
  17. package/dist/multi/91.app-9931797d1602fc52db5b.js +1 -0
  18. package/dist/multi/943.app-9931797d1602fc52db5b.js +1 -0
  19. package/dist/multi/980.app-9931797d1602fc52db5b.js +1 -0
  20. package/dist/multi/app-9931797d1602fc52db5b.js +2 -0
  21. package/dist/multi/app-9931797d1602fc52db5b.js.LICENSE.txt +10 -0
  22. package/dist/multi/manifest.json +25 -24
  23. package/dist/multi/styles-8fe37354d1c2270c691e.css +48 -0
  24. package/dist/single/app-6199dc1c2fd3bddc2526.js +2 -0
  25. package/dist/single/app-6199dc1c2fd3bddc2526.js.LICENSE.txt +10 -0
  26. package/dist/single/manifest.json +1 -1
  27. package/package.json +29 -17
  28. package/src/assets/scss/day.scss +2 -0
  29. package/src/assets/scss/index.scss +1 -3
  30. package/src/assets/scss/night.scss +2 -0
  31. package/src/assets/scss/palette.scss +391 -391
  32. package/src/assets/scss/theme.scss +292 -79
  33. package/src/components/BaseLayout/index.tsx +10 -32
  34. package/src/components/BaseLayout/styles.scss +14 -4
  35. package/src/components/Charts/index.tsx +245 -0
  36. package/src/components/Charts/styles.scss +27 -0
  37. package/src/components/EnvironmentPicker/index.tsx +60 -0
  38. package/src/components/EnvironmentPicker/styles.scss +9 -0
  39. package/src/components/Footer/FooterLogo.tsx +1 -2
  40. package/src/components/Footer/FooterVersion.tsx +7 -3
  41. package/src/components/Footer/index.tsx +6 -2
  42. package/src/components/Header/CiInfo/index.tsx +67 -0
  43. package/src/components/Header/CiInfo/styles.scss +7 -0
  44. package/src/components/Header/index.tsx +21 -8
  45. package/src/components/Header/styles.scss +9 -1
  46. package/src/components/HeaderControls/index.tsx +20 -0
  47. package/src/components/MainReport/index.tsx +84 -6
  48. package/src/components/MainReport/styles.scss +20 -0
  49. package/src/components/Metadata/index.tsx +6 -4
  50. package/src/components/MetadataButton/index.tsx +14 -6
  51. package/src/components/MetadataButton/styles.scss +3 -0
  52. package/src/components/Modal/index.tsx +15 -167
  53. package/src/components/NavTabs/index.tsx +70 -0
  54. package/src/components/{TestResult/TestResultTabs → NavTabs}/styles.scss +0 -3
  55. package/src/components/Report/index.tsx +7 -0
  56. package/src/components/ReportBody/Filters.tsx +45 -64
  57. package/src/components/ReportBody/index.tsx +26 -15
  58. package/src/components/ReportBody/styles.scss +9 -3
  59. package/src/components/ReportGlobalAttachments/index.tsx +34 -0
  60. package/src/components/ReportGlobalAttachments/styles.scss +11 -0
  61. package/src/components/ReportGlobalErrors/index.tsx +30 -0
  62. package/src/components/ReportGlobalErrors/styles.scss +12 -0
  63. package/src/components/ReportHeader/ReportHeaderLogo.tsx +6 -2
  64. package/src/components/ReportHeader/ReportHeaderPie.tsx +1 -2
  65. package/src/components/ReportHeader/index.tsx +38 -12
  66. package/src/components/ReportHeader/styles.scss +9 -1
  67. package/src/components/ReportMetadata/MetadataSummary.tsx +57 -65
  68. package/src/components/ReportMetadata/MetadataWithIcon.tsx +11 -13
  69. package/src/components/ReportMetadata/index.tsx +50 -3
  70. package/src/components/ReportMetadata/styles.scss +0 -2
  71. package/src/components/ReportQualityGateResults/index.tsx +42 -0
  72. package/src/components/ReportQualityGateResults/styles.scss +44 -0
  73. package/src/components/SectionPicker/index.tsx +55 -0
  74. package/src/components/SectionPicker/styles.scss +5 -0
  75. package/src/components/SectionSwitcher/index.tsx +16 -0
  76. package/src/components/SectionSwitcher/styles.scss +4 -0
  77. package/src/components/SectionTabs/index.tsx +0 -0
  78. package/src/components/SideBySide/index.tsx +52 -0
  79. package/src/components/SideBySide/styles.scss +64 -0
  80. package/src/components/SplitLayout/index.tsx +73 -0
  81. package/src/components/SplitLayout/styles.scss +84 -0
  82. package/src/components/Tabs/index.tsx +2 -2
  83. package/src/components/TestResult/TestStepsEmpty/index.tsx +2 -2
  84. package/src/components/TestResult/TrAttachmentsView/index.tsx +29 -0
  85. package/src/components/TestResult/{TestResultDescription → TrDescription}/index.tsx +5 -5
  86. package/src/components/TestResult/{TestResultDropdown → TrDropdown}/index.tsx +7 -5
  87. package/src/components/TestResult/{TestResultEmpty → TrEmpty}/index.tsx +6 -6
  88. package/src/components/TestResult/TrEnvironmentItem/index.tsx +82 -0
  89. package/src/components/TestResult/TrEnvironmentItem/styles.scss +60 -0
  90. package/src/components/TestResult/TrEnvironmentsView/index.tsx +64 -0
  91. package/src/components/TestResult/TrEnvironmentsView/styles.scss +11 -0
  92. package/src/components/TestResult/TrError/TrDiff.tsx +121 -0
  93. package/src/components/TestResult/TrError/index.tsx +104 -0
  94. package/src/components/TestResult/TrError/styles.scss +223 -0
  95. package/src/components/TestResult/TrHeader/TrBreadcrumbs.tsx +44 -0
  96. package/src/components/TestResult/TrHeader/index.tsx +15 -0
  97. package/src/components/TestResult/{TestResultHeader → TrHeader}/styles.scss +7 -2
  98. package/src/components/TestResult/TrHistory/TrHistoryItem.tsx +94 -0
  99. package/src/components/TestResult/TrHistory/index.tsx +26 -0
  100. package/src/components/TestResult/{TestResultHistory → TrHistory}/styles.scss +2 -1
  101. package/src/components/TestResult/{TestResultInfo/TestResultInfoStatuses.tsx → TrInfo/TrInfoStatuses.tsx} +6 -4
  102. package/src/components/TestResult/TrInfo/index.tsx +99 -0
  103. package/src/components/TestResult/{TestResultInfo → TrInfo}/styles.scss +18 -0
  104. package/src/components/TestResult/{TestResultLinks → TrLinks}/index.tsx +8 -8
  105. package/src/components/TestResult/{TestResultMetadata → TrMetadata}/index.tsx +6 -6
  106. package/src/components/TestResult/{TestResultNavigation → TrNavigation}/index.tsx +7 -9
  107. package/src/components/TestResult/TrOverview.tsx +46 -0
  108. package/src/components/TestResult/{TestResultParameters → TrParameters}/index.tsx +4 -4
  109. package/src/components/TestResult/TrPrevStatuses/index.tsx +63 -0
  110. package/src/components/TestResult/TrPwTraces/PwTrace.tsx +34 -0
  111. package/src/components/TestResult/TrPwTraces/PwTraceButton.tsx +32 -0
  112. package/src/components/TestResult/TrPwTraces/index.tsx +32 -0
  113. package/src/components/TestResult/TrPwTraces/styles.scss +20 -0
  114. package/src/components/TestResult/TrRetriesView/TrRetriesItem.tsx +70 -0
  115. package/src/components/TestResult/TrRetriesView/index.tsx +29 -0
  116. package/src/components/TestResult/{TestResultSetup → TrSetup}/index.tsx +13 -13
  117. package/src/components/TestResult/{TestResultSeverity → TrSeverity}/index.tsx +2 -2
  118. package/src/components/TestResult/{TestResultStatus → TrStatus}/index.tsx +5 -5
  119. package/src/components/TestResult/TrSteps/TrAttachment.tsx +118 -0
  120. package/src/components/TestResult/{TestResultSteps/testResultAttachmentInfo.tsx → TrSteps/TrAttachmentInfo.tsx} +11 -11
  121. package/src/components/TestResult/TrSteps/TrStep.tsx +98 -0
  122. package/src/components/TestResult/TrSteps/TrStepInfo.tsx +90 -0
  123. package/src/components/TestResult/{TestResultSteps → TrSteps}/index.tsx +12 -12
  124. package/src/components/TestResult/{TestResultSteps → TrSteps}/styles.scss +49 -10
  125. package/src/components/TestResult/{TestResultSteps → TrSteps}/wrongAttachment.tsx +1 -1
  126. package/src/components/TestResult/TrTabs/index.tsx +42 -0
  127. package/src/components/TestResult/{TestResultTeardown → TrTeardown}/index.tsx +13 -13
  128. package/src/components/TestResult/index.tsx +54 -38
  129. package/src/components/TestResult/styles.scss +12 -0
  130. package/src/components/Timeline/index.tsx +100 -0
  131. package/src/components/Timeline/styles.scss +45 -0
  132. package/src/components/ToggleLayout/index.tsx +17 -0
  133. package/src/components/Tree/index.tsx +123 -9
  134. package/src/components/Tree/styles.scss +23 -5
  135. package/src/index.html +22 -6
  136. package/src/index.tsx +91 -20
  137. package/src/locales/az.json +376 -0
  138. package/src/locales/de.json +376 -0
  139. package/src/locales/en.json +376 -0
  140. package/src/locales/es.json +376 -0
  141. package/src/locales/fr.json +376 -0
  142. package/src/locales/he.json +376 -0
  143. package/src/locales/hy.json +376 -0
  144. package/src/locales/it.json +376 -0
  145. package/src/locales/ja.json +376 -0
  146. package/src/locales/ka.json +376 -0
  147. package/src/locales/kr.json +376 -0
  148. package/src/locales/nl.json +376 -0
  149. package/src/locales/pl.json +384 -0
  150. package/src/locales/pt.json +376 -0
  151. package/src/locales/ru.json +384 -0
  152. package/src/locales/sv.json +376 -0
  153. package/src/locales/tr.json +376 -0
  154. package/src/locales/ua.json +327 -0
  155. package/src/locales/zh.json +376 -0
  156. package/src/stores/chart.ts +41 -6
  157. package/src/stores/env.ts +88 -0
  158. package/src/stores/envInfo.ts +2 -2
  159. package/src/stores/globals.ts +28 -0
  160. package/src/stores/layout.ts +36 -0
  161. package/src/stores/locale.ts +77 -29
  162. package/src/stores/modal.ts +22 -0
  163. package/src/stores/qualityGate.ts +28 -0
  164. package/src/stores/router.ts +108 -0
  165. package/src/stores/sections.ts +63 -0
  166. package/src/stores/stats.ts +52 -7
  167. package/src/stores/testResults.ts +13 -9
  168. package/src/stores/theme.ts +15 -18
  169. package/src/stores/timeline.ts +39 -0
  170. package/src/stores/tree.ts +61 -22
  171. package/src/stores/variables.ts +40 -0
  172. package/src/styles.scss +66 -0
  173. package/src/utils/time.ts +1 -0
  174. package/src/utils/tree.ts +23 -0
  175. package/src/utils/treeFilters.ts +27 -21
  176. package/test/components/Header/CiInfo.test.tsx +177 -0
  177. package/test/components/Header.test.tsx +122 -0
  178. package/test/utils/treeFilters.test.ts +44 -44
  179. package/tsconfig.json +7 -2
  180. package/tsconfig.node.json +8 -0
  181. package/types.d.ts +43 -24
  182. package/vitest.config.ts +15 -2
  183. package/vitest.setup.ts +1 -0
  184. package/webpack.config.js +35 -5
  185. package/dist/multi/141.app-f32e4213.js +0 -1
  186. package/dist/multi/222.app-f32e4213.js +0 -1
  187. package/dist/multi/335.app-f32e4213.js +0 -1
  188. package/dist/multi/34.app-f32e4213.js +0 -1
  189. package/dist/multi/349.app-f32e4213.js +0 -1
  190. package/dist/multi/378.app-f32e4213.js +0 -1
  191. package/dist/multi/406.app-f32e4213.js +0 -1
  192. package/dist/multi/476.app-f32e4213.js +0 -1
  193. package/dist/multi/53.app-f32e4213.js +0 -1
  194. package/dist/multi/584.app-f32e4213.js +0 -1
  195. package/dist/multi/690.app-f32e4213.js +0 -1
  196. package/dist/multi/747.app-f32e4213.js +0 -1
  197. package/dist/multi/767.app-f32e4213.js +0 -1
  198. package/dist/multi/816.app-f32e4213.js +0 -1
  199. package/dist/multi/83.app-f32e4213.js +0 -1
  200. package/dist/multi/873.app-f32e4213.js +0 -1
  201. package/dist/multi/920.app-f32e4213.js +0 -1
  202. package/dist/multi/991.app-f32e4213.js +0 -1
  203. package/dist/multi/app-f32e4213.js +0 -2
  204. package/dist/multi/app-f32e4213.js.LICENSE.txt +0 -16
  205. package/dist/multi/styles-f32e4213.css +0 -284
  206. package/dist/single/app-7fa8e43f.js +0 -2
  207. package/dist/single/app-7fa8e43f.js.LICENSE.txt +0 -16
  208. package/src/assets/scss/code.scss +0 -71
  209. package/src/assets/scss/typography.scss +0 -218
  210. package/src/components/ArrowButton/index.tsx +0 -36
  211. package/src/components/ArrowButton/styles.scss +0 -35
  212. package/src/components/LanguagePicker/index.tsx +0 -40
  213. package/src/components/Modal/styles.scss +0 -126
  214. package/src/components/ReportLogo/index.tsx +0 -16
  215. package/src/components/ReportLogo/styles.scss +0 -20
  216. package/src/components/ReportLogoFull/index.tsx +0 -20
  217. package/src/components/ReportLogoFull/styles.scss +0 -7
  218. package/src/components/TestResult/TestResultAttachmentsView/index.tsx +0 -27
  219. package/src/components/TestResult/TestResultError/index.tsx +0 -59
  220. package/src/components/TestResult/TestResultError/styles.scss +0 -51
  221. package/src/components/TestResult/TestResultHeader/index.tsx +0 -55
  222. package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +0 -67
  223. package/src/components/TestResult/TestResultHistory/index.tsx +0 -26
  224. package/src/components/TestResult/TestResultInfo/index.tsx +0 -79
  225. package/src/components/TestResult/TestResultOverview.tsx +0 -43
  226. package/src/components/TestResult/TestResultPrevStatuses/index.tsx +0 -49
  227. package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +0 -52
  228. package/src/components/TestResult/TestResultRetriesView/index.tsx +0 -24
  229. package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +0 -12
  230. package/src/components/TestResult/TestResultSteps/attachment.tsx +0 -68
  231. package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +0 -20
  232. package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +0 -32
  233. package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +0 -15
  234. package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +0 -77
  235. package/src/components/TestResult/TestResultSteps/testResultStep.tsx +0 -85
  236. package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +0 -30
  237. package/src/components/TestResult/TestResultTabs/index.tsx +0 -59
  238. package/src/components/ThemeButton/ThemeButton.tsx +0 -20
  239. package/src/components/Tree/Tree.tsx +0 -75
  240. package/src/components/Tree/TreeHeader.tsx +0 -82
  241. package/src/components/Tree/TreeItem.tsx +0 -35
  242. package/src/components/Tree/TreeItemIcon.tsx +0 -32
  243. package/src/i18n/constants.ts +0 -124
  244. package/src/i18n/locales/am.json +0 -120
  245. package/src/i18n/locales/az.json +0 -120
  246. package/src/i18n/locales/de.json +0 -120
  247. package/src/i18n/locales/en.json +0 -121
  248. package/src/i18n/locales/es.json +0 -120
  249. package/src/i18n/locales/fr.json +0 -120
  250. package/src/i18n/locales/he.json +0 -120
  251. package/src/i18n/locales/it.json +0 -120
  252. package/src/i18n/locales/ja.json +0 -120
  253. package/src/i18n/locales/ka.json +0 -120
  254. package/src/i18n/locales/kr.json +0 -120
  255. package/src/i18n/locales/nl.json +0 -120
  256. package/src/i18n/locales/pl.json +0 -118
  257. package/src/i18n/locales/pt.json +0 -120
  258. package/src/i18n/locales/ru.json +0 -118
  259. package/src/i18n/locales/sv.json +0 -120
  260. package/src/i18n/locales/tr.json +0 -120
  261. package/src/i18n/locales/zh.json +0 -120
  262. package/src/utils/attachments.ts +0 -156
  263. package/src/utils/capitalize.ts +0 -6
  264. /package/dist/multi/{JetBrainsMono_vf-b9a9c326..woff → JetBrainsMono_vf.woff} +0 -0
  265. /package/dist/multi/{JetBrainsMono_vf-9e9649b6..woff2 → JetBrainsMono_vf.woff2} +0 -0
  266. /package/dist/multi/{pt-root-ui_vf-22fe60ca..woff → pt-root-ui_vf.woff} +0 -0
  267. /package/dist/multi/{pt-root-ui_vf-9d251e8b..woff2 → pt-root-ui_vf.woff2} +0 -0
  268. /package/src/components/TestResult/{TestResultAttachmentsView → TrAttachmentsView}/styles.scss +0 -0
  269. /package/src/components/TestResult/{TestResultDescription → TrDescription}/styles.scss +0 -0
  270. /package/src/components/TestResult/{TestResultDropdown → TrDropdown}/styles.scss +0 -0
  271. /package/src/components/TestResult/{TestResultEmpty → TrEmpty}/styles.scss +0 -0
  272. /package/src/components/TestResult/{TestResultLinks → TrLinks}/styles.scss +0 -0
  273. /package/src/components/TestResult/{TestResultMetadata → TrMetadata}/styles.scss +0 -0
  274. /package/src/components/TestResult/{TestResultNavigation → TrNavigation}/styles.scss +0 -0
  275. /package/src/components/TestResult/{TestResultParameters → TrParameters}/styles.scss +0 -0
  276. /package/src/components/TestResult/{TestResultPrevStatuses → TrPrevStatuses}/styles.scss +0 -0
  277. /package/src/components/TestResult/{TestResultRetriesView → TrRetriesView}/styles.scss +0 -0
  278. /package/src/components/TestResult/{TestResultSeverity → TrSeverity}/styles.scss +0 -0
  279. /package/src/components/TestResult/{TestResultStatus → TrStatus}/styles.scss +0 -0
@@ -0,0 +1,384 @@
1
+ {
2
+ "statuses": {
3
+ "passed": "udany",
4
+ "failed": "nie udany",
5
+ "broken": "uszkodzony",
6
+ "skipped": "pominęty",
7
+ "unknown": "nieznany",
8
+ "total": "wszystkie",
9
+ "flakyTests": "niestabilny",
10
+ "newTests": "nowy",
11
+ "retryTests": "powtórzony"
12
+ },
13
+ "testSummary": {
14
+ "total": "Wszystkie",
15
+ "flaky": "Niestabilne testy",
16
+ "retries": "Powtórzone testy",
17
+ "new": "Nowe testy"
18
+ },
19
+ "tabs": {
20
+ "total": "Wszystkie",
21
+ "results": "Wyniki",
22
+ "globalAttachments": "Globalne Załączniki",
23
+ "globalErrors": "Globalne Błędy",
24
+ "qualityGates": "Bramy Jakości"
25
+ },
26
+ "search": {
27
+ "search": "Poszukiwanie",
28
+ "search-placeholder": "Nazwa albo ID"
29
+ },
30
+ "filters": {
31
+ "more-filters": "Filtry",
32
+ "enable-filter": "Filtruj po \"{{filter}}\"",
33
+ "flaky": "Niestabilne",
34
+ "retry": "Powtórne",
35
+ "new": "Nowe",
36
+ "fixed": "Naprawione",
37
+ "regressed": "Zaregresowane",
38
+ "malfunctioned": "Uszkodzone"
39
+ },
40
+ "filters.description": {
41
+ "flaky": "Pokaż niestabilne testy",
42
+ "retry": "Pokaż wyniki testów, które zostały uruchomione ponownie",
43
+ "new": "Pokaż wyniki testów, które po raz pierwszy pojawiają się w tym raporcie",
44
+ "fixed": "Pokaż testy, które teraz są udane, ale wcześniej były \"nieudane\" lub \"uszkodzone\"",
45
+ "regressed": "Pokaż wyniki testów, które zmieniły status z \"udany\" lub \"uszkodzony\" na \"nieudany\"",
46
+ "malfunctioned": "Pokaż wyniki testów, które zmieniły status z \"udany\" lub \"nieudany\" na \"uszkodzony\""
47
+ },
48
+ "sort-by": {
49
+ "sort-by-text": "Sortuj po:",
50
+ "sort-by-category": "Sortuj po",
51
+ "direction-category": "Kierunek"
52
+ },
53
+ "sort-by.values": {
54
+ "order": "Kolejność",
55
+ "alphabet": "Nazwa",
56
+ "duration": "Długość",
57
+ "status": "Status"
58
+ },
59
+ "sort-by.directions": {
60
+ "order-desc": "Wcześniejsze – Późnejsze",
61
+ "order-asc": "Późnejsze – Wcześniejsze",
62
+ "order-asc-short": "Późnejsze",
63
+ "order-desc-short": "Wcześniejsze",
64
+ "alphabet-asc": "A – Z",
65
+ "alphabet-desc": "Z – A",
66
+ "alphabet-asc-short": "A – Z",
67
+ "alphabet-desc-short": "Z – A",
68
+ "duration-asc": "1 – 9",
69
+ "duration-desc": "9 – 1",
70
+ "duration-asc-short": "1 – 9",
71
+ "duration-desc-short": "9 – 1",
72
+ "status-asc": "Jak w liście filtrów",
73
+ "status-desc": "Invertowany",
74
+ "status-asc-short": "Domyślnie",
75
+ "status-desc-short": "Invertowany"
76
+ },
77
+ "empty": {
78
+ "no-results": "Brak wyników",
79
+ "no-tests-found": "Nie znaleziono wyników",
80
+ "no-message-provided": "Nie podano komunikatu",
81
+ "clear-filters": "Wyczyść filtry",
82
+ "no-attachments-results": "Brak dostępnych informacji o załącznikach",
83
+ "no-global-errors-results": "Brak dostępnych informacji o błędach globalnych",
84
+ "no-quality-gate-results": "Brak dostępnych wyników bram jakości",
85
+ "no-history-results": "Brak dostępnych informacji o historii",
86
+ "no-retries-results": "Brak dostępnych informacji o ponownych próbach",
87
+ "no-test-steps-results": "Brak dostępnych informacji o krokach testowych",
88
+ "no-test-case-results": "Brak wyników przypadków testowych",
89
+ "no-environments-results": "Brak dostępnych informacji o środowiskach"
90
+ },
91
+ "severity": {
92
+ "blocker": "bloker",
93
+ "critical": "krytyczna",
94
+ "normal": "zwykła",
95
+ "minor": "niska",
96
+ "trivial": "minimalna"
97
+ },
98
+ "execution": {
99
+ "name": "Wykonanie",
100
+ "body": "Ciało testu",
101
+ "setup": "Przygotowanie",
102
+ "teardown": "Zakończenie"
103
+ },
104
+ "environments": {
105
+ "environment_one": "Środowisko",
106
+ "environment_other": "Środowiska",
107
+ "all": "Wszystkie"
108
+ },
109
+ "ui": {
110
+ "labels": "Labelki",
111
+ "metadata": "Metadane",
112
+ "parameters": "Parametry",
113
+ "description": "Opis",
114
+ "links": "Linki",
115
+ "overview": "Przegląd",
116
+ "history": "Historia",
117
+ "attachments": "Załączniki",
118
+ "retries": "Próby ponowne",
119
+ "environments": "Środowiska",
120
+ "error": "Błąd",
121
+ "goToStep": "Idź do kroku",
122
+ "showLess": "Pokaż mniej",
123
+ "showMore": "Pokaż więcej",
124
+ "copy": "Skopuj",
125
+ "attempt": "Próba {{attempt}} z {{total}}",
126
+ "at": "w",
127
+ "variables": "Zmienne",
128
+ "openPwTrace": "Otwórz Playwright Trace",
129
+ "finishedAtOriginal": "{{formattedCreatedAt}}, z kodem wyjścia {{original}}",
130
+ "finishedAtBoth": "{{formattedCreatedAt}}, z kodem wyjścia {{actual}} (oryginalny {{original}})"
131
+ },
132
+ "controls": {
133
+ "newTabAttachment": "Otwórz w nowej zakładce",
134
+ "nextTR": "Następny test",
135
+ "prevTR": "Poprzedni test",
136
+ "downloadAttachment": "Załaduj załącznik",
137
+ "backto": "Wróć do",
138
+ "clipboard": "Skopuj do schowka",
139
+ "clipboardError": "Błąd. Najprawdopodobniej Twoja przeglądarka nie obsługuje tej funkcji",
140
+ "clipboardSuccess": "Zawartość została skopiowana",
141
+ "collapse": "Skrócić",
142
+ "expand": "Poszerzyć",
143
+ "fullscreen": "Pełny ekran",
144
+ "language": "Zmień język",
145
+ "openInNewTab": "Otwórz w nowej karcie",
146
+ "openPreview": "Otwórz podgląd",
147
+ "noSelectedTR": "Brak wybranego wyniku testu",
148
+ "comparison": "Porównanie",
149
+ "showDiff": "Pokaż różnicę",
150
+ "viewMode": "Tryb widoku",
151
+ "unified": "Zunifikowany",
152
+ "side-by-side": "Obok siebie",
153
+ "compareBy": "Porównaj według",
154
+ "chars": "znaki",
155
+ "words": "słowa",
156
+ "lines": "linie",
157
+ "actual": "Rzeczywisty",
158
+ "expected": "Oczekiwany"
159
+ },
160
+ "errors": {
161
+ "missedAttachment": "Nie znaleziono załącznika"
162
+ },
163
+ "sections": {
164
+ "report": "Report",
165
+ "charts": "Wykresy",
166
+ "timeline": "Oś czasu"
167
+ },
168
+ "timeline": {
169
+ "empty": "Brak danych",
170
+ "empty_host": "Brak danych dla {{ host }}",
171
+ "selected_one": "Wybrano {{ count }} test ({{ percentage }}%) z czasem trwania większym niż {{ minDuration }} i mniejszym niż {{ maxDuration }}",
172
+ "selected_few": "Wybrano {{ count }} testy ({{ percentage }}%) z czasem trwania większym niż {{ minDuration }} i mniejszym niż {{ maxDuration }}",
173
+ "selected_many": "Wybrano {{ count }} testów ({{ percentage }}%) z czasem trwania większym niż {{ minDuration }} i mniejszym niż {{ maxDuration }}",
174
+ "selected_other": "Wybrano {{ count }} testów ({{ percentage }}%) z czasem trwania większym niż {{ minDuration }} i mniejszym niż {{ maxDuration }}",
175
+ "host": "Host: {{ host }}"
176
+ },
177
+ "charts": {
178
+ "trend": {
179
+ "title": "Wykres trendu: {{type}}",
180
+ "type": {
181
+ "status": "Status",
182
+ "severity": "Ważność"
183
+ }
184
+ },
185
+ "currentStatus": {
186
+ "title": "Aktualny status",
187
+ "status": {
188
+ "passed": "$t(statuses:passed, capitalize)",
189
+ "failed": "$t(statuses:failed, capitalize)",
190
+ "broken": "$t(statuses:broken, capitalize)",
191
+ "skipped": "$t(statuses:skipped, capitalize)",
192
+ "unknown": "$t(statuses:unknown, capitalize)"
193
+ },
194
+ "percentage": "{{percentage}}%",
195
+ "of": "z {{total}}",
196
+ "total": "łącznie",
197
+ "tests": {
198
+ "new_zero": "Brak nowych testów",
199
+ "new_one": "{{count}} nowy test",
200
+ "new_few": "{{count}} nowe testy",
201
+ "new_many": "{{count}} nowych testów",
202
+ "new_other": "{{count}} nowych testów",
203
+ "flaky_zero": "Brak niestabilnych testów",
204
+ "flaky_one": "{{count}} niestabilny test",
205
+ "flaky_few": "{{count}} niestabilne testy",
206
+ "flaky_many": "{{count}} niestabilnych testów",
207
+ "flaky_other": "{{count}} niestabilnych testów",
208
+ "retries_zero": "Brak powtórzonych testów",
209
+ "retries_one": "{{count}} powtórzony test",
210
+ "retries_few": "{{count}} powtórzone testy",
211
+ "retries_many": "{{count}} powtórzonych testów",
212
+ "retries_other": "{{count}} powtórzonych testów"
213
+ }
214
+ },
215
+ "statusDynamics": {
216
+ "title": "Dynamika statusu",
217
+ "status": {
218
+ "passed": "$t(statuses:passed, capitalize)",
219
+ "failed": "$t(statuses:failed, capitalize)",
220
+ "broken": "$t(statuses:broken, capitalize)",
221
+ "skipped": "$t(statuses:skipped, capitalize)",
222
+ "unknown": "$t(statuses:unknown, capitalize)"
223
+ },
224
+ "no-history": "$t(empty:no-history-results)",
225
+ "no-results": "$t(empty:no-results)",
226
+ "tooltips": {
227
+ "current": "Najnowszy raport ({{timestamp, timestamp_long_no_seconds}})",
228
+ "history": "Raport z {{timestamp, timestamp_long_no_seconds}}"
229
+ },
230
+ "ticks": {
231
+ "current": "Wcześniejsze",
232
+ "history": "{{timestamp, timestamp_date}}"
233
+ }
234
+ },
235
+ "statusTransitions": {
236
+ "title": "Przejścia statusu",
237
+ "legend": {
238
+ "trend": "Wskaźnik napraw"
239
+ },
240
+ "transitions": {
241
+ "new": "$t(transitions:new, capitalize)",
242
+ "fixed": "$t(transitions:fixed, capitalize)",
243
+ "regressed": "$t(transitions:regressed, capitalize)",
244
+ "malfunctioned": "$t(transitions:malfunctioned, capitalize)"
245
+ },
246
+ "no-history": "$t(empty:no-history-results)",
247
+ "no-results": "$t(empty:no-results)",
248
+ "tooltips": {
249
+ "current": "Najnowszy raport ({{timestamp, timestamp_long_no_seconds}})",
250
+ "history": "Raport z {{timestamp, timestamp_long_no_seconds}}"
251
+ },
252
+ "ticks": {
253
+ "current": "Wcześniejsze",
254
+ "history": "{{timestamp, timestamp_date}}"
255
+ }
256
+ },
257
+ "durations": {
258
+ "title": "Histogram czasu trwania według {{groupBy}}",
259
+ "title_none": "Histogram czasu trwania",
260
+ "no-results": "$t(empty:no-results)",
261
+ "groupBy": {
262
+ "none": "Brak",
263
+ "layer": "Warstwa"
264
+ },
265
+ "ticks": {
266
+ "durationRange": "{{from, format_duration}} - {{to, format_duration}}"
267
+ },
268
+ "tooltips": {
269
+ "durationRange": "{{from, format_duration}} - {{to, format_duration}}"
270
+ },
271
+ "legend": {
272
+ "value": "{{value}}",
273
+ "total": "Liczba testów"
274
+ }
275
+ },
276
+ "stabilityDistribution": {
277
+ "title": "Rozkład stabilności",
278
+ "no-results": "$t(empty:no-results)",
279
+ "legend": {
280
+ "stabilityRate": "Wskaźnik stabilności"
281
+ }
282
+ },
283
+ "testBaseGrowthDynamics": {
284
+ "title": "Dynamika wzrostu bazy testów",
285
+ "status": {
286
+ "newpassed": "Nowy $t(statuses:passed)",
287
+ "newfailed": "Nowy $t(statuses:failed)",
288
+ "newbroken": "Nowy $t(statuses:broken)",
289
+ "newskipped": "Nowy $t(statuses:skipped)",
290
+ "newunknown": "Nowy $t(statuses:unknown)",
291
+ "removedpassed": "Usunięty $t(statuses:passed)",
292
+ "removedfailed": "Usunięty $t(statuses:failed)",
293
+ "removedbroken": "Usunięty $t(statuses:broken)",
294
+ "removedskipped": "Usunięty $t(statuses:skipped)",
295
+ "removedunknown": "Usunięty $t(statuses:unknown)"
296
+ },
297
+ "legend": {
298
+ "trend": "Trend wzrostu"
299
+ },
300
+ "no-history": "$t(empty:no-history-results)",
301
+ "no-results": "$t(empty:no-results)",
302
+ "tooltips": {
303
+ "current": "Najnowszy raport ({{timestamp, timestamp_long_no_seconds}})",
304
+ "history": "Raport z {{timestamp, timestamp_long_no_seconds}}"
305
+ },
306
+ "ticks": {
307
+ "current": "Najnowszy",
308
+ "history": "{{timestamp, timestamp_date}}"
309
+ }
310
+ },
311
+ "fbsuAgePyramid": {
312
+ "title": "Piramida wiekowa FBSU",
313
+ "status": {
314
+ "passed": "$t(statuses:passed, capitalize)",
315
+ "failed": "$t(statuses:failed, capitalize)",
316
+ "broken": "$t(statuses:broken, capitalize)",
317
+ "skipped": "$t(statuses:skipped, capitalize)",
318
+ "unknown": "$t(statuses:unknown, capitalize)"
319
+ },
320
+ "no-history": "$t(empty:no-history-results)",
321
+ "no-results": "$t(empty:no-results)",
322
+ "tooltips": {
323
+ "current": "Najnowszy raport ({{timestamp, timestamp_long_no_seconds}})",
324
+ "history": "Raport z {{timestamp, timestamp_long_no_seconds}}"
325
+ },
326
+ "ticks": {
327
+ "current": "Najnowszy",
328
+ "history": "{{timestamp, timestamp_date}}"
329
+ }
330
+ },
331
+ "trSeverities": {
332
+ "title": "Wyniki testów według ważności",
333
+ "no-results": "$t(empty:no-results)",
334
+ "status": {
335
+ "passed": "$t(statuses:passed, capitalize)",
336
+ "failed": "$t(statuses:failed, capitalize)",
337
+ "broken": "$t(statuses:broken, capitalize)",
338
+ "skipped": "$t(statuses:skipped, capitalize)",
339
+ "unknown": "$t(statuses:unknown, capitalize)"
340
+ },
341
+ "severity": {
342
+ "blocker": "$t(severity:blocker, capitalize)",
343
+ "critical": "$t(severity:critical, capitalize)",
344
+ "normal": "$t(severity:normal, capitalize)",
345
+ "minor": "$t(severity:minor, capitalize)",
346
+ "trivial": "$t(severity:trivial, capitalize)",
347
+ "unset": "Brak ważności"
348
+ }
349
+ },
350
+ "durationDynamics": {
351
+ "title": "Dynamika czasu trwania",
352
+ "durations": {
353
+ "sequential": "Czas sekwencyjny",
354
+ "duration": "Czas trwania testów",
355
+ "speedup": "Przyspieszenie"
356
+ },
357
+ "no-results": "$t(empty:no-results)",
358
+ "tooltips": {
359
+ "current": "Najnowszy raport ({{timestamp, timestamp_long_no_seconds}})",
360
+ "history": "Raport z {{timestamp, timestamp_long_no_seconds}}"
361
+ },
362
+ "ticks": {
363
+ "current": "Najnowszy",
364
+ "history": "{{timestamp, timestamp_date}}"
365
+ },
366
+ "legend": {
367
+ "duration": "{{duration, format_duration}}",
368
+ "speedup": "{{speedup}}x"
369
+ }
370
+ }
371
+ },
372
+ "transitions": {
373
+ "description": {
374
+ "new": "Pierwsze wystąpienie tego wyniku testu w raporcie",
375
+ "fixed": "Wcześniej \"nieudany\" lub \"uszkodzony\" test, który teraz jest \"udany\"",
376
+ "regressed": "Wcześniej \"udany\" lub \"uszkodzony\" test, który teraz jest \"nieudany\"",
377
+ "malfunctioned": "Wcześniej \"udany\" lub \"nieudany\" test, który teraz jest \"uszkodzony\""
378
+ },
379
+ "new": "Nowe",
380
+ "fixed": "Naprawione",
381
+ "regressed": "Zaregresowane",
382
+ "malfunctioned": "Uszkodzone"
383
+ }
384
+ }