Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/MeetupList.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import styled from "styled-components"
import Emoji from "./Emoji"
import InfoBanner from "./InfoBanner"
import Link from "./Link"
import Translation from "../components/Translation"

// Data
import meetups from "../data/community-meetups.json"
Expand Down Expand Up @@ -120,9 +121,9 @@ const MeetupList = () => {
))
) : (
<InfoBanner emoji=":information_source:">
We don't have any meetups matching this search. Know of one?{" "}
<Translation id="page-community-meetuplist-no-meetups" />{" "}
<Link to="https://github.com/ethereum/ethereum-org-website/blob/dev/src/data/community-meetups.json">
Please add it to this page!
<Translation id="page-community-please-add-to-page" />
</Link>
</InfoBanner>
)}
Expand Down
6 changes: 3 additions & 3 deletions src/components/UpcomingEventsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import styled from "styled-components"
import EventCard from "../components/EventCard"
import InfoBanner from "../components/InfoBanner"
import Link from "../components/Link"
import Translation from "../components/Translation"

// Data
import events from "../data/community-events.json"
Expand Down Expand Up @@ -68,10 +69,9 @@ const UpcomingEventsList = () => {
if (orderedUpcomingEvents?.length === 0) {
return (
<InfoBanner emoji=":information_source:">
{" "}
We're not aware of any upcoming events. Know of one?{" "}
<Translation id="page-community-upcoming-events-no-events" />{" "}
<Link to="https://github.com/ethereum/ethereum-org-website/blob/dev/src/data/community-events.json">
Please add it to this page!
<Translation id="page-community-please-add-to-page" />
</Link>
</InfoBanner>
)
Expand Down
3 changes: 3 additions & 0 deletions src/intl/en/page-community.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,19 @@
"page-community-hero-header": "Welcome to the Ethereum community hub",
"page-community-hero-subtitle": "The Ethereum community is home to hundreds of thousands of developers, technologists, designers, users, HODLers and enthusiasts.",
"page-community-hero-title": "Join the community",
"page-community-meetuplist-no-meetups": "We don't have any meetups matching this search. Know of one?",
"page-community-meta-title": "Community Hub",
"page-community-meta-description": "Community homepage description",
"page-community-open-source": "Creator? Builder? Get paid for your work.",
"page-community-open-source-description": "Are you building on Ethereum, or do you want to? Companies are hiring for thousands of technical and non-technical roles. Got an idea of your own? Try finding a grant to get your project off the ground.",
"page-community-open-source-image-alt": "Get paid for your work",
"page-community-please-add-to-page": "Please add it to this page!",
"page-community-support": "Ethereum support",
"page-community-support-alt": "Support",
"page-community-support-button": "Get support",
"page-community-support-description": "Need support? There is no official Ethereum support, but hundreds of helpful communities are available to help you prosper on Ethereum.",
"page-community-try-ethereum": "Try Ethereum for yourself",
"page-community-upcoming-events-no-events": "We're not aware of any upcoming events. Know of one?",
"page-community-why-get-involved-title": "Why get involved?",
"page-community-why-get-involved-card-1-title": "Find your tribe",
"page-community-why-get-involved-card-1-description": "There is a tribe for everyone. Find and connect with like minded individuals to discuss, ponder, and celebrate Ethereum together.",
Expand Down