Browse Source

More i18n strings

master
Thibaut Boustany 7 years ago
parent
commit
9545fa3171
No known key found for this signature in database GPG Key ID: 32475B11A2B13EEC
  1. 2
      src/components/AdvancedOptions/BitcoinKind.js
  2. 2
      src/components/AdvancedOptions/EthereumKind.js
  3. 2
      src/components/AdvancedOptions/RippleKind.js
  4. 2
      src/components/modals/AccountSettingRenderBody.js
  5. 2
      src/components/modals/Send/Footer.js
  6. 1
      static/i18n/en/app.yml

2
src/components/AdvancedOptions/BitcoinKind.js

@ -15,7 +15,7 @@ type Props = {
} }
export default translate()(({ isRBF, onChangeRBF, t }: Props) => ( export default translate()(({ isRBF, onChangeRBF, t }: Props) => (
<Spoiler title="Advanced options"> <Spoiler title={t('app:send.steps.amount.advancedOptions')}>
<Box horizontal align="center" flow={5}> <Box horizontal align="center" flow={5}>
<Box style={{ width: 200 }}> <Box style={{ width: 200 }}>
<Label> <Label>

2
src/components/AdvancedOptions/EthereumKind.js

@ -14,7 +14,7 @@ type Props = {
} }
export default translate()(({ gasLimit, onChangeGasLimit, t }: Props) => ( export default translate()(({ gasLimit, onChangeGasLimit, t }: Props) => (
<Spoiler title="Advanced options"> <Spoiler title={t('app:send.steps.amount.advancedOptions')}>
<Box horizontal align="center" flow={5}> <Box horizontal align="center" flow={5}>
<Box style={{ width: 200 }}> <Box style={{ width: 200 }}>
<Label> <Label>

2
src/components/AdvancedOptions/RippleKind.js

@ -14,7 +14,7 @@ type Props = {
} }
export default translate()(({ tag, onChangeTag, t }: Props) => ( export default translate()(({ tag, onChangeTag, t }: Props) => (
<Spoiler title="Advanced options"> <Spoiler title={t('app:send.steps.amount.advancedOptions')}>
<Box horizontal align="center" flow={5}> <Box horizontal align="center" flow={5}>
<Box style={{ width: 200 }}> <Box style={{ width: 200 }}>
<Label> <Label>

2
src/components/modals/AccountSettingRenderBody.js

@ -174,7 +174,7 @@ class HelperComp extends PureComponent<Props, State> {
/> />
</Box> </Box>
</Container> </Container>
<Spoiler title="Advanced logs"> <Spoiler title={t('app:account.settings.advancedLogs')}>
<textarea <textarea
readOnly readOnly
style={{ style={{

2
src/components/modals/Send/Footer.js

@ -95,7 +95,7 @@ class Footer extends PureComponent<
</Box> </Box>
)} )}
<Button primary onClick={onNext} disabled={!canNext || !canBeSpent}> <Button primary onClick={onNext} disabled={!canNext || !canBeSpent}>
{'Next'} {t('app:common.next')}
</Button> </Button>
</Box> </Box>
</ModalFooter> </ModalFooter>

1
static/i18n/en/app.yml

@ -68,6 +68,7 @@ account:
receiveFunds: Receive Funds receiveFunds: Receive Funds
settings: settings:
title: Edit Account title: Edit Account
advancedLogs: Advanced logs
accountName: accountName:
title: Account name title: Account name
desc: Lorem ipsum dolort amet desc: Lorem ipsum dolort amet

Loading…
Cancel
Save