@allurereport/web-classic 3.0.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc--old.cjs +18 -0
- package/.babelrc.js +46 -0
- package/.eslintrc--old.cjs +125 -0
- package/.eslintrc.cjs +22 -0
- package/README.md +27 -0
- package/dist/multi/10.app-970f027d.js +1 -0
- package/dist/multi/222.app-970f027d.js +1 -0
- package/dist/multi/26.app-970f027d.js +1 -0
- package/dist/multi/302.app-970f027d.js +1 -0
- package/dist/multi/304.app-970f027d.js +1 -0
- package/dist/multi/369.app-970f027d.js +1 -0
- package/dist/multi/389.app-970f027d.js +1 -0
- package/dist/multi/498.app-970f027d.js +1 -0
- package/dist/multi/60.app-970f027d.js +1 -0
- package/dist/multi/643.app-970f027d.js +1 -0
- package/dist/multi/671.app-970f027d.js +1 -0
- package/dist/multi/725.app-970f027d.js +1 -0
- package/dist/multi/770.app-970f027d.js +1 -0
- package/dist/multi/848.app-970f027d.js +1 -0
- package/dist/multi/853.app-970f027d.js +1 -0
- package/dist/multi/872.app-970f027d.js +1 -0
- package/dist/multi/895.app-970f027d.js +1 -0
- package/dist/multi/920.app-970f027d.js +1 -0
- package/dist/multi/979.app-970f027d.js +1 -0
- package/dist/multi/991.app-970f027d.js +1 -0
- package/dist/multi/JetBrainsMono_vf-9e9649b6..woff2 +0 -0
- package/dist/multi/JetBrainsMono_vf-b9a9c326..woff +0 -0
- package/dist/multi/app-970f027d.js +2 -0
- package/dist/multi/app-970f027d.js.LICENSE.txt +25 -0
- package/dist/multi/manifest.json +28 -0
- package/dist/multi/pt-root-ui_vf-22fe60ca..woff +0 -0
- package/dist/multi/pt-root-ui_vf-9d251e8b..woff2 +0 -0
- package/dist/multi/styles-970f027d.css +283 -0
- package/dist/single/app-2babff54.js +2 -0
- package/dist/single/app-2babff54.js.LICENSE.txt +25 -0
- package/dist/single/manifest.json +3 -0
- package/package--old.json +106 -0
- package/package.json +107 -0
- package/postcss.config.js +5 -0
- package/src/assets/scss/_common.scss +142 -0
- package/src/assets/scss/code.scss +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +3 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +117 -0
- package/src/assets/scss/typography.scss +218 -0
- package/src/assets/scss/vars.scss +8 -0
- package/src/components/ArrowButton/index.tsx +36 -0
- package/src/components/ArrowButton/styles.scss +35 -0
- package/src/components/BaseLayout/index.tsx +23 -0
- package/src/components/BaseLayout/styles.scss +63 -0
- package/src/components/Behaviors/BehaviorsList.tsx +67 -0
- package/src/components/Behaviors/index.tsx +60 -0
- package/src/components/Behaviors/styles.scss +196 -0
- package/src/components/Categories/CategoriesList.tsx +67 -0
- package/src/components/Categories/index.tsx +60 -0
- package/src/components/Categories/styles.scss +196 -0
- package/src/components/Footer/FooterLogo.tsx +16 -0
- package/src/components/Footer/FooterVersion.tsx +33 -0
- package/src/components/Footer/index.tsx +13 -0
- package/src/components/Footer/styles.scss +14 -0
- package/src/components/Graphs/index.tsx +2 -0
- package/src/components/Header/index.tsx +14 -0
- package/src/components/Header/styles.scss +26 -0
- package/src/components/HeaderActions/Filters.tsx +90 -0
- package/src/components/HeaderActions/HeaderActions.tsx +59 -0
- package/src/components/HeaderActions/SortBy.tsx +128 -0
- package/src/components/HeaderActions/styles.scss +82 -0
- package/src/components/LanguagePicker/index.tsx +41 -0
- package/src/components/LanguagePicker/styles.scss +3 -0
- package/src/components/MainReport/index.tsx +19 -0
- package/src/components/Metadata/index.tsx +121 -0
- package/src/components/Metadata/styles.scss +146 -0
- package/src/components/MetadataButton/index.tsx +32 -0
- package/src/components/MetadataButton/styles.scss +53 -0
- package/src/components/Modal/ModalView.hbs +13 -0
- package/src/components/Modal/ModalView.js +43 -0
- package/src/components/Modal/index.tsx +174 -0
- package/src/components/Modal/styles.scss +126 -0
- package/src/components/Overview/index.tsx +9 -0
- package/src/components/Packages/PackagesList.tsx +67 -0
- package/src/components/Packages/index.tsx +59 -0
- package/src/components/Packages/styles.scss +196 -0
- package/src/components/ReportBody/Filters.tsx +92 -0
- package/src/components/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/ReportBody/SortBy.tsx +132 -0
- package/src/components/ReportBody/context.tsx +106 -0
- package/src/components/ReportBody/index.tsx +71 -0
- package/src/components/ReportBody/styles.scss +64 -0
- package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/ReportHeader/ReportHeaderLogo.tsx +10 -0
- package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/ReportHeader/index.tsx +33 -0
- package/src/components/ReportHeader/styles.scss +49 -0
- package/src/components/ReportLogo/index.tsx +16 -0
- package/src/components/ReportLogo/styles.scss +20 -0
- package/src/components/ReportLogoFull/index.tsx +20 -0
- package/src/components/ReportLogoFull/styles.scss +7 -0
- package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/ReportMetadata/MetadataSummary.tsx +81 -0
- package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
- package/src/components/ReportMetadata/index.tsx +46 -0
- package/src/components/ReportMetadata/styles.scss +99 -0
- package/src/components/SideBySide/index.tsx +54 -0
- package/src/components/SideBySide/styles.scss +59 -0
- package/src/components/SideNav/SideNav.tsx +78 -0
- package/src/components/SideNav/SideNavView.hbs +39 -0
- package/src/components/SideNav/SideNavView.js +81 -0
- package/src/components/SideNav/styles.scss +126 -0
- package/src/components/Suites/index.tsx +62 -0
- package/src/components/Suites/styles.scss +10 -0
- package/src/components/Tabs/index.tsx +33 -0
- package/src/components/Tabs/styles.scss +56 -0
- package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/TestResult/TestResultDropdown/index.tsx +23 -0
- package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/TestResult/TestResultEmpty/index.tsx +33 -0
- package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/TestResult/TestResultError/index.tsx +48 -0
- package/src/components/TestResult/TestResultError/styles.scss +51 -0
- package/src/components/TestResult/TestResultHeader/index.tsx +53 -0
- package/src/components/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +67 -0
- package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
- package/src/components/TestResult/TestResultInfo/index.tsx +79 -0
- package/src/components/TestResult/TestResultInfo/styles.scss +50 -0
- package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
- package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
- package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/TestResult/TestResultOverview.tsx +40 -0
- package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
- package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +49 -0
- package/src/components/TestResult/TestResultRetriesView/index.tsx +20 -0
- package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/TestResult/TestResultSetup/index.tsx +49 -0
- package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
- package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/TestResult/TestResultStatus/index.tsx +26 -0
- package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +12 -0
- package/src/components/TestResult/TestResultSteps/attachment.tsx +68 -0
- package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +20 -0
- package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +32 -0
- package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +15 -0
- package/src/components/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/TestResult/TestResultSteps/styles.scss +225 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +77 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +78 -0
- package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
- package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/TestResult/TestResultTabs/index.tsx +59 -0
- package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/TestResult/TestResultView.hbs +32 -0
- package/src/components/TestResult/TestResultView.js +90 -0
- package/src/components/TestResult/index.tsx +54 -0
- package/src/components/TestResult/styles.scss +29 -0
- package/src/components/TestResultView/index.tsx +31 -0
- package/src/components/ThemeButton/ThemeButton.tsx +20 -0
- package/src/components/Timeline/index.tsx +2 -0
- package/src/components/Tree/Tree.tsx +76 -0
- package/src/components/Tree/TreeHeader.tsx +82 -0
- package/src/components/Tree/TreeItem.tsx +49 -0
- package/src/components/Tree/TreeItemIcon.tsx +32 -0
- package/src/components/Tree/index.tsx +60 -0
- package/src/components/Tree/styles.scss +185 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +40 -0
- package/src/index.js +52 -0
- package/src/index.tsx +60 -0
- package/src/mixins.scss +128 -0
- package/src/rtl.scss +19 -0
- package/src/stores/behaviors.ts +127 -0
- package/src/stores/categories.ts +127 -0
- package/src/stores/chart.ts +32 -0
- package/src/stores/envInfo.ts +34 -0
- package/src/stores/index.ts +4 -0
- package/src/stores/locale.ts +83 -0
- package/src/stores/packages.ts +127 -0
- package/src/stores/router.ts +55 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/tabs.ts +7 -0
- package/src/stores/testResults.ts +66 -0
- package/src/stores/theme.ts +33 -0
- package/src/stores/tree.ts +127 -0
- package/src/stores/types.ts +5 -0
- package/src/styles.scss +91 -0
- package/src/translations/am.json +127 -0
- package/src/translations/az.json +127 -0
- package/src/translations/br.json +214 -0
- package/src/translations/constants.ts +124 -0
- package/src/translations/de.json +127 -0
- package/src/translations/en.json +128 -0
- package/src/translations/es.json +118 -0
- package/src/translations/fr.json +118 -0
- package/src/translations/he.json +118 -0
- package/src/translations/isv.json +216 -0
- package/src/translations/it.json +118 -0
- package/src/translations/ja.json +118 -0
- package/src/translations/ka.json +118 -0
- package/src/translations/kr.json +118 -0
- package/src/translations/nl.json +118 -0
- package/src/translations/pl.json +116 -0
- package/src/translations/pt.json +118 -0
- package/src/translations/ru.json +116 -0
- package/src/translations/sv.json +118 -0
- package/src/translations/tr.json +118 -0
- package/src/translations/zh.json +118 -0
- package/src/types/globals.d.ts +13 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -0
- package/src/utils/capitalize.ts +6 -0
- package/src/utils/copyToClipboard.ts +16 -0
- package/src/utils/isMac.ts +8 -0
- package/src/utils/navigate.ts +7 -0
- package/src/utils/statuses.js +1 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +139 -0
- package/src/variables.scss +71 -0
- package/test/utils/treeFilters.test.ts +448 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +85 -0
- package/vitest.config.ts +18 -0
- package/webpack.config--old.js +127 -0
- package/webpack.config.js +108 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import { fetchReportJsonData } from "@allurereport/web-commons";
|
|
2
|
+
import { computed, signal } from "@preact/signals";
|
|
3
|
+
import type { AwesomeStatus, AwesomeTree, AwesomeTreeGroup } from "types";
|
|
4
|
+
import type { StoreSignalState } from "@/stores/types";
|
|
5
|
+
import { createRecursiveTree, isRecursiveTreeEmpty } from "@/utils/treeFilters";
|
|
6
|
+
|
|
7
|
+
export type TreeSortBy = "order" | "duration" | "status" | "alphabet";
|
|
8
|
+
export type TreeDirection = "asc" | "desc";
|
|
9
|
+
export type TreeFilters = "flaky" | "retry" | "new";
|
|
10
|
+
export type TreeFiltersState = {
|
|
11
|
+
query: string;
|
|
12
|
+
status: AwesomeStatus;
|
|
13
|
+
filter: Record<TreeFilters, boolean>;
|
|
14
|
+
sortBy: TreeSortBy;
|
|
15
|
+
direction: TreeDirection;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const treeStore = signal<StoreSignalState<AwesomeTree>>({
|
|
19
|
+
loading: true,
|
|
20
|
+
error: undefined,
|
|
21
|
+
data: undefined,
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
export const noTests = computed(() => !Object.keys(treeStore?.value?.data?.leavesById).length);
|
|
25
|
+
|
|
26
|
+
export const treeFiltersStore = signal<TreeFiltersState>({
|
|
27
|
+
query: "",
|
|
28
|
+
status: "total",
|
|
29
|
+
filter: {
|
|
30
|
+
flaky: false,
|
|
31
|
+
retry: false,
|
|
32
|
+
new: false,
|
|
33
|
+
},
|
|
34
|
+
sortBy: "order",
|
|
35
|
+
direction: "asc",
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
export const filteredTree = computed(() => {
|
|
39
|
+
const { root, leavesById, groupsById } = treeStore.value.data;
|
|
40
|
+
|
|
41
|
+
return createRecursiveTree({
|
|
42
|
+
group: root as AwesomeTreeGroup,
|
|
43
|
+
leavesById,
|
|
44
|
+
groupsById,
|
|
45
|
+
filterOptions: treeFiltersStore.value,
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
export const noTestsFound = computed(() => {
|
|
50
|
+
return isRecursiveTreeEmpty(filteredTree.value);
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
export const clearTreeFilters = () => {
|
|
54
|
+
treeFiltersStore.value = {
|
|
55
|
+
query: "",
|
|
56
|
+
status: "total",
|
|
57
|
+
filter: {
|
|
58
|
+
flaky: false,
|
|
59
|
+
retry: false,
|
|
60
|
+
new: false,
|
|
61
|
+
},
|
|
62
|
+
sortBy: "order",
|
|
63
|
+
direction: "asc",
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export const setTreeQuery = (query: string) => {
|
|
68
|
+
treeFiltersStore.value = {
|
|
69
|
+
...treeFiltersStore.value,
|
|
70
|
+
query,
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export const setTreeStatus = (status: AwesomeStatus) => {
|
|
75
|
+
treeFiltersStore.value = {
|
|
76
|
+
...treeFiltersStore.value,
|
|
77
|
+
status,
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
export const setTreeSortBy = (sortBy: TreeSortBy) => {
|
|
82
|
+
treeFiltersStore.value = {
|
|
83
|
+
...treeFiltersStore.value,
|
|
84
|
+
sortBy,
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export const setTreeDirection = (direction: TreeDirection) => {
|
|
89
|
+
treeFiltersStore.value = {
|
|
90
|
+
...treeFiltersStore.value,
|
|
91
|
+
direction,
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const setTreeFilter = (filterKey: TreeFilters, value: boolean) => {
|
|
96
|
+
treeFiltersStore.value = {
|
|
97
|
+
...treeFiltersStore.value,
|
|
98
|
+
filter: {
|
|
99
|
+
...treeFiltersStore.value.filter,
|
|
100
|
+
[filterKey]: value,
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
export const fetchTreeData = async () => {
|
|
106
|
+
treeStore.value = {
|
|
107
|
+
...treeStore.value,
|
|
108
|
+
loading: true,
|
|
109
|
+
error: undefined,
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
try {
|
|
113
|
+
const res = await fetchReportJsonData<AwesomeTree>("widgets/tree.json");
|
|
114
|
+
|
|
115
|
+
treeStore.value = {
|
|
116
|
+
data: res,
|
|
117
|
+
error: undefined,
|
|
118
|
+
loading: false,
|
|
119
|
+
};
|
|
120
|
+
} catch (e) {
|
|
121
|
+
treeStore.value = {
|
|
122
|
+
...treeStore.value,
|
|
123
|
+
error: e.message,
|
|
124
|
+
loading: false,
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
};
|
package/src/styles.scss
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
//@import "../../../node_modules/normalize-css/normalize.css";
|
|
2
|
+
//@import "../../../node_modules/highlight.js/styles/github-gist.css";
|
|
3
|
+
@import "./rtl.scss";
|
|
4
|
+
@import "./blocks/alert/styles.scss";
|
|
5
|
+
@import "./blocks/attachment-row/styles.scss";
|
|
6
|
+
@import "./blocks/bar/styles.scss";
|
|
7
|
+
@import "./blocks/button/styles.scss";
|
|
8
|
+
@import "./blocks/island/styles.scss";
|
|
9
|
+
@import "./blocks/label/styles.scss";
|
|
10
|
+
@import "./blocks/link/styles.scss";
|
|
11
|
+
@import "./blocks/spinner/styles.scss";
|
|
12
|
+
@import "./blocks/splash/styles.scss";
|
|
13
|
+
@import "./blocks/step-stats/styles.scss";
|
|
14
|
+
@import "./blocks/text/styles.scss";
|
|
15
|
+
@import "./blocks/widget/styles.scss";
|
|
16
|
+
@import "./blocks/parameters-table/styles.scss";
|
|
17
|
+
@import "./variables.scss";
|
|
18
|
+
|
|
19
|
+
body {
|
|
20
|
+
color: $text-color;
|
|
21
|
+
font-family: Helvetica, Arial, sans-serif;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
* {
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
html,
|
|
29
|
+
body {
|
|
30
|
+
height: 100%;
|
|
31
|
+
font-size: 14px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
#content {
|
|
35
|
+
height: 100%;
|
|
36
|
+
min-height: 100%;
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-direction: column;
|
|
40
|
+
|
|
41
|
+
.app {
|
|
42
|
+
flex: 1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
& > .spinner {
|
|
46
|
+
position: absolute;
|
|
47
|
+
top: 50%;
|
|
48
|
+
left: 50%;
|
|
49
|
+
transform: translate(-50%, -50%);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.view {
|
|
54
|
+
padding: 0 15px;
|
|
55
|
+
margin: 0 auto;
|
|
56
|
+
&_narrow {
|
|
57
|
+
max-width: 1100px;
|
|
58
|
+
}
|
|
59
|
+
&-small {
|
|
60
|
+
max-width: 300px;
|
|
61
|
+
}
|
|
62
|
+
&-medium {
|
|
63
|
+
max-width: 600px;
|
|
64
|
+
}
|
|
65
|
+
&-large {
|
|
66
|
+
max-width: 1200px;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.clickable {
|
|
71
|
+
cursor: pointer;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.long-line {
|
|
75
|
+
word-break: break-word;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.line-nobreak {
|
|
79
|
+
white-space: nowrap;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.preformated-text {
|
|
83
|
+
white-space: pre-wrap;
|
|
84
|
+
word-wrap: break-word;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.line-ellipsis {
|
|
88
|
+
white-space: nowrap;
|
|
89
|
+
text-overflow: ellipsis;
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
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
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "արգելափակում",
|
|
72
|
+
"critical": "կրիտիկական",
|
|
73
|
+
"normal": "նորմալ",
|
|
74
|
+
"minor": "աննշան",
|
|
75
|
+
"trivial": "աննշան"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "Կատարում",
|
|
79
|
+
"body": "Թեստի մարմին",
|
|
80
|
+
"setup": "Պատրաստում",
|
|
81
|
+
"teardown": "Ավարտում"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Պիտակներ",
|
|
85
|
+
"metadata": "Մետատվյալներ",
|
|
86
|
+
"parameters": "Պարամետրեր",
|
|
87
|
+
"description": "Նկարագրություն",
|
|
88
|
+
"links": "Հղումներ",
|
|
89
|
+
"overview": "Ակնարկ",
|
|
90
|
+
"history": "Պատմություն",
|
|
91
|
+
"attachments": "Կցորդներ",
|
|
92
|
+
"retries": "Կրկնություններ",
|
|
93
|
+
"error": "Սխալ",
|
|
94
|
+
"goToStep": "Գնալ քայլին",
|
|
95
|
+
"showLess": "Ցուցադրել պակաս",
|
|
96
|
+
"showMore": "Ցուցադրել ավելին",
|
|
97
|
+
"copy": "Պատճենել",
|
|
98
|
+
"at": "է"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Բացել նոր ներդիրում",
|
|
102
|
+
"nextTR": "Հաջորդ թեստի արդյունքը",
|
|
103
|
+
"prevTR": "Նախորդ թեստի արդյունքը",
|
|
104
|
+
"downloadAttachment": "Ներբեռնել կցորդը",
|
|
105
|
+
"backto": "Վերադառնալ",
|
|
106
|
+
"clipboard": "Պատճենել սեղմատախտակին",
|
|
107
|
+
"clipboardError": "Սխալ. Հավանաբար ձեր զննարկիչը չի աջակցում այս գործառույթին",
|
|
108
|
+
"clipboardSuccess": "Հաջողությամբ պատճենվեց",
|
|
109
|
+
"collapse": "Կծկել",
|
|
110
|
+
"expand": "Ընդլայնել",
|
|
111
|
+
"fullscreen": "Լրիվ էկրան",
|
|
112
|
+
"language": "Փոխել լեզուն",
|
|
113
|
+
"openInNewTab": "Բացել նոր ներդիրում"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "Կցորդը չի գտնվել"
|
|
117
|
+
},
|
|
118
|
+
"nav": {
|
|
119
|
+
"overview": "Ակնարկ",
|
|
120
|
+
"behaviors": "Վարքագծեր",
|
|
121
|
+
"categories": "Կատեգորիաներ",
|
|
122
|
+
"graphs": "Գրաֆիկներ",
|
|
123
|
+
"packages": "Փաթեթներ",
|
|
124
|
+
"suites": "Հավաքածուներ",
|
|
125
|
+
"timeline": "Ժամանակացույց"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"statuses": {
|
|
3
|
+
"passed": "keçdi",
|
|
4
|
+
"failed": "uğursuz",
|
|
5
|
+
"broken": "sınıq",
|
|
6
|
+
"skipped": "keçildi",
|
|
7
|
+
"unknown": "naməlum",
|
|
8
|
+
"total": "cəmi",
|
|
9
|
+
"flakyTests": "etibarsız",
|
|
10
|
+
"newTests": "yeni",
|
|
11
|
+
"retryTests": "təkrar"
|
|
12
|
+
},
|
|
13
|
+
"testSummary": {
|
|
14
|
+
"all": "Bütün testlər",
|
|
15
|
+
"flaky": "Etibarsız testlər",
|
|
16
|
+
"retry": "Təkrar testlər",
|
|
17
|
+
"new": "Yeni testlər"
|
|
18
|
+
},
|
|
19
|
+
"tabs": {
|
|
20
|
+
"total": "Bütün"
|
|
21
|
+
},
|
|
22
|
+
"search": {
|
|
23
|
+
"search": "Axtarış",
|
|
24
|
+
"search-placeholder": "Ad və ya ID"
|
|
25
|
+
},
|
|
26
|
+
"filters": {
|
|
27
|
+
"more-filters": "Daha çox filtr",
|
|
28
|
+
"enable-filter": "\"{filter}\" filtrlərini aktiv edin",
|
|
29
|
+
"flaky": "Etibarsız",
|
|
30
|
+
"retry": "Təkrar",
|
|
31
|
+
"new": "Yeni"
|
|
32
|
+
},
|
|
33
|
+
"sort-by": {
|
|
34
|
+
"sort-by-text": "Sıralamaq üzrə:",
|
|
35
|
+
"sort-by-category": "Sıralamaq üzrə",
|
|
36
|
+
"direction-category": "İstiqamət"
|
|
37
|
+
},
|
|
38
|
+
"sort-by.values": {
|
|
39
|
+
"order": "Sıra",
|
|
40
|
+
"alphabet": "Əlifba",
|
|
41
|
+
"duration": "Müddət",
|
|
42
|
+
"status": "Status"
|
|
43
|
+
},
|
|
44
|
+
"sort-by.directions": {
|
|
45
|
+
"order-desc": "Sonuncu – Birinci",
|
|
46
|
+
"order-asc": "Birinci – Sonuncu",
|
|
47
|
+
"order-asc-short": "Birinci",
|
|
48
|
+
"order-desc-short": "Sonuncu",
|
|
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": "Filtr siyahısına uyğun",
|
|
58
|
+
"status-desc": "Tərsinə çevrilmiş",
|
|
59
|
+
"status-asc-short": "Adi",
|
|
60
|
+
"status-desc-short": "Tərs"
|
|
61
|
+
},
|
|
62
|
+
"empty": {
|
|
63
|
+
"no-results": "Nəticə tapılmadı",
|
|
64
|
+
"no-tests-found": "Nəticə tapılmadı",
|
|
65
|
+
"clear-filters": "Filtrləri təmizlə",
|
|
66
|
+
"no-attachments-results": "Əlavə məlumatı mövcud deyil",
|
|
67
|
+
"no-history-results": "Tarixçə məlumatı mövcud deyil",
|
|
68
|
+
"no-retries-results": "Təkrar məlumatı mövcud deyil"
|
|
69
|
+
},
|
|
70
|
+
"severity": {
|
|
71
|
+
"blocker": "bloklayıcı",
|
|
72
|
+
"critical": "kritik",
|
|
73
|
+
"normal": "normal",
|
|
74
|
+
"minor": "kiçik",
|
|
75
|
+
"trivial": "əhəmiyyətsiz"
|
|
76
|
+
},
|
|
77
|
+
"execution": {
|
|
78
|
+
"name": "İcra",
|
|
79
|
+
"body": "Test məzmunu",
|
|
80
|
+
"setup": "Hazırlıq",
|
|
81
|
+
"teardown": "Yekunlaşma"
|
|
82
|
+
},
|
|
83
|
+
"ui": {
|
|
84
|
+
"labels": "Etiketlər",
|
|
85
|
+
"metadata": "Metaməlumat",
|
|
86
|
+
"parameters": "Parametrlər",
|
|
87
|
+
"description": "Təsvir",
|
|
88
|
+
"links": "Keçidlər",
|
|
89
|
+
"overview": "Ümumi baxış",
|
|
90
|
+
"history": "Tarixçə",
|
|
91
|
+
"attachments": "Əlavələr",
|
|
92
|
+
"retries": "Təkrarlar",
|
|
93
|
+
"error": "Səhv",
|
|
94
|
+
"goToStep": "Addıma keç",
|
|
95
|
+
"showLess": "Daha az göstər",
|
|
96
|
+
"showMore": "Daha çox göstər",
|
|
97
|
+
"copy": "Kopyala",
|
|
98
|
+
"at": "üçün"
|
|
99
|
+
},
|
|
100
|
+
"controls": {
|
|
101
|
+
"newTabAttachment": "Yeni sekmede aç",
|
|
102
|
+
"nextTR": "Növbəti test nəticəsi",
|
|
103
|
+
"prevTR": "Əvvəlki test nəticəsi",
|
|
104
|
+
"downloadAttachment": "Əlavəni yüklə",
|
|
105
|
+
"backto": "Geri dön",
|
|
106
|
+
"clipboard": "Panoya kopyala",
|
|
107
|
+
"clipboardError": "Səhv. Görünür, bu xüsusiyyət brauzeriniz tərəfindən dəstəklənmir",
|
|
108
|
+
"clipboardSuccess": "Uğurla kopyalandı",
|
|
109
|
+
"collapse": "Daralt",
|
|
110
|
+
"expand": "Genişləndir",
|
|
111
|
+
"fullscreen": "Tam ekran",
|
|
112
|
+
"language": "Dili dəyiş",
|
|
113
|
+
"openInNewTab": "Yeni tabda aç"
|
|
114
|
+
},
|
|
115
|
+
"errors": {
|
|
116
|
+
"missedAttachment": "Əlavə tapılmadı"
|
|
117
|
+
},
|
|
118
|
+
"nav": {
|
|
119
|
+
"overview": "İcmal",
|
|
120
|
+
"behaviors": "Davranışlar",
|
|
121
|
+
"categories": "Kateqoriyalar",
|
|
122
|
+
"graphs": "Qrafiklər",
|
|
123
|
+
"packages": "Paketlər",
|
|
124
|
+
"suites": "Dəstlər",
|
|
125
|
+
"timeline": "Zaman çizelgesi"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"chart": {
|
|
3
|
+
"duration": {
|
|
4
|
+
"empty": "Não há nada para mostrar",
|
|
5
|
+
"name": "Duração"
|
|
6
|
+
},
|
|
7
|
+
"severity": {
|
|
8
|
+
"name": "Severidade"
|
|
9
|
+
},
|
|
10
|
+
"status": {
|
|
11
|
+
"name": "Situação"
|
|
12
|
+
},
|
|
13
|
+
"trend": {
|
|
14
|
+
"empty": "Não há nada para mostrar"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"component": {
|
|
18
|
+
"statusToggle": {
|
|
19
|
+
"hideCases": "Ocultar resultados dos testes com situação {{status}}",
|
|
20
|
+
"showCases": "Mostrar resultados dos testes com situação {{status}}"
|
|
21
|
+
},
|
|
22
|
+
"tree": {
|
|
23
|
+
"download": "Download CSV",
|
|
24
|
+
"empty": "Não há itens",
|
|
25
|
+
"filter": "Filtrar por situação",
|
|
26
|
+
"filtered": {
|
|
27
|
+
"shown": "mostrar {{count}}",
|
|
28
|
+
"total": "resultado do teste {{count}}",
|
|
29
|
+
"total_plural": "resultados dos testes {{count}}"
|
|
30
|
+
},
|
|
31
|
+
"groups": "Alternar informações do grupo",
|
|
32
|
+
"time": {
|
|
33
|
+
"max": {
|
|
34
|
+
"name": "Max",
|
|
35
|
+
"tooltip": "Teste mais demorado"
|
|
36
|
+
},
|
|
37
|
+
"sum": {
|
|
38
|
+
"name": "Soma",
|
|
39
|
+
"tooltip": "Soma da duração de todos os testes"
|
|
40
|
+
},
|
|
41
|
+
"total": {
|
|
42
|
+
"name": "Total",
|
|
43
|
+
"tooltip": "Duração de inicio do primeiro teste até o ultimo teste finalizar"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"unknown": "Grupo vazio"
|
|
47
|
+
},
|
|
48
|
+
"widgetStatus": {
|
|
49
|
+
"showAll": "Mostrar tudo",
|
|
50
|
+
"total": "total de item {{count}}",
|
|
51
|
+
"total_plural": "total de itens {{count}}"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"controls": {
|
|
55
|
+
"backto": "Voltar para",
|
|
56
|
+
"clipboard": "Copiar para área de transferência",
|
|
57
|
+
"clipboardError": "Não é possível copiar o valor para área de transferência. Parece que está funcionalidade não é suportada pelo seu browser",
|
|
58
|
+
"clipboardSuccess": "Copiado com sucesso",
|
|
59
|
+
"collapse": "Reduzir",
|
|
60
|
+
"expand": "Expandir",
|
|
61
|
+
"fullscreen": "Tela cheia",
|
|
62
|
+
"language": "Mudar a linguagem"
|
|
63
|
+
},
|
|
64
|
+
"errors": {
|
|
65
|
+
"missedAttachment": "Anexo não encontrado",
|
|
66
|
+
"notFound": "Não encontrado"
|
|
67
|
+
},
|
|
68
|
+
"marks": {
|
|
69
|
+
"flaky": "Inconsistente",
|
|
70
|
+
"newBroken": "Novo quebrado",
|
|
71
|
+
"newFailed": "Novo falhou",
|
|
72
|
+
"newPassed": "Novo passou",
|
|
73
|
+
"retriesStatusChange": "Status alterado após nova tentativa"
|
|
74
|
+
},
|
|
75
|
+
"sorter": {
|
|
76
|
+
"duration": "duração",
|
|
77
|
+
"name": "nome",
|
|
78
|
+
"order": "ordem",
|
|
79
|
+
"status": "situação"
|
|
80
|
+
},
|
|
81
|
+
"status": {
|
|
82
|
+
"broken": "Quebrado",
|
|
83
|
+
"failed": "Falhou",
|
|
84
|
+
"passed": "Passou",
|
|
85
|
+
"skipped": "Ignorado",
|
|
86
|
+
"unknown": "Desconhecido"
|
|
87
|
+
},
|
|
88
|
+
"tab": {
|
|
89
|
+
"categories": {
|
|
90
|
+
"name": "Categorias"
|
|
91
|
+
},
|
|
92
|
+
"graph": {
|
|
93
|
+
"name": "Gráficos"
|
|
94
|
+
},
|
|
95
|
+
"overview": {
|
|
96
|
+
"name": "Visão geral"
|
|
97
|
+
},
|
|
98
|
+
"suites": {
|
|
99
|
+
"name": "Suítes"
|
|
100
|
+
},
|
|
101
|
+
"timeline": {
|
|
102
|
+
"name": "Linha do tempo",
|
|
103
|
+
"selected": "Selecionado {{count}} teste ({{percent}}%) com duração acima de {{duration}}",
|
|
104
|
+
"selected_plural": "Selecionados {{count}} testes ({{percent}}%) com duração acima de {{duration}}"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"testResult": {
|
|
108
|
+
"categories": {
|
|
109
|
+
"name": "Categorias"
|
|
110
|
+
},
|
|
111
|
+
"description": {
|
|
112
|
+
"name": "Descrição"
|
|
113
|
+
},
|
|
114
|
+
"duration": {
|
|
115
|
+
"name": "Duração"
|
|
116
|
+
},
|
|
117
|
+
"execution": {
|
|
118
|
+
"body": "Corpo do teste",
|
|
119
|
+
"name": "Execução",
|
|
120
|
+
"setup": "Pré-execução",
|
|
121
|
+
"teardown": "Pós-execução"
|
|
122
|
+
},
|
|
123
|
+
"history": {
|
|
124
|
+
"name": "Histórico",
|
|
125
|
+
"successRate": "Taxa de sucesso"
|
|
126
|
+
},
|
|
127
|
+
"links": {
|
|
128
|
+
"name": "Links"
|
|
129
|
+
},
|
|
130
|
+
"overview": {
|
|
131
|
+
"name": "Visão geral"
|
|
132
|
+
},
|
|
133
|
+
"owner": {
|
|
134
|
+
"name": "Proprietário"
|
|
135
|
+
},
|
|
136
|
+
"parameters": {
|
|
137
|
+
"name": "Parâmetros"
|
|
138
|
+
},
|
|
139
|
+
"retries": {
|
|
140
|
+
"empty": "Não há informação disponível sobre as tentativas de testes.",
|
|
141
|
+
"name": "Tentativas"
|
|
142
|
+
},
|
|
143
|
+
"severity": {
|
|
144
|
+
"name": "Severidade"
|
|
145
|
+
},
|
|
146
|
+
"stats": {
|
|
147
|
+
"count": {
|
|
148
|
+
"attachments": "{{count}} anexo",
|
|
149
|
+
"attachments_plural": "{{count}} anexos",
|
|
150
|
+
"parameters": "{{count}} parâmetro",
|
|
151
|
+
"parameters_plural": "{{count}} parâmetros",
|
|
152
|
+
"steps": "{{count}} sub-passo",
|
|
153
|
+
"steps_plural": "{{count}} sub-passos"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"status": {
|
|
157
|
+
"empty": "Detalhes da situação vazio.",
|
|
158
|
+
"trace": "Mostrar trace"
|
|
159
|
+
},
|
|
160
|
+
"tags": {
|
|
161
|
+
"name": "Tags"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"widget": {
|
|
165
|
+
"categories": {
|
|
166
|
+
"name": "Categorias"
|
|
167
|
+
},
|
|
168
|
+
"categoriesTrend": {
|
|
169
|
+
"name": "Tendência das categorias"
|
|
170
|
+
},
|
|
171
|
+
"durationTrend": {
|
|
172
|
+
"name": "Tendência das durações"
|
|
173
|
+
},
|
|
174
|
+
"environment": {
|
|
175
|
+
"empty": "Não há variáveis de ambiente.",
|
|
176
|
+
"name": "Ambiente",
|
|
177
|
+
"showAll": "Mostrar tudo"
|
|
178
|
+
},
|
|
179
|
+
"executors": {
|
|
180
|
+
"empty": "Não há informação sobre os executores dos testes.",
|
|
181
|
+
"name": "Executores",
|
|
182
|
+
"unknown": "Desconhecido"
|
|
183
|
+
},
|
|
184
|
+
"launches": {
|
|
185
|
+
"empty": "Não há informações sobre execuções",
|
|
186
|
+
"name": "Execuções"
|
|
187
|
+
},
|
|
188
|
+
"retryTrend": {
|
|
189
|
+
"name": "Tendência das tentativas"
|
|
190
|
+
},
|
|
191
|
+
"suites": {
|
|
192
|
+
"name": "Suítes"
|
|
193
|
+
},
|
|
194
|
+
"summary": {
|
|
195
|
+
"aggregatedName": "Relatório agregado",
|
|
196
|
+
"launches": "execução",
|
|
197
|
+
"launches_plural": "execuções",
|
|
198
|
+
"testResults": "caso de teste",
|
|
199
|
+
"testResults_plural": "casos de teste"
|
|
200
|
+
},
|
|
201
|
+
"trend": {
|
|
202
|
+
"name": "Tendência"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"nav": {
|
|
206
|
+
"overview": "Visão geral",
|
|
207
|
+
"behaviors": "Comportamentos",
|
|
208
|
+
"categories": "Categorias",
|
|
209
|
+
"graphs": "Gráficos",
|
|
210
|
+
"packages": "Pacotes",
|
|
211
|
+
"suites": "Conjuntos",
|
|
212
|
+
"timeline": "Linha do tempo"
|
|
213
|
+
}
|
|
214
|
+
}
|