@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,124 @@
|
|
|
1
|
+
export const AVAILABLE_LOCALES = [
|
|
2
|
+
"en",
|
|
3
|
+
"ru",
|
|
4
|
+
"pl",
|
|
5
|
+
"es",
|
|
6
|
+
"pt",
|
|
7
|
+
"de",
|
|
8
|
+
"am",
|
|
9
|
+
"az",
|
|
10
|
+
"fr",
|
|
11
|
+
"it",
|
|
12
|
+
"ja",
|
|
13
|
+
"he",
|
|
14
|
+
"ka",
|
|
15
|
+
"kr",
|
|
16
|
+
"nl",
|
|
17
|
+
"sv",
|
|
18
|
+
"tr",
|
|
19
|
+
"zh",
|
|
20
|
+
] as const;
|
|
21
|
+
|
|
22
|
+
export const DEFAULT_LOCALE = "en";
|
|
23
|
+
|
|
24
|
+
export type LangLocale = (typeof AVAILABLE_LOCALES)[number];
|
|
25
|
+
|
|
26
|
+
export const LANG_LOCALE: Record<
|
|
27
|
+
LangLocale,
|
|
28
|
+
{
|
|
29
|
+
short: string;
|
|
30
|
+
full: string;
|
|
31
|
+
iso: string;
|
|
32
|
+
}
|
|
33
|
+
> = {
|
|
34
|
+
en: {
|
|
35
|
+
short: "Eng",
|
|
36
|
+
full: "English",
|
|
37
|
+
iso: "en-US",
|
|
38
|
+
},
|
|
39
|
+
ru: {
|
|
40
|
+
short: "Ру",
|
|
41
|
+
full: "Русский",
|
|
42
|
+
iso: "ru-RU",
|
|
43
|
+
},
|
|
44
|
+
pl: {
|
|
45
|
+
short: "Pl",
|
|
46
|
+
full: "Polski",
|
|
47
|
+
iso: "pl-PL",
|
|
48
|
+
},
|
|
49
|
+
es: {
|
|
50
|
+
short: "Es",
|
|
51
|
+
full: "Español",
|
|
52
|
+
iso: "es-ES",
|
|
53
|
+
},
|
|
54
|
+
pt: {
|
|
55
|
+
short: "Pt",
|
|
56
|
+
full: "Português",
|
|
57
|
+
iso: "pt-PT",
|
|
58
|
+
},
|
|
59
|
+
de: {
|
|
60
|
+
short: "De",
|
|
61
|
+
full: "Deutsch",
|
|
62
|
+
iso: "de-DE",
|
|
63
|
+
},
|
|
64
|
+
am: {
|
|
65
|
+
short: "Am",
|
|
66
|
+
full: "Հայերեն",
|
|
67
|
+
iso: "hy-AM",
|
|
68
|
+
},
|
|
69
|
+
az: {
|
|
70
|
+
short: "Az",
|
|
71
|
+
full: "Azərbaycan",
|
|
72
|
+
iso: "az-AZ",
|
|
73
|
+
},
|
|
74
|
+
fr: {
|
|
75
|
+
short: "Fr",
|
|
76
|
+
full: "Français",
|
|
77
|
+
iso: "fr-FR",
|
|
78
|
+
},
|
|
79
|
+
it: {
|
|
80
|
+
short: "It",
|
|
81
|
+
full: "Italiano",
|
|
82
|
+
iso: "it-IT",
|
|
83
|
+
},
|
|
84
|
+
ja: {
|
|
85
|
+
short: "Ja",
|
|
86
|
+
full: "日本語",
|
|
87
|
+
iso: "ja-JP",
|
|
88
|
+
},
|
|
89
|
+
he: {
|
|
90
|
+
short: "He",
|
|
91
|
+
full: "עברית",
|
|
92
|
+
iso: "he-IL",
|
|
93
|
+
},
|
|
94
|
+
ka: {
|
|
95
|
+
short: "Ka",
|
|
96
|
+
full: "ქართული",
|
|
97
|
+
iso: "ka-GE",
|
|
98
|
+
},
|
|
99
|
+
kr: {
|
|
100
|
+
short: "Kr",
|
|
101
|
+
full: "한국어",
|
|
102
|
+
iso: "kr-KR",
|
|
103
|
+
},
|
|
104
|
+
nl: {
|
|
105
|
+
short: "Nl",
|
|
106
|
+
full: "Nederlands",
|
|
107
|
+
iso: "nl-NL",
|
|
108
|
+
},
|
|
109
|
+
sv: {
|
|
110
|
+
short: "Sv",
|
|
111
|
+
full: "Svenska",
|
|
112
|
+
iso: "sv-SE",
|
|
113
|
+
},
|
|
114
|
+
tr: {
|
|
115
|
+
short: "Tr",
|
|
116
|
+
full: "Türkçe",
|
|
117
|
+
iso: "tr-TR",
|
|
118
|
+
},
|
|
119
|
+
zh: {
|
|
120
|
+
short: "Zh",
|
|
121
|
+
full: "中文",
|
|
122
|
+
iso: "zh-CN",
|
|
123
|
+
},
|
|
124
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "bestanden",
|
|
4
|
+
"failed": "fehlgeschlagen",
|
|
5
|
+
"broken": "defekt",
|
|
6
|
+
"skipped": "übersprungen",
|
|
7
|
+
"unknown": "unbekannt",
|
|
8
|
+
"total": "gesamt",
|
|
9
|
+
"flakyTests": "instabil",
|
|
10
|
+
"newTests": "neu",
|
|
11
|
+
"retryTests": "wiederholen"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Alle Tests",
|
|
15
|
+
"flaky": "Instabile Tests",
|
|
16
|
+
"retry": "Wiederholte Tests",
|
|
17
|
+
"new": "Neue Tests"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Alle"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Suchen",
|
|
24
|
+
"search-placeholder": "Name oder ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Weitere Filter",
|
|
28
|
+
"enable-filter": "Filter für \"{filter}\" aktivieren",
|
|
29
|
+
"flaky": "Instabil",
|
|
30
|
+
"retry": "Wiederholen",
|
|
31
|
+
"new": "Neu"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Sortieren nach:",
|
|
35
|
+
"sort-by-category": "Sortieren nach",
|
|
36
|
+
"direction-category": "Richtung"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Reihenfolge",
|
|
40
|
+
"alphabet": "Alphabet",
|
|
41
|
+
"duration": "Dauer",
|
|
42
|
+
"status": "Status"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Neueste – Älteste",
|
|
46
|
+
"order-asc": "Älteste – Neueste",
|
|
47
|
+
"order-asc-short": "Älteste",
|
|
48
|
+
"order-desc-short": "Neueste",
|
|
49
|
+
"alphabet-asc": "A – Z",
|
|
50
|
+
"alphabet-desc": "Z – A",
|
|
51
|
+
"alphabet-asc-short": "A – Z",
|
|
52
|
+
"alphabet-desc-short": "Z – A",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "Wie in der Filterliste",
|
|
58
|
+
"status-desc": "Umgekehrt",
|
|
59
|
+
"status-asc-short": "Normal",
|
|
60
|
+
"status-desc-short": "Umgekehrt"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Keine Ergebnisse",
|
|
64
|
+
"no-tests-found": "Keine Ergebnisse gefunden",
|
|
65
|
+
"clear-filters": "Filter löschen",
|
|
66
|
+
"no-attachments-results": "Keine Anhängeinformationen verfügbar",
|
|
67
|
+
"no-history-results": "Keine Verlaufsinformationen verfügbar",
|
|
68
|
+
"no-retries-results": "Keine Wiederholungsinformationen verfügbar"
|
|
69
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "Blocker",
|
|
72
|
+
"critical": "kritisch",
|
|
73
|
+
"normal": "normal",
|
|
74
|
+
"minor": "geringfügig",
|
|
75
|
+
"trivial": "trivial"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "Ausführung",
|
|
79
|
+
"body": "Testkörper",
|
|
80
|
+
"setup": "Vorbereitung",
|
|
81
|
+
"teardown": "Abbau"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Labels",
|
|
85
|
+
"metadata": "Metadaten",
|
|
86
|
+
"parameters": "Parameter",
|
|
87
|
+
"description": "Beschreibung",
|
|
88
|
+
"links": "Links",
|
|
89
|
+
"overview": "Übersicht",
|
|
90
|
+
"history": "Verlauf",
|
|
91
|
+
"attachments": "Anhänge",
|
|
92
|
+
"retries": "Wiederholungen",
|
|
93
|
+
"error": "Fehler",
|
|
94
|
+
"goToStep": "Zum Schritt gehen",
|
|
95
|
+
"showLess": "Weniger anzeigen",
|
|
96
|
+
"showMore": "Mehr anzeigen",
|
|
97
|
+
"copy": "Kopieren",
|
|
98
|
+
"at": "bei"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Anhang in neuem Tab öffnen",
|
|
102
|
+
"nextTR": "Nächstes Testergebnis",
|
|
103
|
+
"prevTR": "Vorheriges Testergebnis",
|
|
104
|
+
"downloadAttachment": "Anhang herunterladen",
|
|
105
|
+
"backto": "Zurück zu",
|
|
106
|
+
"clipboard": "In die Zwischenablage kopieren",
|
|
107
|
+
"clipboardError": "Fehler. Diese Funktion wird von Ihrem Browser wahrscheinlich nicht unterstützt",
|
|
108
|
+
"clipboardSuccess": "Erfolgreich kopiert",
|
|
109
|
+
"collapse": "Einklappen",
|
|
110
|
+
"expand": "Ausklappen",
|
|
111
|
+
"fullscreen": "Vollbild",
|
|
112
|
+
"language": "Sprache ändern",
|
|
113
|
+
"openInNewTab": "In neuem Tab öffnen"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "Anhang nicht gefunden"
|
|
117
|
+
},
|
|
118
|
+
"nav": {
|
|
119
|
+
"overview": "Übersicht",
|
|
120
|
+
"behaviors": "Verhalten",
|
|
121
|
+
"categories": "Kategorien",
|
|
122
|
+
"graphs": "Grafiken",
|
|
123
|
+
"packages": "Pakete",
|
|
124
|
+
"suites": "Suiten",
|
|
125
|
+
"timeline": "Zeitleiste"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "passed",
|
|
4
|
+
"failed": "failed",
|
|
5
|
+
"broken": "broken",
|
|
6
|
+
"skipped": "skipped",
|
|
7
|
+
"unknown": "unknown",
|
|
8
|
+
"total": "total",
|
|
9
|
+
"flakyTests": "flaky",
|
|
10
|
+
"newTests": "new",
|
|
11
|
+
"retryTests": "retry"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "All Test",
|
|
15
|
+
"flaky": "Flaky test",
|
|
16
|
+
"retry": "Retry test",
|
|
17
|
+
"new": "New test"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "All"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Search",
|
|
24
|
+
"search-placeholder": "Name or ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "More filters",
|
|
28
|
+
"enable-filter": "params('Enable \"{filter}\" filter')",
|
|
29
|
+
"flaky": "Flaky",
|
|
30
|
+
"retry": "Retry",
|
|
31
|
+
"new": "New"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Sort by:",
|
|
35
|
+
"sort-by-category": "Sort by",
|
|
36
|
+
"direction-category": "Direction"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Order",
|
|
40
|
+
"alphabet": "Alphabet",
|
|
41
|
+
"duration": "Duration",
|
|
42
|
+
"status": "Status"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Latest – Earliest",
|
|
46
|
+
"order-asc": "Earliest – Latest",
|
|
47
|
+
"order-asc-short": "Earliest",
|
|
48
|
+
"order-desc-short": "Latest",
|
|
49
|
+
"alphabet-asc": "A – Z",
|
|
50
|
+
"alphabet-desc": "Z – A",
|
|
51
|
+
"alphabet-asc-short": "A – Z",
|
|
52
|
+
"alphabet-desc-short": "Z – A",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "As in the filter list",
|
|
58
|
+
"status-desc": "Reversed",
|
|
59
|
+
"status-asc-short": "Regular",
|
|
60
|
+
"status-desc-short": "Reversed"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "No results",
|
|
64
|
+
"no-tests-found": "No results found",
|
|
65
|
+
"no-message-provided": "No message is provided",
|
|
66
|
+
"clear-filters": "Clear filters",
|
|
67
|
+
"no-attachments-results": "No attachments information available",
|
|
68
|
+
"no-history-results": "No history information available",
|
|
69
|
+
"no-retries-results": "No retries information available"
|
|
70
|
+
},
|
|
71
|
+
"severity": {
|
|
72
|
+
"blocker": "blocker",
|
|
73
|
+
"critical": "critical",
|
|
74
|
+
"normal": "normal",
|
|
75
|
+
"minor": "minor",
|
|
76
|
+
"trivial": "trivial"
|
|
77
|
+
},
|
|
78
|
+
"execution": {
|
|
79
|
+
"name": "Execution",
|
|
80
|
+
"body": "Test body",
|
|
81
|
+
"setup": "Set up",
|
|
82
|
+
"teardown": "Tear down"
|
|
83
|
+
},
|
|
84
|
+
"ui": {
|
|
85
|
+
"labels": "Labels",
|
|
86
|
+
"metadata": "Metadata",
|
|
87
|
+
"parameters": "Parameters",
|
|
88
|
+
"description": "Description",
|
|
89
|
+
"links": "Links",
|
|
90
|
+
"overview": "Overview",
|
|
91
|
+
"history": "History",
|
|
92
|
+
"attachments": "Attachments",
|
|
93
|
+
"retries": "Retries",
|
|
94
|
+
"error": "Error",
|
|
95
|
+
"goToStep": "Go to step",
|
|
96
|
+
"showLess": "Show less",
|
|
97
|
+
"showMore": "Show more",
|
|
98
|
+
"copy": "Copy",
|
|
99
|
+
"at": "at"
|
|
100
|
+
},
|
|
101
|
+
"controls": {
|
|
102
|
+
"newTabAttachment": "Open attachment in new tab",
|
|
103
|
+
"nextTR": "Next Test result",
|
|
104
|
+
"prevTR": "Previous Test result",
|
|
105
|
+
"downloadAttachment": "Download attachment",
|
|
106
|
+
"backto": "Back to",
|
|
107
|
+
"clipboard": "Copy to clipboard",
|
|
108
|
+
"clipboardError": "Can not copy value to clipboard. Seems like this feature is not supported for your browser",
|
|
109
|
+
"clipboardSuccess": "Successfully copied",
|
|
110
|
+
"collapse": "Collapse",
|
|
111
|
+
"expand": "Expand",
|
|
112
|
+
"fullscreen": "Full screen",
|
|
113
|
+
"language": "Change language",
|
|
114
|
+
"openInNewTab": "Open in new tab"
|
|
115
|
+
},
|
|
116
|
+
"errors": {
|
|
117
|
+
"missedAttachment": "Attachment not found"
|
|
118
|
+
},
|
|
119
|
+
"nav": {
|
|
120
|
+
"overview": "Overview",
|
|
121
|
+
"behaviors": "Behaviors",
|
|
122
|
+
"categories": "Categories",
|
|
123
|
+
"graphs": "Graphs",
|
|
124
|
+
"packages": "Packages",
|
|
125
|
+
"suites": "Suites",
|
|
126
|
+
"timeline": "Timeline"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "aprobado",
|
|
4
|
+
"failed": "fallido",
|
|
5
|
+
"broken": "roto",
|
|
6
|
+
"skipped": "omitido",
|
|
7
|
+
"unknown": "desconocido",
|
|
8
|
+
"total": "total",
|
|
9
|
+
"flakyTests": "inestable",
|
|
10
|
+
"newTests": "nuevo",
|
|
11
|
+
"retryTests": "reintento"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Todas las pruebas",
|
|
15
|
+
"flaky": "Pruebas inestables",
|
|
16
|
+
"retry": "Pruebas reintentadas",
|
|
17
|
+
"new": "Pruebas nuevas"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Todo"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Buscar",
|
|
24
|
+
"search-placeholder": "Nombre o ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Más filtros",
|
|
28
|
+
"enable-filter": "Habilitar filtro para \"{filter}\"",
|
|
29
|
+
"flaky": "Inestable",
|
|
30
|
+
"retry": "Reintento",
|
|
31
|
+
"new": "Nuevo"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Ordenar por:",
|
|
35
|
+
"sort-by-category": "Ordenar por",
|
|
36
|
+
"direction-category": "Dirección"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Orden",
|
|
40
|
+
"alphabet": "Alfabeto",
|
|
41
|
+
"duration": "Duración",
|
|
42
|
+
"status": "Estado"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Más reciente – Más antiguo",
|
|
46
|
+
"order-asc": "Más antiguo – Más reciente",
|
|
47
|
+
"order-asc-short": "Antiguo",
|
|
48
|
+
"order-desc-short": "Reciente",
|
|
49
|
+
"alphabet-asc": "A – Z",
|
|
50
|
+
"alphabet-desc": "Z – A",
|
|
51
|
+
"alphabet-asc-short": "A – Z",
|
|
52
|
+
"alphabet-desc-short": "Z – A",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "Como en la lista de filtros",
|
|
58
|
+
"status-desc": "Invertido",
|
|
59
|
+
"status-asc-short": "Regular",
|
|
60
|
+
"status-desc-short": "Invertido"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Sin resultados",
|
|
64
|
+
"no-tests-found": "No se encontraron resultados",
|
|
65
|
+
"clear-filters": "Limpiar filtros",
|
|
66
|
+
"no-attachments-results": "No hay información de adjuntos disponible",
|
|
67
|
+
"no-history-results": "No hay información de historial disponible",
|
|
68
|
+
"no-retries-results": "No hay información de reintentos disponible"
|
|
69
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "bloqueante",
|
|
72
|
+
"critical": "crítico",
|
|
73
|
+
"normal": "normal",
|
|
74
|
+
"minor": "menor",
|
|
75
|
+
"trivial": "trivial"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "Ejecución",
|
|
79
|
+
"body": "Cuerpo de la prueba",
|
|
80
|
+
"setup": "Configuración",
|
|
81
|
+
"teardown": "Desmontaje"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Etiquetas",
|
|
85
|
+
"metadata": "Metadatos",
|
|
86
|
+
"parameters": "Parámetros",
|
|
87
|
+
"description": "Descripción",
|
|
88
|
+
"links": "Enlaces",
|
|
89
|
+
"overview": "Resumen",
|
|
90
|
+
"history": "Historial",
|
|
91
|
+
"attachments": "Adjuntos",
|
|
92
|
+
"retries": "Reintentos",
|
|
93
|
+
"error": "Error",
|
|
94
|
+
"goToStep": "Ir al paso",
|
|
95
|
+
"showLess": "Mostrar menos",
|
|
96
|
+
"showMore": "Mostrar más",
|
|
97
|
+
"copy": "Copiar",
|
|
98
|
+
"at": "a las"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Abrir adjunto en nueva pestaña",
|
|
102
|
+
"nextTR": "Siguiente resultado de prueba",
|
|
103
|
+
"prevTR": "Resultado de prueba anterior",
|
|
104
|
+
"downloadAttachment": "Descargar adjunto",
|
|
105
|
+
"backto": "Volver a",
|
|
106
|
+
"clipboard": "Copiar al portapapeles",
|
|
107
|
+
"clipboardError": "Error. Parece que esta funcionalidad no está soportada por tu navegador",
|
|
108
|
+
"clipboardSuccess": "Copiado con éxito",
|
|
109
|
+
"collapse": "Colapsar",
|
|
110
|
+
"expand": "Expandir",
|
|
111
|
+
"fullscreen": "Pantalla completa",
|
|
112
|
+
"language": "Cambiar idioma",
|
|
113
|
+
"openInNewTab": "Abrir en nueva pestaña"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "Adjunto no encontrado"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "réussi",
|
|
4
|
+
"failed": "échoué",
|
|
5
|
+
"broken": "cassé",
|
|
6
|
+
"skipped": "ignoré",
|
|
7
|
+
"unknown": "inconnu",
|
|
8
|
+
"total": "total",
|
|
9
|
+
"flakyTests": "instables",
|
|
10
|
+
"newTests": "nouveaux",
|
|
11
|
+
"retryTests": "réessais"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Tous les tests",
|
|
15
|
+
"flaky": "Tests instables",
|
|
16
|
+
"retry": "Tests réessayés",
|
|
17
|
+
"new": "Nouveaux tests"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Tous"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Recherche",
|
|
24
|
+
"search-placeholder": "Nom ou ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Plus de filtres",
|
|
28
|
+
"enable-filter": "Activer le filtre \"{filter}\"",
|
|
29
|
+
"flaky": "Instables",
|
|
30
|
+
"retry": "Réessais",
|
|
31
|
+
"new": "Nouveaux"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Trier par :",
|
|
35
|
+
"sort-by-category": "Trier par",
|
|
36
|
+
"direction-category": "Direction"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Ordre",
|
|
40
|
+
"alphabet": "Alphabétique",
|
|
41
|
+
"duration": "Durée",
|
|
42
|
+
"status": "Statut"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Derniers – Premiers",
|
|
46
|
+
"order-asc": "Premiers – Derniers",
|
|
47
|
+
"order-asc-short": "Premiers",
|
|
48
|
+
"order-desc-short": "Derniers",
|
|
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": "Comme dans la liste des filtres",
|
|
58
|
+
"status-desc": "Inversé",
|
|
59
|
+
"status-asc-short": "Normal",
|
|
60
|
+
"status-desc-short": "Inversé"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Aucun résultat",
|
|
64
|
+
"no-tests-found": "Aucun résultat trouvé",
|
|
65
|
+
"clear-filters": "Effacer les filtres",
|
|
66
|
+
"no-attachments-results": "Aucune information sur les pièces jointes disponible",
|
|
67
|
+
"no-history-results": "Aucune information sur l'historique disponible",
|
|
68
|
+
"no-retries-results": "Aucune information sur les réessais disponible"
|
|
69
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "bloquant",
|
|
72
|
+
"critical": "critique",
|
|
73
|
+
"normal": "normal",
|
|
74
|
+
"minor": "mineur",
|
|
75
|
+
"trivial": "trivial"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "Exécution",
|
|
79
|
+
"body": "Corps du test",
|
|
80
|
+
"setup": "Préparation",
|
|
81
|
+
"teardown": "Démontage"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Étiquettes",
|
|
85
|
+
"metadata": "Métadonnées",
|
|
86
|
+
"parameters": "Paramètres",
|
|
87
|
+
"description": "Description",
|
|
88
|
+
"links": "Liens",
|
|
89
|
+
"overview": "Vue d'ensemble",
|
|
90
|
+
"history": "Historique",
|
|
91
|
+
"attachments": "Pièces jointes",
|
|
92
|
+
"retries": "Réessais",
|
|
93
|
+
"error": "Erreur",
|
|
94
|
+
"goToStep": "Aller à l'étape",
|
|
95
|
+
"showLess": "Montrer moins",
|
|
96
|
+
"showMore": "Montrer plus",
|
|
97
|
+
"copy": "Copier",
|
|
98
|
+
"at": "à"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Ouvrir dans un nouvel onglet",
|
|
102
|
+
"nextTR": "Résultat de test suivant",
|
|
103
|
+
"prevTR": "Résultat de test précédent",
|
|
104
|
+
"downloadAttachment": "Télécharger la pièce jointe",
|
|
105
|
+
"backto": "Retour à",
|
|
106
|
+
"clipboard": "Copier dans le presse-papier",
|
|
107
|
+
"clipboardError": "Erreur. Il semble que cette fonctionnalité ne soit pas prise en charge par votre navigateur",
|
|
108
|
+
"clipboardSuccess": "Copié avec succès",
|
|
109
|
+
"collapse": "Réduire",
|
|
110
|
+
"expand": "Agrandir",
|
|
111
|
+
"fullscreen": "Plein écran",
|
|
112
|
+
"language": "Changer la langue",
|
|
113
|
+
"openInNewTab": "Ouvrir dans un nouvel onglet"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "Pièce jointe non trouvée"
|
|
117
|
+
}
|
|
118
|
+
}
|