@allurereport/web-awesome 3.0.0-beta.8 → 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 (282) 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 +30 -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 -31
  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 -66
  57. package/src/components/ReportBody/index.tsx +29 -17
  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 +5 -0
  83. package/src/components/TestResult/TestStepsEmpty/index.tsx +23 -0
  84. package/src/components/TestResult/TestStepsEmpty/styles.scss +25 -0
  85. package/src/components/TestResult/TrAttachmentsView/index.tsx +29 -0
  86. package/src/components/TestResult/{TestResultDescription → TrDescription}/index.tsx +5 -5
  87. package/src/components/TestResult/{TestResultDropdown → TrDropdown}/index.tsx +7 -5
  88. package/src/components/TestResult/{TestResultEmpty → TrEmpty}/index.tsx +10 -9
  89. package/src/components/TestResult/TrEnvironmentItem/index.tsx +82 -0
  90. package/src/components/TestResult/TrEnvironmentItem/styles.scss +60 -0
  91. package/src/components/TestResult/TrEnvironmentsView/index.tsx +64 -0
  92. package/src/components/TestResult/TrEnvironmentsView/styles.scss +11 -0
  93. package/src/components/TestResult/TrError/TrDiff.tsx +121 -0
  94. package/src/components/TestResult/TrError/index.tsx +104 -0
  95. package/src/components/TestResult/TrError/styles.scss +223 -0
  96. package/src/components/TestResult/TrHeader/TrBreadcrumbs.tsx +44 -0
  97. package/src/components/TestResult/TrHeader/index.tsx +15 -0
  98. package/src/components/TestResult/{TestResultHeader → TrHeader}/styles.scss +7 -2
  99. package/src/components/TestResult/TrHistory/TrHistoryItem.tsx +94 -0
  100. package/src/components/TestResult/TrHistory/index.tsx +26 -0
  101. package/src/components/TestResult/{TestResultHistory → TrHistory}/styles.scss +2 -1
  102. package/src/components/TestResult/{TestResultInfo/TestResultInfoStatuses.tsx → TrInfo/TrInfoStatuses.tsx} +6 -4
  103. package/src/components/TestResult/TrInfo/index.tsx +99 -0
  104. package/src/components/TestResult/{TestResultInfo → TrInfo}/styles.scss +18 -0
  105. package/src/components/TestResult/{TestResultLinks → TrLinks}/index.tsx +8 -8
  106. package/src/components/TestResult/{TestResultMetadata → TrMetadata}/index.tsx +6 -6
  107. package/src/components/TestResult/{TestResultNavigation → TrNavigation}/index.tsx +7 -9
  108. package/src/components/TestResult/TrOverview.tsx +46 -0
  109. package/src/components/TestResult/{TestResultParameters → TrParameters}/index.tsx +4 -4
  110. package/src/components/TestResult/TrPrevStatuses/index.tsx +63 -0
  111. package/src/components/TestResult/TrPwTraces/PwTrace.tsx +34 -0
  112. package/src/components/TestResult/TrPwTraces/PwTraceButton.tsx +32 -0
  113. package/src/components/TestResult/TrPwTraces/index.tsx +32 -0
  114. package/src/components/TestResult/TrPwTraces/styles.scss +20 -0
  115. package/src/components/TestResult/TrRetriesView/TrRetriesItem.tsx +70 -0
  116. package/src/components/TestResult/TrRetriesView/index.tsx +29 -0
  117. package/src/components/TestResult/{TestResultSetup → TrSetup}/index.tsx +24 -15
  118. package/src/components/TestResult/{TestResultSeverity → TrSeverity}/index.tsx +2 -2
  119. package/src/components/TestResult/{TestResultStatus → TrStatus}/index.tsx +5 -5
  120. package/src/components/TestResult/TrSteps/TrAttachment.tsx +118 -0
  121. package/src/components/TestResult/{TestResultSteps/testResultAttachmentInfo.tsx → TrSteps/TrAttachmentInfo.tsx} +11 -11
  122. package/src/components/TestResult/TrSteps/TrStep.tsx +98 -0
  123. package/src/components/TestResult/TrSteps/TrStepInfo.tsx +90 -0
  124. package/src/components/TestResult/TrSteps/index.tsx +58 -0
  125. package/src/components/TestResult/{TestResultSteps → TrSteps}/styles.scss +49 -10
  126. package/src/components/TestResult/{TestResultSteps → TrSteps}/wrongAttachment.tsx +1 -1
  127. package/src/components/TestResult/TrTabs/index.tsx +42 -0
  128. package/src/components/TestResult/{TestResultTeardown → TrTeardown}/index.tsx +25 -15
  129. package/src/components/TestResult/index.tsx +54 -38
  130. package/src/components/TestResult/styles.scss +12 -0
  131. package/src/components/Timeline/index.tsx +100 -0
  132. package/src/components/Timeline/styles.scss +45 -0
  133. package/src/components/ToggleLayout/index.tsx +17 -0
  134. package/src/components/Tree/index.tsx +122 -16
  135. package/src/components/Tree/styles.scss +23 -5
  136. package/src/index.html +23 -6
  137. package/src/index.tsx +91 -20
  138. package/src/locales/az.json +376 -0
  139. package/src/locales/de.json +376 -0
  140. package/src/locales/en.json +376 -0
  141. package/src/locales/es.json +376 -0
  142. package/src/locales/fr.json +376 -0
  143. package/src/locales/he.json +376 -0
  144. package/src/locales/hy.json +376 -0
  145. package/src/locales/it.json +376 -0
  146. package/src/locales/ja.json +376 -0
  147. package/src/locales/ka.json +376 -0
  148. package/src/locales/kr.json +376 -0
  149. package/src/locales/nl.json +376 -0
  150. package/src/locales/pl.json +384 -0
  151. package/src/locales/pt.json +376 -0
  152. package/src/locales/ru.json +384 -0
  153. package/src/locales/sv.json +376 -0
  154. package/src/locales/tr.json +376 -0
  155. package/src/locales/ua.json +327 -0
  156. package/src/locales/zh.json +376 -0
  157. package/src/stores/chart.ts +41 -6
  158. package/src/stores/env.ts +88 -0
  159. package/src/stores/envInfo.ts +2 -2
  160. package/src/stores/globals.ts +28 -0
  161. package/src/stores/layout.ts +36 -0
  162. package/src/stores/locale.ts +77 -29
  163. package/src/stores/modal.ts +22 -0
  164. package/src/stores/qualityGate.ts +28 -0
  165. package/src/stores/router.ts +108 -0
  166. package/src/stores/sections.ts +63 -0
  167. package/src/stores/stats.ts +52 -7
  168. package/src/stores/testResults.ts +13 -9
  169. package/src/stores/theme.ts +15 -18
  170. package/src/stores/timeline.ts +39 -0
  171. package/src/stores/tree.ts +101 -31
  172. package/src/stores/variables.ts +40 -0
  173. package/src/styles.scss +66 -0
  174. package/src/utils/loadFromLocalStorage.ts +8 -0
  175. package/src/utils/time.ts +1 -0
  176. package/src/utils/tree.ts +23 -0
  177. package/src/utils/treeFilters.ts +27 -21
  178. package/test/components/Header/CiInfo.test.tsx +177 -0
  179. package/test/components/Header.test.tsx +122 -0
  180. package/test/utils/treeFilters.test.ts +44 -44
  181. package/tsconfig.json +7 -2
  182. package/tsconfig.node.json +8 -0
  183. package/types.d.ts +53 -21
  184. package/vitest.config.ts +15 -2
  185. package/vitest.setup.ts +1 -0
  186. package/webpack.config.js +37 -5
  187. package/dist/multi/141.app-4375537b.js +0 -1
  188. package/dist/multi/222.app-4375537b.js +0 -1
  189. package/dist/multi/335.app-4375537b.js +0 -1
  190. package/dist/multi/34.app-4375537b.js +0 -1
  191. package/dist/multi/349.app-4375537b.js +0 -1
  192. package/dist/multi/378.app-4375537b.js +0 -1
  193. package/dist/multi/406.app-4375537b.js +0 -1
  194. package/dist/multi/476.app-4375537b.js +0 -1
  195. package/dist/multi/53.app-4375537b.js +0 -1
  196. package/dist/multi/584.app-4375537b.js +0 -1
  197. package/dist/multi/690.app-4375537b.js +0 -1
  198. package/dist/multi/747.app-4375537b.js +0 -1
  199. package/dist/multi/767.app-4375537b.js +0 -1
  200. package/dist/multi/816.app-4375537b.js +0 -1
  201. package/dist/multi/83.app-4375537b.js +0 -1
  202. package/dist/multi/873.app-4375537b.js +0 -1
  203. package/dist/multi/920.app-4375537b.js +0 -1
  204. package/dist/multi/991.app-4375537b.js +0 -1
  205. package/dist/multi/app-4375537b.js +0 -2
  206. package/dist/multi/app-4375537b.js.LICENSE.txt +0 -16
  207. package/dist/multi/styles-4375537b.css +0 -283
  208. package/dist/single/app-f16f6693.js +0 -2
  209. package/dist/single/app-f16f6693.js.LICENSE.txt +0 -16
  210. package/src/assets/scss/code.scss +0 -71
  211. package/src/assets/scss/typography.scss +0 -218
  212. package/src/components/ArrowButton/index.tsx +0 -36
  213. package/src/components/ArrowButton/styles.scss +0 -35
  214. package/src/components/LanguagePicker/index.tsx +0 -40
  215. package/src/components/Modal/styles.scss +0 -126
  216. package/src/components/ReportLogo/index.tsx +0 -16
  217. package/src/components/ReportLogo/styles.scss +0 -20
  218. package/src/components/ReportLogoFull/index.tsx +0 -20
  219. package/src/components/ReportLogoFull/styles.scss +0 -7
  220. package/src/components/TestResult/TestResultAttachmentsView/index.tsx +0 -27
  221. package/src/components/TestResult/TestResultError/index.tsx +0 -59
  222. package/src/components/TestResult/TestResultError/styles.scss +0 -51
  223. package/src/components/TestResult/TestResultHeader/index.tsx +0 -55
  224. package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +0 -67
  225. package/src/components/TestResult/TestResultHistory/index.tsx +0 -26
  226. package/src/components/TestResult/TestResultInfo/index.tsx +0 -79
  227. package/src/components/TestResult/TestResultOverview.tsx +0 -40
  228. package/src/components/TestResult/TestResultPrevStatuses/index.tsx +0 -49
  229. package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +0 -52
  230. package/src/components/TestResult/TestResultRetriesView/index.tsx +0 -24
  231. package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +0 -12
  232. package/src/components/TestResult/TestResultSteps/attachment.tsx +0 -68
  233. package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +0 -20
  234. package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +0 -32
  235. package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +0 -15
  236. package/src/components/TestResult/TestResultSteps/index.tsx +0 -49
  237. package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +0 -77
  238. package/src/components/TestResult/TestResultSteps/testResultStep.tsx +0 -78
  239. package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +0 -30
  240. package/src/components/TestResult/TestResultTabs/index.tsx +0 -59
  241. package/src/components/ThemeButton/ThemeButton.tsx +0 -20
  242. package/src/components/Tree/Tree.tsx +0 -68
  243. package/src/components/Tree/TreeHeader.tsx +0 -82
  244. package/src/components/Tree/TreeItem.tsx +0 -35
  245. package/src/components/Tree/TreeItemIcon.tsx +0 -32
  246. package/src/i18n/constants.ts +0 -124
  247. package/src/i18n/locales/am.json +0 -118
  248. package/src/i18n/locales/az.json +0 -118
  249. package/src/i18n/locales/de.json +0 -118
  250. package/src/i18n/locales/en.json +0 -119
  251. package/src/i18n/locales/es.json +0 -118
  252. package/src/i18n/locales/fr.json +0 -118
  253. package/src/i18n/locales/he.json +0 -118
  254. package/src/i18n/locales/it.json +0 -118
  255. package/src/i18n/locales/ja.json +0 -118
  256. package/src/i18n/locales/ka.json +0 -118
  257. package/src/i18n/locales/kr.json +0 -118
  258. package/src/i18n/locales/nl.json +0 -118
  259. package/src/i18n/locales/pl.json +0 -116
  260. package/src/i18n/locales/pt.json +0 -118
  261. package/src/i18n/locales/ru.json +0 -116
  262. package/src/i18n/locales/sv.json +0 -118
  263. package/src/i18n/locales/tr.json +0 -118
  264. package/src/i18n/locales/zh.json +0 -118
  265. package/src/utils/attachments.ts +0 -156
  266. package/src/utils/capitalize.ts +0 -6
  267. /package/dist/multi/{JetBrainsMono_vf-b9a9c326..woff → JetBrainsMono_vf.woff} +0 -0
  268. /package/dist/multi/{JetBrainsMono_vf-9e9649b6..woff2 → JetBrainsMono_vf.woff2} +0 -0
  269. /package/dist/multi/{pt-root-ui_vf-22fe60ca..woff → pt-root-ui_vf.woff} +0 -0
  270. /package/dist/multi/{pt-root-ui_vf-9d251e8b..woff2 → pt-root-ui_vf.woff2} +0 -0
  271. /package/src/components/TestResult/{TestResultAttachmentsView → TrAttachmentsView}/styles.scss +0 -0
  272. /package/src/components/TestResult/{TestResultDescription → TrDescription}/styles.scss +0 -0
  273. /package/src/components/TestResult/{TestResultDropdown → TrDropdown}/styles.scss +0 -0
  274. /package/src/components/TestResult/{TestResultEmpty → TrEmpty}/styles.scss +0 -0
  275. /package/src/components/TestResult/{TestResultLinks → TrLinks}/styles.scss +0 -0
  276. /package/src/components/TestResult/{TestResultMetadata → TrMetadata}/styles.scss +0 -0
  277. /package/src/components/TestResult/{TestResultNavigation → TrNavigation}/styles.scss +0 -0
  278. /package/src/components/TestResult/{TestResultParameters → TrParameters}/styles.scss +0 -0
  279. /package/src/components/TestResult/{TestResultPrevStatuses → TrPrevStatuses}/styles.scss +0 -0
  280. /package/src/components/TestResult/{TestResultRetriesView → TrRetriesView}/styles.scss +0 -0
  281. /package/src/components/TestResult/{TestResultSeverity → TrSeverity}/styles.scss +0 -0
  282. /package/src/components/TestResult/{TestResultStatus → TrStatus}/styles.scss +0 -0
