@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": "superato",
|
|
4
|
+
"failed": "fallito",
|
|
5
|
+
"broken": "rotto",
|
|
6
|
+
"skipped": "saltato",
|
|
7
|
+
"unknown": "sconosciuto",
|
|
8
|
+
"total": "totale",
|
|
9
|
+
"flakyTests": "instabili",
|
|
10
|
+
"newTests": "nuovi",
|
|
11
|
+
"retryTests": "ritentati"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Tutti i test",
|
|
15
|
+
"flaky": "Test instabili",
|
|
16
|
+
"retry": "Test ritentati",
|
|
17
|
+
"new": "Nuovi test"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Tutti"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Cerca",
|
|
24
|
+
"search-placeholder": "Nome o ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Più filtri",
|
|
28
|
+
"enable-filter": "Abilita il filtro \"{filter}\"",
|
|
29
|
+
"flaky": "Instabili",
|
|
30
|
+
"retry": "Ritentati",
|
|
31
|
+
"new": "Nuovi"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Ordina per:",
|
|
35
|
+
"sort-by-category": "Ordina per",
|
|
36
|
+
"direction-category": "Direzione"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Ordine",
|
|
40
|
+
"alphabet": "Alfabetico",
|
|
41
|
+
"duration": "Durata",
|
|
42
|
+
"status": "Stato"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Ultimi – Primi",
|
|
46
|
+
"order-asc": "Primi – Ultimi",
|
|
47
|
+
"order-asc-short": "Primi",
|
|
48
|
+
"order-desc-short": "Ultimi",
|
|
49
|
+
"alphabet-asc": "A – Z",
|
|
50
|
+
"alphabet-desc": "Z – A",
|
|
51
|
+
"alphabet-asc-short": "A – Z",
|
|
52
|
+
"alphabet-desc-short": "Z – A",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "Come nella lista dei filtri",
|
|
58
|
+
"status-desc": "Invertito",
|
|
59
|
+
"status-asc-short": "Normale",
|
|
60
|
+
"status-desc-short": "Invertito"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Nessun risultato trovato",
|
|
64
|
+
"no-attachments-results": "Nessuna informazione sugli allegati disponibile",
|
|
65
|
+
"no-history-results": "Nessuna informazione sulla cronologia disponibile",
|
|
66
|
+
"no-retries-results": "Nessuna informazione sui ritentativi disponibile"
|
|
67
|
+
},
|
|
68
|
+
"severity": {
|
|
69
|
+
"blocker": "bloccante",
|
|
70
|
+
"critical": "critico",
|
|
71
|
+
"normal": "normale",
|
|
72
|
+
"minor": "minore",
|
|
73
|
+
"trivial": "banale"
|
|
74
|
+
},
|
|
75
|
+
"execution": {
|
|
76
|
+
"name": "Esecuzione",
|
|
77
|
+
"body": "Corpo del test",
|
|
78
|
+
"setup": "Preparazione",
|
|
79
|
+
"teardown": "Smontaggio"
|
|
80
|
+
},
|
|
81
|
+
"ui": {
|
|
82
|
+
"labels": "Etichette",
|
|
83
|
+
"metadata": "Metadati",
|
|
84
|
+
"parameters": "Parametri",
|
|
85
|
+
"description": "Descrizione",
|
|
86
|
+
"links": "Link",
|
|
87
|
+
"overview": "Panoramica",
|
|
88
|
+
"history": "Cronologia",
|
|
89
|
+
"attachments": "Allegati",
|
|
90
|
+
"retries": "Ritentativi",
|
|
91
|
+
"error": "Errore",
|
|
92
|
+
"goToStep": "Vai al passo",
|
|
93
|
+
"showLess": "Mostra meno",
|
|
94
|
+
"showMore": "Mostra di più",
|
|
95
|
+
"copy": "Copia",
|
|
96
|
+
"at": "a"
|
|
97
|
+
},
|
|
98
|
+
"controls": {
|
|
99
|
+
"newTabAttachment": "Apri in una nuova scheda",
|
|
100
|
+
"nextTR": "Risultato del test successivo",
|
|
101
|
+
"prevTR": "Risultato del test precedente",
|
|
102
|
+
"downloadAttachment": "Scarica allegato",
|
|
103
|
+
"backto": "Torna a",
|
|
104
|
+
"clipboard": "Copia negli appunti",
|
|
105
|
+
"clipboardError": "Errore. Sembra che questa funzionalità non sia supportata dal tuo browser",
|
|
106
|
+
"clipboardSuccess": "Copiato con successo",
|
|
107
|
+
"collapse": "Comprimi",
|
|
108
|
+
"expand": "Espandi",
|
|
109
|
+
"fullscreen": "Schermo intero",
|
|
110
|
+
"language": "Cambia lingua"
|
|
111
|
+
},
|
|
112
|
+
"errors": {
|
|
113
|
+
"missedAttachment": "Allegato non trovato"
|
|
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": "名前またはID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "さらにフィルター",
|
|
28
|
+
"enable-filter": "\"{filter}\" フィルターを有効にする",
|
|
29
|
+
"flaky": "不安定",
|
|
30
|
+
"retry": "再試行",
|
|
31
|
+
"new": "新しい"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "並べ替え:",
|
|
35
|
+
"sort-by-category": "並べ替え",
|
|
36
|
+
"direction-category": "方向"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "順序",
|
|
40
|
+
"alphabet": "アルファベット",
|
|
41
|
+
"duration": "期間",
|
|
42
|
+
"status": "ステータス"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "最新 – 最古",
|
|
46
|
+
"order-asc": "最古 – 最新",
|
|
47
|
+
"order-asc-short": "最古",
|
|
48
|
+
"order-desc-short": "最新",
|
|
49
|
+
"alphabet-asc": "A – Z",
|
|
50
|
+
"alphabet-desc": "Z – A",
|
|
51
|
+
"alphabet-asc-short": "A – Z",
|
|
52
|
+
"alphabet-desc-short": "Z – A",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "フィルターリストの順序",
|
|
58
|
+
"status-desc": "逆順",
|
|
59
|
+
"status-asc-short": "通常",
|
|
60
|
+
"status-desc-short": "逆順"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "結果が見つかりません",
|
|
64
|
+
"no-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
|
+
}
|
|
@@ -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": "სახელი ან ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "დამატებითი ფილტრები",
|
|
28
|
+
"enable-filter": "ჩართეთ ფილტრი \"{filter}\"",
|
|
29
|
+
"flaky": "არასტაბილური",
|
|
30
|
+
"retry": "ხელახალი",
|
|
31
|
+
"new": "ახალი"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "დალაგება:",
|
|
35
|
+
"sort-by-category": "დალაგება",
|
|
36
|
+
"direction-category": "მიმართულება"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "შეკვეთა",
|
|
40
|
+
"alphabet": "ანბანი",
|
|
41
|
+
"duration": "ხანგრძლივობა",
|
|
42
|
+
"status": "სტატუსი"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "ბოლო – პირველი",
|
|
46
|
+
"order-asc": "პირველი – ბოლო",
|
|
47
|
+
"order-asc-short": "პირველი",
|
|
48
|
+
"order-desc-short": "ბოლო",
|
|
49
|
+
"alphabet-asc": "ა – ჰ",
|
|
50
|
+
"alphabet-desc": "ჰ – ა",
|
|
51
|
+
"alphabet-asc-short": "ა – ჰ",
|
|
52
|
+
"alphabet-desc-short": "ჰ – ა",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "როგორც ფილტრის სიაში",
|
|
58
|
+
"status-desc": "შებრუნებული",
|
|
59
|
+
"status-asc-short": "ჩვეულებრივი",
|
|
60
|
+
"status-desc-short": "შებრუნებული"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "შედეგები არ მოიძებნა",
|
|
64
|
+
"no-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
|
+
}
|
|
@@ -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": "이름 또는 ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "추가 필터",
|
|
28
|
+
"enable-filter": "\"{filter}\" 필터 활성화",
|
|
29
|
+
"flaky": "불안정함",
|
|
30
|
+
"retry": "재시도",
|
|
31
|
+
"new": "새로운"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "정렬 기준:",
|
|
35
|
+
"sort-by-category": "정렬 기준",
|
|
36
|
+
"direction-category": "방향"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "순서",
|
|
40
|
+
"alphabet": "알파벳",
|
|
41
|
+
"duration": "지속 시간",
|
|
42
|
+
"status": "상태"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "최신 – 최초",
|
|
46
|
+
"order-asc": "최초 – 최신",
|
|
47
|
+
"order-asc-short": "최초",
|
|
48
|
+
"order-desc-short": "최신",
|
|
49
|
+
"alphabet-asc": "가 – 하",
|
|
50
|
+
"alphabet-desc": "하 – 가",
|
|
51
|
+
"alphabet-asc-short": "가 – 하",
|
|
52
|
+
"alphabet-desc-short": "하 – 가",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "필터 목록 순서대로",
|
|
58
|
+
"status-desc": "역순",
|
|
59
|
+
"status-asc-short": "일반",
|
|
60
|
+
"status-desc-short": "역순"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "결과를 찾을 수 없습니다",
|
|
64
|
+
"no-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
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "geslaagd",
|
|
4
|
+
"failed": "mislukt",
|
|
5
|
+
"broken": "gebroken",
|
|
6
|
+
"skipped": "overgeslagen",
|
|
7
|
+
"unknown": "onbekend",
|
|
8
|
+
"total": "totaal",
|
|
9
|
+
"flakyTests": "onstabiel",
|
|
10
|
+
"newTests": "nieuw",
|
|
11
|
+
"retryTests": "opnieuw proberen"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Alle tests",
|
|
15
|
+
"flaky": "Onstabiele tests",
|
|
16
|
+
"retry": "Opnieuw uitgevoerde tests",
|
|
17
|
+
"new": "Nieuwe tests"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Alle"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Zoeken",
|
|
24
|
+
"search-placeholder": "Naam of ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Meer filters",
|
|
28
|
+
"enable-filter": "Filter \"{filter}\" inschakelen",
|
|
29
|
+
"flaky": "Onstabiel",
|
|
30
|
+
"retry": "Opnieuw proberen",
|
|
31
|
+
"new": "Nieuw"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Sorteren op:",
|
|
35
|
+
"sort-by-category": "Sorteren op",
|
|
36
|
+
"direction-category": "Richting"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Volgorde",
|
|
40
|
+
"alphabet": "Alfabet",
|
|
41
|
+
"duration": "Duur",
|
|
42
|
+
"status": "Status"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Laatste – Eerste",
|
|
46
|
+
"order-asc": "Eerste – Laatste",
|
|
47
|
+
"order-asc-short": "Eerste",
|
|
48
|
+
"order-desc-short": "Laatste",
|
|
49
|
+
"alphabet-asc": "A – Z",
|
|
50
|
+
"alphabet-desc": "Z – A",
|
|
51
|
+
"alphabet-asc-short": "A – Z",
|
|
52
|
+
"alphabet-desc-short": "Z – A",
|
|
53
|
+
"duration-asc": "1 – 9",
|
|
54
|
+
"duration-desc": "9 – 1",
|
|
55
|
+
"duration-asc-short": "1 – 9",
|
|
56
|
+
"duration-desc-short": "9 – 1",
|
|
57
|
+
"status-asc": "Zoals in de filterlijst",
|
|
58
|
+
"status-desc": "Omgekeerd",
|
|
59
|
+
"status-asc-short": "Normaal",
|
|
60
|
+
"status-desc-short": "Omgekeerd"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Geen resultaten gevonden",
|
|
64
|
+
"no-attachments-results": "Geen bijlageninformatie beschikbaar",
|
|
65
|
+
"no-history-results": "Geen geschiedenisinformatie beschikbaar",
|
|
66
|
+
"no-retries-results": "Geen herhalingsinformatie beschikbaar"
|
|
67
|
+
},
|
|
68
|
+
"severity": {
|
|
69
|
+
"blocker": "blokkerend",
|
|
70
|
+
"critical": "kritiek",
|
|
71
|
+
"normal": "normaal",
|
|
72
|
+
"minor": "klein",
|
|
73
|
+
"trivial": "onbeduidend"
|
|
74
|
+
},
|
|
75
|
+
"execution": {
|
|
76
|
+
"name": "Uitvoering",
|
|
77
|
+
"body": "Testinhoud",
|
|
78
|
+
"setup": "Voorbereiding",
|
|
79
|
+
"teardown": "Afsluiten"
|
|
80
|
+
},
|
|
81
|
+
"ui": {
|
|
82
|
+
"labels": "Labels",
|
|
83
|
+
"metadata": "Metadata",
|
|
84
|
+
"parameters": "Parameters",
|
|
85
|
+
"description": "Beschrijving",
|
|
86
|
+
"links": "Links",
|
|
87
|
+
"overview": "Overzicht",
|
|
88
|
+
"history": "Geschiedenis",
|
|
89
|
+
"attachments": "Bijlagen",
|
|
90
|
+
"retries": "Herhalingen",
|
|
91
|
+
"error": "Fout",
|
|
92
|
+
"goToStep": "Ga naar stap",
|
|
93
|
+
"showLess": "Minder weergeven",
|
|
94
|
+
"showMore": "Meer weergeven",
|
|
95
|
+
"copy": "Kopiëren",
|
|
96
|
+
"at": "om"
|
|
97
|
+
},
|
|
98
|
+
"controls": {
|
|
99
|
+
"newTabAttachment": "Bijlage openen in nieuw tabblad",
|
|
100
|
+
"nextTR": "Volgende testresultaat",
|
|
101
|
+
"prevTR": "Vorige testresultaat",
|
|
102
|
+
"downloadAttachment": "Bijlage downloaden",
|
|
103
|
+
"backto": "Terug naar",
|
|
104
|
+
"clipboard": "Kopiëren naar klembord",
|
|
105
|
+
"clipboardError": "Kan waarde niet naar klembord kopiëren. Mogelijk wordt deze functie niet ondersteund door uw browser",
|
|
106
|
+
"clipboardSuccess": "Succesvol gekopieerd",
|
|
107
|
+
"collapse": "Samenvouwen",
|
|
108
|
+
"expand": "Uitvouwen",
|
|
109
|
+
"fullscreen": "Volledig scherm",
|
|
110
|
+
"language": "Taal wijzigen"
|
|
111
|
+
},
|
|
112
|
+
"errors": {
|
|
113
|
+
"missedAttachment": "Bijlage niet gevonden"
|
|
114
|
+
}
|
|
115
|
+
}
|