@allurereport/web-awesome 3.0.0-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/.babelrc.js +46 -0
  2. package/.eslintrc.cjs +18 -0
  3. package/CONTRIBUTING.md +34 -0
  4. package/README.md +27 -0
  5. package/dist/multi/141.app-d01d0c66.js +1 -0
  6. package/dist/multi/222.app-d01d0c66.js +1 -0
  7. package/dist/multi/335.app-d01d0c66.js +1 -0
  8. package/dist/multi/34.app-d01d0c66.js +1 -0
  9. package/dist/multi/349.app-d01d0c66.js +1 -0
  10. package/dist/multi/378.app-d01d0c66.js +1 -0
  11. package/dist/multi/406.app-d01d0c66.js +1 -0
  12. package/dist/multi/476.app-d01d0c66.js +1 -0
  13. package/dist/multi/53.app-d01d0c66.js +1 -0
  14. package/dist/multi/584.app-d01d0c66.js +1 -0
  15. package/dist/multi/690.app-d01d0c66.js +1 -0
  16. package/dist/multi/747.app-d01d0c66.js +1 -0
  17. package/dist/multi/767.app-d01d0c66.js +1 -0
  18. package/dist/multi/816.app-d01d0c66.js +1 -0
  19. package/dist/multi/83.app-d01d0c66.js +1 -0
  20. package/dist/multi/873.app-d01d0c66.js +1 -0
  21. package/dist/multi/920.app-d01d0c66.js +1 -0
  22. package/dist/multi/991.app-d01d0c66.js +1 -0
  23. package/dist/multi/JetBrainsMono_vf-9e9649b6..woff2 +0 -0
  24. package/dist/multi/JetBrainsMono_vf-b9a9c326..woff +0 -0
  25. package/dist/multi/app-d01d0c66.js +2 -0
  26. package/dist/multi/app-d01d0c66.js.LICENSE.txt +16 -0
  27. package/dist/multi/manifest.json +26 -0
  28. package/dist/multi/pt-root-ui_vf-22fe60ca..woff +0 -0
  29. package/dist/multi/pt-root-ui_vf-9d251e8b..woff2 +0 -0
  30. package/dist/multi/styles-d01d0c66.css +39 -0
  31. package/dist/single/app-6596cb08.js +2 -0
  32. package/dist/single/app-6596cb08.js.LICENSE.txt +16 -0
  33. package/dist/single/manifest.json +3 -0
  34. package/package.json +107 -0
  35. package/postcss.config.js +5 -0
  36. package/src/assets/scss/_common.scss +143 -0
  37. package/src/assets/scss/day.scss +51 -0
  38. package/src/assets/scss/fonts.scss +3 -0
  39. package/src/assets/scss/index.scss +7 -0
  40. package/src/assets/scss/night.scss +61 -0
  41. package/src/assets/scss/palette.scss +393 -0
  42. package/src/assets/scss/theme.scss +119 -0
  43. package/src/assets/scss/vars.scss +9 -0
  44. package/src/assets/svg/line-alerts-alert-circle.svg +12 -0
  45. package/src/assets/svg/line-general-eye.svg +7 -0
  46. package/src/assets/svg/line-icon-bomb-2.svg +12 -0
  47. package/src/components/ArrowButton/index.tsx +36 -0
  48. package/src/components/ArrowButton/styles.scss +35 -0
  49. package/src/components/BaseLayout/index.tsx +43 -0
  50. package/src/components/BaseLayout/styles.scss +60 -0
  51. package/src/components/Footer/FooterLogo.tsx +16 -0
  52. package/src/components/Footer/FooterVersion.tsx +37 -0
  53. package/src/components/Footer/index.tsx +13 -0
  54. package/src/components/Footer/styles.scss +14 -0
  55. package/src/components/Header/index.tsx +28 -0
  56. package/src/components/Header/styles.scss +33 -0
  57. package/src/components/LanguagePicker/index.tsx +40 -0
  58. package/src/components/MainReport/index.tsx +21 -0
  59. package/src/components/MainReport/styles.scss +11 -0
  60. package/src/components/Metadata/index.tsx +121 -0
  61. package/src/components/Metadata/styles.scss +146 -0
  62. package/src/components/MetadataButton/index.tsx +32 -0
  63. package/src/components/MetadataButton/styles.scss +53 -0
  64. package/src/components/Modal/index.tsx +22 -0
  65. package/src/components/ReportBody/Filters.tsx +90 -0
  66. package/src/components/ReportBody/HeaderActions.tsx +21 -0
  67. package/src/components/ReportBody/SortBy.tsx +132 -0
  68. package/src/components/ReportBody/context.tsx +106 -0
  69. package/src/components/ReportBody/index.tsx +72 -0
  70. package/src/components/ReportBody/styles.scss +69 -0
  71. package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
  72. package/src/components/ReportHeader/ReportHeaderLogo.tsx +10 -0
  73. package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
  74. package/src/components/ReportHeader/index.tsx +33 -0
  75. package/src/components/ReportHeader/styles.scss +51 -0
  76. package/src/components/ReportLogo/index.tsx +16 -0
  77. package/src/components/ReportLogo/styles.scss +20 -0
  78. package/src/components/ReportLogoFull/index.tsx +20 -0
  79. package/src/components/ReportLogoFull/styles.scss +7 -0
  80. package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
  81. package/src/components/ReportMetadata/MetadataSummary.tsx +81 -0
  82. package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
  83. package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
  84. package/src/components/ReportMetadata/index.tsx +46 -0
  85. package/src/components/ReportMetadata/styles.scss +99 -0
  86. package/src/components/SideBySide/index.tsx +52 -0
  87. package/src/components/SideBySide/styles.scss +65 -0
  88. package/src/components/SplitLayout/index.tsx +77 -0
  89. package/src/components/SplitLayout/styles.scss +85 -0
  90. package/src/components/Tabs/index.tsx +62 -0
  91. package/src/components/Tabs/styles.scss +56 -0
  92. package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
  93. package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
  94. package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
  95. package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
  96. package/src/components/TestResult/TestResultDropdown/index.tsx +26 -0
  97. package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
  98. package/src/components/TestResult/TestResultEmpty/index.tsx +34 -0
  99. package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
  100. package/src/components/TestResult/TestResultHeader/TestResultBreadcrumbs.tsx +44 -0
  101. package/src/components/TestResult/TestResultHeader/index.tsx +21 -0
  102. package/src/components/TestResult/TestResultHeader/styles.scss +48 -0
  103. package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +66 -0
  104. package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
  105. package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
  106. package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
  107. package/src/components/TestResult/TestResultInfo/index.tsx +81 -0
  108. package/src/components/TestResult/TestResultInfo/styles.scss +68 -0
  109. package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
  110. package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
  111. package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
  112. package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
  113. package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
  114. package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
  115. package/src/components/TestResult/TestResultOverview.tsx +43 -0
  116. package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
  117. package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
  118. package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
  119. package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
  120. package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +51 -0
  121. package/src/components/TestResult/TestResultRetriesView/index.tsx +24 -0
  122. package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
  123. package/src/components/TestResult/TestResultSetup/index.tsx +58 -0
  124. package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
  125. package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
  126. package/src/components/TestResult/TestResultStatus/index.tsx +25 -0
  127. package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
  128. package/src/components/TestResult/TestResultSteps/index.tsx +58 -0
  129. package/src/components/TestResult/TestResultSteps/styles.scss +225 -0
  130. package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +76 -0
  131. package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
  132. package/src/components/TestResult/TestResultSteps/testResultStep.tsx +84 -0
  133. package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
  134. package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
  135. package/src/components/TestResult/TestResultTabs/index.tsx +68 -0
  136. package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
  137. package/src/components/TestResult/TestResultTeardown/index.tsx +59 -0
  138. package/src/components/TestResult/TestStepsEmpty/index.tsx +23 -0
  139. package/src/components/TestResult/TestStepsEmpty/styles.scss +25 -0
  140. package/src/components/TestResult/TrError/TrDiff.tsx +124 -0
  141. package/src/components/TestResult/TrError/index.tsx +78 -0
  142. package/src/components/TestResult/TrError/styles.scss +133 -0
  143. package/src/components/TestResult/index.tsx +62 -0
  144. package/src/components/TestResult/styles.scss +11 -0
  145. package/src/components/ThemeButton/ThemeButton.tsx +20 -0
  146. package/src/components/ToggleLayout/index.tsx +17 -0
  147. package/src/components/Tree/index.tsx +75 -0
  148. package/src/components/Tree/styles.scss +189 -0
  149. package/src/i18n/constants.ts +124 -0
  150. package/src/i18n/locales/am.json +133 -0
  151. package/src/i18n/locales/az.json +133 -0
  152. package/src/i18n/locales/de.json +133 -0
  153. package/src/i18n/locales/en.json +134 -0
  154. package/src/i18n/locales/es.json +133 -0
  155. package/src/i18n/locales/fr.json +133 -0
  156. package/src/i18n/locales/he.json +133 -0
  157. package/src/i18n/locales/it.json +133 -0
  158. package/src/i18n/locales/ja.json +133 -0
  159. package/src/i18n/locales/ka.json +133 -0
  160. package/src/i18n/locales/kr.json +133 -0
  161. package/src/i18n/locales/nl.json +133 -0
  162. package/src/i18n/locales/pl.json +131 -0
  163. package/src/i18n/locales/pt.json +133 -0
  164. package/src/i18n/locales/ru.json +131 -0
  165. package/src/i18n/locales/sv.json +133 -0
  166. package/src/i18n/locales/tr.json +133 -0
  167. package/src/i18n/locales/zh.json +133 -0
  168. package/src/index.html +40 -0
  169. package/src/index.tsx +96 -0
  170. package/src/stores/chart.ts +32 -0
  171. package/src/stores/envInfo.ts +34 -0
  172. package/src/stores/index.ts +4 -0
  173. package/src/stores/layout.ts +36 -0
  174. package/src/stores/locale.ts +75 -0
  175. package/src/stores/modal.ts +22 -0
  176. package/src/stores/router.ts +48 -0
  177. package/src/stores/stats.ts +36 -0
  178. package/src/stores/testResults.ts +66 -0
  179. package/src/stores/theme.ts +32 -0
  180. package/src/stores/tree.ts +157 -0
  181. package/src/stores/types.ts +5 -0
  182. package/src/styles.scss +45 -0
  183. package/src/types/globals.d.ts +13 -0
  184. package/src/types/window.d.ts +8 -0
  185. package/src/utils/capitalize.ts +6 -0
  186. package/src/utils/copyToClipboard.ts +16 -0
  187. package/src/utils/isMac.ts +8 -0
  188. package/src/utils/loadFromLocalStorage.ts +8 -0
  189. package/src/utils/statuses.ts +55 -0
  190. package/src/utils/time.ts +17 -0
  191. package/src/utils/treeFilters.ts +147 -0
  192. package/test/utils/treeFilters.test.ts +448 -0
  193. package/tsconfig.json +27 -0
  194. package/types.d.ts +99 -0
  195. package/vitest.config.ts +18 -0
  196. package/webpack.config.js +112 -0