@@ -0,0 +1,376 @@
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
+ "total": "合計",
15
+ "flaky": "不安定なテスト",
16
+ "retries": "再実行テスト",
17
+ "new": "新しいテスト"
18
+ },
19
+ "tabs": {
20
+ "total": "すべて",
21
+ "results": "結果",
22
+ "globalAttachments": "グローバル添付ファイル",
23
+ "globalErrors": "グローバルエラー",
24
+ "qualityGates": "品質ゲート"
25
+ },
26
+ "search": {
27
+ "search": "検索",
28
+ "search-placeholder": "名前またはID"
29
+ },
30
+ "filters": {
31
+ "more-filters": "フィルター",
32
+ "enable-filter": "\"{{filter}}\"フィルターを有効にする",
33
+ "flaky": "不安定",
34
+ "retry": "再実行",
35
+ "new": "新規",
36
+ "fixed": "修正済み",
37
+ "regressed": "退行",
38
+ "malfunctioned": "破損"
39
+ },
40
+ "filters.description": {
41
+ "flaky": "不安定なテストを表示",
42
+ "retry": "再実行されたテスト結果を表示します",
43
+ "new": "このレポートで初めて表示されるテスト結果を表示します",
44
+ "fixed": "現在「成功」しているが、以前「失敗」または「破損」していたテストを表示します",
45
+ "regressed": "ステータスが「成功」または「破損」から「失敗」に変更されたテスト結果を表示します",
46
+ "malfunctioned": "ステータスが「成功」または「失敗」から「破損」に変更されたテスト結果を表示します"
47
+ },
48
+ "sort-by": {
49
+ "sort-by-text": "並べ替え:",
50
+ "sort-by-category": "並べ替え",
51
+ "direction-category": "方向"
52
+ },
53
+ "sort-by.values": {
54
+ "order": "順序",
55
+ "alphabet": "アルファベット",
56
+ "duration": "期間",
57
+ "status": "ステータス"
58
+ },
59
+ "sort-by.directions": {
60
+ "order-desc": "最新 – 最古",
61
+ "order-asc": "最古 – 最新",
62
+ "order-asc-short": "最古",
63
+ "order-desc-short": "最新",
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": "フィルターリストの順序",
73
+ "status-desc": "逆順",
74
+ "status-asc-short": "通常",
75
+ "status-desc-short": "逆順"
76
+ },
77
+ "empty": {
78
+ "no-results": "結果なし",
79
+ "no-tests-found": "結果が見つかりません",
80
+ "no-message-provided": "メッセージが提供されていません",
81
+ "clear-filters": "フィルタをクリア",
82
+ "no-attachments-results": "添付ファイル情報がありません",
83
+ "no-global-errors-results": "グローバルエラー情報がありません",
84
+ "no-quality-gate-results": "品質ゲートの結果がありません",
85
+ "no-history-results": "履歴情報がありません",
86
+ "no-retries-results": "再試行情報が利用できません",
87
+ "no-test-steps-results": "テスト手順の情報は利用できません",
88
+ "no-test-case-results": "テストケースの結果がありません",
89
+ "no-environments-results": "環境情報が利用できません"
90
+ },
91
+ "severity": {
92
+ "blocker": "ブロッカー",
93
+ "critical": "重大",
94
+ "normal": "通常",
95
+ "minor": "小規模",
96
+ "trivial": "些細"
97
+ },
98
+ "execution": {
99
+ "name": "実行",
100
+ "body": "テスト本体",
101
+ "setup": "セットアップ",
102
+ "teardown": "後処理"
103
+ },
104
+ "environments": {
105
+ "environment_one": "環境",
106
+ "environment_other": "環境",
107
+ "all": "すべて"
108
+ },
109
+ "ui": {
110
+ "labels": "ラベル",
111
+ "metadata": "メタデータ",
112
+ "parameters": "パラメータ",
113
+ "description": "説明",
114
+ "links": "リンク",
115
+ "overview": "概要",
116
+ "history": "履歴",
117
+ "attachments": "添付ファイル",
118
+ "retries": "再試行",
119
+ "environments": "環境",
120
+ "error": "エラー",
121
+ "goToStep": "ステップに移動",
122
+ "showLess": "表示を減らす",
123
+ "showMore": "もっと見る",
124
+ "copy": "コピー",
125
+ "attempt": "試行 {{attempt}} 回目(全 {{total}} 回)",
126
+ "at": "時",
127
+ "variables": "変数",
128
+ "openPwTrace": "Playwright Traceを開く",
129
+ "finishedAtOriginal": "{{formattedCreatedAt}}、終了コード{{original}}",
130
+ "finishedAtBoth": "{{formattedCreatedAt}}、終了コード{{actual}}(元{{original}})"
131
+ },
132
+ "controls": {
133
+ "newTabAttachment": "新しいタブで開く",
134
+ "nextTR": "次のテスト結果",
135
+ "prevTR": "前のテスト結果",
136
+ "downloadAttachment": "添付ファイルをダウンロード",
137
+ "backto": "戻る",
138
+ "clipboard": "クリップボードにコピー",
139
+ "clipboardError": "エラー。この機能はお使いのブラウザでサポートされていない可能性があります",
140
+ "clipboardSuccess": "コピー成功",
141
+ "collapse": "折りたたむ",
142
+ "expand": "展開",
143
+ "fullscreen": "全画面",
144
+ "language": "言語を変更",
145
+ "openInNewTab": "新しいタブで開く",
146
+ "openPreview": "プレビューを開く",
147
+ "noSelectedTR": "選択されたテスト結果はありません",
148
+ "comparison": "比較",
149
+ "showDiff": "違いを表示",
150
+ "viewMode": "表示モード",
151
+ "unified": "統一",
152
+ "side-by-side": "並列",
153
+ "compareBy": "比較基準",
154
+ "chars": "文字",
155
+ "words": "単語",
156
+ "lines": "行",
157
+ "actual": "実際",
158
+ "expected": "予想"
159
+ },
160
+ "errors": {
161
+ "missedAttachment": "添付ファイルが見つかりません"
162
+ },
163
+ "sections": {
164
+ "report": "Report",
165
+ "charts": "グラフ",
166
+ "timeline": "タイムライン"
167
+ },
168
+ "timeline": {
169
+ "empty": "データなし",
170
+ "empty_host": "{{ host }} のデータなし",
171
+ "selected_one": "{{ count }} 件のテスト({{ percentage }}%)が選択されました。期間は {{ minDuration }} より長く、{{ maxDuration }} より短い",
172
+ "selected_other": "{{ count }} 件のテスト({{ percentage }}%)が選択されました。期間は {{ minDuration }} より長く、{{ maxDuration }} より短い",
173
+ "host": "ホスト: {{ host }}"
174
+ },
175
+ "charts": {
176
+ "trend": {
177
+ "title": "トレンドチャート: {{type}}",
178
+ "type": {
179
+ "status": "ステータス",
180
+ "severity": "重要度"
181
+ }
182
+ },
183
+ "currentStatus": {
184
+ "title": "現在のステータス",
185
+ "status": {
186
+ "passed": "$t(statuses:passed, capitalize)",
187
+ "failed": "$t(statuses:failed, capitalize)",
188
+ "broken": "$t(statuses:broken, capitalize)",
189
+ "skipped": "$t(statuses:skipped, capitalize)",
190
+ "unknown": "$t(statuses:unknown, capitalize)"
191
+ },
192
+ "percentage": "{{percentage}}%",
193
+ "of": "{{total}} のうち",
194
+ "total": "合計",
195
+ "tests": {
196
+ "new_zero": "新しいテストなし",
197
+ "new_one": "{{count}} 件の新しいテスト",
198
+ "new_other": "{{count}} 件の新しいテスト",
199
+ "flaky_zero": "不安定なテストなし",
200
+ "flaky_one": "{{count}} 件の不安定なテスト",
201
+ "flaky_other": "{{count}} 件の不安定なテスト",
202
+ "retries_zero": "再試行テストなし",
203
+ "retries_one": "{{count}} 件の再試行テスト",
204
+ "retries_other": "{{count}} 件の再試行テスト"
205
+ }
206
+ },
207
+ "statusDynamics": {
208
+ "title": "ステータス動態",
209
+ "status": {
210
+ "passed": "$t(statuses:passed, capitalize)",
211
+ "failed": "$t(statuses:failed, capitalize)",
212
+ "broken": "$t(statuses:broken, capitalize)",
213
+ "skipped": "$t(statuses:skipped, capitalize)",
214
+ "unknown": "$t(statuses:unknown, capitalize)"
215
+ },
216
+ "no-history": "$t(empty:no-history-results)",
217
+ "no-results": "$t(empty:no-results)",
218
+ "tooltips": {
219
+ "current": "最新レポート ({{timestamp, timestamp_long_no_seconds}})",
220
+ "history": "{{timestamp, timestamp_long_no_seconds}} のレポート"
221
+ },
222
+ "ticks": {
223
+ "current": "最新",
224
+ "history": "{{timestamp, timestamp_date}}"
225
+ }
226
+ },
227
+ "statusTransitions": {
228
+ "title": "ステータス遷移",
229
+ "legend": {
230
+ "trend": "修正率"
231
+ },
232
+ "transitions": {
233
+ "new": "$t(transitions:new, capitalize)",
234
+ "fixed": "$t(transitions:fixed, capitalize)",
235
+ "regressed": "$t(transitions:regressed, capitalize)",
236
+ "malfunctioned": "$t(transitions:malfunctioned, capitalize)"
237
+ },
238
+ "no-history": "$t(empty:no-history-results)",
239
+ "no-results": "$t(empty:no-results)",
240
+ "tooltips": {
241
+ "current": "最新レポート ({{timestamp, timestamp_long_no_seconds}})",
242
+ "history": "{{timestamp, timestamp_long_no_seconds}} のレポート"
243
+ },
244
+ "ticks": {
245
+ "current": "最新",
246
+ "history": "{{timestamp, timestamp_date}}"
247
+ }
248
+ },
249
+ "durations": {
250
+ "title": "{{groupBy}}別の継続時間ヒストグラム",
251
+ "title_none": "継続時間ヒストグラム",
252
+ "no-results": "$t(empty:no-results)",
253
+ "groupBy": {
254
+ "none": "なし",
255
+ "layer": "レイヤー"
256
+ },
257
+ "ticks": {
258
+ "durationRange": "{{from, format_duration}} - {{to, format_duration}}"
259
+ },
260
+ "tooltips": {
261
+ "durationRange": "{{from, format_duration}} - {{to, format_duration}}"
262
+ },
263
+ "legend": {
264
+ "value": "{{value}}",
265
+ "total": "テスト数"
266
+ }
267
+ },
268
+ "stabilityDistribution": {
269
+ "title": "安定性分布",
270
+ "no-results": "$t(empty:no-results)",
271
+ "legend": {
272
+ "stabilityRate": "安定性率"
273
+ }
274
+ },
275
+ "testBaseGrowthDynamics": {
276
+ "title": "テストベースの成長動態",
277
+ "status": {
278
+ "newpassed": "新規 $t(statuses:passed)",
279
+ "newfailed": "新規 $t(statuses:failed)",
280
+ "newbroken": "新規 $t(statuses:broken)",
281
+ "newskipped": "新規 $t(statuses:skipped)",
282
+ "newunknown": "新規 $t(statuses:unknown)",
283
+ "removedpassed": "削除 $t(statuses:passed)",
284
+ "removedfailed": "削除 $t(statuses:failed)",
285
+ "removedbroken": "削除 $t(statuses:broken)",
286
+ "removedskipped": "削除 $t(statuses:skipped)",
287
+ "removedunknown": "削除 $t(statuses:unknown)"
288
+ },
289
+ "legend": {
290
+ "trend": "成長トレンド"
291
+ },
292
+ "no-history": "$t(empty:no-history-results)",
293
+ "no-results": "$t(empty:no-results)",
294
+ "tooltips": {
295
+ "current": "最新レポート ({{timestamp, timestamp_long_no_seconds}})",
296
+ "history": "{{timestamp, timestamp_long_no_seconds}} のレポート"
297
+ },
298
+ "ticks": {
299
+ "current": "最新",
300
+ "history": "{{timestamp, timestamp_date}}"
301
+ }
302
+ },
303
+ "fbsuAgePyramid": {
304
+ "title": "FBSU年齢ピラミッド",
305
+ "status": {
306
+ "passed": "$t(statuses:passed, capitalize)",
307
+ "failed": "$t(statuses:failed, capitalize)",
308
+ "broken": "$t(statuses:broken, capitalize)",
309
+ "skipped": "$t(statuses:skipped, capitalize)",
310
+ "unknown": "$t(statuses:unknown, capitalize)"
311
+ },
312
+ "no-history": "$t(empty:no-history-results)",
313
+ "no-results": "$t(empty:no-results)",
314
+ "tooltips": {
315
+ "current": "最新レポート ({{timestamp, timestamp_long_no_seconds}})",
316
+ "history": "{{timestamp, timestamp_long_no_seconds}} のレポート"
317
+ },
318
+ "ticks": {
319
+ "current": "最新",
320
+ "history": "{{timestamp, timestamp_date}}"
321
+ }
322
+ },
323
+ "trSeverities": {
324
+ "title": "重要度別テスト結果",
325
+ "no-results": "$t(empty:no-results)",
326
+ "status": {
327
+ "passed": "$t(statuses:passed, capitalize)",
328
+ "failed": "$t(statuses:failed, capitalize)",
329
+ "broken": "$t(statuses:broken, capitalize)",
330
+ "skipped": "$t(statuses:skipped, capitalize)",
331
+ "unknown": "$t(statuses:unknown, capitalize)"
332
+ },
333
+ "severity": {
334
+ "blocker": "$t(severity:blocker, capitalize)",
335
+ "critical": "$t(severity:critical, capitalize)",
336
+ "normal": "$t(severity:normal, capitalize)",
337
+ "minor": "$t(severity:minor, capitalize)",
338
+ "trivial": "$t(severity:trivial, capitalize)",
339
+ "unset": "重要度なし"
340
+ }
341
+ },
342
+ "durationDynamics": {
343
+ "title": "継続時間の動態",
344
+ "durations": {
345
+ "sequential": "順次継続時間",
346
+ "duration": "テスト継続時間",
347
+ "speedup": "高速化"
348
+ },
349
+ "no-results": "$t(empty:no-results)",
350
+ "tooltips": {
351
+ "current": "最新レポート ({{timestamp, timestamp_long_no_seconds}})",
352
+ "history": "{{timestamp, timestamp_long_no_seconds}} のレポート"
353
+ },
354
+ "ticks": {
355
+ "current": "最新",
356
+ "history": "{{timestamp, timestamp_date}}"
357
+ },
358
+ "legend": {
359
+ "duration": "{{duration, format_duration}}",
360
+ "speedup": "{{speedup}}x"
361
+ }
362
+ }
363
+ },
364
+ "transitions": {
365
+ "description": {
366
+ "new": "このテスト結果がレポートに初めて表示される",
367
+ "fixed": "以前「失敗」または「破損」だったテストが「成功」になった",
368
+ "regressed": "以前「成功」または「破損」だったテストが「失敗」になった",
369
+ "malfunctioned": "以前「成功」または「失敗」だったテストが「破損」になった"
370
+ },
371
+ "new": "新規",
372
+ "fixed": "修正済み",
373
+ "regressed": "退行",
374
+ "malfunctioned": "破損"
375
+ }
376
+ }