@allurereport/web-classic 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--old.cjs +18 -0
- package/.babelrc.js +46 -0
- package/.eslintrc--old.cjs +125 -0
- package/.eslintrc.cjs +22 -0
- package/README.md +27 -0
- package/dist/multi/10.app-970f027d.js +1 -0
- package/dist/multi/222.app-970f027d.js +1 -0
- package/dist/multi/26.app-970f027d.js +1 -0
- package/dist/multi/302.app-970f027d.js +1 -0
- package/dist/multi/304.app-970f027d.js +1 -0
- package/dist/multi/369.app-970f027d.js +1 -0
- package/dist/multi/389.app-970f027d.js +1 -0
- package/dist/multi/498.app-970f027d.js +1 -0
- package/dist/multi/60.app-970f027d.js +1 -0
- package/dist/multi/643.app-970f027d.js +1 -0
- package/dist/multi/671.app-970f027d.js +1 -0
- package/dist/multi/725.app-970f027d.js +1 -0
- package/dist/multi/770.app-970f027d.js +1 -0
- package/dist/multi/848.app-970f027d.js +1 -0
- package/dist/multi/853.app-970f027d.js +1 -0
- package/dist/multi/872.app-970f027d.js +1 -0
- package/dist/multi/895.app-970f027d.js +1 -0
- package/dist/multi/920.app-970f027d.js +1 -0
- package/dist/multi/979.app-970f027d.js +1 -0
- package/dist/multi/991.app-970f027d.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-970f027d.js +2 -0
- package/dist/multi/app-970f027d.js.LICENSE.txt +25 -0
- package/dist/multi/manifest.json +28 -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-970f027d.css +283 -0
- package/dist/single/app-2babff54.js +2 -0
- package/dist/single/app-2babff54.js.LICENSE.txt +25 -0
- package/dist/single/manifest.json +3 -0
- package/package--old.json +106 -0
- package/package.json +107 -0
- package/postcss.config.js +5 -0
- package/src/assets/scss/_common.scss +142 -0
- package/src/assets/scss/code.scss +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +3 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +117 -0
- package/src/assets/scss/typography.scss +218 -0
- package/src/assets/scss/vars.scss +8 -0
- package/src/components/ArrowButton/index.tsx +36 -0
- package/src/components/ArrowButton/styles.scss +35 -0
- package/src/components/BaseLayout/index.tsx +23 -0
- package/src/components/BaseLayout/styles.scss +63 -0
- package/src/components/Behaviors/BehaviorsList.tsx +67 -0
- package/src/components/Behaviors/index.tsx +60 -0
- package/src/components/Behaviors/styles.scss +196 -0
- package/src/components/Categories/CategoriesList.tsx +67 -0
- package/src/components/Categories/index.tsx +60 -0
- package/src/components/Categories/styles.scss +196 -0
- package/src/components/Footer/FooterLogo.tsx +16 -0
- package/src/components/Footer/FooterVersion.tsx +33 -0
- package/src/components/Footer/index.tsx +13 -0
- package/src/components/Footer/styles.scss +14 -0
- package/src/components/Graphs/index.tsx +2 -0
- package/src/components/Header/index.tsx +14 -0
- package/src/components/Header/styles.scss +26 -0
- package/src/components/HeaderActions/Filters.tsx +90 -0
- package/src/components/HeaderActions/HeaderActions.tsx +59 -0
- package/src/components/HeaderActions/SortBy.tsx +128 -0
- package/src/components/HeaderActions/styles.scss +82 -0
- package/src/components/LanguagePicker/index.tsx +41 -0
- package/src/components/LanguagePicker/styles.scss +3 -0
- package/src/components/MainReport/index.tsx +19 -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/ModalView.hbs +13 -0
- package/src/components/Modal/ModalView.js +43 -0
- package/src/components/Modal/index.tsx +174 -0
- package/src/components/Modal/styles.scss +126 -0
- package/src/components/Overview/index.tsx +9 -0
- package/src/components/Packages/PackagesList.tsx +67 -0
- package/src/components/Packages/index.tsx +59 -0
- package/src/components/Packages/styles.scss +196 -0
- package/src/components/ReportBody/Filters.tsx +92 -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 +71 -0
- package/src/components/ReportBody/styles.scss +64 -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 +49 -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 +54 -0
- package/src/components/SideBySide/styles.scss +59 -0
- package/src/components/SideNav/SideNav.tsx +78 -0
- package/src/components/SideNav/SideNavView.hbs +39 -0
- package/src/components/SideNav/SideNavView.js +81 -0
- package/src/components/SideNav/styles.scss +126 -0
- package/src/components/Suites/index.tsx +62 -0
- package/src/components/Suites/styles.scss +10 -0
- package/src/components/Tabs/index.tsx +33 -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 +23 -0
- package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/TestResult/TestResultEmpty/index.tsx +33 -0
- package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/TestResult/TestResultError/index.tsx +48 -0
- package/src/components/TestResult/TestResultError/styles.scss +51 -0
- package/src/components/TestResult/TestResultHeader/index.tsx +53 -0
- package/src/components/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +67 -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 +79 -0
- package/src/components/TestResult/TestResultInfo/styles.scss +50 -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 +40 -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 +49 -0
- package/src/components/TestResult/TestResultRetriesView/index.tsx +20 -0
- package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/TestResult/TestResultSetup/index.tsx +49 -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 +26 -0
- package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +12 -0
- package/src/components/TestResult/TestResultSteps/attachment.tsx +68 -0
- package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +20 -0
- package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +32 -0
- package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +15 -0
- package/src/components/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/TestResult/TestResultSteps/styles.scss +225 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +77 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +78 -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 +59 -0
- package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/TestResult/TestResultView.hbs +32 -0
- package/src/components/TestResult/TestResultView.js +90 -0
- package/src/components/TestResult/index.tsx +54 -0
- package/src/components/TestResult/styles.scss +29 -0
- package/src/components/TestResultView/index.tsx +31 -0
- package/src/components/ThemeButton/ThemeButton.tsx +20 -0
- package/src/components/Timeline/index.tsx +2 -0
- package/src/components/Tree/Tree.tsx +76 -0
- package/src/components/Tree/TreeHeader.tsx +82 -0
- package/src/components/Tree/TreeItem.tsx +49 -0
- package/src/components/Tree/TreeItemIcon.tsx +32 -0
- package/src/components/Tree/index.tsx +60 -0
- package/src/components/Tree/styles.scss +185 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +40 -0
- package/src/index.js +52 -0
- package/src/index.tsx +60 -0
- package/src/mixins.scss +128 -0
- package/src/rtl.scss +19 -0
- package/src/stores/behaviors.ts +127 -0
- package/src/stores/categories.ts +127 -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/locale.ts +83 -0
- package/src/stores/packages.ts +127 -0
- package/src/stores/router.ts +55 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/tabs.ts +7 -0
- package/src/stores/testResults.ts +66 -0
- package/src/stores/theme.ts +33 -0
- package/src/stores/tree.ts +127 -0
- package/src/stores/types.ts +5 -0
- package/src/styles.scss +91 -0
- package/src/translations/am.json +127 -0
- package/src/translations/az.json +127 -0
- package/src/translations/br.json +214 -0
- package/src/translations/constants.ts +124 -0
- package/src/translations/de.json +127 -0
- package/src/translations/en.json +128 -0
- package/src/translations/es.json +118 -0
- package/src/translations/fr.json +118 -0
- package/src/translations/he.json +118 -0
- package/src/translations/isv.json +216 -0
- package/src/translations/it.json +118 -0
- package/src/translations/ja.json +118 -0
- package/src/translations/ka.json +118 -0
- package/src/translations/kr.json +118 -0
- package/src/translations/nl.json +118 -0
- package/src/translations/pl.json +116 -0
- package/src/translations/pt.json +118 -0
- package/src/translations/ru.json +116 -0
- package/src/translations/sv.json +118 -0
- package/src/translations/tr.json +118 -0
- package/src/translations/zh.json +118 -0
- package/src/types/globals.d.ts +13 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -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/navigate.ts +7 -0
- package/src/utils/statuses.js +1 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +139 -0
- package/src/variables.scss +71 -0
- package/test/utils/treeFilters.test.ts +448 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +85 -0
- package/vitest.config.ts +18 -0
- package/webpack.config--old.js +127 -0
- package/webpack.config.js +108 -0
|
@@ -0,0 +1,118 @@
|
|
|
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": "שם או מזהה"
|
|
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
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "חוסם",
|
|
72
|
+
"critical": "קריטי",
|
|
73
|
+
"normal": "רגיל",
|
|
74
|
+
"minor": "קל",
|
|
75
|
+
"trivial": "פעוט"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "ביצוע",
|
|
79
|
+
"body": "תוכן הבדיקה",
|
|
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
|
+
"nextTR": "תוצאת בדיקה הבאה",
|
|
103
|
+
"prevTR": "תוצאת בדיקה קודמת",
|
|
104
|
+
"downloadAttachment": "הורד קובץ מצורף",
|
|
105
|
+
"backto": "חזור ל",
|
|
106
|
+
"clipboard": "העתק ללוח",
|
|
107
|
+
"clipboardError": "לא ניתן להעתיק ללוח. ייתכן שהתכונה לא נתמכת בדפדפן שלך",
|
|
108
|
+
"clipboardSuccess": "הועתק בהצלחה",
|
|
109
|
+
"collapse": "כווץ",
|
|
110
|
+
"expand": "הרחב",
|
|
111
|
+
"fullscreen": "מסך מלא",
|
|
112
|
+
"language": "שנה שפה",
|
|
113
|
+
"openInNewTab": "פתח בכרטיסייה חדשה"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "הקובץ המצורף לא נמצא"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chart": {
|
|
3
|
+
"duration": {
|
|
4
|
+
"empty": "Nema informacije",
|
|
5
|
+
"name": "Trvanje testov"
|
|
6
|
+
},
|
|
7
|
+
"severity": {
|
|
8
|
+
"name": "Važnost testov"
|
|
9
|
+
},
|
|
10
|
+
"status": {
|
|
11
|
+
"name": "Statusy testov"
|
|
12
|
+
},
|
|
13
|
+
"trend": {
|
|
14
|
+
"empty": "Nema informacije"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"component": {
|
|
18
|
+
"markToggle": {
|
|
19
|
+
"hideCases": "Skryj rezultaty označene kako \"{{mark}}\"",
|
|
20
|
+
"showCases": "Pokaži rezultaty označene kako \"{{mark}}\""
|
|
21
|
+
},
|
|
22
|
+
"statusToggle": {
|
|
23
|
+
"hideCases": "Skryj rezultaty so statusom \"{{status}}\"",
|
|
24
|
+
"showCases": "Pokaži rezultaty so statusom \"{{status}}\""
|
|
25
|
+
},
|
|
26
|
+
"tree": {
|
|
27
|
+
"download": "Daunloduj CSV",
|
|
28
|
+
"empty": "Nema informacije",
|
|
29
|
+
"filter": "Statusy",
|
|
30
|
+
"filter-marks": "Označenja",
|
|
31
|
+
"filtered": {
|
|
32
|
+
"shown_0": "{{count}} pokazany",
|
|
33
|
+
"shown_1": "{{count}} pokazane",
|
|
34
|
+
"shown_2": "{{count}} pokazane",
|
|
35
|
+
"total_0": "{{count}} test vsěgo",
|
|
36
|
+
"total_1": "{{count}} testy vsěgo",
|
|
37
|
+
"total_2": "{{count}} testov vsěgo"
|
|
38
|
+
},
|
|
39
|
+
"groups": "Pokaži informaciju o grupah",
|
|
40
|
+
"time": {
|
|
41
|
+
"max": {
|
|
42
|
+
"name": "Najvyše dolgy",
|
|
43
|
+
"tooltip": "Koliko časa trval najvyše dolgy test v grupě"
|
|
44
|
+
},
|
|
45
|
+
"sum": {
|
|
46
|
+
"name": "V sumě",
|
|
47
|
+
"tooltip": "Suma trvanij vsih testov v grupě"
|
|
48
|
+
},
|
|
49
|
+
"total": {
|
|
50
|
+
"name": "Cělo",
|
|
51
|
+
"tooltip": "Čas od početka prvogo testa do konca poslědnogo"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"unknown": "<Nema>"
|
|
55
|
+
},
|
|
56
|
+
"widgetStatus": {
|
|
57
|
+
"showAll": "Pokaži vsečto",
|
|
58
|
+
"total_0": "{{count}} element vsěgo",
|
|
59
|
+
"total_1": "{{count}} elementa vsěgo",
|
|
60
|
+
"total_2": "{{count}} elementov vsěgo"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"controls": {
|
|
64
|
+
"backto": "Vzad do",
|
|
65
|
+
"clipboard": "Kopiruj do klipborda",
|
|
66
|
+
"clipboardError": "Pogrěška. Věrojetno, vaša prěgledka (brauzer) ne podpira kopirovanje do klipborda.",
|
|
67
|
+
"clipboardSuccess": "Tekst byl skopirovany",
|
|
68
|
+
"collapse": "Minimizuj",
|
|
69
|
+
"expand": "Razširi",
|
|
70
|
+
"fullscreen": "Na cěly ekran",
|
|
71
|
+
"language": "Izměni jezyk"
|
|
72
|
+
},
|
|
73
|
+
"errors": {
|
|
74
|
+
"missedAttachment": "Priloga ne najdena",
|
|
75
|
+
"notFound": "Ne najdeno"
|
|
76
|
+
},
|
|
77
|
+
"marks": {
|
|
78
|
+
"flaky": "Nestabilny",
|
|
79
|
+
"newBroken": "Iznova slomjeny",
|
|
80
|
+
"newFailed": "Iznova neuspěšny",
|
|
81
|
+
"newPassed": "Iznova uspěšny",
|
|
82
|
+
"retriesStatusChange": "Status měnjal se od proby do proby"
|
|
83
|
+
},
|
|
84
|
+
"sorter": {
|
|
85
|
+
"duration": "trvanje",
|
|
86
|
+
"name": "nazva",
|
|
87
|
+
"order": "poredok",
|
|
88
|
+
"status": "status"
|
|
89
|
+
},
|
|
90
|
+
"status": {
|
|
91
|
+
"broken": "Slomjeny",
|
|
92
|
+
"failed": "Neuspěšny",
|
|
93
|
+
"passed": "Uspěšny",
|
|
94
|
+
"skipped": "Propuščeny",
|
|
95
|
+
"unknown": "Neznany"
|
|
96
|
+
},
|
|
97
|
+
"tab": {
|
|
98
|
+
"categories": {
|
|
99
|
+
"name": "Kategorije"
|
|
100
|
+
},
|
|
101
|
+
"graph": {
|
|
102
|
+
"name": "Diagramy"
|
|
103
|
+
},
|
|
104
|
+
"overview": {
|
|
105
|
+
"name": "Prěgled"
|
|
106
|
+
},
|
|
107
|
+
"suites": {
|
|
108
|
+
"name": "Komplety testov"
|
|
109
|
+
},
|
|
110
|
+
"timeline": {
|
|
111
|
+
"name": "Hronologija",
|
|
112
|
+
"selected_0": "Izbrany {{count}} test ({{percent}}%) s trvanjem vyše od {{duration}}",
|
|
113
|
+
"selected_1": "Izbrane {{count}} testy ({{percent}}%) s trvanjem vyše od {{duration}}",
|
|
114
|
+
"selected_2": "Izbrane {{count}} testov ({{percent}}%) s trvanjem vyše od {{duration}}"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"testResult": {
|
|
118
|
+
"categories": {
|
|
119
|
+
"name": "Kategorije"
|
|
120
|
+
},
|
|
121
|
+
"description": {
|
|
122
|
+
"name": "Opis"
|
|
123
|
+
},
|
|
124
|
+
"duration": {
|
|
125
|
+
"name": "Trvanje"
|
|
126
|
+
},
|
|
127
|
+
"execution": {
|
|
128
|
+
"body": "Tělo testa",
|
|
129
|
+
"name": "Izpolnjenje",
|
|
130
|
+
"setup": "Prigotovjenje",
|
|
131
|
+
"teardown": "Zaključenje"
|
|
132
|
+
},
|
|
133
|
+
"history": {
|
|
134
|
+
"name": "Historija",
|
|
135
|
+
"successRate": "Procent uspěha"
|
|
136
|
+
},
|
|
137
|
+
"links": {
|
|
138
|
+
"name": "Linky"
|
|
139
|
+
},
|
|
140
|
+
"overview": {
|
|
141
|
+
"name": "Prěgled"
|
|
142
|
+
},
|
|
143
|
+
"owner": {
|
|
144
|
+
"name": "Vlastnik"
|
|
145
|
+
},
|
|
146
|
+
"parameters": {
|
|
147
|
+
"name": "Parametry"
|
|
148
|
+
},
|
|
149
|
+
"retries": {
|
|
150
|
+
"empty": "Nema informacije o minulyh probah testa",
|
|
151
|
+
"name": "Minule proby"
|
|
152
|
+
},
|
|
153
|
+
"severity": {
|
|
154
|
+
"name": "Važnost",
|
|
155
|
+
"blocker": "bloker",
|
|
156
|
+
"critical": "kritična",
|
|
157
|
+
"normal": "obyčajna",
|
|
158
|
+
"minor": "mala",
|
|
159
|
+
"trivial": "kosmetična"
|
|
160
|
+
},
|
|
161
|
+
"stats": {
|
|
162
|
+
"count": {
|
|
163
|
+
"attachments_0": "{{count}} priloga",
|
|
164
|
+
"attachments_1": "{{count}} prilogy",
|
|
165
|
+
"attachments_2": "{{count}} prilog",
|
|
166
|
+
"parameters_0": "{{count}} parametr",
|
|
167
|
+
"parameters_1": "{{count}} parametry",
|
|
168
|
+
"parameters_2": "{{count}} parametrov",
|
|
169
|
+
"steps_0": "{{count}} vloženy krok",
|
|
170
|
+
"steps_1": "{{count}} vložene kroky",
|
|
171
|
+
"steps_2": "{{count}} vloženyh krokov"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"status": {
|
|
175
|
+
"empty": "Nema dodatnoj informacije o statusu",
|
|
176
|
+
"trace": "Pokaži dodatnu informaciju"
|
|
177
|
+
},
|
|
178
|
+
"tags": {
|
|
179
|
+
"name": "Označenja"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"widget": {
|
|
183
|
+
"categories": {
|
|
184
|
+
"name": "Kategorije"
|
|
185
|
+
},
|
|
186
|
+
"environment": {
|
|
187
|
+
"empty": "Nema informacije o obsrědině",
|
|
188
|
+
"name": "Obsrědina",
|
|
189
|
+
"showAll": "Pokaži vsečto"
|
|
190
|
+
},
|
|
191
|
+
"executors": {
|
|
192
|
+
"empty": "Nema informacije o izpolniteljah",
|
|
193
|
+
"name": "Sistemy izpolnjenja testov",
|
|
194
|
+
"unknown": "Neznano"
|
|
195
|
+
},
|
|
196
|
+
"launches": {
|
|
197
|
+
"empty": "Nema informacije o puščenjah",
|
|
198
|
+
"name": "Puščenja testov"
|
|
199
|
+
},
|
|
200
|
+
"suites": {
|
|
201
|
+
"name": "Komplety testov"
|
|
202
|
+
},
|
|
203
|
+
"summary": {
|
|
204
|
+
"aggregatedName": "Agregovany raport",
|
|
205
|
+
"launches_0": "puščenje testov",
|
|
206
|
+
"launches_1": "puščenja testov",
|
|
207
|
+
"launches_2": "puščenij testov",
|
|
208
|
+
"testResults_0": "testovy scenarij",
|
|
209
|
+
"testResults_1": "testove scenarije",
|
|
210
|
+
"testResults_2": "testovyh scenarijev"
|
|
211
|
+
},
|
|
212
|
+
"trend": {
|
|
213
|
+
"name": "Trend"
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "superato",
|
|
4
|
+
"failed": "fallito",
|
|
5
|
+
"broken": "rotto",
|
|
6
|
+
"skipped": "saltato",
|
|
7
|
+
"unknown": "sconosciuto",
|
|
8
|
+
"total": "totale",
|
|
9
|
+
"flakyTests": "instabili",
|
|
10
|
+
"newTests": "nuovi",
|
|
11
|
+
"retryTests": "ritentati"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Tutti i test",
|
|
15
|
+
"flaky": "Test instabili",
|
|
16
|
+
"retry": "Test ritentati",
|
|
17
|
+
"new": "Nuovi test"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Tutti"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Cerca",
|
|
24
|
+
"search-placeholder": "Nome o ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Più filtri",
|
|
28
|
+
"enable-filter": "Abilita il filtro \"{filter}\"",
|
|
29
|
+
"flaky": "Instabili",
|
|
30
|
+
"retry": "Ritentati",
|
|
31
|
+
"new": "Nuovi"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Ordina per:",
|
|
35
|
+
"sort-by-category": "Ordina per",
|
|
36
|
+
"direction-category": "Direzione"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Ordine",
|
|
40
|
+
"alphabet": "Alfabetico",
|
|
41
|
+
"duration": "Durata",
|
|
42
|
+
"status": "Stato"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Ultimi – Primi",
|
|
46
|
+
"order-asc": "Primi – Ultimi",
|
|
47
|
+
"order-asc-short": "Primi",
|
|
48
|
+
"order-desc-short": "Ultimi",
|
|
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": "Come nella lista dei filtri",
|
|
58
|
+
"status-desc": "Invertito",
|
|
59
|
+
"status-asc-short": "Normale",
|
|
60
|
+
"status-desc-short": "Invertito"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Nessun risultato",
|
|
64
|
+
"no-tests-found": "Nessun risultato trovato",
|
|
65
|
+
"clear-filters": "Cancella i filtri",
|
|
66
|
+
"no-attachments-results": "Nessuna informazione sugli allegati disponibile",
|
|
67
|
+
"no-history-results": "Nessuna informazione sulla cronologia disponibile",
|
|
68
|
+
"no-retries-results": "Nessuna informazione sui ritentativi disponibile"
|
|
69
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "bloccante",
|
|
72
|
+
"critical": "critico",
|
|
73
|
+
"normal": "normale",
|
|
74
|
+
"minor": "minore",
|
|
75
|
+
"trivial": "banale"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "Esecuzione",
|
|
79
|
+
"body": "Corpo del test",
|
|
80
|
+
"setup": "Preparazione",
|
|
81
|
+
"teardown": "Smontaggio"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Etichette",
|
|
85
|
+
"metadata": "Metadati",
|
|
86
|
+
"parameters": "Parametri",
|
|
87
|
+
"description": "Descrizione",
|
|
88
|
+
"links": "Link",
|
|
89
|
+
"overview": "Panoramica",
|
|
90
|
+
"history": "Cronologia",
|
|
91
|
+
"attachments": "Allegati",
|
|
92
|
+
"retries": "Ritentativi",
|
|
93
|
+
"error": "Errore",
|
|
94
|
+
"goToStep": "Vai al passo",
|
|
95
|
+
"showLess": "Mostra meno",
|
|
96
|
+
"showMore": "Mostra di più",
|
|
97
|
+
"copy": "Copia",
|
|
98
|
+
"at": "a"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Apri in una nuova scheda",
|
|
102
|
+
"nextTR": "Risultato del test successivo",
|
|
103
|
+
"prevTR": "Risultato del test precedente",
|
|
104
|
+
"downloadAttachment": "Scarica allegato",
|
|
105
|
+
"backto": "Torna a",
|
|
106
|
+
"clipboard": "Copia negli appunti",
|
|
107
|
+
"clipboardError": "Errore. Sembra che questa funzionalità non sia supportata dal tuo browser",
|
|
108
|
+
"clipboardSuccess": "Copiato con successo",
|
|
109
|
+
"collapse": "Comprimi",
|
|
110
|
+
"expand": "Espandi",
|
|
111
|
+
"fullscreen": "Schermo intero",
|
|
112
|
+
"language": "Cambia lingua",
|
|
113
|
+
"openInNewTab": "Apri in una nuova scheda"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "Allegato non trovato"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
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": "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": "フィルターリストの順序",
|
|
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
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "ブロッカー",
|
|
72
|
+
"critical": "重大",
|
|
73
|
+
"normal": "通常",
|
|
74
|
+
"minor": "小規模",
|
|
75
|
+
"trivial": "些細"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "実行",
|
|
79
|
+
"body": "テスト本体",
|
|
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
|
+
"nextTR": "次のテスト結果",
|
|
103
|
+
"prevTR": "前のテスト結果",
|
|
104
|
+
"downloadAttachment": "添付ファイルをダウンロード",
|
|
105
|
+
"backto": "戻る",
|
|
106
|
+
"clipboard": "クリップボードにコピー",
|
|
107
|
+
"clipboardError": "エラー。この機能はお使いのブラウザでサポートされていない可能性があります",
|
|
108
|
+
"clipboardSuccess": "コピー成功",
|
|
109
|
+
"collapse": "折りたたむ",
|
|
110
|
+
"expand": "展開",
|
|
111
|
+
"fullscreen": "全画面",
|
|
112
|
+
"language": "言語を変更",
|
|
113
|
+
"openInNewTab": "新しいタブで開く"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "添付ファイルが見つかりません"
|
|
117
|
+
}
|
|
118
|
+
}
|