Skip to content

Commit

Permalink
Text tweaks and link to awesome-ipfs, thanks @RubenKelevra and #1406
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicaschilling committed Jul 30, 2020
1 parent 7a02a43 commit 6ecd55d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions public/locales/en/welcome.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
"paragraph2": "<0><0>A peer-to-peer file transfer network</0> with a completely decentralized architecture and no central point of failure, censorship, or control</0>",
"paragraph3": "<0><0>An on-ramp to tomorrow's web</0> — traditional browsers can access IPFS files through gateways like <2>https://ipfs.io</2> or directly using the <4>IPFS Companion</4> extension</0>",
"paragraph4": "<0><0>A next-gen CDN</0> — just add a file to your node to make it available to the world with cache-friendly content-hash addressing and BitTorrent-style bandwidth distribution</0>",
"paragraph5": "<0><0>A developer toolset</0> for building completely distributed apps and services, backed by a robust open-source community</0>"
"paragraph5": "<0><0>A developer toolset</0> for building <2>completely distributed apps and services</2>, backed by a robust open-source community</0>"
},
"welcomeInfo": {
"header": "In this app, you can …",
"paragraph1": "<0><0>Check your node status</0>, including how many peers you're connected to, your storage and bandwidth stats, and more</0>",
"paragraph2": "<0><0>View and manage files</0> in your IPFS repo, including drag-and-drop file import, easy pinning, and quick sharing and download options</0>",
"paragraph3": "<0><0>Visit the \"Merkle Forest\"</0> with some sample datasets and explore the IPLD data model that underpins how IPFS works</0>",
"paragraph3": "<0><0>Visit the \"Merkle Forest\"</0> with some sample datasets and explore IPLD, the data model that underpins how IPFS works</0>",
"paragraph4": "<0><0>See who's connected to your node</0>, geolocated on a world map by their IP address</0>",
"paragraph5": "<0><0>Review or edit your node settings</0> — no command line required</0>",
"paragraph6": "<0><0>Check this app's source code</0> to <2>report a bug</2> or make a contribution, and make IPFS better for everyone!</0>"
Expand Down
2 changes: 1 addition & 1 deletion src/components/about-ipfs/AboutIpfs.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const AboutIpfs = ({ t }) => {
<li className='mb2'><strong>A next-gen CDN</strong> &mdash; just add a file to your node to make it available to the world with cache-friendly content-hash addressing and BitTorrent-style bandwidth distribution</li>
</Trans>
<Trans i18nKey='aboutIpfs.paragraph5' t={t}>
<li className='mb2'><strong>A developer toolset</strong> for building completely distributed apps and services, backed by a robust open-source community</li>
<li className='mb2'><strong>A developer toolset</strong> for building completely <a className='link blue' target='_blank' rel='noopener noreferrer' href='https://awesome.ipfs.io/'>distributed apps and services</a>, backed by a robust open-source community</li>
</Trans>
</ul>
</Box>
Expand Down
8 changes: 2 additions & 6 deletions src/welcome/WelcomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const WelcomePage = ({ t, doUpdateIpfsApiAddress, apiUrl, ipfsInitFailed, ipfsCo
<li className='mb2'><a href='#/files' className='link blue u b'>View and manage files</a> in your IPFS repo, including drag-and-drop file import, easy pinning, and quick sharing and download options</li>
</Trans>
<Trans i18nKey='welcomeInfo.paragraph3' t={t}>
<li className='mb2'><a href='#/explore' className='link blue b'>Visit the "Merkle Forest"</a> with some sample datasets and explore the IPLD data model that underpins how IPFS works</li>
<li className='mb2'><a href='#/explore' className='link blue b'>Visit the "Merkle Forest"</a> with some sample datasets and explore IPLD, the data model that underpins how IPFS works</li>
</Trans>
<Trans i18nKey='welcomeInfo.paragraph4' t={t}>
<li className='mb2'><a href='#/peers' className='link blue b'>See who's connected to your node</a>, geolocated on a world map by their IP address</li>
Expand All @@ -59,10 +59,7 @@ const WelcomePage = ({ t, doUpdateIpfsApiAddress, apiUrl, ipfsInitFailed, ipfsCo
</div>
<div className='lh-copy charcoal mt3'>
<Box>
<ApiAddressForm
t={t}
defaultValue={ipfsApiAddress || ''}
updateAddress={doUpdateIpfsApiAddress} />
<ApiAddressForm t={t} defaultValue={ipfsApiAddress || ''} updateAddress={doUpdateIpfsApiAddress} />
</Box>
</div>
</div>
Expand Down Expand Up @@ -189,7 +186,6 @@ const ConnectionStatus = ({ t, connected, sameOrigin, ipfsApiAddress, doUpdateIp
)
}


export default connect(
'doUpdateIpfsApiAddress',
'selectIpfsInitFailed',
Expand Down

0 comments on commit 6ecd55d

Please sign in to comment.