Skip to content

Commit c68218b

Browse files
authored
Merge pull request #11035 from ethereum/staging
Deploy v7.20.0
2 parents 7555fe3 + dee1d22 commit c68218b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1900
-1062
lines changed

.all-contributorsrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10422,6 +10422,16 @@
1042210422
"contributions": [
1042310423
"ideas"
1042410424
]
10425+
},
10426+
{
10427+
"login": "z0rats",
10428+
"name": "Alex",
10429+
"avatar_url": "https://avatars.githubusercontent.com/u/32142853?v=4",
10430+
"profile": "http://t.me/mevsinternet",
10431+
"contributions": [
10432+
"doc",
10433+
"bug"
10434+
]
1042510435
}
1042610436
],
1042710437
"contributorsPerLine": 7,

.storybook/i18next.ts

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import i18n, { Resource } from "i18next"
22
import { initReactI18next } from "gatsby-plugin-react-i18next"
3+
import fs from "fs"
34

45
export const baseLocales = {
56
en: { title: "English", left: "En" },
@@ -9,7 +10,13 @@ export const baseLocales = {
910
}
1011

1112
// Only i18n files named in this array are being exposed to Storybook. Add filenames as necessary.
12-
const ns = ["common", "page-about", "page-upgrades", "page-developers-index"]
13+
const ns = [
14+
"common",
15+
"glossary",
16+
"page-about",
17+
"page-upgrades",
18+
"page-developers-index",
19+
]
1320
const supportedLngs = Object.keys(baseLocales)
1421

1522
/**
@@ -19,11 +26,22 @@ const supportedLngs = Object.keys(baseLocales)
1926
const resources: Resource = ns.reduce((acc, n) => {
2027
supportedLngs.forEach((lng) => {
2128
if (!acc[lng]) acc[lng] = {}
22-
acc[lng] = {
23-
translation: {
24-
...acc[lng].translation,
25-
...require(`../src/intl/${lng}/${n}.json`),
26-
},
29+
try {
30+
acc[lng] = {
31+
translation: {
32+
...acc[lng].translation,
33+
34+
...require(`../src/intl/${lng}/${n}.json`),
35+
},
36+
}
37+
} catch {
38+
acc[lng] = {
39+
translation: {
40+
...acc[lng].translation,
41+
42+
...require(`../src/intl/en/${n}.json`),
43+
},
44+
}
2745
}
2846
})
2947
return acc

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1630,6 +1630,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
16301630
</tr>
16311631
<tr>
16321632
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LadyDhaga"><img src="https://avatars.githubusercontent.com/u/106376368?v=4?s=100" width="100px;" alt="chinaman123"/><br /><sub><b>chinaman123</b></sub></a><br /><a href="#ideas-LadyDhaga" title="Ideas, Planning, & Feedback">🤔</a></td>
1633+
<td align="center" valign="top" width="14.28%"><a href="http://t.me/mevsinternet"><img src="https://avatars.githubusercontent.com/u/32142853?v=4?s=100" width="100px;" alt="Alex"/><br /><sub><b>Alex</b></sub></a><br /><a href="https://github.com/ethereum/ethereum-org-website/commits?author=z0rats" title="Documentation">📖</a> <a href="https://github.com/ethereum/ethereum-org-website/issues?q=author%3Az0rats" title="Bug reports">🐛</a></td>
16331634
</tr>
16341635
</tbody>
16351636
</table>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereum-org-website",
3-
"version": "7.19.2",
3+
"version": "7.20.0",
44
"description": "Website of ethereum.org",
55
"main": "index.js",
66
"repository": "git@github.com:ethereum/ethereum-org-website.git",

src/assets/dapps/ankr.png

90 KB
Loading

src/assets/dapps/api3.png

51.3 KB
Loading

src/assets/dapps/arweave.png

199 KB
Loading

src/assets/dapps/cyberconnect.png

24.8 KB
Loading

src/assets/dapps/gm.png

43.7 KB
Loading

src/assets/dapps/graph.png

147 KB
Loading

0 commit comments

Comments
 (0)