@allurereport/web-awesome 3.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc.js +46 -0
- package/.eslintrc.cjs +15 -0
- package/README.md +27 -0
- package/dist/multi/141.app-b6362ca0.js +1 -0
- package/dist/multi/222.app-b6362ca0.js +1 -0
- package/dist/multi/335.app-b6362ca0.js +1 -0
- package/dist/multi/34.app-b6362ca0.js +1 -0
- package/dist/multi/349.app-b6362ca0.js +1 -0
- package/dist/multi/378.app-b6362ca0.js +1 -0
- package/dist/multi/406.app-b6362ca0.js +1 -0
- package/dist/multi/476.app-b6362ca0.js +1 -0
- package/dist/multi/53.app-b6362ca0.js +1 -0
- package/dist/multi/584.app-b6362ca0.js +1 -0
- package/dist/multi/690.app-b6362ca0.js +1 -0
- package/dist/multi/747.app-b6362ca0.js +1 -0
- package/dist/multi/767.app-b6362ca0.js +1 -0
- package/dist/multi/816.app-b6362ca0.js +1 -0
- package/dist/multi/83.app-b6362ca0.js +1 -0
- package/dist/multi/873.app-b6362ca0.js +1 -0
- package/dist/multi/920.app-b6362ca0.js +1 -0
- package/dist/multi/991.app-b6362ca0.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-b6362ca0.js +2 -0
- package/dist/multi/app-b6362ca0.js.LICENSE.txt +16 -0
- package/dist/multi/manifest.json +26 -0
- package/dist/multi/pt-root-ui_vf-22fe60ca..woff +0 -0
- package/dist/multi/pt-root-ui_vf-9d251e8b..woff2 +0 -0
- package/dist/multi/styles-b6362ca0.css +363 -0
- package/dist/single/app-57ae0a60.js +2 -0
- package/dist/single/app-57ae0a60.js.LICENSE.txt +16 -0
- package/dist/single/manifest.json +3 -0
- package/package.json +93 -0
- package/postcss.config.js +5 -0
- package/src/assets/fonts/JetBrainsMono_vf.woff +0 -0
- package/src/assets/fonts/JetBrainsMono_vf.woff2 +0 -0
- package/src/assets/fonts/pt-root-ui_vf.woff +0 -0
- package/src/assets/fonts/pt-root-ui_vf.woff2 +0 -0
- package/src/assets/scss/_common.scss +134 -0
- package/src/assets/scss/code.css +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +21 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/mixins.scss +26 -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/assets/svg/arrows-chevron-down.svg +5 -0
- package/src/assets/svg/github.svg +5 -0
- package/src/assets/svg/line-alerts-notification-box.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-down-double.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-down.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-right.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-up-double.svg +3 -0
- package/src/assets/svg/line-arrows-chevron-up.svg +3 -0
- package/src/assets/svg/line-arrows-corner-down-right.svg +3 -0
- package/src/assets/svg/line-arrows-expand-3.svg +3 -0
- package/src/assets/svg/line-arrows-refresh-ccw-1.svg +3 -0
- package/src/assets/svg/line-arrows-sort-line-asc.svg +3 -0
- package/src/assets/svg/line-arrows-sort-line-desc.svg +3 -0
- package/src/assets/svg/line-arrows-switch-vertical-1.svg +3 -0
- package/src/assets/svg/line-dev-bug-2.svg +3 -0
- package/src/assets/svg/line-dev-code-square.svg +3 -0
- package/src/assets/svg/line-files-file-attachment-2.svg +3 -0
- package/src/assets/svg/line-general-check.svg +3 -0
- package/src/assets/svg/line-general-checklist3.svg +3 -0
- package/src/assets/svg/line-general-copy-3.svg +3 -0
- package/src/assets/svg/line-general-download-cloud.svg +3 -0
- package/src/assets/svg/line-general-equal.svg +3 -0
- package/src/assets/svg/line-general-home-line.svg +3 -0
- package/src/assets/svg/line-general-link-1.svg +3 -0
- package/src/assets/svg/line-general-link-external.svg +3 -0
- package/src/assets/svg/line-general-search-md.svg +3 -0
- package/src/assets/svg/line-general-settings-1.svg +3 -0
- package/src/assets/svg/line-general-x-close.svg +3 -0
- package/src/assets/svg/line-general-zap.svg +3 -0
- package/src/assets/svg/line-helpers-flag.svg +4 -0
- package/src/assets/svg/line-helpers-play-circle.svg +4 -0
- package/src/assets/svg/line-images-image.svg +3 -0
- package/src/assets/svg/line-security-key.svg +3 -0
- package/src/assets/svg/line-shapes-dot-circle.svg +3 -0
- package/src/assets/svg/line-shapes-moon.svg +3 -0
- package/src/assets/svg/line-shapes-sun.svg +3 -0
- package/src/assets/svg/line-time-clock-stopwatch.svg +3 -0
- package/src/assets/svg/report-logo.svg +64 -0
- package/src/assets/svg/solid-alert-circle.svg +3 -0
- package/src/assets/svg/solid-check-circle.svg +3 -0
- package/src/assets/svg/solid-help-circle.svg +3 -0
- package/src/assets/svg/solid-minus-circle.svg +3 -0
- package/src/assets/svg/solid-x-circle.svg +3 -0
- package/src/assets/svg/spinner.svg +18 -0
- package/src/assets/svg/view-off.svg +12 -0
- package/src/assets/svg/view.svg +11 -0
- package/src/components/app/ArrowButton/index.tsx +36 -0
- package/src/components/app/ArrowButton/styles.scss +32 -0
- package/src/components/app/BaseLayout/index.tsx +60 -0
- package/src/components/app/BaseLayout/styles.scss +60 -0
- package/src/components/app/Footer/FooterLogo.tsx +16 -0
- package/src/components/app/Footer/FooterVersion.tsx +27 -0
- package/src/components/app/Footer/index.tsx +13 -0
- package/src/components/app/Footer/styles.scss +14 -0
- package/src/components/app/Header/index.tsx +17 -0
- package/src/components/app/Header/styles.scss +26 -0
- package/src/components/app/LanguagePicker/index.tsx +41 -0
- package/src/components/app/MainReport/index.tsx +19 -0
- package/src/components/app/Metadata/index.tsx +114 -0
- package/src/components/app/Metadata/styles.scss +146 -0
- package/src/components/app/MetadataButton/index.tsx +33 -0
- package/src/components/app/MetadataButton/styles.scss +53 -0
- package/src/components/app/Modal/index.tsx +184 -0
- package/src/components/app/Modal/styles.scss +126 -0
- package/src/components/app/ReportBody/Filters.tsx +94 -0
- package/src/components/app/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/app/ReportBody/SortBy.tsx +134 -0
- package/src/components/app/ReportBody/context.tsx +107 -0
- package/src/components/app/ReportBody/index.tsx +71 -0
- package/src/components/app/ReportBody/styles.scss +64 -0
- package/src/components/app/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/app/ReportHeader/ReportHeaderLogo.tsx +10 -0
- package/src/components/app/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/app/ReportHeader/index.tsx +33 -0
- package/src/components/app/ReportHeader/styles.scss +49 -0
- package/src/components/app/ReportLogo/index.tsx +17 -0
- package/src/components/app/ReportLogo/styles.scss +20 -0
- package/src/components/app/ReportLogoFull/index.tsx +21 -0
- package/src/components/app/ReportLogoFull/styles.scss +7 -0
- package/src/components/app/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/app/ReportMetadata/MetadataSummary.tsx +79 -0
- package/src/components/app/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/app/ReportMetadata/MetadataWithIcon.tsx +25 -0
- package/src/components/app/ReportMetadata/index.tsx +46 -0
- package/src/components/app/ReportMetadata/styles.scss +99 -0
- package/src/components/app/Tabs/index.tsx +58 -0
- package/src/components/app/Tabs/styles.scss +56 -0
- package/src/components/app/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/app/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/app/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/app/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/app/TestResult/TestResultDropdown/index.tsx +19 -0
- package/src/components/app/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/app/TestResult/TestResultEmpty/index.tsx +34 -0
- package/src/components/app/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/app/TestResult/TestResultError/index.tsx +51 -0
- package/src/components/app/TestResult/TestResultError/styles.scss +40 -0
- package/src/components/app/TestResult/TestResultHeader/index.tsx +55 -0
- package/src/components/app/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/app/TestResult/TestResultHistory/TestResultHistoryItem.tsx +57 -0
- package/src/components/app/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/app/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/app/TestResult/TestResultInfo/index.tsx +79 -0
- package/src/components/app/TestResult/TestResultInfo/styles.scss +33 -0
- package/src/components/app/TestResult/TestResultLinks/index.tsx +60 -0
- package/src/components/app/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/app/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/app/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/app/TestResult/TestResultNavigation/index.tsx +89 -0
- package/src/components/app/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/app/TestResult/TestResultOverview.tsx +40 -0
- package/src/components/app/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/app/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/app/TestResult/TestResultPrevStatuses/index.tsx +52 -0
- package/src/components/app/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/app/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +50 -0
- package/src/components/app/TestResult/TestResultRetriesView/index.tsx +24 -0
- package/src/components/app/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/app/TestResult/TestResultSetup/index.tsx +50 -0
- package/src/components/app/TestResult/TestResultSeverity/index.tsx +34 -0
- package/src/components/app/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/app/TestResult/TestResultStatus/index.tsx +26 -0
- package/src/components/app/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/app/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +12 -0
- package/src/components/app/TestResult/TestResultSteps/attachment.tsx +70 -0
- package/src/components/app/TestResult/TestResultSteps/attachmentCode.tsx +15 -0
- package/src/components/app/TestResult/TestResultSteps/attachmentImage.tsx +29 -0
- package/src/components/app/TestResult/TestResultSteps/attachmentVideo.tsx +12 -0
- package/src/components/app/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/app/TestResult/TestResultSteps/styles.scss +225 -0
- package/src/components/app/TestResult/TestResultSteps/testResultAttachment.tsx +79 -0
- package/src/components/app/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +87 -0
- package/src/components/app/TestResult/TestResultSteps/testResultStep.tsx +71 -0
- package/src/components/app/TestResult/TestResultSteps/testResultStepInfo.tsx +33 -0
- package/src/components/app/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/app/TestResult/TestResultTabs/index.tsx +59 -0
- package/src/components/app/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/app/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/app/TestResult/index.tsx +56 -0
- package/src/components/app/ThemeButton/ThemeButton.tsx +22 -0
- package/src/components/app/Tree/Tree.tsx +122 -0
- package/src/components/app/Tree/TreeHeader.tsx +81 -0
- package/src/components/app/Tree/TreeItem.tsx +31 -0
- package/src/components/app/Tree/TreeItemIcon.tsx +35 -0
- package/src/components/app/Tree/index.tsx +40 -0
- package/src/components/app/Tree/styles.scss +170 -0
- package/src/components/commons/Button/index.tsx +176 -0
- package/src/components/commons/Button/styles.scss +558 -0
- package/src/components/commons/Counter/index.tsx +29 -0
- package/src/components/commons/Counter/styles.scss +21 -0
- package/src/components/commons/Label/index.tsx +11 -0
- package/src/components/commons/Label/styles.scss +7 -0
- package/src/components/commons/Link/index.tsx +20 -0
- package/src/components/commons/Link/styles.scss +46 -0
- package/src/components/commons/Loadable/index.tsx +32 -0
- package/src/components/commons/Menu/index.tsx +173 -0
- package/src/components/commons/Menu/styles.scss +94 -0
- package/src/components/commons/PageLoader/index.tsx +10 -0
- package/src/components/commons/PageLoader/styles.scss +29 -0
- package/src/components/commons/SearchBox/index.tsx +61 -0
- package/src/components/commons/SearchBox/styles.scss +58 -0
- package/src/components/commons/Spinner/index.tsx +8 -0
- package/src/components/commons/SuccessRatePieChart/index.tsx +52 -0
- package/src/components/commons/SuccessRatePieChart/styles.scss +12 -0
- package/src/components/commons/SvgIcon/index.tsx +46 -0
- package/src/components/commons/SvgIcon/styles.scss +26 -0
- package/src/components/commons/Toggle/index.tsx +29 -0
- package/src/components/commons/Toggle/styles.scss +48 -0
- package/src/components/commons/Tooltip/index.tsx +123 -0
- package/src/components/commons/Tooltip/styles.scss +38 -0
- package/src/components/commons/Typography/index.tsx +99 -0
- package/src/hooks/useDebouncedCallback.ts +31 -0
- package/src/i18n/constants.ts +105 -0
- package/src/i18n/locales/am.json +115 -0
- package/src/i18n/locales/az.json +115 -0
- package/src/i18n/locales/de.json +115 -0
- package/src/i18n/locales/en.json +115 -0
- package/src/i18n/locales/es.json +114 -0
- package/src/i18n/locales/fr.json +115 -0
- package/src/i18n/locales/he.json +115 -0
- package/src/i18n/locales/it.json +115 -0
- package/src/i18n/locales/ja.json +115 -0
- package/src/i18n/locales/ka.json +115 -0
- package/src/i18n/locales/kr.json +115 -0
- package/src/i18n/locales/nl.json +115 -0
- package/src/i18n/locales/pl.json +113 -0
- package/src/i18n/locales/pt.json +115 -0
- package/src/i18n/locales/ru.json +113 -0
- package/src/i18n/locales/sv.json +115 -0
- package/src/i18n/locales/tr.json +115 -0
- package/src/i18n/locales/zh.json +115 -0
- package/src/index.html +35 -0
- package/src/index.tsx +48 -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 +79 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/testResults.ts +40 -0
- package/src/stores/theme.ts +33 -0
- package/src/stores/tree.ts +33 -0
- package/src/stores/types.ts +5 -0
- package/src/types/globals.d.ts +8 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -0
- package/src/utils/capitalize.ts +4 -0
- package/src/utils/copyToClipboard.ts +3 -0
- package/src/utils/isMac.ts +7 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +150 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +53 -0
- package/webpack.config.js +108 -0
|
@@ -0,0 +1,115 @@
|
|
|
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 gefunden",
|
|
64
|
+
"no-attachments-results": "Keine Anhängeinformationen verfügbar",
|
|
65
|
+
"no-history-results": "Keine Verlaufsinformationen verfügbar",
|
|
66
|
+
"no-retries-results": "Keine Wiederholungsinformationen verfügbar"
|
|
67
|
+
},
|
|
68
|
+
"severity": {
|
|
69
|
+
"blocker": "Blocker",
|
|
70
|
+
"critical": "kritisch",
|
|
71
|
+
"normal": "normal",
|
|
72
|
+
"minor": "geringfügig",
|
|
73
|
+
"trivial": "trivial"
|
|
74
|
+
},
|
|
75
|
+
"execution": {
|
|
76
|
+
"name": "Ausführung",
|
|
77
|
+
"body": "Testkörper",
|
|
78
|
+
"setup": "Vorbereitung",
|
|
79
|
+
"teardown": "Abbau"
|
|
80
|
+
},
|
|
81
|
+
"ui": {
|
|
82
|
+
"labels": "Labels",
|
|
83
|
+
"metadata": "Metadaten",
|
|
84
|
+
"parameters": "Parameter",
|
|
85
|
+
"description": "Beschreibung",
|
|
86
|
+
"links": "Links",
|
|
87
|
+
"overview": "Übersicht",
|
|
88
|
+
"history": "Verlauf",
|
|
89
|
+
"attachments": "Anhänge",
|
|
90
|
+
"retries": "Wiederholungen",
|
|
91
|
+
"error": "Fehler",
|
|
92
|
+
"goToStep": "Zum Schritt gehen",
|
|
93
|
+
"showLess": "Weniger anzeigen",
|
|
94
|
+
"showMore": "Mehr anzeigen",
|
|
95
|
+
"copy": "Kopieren",
|
|
96
|
+
"at": "bei"
|
|
97
|
+
},
|
|
98
|
+
"controls": {
|
|
99
|
+
"newTabAttachment": "Anhang in neuem Tab öffnen",
|
|
100
|
+
"nextTR": "Nächstes Testergebnis",
|
|
101
|
+
"prevTR": "Vorheriges Testergebnis",
|
|
102
|
+
"downloadAttachment": "Anhang herunterladen",
|
|
103
|
+
"backto": "Zurück zu",
|
|
104
|
+
"clipboard": "In die Zwischenablage kopieren",
|
|
105
|
+
"clipboardError": "Fehler. Diese Funktion wird von Ihrem Browser wahrscheinlich nicht unterstützt",
|
|
106
|
+
"clipboardSuccess": "Erfolgreich kopiert",
|
|
107
|
+
"collapse": "Einklappen",
|
|
108
|
+
"expand": "Ausklappen",
|
|
109
|
+
"fullscreen": "Vollbild",
|
|
110
|
+
"language": "Sprache ändern"
|
|
111
|
+
},
|
|
112
|
+
"errors": {
|
|
113
|
+
"missedAttachment": "Anhang nicht gefunden"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
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 found",
|
|
64
|
+
"no-attachments-results": "No attachments information available",
|
|
65
|
+
"no-history-results": "No history information available",
|
|
66
|
+
"no-retries-results": "No retries information available"
|
|
67
|
+
},
|
|
68
|
+
"severity": {
|
|
69
|
+
"blocker": "blocker",
|
|
70
|
+
"critical": "critical",
|
|
71
|
+
"normal": "normal",
|
|
72
|
+
"minor": "minor",
|
|
73
|
+
"trivial": "trivial"
|
|
74
|
+
},
|
|
75
|
+
"execution": {
|
|
76
|
+
"name": "Execution",
|
|
77
|
+
"body": "Test body",
|
|
78
|
+
"setup": "Set up",
|
|
79
|
+
"teardown": "Tear down"
|
|
80
|
+
},
|
|
81
|
+
"ui": {
|
|
82
|
+
"labels": "Labels",
|
|
83
|
+
"metadata": "Metadata",
|
|
84
|
+
"parameters": "Parameters",
|
|
85
|
+
"description": "Description",
|
|
86
|
+
"links": "Links",
|
|
87
|
+
"overview": "Overview",
|
|
88
|
+
"history": "History",
|
|
89
|
+
"attachments": "Attachments",
|
|
90
|
+
"retries": "Retries",
|
|
91
|
+
"error": "Error",
|
|
92
|
+
"goToStep": "Go to step",
|
|
93
|
+
"showLess": "Show less",
|
|
94
|
+
"showMore": "Show more",
|
|
95
|
+
"copy": "Copy",
|
|
96
|
+
"at": "at"
|
|
97
|
+
},
|
|
98
|
+
"controls": {
|
|
99
|
+
"newTabAttachment": "Open attachment in new tab",
|
|
100
|
+
"nextTR": "Next Test result",
|
|
101
|
+
"prevTR": "Previous Test result",
|
|
102
|
+
"downloadAttachment": "Download attachment",
|
|
103
|
+
"backto": "Back to",
|
|
104
|
+
"clipboard": "Copy to clipboard",
|
|
105
|
+
"clipboardError": "Can not copy value to clipboard. Seems like this feature is not supported for your browser",
|
|
106
|
+
"clipboardSuccess": "Successfully copied",
|
|
107
|
+
"collapse": "Collapse",
|
|
108
|
+
"expand": "Expand",
|
|
109
|
+
"fullscreen": "Full screen",
|
|
110
|
+
"language": "Change language"
|
|
111
|
+
},
|
|
112
|
+
"errors": {
|
|
113
|
+
"missedAttachment": "Attachment not found"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
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-attachments-results": "No hay información de adjuntos disponible",
|
|
64
|
+
"no-history-results": "No hay información de historial disponible",
|
|
65
|
+
"no-retries-results": "No hay información de reintentos disponible"
|
|
66
|
+
},
|
|
67
|
+
"severity": {
|
|
68
|
+
"blocker": "bloqueante",
|
|
69
|
+
"critical": "crítico",
|
|
70
|
+
"normal": "normal",
|
|
71
|
+
"minor": "menor",
|
|
72
|
+
"trivial": "trivial"
|
|
73
|
+
},
|
|
74
|
+
"execution": {
|
|
75
|
+
"name": "Ejecución",
|
|
76
|
+
"body": "Cuerpo de la prueba",
|
|
77
|
+
"setup": "Configuración",
|
|
78
|
+
"teardown": "Desmontaje"
|
|
79
|
+
},
|
|
80
|
+
"ui": {
|
|
81
|
+
"labels": "Etiquetas",
|
|
82
|
+
"metadata": "Metadatos",
|
|
83
|
+
"parameters": "Parámetros",
|
|
84
|
+
"description": "Descripción",
|
|
85
|
+
"links": "Enlaces",
|
|
86
|
+
"overview": "Resumen",
|
|
87
|
+
"history": "Historial",
|
|
88
|
+
"attachments": "Adjuntos",
|
|
89
|
+
"retries": "Reintentos",
|
|
90
|
+
"error": "Error",
|
|
91
|
+
"goToStep": "Ir al paso",
|
|
92
|
+
"showLess": "Mostrar menos",
|
|
93
|
+
"showMore": "Mostrar más",
|
|
94
|
+
"copy": "Copiar",
|
|
95
|
+
"at": "a las"
|
|
96
|
+
},
|
|
97
|
+
"controls": {
|
|
98
|
+
"newTabAttachment": "Abrir adjunto en nueva pestaña",
|
|
99
|
+
"nextTR": "Siguiente resultado de prueba",
|
|
100
|
+
"prevTR": "Resultado de prueba anterior",
|
|
101
|
+
"downloadAttachment": "Descargar adjunto",
|
|
102
|
+
"backto": "Volver a",
|
|
103
|
+
"clipboard": "Copiar al portapapeles",
|
|
104
|
+
"clipboardError": "Error. Parece que esta funcionalidad no está soportada por tu navegador",
|
|
105
|
+
"clipboardSuccess": "Copiado con éxito",
|
|
106
|
+
"collapse": "Colapsar",
|
|
107
|
+
"expand": "Expandir",
|
|
108
|
+
"fullscreen": "Pantalla completa",
|
|
109
|
+
"language": "Cambiar idioma"
|
|
110
|
+
},
|
|
111
|
+
"errors": {
|
|
112
|
+
"missedAttachment": "Adjunto no encontrado"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
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 trouvé",
|
|
64
|
+
"no-attachments-results": "Aucune information sur les pièces jointes disponible",
|
|
65
|
+
"no-history-results": "Aucune information sur l'historique disponible",
|
|
66
|
+
"no-retries-results": "Aucune information sur les réessais disponible"
|
|
67
|
+
},
|
|
68
|
+
"severity": {
|
|
69
|
+
"blocker": "bloquant",
|
|
70
|
+
"critical": "critique",
|
|
71
|
+
"normal": "normal",
|
|
72
|
+
"minor": "mineur",
|
|
73
|
+
"trivial": "trivial"
|
|
74
|
+
},
|
|
75
|
+
"execution": {
|
|
76
|
+
"name": "Exécution",
|
|
77
|
+
"body": "Corps du test",
|
|
78
|
+
"setup": "Préparation",
|
|
79
|
+
"teardown": "Démontage"
|
|
80
|
+
},
|
|
81
|
+
"ui": {
|
|
82
|
+
"labels": "Étiquettes",
|
|
83
|
+
"metadata": "Métadonnées",
|
|
84
|
+
"parameters": "Paramètres",
|
|
85
|
+
"description": "Description",
|
|
86
|
+
"links": "Liens",
|
|
87
|
+
"overview": "Vue d'ensemble",
|
|
88
|
+
"history": "Historique",
|
|
89
|
+
"attachments": "Pièces jointes",
|
|
90
|
+
"retries": "Réessais",
|
|
91
|
+
"error": "Erreur",
|
|
92
|
+
"goToStep": "Aller à l'étape",
|
|
93
|
+
"showLess": "Montrer moins",
|
|
94
|
+
"showMore": "Montrer plus",
|
|
95
|
+
"copy": "Copier",
|
|
96
|
+
"at": "à"
|
|
97
|
+
},
|
|
98
|
+
"controls": {
|
|
99
|
+
"newTabAttachment": "Ouvrir dans un nouvel onglet",
|
|
100
|
+
"nextTR": "Résultat de test suivant",
|
|
101
|
+
"prevTR": "Résultat de test précédent",
|
|
102
|
+
"downloadAttachment": "Télécharger la pièce jointe",
|
|
103
|
+
"backto": "Retour à",
|
|
104
|
+
"clipboard": "Copier dans le presse-papier",
|
|
105
|
+
"clipboardError": "Erreur. Il semble que cette fonctionnalité ne soit pas prise en charge par votre navigateur",
|
|
106
|
+
"clipboardSuccess": "Copié avec succès",
|
|
107
|
+
"collapse": "Réduire",
|
|
108
|
+
"expand": "Agrandir",
|
|
109
|
+
"fullscreen": "Plein écran",
|
|
110
|
+
"language": "Changer la langue"
|
|
111
|
+
},
|
|
112
|
+
"errors": {
|
|
113
|
+
"missedAttachment": "Pièce jointe non trouvée"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
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-attachments-results": "לא נמצאה מידע על קבצים מצורפים",
|
|
65
|
+
"no-history-results": "לא נמצאה מידע על היסטוריה",
|
|
66
|
+
"no-retries-results": "לא נמצאה מידע על נסיונות חוזרים"
|
|
67
|
+
},
|
|
68
|
+
"severity": {
|
|
69
|
+
"blocker": "חוסם",
|
|
70
|
+
"critical": "קריטי",
|
|
71
|
+
"normal": "רגיל",
|
|
72
|
+
"minor": "קל",
|
|
73
|
+
"trivial": "פעוט"
|
|
74
|
+
},
|
|
75
|
+
"execution": {
|
|
76
|
+
"name": "ביצוע",
|
|
77
|
+
"body": "תוכן הבדיקה",
|
|
78
|
+
"setup": "הכנה",
|
|
79
|
+
"teardown": "סיום"
|
|
80
|
+
},
|
|
81
|
+
"ui": {
|
|
82
|
+
"labels": "תוויות",
|
|
83
|
+
"metadata": "נתונים",
|
|
84
|
+
"parameters": "פרמטרים",
|
|
85
|
+
"description": "תיאור",
|
|
86
|
+
"links": "קישורים",
|
|
87
|
+
"overview": "סקירה כללית",
|
|
88
|
+
"history": "היסטוריה",
|
|
89
|
+
"attachments": "קבצים מצורפים",
|
|
90
|
+
"retries": "נסיונות חוזרים",
|
|
91
|
+
"error": "שגיאה",
|
|
92
|
+
"goToStep": "עבור לשלב",
|
|
93
|
+
"showLess": "הצג פחות",
|
|
94
|
+
"showMore": "הצג עוד",
|
|
95
|
+
"copy": "העתק",
|
|
96
|
+
"at": "ב-"
|
|
97
|
+
},
|
|
98
|
+
"controls": {
|
|
99
|
+
"newTabAttachment": "פתח קובץ מצורף בלשונית חדשה",
|
|
100
|
+
"nextTR": "תוצאת בדיקה הבאה",
|
|
101
|
+
"prevTR": "תוצאת בדיקה קודמת",
|
|
102
|
+
"downloadAttachment": "הורד קובץ מצורף",
|
|
103
|
+
"backto": "חזור ל",
|
|
104
|
+
"clipboard": "העתק ללוח",
|
|
105
|
+
"clipboardError": "לא ניתן להעתיק ללוח. ייתכן שהתכונה לא נתמכת בדפדפן שלך",
|
|
106
|
+
"clipboardSuccess": "הועתק בהצלחה",
|
|
107
|
+
"collapse": "כווץ",
|
|
108
|
+
"expand": "הרחב",
|
|
109
|
+
"fullscreen": "מסך מלא",
|
|
110
|
+
"language": "שנה שפה"
|
|
111
|
+
},
|
|
112
|
+
"errors": {
|
|
113
|
+
"missedAttachment": "הקובץ המצורף לא נמצא"
|
|
114
|
+
}
|
|
115
|
+
}
|