-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsite.config.js
More file actions
101 lines (100 loc) · 3.15 KB
/
site.config.js
File metadata and controls
101 lines (100 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const siteConfig = {
strings: {
formatting: {
missingValue: "Not tracked",
},
statistics: {
title: "Statistics",
intro:
"This page tracks how web-features coverage changes over time for browser-compat-data keys and caniuse IDs.",
summaryLabel: "Latest statistics",
summary: {
features: {
label: "Features",
changeLabel: "features",
valueLabel: "features on",
},
bcdKeysUnmapped: {
label: "Unmapped BCD keys",
changeLabel: "keys",
valueLabel: "unmapped keys on",
},
bcdCoveragePercent: {
label: "BCD coverage",
changeLabel: "points",
valueLabel: "coverage on",
changeSuffix: " pp",
},
caniuseIdsUnmapped: {
label: "Unmapped caniuse IDs",
changeLabel: "IDs",
valueLabel: "unmapped IDs on",
},
caniuseCoveragePercent: {
label: "caniuse coverage",
changeLabel: "points",
valueLabel: "coverage on",
changeSuffix: " pp",
},
},
ranges: {
label: "Chart time range",
"1m": "1 month",
"3m": "3 months",
"6m": "6 months",
"1y": "1 year",
all: "All",
},
chart: {
heading: "Coverage trends",
datasets: {
bcdKeysUnmapped: "Unmapped BCD keys",
caniuseIdsUnmapped: "Unmapped caniuse IDs",
features: "Features",
bcdCoveragePercent: "BCD coverage",
standardNonDeprecatedBcdCoveragePercent:
"Standard non-deprecated BCD coverage",
caniuseCoveragePercent: "caniuse coverage",
},
axes: {
counts: "Count",
percent: "Coverage (%)",
},
percentSuffix: "%",
tooltipMissingValue: "n/a",
},
table: {
summary: "Data table",
heading: "Data table",
caption: "web-features coverage statistics over time",
columns: {
date: "Date",
features: "Features",
bcdKeysMapped: "Mapped BCD keys",
bcdKeysUnmapped: "Unmapped BCD keys",
bcdCoveragePercent: "BCD coverage",
standardNonDeprecatedBcdKeysMapped:
"Mapped standard non-deprecated BCD keys",
standardNonDeprecatedBcdKeysUnmapped:
"Unmapped standard non-deprecated BCD keys",
standardNonDeprecatedBcdCoveragePercent:
"Standard non-deprecated BCD coverage",
caniuseIdsMapped: "Mapped caniuse IDs",
caniuseIdsUnmapped: "Unmapped caniuse IDs",
caniuseCoveragePercent: "caniuse coverage",
},
mappedCountSeparator: " of ",
},
source: {
beforeLink: "The underlying data is available in ",
linkText: "statistics.json",
betweenLinks:
". Historical rows before this page was added were seeded from weekly report comments in ",
issueLinkText: "web-features issue #788",
afterIssueLink:
"; new rows are generated from installed package data when the site rebuilds.",
},
},
},
};
export default siteConfig;