Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

fix typos and grammar #4880

Merged
merged 1 commit into from
Mar 12, 2017
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
10 changes: 5 additions & 5 deletions js/src/i18n/_default/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ export default {
label: `Addressbook`
},
apps: {
description: `Distributed applications that interact with the underlying network. Add applications, manage you application portfolio and interact with application from around the network.`,
description: `Distributed applications that interact with the underlying network. Add applications, manage you application portfolio and interact with applications from around the network.`,
label: `Applications`
},
contracts: {
description: `Watch and interact with specific contracts that have been deployed on the network. This is a more technically-focused environment, specifically for advanced users that understand the inner working of certain contracts.`,
label: `Contracts`
},
overview_0: `Manage the available application views, using only the parts of the application that is applicable to you.`,
overview_1: `Are you an end-user? The defaults are setups for both beginner and advanced users alike.`,
overview_2: `Are you a developer? Add some features to manage contracts are interact with application deployments.`,
overview_3: `Are you a miner or run a large-scale node? Add the features to give you all the information needed to watch the node operation.`,
overview_0: `Manage the available application views, using only the parts of the application applicable to you.`,
overview_1: `Are you an end-user? The defaults are setup for both beginner and advanced users alike.`,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To nitpick further, should be "set up"

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually, this wasn't wrong before: a "setup" is a real noun, so "the defaults are setups (that ...)" is fine

overview_2: `Are you a developer? Add some features to manage contracts and interact with application deployments.`,
overview_3: `Are you a miner or do you run a large-scale node? Add the features to give you all the information needed to watch the node operation.`,
settings: {
description: `This view. Allows you to customize the application in term of options, operation and look and feel.`,
label: `Settings`
Expand Down
6 changes: 3 additions & 3 deletions js/src/views/Dapps/builtin.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"id": "0xae74ad174b95cdbd01c88ac5b73a296d33e9088fc2a200e76bcedf3a94a7815d",
"url": "localtx",
"name": "TxQueue Viewer",
"description": "Have a peek at the internals of your node's transaction queue.",
"description": "Have a peek at the internals of your node's transaction queue",
"author": "Parity Team <admin@ethcore.io>",
"version": "1.0.0",
"visible": true,
Expand All @@ -69,7 +69,7 @@
"id": "0x9042323cd85c6576992d211de34b3ecc183f15e4f639aa87859882f839c374e5",
"url": "web",
"name": "Browser",
"description": "A Web 2.0 hosted pseudo-dapps browser.",
"description": "A Web 2.0 hosted pseudo-dapps browser",
"author": "Parity Team <admin@ethcore.io>",
"version": "1.0.0",
"visible": true,
Expand All @@ -80,7 +80,7 @@
"id": "0xa635a9326814bded464190eddf0bdb90ce92d40ea2359cf553ea80e3c5a4076c",
"url": "console",
"name": "Parity/Web3 console",
"description": "A Javascript development console complete with web3 and parity objects.",
"description": "A Javascript development console complete with web3 and parity objects",
"version": "0.3",
"author": "Gav Wood <gavin@ethcore.io>",
"position": "top-right",
Expand Down
10 changes: 5 additions & 5 deletions js/src/views/Settings/Views/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@ class Views extends Component {
<div>
<FormattedMessage
id='settings.views.overview_0'
defaultMessage='Manage the available application views, using only the parts of the application that is applicable to you.'
defaultMessage='Manage the available application views using only the parts of the application applicable to you.'
/>
</div>
<div>
<FormattedMessage
id='settings.views.overview_1'
defaultMessage='Are you an end-user? The defaults are setups for both beginner and advanced users alike.'
defaultMessage='Are you an end-user? The defaults are setup for both beginner and advanced users alike.'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same comments apply here

/>
</div>
<div>
<FormattedMessage
id='settings.views.overview_2'
defaultMessage='Are you a developer? Add some features to manage contracts are interact with application deployments.'
defaultMessage='Are you a developer? Add some features to manage contracts and interact with application deployments.'
/>
</div>
<div>
Expand All @@ -75,7 +75,7 @@ class Views extends Component {
/>,
<FormattedMessage
id='settings.views.accounts.description'
defaultMessage='A list of all the accounts associated to and imported into this Parity instance. Send transactions, receive incoming values, manage your balances and fund your accounts.'
defaultMessage='A list of all the accounts associated with and imported into this Parity instance. Send transactions, receive incoming values, manage your balances and fund your accounts.'
/>
)
}
Expand All @@ -86,7 +86,7 @@ class Views extends Component {
/>,
<FormattedMessage
id='settings.views.addresses.description'
defaultMessage='A list of all contacts and address book entries that is managed by this Parity instance. Watch accounts and have the details available at the click of a button when transacting.'
defaultMessage='A list of all contacts and address book entries managed by this Parity instance. Watch accounts and have the details available at the click of a button when transacting.'
/>
)
}
Expand Down