@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
@@ -1,120 +0,0 @@
1
- {
2
- "statuses": {
3
- "passed": "անցած",
4
- "failed": "ձախողված",
5
- "broken": "կոտրված",
6
- "skipped": "բաց թողնված",
7
- "unknown": "անհայտ",
8
- "total": "ընդհանուր",
9
- "flakyTests": "անհուսալի",
10
- "newTests": "նոր",
11
- "retryTests": "կրկնություն"
12
- },
13
- "testSummary": {
14
- "all": "Բոլոր թեստերը",
15
- "flaky": "Անհուսալի թեստեր",
16
- "retry": "Կրկնված թեստեր",
17
- "new": "Նոր թեստեր"
18
- },
19
- "tabs": {
20
- "total": "Բոլոր"
21
- },
22
- "search": {
23
- "search": "Որոնում",
24
- "search-placeholder": "Անվանում կամ ID"
25
- },
26
- "filters": {
27
- "more-filters": "Լրացուցիչ ֆիլտրեր",
28
- "enable-filter": "Միացնել \"{filter}\" ֆիլտրը",
29
- "flaky": "Անհուսալի",
30
- "retry": "Կրկնություն",
31
- "new": "Նոր"
32
- },
33
- "sort-by": {
34
- "sort-by-text": "Դասավորել ըստ:",
35
- "sort-by-category": "Դասավորել ըստ",
36
- "direction-category": "Ուղղություն"
37
- },
38
- "sort-by.values": {
39
- "order": "Կարգ",
40
- "alphabet": "Այբուբեն",
41
- "duration": "Տևողություն",
42
- "status": "Կարգավիճակ"
43
- },
44
- "sort-by.directions": {
45
- "order-desc": "Վերջինը – Առաջինը",
46
- "order-asc": "Առաջինը – Վերջինը",
47
- "order-asc-short": "Առաջինը",
48
- "order-desc-short": "Վերջինը",
49
- "alphabet-asc": "Ա – Ֆ",
50
- "alphabet-desc": "Ֆ – Ա",
51
- "alphabet-asc-short": "Ա – Ֆ",
52
- "alphabet-desc-short": "Ֆ – Ա",
53
- "duration-asc": "1 – 9",
54
- "duration-desc": "9 – 1",
55
- "duration-asc-short": "1 – 9",
56
- "duration-desc-short": "9 – 1",
57
- "status-asc": "Ինչպես ֆիլտրերի ցանկում",
58
- "status-desc": "Հակադարձված",
59
- "status-asc-short": "Սովորական",
60
- "status-desc-short": "Հակադարձված"
61
- },
62
- "empty": {
63
- "no-results": "Ոչ մի արդյունք",
64
- "no-tests-found": "Արդյունքներ չեն գտնվել",
65
- "clear-filters": "Մաքրել ֆիլտրները",
66
- "no-attachments-results": "Կցորդների մասին տեղեկություններ չկան",
67
- "no-history-results": "Պատմության մասին տեղեկություններ չկան",
68
- "no-retries-results": "Կրկնությունների մասին տեղեկություններ չկան",
69
- "no-test-steps-results": "Թեստի քայլերի մասին տեղեկատվությունը հասանելի չէ։",
70
- "no-test-case-results": "Թեստի դեպքերի արդյունքներ չկան։"
71
- },
72
- "severity": {
73
- "blocker": "արգելափակում",
74
- "critical": "կրիտիկական",
75
- "normal": "նորմալ",
76
- "minor": "աննշան",
77
- "trivial": "աննշան"
78
- },
79
- "execution": {
80
- "name": "Կատարում",
81
- "body": "Թեստի մարմին",
82
- "setup": "Պատրաստում",
83
- "teardown": "Ավարտում"
84
- },
85
- "ui": {
86
- "labels": "Պիտակներ",
87
- "metadata": "Մետատվյալներ",
88
- "parameters": "Պարամետրեր",
89
- "description": "Նկարագրություն",
90
- "links": "Հղումներ",
91
- "overview": "Ակնարկ",
92
- "history": "Պատմություն",
93
- "attachments": "Կցորդներ",
94
- "retries": "Կրկնություններ",
95
- "error": "Սխալ",
96
- "goToStep": "Գնալ քայլին",
97
- "showLess": "Ցուցադրել պակաս",
98
- "showMore": "Ցուցադրել ավելին",
99
- "copy": "Պատճենել",
100
- "at": "է"
101
- },
102
- "controls": {
103
- "newTabAttachment": "Բացել նոր ներդիրում",
104
- "nextTR": "Հաջորդ թեստի արդյունքը",
105
- "prevTR": "Նախորդ թեստի արդյունքը",
106
- "downloadAttachment": "Ներբեռնել կցորդը",
107
- "backto": "Վերադառնալ",
108
- "clipboard": "Պատճենել սեղմատախտակին",
109
- "clipboardError": "Սխալ. Հավանաբար ձեր զննարկիչը չի աջակցում այս գործառույթին",
110
- "clipboardSuccess": "Հաջողությամբ պատճենվեց",
111
- "collapse": "Կծկել",
112
- "expand": "Ընդլայնել",
113
- "fullscreen": "Լրիվ էկրան",
114
- "language": "Փոխել լեզուն",
115
- "openInNewTab": "Բացել նոր ներդիրում"
116
- },
117
- "errors": {
118
- "missedAttachment": "Կցորդը չի գտնվել"
119
- }
120
- }
@@ -1,120 +0,0 @@
1
- {
2
- "statuses": {
3
- "passed": "keçdi",
4
- "failed": "uğursuz",
5
- "broken": "sınıq",
6
- "skipped": "keçildi",
7
- "unknown": "naməlum",
8
- "total": "cəmi",
9
- "flakyTests": "etibarsız",
10
- "newTests": "yeni",
11
- "retryTests": "təkrar"
12
- },
13
- "testSummary": {
14
- "all": "Bütün testlər",
15
- "flaky": "Etibarsız testlər",
16
- "retry": "Təkrar testlər",
17
- "new": "Yeni testlər"
18
- },
19
- "tabs": {
20
- "total": "Bütün"
21
- },
22
- "search": {
23
- "search": "Axtarış",
24
- "search-placeholder": "Ad və ya ID"
25
- },
26
- "filters": {
27
- "more-filters": "Daha çox filtr",
28
- "enable-filter": "\"{filter}\" filtrlərini aktiv edin",
29
- "flaky": "Etibarsız",
30
- "retry": "Təkrar",
31
- "new": "Yeni"
32
- },
33
- "sort-by": {
34
- "sort-by-text": "Sıralamaq üzrə:",
35
- "sort-by-category": "Sıralamaq üzrə",
36
- "direction-category": "İstiqamət"
37
- },
38
- "sort-by.values": {
39
- "order": "Sıra",
40
- "alphabet": "Əlifba",
41
- "duration": "Müddət",
42
- "status": "Status"
43
- },
44
- "sort-by.directions": {
45
- "order-desc": "Sonuncu – Birinci",
46
- "order-asc": "Birinci – Sonuncu",
47
- "order-asc-short": "Birinci",
48
- "order-desc-short": "Sonuncu",
49
- "alphabet-asc": "A – Z",
50
- "alphabet-desc": "Z – A",
51
- "alphabet-asc-short": "A – Z",
52
- "alphabet-desc-short": "Z – A",
53
- "duration-asc": "1 – 9",
54
- "duration-desc": "9 – 1",
55
- "duration-asc-short": "1 – 9",
56
- "duration-desc-short": "9 – 1",
57
- "status-asc": "Filtr siyahısına uyğun",
58
- "status-desc": "Tərsinə çevrilmiş",
59
- "status-asc-short": "Adi",
60
- "status-desc-short": "Tərs"
61
- },
62
- "empty": {
63
- "no-results": "Nəticə tapılmadı",
64
- "no-tests-found": "Nəticə tapılmadı",
65
- "clear-filters": "Filtrləri təmizlə",
66
- "no-attachments-results": "Əlavə məlumatı mövcud deyil",
67
- "no-history-results": "Tarixçə məlumatı mövcud deyil",
68
- "no-retries-results": "Təkrar məlumatı mövcud deyil",
69
- "no-test-steps-results": "Test addımları haqqında məlumat mövcud deyil",
70
- "no-test-case-results": "Test halları haqqında nəticələr yoxdur"
71
- },
72
- "severity": {
73
- "blocker": "bloklayıcı",
74
- "critical": "kritik",
75
- "normal": "normal",
76
- "minor": "kiçik",
77
- "trivial": "əhəmiyyətsiz"
78
- },
79
- "execution": {
80
- "name": "İcra",
81
- "body": "Test məzmunu",
82
- "setup": "Hazırlıq",
83
- "teardown": "Yekunlaşma"
84
- },
85
- "ui": {
86
- "labels": "Etiketlər",
87
- "metadata": "Metaməlumat",
88
- "parameters": "Parametrlər",
89
- "description": "Təsvir",
90
- "links": "Keçidlər",
91
- "overview": "Ümumi baxış",
92
- "history": "Tarixçə",
93
- "attachments": "Əlavələr",
94
- "retries": "Təkrarlar",
95
- "error": "Səhv",
96
- "goToStep": "Addıma keç",
97
- "showLess": "Daha az göstər",
98
- "showMore": "Daha çox göstər",
99
- "copy": "Kopyala",
100
- "at": "üçün"
101
- },
102
- "controls": {
103
- "newTabAttachment": "Yeni sekmede aç",
104
- "nextTR": "Növbəti test nəticəsi",
105
- "prevTR": "Əvvəlki test nəticəsi",
106
- "downloadAttachment": "Əlavəni yüklə",
107
- "backto": "Geri dön",
108
- "clipboard": "Panoya kopyala",
109
- "clipboardError": "Səhv. Görünür, bu xüsusiyyət brauzeriniz tərəfindən dəstəklənmir",
110
- "clipboardSuccess": "Uğurla kopyalandı",
111
- "collapse": "Daralt",
112
- "expand": "Genişləndir",
113
- "fullscreen": "Tam ekran",
114
- "language": "Dili dəyiş",
115
- "openInNewTab": "Yeni tabda aç"
116
- },
117
- "errors": {
118
- "missedAttachment": "Əlavə tapılmadı"
119
- }
120
- }
@@ -1,120 +0,0 @@
1
- {
2
- "statuses": {
3
- "passed": "bestanden",
4
- "failed": "fehlgeschlagen",
5
- "broken": "defekt",
6
- "skipped": "übersprungen",
7
- "unknown": "unbekannt",
8
- "total": "gesamt",
9
- "flakyTests": "instabil",
10
- "newTests": "neu",
11
- "retryTests": "wiederholen"
12
- },
13
- "testSummary": {
14
- "all": "Alle Tests",
15
- "flaky": "Instabile Tests",
16
- "retry": "Wiederholte Tests",
17
- "new": "Neue Tests"
18
- },
19
- "tabs": {
20
- "total": "Alle"
21
- },
22
- "search": {
23
- "search": "Suchen",
24
- "search-placeholder": "Name oder ID"
25
- },
26
- "filters": {
27
- "more-filters": "Weitere Filter",
28
- "enable-filter": "Filter für \"{filter}\" aktivieren",
29
- "flaky": "Instabil",
30
- "retry": "Wiederholen",
31
- "new": "Neu"
32
- },
33
- "sort-by": {
34
- "sort-by-text": "Sortieren nach:",
35
- "sort-by-category": "Sortieren nach",
36
- "direction-category": "Richtung"
37
- },
38
- "sort-by.values": {
39
- "order": "Reihenfolge",
40
- "alphabet": "Alphabet",
41
- "duration": "Dauer",
42
- "status": "Status"
43
- },
44
- "sort-by.directions": {
45
- "order-desc": "Neueste – Älteste",
46
- "order-asc": "Älteste – Neueste",
47
- "order-asc-short": "Älteste",
48
- "order-desc-short": "Neueste",
49
- "alphabet-asc": "A – Z",
50
- "alphabet-desc": "Z – A",
51
- "alphabet-asc-short": "A – Z",
52
- "alphabet-desc-short": "Z – A",
53
- "duration-asc": "1 – 9",
54
- "duration-desc": "9 – 1",
55
- "duration-asc-short": "1 – 9",
56
- "duration-desc-short": "9 – 1",
57
- "status-asc": "Wie in der Filterliste",
58
- "status-desc": "Umgekehrt",
59
- "status-asc-short": "Normal",
60
- "status-desc-short": "Umgekehrt"
61
- },
62
- "empty": {
63
- "no-results": "Keine Ergebnisse",
64
- "no-tests-found": "Keine Ergebnisse gefunden",
65
- "clear-filters": "Filter löschen",
66
- "no-attachments-results": "Keine Anhängeinformationen verfügbar",
67
- "no-history-results": "Keine Verlaufsinformationen verfügbar",
68
- "no-retries-results": "Keine Wiederholungsinformationen verfügbar",
69
- "no-test-steps-results": "Keine Informationen zu Testschritten verfügbar",
70
- "no-test-case-results": "Keine Testergebnisse verfügbar"
71
- },
72
- "severity": {
73
- "blocker": "Blocker",
74
- "critical": "kritisch",
75
- "normal": "normal",
76
- "minor": "geringfügig",
77
- "trivial": "trivial"
78
- },
79
- "execution": {
80
- "name": "Ausführung",
81
- "body": "Testkörper",
82
- "setup": "Vorbereitung",
83
- "teardown": "Abbau"
84
- },
85
- "ui": {
86
- "labels": "Labels",
87
- "metadata": "Metadaten",
88
- "parameters": "Parameter",
89
- "description": "Beschreibung",
90
- "links": "Links",
91
- "overview": "Übersicht",
92
- "history": "Verlauf",
93
- "attachments": "Anhänge",
94
- "retries": "Wiederholungen",
95
- "error": "Fehler",
96
- "goToStep": "Zum Schritt gehen",
97
- "showLess": "Weniger anzeigen",
98
- "showMore": "Mehr anzeigen",
99
- "copy": "Kopieren",
100
- "at": "bei"
101
- },
102
- "controls": {
103
- "newTabAttachment": "Anhang in neuem Tab öffnen",
104
- "nextTR": "Nächstes Testergebnis",
105
- "prevTR": "Vorheriges Testergebnis",
106
- "downloadAttachment": "Anhang herunterladen",
107
- "backto": "Zurück zu",
108
- "clipboard": "In die Zwischenablage kopieren",
109
- "clipboardError": "Fehler. Diese Funktion wird von Ihrem Browser wahrscheinlich nicht unterstützt",
110
- "clipboardSuccess": "Erfolgreich kopiert",
111
- "collapse": "Einklappen",
112
- "expand": "Ausklappen",
113
- "fullscreen": "Vollbild",
114
- "language": "Sprache ändern",
115
- "openInNewTab": "In neuem Tab öffnen"
116
- },
117
- "errors": {
118
- "missedAttachment": "Anhang nicht gefunden"
119
- }
120
- }
@@ -1,121 +0,0 @@
1
- {
2
- "statuses": {
3
- "passed": "passed",
4
- "failed": "failed",
5
- "broken": "broken",
6
- "skipped": "skipped",
7
- "unknown": "unknown",
8
- "total": "total",
9
- "flakyTests": "flaky",
10
- "newTests": "new",
11
- "retryTests": "retry"
12
- },
13
- "testSummary": {
14
- "all": "All Test",
15
- "flaky": "Flaky test",
16
- "retry": "Retry test",
17
- "new": "New test"
18
- },
19
- "tabs": {
20
- "total": "All"
21
- },
22
- "search": {
23
- "search": "Search",
24
- "search-placeholder": "Name or ID"
25
- },
26
- "filters": {
27
- "more-filters": "More filters",
28
- "enable-filter": "params('Enable \"{filter}\" filter')",
29
- "flaky": "Flaky",
30
- "retry": "Retry",
31
- "new": "New"
32
- },
33
- "sort-by": {
34
- "sort-by-text": "Sort by:",
35
- "sort-by-category": "Sort by",
36
- "direction-category": "Direction"
37
- },
38
- "sort-by.values": {
39
- "order": "Order",
40
- "alphabet": "Alphabet",
41
- "duration": "Duration",
42
- "status": "Status"
43
- },
44
- "sort-by.directions": {
45
- "order-desc": "Latest – Earliest",
46
- "order-asc": "Earliest – Latest",
47
- "order-asc-short": "Earliest",
48
- "order-desc-short": "Latest",
49
- "alphabet-asc": "A – Z",
50
- "alphabet-desc": "Z – A",
51
- "alphabet-asc-short": "A – Z",
52
- "alphabet-desc-short": "Z – A",
53
- "duration-asc": "1 – 9",
54
- "duration-desc": "9 – 1",
55
- "duration-asc-short": "1 – 9",
56
- "duration-desc-short": "9 – 1",
57
- "status-asc": "As in the filter list",
58
- "status-desc": "Reversed",
59
- "status-asc-short": "Regular",
60
- "status-desc-short": "Reversed"
61
- },
62
- "empty": {
63
- "no-results": "No results",
64
- "no-tests-found": "No results found",
65
- "no-message-provided": "No message is provided",
66
- "clear-filters": "Clear filters",
67
- "no-attachments-results": "No attachments information available",
68
- "no-history-results": "No history information available",
69
- "no-retries-results": "No retries information available",
70
- "no-test-steps-results": "No test steps information available",
71
- "no-test-case-results": "No test case results"
72
- },
73
- "severity": {
74
- "blocker": "blocker",
75
- "critical": "critical",
76
- "normal": "normal",
77
- "minor": "minor",
78
- "trivial": "trivial"
79
- },
80
- "execution": {
81
- "name": "Execution",
82
- "body": "Test body",
83
- "setup": "Set up",
84
- "teardown": "Tear down"
85
- },
86
- "ui": {
87
- "labels": "Labels",
88
- "metadata": "Metadata",
89
- "parameters": "Parameters",
90
- "description": "Description",
91
- "links": "Links",
92
- "overview": "Overview",
93
- "history": "History",
94
- "attachments": "Attachments",
95
- "retries": "Retries",
96
- "error": "Error",
97
- "goToStep": "Go to step",
98
- "showLess": "Show less",
99
- "showMore": "Show more",
100
- "copy": "Copy",
101
- "at": "at"
102
- },
103
- "controls": {
104
- "newTabAttachment": "Open attachment in new tab",
105
- "nextTR": "Next Test result",
106
- "prevTR": "Previous Test result",
107
- "downloadAttachment": "Download attachment",
108
- "backto": "Back to",
109
- "clipboard": "Copy to clipboard",
110
- "clipboardError": "Can not copy value to clipboard. Seems like this feature is not supported for your browser",
111
- "clipboardSuccess": "Successfully copied",
112
- "collapse": "Collapse",
113
- "expand": "Expand",
114
- "fullscreen": "Full screen",
115
- "language": "Change language",
116
- "openInNewTab": "Open in new tab"
117
- },
118
- "errors": {
119
- "missedAttachment": "Attachment not found"
120
- }
121
- }
@@ -1,120 +0,0 @@
1
- {
2
- "statuses": {
3
- "passed": "aprobado",
4
- "failed": "fallido",
5
- "broken": "roto",
6
- "skipped": "omitido",
7
- "unknown": "desconocido",
8
- "total": "total",
9
- "flakyTests": "inestable",
10
- "newTests": "nuevo",
11
- "retryTests": "reintento"
12
- },
13
- "testSummary": {
14
- "all": "Todas las pruebas",
15
- "flaky": "Pruebas inestables",
16
- "retry": "Pruebas reintentadas",
17
- "new": "Pruebas nuevas"
18
- },
19
- "tabs": {
20
- "total": "Todo"
21
- },
22
- "search": {
23
- "search": "Buscar",
24
- "search-placeholder": "Nombre o ID"
25
- },
26
- "filters": {
27
- "more-filters": "Más filtros",
28
- "enable-filter": "Habilitar filtro para \"{filter}\"",
29
- "flaky": "Inestable",
30
- "retry": "Reintento",
31
- "new": "Nuevo"
32
- },
33
- "sort-by": {
34
- "sort-by-text": "Ordenar por:",
35
- "sort-by-category": "Ordenar por",
36
- "direction-category": "Dirección"
37
- },
38
- "sort-by.values": {
39
- "order": "Orden",
40
- "alphabet": "Alfabeto",
41
- "duration": "Duración",
42
- "status": "Estado"
43
- },
44
- "sort-by.directions": {
45
- "order-desc": "Más reciente – Más antiguo",
46
- "order-asc": "Más antiguo – Más reciente",
47
- "order-asc-short": "Antiguo",
48
- "order-desc-short": "Reciente",
49
- "alphabet-asc": "A – Z",
50
- "alphabet-desc": "Z – A",
51
- "alphabet-asc-short": "A – Z",
52
- "alphabet-desc-short": "Z – A",
53
- "duration-asc": "1 – 9",
54
- "duration-desc": "9 – 1",
55
- "duration-asc-short": "1 – 9",
56
- "duration-desc-short": "9 – 1",
57
- "status-asc": "Como en la lista de filtros",
58
- "status-desc": "Invertido",
59
- "status-asc-short": "Regular",
60
- "status-desc-short": "Invertido"
61
- },
62
- "empty": {
63
- "no-results": "Sin resultados",
64
- "no-tests-found": "No se encontraron resultados",
65
- "clear-filters": "Limpiar filtros",
66
- "no-attachments-results": "No hay información de adjuntos disponible",
67
- "no-history-results": "No hay información de historial disponible",
68
- "no-retries-results": "No hay información de reintentos disponible",
69
- "no-test-steps-results": "No hay información disponible sobre los pasos de prueba",
70
- "no-test-case-results": "No hay resultados de casos de prueba"
71
- },
72
- "severity": {
73
- "blocker": "bloqueante",
74
- "critical": "crítico",
75
- "normal": "normal",
76
- "minor": "menor",
77
- "trivial": "trivial"
78
- },
79
- "execution": {
80
- "name": "Ejecución",
81
- "body": "Cuerpo de la prueba",
82
- "setup": "Configuración",
83
- "teardown": "Desmontaje"
84
- },
85
- "ui": {
86
- "labels": "Etiquetas",
87
- "metadata": "Metadatos",
88
- "parameters": "Parámetros",
89
- "description": "Descripción",
90
- "links": "Enlaces",
91
- "overview": "Resumen",
92
- "history": "Historial",
93
- "attachments": "Adjuntos",
94
- "retries": "Reintentos",
95
- "error": "Error",
96
- "goToStep": "Ir al paso",
97
- "showLess": "Mostrar menos",
98
- "showMore": "Mostrar más",
99
- "copy": "Copiar",
100
- "at": "a las"
101
- },
102
- "controls": {
103
- "newTabAttachment": "Abrir adjunto en nueva pestaña",
104
- "nextTR": "Siguiente resultado de prueba",
105
- "prevTR": "Resultado de prueba anterior",
106
- "downloadAttachment": "Descargar adjunto",
107
- "backto": "Volver a",
108
- "clipboard": "Copiar al portapapeles",
109
- "clipboardError": "Error. Parece que esta funcionalidad no está soportada por tu navegador",
110
- "clipboardSuccess": "Copiado con éxito",
111
- "collapse": "Colapsar",
112
- "expand": "Expandir",
113
- "fullscreen": "Pantalla completa",
114
- "language": "Cambiar idioma",
115
- "openInNewTab": "Abrir en nueva pestaña"
116
- },
117
- "errors": {
118
- "missedAttachment": "Adjunto no encontrado"
119
- }
120
- }