@allurereport/web-awesome 3.0.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/multi/173.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/174.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/252.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/282.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/29.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/416.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/527.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/600.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/605.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/638.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/672.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/686.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/725.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/741.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/749.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/755.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/894.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/943.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/980.app-d0210ed2e64d38a2ee8e.js +1 -0
- package/dist/multi/app-d0210ed2e64d38a2ee8e.js +2 -0
- package/dist/multi/{app-bae2a0fe5738d77cd976.js.LICENSE.txt → app-d0210ed2e64d38a2ee8e.js.LICENSE.txt} +7 -0
- package/dist/multi/manifest.json +21 -21
- package/dist/multi/styles-13107bbe6906beabc50f.css +49 -0
- package/dist/single/app-01fed10ad5f9083fd39c.js +2 -0
- package/dist/single/{app-996d3b5869f8fc942b66.js.LICENSE.txt → app-01fed10ad5f9083fd39c.js.LICENSE.txt} +7 -0
- package/dist/single/manifest.json +1 -1
- package/package.json +9 -11
- package/src/assets/scss/vars.scss +3 -0
- package/src/components/BaseLayout/index.tsx +25 -21
- package/src/components/BaseLayout/styles.scss +1 -0
- package/src/components/Charts/index.tsx +10 -7
- package/src/components/Footer/FooterVersion.tsx +14 -8
- package/src/components/Header/index.tsx +9 -7
- package/src/components/HeaderControls/index.tsx +5 -2
- package/src/components/MainReport/index.tsx +52 -47
- package/src/components/MainReport/styles.scss +1 -0
- package/src/components/Metadata/index.tsx +98 -7
- package/src/components/Metadata/styles.scss +10 -0
- package/src/components/ReportBody/HeaderActions.tsx +4 -13
- package/src/components/ReportBody/SortBy.tsx +27 -13
- package/src/components/ReportBody/index.tsx +1 -1
- package/src/components/ReportBody/styles.scss +4 -1
- package/src/components/ReportFilters/BaseFilters.tsx +345 -0
- package/src/components/ReportFilters/RetryFlaky.tsx +29 -0
- package/src/components/ReportFilters/TagsFilter.tsx +41 -0
- package/src/components/ReportFilters/TransitionFilter.tsx +49 -0
- package/src/components/ReportFilters/index.tsx +44 -0
- package/src/components/ReportFilters/styles.scss +55 -0
- package/src/components/ReportQualityGateResults/index.tsx +77 -19
- package/src/components/ReportQualityGateResults/styles.scss +13 -0
- package/src/components/ReportSearch/index.tsx +29 -0
- package/src/components/ReportTabs/index.tsx +1 -1
- package/src/components/SectionPicker/index.tsx +1 -1
- package/src/components/SplitLayout/index.tsx +7 -3
- package/src/components/TestResult/TrDescription/index.tsx +60 -10
- package/src/components/TestResult/TrDescription/styles.scss +4 -0
- package/src/components/TestResult/TrEnvironmentItem/index.tsx +2 -2
- package/src/components/TestResult/TrError/TrDiff.tsx +2 -6
- package/src/components/TestResult/TrError/styles.scss +4 -0
- package/src/components/TestResult/TrHeader/TrBreadcrumbs.tsx +2 -2
- package/src/components/TestResult/TrHistory/TrHistoryItem.tsx +38 -7
- package/src/components/TestResult/TrHistory/index.tsx +18 -8
- package/src/components/TestResult/TrHistory/styles.scss +4 -7
- package/src/components/TestResult/TrInfo/styles.scss +1 -0
- package/src/components/TestResult/TrLinks/index.tsx +4 -4
- package/src/components/TestResult/TrNavigation/index.tsx +109 -68
- package/src/components/TestResult/TrNavigation/styles.scss +15 -25
- package/src/components/TestResult/TrOverview.tsx +3 -2
- package/src/components/TestResult/TrPwTraces/PwTraceButton.tsx +1 -8
- package/src/components/TestResult/TrRetriesView/TrRetriesItem.tsx +2 -3
- package/src/components/TestResult/TrRetriesView/index.tsx +4 -3
- package/src/components/TestResult/TrSteps/TrAttachment.tsx +5 -3
- package/src/components/TestResult/TrSteps/TrAttachmentInfo.tsx +10 -3
- package/src/components/TestResult/TrTabs/index.tsx +7 -23
- package/src/components/TestResult/index.tsx +9 -4
- package/src/components/TestResult/styles.scss +1 -0
- package/src/components/Timeline/index.tsx +2 -5
- package/src/components/Tree/index.tsx +14 -9
- package/src/index.html +19 -18
- package/src/index.tsx +20 -27
- package/src/locales/az.json +42 -13
- package/src/locales/de.json +42 -13
- package/src/locales/en.json +42 -13
- package/src/locales/es.json +42 -13
- package/src/locales/fr.json +42 -13
- package/src/locales/he.json +42 -13
- package/src/locales/hy.json +42 -13
- package/src/locales/it.json +42 -13
- package/src/locales/ja.json +42 -13
- package/src/locales/ka.json +42 -13
- package/src/locales/kr.json +42 -13
- package/src/locales/nl.json +42 -13
- package/src/locales/pl.json +42 -13
- package/src/locales/pt.json +42 -13
- package/src/locales/ru.json +42 -13
- package/src/locales/sv.json +42 -13
- package/src/locales/tr.json +42 -13
- package/src/locales/{ua.json → uk.json} +42 -13
- package/src/locales/zh.json +42 -13
- package/src/stores/chart.ts +2 -2
- package/src/stores/env.ts +6 -6
- package/src/stores/envInfo.ts +2 -2
- package/src/stores/globals.ts +1 -1
- package/src/stores/index.ts +0 -1
- package/src/stores/layout.ts +20 -11
- package/src/stores/locale.ts +71 -38
- package/src/stores/qualityGate.ts +4 -4
- package/src/stores/router.ts +25 -91
- package/src/stores/sections.ts +32 -45
- package/src/stores/stats.ts +4 -4
- package/src/stores/testResult.ts +5 -0
- package/src/stores/testResults.ts +7 -5
- package/src/stores/timeline.ts +5 -2
- package/src/stores/tree.ts +20 -13
- package/src/stores/treeFilters/actions.ts +48 -52
- package/src/stores/treeFilters/constants.ts +11 -5
- package/src/stores/treeFilters/model.ts +51 -0
- package/src/stores/treeFilters/store.ts +260 -60
- package/src/stores/treeFilters/utils.ts +132 -0
- package/src/stores/treeSort.ts +71 -0
- package/src/stores/variables.ts +3 -3
- package/src/utils/ownerAddress.ts +92 -0
- package/src/utils/time.ts +16 -2
- package/src/utils/treeFilters.ts +48 -66
- package/test/components/Header.test.tsx +49 -58
- package/test/utils/ownerAddress.test.ts +89 -0
- package/test/utils/treeFilters.test.ts +18 -321
- package/types.d.ts +3 -2
- package/dist/multi/173.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/174.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/252.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/282.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/29.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/416.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/527.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/600.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/605.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/638.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/672.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/686.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/725.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/741.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/755.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/894.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/91.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/943.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/980.app-bae2a0fe5738d77cd976.js +0 -1
- package/dist/multi/app-bae2a0fe5738d77cd976.js +0 -2
- package/dist/multi/styles-bbf68b2ba63c38b53c38.css +0 -48
- package/dist/single/app-996d3b5869f8fc942b66.js +0 -2
- package/src/components/ReportBody/Filters.tsx +0 -122
- package/src/stores/theme.ts +0 -30
- package/src/stores/treeFilters/index.ts +0 -3
- package/src/stores/treeFilters/types.ts +0 -12
- package/test/stores/treeFilters.test.ts +0 -302
package/src/index.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ensureReportDataReady } from "@allurereport/web-commons";
|
|
2
2
|
import { Spinner, SvgIcon, allureIcons } from "@allurereport/web-components";
|
|
3
3
|
import "@allurereport/web-components/index.css";
|
|
4
|
+
import { computed, useSignalEffect } from "@preact/signals";
|
|
4
5
|
import clsx from "clsx";
|
|
5
6
|
import { render } from "preact";
|
|
6
7
|
import { useEffect, useState } from "preact/hooks";
|
|
@@ -9,18 +10,21 @@ import { Footer } from "@/components/Footer";
|
|
|
9
10
|
import { Header } from "@/components/Header";
|
|
10
11
|
import { ModalComponent } from "@/components/Modal";
|
|
11
12
|
import { SectionSwitcher } from "@/components/SectionSwitcher";
|
|
12
|
-
import { fetchEnvStats, fetchReportStats, getLocale,
|
|
13
|
+
import { fetchEnvStats, fetchReportStats, getLocale, waitForI18next } from "@/stores";
|
|
13
14
|
import { fetchPieChartData } from "@/stores/chart";
|
|
14
15
|
import { currentEnvironment, environmentsStore, fetchEnvironments } from "@/stores/env";
|
|
15
16
|
import { fetchEnvInfo } from "@/stores/envInfo";
|
|
16
17
|
import { fetchGlobals } from "@/stores/globals";
|
|
17
|
-
import {
|
|
18
|
-
import { handleHashChange, route } from "@/stores/router";
|
|
19
|
-
import { currentSection, getSection } from "@/stores/sections";
|
|
18
|
+
import { isLayoutLoading, layoutStore } from "@/stores/layout";
|
|
20
19
|
import { fetchTestResult, fetchTestResultNav } from "@/stores/testResults";
|
|
21
20
|
import { fetchEnvTreesData } from "@/stores/tree";
|
|
22
21
|
import { isMac } from "@/utils/isMac";
|
|
23
22
|
import { fetchQualityGateResults } from "./stores/qualityGate";
|
|
23
|
+
import { testResultRoute } from "./stores/router";
|
|
24
|
+
import { currentSection } from "./stores/sections";
|
|
25
|
+
import { currentTrId } from "./stores/testResult";
|
|
26
|
+
import { fetchTreeFiltersData } from "./stores/treeFilters/actions";
|
|
27
|
+
import { migrateFilterParam } from "./stores/treeFilters/utils";
|
|
24
28
|
import * as styles from "./styles.scss";
|
|
25
29
|
|
|
26
30
|
const Loader = () => {
|
|
@@ -32,10 +36,12 @@ const Loader = () => {
|
|
|
32
36
|
);
|
|
33
37
|
};
|
|
34
38
|
|
|
39
|
+
const isTestResultRoute = computed(() => testResultRoute.value.matches);
|
|
40
|
+
|
|
35
41
|
const App = () => {
|
|
36
|
-
const className = styles[`layout-${currentSection.value !== "" ? currentSection.value : layoutStore.value}`];
|
|
42
|
+
const className = styles[`layout-${currentSection.value !== "default" ? currentSection.value : layoutStore.value}`];
|
|
37
43
|
const [prefetched, setPrefetched] = useState(false);
|
|
38
|
-
|
|
44
|
+
|
|
39
45
|
const prefetchData = async () => {
|
|
40
46
|
const fns = [
|
|
41
47
|
ensureReportDataReady,
|
|
@@ -48,12 +54,7 @@ const App = () => {
|
|
|
48
54
|
];
|
|
49
55
|
|
|
50
56
|
if (globalThis) {
|
|
51
|
-
fns.unshift(
|
|
52
|
-
getSection as () => Promise<void>,
|
|
53
|
-
getLocale,
|
|
54
|
-
getLayout as () => Promise<void>,
|
|
55
|
-
getTheme as () => Promise<void>,
|
|
56
|
-
);
|
|
57
|
+
fns.unshift(getLocale);
|
|
57
58
|
}
|
|
58
59
|
|
|
59
60
|
await waitForI18next;
|
|
@@ -74,22 +75,16 @@ const App = () => {
|
|
|
74
75
|
prefetchData();
|
|
75
76
|
}, [currentEnvironment.value]);
|
|
76
77
|
|
|
77
|
-
|
|
78
|
-
|
|
78
|
+
useSignalEffect(() => {
|
|
79
|
+
const testResultId = currentTrId.value;
|
|
80
|
+
if (isTestResultRoute.value && testResultId) {
|
|
79
81
|
fetchTestResult(testResultId);
|
|
80
82
|
fetchTestResultNav(currentEnvironment.value);
|
|
81
83
|
}
|
|
82
|
-
}
|
|
84
|
+
});
|
|
83
85
|
|
|
84
86
|
useEffect(() => {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
handleHashChange();
|
|
88
|
-
globalThis.addEventListener("hashchange", onHashChange);
|
|
89
|
-
|
|
90
|
-
return () => {
|
|
91
|
-
globalThis.removeEventListener("hashchange", onHashChange);
|
|
92
|
-
};
|
|
87
|
+
fetchTreeFiltersData();
|
|
93
88
|
}, []);
|
|
94
89
|
|
|
95
90
|
return (
|
|
@@ -107,10 +102,6 @@ const App = () => {
|
|
|
107
102
|
);
|
|
108
103
|
};
|
|
109
104
|
|
|
110
|
-
export const openInNewTab = (path: string) => {
|
|
111
|
-
window.open(`#${path}`, "_blank");
|
|
112
|
-
};
|
|
113
|
-
|
|
114
105
|
const rootElement = document.getElementById("app");
|
|
115
106
|
|
|
116
107
|
document.addEventListener("DOMContentLoaded", () => {
|
|
@@ -119,4 +110,6 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
119
110
|
}
|
|
120
111
|
});
|
|
121
112
|
|
|
113
|
+
migrateFilterParam();
|
|
114
|
+
|
|
122
115
|
render(<App />, rootElement);
|
package/src/locales/az.json
CHANGED
|
@@ -28,22 +28,28 @@
|
|
|
28
28
|
"search-placeholder": "Ad və ya ID"
|
|
29
29
|
},
|
|
30
30
|
"filters": {
|
|
31
|
-
"more-filters": "Daha çox filtr",
|
|
32
|
-
"enable-filter": "\"{{filter}}\" filtrlərini aktiv edin",
|
|
33
31
|
"flaky": "Etibarsız",
|
|
34
32
|
"retry": "Təkrar",
|
|
35
33
|
"new": "Yeni",
|
|
36
34
|
"fixed": "Düzəldilmiş",
|
|
37
35
|
"regressed": "Reqressiya",
|
|
38
|
-
"malfunctioned": "Sınıq"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
36
|
+
"malfunctioned": "Sınıq",
|
|
37
|
+
"transition": "Keçid",
|
|
38
|
+
"tags": "Teqlər",
|
|
39
|
+
"goto_filter": "Filtre keç",
|
|
40
|
+
"errors": {
|
|
41
|
+
"max_values_one": "Filtrasiya üçün yalnız ilk {{count}} dəyər istifadə olunur.\nƏlavə dəyərlər nəzərə alınmır",
|
|
42
|
+
"max_values_other": "Filtrasiya üçün yalnız ilk {{count}} dəyərlər istifadə olunur.\nƏlavə dəyərlər nəzərə alınmır"
|
|
43
|
+
},
|
|
44
|
+
"description": {
|
|
45
|
+
"flaky": "Qeyri-sabit testləri göstərir",
|
|
46
|
+
"retry": "Yenidən işə salınan test nəticələrini göstərir",
|
|
47
|
+
"new": "Bu hesabatda ilk dəfə görünən test nəticələrini göstərir",
|
|
48
|
+
"fixed": "İndi uğurlu olan, əvvəl \"uğursuz\" və ya \"sınıq\" olan testləri göstərir",
|
|
49
|
+
"regressed": "Statusu \"uğursuz\" olan, əvvəl \"uğurlu\" və ya \"sınıq\" olan test nəticələrini göstərir",
|
|
50
|
+
"malfunctioned": "Statusu \"sınıq\" olan, əvvəl \"uğurlu\" və ya \"uğursuz\" olan test nəticələrini göstərir",
|
|
51
|
+
"tags": "Müəyyən edilmiş teqləri olan test nəticələrini göstərir"
|
|
52
|
+
}
|
|
47
53
|
},
|
|
48
54
|
"sort-by": {
|
|
49
55
|
"sort-by-text": "Sıralamaq üzrə:",
|
|
@@ -122,6 +128,7 @@
|
|
|
122
128
|
"showLess": "Daha az göstər",
|
|
123
129
|
"showMore": "Daha çox göstər",
|
|
124
130
|
"copy": "Kopyala",
|
|
131
|
+
"copy-email": "E-poçtu kopyala",
|
|
125
132
|
"attempt": "Cəhd {{attempt}} / {{total}}",
|
|
126
133
|
"at": "üçün",
|
|
127
134
|
"variables": "Dəyişənlər",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"history": "{{timestamp, timestamp_date}}"
|
|
301
308
|
}
|
|
302
309
|
},
|
|
303
|
-
"
|
|
304
|
-
"title": "
|
|
310
|
+
"statusAgePyramid": {
|
|
311
|
+
"title": "Statusa görə yaş piramidası",
|
|
305
312
|
"status": {
|
|
306
313
|
"passed": "$t(statuses:passed, capitalize)",
|
|
307
314
|
"failed": "$t(statuses:failed, capitalize)",
|
|
@@ -374,5 +381,27 @@
|
|
|
374
381
|
"fixed": "Düzəldilmiş",
|
|
375
382
|
"regressed": "Reqressiya",
|
|
376
383
|
"malfunctioned": "Sınıq"
|
|
384
|
+
},
|
|
385
|
+
"trHistory": {
|
|
386
|
+
"unknown-date": "Naməlum tarix"
|
|
387
|
+
},
|
|
388
|
+
"attachments": {
|
|
389
|
+
"imageDiff": {
|
|
390
|
+
"mode": {
|
|
391
|
+
"diff": "Fərq",
|
|
392
|
+
"actual": "Faktiki",
|
|
393
|
+
"expected": "Gözlənilən",
|
|
394
|
+
"side-by-side": "Yan-yana",
|
|
395
|
+
"overlay": "Üst-üstə"
|
|
396
|
+
},
|
|
397
|
+
"empty": {
|
|
398
|
+
"failed-to-load": "Şəkil müqayisəsi yüklənə bilmədi"
|
|
399
|
+
},
|
|
400
|
+
"image": {
|
|
401
|
+
"diff": "Fərq",
|
|
402
|
+
"actual": "Faktiki",
|
|
403
|
+
"expected": "Gözlənilən"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
407
|
}
|
package/src/locales/de.json
CHANGED
|
@@ -28,22 +28,28 @@
|
|
|
28
28
|
"search-placeholder": "Name oder ID"
|
|
29
29
|
},
|
|
30
30
|
"filters": {
|
|
31
|
-
"more-filters": "Filter",
|
|
32
|
-
"enable-filter": "Filter nach \"{{filter}}\" aktivieren",
|
|
33
31
|
"flaky": "Instabil",
|
|
34
32
|
"retry": "Wiederholt",
|
|
35
33
|
"new": "Neu",
|
|
36
34
|
"fixed": "Behoben",
|
|
37
35
|
"regressed": "Regressiert",
|
|
38
|
-
"malfunctioned": "Defekt"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
36
|
+
"malfunctioned": "Defekt",
|
|
37
|
+
"transition": "Übergang",
|
|
38
|
+
"tags": "Tags",
|
|
39
|
+
"goto_filter": "Zum Filter gehen",
|
|
40
|
+
"errors": {
|
|
41
|
+
"max_values_one": "Nur der erste {{count}} Wert wird für die Filterung verwendet.\nZusätzliche Werte werden ignoriert",
|
|
42
|
+
"max_values_other": "Nur die ersten {{count}} Werte werden für die Filterung verwendet.\nZusätzliche Werte werden ignoriert"
|
|
43
|
+
},
|
|
44
|
+
"description": {
|
|
45
|
+
"flaky": "Instabile Tests anzeigen",
|
|
46
|
+
"retry": "Testergebnisse anzeigen, die wiederholt wurden",
|
|
47
|
+
"new": "Testergebnisse anzeigen, die zum ersten Mal in diesem Bericht erscheinen",
|
|
48
|
+
"fixed": "Tests anzeigen, die jetzt erfolgreich sind, aber zuvor \"fehlgeschlagen\" oder \"defekt\" waren",
|
|
49
|
+
"regressed": "Testergebnisse anzeigen, die den Status von \"erfolgreich\" oder \"defekt\" zu \"fehlgeschlagen\" geändert haben",
|
|
50
|
+
"malfunctioned": "Testergebnisse anzeigen, die den Status von \"erfolgreich\" oder \"fehlgeschlagen\" zu \"defekt\" geändert haben",
|
|
51
|
+
"tags": "Testergebnisse anzeigen, die die angegebenen Tags haben"
|
|
52
|
+
}
|
|
47
53
|
},
|
|
48
54
|
"sort-by": {
|
|
49
55
|
"sort-by-text": "Sortieren nach:",
|
|
@@ -122,6 +128,7 @@
|
|
|
122
128
|
"showLess": "Weniger anzeigen",
|
|
123
129
|
"showMore": "Mehr anzeigen",
|
|
124
130
|
"copy": "Kopieren",
|
|
131
|
+
"copy-email": "E-Mail kopieren",
|
|
125
132
|
"attempt": "Versuch {{attempt}} von {{total}}",
|
|
126
133
|
"at": "bei",
|
|
127
134
|
"variables": "Variablen",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"history": "{{timestamp, timestamp_date}}"
|
|
301
308
|
}
|
|
302
309
|
},
|
|
303
|
-
"
|
|
304
|
-
"title": "
|
|
310
|
+
"statusAgePyramid": {
|
|
311
|
+
"title": "Alterspyramide nach Status",
|
|
305
312
|
"status": {
|
|
306
313
|
"passed": "$t(statuses:passed, capitalize)",
|
|
307
314
|
"failed": "$t(statuses:failed, capitalize)",
|
|
@@ -374,5 +381,27 @@
|
|
|
374
381
|
"fixed": "Behoben",
|
|
375
382
|
"regressed": "Regressiert",
|
|
376
383
|
"malfunctioned": "Defekt"
|
|
384
|
+
},
|
|
385
|
+
"trHistory": {
|
|
386
|
+
"unknown-date": "Unbekanntes Datum"
|
|
387
|
+
},
|
|
388
|
+
"attachments": {
|
|
389
|
+
"imageDiff": {
|
|
390
|
+
"mode": {
|
|
391
|
+
"diff": "Diff",
|
|
392
|
+
"actual": "Tatsächlich",
|
|
393
|
+
"expected": "Erwartet",
|
|
394
|
+
"side-by-side": "Nebeneinander",
|
|
395
|
+
"overlay": "Überlagerung"
|
|
396
|
+
},
|
|
397
|
+
"empty": {
|
|
398
|
+
"failed-to-load": "Bildvergleich konnte nicht geladen werden"
|
|
399
|
+
},
|
|
400
|
+
"image": {
|
|
401
|
+
"diff": "Diff",
|
|
402
|
+
"actual": "Tatsächlich",
|
|
403
|
+
"expected": "Erwartet"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
407
|
}
|
package/src/locales/en.json
CHANGED
|
@@ -28,22 +28,28 @@
|
|
|
28
28
|
"search-placeholder": "Name or ID"
|
|
29
29
|
},
|
|
30
30
|
"filters": {
|
|
31
|
-
"more-filters": "More filters",
|
|
32
|
-
"enable-filter": "Enable \"{{filter}}\" filter",
|
|
33
31
|
"flaky": "Flaky",
|
|
34
32
|
"retry": "Retry",
|
|
35
33
|
"new": "New",
|
|
36
34
|
"fixed": "Fixed",
|
|
37
35
|
"regressed": "Regressed",
|
|
38
|
-
"malfunctioned": "Malfunctioned"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
36
|
+
"malfunctioned": "Malfunctioned",
|
|
37
|
+
"transition": "Transition",
|
|
38
|
+
"tags": "Tags",
|
|
39
|
+
"goto_filter": "Go to filter",
|
|
40
|
+
"errors": {
|
|
41
|
+
"max_values_one": "Only the first {{count}} value is used for filtering.\nAdditional values are ignored",
|
|
42
|
+
"max_values_other": "Only the first {{count}} values are used for filtering.\nAdditional values are ignored"
|
|
43
|
+
},
|
|
44
|
+
"description": {
|
|
45
|
+
"flaky": "Show unstable tests",
|
|
46
|
+
"retry": "Show test results that were rerun",
|
|
47
|
+
"new": "Show test results that appear for the first time in this report",
|
|
48
|
+
"fixed": "Show tests that are passed now but had been \"failed\" or \"broken\" in a previous report",
|
|
49
|
+
"regressed": "Show test results that changed to \"failed\" status from \"passed\" or \"broken\" status",
|
|
50
|
+
"malfunctioned": "Show test results that changed to \"broken\" status from \"passed\" or \"failed\" status",
|
|
51
|
+
"tags": "Show test results that have the specified tags"
|
|
52
|
+
}
|
|
47
53
|
},
|
|
48
54
|
"sort-by": {
|
|
49
55
|
"sort-by-text": "Sort by:",
|
|
@@ -122,6 +128,7 @@
|
|
|
122
128
|
"showLess": "Show less",
|
|
123
129
|
"showMore": "Show more",
|
|
124
130
|
"copy": "Copy",
|
|
131
|
+
"copy-email": "Copy email",
|
|
125
132
|
"attempt": "Attempt {{attempt}} of {{total}}",
|
|
126
133
|
"at": "at",
|
|
127
134
|
"variables": "Variables",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"history": "{{timestamp, timestamp_date}}"
|
|
301
308
|
}
|
|
302
309
|
},
|
|
303
|
-
"
|
|
304
|
-
"title": "
|
|
310
|
+
"statusAgePyramid": {
|
|
311
|
+
"title": "Status age pyramid",
|
|
305
312
|
"status": {
|
|
306
313
|
"passed": "$t(statuses:passed, capitalize)",
|
|
307
314
|
"failed": "$t(statuses:failed, capitalize)",
|
|
@@ -374,5 +381,27 @@
|
|
|
374
381
|
"fixed": "fixed",
|
|
375
382
|
"regressed": "regressed",
|
|
376
383
|
"malfunctioned": "malfunctioned"
|
|
384
|
+
},
|
|
385
|
+
"trHistory": {
|
|
386
|
+
"unknown-date": "Unknown date"
|
|
387
|
+
},
|
|
388
|
+
"attachments": {
|
|
389
|
+
"imageDiff": {
|
|
390
|
+
"mode": {
|
|
391
|
+
"diff": "Diff",
|
|
392
|
+
"actual": "Actual",
|
|
393
|
+
"expected": "Expected",
|
|
394
|
+
"side-by-side": "Side by side",
|
|
395
|
+
"overlay": "Overlay"
|
|
396
|
+
},
|
|
397
|
+
"empty": {
|
|
398
|
+
"failed-to-load": "Failed to load image diff"
|
|
399
|
+
},
|
|
400
|
+
"image": {
|
|
401
|
+
"diff": "Diff",
|
|
402
|
+
"actual": "Actual",
|
|
403
|
+
"expected": "Expected"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
407
|
}
|
package/src/locales/es.json
CHANGED
|
@@ -28,22 +28,28 @@
|
|
|
28
28
|
"search-placeholder": "Nombre o ID"
|
|
29
29
|
},
|
|
30
30
|
"filters": {
|
|
31
|
-
"more-filters": "Más filtros",
|
|
32
|
-
"enable-filter": "Habilitar filtro para \"{{filter}}\"",
|
|
33
31
|
"flaky": "Inestable",
|
|
34
32
|
"retry": "Reintento",
|
|
35
33
|
"new": "Nuevo",
|
|
36
34
|
"fixed": "Corregido",
|
|
37
35
|
"regressed": "Regresado",
|
|
38
|
-
"malfunctioned": "Defectuoso"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
36
|
+
"malfunctioned": "Defectuoso",
|
|
37
|
+
"transition": "Transición",
|
|
38
|
+
"tags": "Etiquetas",
|
|
39
|
+
"goto_filter": "Ir al filtro",
|
|
40
|
+
"errors": {
|
|
41
|
+
"max_values_one": "Solo se usa el primer {{count}} valor para el filtrado.\nLos valores adicionales se ignoran",
|
|
42
|
+
"max_values_other": "Solo se usan los primeros {{count}} valores para el filtrado.\nLos valores adicionales se ignoran"
|
|
43
|
+
},
|
|
44
|
+
"description": {
|
|
45
|
+
"flaky": "Mostrar pruebas inestables",
|
|
46
|
+
"retry": "Mostrar resultados de pruebas que se volvieron a ejecutar",
|
|
47
|
+
"new": "Mostrar resultados de pruebas que aparecen por primera vez en este informe",
|
|
48
|
+
"fixed": "Mostrar pruebas que ahora están aprobadas pero anteriormente fueron \"fallidas\" o \"rotas\"",
|
|
49
|
+
"regressed": "Mostrar resultados de pruebas que cambiaron de estado \"aprobado\" o \"roto\" a \"fallido\"",
|
|
50
|
+
"malfunctioned": "Mostrar resultados de pruebas que cambiaron de estado \"aprobado\" o \"fallido\" a \"roto\"",
|
|
51
|
+
"tags": "Mostrar resultados de pruebas que tienen las etiquetas especificadas"
|
|
52
|
+
}
|
|
47
53
|
},
|
|
48
54
|
"sort-by": {
|
|
49
55
|
"sort-by-text": "Ordenar por:",
|
|
@@ -122,6 +128,7 @@
|
|
|
122
128
|
"showLess": "Mostrar menos",
|
|
123
129
|
"showMore": "Mostrar más",
|
|
124
130
|
"copy": "Copiar",
|
|
131
|
+
"copy-email": "Copiar correo",
|
|
125
132
|
"attempt": "Intento {{attempt}} de {{total}}",
|
|
126
133
|
"at": "a las",
|
|
127
134
|
"variables": "Variables",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"history": "{{timestamp, timestamp_date}}"
|
|
301
308
|
}
|
|
302
309
|
},
|
|
303
|
-
"
|
|
304
|
-
"title": "Pirámide de edad
|
|
310
|
+
"statusAgePyramid": {
|
|
311
|
+
"title": "Pirámide de edad por estado",
|
|
305
312
|
"status": {
|
|
306
313
|
"passed": "$t(statuses:passed, capitalize)",
|
|
307
314
|
"failed": "$t(statuses:failed, capitalize)",
|
|
@@ -374,5 +381,27 @@
|
|
|
374
381
|
"fixed": "Corregido",
|
|
375
382
|
"regressed": "Regresado",
|
|
376
383
|
"malfunctioned": "Defectuoso"
|
|
384
|
+
},
|
|
385
|
+
"trHistory": {
|
|
386
|
+
"unknown-date": "Fecha desconocida"
|
|
387
|
+
},
|
|
388
|
+
"attachments": {
|
|
389
|
+
"imageDiff": {
|
|
390
|
+
"mode": {
|
|
391
|
+
"diff": "Diff",
|
|
392
|
+
"actual": "Real",
|
|
393
|
+
"expected": "Esperado",
|
|
394
|
+
"side-by-side": "Lado a lado",
|
|
395
|
+
"overlay": "Superposición"
|
|
396
|
+
},
|
|
397
|
+
"empty": {
|
|
398
|
+
"failed-to-load": "Error al cargar la comparación de imágenes"
|
|
399
|
+
},
|
|
400
|
+
"image": {
|
|
401
|
+
"diff": "Diff",
|
|
402
|
+
"actual": "Real",
|
|
403
|
+
"expected": "Esperado"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
407
|
}
|
package/src/locales/fr.json
CHANGED
|
@@ -28,22 +28,28 @@
|
|
|
28
28
|
"search-placeholder": "Nom ou ID"
|
|
29
29
|
},
|
|
30
30
|
"filters": {
|
|
31
|
-
"more-filters": "Plus de filtres",
|
|
32
|
-
"enable-filter": "Activer le filtre \"{{filter}}\"",
|
|
33
31
|
"flaky": "Instables",
|
|
34
32
|
"retry": "Réessais",
|
|
35
33
|
"new": "Nouveaux",
|
|
36
34
|
"fixed": "Corrigés",
|
|
37
35
|
"regressed": "Régression",
|
|
38
|
-
"malfunctioned": "Défectueux"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
36
|
+
"malfunctioned": "Défectueux",
|
|
37
|
+
"transition": "Transition",
|
|
38
|
+
"tags": "Tags",
|
|
39
|
+
"goto_filter": "Aller au filtre",
|
|
40
|
+
"errors": {
|
|
41
|
+
"max_values_one": "Seule la première {{count}} valeur est utilisée pour le filtrage.\nLes valeurs supplémentaires sont ignorées",
|
|
42
|
+
"max_values_other": "Seules les premières {{count}} valeurs sont utilisées pour le filtrage.\nLes valeurs supplémentaires sont ignorées"
|
|
43
|
+
},
|
|
44
|
+
"description": {
|
|
45
|
+
"flaky": "Afficher les tests instables",
|
|
46
|
+
"retry": "Afficher les résultats des tests qui ont été réexécutés",
|
|
47
|
+
"new": "Afficher les résultats des tests qui apparaissent pour la première fois dans ce rapport",
|
|
48
|
+
"fixed": "Afficher les tests qui sont maintenant réussis mais qui étaient précédemment \"échoués\" ou \"cassés\"",
|
|
49
|
+
"regressed": "Afficher les résultats des tests qui sont passés du statut \"réussi\" ou \"cassé\" à \"échoué\"",
|
|
50
|
+
"malfunctioned": "Afficher les résultats des tests qui sont passés du statut \"réussi\" ou \"échoué\" à \"cassé\"",
|
|
51
|
+
"tags": "Afficher les résultats des tests qui ont les tags spécifiés"
|
|
52
|
+
}
|
|
47
53
|
},
|
|
48
54
|
"sort-by": {
|
|
49
55
|
"sort-by-text": "Trier par :",
|
|
@@ -122,6 +128,7 @@
|
|
|
122
128
|
"showLess": "Montrer moins",
|
|
123
129
|
"showMore": "Montrer plus",
|
|
124
130
|
"copy": "Copier",
|
|
131
|
+
"copy-email": "Copier l'e-mail",
|
|
125
132
|
"attempt": "Tentative {{attempt}} sur {{total}}",
|
|
126
133
|
"at": "à",
|
|
127
134
|
"variables": "Variables",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"history": "{{timestamp, timestamp_date}}"
|
|
301
308
|
}
|
|
302
309
|
},
|
|
303
|
-
"
|
|
304
|
-
"title": "Pyramide des âges
|
|
310
|
+
"statusAgePyramid": {
|
|
311
|
+
"title": "Pyramide des âges par statut",
|
|
305
312
|
"status": {
|
|
306
313
|
"passed": "$t(statuses:passed, capitalize)",
|
|
307
314
|
"failed": "$t(statuses:failed, capitalize)",
|
|
@@ -374,5 +381,27 @@
|
|
|
374
381
|
"fixed": "Corrigés",
|
|
375
382
|
"regressed": "Régression",
|
|
376
383
|
"malfunctioned": "Défectueux"
|
|
384
|
+
},
|
|
385
|
+
"trHistory": {
|
|
386
|
+
"unknown-date": "Date inconnue"
|
|
387
|
+
},
|
|
388
|
+
"attachments": {
|
|
389
|
+
"imageDiff": {
|
|
390
|
+
"mode": {
|
|
391
|
+
"diff": "Diff",
|
|
392
|
+
"actual": "Réel",
|
|
393
|
+
"expected": "Attendu",
|
|
394
|
+
"side-by-side": "Côte à côte",
|
|
395
|
+
"overlay": "Superposition"
|
|
396
|
+
},
|
|
397
|
+
"empty": {
|
|
398
|
+
"failed-to-load": "Échec du chargement de la comparaison d'images"
|
|
399
|
+
},
|
|
400
|
+
"image": {
|
|
401
|
+
"diff": "Diff",
|
|
402
|
+
"actual": "Réel",
|
|
403
|
+
"expected": "Attendu"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
407
|
}
|
package/src/locales/he.json
CHANGED
|
@@ -28,22 +28,28 @@
|
|
|
28
28
|
"search-placeholder": "שם או מזהה"
|
|
29
29
|
},
|
|
30
30
|
"filters": {
|
|
31
|
-
"more-filters": "עוד מסננים",
|
|
32
|
-
"enable-filter": "אפשר מסנן \"{{filter}}\"",
|
|
33
31
|
"flaky": "לא יציב",
|
|
34
32
|
"retry": "חוזר",
|
|
35
33
|
"new": "חדש",
|
|
36
34
|
"fixed": "מתוקן",
|
|
37
35
|
"regressed": "נסוג",
|
|
38
|
-
"malfunctioned": "פגום"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
36
|
+
"malfunctioned": "פגום",
|
|
37
|
+
"transition": "מעבר",
|
|
38
|
+
"tags": "תגיות",
|
|
39
|
+
"goto_filter": "עבור למסנן",
|
|
40
|
+
"errors": {
|
|
41
|
+
"max_values_one": "רק הערך הראשון {{count}} משמש לסינון.\nערכים נוספים מתעלמים",
|
|
42
|
+
"max_values_other": "רק {{count}} הערכים הראשונים משמשים לסינון.\nערכים נוספים מתעלמים"
|
|
43
|
+
},
|
|
44
|
+
"description": {
|
|
45
|
+
"flaky": "הצג בדיקות לא יציבות",
|
|
46
|
+
"retry": "הצג תוצאות בדיקות שחזרו על עצמן",
|
|
47
|
+
"new": "הצג תוצאות בדיקות שמופיעות לראשונה בדוח זה",
|
|
48
|
+
"fixed": "הצג בדיקות שעוברות עכשיו אבל היו קודם \"נכשלות\" או \"שבורות\"",
|
|
49
|
+
"regressed": "הצג תוצאות בדיקות ששינו סטטוס מ-\"עבר\" או \"שבור\" ל-\"נכשל\"",
|
|
50
|
+
"malfunctioned": "הצג תוצאות בדיקות ששינו סטטוס מ-\"עבר\" או \"נכשל\" ל-\"שבור\"",
|
|
51
|
+
"tags": "הצג תוצאות בדיקות שיש להן את התגים שצוינו"
|
|
52
|
+
}
|
|
47
53
|
},
|
|
48
54
|
"sort-by": {
|
|
49
55
|
"sort-by-text": "מיין לפי:",
|
|
@@ -122,6 +128,7 @@
|
|
|
122
128
|
"showLess": "הצג פחות",
|
|
123
129
|
"showMore": "הצג עוד",
|
|
124
130
|
"copy": "העתק",
|
|
131
|
+
"copy-email": "העתק אימייל",
|
|
125
132
|
"attempt": "ניסיון {{attempt}} מתוך {{total}}",
|
|
126
133
|
"at": "ב-",
|
|
127
134
|
"variables": "משתנים",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"history": "{{timestamp, timestamp_date}}"
|
|
301
308
|
}
|
|
302
309
|
},
|
|
303
|
-
"
|
|
304
|
-
"title": "פירמידת גילאים
|
|
310
|
+
"statusAgePyramid": {
|
|
311
|
+
"title": "פירמידת גילאים לפי סטטוס",
|
|
305
312
|
"status": {
|
|
306
313
|
"passed": "$t(statuses:passed, capitalize)",
|
|
307
314
|
"failed": "$t(statuses:failed, capitalize)",
|
|
@@ -374,5 +381,27 @@
|
|
|
374
381
|
"fixed": "מתוקן",
|
|
375
382
|
"regressed": "נסוג",
|
|
376
383
|
"malfunctioned": "פגום"
|
|
384
|
+
},
|
|
385
|
+
"trHistory": {
|
|
386
|
+
"unknown-date": "תאריך לא ידוע"
|
|
387
|
+
},
|
|
388
|
+
"attachments": {
|
|
389
|
+
"imageDiff": {
|
|
390
|
+
"mode": {
|
|
391
|
+
"diff": "הבדל",
|
|
392
|
+
"actual": "ממשי",
|
|
393
|
+
"expected": "צפוי",
|
|
394
|
+
"side-by-side": "צד אל צד",
|
|
395
|
+
"overlay": "שכבה"
|
|
396
|
+
},
|
|
397
|
+
"empty": {
|
|
398
|
+
"failed-to-load": "טעינת השוואת תמונות נכשלה"
|
|
399
|
+
},
|
|
400
|
+
"image": {
|
|
401
|
+
"diff": "הבדל",
|
|
402
|
+
"actual": "ממשי",
|
|
403
|
+
"expected": "צפוי"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
377
406
|
}
|
|
378
407
|
}
|