@@ -0,0 +1,133 @@
1
+ {
2
+ "statuses": {
3
+ "passed": "réussi",
4
+ "failed": "échoué",
5
+ "broken": "cassé",
6
+ "skipped": "ignoré",
7
+ "unknown": "inconnu",
8
+ "total": "total",
9
+ "flakyTests": "instables",
10
+ "newTests": "nouveaux",
11
+ "retryTests": "réessais"
12
+ },
13
+ "testSummary": {
14
+ "all": "Tous les tests",
15
+ "flaky": "Tests instables",
16
+ "retry": "Tests réessayés",
17
+ "new": "Nouveaux tests"
18
+ },
19
+ "tabs": {
20
+ "total": "Tous"
21
+ },
22
+ "search": {
23
+ "search": "Recherche",
24
+ "search-placeholder": "Nom ou ID"
25
+ },
26
+ "filters": {
27
+ "more-filters": "Plus de filtres",
28
+ "enable-filter": "Activer le filtre \"{filter}\"",
29
+ "flaky": "Instables",
30
+ "retry": "Réessais",
31
+ "new": "Nouveaux"
32
+ },
33
+ "sort-by": {
34
+ "sort-by-text": "Trier par :",
35
+ "sort-by-category": "Trier par",
36
+ "direction-category": "Direction"
37
+ },
38
+ "sort-by.values": {
39
+ "order": "Ordre",
40
+ "alphabet": "Alphabétique",
41
+ "duration": "Durée",
42
+ "status": "Statut"
43
+ },
44
+ "sort-by.directions": {
45
+ "order-desc": "Derniers – Premiers",
46
+ "order-asc": "Premiers – Derniers",
47
+ "order-asc-short": "Premiers",
48
+ "order-desc-short": "Derniers",
49
+ "alphabet-asc": "A – Z",
50
+ "alphabet-desc": "Z – A",
51
+ "alphabet-asc-short": "A – Z",
52
+ "alphabet-desc-short": "Z – A",
53
+ "duration-asc": "1 – 9",
54
+ "duration-desc": "9 – 1",
55
+ "duration-asc-short": "1 – 9",
56
+ "duration-desc-short": "9 – 1",
57
+ "status-asc": "Comme dans la liste des filtres",
58
+ "status-desc": "Inversé",
59
+ "status-asc-short": "Normal",
60
+ "status-desc-short": "Inversé"
61
+ },
62
+ "empty": {
63
+ "no-results": "Aucun résultat",
64
+ "no-tests-found": "Aucun résultat trouvé",
65
+ "clear-filters": "Effacer les filtres",
66
+ "no-attachments-results": "Aucune information sur les pièces jointes disponible",
67
+ "no-history-results": "Aucune information sur l'historique disponible",
68
+ "no-retries-results": "Aucune information sur les réessais disponible",
69
+ "no-test-steps-results": "Aucune information sur les étapes de test disponible",
70
+ "no-test-case-results": "Aucun résultat de cas de test"
71
+ },
72
+ "severity": {
73
+ "blocker": "bloquant",
74
+ "critical": "critique",
75
+ "normal": "normal",
76
+ "minor": "mineur",
77
+ "trivial": "trivial"
78
+ },
79
+ "execution": {
80
+ "name": "Exécution",
81
+ "body": "Corps du test",
82
+ "setup": "Préparation",
83
+ "teardown": "Démontage"
84
+ },
85
+ "ui": {
86
+ "labels": "Étiquettes",
87
+ "metadata": "Métadonnées",
88
+ "parameters": "Paramètres",
89
+ "description": "Description",
90
+ "links": "Liens",
91
+ "overview": "Vue d'ensemble",
92
+ "history": "Historique",
93
+ "attachments": "Pièces jointes",
94
+ "retries": "Réessais",
95
+ "error": "Erreur",
96
+ "goToStep": "Aller à l'étape",
97
+ "showLess": "Montrer moins",
98
+ "showMore": "Montrer plus",
99
+ "copy": "Copier",
100
+ "at": "à"
101
+ },
102
+ "controls": {
103
+ "newTabAttachment": "Ouvrir dans un nouvel onglet",
104
+ "nextTR": "Résultat de test suivant",
105
+ "prevTR": "Résultat de test précédent",
106
+ "downloadAttachment": "Télécharger la pièce jointe",
107
+ "backto": "Retour à",
108
+ "clipboard": "Copier dans le presse-papier",
109
+ "clipboardError": "Erreur. Il semble que cette fonctionnalité ne soit pas prise en charge par votre navigateur",
110
+ "clipboardSuccess": "Copié avec succès",
111
+ "collapse": "Réduire",
112
+ "expand": "Agrandir",
113
+ "fullscreen": "Plein écran",
114
+ "language": "Changer la langue",
115
+ "openInNewTab": "Ouvrir dans un nouvel onglet",
116
+ "openPreview": "Ouvrir l'aperçu",
117
+ "noSelectedTR": "Aucun résultat de test sélectionné",
118
+ "comparison": "Comparaison",
119
+ "showDiff": "Afficher la différence",
120
+ "viewMode": "Mode d'affichage",
121
+ "unified": "Unifié",
122
+ "side-by-side": "Côte à côte",
123
+ "compareBy": "Comparer par",
124
+ "chars": "caractères",
125
+ "words": "mots",
126
+ "lines": "lignes",
127
+ "actual": "Réel",
128
+ "expected": "Attendu"
129
+ },
130
+ "errors": {
131
+ "missedAttachment": "Pièce jointe non trouvée"
132
+ }
133
+ }
@@ -0,0 +1,133 @@
1
+ {
2
+ "statuses": {
3
+ "passed": "עבר",
4
+ "failed": "נכשל",
5
+ "broken": "שבור",
6
+ "skipped": "דלג",
7
+ "unknown": "לא ידוע",
8
+ "total": "סה\"כ",
9
+ "flakyTests": "לא יציב",
10
+ "newTests": "חדש",
11
+ "retryTests": "ניסיון חוזר"
12
+ },
13
+ "testSummary": {
14
+ "all": "כל הבדיקות",
15
+ "flaky": "בדיקות לא יציבות",
16
+ "retry": "בדיקות חוזרות",
17
+ "new": "בדיקות חדשות"
18
+ },
19
+ "tabs": {
20
+ "total": "הכל"
21
+ },
22
+ "search": {
23
+ "search": "חפש",
24
+ "search-placeholder": "שם או מזהה"
25
+ },
26
+ "filters": {
27
+ "more-filters": "עוד מסננים",
28
+ "enable-filter": "אפשר מסנן \"{filter}\"",
29
+ "flaky": "לא יציב",
30
+ "retry": "חוזר",
31
+ "new": "חדש"
32
+ },
33
+ "sort-by": {
34
+ "sort-by-text": "מיין לפי:",
35
+ "sort-by-category": "מיין לפי",
36
+ "direction-category": "כיוון"
37
+ },
38
+ "sort-by.values": {
39
+ "order": "סדר",
40
+ "alphabet": "אלפבית",
41
+ "duration": "משך זמן",
42
+ "status": "סטטוס"
43
+ },
44
+ "sort-by.directions": {
45
+ "order-desc": "מהאחרון – לראשון",
46
+ "order-asc": "מהראשון – לאחרון",
47
+ "order-asc-short": "מהראשון",
48
+ "order-desc-short": "מהאחרון",
49
+ "alphabet-asc": "א – ת",
50
+ "alphabet-desc": "ת – א",
51
+ "alphabet-asc-short": "א – ת",
52
+ "alphabet-desc-short": "ת – א",
53
+ "duration-asc": "1 – 9",
54
+ "duration-desc": "9 – 1",
55
+ "duration-asc-short": "1 – 9",
56
+ "duration-desc-short": "9 – 1",
57
+ "status-asc": "כמו ברשימת המסננים",
58
+ "status-desc": "הפוך",
59
+ "status-asc-short": "רגיל",
60
+ "status-desc-short": "הפוך"
61
+ },
62
+ "empty": {
63
+ "no-results": "אין תוצאות",
64
+ "no-tests-found": "לא נמצאו תוצאות",
65
+ "clear-filters": "נקה מסננים",
66
+ "no-attachments-results": "לא נמצאה מידע על קבצים מצורפים",
67
+ "no-history-results": "לא נמצאה מידע על היסטוריה",
68
+ "no-retries-results": "לא נמצאה מידע על נסיונות חוזרים",
69
+ "no-test-steps-results": "אין מידע על שלבי הבדיקה",
70
+ "no-test-case-results": "אין תוצאות של מקרי בדיקה"
71
+ },
72
+ "severity": {
73
+ "blocker": "חוסם",
74
+ "critical": "קריטי",
75
+ "normal": "רגיל",
76
+ "minor": "קל",
77
+ "trivial": "פעוט"
78
+ },
79
+ "execution": {
80
+ "name": "ביצוע",
81
+ "body": "תוכן הבדיקה",
82
+ "setup": "הכנה",
83
+ "teardown": "סיום"
84
+ },
85
+ "ui": {
86
+ "labels": "תוויות",
87
+ "metadata": "נתונים",
88
+ "parameters": "פרמטרים",
89
+ "description": "תיאור",
90
+ "links": "קישורים",
91
+ "overview": "סקירה כללית",
92
+ "history": "היסטוריה",
93
+ "attachments": "קבצים מצורפים",
94
+ "retries": "נסיונות חוזרים",
95
+ "error": "שגיאה",
96
+ "goToStep": "עבור לשלב",
97
+ "showLess": "הצג פחות",
98
+ "showMore": "הצג עוד",
99
+ "copy": "העתק",
100
+ "at": "ב-"
101
+ },
102
+ "controls": {
103
+ "newTabAttachment": "פתח קובץ מצורף בלשונית חדשה",
104
+ "nextTR": "תוצאת בדיקה הבאה",
105
+ "prevTR": "תוצאת בדיקה קודמת",
106
+ "downloadAttachment": "הורד קובץ מצורף",
107
+ "backto": "חזור ל",
108
+ "clipboard": "העתק ללוח",
109
+ "clipboardError": "לא ניתן להעתיק ללוח. ייתכן שהתכונה לא נתמכת בדפדפן שלך",
110
+ "clipboardSuccess": "הועתק בהצלחה",
111
+ "collapse": "כווץ",
112
+ "expand": "הרחב",
113
+ "fullscreen": "מסך מלא",
114
+ "language": "שנה שפה",
115
+ "openInNewTab": "פתח בכרטיסייה חדשה",
116
+ "openPreview": "פתח תצוגה מקדימה",
117
+ "noSelectedTR": "אין תוצאת בדיקה נבחרת",
118
+ "comparison": "השוואה",
119
+ "showDiff": "הצג הבדל",
120
+ "viewMode": "מצב תצוגה",
121
+ "unified": "מאוחד",
122
+ "side-by-side": "זה לצד זה",
123
+ "compareBy": "השוואה לפי",
124
+ "chars": "תווים",
125
+ "words": "מילים",
126
+ "lines": "שורות",
127
+ "actual": "מצב נוכחי",
128
+ "expected": "מצופה"
129
+ },
130
+ "errors": {
131
+ "missedAttachment": "הקובץ המצורף לא נמצא"
132
+ }
133
+ }
@@ -0,0 +1,133 @@
1
+ {
2
+ "statuses": {
3
+ "passed": "superato",
4
+ "failed": "fallito",
5
+ "broken": "rotto",
6
+ "skipped": "saltato",
7
+ "unknown": "sconosciuto",
8
+ "total": "totale",
9
+ "flakyTests": "instabili",
10
+ "newTests": "nuovi",
11
+ "retryTests": "ritentati"
12
+ },
13
+ "testSummary": {
14
+ "all": "Tutti i test",
15
+ "flaky": "Test instabili",
16
+ "retry": "Test ritentati",
17
+ "new": "Nuovi test"
18
+ },
19
+ "tabs": {
20
+ "total": "Tutti"
21
+ },
22
+ "search": {
23
+ "search": "Cerca",
24
+ "search-placeholder": "Nome o ID"
25
+ },
26
+ "filters": {
27
+ "more-filters": "Più filtri",
28
+ "enable-filter": "Abilita il filtro \"{filter}\"",
29
+ "flaky": "Instabili",
30
+ "retry": "Ritentati",
31
+ "new": "Nuovi"
32
+ },
33
+ "sort-by": {
34
+ "sort-by-text": "Ordina per:",
35
+ "sort-by-category": "Ordina per",
36
+ "direction-category": "Direzione"
37
+ },
38
+ "sort-by.values": {
39
+ "order": "Ordine",
40
+ "alphabet": "Alfabetico",
41
+ "duration": "Durata",
42
+ "status": "Stato"
43
+ },
44
+ "sort-by.directions": {
45
+ "order-desc": "Ultimi – Primi",
46
+ "order-asc": "Primi – Ultimi",
47
+ "order-asc-short": "Primi",
48
+ "order-desc-short": "Ultimi",
49
+ "alphabet-asc": "A – Z",
50
+ "alphabet-desc": "Z – A",
51
+ "alphabet-asc-short": "A – Z",
52
+ "alphabet-desc-short": "Z – A",
53
+ "duration-asc": "1 – 9",
54
+ "duration-desc": "9 – 1",
55
+ "duration-asc-short": "1 – 9",
56
+ "duration-desc-short": "9 – 1",
57
+ "status-asc": "Come nella lista dei filtri",
58
+ "status-desc": "Invertito",
59
+ "status-asc-short": "Normale",
60
+ "status-desc-short": "Invertito"
61
+ },
62
+ "empty": {
63
+ "no-results": "Nessun risultato",
64
+ "no-tests-found": "Nessun risultato trovato",
65
+ "clear-filters": "Cancella i filtri",
66
+ "no-attachments-results": "Nessuna informazione sugli allegati disponibile",
67
+ "no-history-results": "Nessuna informazione sulla cronologia disponibile",
68
+ "no-retries-results": "Nessuna informazione sui ritentativi disponibile",
69
+ "no-test-steps-results": "Nessuna informazione disponibile sui passaggi del test",
70
+ "no-test-case-results": "Nessun risultato dei casi di test"
71
+ },
72
+ "severity": {
73
+ "blocker": "bloccante",
74
+ "critical": "critico",
75
+ "normal": "normale",
76
+ "minor": "minore",
77
+ "trivial": "banale"
78
+ },
79
+ "execution": {
80
+ "name": "Esecuzione",
81
+ "body": "Corpo del test",
82
+ "setup": "Preparazione",
83
+ "teardown": "Smontaggio"
84
+ },
85
+ "ui": {
86
+ "labels": "Etichette",
87
+ "metadata": "Metadati",
88
+ "parameters": "Parametri",
89
+ "description": "Descrizione",
90
+ "links": "Link",
91
+ "overview": "Panoramica",
92
+ "history": "Cronologia",
93
+ "attachments": "Allegati",
94
+ "retries": "Ritentativi",
95
+ "error": "Errore",
96
+ "goToStep": "Vai al passo",
97
+ "showLess": "Mostra meno",
98
+ "showMore": "Mostra di più",
99
+ "copy": "Copia",
100
+ "at": "a"
101
+ },
102
+ "controls": {
103
+ "newTabAttachment": "Apri in una nuova scheda",
104
+ "nextTR": "Risultato del test successivo",
105
+ "prevTR": "Risultato del test precedente",
106
+ "downloadAttachment": "Scarica allegato",
107
+ "backto": "Torna a",
108
+ "clipboard": "Copia negli appunti",
109
+ "clipboardError": "Errore. Sembra che questa funzionalità non sia supportata dal tuo browser",
110
+ "clipboardSuccess": "Copiato con successo",
111
+ "collapse": "Comprimi",
112
+ "expand": "Espandi",
113
+ "fullscreen": "Schermo intero",
114
+ "language": "Cambia lingua",
115
+ "openInNewTab": "Apri in una nuova scheda",
116
+ "openPreview": "Apri anteprima",
117
+ "noSelectedTR": "Nessun risultato del test selezionato",
118
+ "comparison": "Confronto",
119
+ "showDiff": "Mostra differenza",
120
+ "viewMode": "Modalità di visualizzazione",
121
+ "unified": "Unificato",
122
+ "side-by-side": "Affiancato",
123
+ "compareBy": "Confronta per",
124
+ "chars": "caratteri",
125
+ "words": "parole",
126
+ "lines": "righe",
127
+ "actual": "Attuale",
128
+ "expected": "Previsto"
129
+ },
130
+ "errors": {
131
+ "missedAttachment": "Allegato non trovato"
132
+ }
133
+ }
@@ -0,0 +1,133 @@
1
+ {
2
+ "statuses": {
3
+ "passed": "成功",
4
+ "failed": "失敗",
5
+ "broken": "壊れた",
6
+ "skipped": "スキップ",
7
+ "unknown": "不明",
8
+ "total": "合計",
9
+ "flakyTests": "不安定",
10
+ "newTests": "新しい",
11
+ "retryTests": "再試行"
12
+ },
13
+ "testSummary": {
14
+ "all": "すべてのテスト",
15
+ "flaky": "不安定なテスト",
16
+ "retry": "再試行されたテスト",
17
+ "new": "新しいテスト"
18
+ },
19
+ "tabs": {
20
+ "total": "すべて"
21
+ },
22
+ "search": {
23
+ "search": "検索",
24
+ "search-placeholder": "名前またはID"
25
+ },
26
+ "filters": {
27
+ "more-filters": "さらにフィルター",
28
+ "enable-filter": "\"{filter}\" フィルターを有効にする",
29
+ "flaky": "不安定",
30
+ "retry": "再試行",
31
+ "new": "新しい"
32
+ },
33
+ "sort-by": {
34
+ "sort-by-text": "並べ替え:",
35
+ "sort-by-category": "並べ替え",
36
+ "direction-category": "方向"
37
+ },
38
+ "sort-by.values": {
39
+ "order": "順序",
40
+ "alphabet": "アルファベット",
41
+ "duration": "期間",
42
+ "status": "ステータス"
43
+ },
44
+ "sort-by.directions": {
45
+ "order-desc": "最新 – 最古",
46
+ "order-asc": "最古 – 最新",
47
+ "order-asc-short": "最古",
48
+ "order-desc-short": "最新",
49
+ "alphabet-asc": "A – Z",
50
+ "alphabet-desc": "Z – A",
51
+ "alphabet-asc-short": "A – Z",
52
+ "alphabet-desc-short": "Z – A",
53
+ "duration-asc": "1 – 9",
54
+ "duration-desc": "9 – 1",
55
+ "duration-asc-short": "1 – 9",
56
+ "duration-desc-short": "9 – 1",
57
+ "status-asc": "フィルターリストの順序",
58
+ "status-desc": "逆順",
59
+ "status-asc-short": "通常",
60
+ "status-desc-short": "逆順"
61
+ },
62
+ "empty": {
63
+ "no-results": "結果がありません",
64
+ "no-tests-found": "結果が見つかりません",
65
+ "clear-filters": "フィルターをクリア",
66
+ "no-attachments-results": "添付ファイル情報が利用できません",
67
+ "no-history-results": "履歴情報が利用できません",
68
+ "no-retries-results": "再試行情報が利用できません",
69
+ "no-test-steps-results": "テスト手順の情報は利用できません",
70
+ "no-test-case-results": "テストケースの結果がありません"
71
+ },
72
+ "severity": {
73
+ "blocker": "ブロッカー",
74
+ "critical": "重大",
75
+ "normal": "通常",
76
+ "minor": "小規模",
77
+ "trivial": "些細"
78
+ },
79
+ "execution": {
80
+ "name": "実行",
81
+ "body": "テスト本体",
82
+ "setup": "セットアップ",
83
+ "teardown": "後処理"
84
+ },
85
+ "ui": {
86
+ "labels": "ラベル",
87
+ "metadata": "メタデータ",
88
+ "parameters": "パラメータ",
89
+ "description": "説明",
90
+ "links": "リンク",
91
+ "overview": "概要",
92
+ "history": "履歴",
93
+ "attachments": "添付ファイル",
94
+ "retries": "再試行",
95
+ "error": "エラー",
96
+ "goToStep": "ステップに移動",
97
+ "showLess": "表示を減らす",
98
+ "showMore": "もっと見る",
99
+ "copy": "コピー",
100
+ "at": "時"
101
+ },
102
+ "controls": {
103
+ "newTabAttachment": "新しいタブで開く",
104
+ "nextTR": "次のテスト結果",
105
+ "prevTR": "前のテスト結果",
106
+ "downloadAttachment": "添付ファイルをダウンロード",
107
+ "backto": "戻る",
108
+ "clipboard": "クリップボードにコピー",
109
+ "clipboardError": "エラー。この機能はお使いのブラウザでサポートされていない可能性があります",
110
+ "clipboardSuccess": "コピー成功",
111
+ "collapse": "折りたたむ",
112
+ "expand": "展開",
113
+ "fullscreen": "全画面",
114
+ "language": "言語を変更",
115
+ "openInNewTab": "新しいタブで開く",
116
+ "openPreview": "プレビューを開く",
117
+ "noSelectedTR": "選択されたテスト結果はありません",
118
+ "comparison": "比較",
119
+ "showDiff": "違いを表示",
120
+ "viewMode": "表示モード",
121
+ "unified": "統一",
122
+ "side-by-side": "並列",
123
+ "compareBy": "比較基準",
124
+ "chars": "文字",
125
+ "words": "単語",
126
+ "lines": "行",
127
+ "actual": "実際",
128
+ "expected": "予想"
129
+ },
130
+ "errors": {
131
+ "missedAttachment": "添付ファイルが見つかりません"
132
+ }
133
+ }
@@ -0,0 +1,133 @@
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-tests-found": "შედეგები არ მოიძებნა",
65
+ "clear-filters": "ფილტრების გასუფთავება",
66
+ "no-attachments-results": "დანართების ინფორმაცია არ არის ხელმისაწვდომი",
67
+ "no-history-results": "ისტორიის ინფორმაცია არ არის ხელმისაწვდომი",
68
+ "no-retries-results": "ხელახალი ცდების ინფორმ���ცია არ არის ხელმისაწვდომი",
69
+ "no-test-steps-results": "ტესტის ნაბიჯების ინფორმაცია ხელმისაწვდომი არ არის",
70
+ "no-test-case-results": "ტესტის შემთხვევის შედეგები არ არის"
71
+ },
72
+ "severity": {
73
+ "blocker": "ბლოკერი",
74
+ "critical": "კრიტიკული",
75
+ "normal": "ჩვეულებრივი",
76
+ "minor": "მნიშვნელობა",
77
+ "trivial": "უმნიშვნელო"
78
+ },
79
+ "execution": {
80
+ "name": "შესრულება",
81
+ "body": "ტესტის შინაარსი",
82
+ "setup": "მომზადება",
83
+ "teardown": "დასრულება"
84
+ },
85
+ "ui": {
86
+ "labels": "ლეიბლები",
87
+ "metadata": "მეტამონაცემები",
88
+ "parameters": "პარამეტრები",
89
+ "description": "აღწერა",
90
+ "links": "ბმულები",
91
+ "overview": "მიმოხილვა",
92
+ "history": "ისტორია",
93
+ "attachments": "დანართები",
94
+ "retries": "ხელახალი ცდები",
95
+ "error": "შეცდომა",
96
+ "goToStep": "გადადით საფეხურზე",
97
+ "showLess": "ნაკლების ჩვენება",
98
+ "showMore": "მეტის ჩვენება",
99
+ "copy": "კოპირება",
100
+ "at": "ზე"
101
+ },
102
+ "controls": {
103
+ "newTabAttachment": "დანართის გახსნა ახალ ჩანართში",
104
+ "nextTR": "შემდეგი ტესტის შედეგი",
105
+ "prevTR": "წინა ტესტის შედეგი",
106
+ "downloadAttachment": "დანართის ჩამოტვირთვა",
107
+ "backto": "უკან დაბრუნება",
108
+ "clipboard": "კოპირება ბუფერში",
109
+ "clipboardError": "ბუფერში კოპირება ვერ მოხერხდა. შესაძლოა, ფუნქცია არ იყოს მხარდაჭერილი თქვენს ბრაუზერში",
110
+ "clipboardSuccess": "წარმატებით დაკოპირდა",
111
+ "collapse": "ჩაკეცვა",
112
+ "expand": "გახსნა",
113
+ "fullscreen": "სრულ ეკრანზე",
114
+ "language": "ენის შეცვლა",
115
+ "openInNewTab": "გახსნა ახალ ჩანართში",
116
+ "openPreview": "გახსენი წინასწარი დათვალიერება",
117
+ "noSelectedTR": "არჩეული ტესტის შედეგი არ არის",
118
+ "comparison": "შედარება",
119
+ "showDiff": "მაჩვენე განსხვავება",
120
+ "viewMode": "ნახვის რეჟიმი",
121
+ "unified": "გაერთიანებული",
122
+ "side-by-side": "გვერდიგვერდ",
123
+ "compareBy": "შედარება",
124
+ "chars": "სიმბოლოები",
125
+ "words": "სიტყვები",
126
+ "lines": "ხაზები",
127
+ "actual": "ნამდვილი",
128
+ "expected": "მოსალოდნელი"
129
+ },
130
+ "errors": {
131
+ "missedAttachment": "დანართი ვერ მოიძებნა"
132
+ }
133
+ }