@allurereport/web-awesome 3.0.0-beta.10
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/.babelrc.js +46 -0
- package/.eslintrc.cjs +18 -0
- package/CONTRIBUTING.md +34 -0
- package/README.md +27 -0
- package/dist/multi/141.app-d01d0c66.js +1 -0
- package/dist/multi/222.app-d01d0c66.js +1 -0
- package/dist/multi/335.app-d01d0c66.js +1 -0
- package/dist/multi/34.app-d01d0c66.js +1 -0
- package/dist/multi/349.app-d01d0c66.js +1 -0
- package/dist/multi/378.app-d01d0c66.js +1 -0
- package/dist/multi/406.app-d01d0c66.js +1 -0
- package/dist/multi/476.app-d01d0c66.js +1 -0
- package/dist/multi/53.app-d01d0c66.js +1 -0
- package/dist/multi/584.app-d01d0c66.js +1 -0
- package/dist/multi/690.app-d01d0c66.js +1 -0
- package/dist/multi/747.app-d01d0c66.js +1 -0
- package/dist/multi/767.app-d01d0c66.js +1 -0
- package/dist/multi/816.app-d01d0c66.js +1 -0
- package/dist/multi/83.app-d01d0c66.js +1 -0
- package/dist/multi/873.app-d01d0c66.js +1 -0
- package/dist/multi/920.app-d01d0c66.js +1 -0
- package/dist/multi/991.app-d01d0c66.js +1 -0
- package/dist/multi/JetBrainsMono_vf-9e9649b6..woff2 +0 -0
- package/dist/multi/JetBrainsMono_vf-b9a9c326..woff +0 -0
- package/dist/multi/app-d01d0c66.js +2 -0
- package/dist/multi/app-d01d0c66.js.LICENSE.txt +16 -0
- package/dist/multi/manifest.json +26 -0
- package/dist/multi/pt-root-ui_vf-22fe60ca..woff +0 -0
- package/dist/multi/pt-root-ui_vf-9d251e8b..woff2 +0 -0
- package/dist/multi/styles-d01d0c66.css +39 -0
- package/dist/single/app-6596cb08.js +2 -0
- package/dist/single/app-6596cb08.js.LICENSE.txt +16 -0
- package/dist/single/manifest.json +3 -0
- package/package.json +107 -0
- package/postcss.config.js +5 -0
- package/src/assets/scss/_common.scss +143 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +3 -0
- package/src/assets/scss/index.scss +7 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +119 -0
- package/src/assets/scss/vars.scss +9 -0
- package/src/assets/svg/line-alerts-alert-circle.svg +12 -0
- package/src/assets/svg/line-general-eye.svg +7 -0
- package/src/assets/svg/line-icon-bomb-2.svg +12 -0
- package/src/components/ArrowButton/index.tsx +36 -0
- package/src/components/ArrowButton/styles.scss +35 -0
- package/src/components/BaseLayout/index.tsx +43 -0
- package/src/components/BaseLayout/styles.scss +60 -0
- package/src/components/Footer/FooterLogo.tsx +16 -0
- package/src/components/Footer/FooterVersion.tsx +37 -0
- package/src/components/Footer/index.tsx +13 -0
- package/src/components/Footer/styles.scss +14 -0
- package/src/components/Header/index.tsx +28 -0
- package/src/components/Header/styles.scss +33 -0
- package/src/components/LanguagePicker/index.tsx +40 -0
- package/src/components/MainReport/index.tsx +21 -0
- package/src/components/MainReport/styles.scss +11 -0
- package/src/components/Metadata/index.tsx +121 -0
- package/src/components/Metadata/styles.scss +146 -0
- package/src/components/MetadataButton/index.tsx +32 -0
- package/src/components/MetadataButton/styles.scss +53 -0
- package/src/components/Modal/index.tsx +22 -0
- package/src/components/ReportBody/Filters.tsx +90 -0
- package/src/components/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/ReportBody/SortBy.tsx +132 -0
- package/src/components/ReportBody/context.tsx +106 -0
- package/src/components/ReportBody/index.tsx +72 -0
- package/src/components/ReportBody/styles.scss +69 -0
- package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/ReportHeader/ReportHeaderLogo.tsx +10 -0
- package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/ReportHeader/index.tsx +33 -0
- package/src/components/ReportHeader/styles.scss +51 -0
- package/src/components/ReportLogo/index.tsx +16 -0
- package/src/components/ReportLogo/styles.scss +20 -0
- package/src/components/ReportLogoFull/index.tsx +20 -0
- package/src/components/ReportLogoFull/styles.scss +7 -0
- package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/ReportMetadata/MetadataSummary.tsx +81 -0
- package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
- package/src/components/ReportMetadata/index.tsx +46 -0
- package/src/components/ReportMetadata/styles.scss +99 -0
- package/src/components/SideBySide/index.tsx +52 -0
- package/src/components/SideBySide/styles.scss +65 -0
- package/src/components/SplitLayout/index.tsx +77 -0
- package/src/components/SplitLayout/styles.scss +85 -0
- package/src/components/Tabs/index.tsx +62 -0
- package/src/components/Tabs/styles.scss +56 -0
- package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/TestResult/TestResultDropdown/index.tsx +26 -0
- package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/TestResult/TestResultEmpty/index.tsx +34 -0
- package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/TestResult/TestResultHeader/TestResultBreadcrumbs.tsx +44 -0
- package/src/components/TestResult/TestResultHeader/index.tsx +21 -0
- package/src/components/TestResult/TestResultHeader/styles.scss +48 -0
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +66 -0
- package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
- package/src/components/TestResult/TestResultInfo/index.tsx +81 -0
- package/src/components/TestResult/TestResultInfo/styles.scss +68 -0
- package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
- package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
- package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/TestResult/TestResultOverview.tsx +43 -0
- package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
- package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +51 -0
- package/src/components/TestResult/TestResultRetriesView/index.tsx +24 -0
- package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/TestResult/TestResultSetup/index.tsx +58 -0
- package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
- package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/TestResult/TestResultStatus/index.tsx +25 -0
- package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/TestResult/TestResultSteps/index.tsx +58 -0
- package/src/components/TestResult/TestResultSteps/styles.scss +225 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +76 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +84 -0
- package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
- package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/TestResult/TestResultTabs/index.tsx +68 -0
- package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/TestResult/TestResultTeardown/index.tsx +59 -0
- package/src/components/TestResult/TestStepsEmpty/index.tsx +23 -0
- package/src/components/TestResult/TestStepsEmpty/styles.scss +25 -0
- package/src/components/TestResult/TrError/TrDiff.tsx +124 -0
- package/src/components/TestResult/TrError/index.tsx +78 -0
- package/src/components/TestResult/TrError/styles.scss +133 -0
- package/src/components/TestResult/index.tsx +62 -0
- package/src/components/TestResult/styles.scss +11 -0
- package/src/components/ThemeButton/ThemeButton.tsx +20 -0
- package/src/components/ToggleLayout/index.tsx +17 -0
- package/src/components/Tree/index.tsx +75 -0
- package/src/components/Tree/styles.scss +189 -0
- package/src/i18n/constants.ts +124 -0
- package/src/i18n/locales/am.json +133 -0
- package/src/i18n/locales/az.json +133 -0
- package/src/i18n/locales/de.json +133 -0
- package/src/i18n/locales/en.json +134 -0
- package/src/i18n/locales/es.json +133 -0
- package/src/i18n/locales/fr.json +133 -0
- package/src/i18n/locales/he.json +133 -0
- package/src/i18n/locales/it.json +133 -0
- package/src/i18n/locales/ja.json +133 -0
- package/src/i18n/locales/ka.json +133 -0
- package/src/i18n/locales/kr.json +133 -0
- package/src/i18n/locales/nl.json +133 -0
- package/src/i18n/locales/pl.json +131 -0
- package/src/i18n/locales/pt.json +133 -0
- package/src/i18n/locales/ru.json +131 -0
- package/src/i18n/locales/sv.json +133 -0
- package/src/i18n/locales/tr.json +133 -0
- package/src/i18n/locales/zh.json +133 -0
- package/src/index.html +40 -0
- package/src/index.tsx +96 -0
- package/src/stores/chart.ts +32 -0
- package/src/stores/envInfo.ts +34 -0
- package/src/stores/index.ts +4 -0
- package/src/stores/layout.ts +36 -0
- package/src/stores/locale.ts +75 -0
- package/src/stores/modal.ts +22 -0
- package/src/stores/router.ts +48 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/testResults.ts +66 -0
- package/src/stores/theme.ts +32 -0
- package/src/stores/tree.ts +157 -0
- package/src/stores/types.ts +5 -0
- package/src/styles.scss +45 -0
- package/src/types/globals.d.ts +13 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/capitalize.ts +6 -0
- package/src/utils/copyToClipboard.ts +16 -0
- package/src/utils/isMac.ts +8 -0
- package/src/utils/loadFromLocalStorage.ts +8 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +147 -0
- package/test/utils/treeFilters.test.ts +448 -0
- package/tsconfig.json +27 -0
- package/types.d.ts +99 -0
- package/vitest.config.ts +18 -0
- package/webpack.config.js +112 -0
|
@@ -0,0 +1,133 @@
|
|
|
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
|
+
"openPreview": "미리보기 열기",
|
|
117
|
+
"noSelectedTR": "선택된 테스트 결과 없음",
|
|
118
|
+
"comparison": "비교",
|
|
119
|
+
"showDiff": "차이점 보기",
|
|
120
|
+
"viewMode": "보기 모드",
|
|
121
|
+
"unified": "통합",
|
|
122
|
+
"side-by-side": "나란히",
|
|
123
|
+
"compareBy": "비교 기준",
|
|
124
|
+
"chars": "문자",
|
|
125
|
+
"words": "단어",
|
|
126
|
+
"lines": "줄",
|
|
127
|
+
"actual": "실제",
|
|
128
|
+
"expected": "예상"
|
|
129
|
+
},
|
|
130
|
+
"errors": {
|
|
131
|
+
"missedAttachment": "첨부파일을 찾을 수 없습니다"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "geslaagd",
|
|
4
|
+
"failed": "mislukt",
|
|
5
|
+
"broken": "gebroken",
|
|
6
|
+
"skipped": "overgeslagen",
|
|
7
|
+
"unknown": "onbekend",
|
|
8
|
+
"total": "totaal",
|
|
9
|
+
"flakyTests": "onstabiel",
|
|
10
|
+
"newTests": "nieuw",
|
|
11
|
+
"retryTests": "opnieuw proberen"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Alle tests",
|
|
15
|
+
"flaky": "Onstabiele tests",
|
|
16
|
+
"retry": "Opnieuw uitgevoerde tests",
|
|
17
|
+
"new": "Nieuwe tests"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Alle"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Zoeken",
|
|
24
|
+
"search-placeholder": "Naam of ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Meer filters",
|
|
28
|
+
"enable-filter": "Filter \"{filter}\" inschakelen",
|
|
29
|
+
"flaky": "Onstabiel",
|
|
30
|
+
"retry": "Opnieuw proberen",
|
|
31
|
+
"new": "Nieuw"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Sorteren op:",
|
|
35
|
+
"sort-by-category": "Sorteren op",
|
|
36
|
+
"direction-category": "Richting"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Volgorde",
|
|
40
|
+
"alphabet": "Alfabet",
|
|
41
|
+
"duration": "Duur",
|
|
42
|
+
"status": "Status"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Laatste – Eerste",
|
|
46
|
+
"order-asc": "Eerste – Laatste",
|
|
47
|
+
"order-asc-short": "Eerste",
|
|
48
|
+
"order-desc-short": "Laatste",
|
|
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": "Zoals in de filterlijst",
|
|
58
|
+
"status-desc": "Omgekeerd",
|
|
59
|
+
"status-asc-short": "Normaal",
|
|
60
|
+
"status-desc-short": "Omgekeerd"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Geen resultaten",
|
|
64
|
+
"no-tests-found": "Geen resultaten gevonden",
|
|
65
|
+
"clear-filters": "Filters wissen",
|
|
66
|
+
"no-attachments-results": "Geen bijlageninformatie beschikbaar",
|
|
67
|
+
"no-history-results": "Geen geschiedenisinformatie beschikbaar",
|
|
68
|
+
"no-retries-results": "Geen herhalingsinformatie beschikbaar",
|
|
69
|
+
"no-test-steps-results": "Geen informatie over teststappen beschikbaar",
|
|
70
|
+
"no-test-case-results": "Geen testresultaten"
|
|
71
|
+
},
|
|
72
|
+
"severity": {
|
|
73
|
+
"blocker": "blokkerend",
|
|
74
|
+
"critical": "kritiek",
|
|
75
|
+
"normal": "normaal",
|
|
76
|
+
"minor": "klein",
|
|
77
|
+
"trivial": "onbeduidend"
|
|
78
|
+
},
|
|
79
|
+
"execution": {
|
|
80
|
+
"name": "Uitvoering",
|
|
81
|
+
"body": "Testinhoud",
|
|
82
|
+
"setup": "Voorbereiding",
|
|
83
|
+
"teardown": "Afsluiten"
|
|
84
|
+
},
|
|
85
|
+
"ui": {
|
|
86
|
+
"labels": "Labels",
|
|
87
|
+
"metadata": "Metadata",
|
|
88
|
+
"parameters": "Parameters",
|
|
89
|
+
"description": "Beschrijving",
|
|
90
|
+
"links": "Links",
|
|
91
|
+
"overview": "Overzicht",
|
|
92
|
+
"history": "Geschiedenis",
|
|
93
|
+
"attachments": "Bijlagen",
|
|
94
|
+
"retries": "Herhalingen",
|
|
95
|
+
"error": "Fout",
|
|
96
|
+
"goToStep": "Ga naar stap",
|
|
97
|
+
"showLess": "Minder weergeven",
|
|
98
|
+
"showMore": "Meer weergeven",
|
|
99
|
+
"copy": "Kopiëren",
|
|
100
|
+
"at": "om"
|
|
101
|
+
},
|
|
102
|
+
"controls": {
|
|
103
|
+
"newTabAttachment": "Bijlage openen in nieuw tabblad",
|
|
104
|
+
"nextTR": "Volgende testresultaat",
|
|
105
|
+
"prevTR": "Vorige testresultaat",
|
|
106
|
+
"downloadAttachment": "Bijlage downloaden",
|
|
107
|
+
"backto": "Terug naar",
|
|
108
|
+
"clipboard": "Kopiëren naar klembord",
|
|
109
|
+
"clipboardError": "Kan waarde niet naar klembord kopiëren. Mogelijk wordt deze functie niet ondersteund door uw browser",
|
|
110
|
+
"clipboardSuccess": "Succesvol gekopieerd",
|
|
111
|
+
"collapse": "Samenvouwen",
|
|
112
|
+
"expand": "Uitvouwen",
|
|
113
|
+
"fullscreen": "Volledig scherm",
|
|
114
|
+
"language": "Taal wijzigen",
|
|
115
|
+
"openInNewTab": "Openen in een nieuw tabblad",
|
|
116
|
+
"openPreview": "Voorbeeld openen",
|
|
117
|
+
"noSelectedTR": "Geen geselecteerd testresultaat",
|
|
118
|
+
"comparison": "Vergelijking",
|
|
119
|
+
"showDiff": "Toon verschil",
|
|
120
|
+
"viewMode": "Weergavemodus",
|
|
121
|
+
"unified": "Gecombineerd",
|
|
122
|
+
"side-by-side": "Naast elkaar",
|
|
123
|
+
"compareBy": "Vergelijken op",
|
|
124
|
+
"chars": "tekens",
|
|
125
|
+
"words": "woorden",
|
|
126
|
+
"lines": "regels",
|
|
127
|
+
"actual": "Actueel",
|
|
128
|
+
"expected": "Verwacht"
|
|
129
|
+
},
|
|
130
|
+
"errors": {
|
|
131
|
+
"missedAttachment": "Bijlage niet gevonden"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "udany",
|
|
4
|
+
"failed": "nie udany",
|
|
5
|
+
"broken": "uszkodzony",
|
|
6
|
+
"skipped": "pominęty",
|
|
7
|
+
"unknown": "nieznany",
|
|
8
|
+
"total": "wszystkie"
|
|
9
|
+
},
|
|
10
|
+
"testSummary": {
|
|
11
|
+
"all": "Wszystkie testy",
|
|
12
|
+
"flaky": "Flaky testy",
|
|
13
|
+
"retry": "Powtórne testy",
|
|
14
|
+
"new": "Nowe testy"
|
|
15
|
+
},
|
|
16
|
+
"tabs": {
|
|
17
|
+
"total": "Wszytkie"
|
|
18
|
+
},
|
|
19
|
+
"search": {
|
|
20
|
+
"search": "Poszukiwanie",
|
|
21
|
+
"search-placeholder": "Nazwa albo ID"
|
|
22
|
+
},
|
|
23
|
+
"filters": {
|
|
24
|
+
"more-filters": "Filtry",
|
|
25
|
+
"enable-filter": "Filtruj po \"{filter}\"",
|
|
26
|
+
"flaky": "Niestabilne",
|
|
27
|
+
"retry": "Powtórne",
|
|
28
|
+
"new": "Nowe"
|
|
29
|
+
},
|
|
30
|
+
"sort-by": {
|
|
31
|
+
"sort-by-text": "Sortuj po:",
|
|
32
|
+
"sort-by-category": "Sortuj po",
|
|
33
|
+
"direction-category": "Kierunek"
|
|
34
|
+
},
|
|
35
|
+
"sort-by.values": {
|
|
36
|
+
"order": "Kolejność",
|
|
37
|
+
"alphabet": "Nazwa",
|
|
38
|
+
"duration": "Długość",
|
|
39
|
+
"status": "Status"
|
|
40
|
+
},
|
|
41
|
+
"sort-by.directions": {
|
|
42
|
+
"order-asc": "Późnejsze – Wcześniejsze",
|
|
43
|
+
"order-desc": "Wcześniejsze – Późnejsze",
|
|
44
|
+
"order-asc-short": "Późnejsze",
|
|
45
|
+
"order-desc-short": "Wcześniejsze",
|
|
46
|
+
"alphabet-asc": "Z – A",
|
|
47
|
+
"alphabet-desc": "A – Z",
|
|
48
|
+
"alphabet-asc-short": "Z – A",
|
|
49
|
+
"alphabet-desc-short": "Z – A",
|
|
50
|
+
"duration-asc": "9 – 1",
|
|
51
|
+
"duration-desc": "1 – 9",
|
|
52
|
+
"duration-asc-short": "9 – 1",
|
|
53
|
+
"duration-desc-short": "1 – 9",
|
|
54
|
+
"status-asc": "Invertowany",
|
|
55
|
+
"status-desc": "Jak w liście filtrów",
|
|
56
|
+
"status-asc-short": "Invertowany",
|
|
57
|
+
"status-desc-short": "Domyślnie"
|
|
58
|
+
},
|
|
59
|
+
"empty": {
|
|
60
|
+
"no-results": "Brak wyników",
|
|
61
|
+
"no-tests-found": "Nie znaleziono wyników",
|
|
62
|
+
"clear-filters": "Wyczyść filtry",
|
|
63
|
+
"no-attachments-results": "Brak dostępnych informacji o załącznikach",
|
|
64
|
+
"no-history-results": "Brak dostępnych informacji o historii",
|
|
65
|
+
"no-retries-results": "Brak dostępnych informacji o ponownych próbach",
|
|
66
|
+
"no-test-steps-results": "Brak dostępnych informacji o krokach testowych",
|
|
67
|
+
"no-test-case-results": "Brak wyników przypadków testowych"
|
|
68
|
+
},
|
|
69
|
+
"severity": {
|
|
70
|
+
"name": "Ważność",
|
|
71
|
+
"blocker": "bloker",
|
|
72
|
+
"critical": "krytyczna",
|
|
73
|
+
"normal": "zwykła",
|
|
74
|
+
"minor": "niska",
|
|
75
|
+
"trivial": "minimalna"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"body": "Ciało testu",
|
|
79
|
+
"name": "Wykonanie",
|
|
80
|
+
"setup": "Przygotowanie",
|
|
81
|
+
"teardown": "Zakończenie"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Labelki",
|
|
85
|
+
"metadata": "Metadane",
|
|
86
|
+
"parameters": "Parametry",
|
|
87
|
+
"description": "Opis",
|
|
88
|
+
"links": "Linki",
|
|
89
|
+
"overview": "Przegląd",
|
|
90
|
+
"history": "Historia",
|
|
91
|
+
"attachments": "Załączniki",
|
|
92
|
+
"retries": "Próby ponowne",
|
|
93
|
+
"error": "Błąd",
|
|
94
|
+
"goToStep": "Idź do kroku",
|
|
95
|
+
"showLess": "Pokaż mniej",
|
|
96
|
+
"showMore": "Pokaż więcej",
|
|
97
|
+
"copy": "Skopuj",
|
|
98
|
+
"at": "w"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Otwórz w nowej zakładce",
|
|
102
|
+
"downloadAttachment": "Załaduj załącznik",
|
|
103
|
+
"nextTR": "Następny test",
|
|
104
|
+
"prevTR": "Poprzedni test",
|
|
105
|
+
"backto": "Wróć do",
|
|
106
|
+
"clipboard": "Skopuj do schowka",
|
|
107
|
+
"clipboardError": "Błąd. Najprawdopodobniej Twoja przeglądarka nie obsługuje tej funkcji",
|
|
108
|
+
"clipboardSuccess": "Zawartość została skopiowana",
|
|
109
|
+
"collapse": "Skrócić",
|
|
110
|
+
"expand": "Poszerzyć",
|
|
111
|
+
"fullscreen": "Pełny ekran",
|
|
112
|
+
"language": "Zmień język",
|
|
113
|
+
"openInNewTab": "Otwórz w nowej karcie",
|
|
114
|
+
"openPreview": "Otwórz podgląd",
|
|
115
|
+
"noSelectedTR": "Brak wybranego wyniku testu",
|
|
116
|
+
"comparison": "Porównanie",
|
|
117
|
+
"showDiff": "Pokaż różnicę",
|
|
118
|
+
"viewMode": "Tryb widoku",
|
|
119
|
+
"unified": "Zunifikowany",
|
|
120
|
+
"side-by-side": "Obok siebie",
|
|
121
|
+
"compareBy": "Porównaj według",
|
|
122
|
+
"chars": "znaki",
|
|
123
|
+
"words": "słowa",
|
|
124
|
+
"lines": "linie",
|
|
125
|
+
"actual": "Rzeczywisty",
|
|
126
|
+
"expected": "Oczekiwany"
|
|
127
|
+
},
|
|
128
|
+
"errors": {
|
|
129
|
+
"missedAttachment": "Nie znaleziono załącznika"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "aprovado",
|
|
4
|
+
"failed": "falhou",
|
|
5
|
+
"broken": "quebrado",
|
|
6
|
+
"skipped": "ignorado",
|
|
7
|
+
"unknown": "desconhecido",
|
|
8
|
+
"total": "total",
|
|
9
|
+
"flakyTests": "instável",
|
|
10
|
+
"newTests": "novo",
|
|
11
|
+
"retryTests": "repetir"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Todos os testes",
|
|
15
|
+
"flaky": "Testes instáveis",
|
|
16
|
+
"retry": "Testes repetidos",
|
|
17
|
+
"new": "Testes novos"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Tudo"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Pesquisar",
|
|
24
|
+
"search-placeholder": "Nome ou ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Mais filtros",
|
|
28
|
+
"enable-filter": "Habilitar filtro para \"{filter}\"",
|
|
29
|
+
"flaky": "Instável",
|
|
30
|
+
"retry": "Repetir",
|
|
31
|
+
"new": "Novo"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Ordenar por:",
|
|
35
|
+
"sort-by-category": "Ordenar por",
|
|
36
|
+
"direction-category": "Direção"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Ordem",
|
|
40
|
+
"alphabet": "Alfabeto",
|
|
41
|
+
"duration": "Duração",
|
|
42
|
+
"status": "Estado"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Mais recente – Mais antigo",
|
|
46
|
+
"order-asc": "Mais antigo – Mais recente",
|
|
47
|
+
"order-asc-short": "Antigo",
|
|
48
|
+
"order-desc-short": "Recente",
|
|
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 na lista de filtros",
|
|
58
|
+
"status-desc": "Invertido",
|
|
59
|
+
"status-asc-short": "Regular",
|
|
60
|
+
"status-desc-short": "Invertido"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Sem resultados",
|
|
64
|
+
"no-tests-found": "Nenhum resultado encontrado",
|
|
65
|
+
"clear-filters": "Limpar filtros",
|
|
66
|
+
"no-attachments-results": "Nenhuma informação de anexos disponível",
|
|
67
|
+
"no-history-results": "Nenhuma informação de histórico disponível",
|
|
68
|
+
"no-retries-results": "Nenhuma informação de repetições disponível",
|
|
69
|
+
"no-test-steps-results": "Nenhuma informação disponível sobre as etapas do teste",
|
|
70
|
+
"no-test-case-results": "Nenhum resultado de caso de teste"
|
|
71
|
+
},
|
|
72
|
+
"severity": {
|
|
73
|
+
"blocker": "bloqueador",
|
|
74
|
+
"critical": "crítico",
|
|
75
|
+
"normal": "normal",
|
|
76
|
+
"minor": "menor",
|
|
77
|
+
"trivial": "trivial"
|
|
78
|
+
},
|
|
79
|
+
"execution": {
|
|
80
|
+
"name": "Execução",
|
|
81
|
+
"body": "Corpo do teste",
|
|
82
|
+
"setup": "Configuração",
|
|
83
|
+
"teardown": "Desmontagem"
|
|
84
|
+
},
|
|
85
|
+
"ui": {
|
|
86
|
+
"labels": "Etiquetas",
|
|
87
|
+
"metadata": "Metadados",
|
|
88
|
+
"parameters": "Parâmetros",
|
|
89
|
+
"description": "Descrição",
|
|
90
|
+
"links": "Links",
|
|
91
|
+
"overview": "Visão geral",
|
|
92
|
+
"history": "Histórico",
|
|
93
|
+
"attachments": "Anexos",
|
|
94
|
+
"retries": "Repetições",
|
|
95
|
+
"error": "Erro",
|
|
96
|
+
"goToStep": "Ir para o passo",
|
|
97
|
+
"showLess": "Mostrar menos",
|
|
98
|
+
"showMore": "Mostrar mais",
|
|
99
|
+
"copy": "Copiar",
|
|
100
|
+
"at": "em"
|
|
101
|
+
},
|
|
102
|
+
"controls": {
|
|
103
|
+
"newTabAttachment": "Abrir anexo em nova aba",
|
|
104
|
+
"nextTR": "Próximo resultado de teste",
|
|
105
|
+
"prevTR": "Resultado de teste anterior",
|
|
106
|
+
"downloadAttachment": "Baixar anexo",
|
|
107
|
+
"backto": "Voltar para",
|
|
108
|
+
"clipboard": "Copiar para a área de transferência",
|
|
109
|
+
"clipboardError": "Erro. Parece que esta funcionalidade não é suportada pelo seu navegador",
|
|
110
|
+
"clipboardSuccess": "Copiado com sucesso",
|
|
111
|
+
"collapse": "Recolher",
|
|
112
|
+
"expand": "Expandir",
|
|
113
|
+
"fullscreen": "Tela cheia",
|
|
114
|
+
"language": "Alterar idioma",
|
|
115
|
+
"openInNewTab": "Abrir em nova aba",
|
|
116
|
+
"openPreview": "Abrir pré-visualização",
|
|
117
|
+
"noSelectedTR": "Nenhum resultado de teste selecionado",
|
|
118
|
+
"comparison": "Comparação",
|
|
119
|
+
"showDiff": "Mostrar diferença",
|
|
120
|
+
"viewMode": "Modo de exibição",
|
|
121
|
+
"unified": "Unificado",
|
|
122
|
+
"side-by-side": "Lado a lado",
|
|
123
|
+
"compareBy": "Comparar por",
|
|
124
|
+
"chars": "caracteres",
|
|
125
|
+
"words": "palavras",
|
|
126
|
+
"lines": "linhas",
|
|
127
|
+
"actual": "Real",
|
|
128
|
+
"expected": "Esperado"
|
|
129
|
+
},
|
|
130
|
+
"errors": {
|
|
131
|
+
"missedAttachment": "Anexo não encontrado"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "успешный",
|
|
4
|
+
"failed": "неуспешный",
|
|
5
|
+
"broken": "сломанный",
|
|
6
|
+
"skipped": "пропущенный",
|
|
7
|
+
"unknown": "неизвестный",
|
|
8
|
+
"total": "все"
|
|
9
|
+
},
|
|
10
|
+
"testSummary": {
|
|
11
|
+
"all": "Все тесты",
|
|
12
|
+
"flaky": "Flaky тесты",
|
|
13
|
+
"retry": "Повторные тесты",
|
|
14
|
+
"new": "Новые тесты"
|
|
15
|
+
},
|
|
16
|
+
"tabs": {
|
|
17
|
+
"total": "Все"
|
|
18
|
+
},
|
|
19
|
+
"search": {
|
|
20
|
+
"search": "Поиск",
|
|
21
|
+
"search-placeholder": "Название или ID"
|
|
22
|
+
},
|
|
23
|
+
"filters": {
|
|
24
|
+
"more-filters": "Фильтры",
|
|
25
|
+
"enable-filter": "Включить фильтр по \"{filter}\"",
|
|
26
|
+
"flaky": "Нестабильные",
|
|
27
|
+
"retry": "Повторенные",
|
|
28
|
+
"new": "Новые"
|
|
29
|
+
},
|
|
30
|
+
"sort-by": {
|
|
31
|
+
"sort-by-text": "Сортировать по:",
|
|
32
|
+
"sort-by-category": "Сортировать по",
|
|
33
|
+
"direction-category": "Направление"
|
|
34
|
+
},
|
|
35
|
+
"sort-by.values": {
|
|
36
|
+
"order": "Порядок",
|
|
37
|
+
"alphabet": "Название",
|
|
38
|
+
"duration": "Длительность",
|
|
39
|
+
"status": "Статус"
|
|
40
|
+
},
|
|
41
|
+
"sort-by.directions": {
|
|
42
|
+
"order-asc": "Поздние – Ранние",
|
|
43
|
+
"order-desc": "Ранние – Поздние",
|
|
44
|
+
"order-asc-short": "Поздние",
|
|
45
|
+
"order-desc-short": "Ранние",
|
|
46
|
+
"alphabet-asc": "Я – А",
|
|
47
|
+
"alphabet-desc": "А – Я",
|
|
48
|
+
"alphabet-asc-short": "Я – А",
|
|
49
|
+
"alphabet-desc-short": "Я – А",
|
|
50
|
+
"duration-asc": "9 – 1",
|
|
51
|
+
"duration-desc": "1 – 9",
|
|
52
|
+
"duration-asc-short": "9 – 1",
|
|
53
|
+
"duration-desc-short": "1 – 9",
|
|
54
|
+
"status-asc": "Инвертировано",
|
|
55
|
+
"status-desc": "Как в списке фильтра",
|
|
56
|
+
"status-asc-short": "Инвертировано",
|
|
57
|
+
"status-desc-short": "По обычному"
|
|
58
|
+
},
|
|
59
|
+
"empty": {
|
|
60
|
+
"no-results": "Нет результатов",
|
|
61
|
+
"no-tests-found": "Результаты не найдены",
|
|
62
|
+
"clear-filters": "Очистить фильтры",
|
|
63
|
+
"no-attachments-results": "Информация о вложениях отсутствует",
|
|
64
|
+
"no-history-results": "Информация об истории отсутствует",
|
|
65
|
+
"no-retries-results": "Информация о перезапусках отсутствует",
|
|
66
|
+
"no-test-steps-results": "Нет информации о шагах тестирования",
|
|
67
|
+
"no-test-case-results": "Нет результатов тест-кейсов"
|
|
68
|
+
},
|
|
69
|
+
"severity": {
|
|
70
|
+
"name": "Важность",
|
|
71
|
+
"blocker": "блокер",
|
|
72
|
+
"critical": "критическая",
|
|
73
|
+
"normal": "обычная",
|
|
74
|
+
"minor": "невысокая",
|
|
75
|
+
"trivial": "минимальная"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"body": "Тело теста",
|
|
79
|
+
"name": "Выполнение",
|
|
80
|
+
"setup": "Подготовка",
|
|
81
|
+
"teardown": "Завершение"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Лейблы",
|
|
85
|
+
"metadata": "Метаданные",
|
|
86
|
+
"parameters": "Параметры",
|
|
87
|
+
"description": "Описание",
|
|
88
|
+
"links": "Ссылки",
|
|
89
|
+
"overview": "Обзор",
|
|
90
|
+
"history": "История",
|
|
91
|
+
"attachments": "Вложения",
|
|
92
|
+
"retries": "Перезапуски",
|
|
93
|
+
"error": "Ошибка",
|
|
94
|
+
"goToStep": "Перейти к шагу",
|
|
95
|
+
"showLess": "Показать меньше",
|
|
96
|
+
"showMore": "Показать больше",
|
|
97
|
+
"copy": "Скопировать",
|
|
98
|
+
"at": "в"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Открыть в новой вкладке",
|
|
102
|
+
"downloadAttachment": "Загрузить вложение",
|
|
103
|
+
"nextTR": "Следующий тест",
|
|
104
|
+
"prevTR": "Предыдущий тест",
|
|
105
|
+
"backto": "Вернуться на",
|
|
106
|
+
"clipboard": "Скопировать в буфер обмена",
|
|
107
|
+
"clipboardError": "Ошибка. Скорее всего ваш браузер не поддерживает данную функциональность",
|
|
108
|
+
"clipboardSuccess": "Значение успешно скопировано",
|
|
109
|
+
"collapse": "Свернуть",
|
|
110
|
+
"expand": "Развернуть",
|
|
111
|
+
"fullscreen": "На весь экран",
|
|
112
|
+
"language": "Сменить язык",
|
|
113
|
+
"openInNewTab": "Открыть в новой вкладке",
|
|
114
|
+
"openPreview": "Открыть предпросмотр",
|
|
115
|
+
"noSelectedTR": "Нет выбранного результата теста",
|
|
116
|
+
"comparison": "Сравнение",
|
|
117
|
+
"showDiff": "Показать разницу",
|
|
118
|
+
"viewMode": "Режим просмотра",
|
|
119
|
+
"unified": "Объединённый",
|
|
120
|
+
"side-by-side": "Рядом",
|
|
121
|
+
"compareBy": "Сравнивать по",
|
|
122
|
+
"chars": "символам",
|
|
123
|
+
"words": "словам",
|
|
124
|
+
"lines": "строкам",
|
|
125
|
+
"actual": "Фактическое",
|
|
126
|
+
"expected": "Ожидаемое"
|
|
127
|
+
},
|
|
128
|
+
"errors": {
|
|
129
|
+
"missedAttachment": "Вложение не найдено"
|
|
130
|
+
}
|
|
131
|
+
}
|