@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.
- package/dist/multi/173.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/174.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/252.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/282.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/29.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/416.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/527.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/600.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/605.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/638.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/672.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/686.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/725.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/741.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/755.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/894.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/91.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/943.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/980.app-9931797d1602fc52db5b.js +1 -0
- package/dist/multi/app-9931797d1602fc52db5b.js +2 -0
- package/dist/multi/app-9931797d1602fc52db5b.js.LICENSE.txt +10 -0
- package/dist/multi/manifest.json +25 -24
- package/dist/multi/styles-8fe37354d1c2270c691e.css +48 -0
- package/dist/single/app-6199dc1c2fd3bddc2526.js +2 -0
- package/dist/single/app-6199dc1c2fd3bddc2526.js.LICENSE.txt +10 -0
- package/dist/single/manifest.json +1 -1
- package/package.json +29 -17
- package/src/assets/scss/day.scss +2 -0
- package/src/assets/scss/index.scss +1 -3
- package/src/assets/scss/night.scss +2 -0
- package/src/assets/scss/palette.scss +391 -391
- package/src/assets/scss/theme.scss +292 -79
- package/src/components/BaseLayout/index.tsx +10 -32
- package/src/components/BaseLayout/styles.scss +14 -4
- package/src/components/Charts/index.tsx +245 -0
- package/src/components/Charts/styles.scss +27 -0
- package/src/components/EnvironmentPicker/index.tsx +60 -0
- package/src/components/EnvironmentPicker/styles.scss +9 -0
- package/src/components/Footer/FooterLogo.tsx +1 -2
- package/src/components/Footer/FooterVersion.tsx +7 -3
- package/src/components/Footer/index.tsx +6 -2
- package/src/components/Header/CiInfo/index.tsx +67 -0
- package/src/components/Header/CiInfo/styles.scss +7 -0
- package/src/components/Header/index.tsx +21 -8
- package/src/components/Header/styles.scss +9 -1
- package/src/components/HeaderControls/index.tsx +20 -0
- package/src/components/MainReport/index.tsx +84 -6
- package/src/components/MainReport/styles.scss +20 -0
- package/src/components/Metadata/index.tsx +6 -4
- package/src/components/MetadataButton/index.tsx +14 -6
- package/src/components/MetadataButton/styles.scss +3 -0
- package/src/components/Modal/index.tsx +15 -167
- package/src/components/NavTabs/index.tsx +70 -0
- package/src/components/{TestResult/TestResultTabs → NavTabs}/styles.scss +0 -3
- package/src/components/Report/index.tsx +7 -0
- package/src/components/ReportBody/Filters.tsx +45 -64
- package/src/components/ReportBody/index.tsx +26 -15
- package/src/components/ReportBody/styles.scss +9 -3
- package/src/components/ReportGlobalAttachments/index.tsx +34 -0
- package/src/components/ReportGlobalAttachments/styles.scss +11 -0
- package/src/components/ReportGlobalErrors/index.tsx +30 -0
- package/src/components/ReportGlobalErrors/styles.scss +12 -0
- package/src/components/ReportHeader/ReportHeaderLogo.tsx +6 -2
- package/src/components/ReportHeader/ReportHeaderPie.tsx +1 -2
- package/src/components/ReportHeader/index.tsx +38 -12
- package/src/components/ReportHeader/styles.scss +9 -1
- package/src/components/ReportMetadata/MetadataSummary.tsx +57 -65
- package/src/components/ReportMetadata/MetadataWithIcon.tsx +11 -13
- package/src/components/ReportMetadata/index.tsx +50 -3
- package/src/components/ReportMetadata/styles.scss +0 -2
- package/src/components/ReportQualityGateResults/index.tsx +42 -0
- package/src/components/ReportQualityGateResults/styles.scss +44 -0
- package/src/components/SectionPicker/index.tsx +55 -0
- package/src/components/SectionPicker/styles.scss +5 -0
- package/src/components/SectionSwitcher/index.tsx +16 -0
- package/src/components/SectionSwitcher/styles.scss +4 -0
- package/src/components/SectionTabs/index.tsx +0 -0
- package/src/components/SideBySide/index.tsx +52 -0
- package/src/components/SideBySide/styles.scss +64 -0
- package/src/components/SplitLayout/index.tsx +73 -0
- package/src/components/SplitLayout/styles.scss +84 -0
- package/src/components/Tabs/index.tsx +2 -2
- package/src/components/TestResult/TestStepsEmpty/index.tsx +2 -2
- package/src/components/TestResult/TrAttachmentsView/index.tsx +29 -0
- package/src/components/TestResult/{TestResultDescription → TrDescription}/index.tsx +5 -5
- package/src/components/TestResult/{TestResultDropdown → TrDropdown}/index.tsx +7 -5
- package/src/components/TestResult/{TestResultEmpty → TrEmpty}/index.tsx +6 -6
- package/src/components/TestResult/TrEnvironmentItem/index.tsx +82 -0
- package/src/components/TestResult/TrEnvironmentItem/styles.scss +60 -0
- package/src/components/TestResult/TrEnvironmentsView/index.tsx +64 -0
- package/src/components/TestResult/TrEnvironmentsView/styles.scss +11 -0
- package/src/components/TestResult/TrError/TrDiff.tsx +121 -0
- package/src/components/TestResult/TrError/index.tsx +104 -0
- package/src/components/TestResult/TrError/styles.scss +223 -0
- package/src/components/TestResult/TrHeader/TrBreadcrumbs.tsx +44 -0
- package/src/components/TestResult/TrHeader/index.tsx +15 -0
- package/src/components/TestResult/{TestResultHeader → TrHeader}/styles.scss +7 -2
- package/src/components/TestResult/TrHistory/TrHistoryItem.tsx +94 -0
- package/src/components/TestResult/TrHistory/index.tsx +26 -0
- package/src/components/TestResult/{TestResultHistory → TrHistory}/styles.scss +2 -1
- package/src/components/TestResult/{TestResultInfo/TestResultInfoStatuses.tsx → TrInfo/TrInfoStatuses.tsx} +6 -4
- package/src/components/TestResult/TrInfo/index.tsx +99 -0
- package/src/components/TestResult/{TestResultInfo → TrInfo}/styles.scss +18 -0
- package/src/components/TestResult/{TestResultLinks → TrLinks}/index.tsx +8 -8
- package/src/components/TestResult/{TestResultMetadata → TrMetadata}/index.tsx +6 -6
- package/src/components/TestResult/{TestResultNavigation → TrNavigation}/index.tsx +7 -9
- package/src/components/TestResult/TrOverview.tsx +46 -0
- package/src/components/TestResult/{TestResultParameters → TrParameters}/index.tsx +4 -4
- package/src/components/TestResult/TrPrevStatuses/index.tsx +63 -0
- package/src/components/TestResult/TrPwTraces/PwTrace.tsx +34 -0
- package/src/components/TestResult/TrPwTraces/PwTraceButton.tsx +32 -0
- package/src/components/TestResult/TrPwTraces/index.tsx +32 -0
- package/src/components/TestResult/TrPwTraces/styles.scss +20 -0
- package/src/components/TestResult/TrRetriesView/TrRetriesItem.tsx +70 -0
- package/src/components/TestResult/TrRetriesView/index.tsx +29 -0
- package/src/components/TestResult/{TestResultSetup → TrSetup}/index.tsx +13 -13
- package/src/components/TestResult/{TestResultSeverity → TrSeverity}/index.tsx +2 -2
- package/src/components/TestResult/{TestResultStatus → TrStatus}/index.tsx +5 -5
- package/src/components/TestResult/TrSteps/TrAttachment.tsx +118 -0
- package/src/components/TestResult/{TestResultSteps/testResultAttachmentInfo.tsx → TrSteps/TrAttachmentInfo.tsx} +11 -11
- package/src/components/TestResult/TrSteps/TrStep.tsx +98 -0
- package/src/components/TestResult/TrSteps/TrStepInfo.tsx +90 -0
- package/src/components/TestResult/{TestResultSteps → TrSteps}/index.tsx +12 -12
- package/src/components/TestResult/{TestResultSteps → TrSteps}/styles.scss +49 -10
- package/src/components/TestResult/{TestResultSteps → TrSteps}/wrongAttachment.tsx +1 -1
- package/src/components/TestResult/TrTabs/index.tsx +42 -0
- package/src/components/TestResult/{TestResultTeardown → TrTeardown}/index.tsx +13 -13
- package/src/components/TestResult/index.tsx +54 -38
- package/src/components/TestResult/styles.scss +12 -0
- package/src/components/Timeline/index.tsx +100 -0
- package/src/components/Timeline/styles.scss +45 -0
- package/src/components/ToggleLayout/index.tsx +17 -0
- package/src/components/Tree/index.tsx +123 -9
- package/src/components/Tree/styles.scss +23 -5
- package/src/index.html +22 -6
- package/src/index.tsx +91 -20
- package/src/locales/az.json +376 -0
- package/src/locales/de.json +376 -0
- package/src/locales/en.json +376 -0
- package/src/locales/es.json +376 -0
- package/src/locales/fr.json +376 -0
- package/src/locales/he.json +376 -0
- package/src/locales/hy.json +376 -0
- package/src/locales/it.json +376 -0
- package/src/locales/ja.json +376 -0
- package/src/locales/ka.json +376 -0
- package/src/locales/kr.json +376 -0
- package/src/locales/nl.json +376 -0
- package/src/locales/pl.json +384 -0
- package/src/locales/pt.json +376 -0
- package/src/locales/ru.json +384 -0
- package/src/locales/sv.json +376 -0
- package/src/locales/tr.json +376 -0
- package/src/locales/ua.json +327 -0
- package/src/locales/zh.json +376 -0
- package/src/stores/chart.ts +41 -6
- package/src/stores/env.ts +88 -0
- package/src/stores/envInfo.ts +2 -2
- package/src/stores/globals.ts +28 -0
- package/src/stores/layout.ts +36 -0
- package/src/stores/locale.ts +77 -29
- package/src/stores/modal.ts +22 -0
- package/src/stores/qualityGate.ts +28 -0
- package/src/stores/router.ts +108 -0
- package/src/stores/sections.ts +63 -0
- package/src/stores/stats.ts +52 -7
- package/src/stores/testResults.ts +13 -9
- package/src/stores/theme.ts +15 -18
- package/src/stores/timeline.ts +39 -0
- package/src/stores/tree.ts +61 -22
- package/src/stores/variables.ts +40 -0
- package/src/styles.scss +66 -0
- package/src/utils/time.ts +1 -0
- package/src/utils/tree.ts +23 -0
- package/src/utils/treeFilters.ts +27 -21
- package/test/components/Header/CiInfo.test.tsx +177 -0
- package/test/components/Header.test.tsx +122 -0
- package/test/utils/treeFilters.test.ts +44 -44
- package/tsconfig.json +7 -2
- package/tsconfig.node.json +8 -0
- package/types.d.ts +43 -24
- package/vitest.config.ts +15 -2
- package/vitest.setup.ts +1 -0
- package/webpack.config.js +35 -5
- package/dist/multi/141.app-f32e4213.js +0 -1
- package/dist/multi/222.app-f32e4213.js +0 -1
- package/dist/multi/335.app-f32e4213.js +0 -1
- package/dist/multi/34.app-f32e4213.js +0 -1
- package/dist/multi/349.app-f32e4213.js +0 -1
- package/dist/multi/378.app-f32e4213.js +0 -1
- package/dist/multi/406.app-f32e4213.js +0 -1
- package/dist/multi/476.app-f32e4213.js +0 -1
- package/dist/multi/53.app-f32e4213.js +0 -1
- package/dist/multi/584.app-f32e4213.js +0 -1
- package/dist/multi/690.app-f32e4213.js +0 -1
- package/dist/multi/747.app-f32e4213.js +0 -1
- package/dist/multi/767.app-f32e4213.js +0 -1
- package/dist/multi/816.app-f32e4213.js +0 -1
- package/dist/multi/83.app-f32e4213.js +0 -1
- package/dist/multi/873.app-f32e4213.js +0 -1
- package/dist/multi/920.app-f32e4213.js +0 -1
- package/dist/multi/991.app-f32e4213.js +0 -1
- package/dist/multi/app-f32e4213.js +0 -2
- package/dist/multi/app-f32e4213.js.LICENSE.txt +0 -16
- package/dist/multi/styles-f32e4213.css +0 -284
- package/dist/single/app-7fa8e43f.js +0 -2
- package/dist/single/app-7fa8e43f.js.LICENSE.txt +0 -16
- package/src/assets/scss/code.scss +0 -71
- package/src/assets/scss/typography.scss +0 -218
- package/src/components/ArrowButton/index.tsx +0 -36
- package/src/components/ArrowButton/styles.scss +0 -35
- package/src/components/LanguagePicker/index.tsx +0 -40
- package/src/components/Modal/styles.scss +0 -126
- package/src/components/ReportLogo/index.tsx +0 -16
- package/src/components/ReportLogo/styles.scss +0 -20
- package/src/components/ReportLogoFull/index.tsx +0 -20
- package/src/components/ReportLogoFull/styles.scss +0 -7
- package/src/components/TestResult/TestResultAttachmentsView/index.tsx +0 -27
- package/src/components/TestResult/TestResultError/index.tsx +0 -59
- package/src/components/TestResult/TestResultError/styles.scss +0 -51
- package/src/components/TestResult/TestResultHeader/index.tsx +0 -55
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +0 -67
- package/src/components/TestResult/TestResultHistory/index.tsx +0 -26
- package/src/components/TestResult/TestResultInfo/index.tsx +0 -79
- package/src/components/TestResult/TestResultOverview.tsx +0 -43
- package/src/components/TestResult/TestResultPrevStatuses/index.tsx +0 -49
- package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +0 -52
- package/src/components/TestResult/TestResultRetriesView/index.tsx +0 -24
- package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +0 -12
- package/src/components/TestResult/TestResultSteps/attachment.tsx +0 -68
- package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +0 -20
- package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +0 -32
- package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +0 -15
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +0 -77
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +0 -85
- package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +0 -30
- package/src/components/TestResult/TestResultTabs/index.tsx +0 -59
- package/src/components/ThemeButton/ThemeButton.tsx +0 -20
- package/src/components/Tree/Tree.tsx +0 -75
- package/src/components/Tree/TreeHeader.tsx +0 -82
- package/src/components/Tree/TreeItem.tsx +0 -35
- package/src/components/Tree/TreeItemIcon.tsx +0 -32
- package/src/i18n/constants.ts +0 -124
- package/src/i18n/locales/am.json +0 -120
- package/src/i18n/locales/az.json +0 -120
- package/src/i18n/locales/de.json +0 -120
- package/src/i18n/locales/en.json +0 -121
- package/src/i18n/locales/es.json +0 -120
- package/src/i18n/locales/fr.json +0 -120
- package/src/i18n/locales/he.json +0 -120
- package/src/i18n/locales/it.json +0 -120
- package/src/i18n/locales/ja.json +0 -120
- package/src/i18n/locales/ka.json +0 -120
- package/src/i18n/locales/kr.json +0 -120
- package/src/i18n/locales/nl.json +0 -120
- package/src/i18n/locales/pl.json +0 -118
- package/src/i18n/locales/pt.json +0 -120
- package/src/i18n/locales/ru.json +0 -118
- package/src/i18n/locales/sv.json +0 -120
- package/src/i18n/locales/tr.json +0 -120
- package/src/i18n/locales/zh.json +0 -120
- package/src/utils/attachments.ts +0 -156
- package/src/utils/capitalize.ts +0 -6
- /package/dist/multi/{JetBrainsMono_vf-b9a9c326..woff → JetBrainsMono_vf.woff} +0 -0
- /package/dist/multi/{JetBrainsMono_vf-9e9649b6..woff2 → JetBrainsMono_vf.woff2} +0 -0
- /package/dist/multi/{pt-root-ui_vf-22fe60ca..woff → pt-root-ui_vf.woff} +0 -0
- /package/dist/multi/{pt-root-ui_vf-9d251e8b..woff2 → pt-root-ui_vf.woff2} +0 -0
- /package/src/components/TestResult/{TestResultAttachmentsView → TrAttachmentsView}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultDescription → TrDescription}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultDropdown → TrDropdown}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultEmpty → TrEmpty}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultLinks → TrLinks}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultMetadata → TrMetadata}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultNavigation → TrNavigation}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultParameters → TrParameters}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultPrevStatuses → TrPrevStatuses}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultRetriesView → TrRetriesView}/styles.scss +0 -0
- /package/src/components/TestResult/{TestResultSeverity → TrSeverity}/styles.scss +0 -0
- /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": "가 – 하",
|
|
65
|
+
"alphabet-desc": "하 – 가",
|
|
66
|
+
"alphabet-asc-short": "가 – 하",
|
|
67
|
+
"alphabet-desc-short": "하 – 가",
|
|
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
|
+
}
|