Fi nostr_signup accidentally capitalized i18n strings
This commit is contained in:
parent
e866b95282
commit
6fb7c337a3
|
@ -24,17 +24,17 @@ const ExtensionStep: React.FC<IExtensionStep> = ({ setStep, onClose }) => {
|
||||||
const onClickAlt = () => setStep('key-add');
|
const onClickAlt = () => setStep('key-add');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal title={<FormattedMessage id='NOSTR_SIGNUP.siwe.title' defaultMessage='Sign in' />} onClose={onClose}>
|
<Modal title={<FormattedMessage id='nostr_signup.siwe.title' defaultMessage='Sign in' />} onClose={onClose}>
|
||||||
<Stack space={6}>
|
<Stack space={6}>
|
||||||
<EmojiGraphic emoji='🔐' />
|
<EmojiGraphic emoji='🔐' />
|
||||||
|
|
||||||
<Stack space={3}>
|
<Stack space={3}>
|
||||||
<Button theme='accent' size='lg' onClick={onClick}>
|
<Button theme='accent' size='lg' onClick={onClick}>
|
||||||
<FormattedMessage id='NOSTR_SIGNUP.siwe.action' defaultMessage='Sign in with extension' />
|
<FormattedMessage id='nostr_signup.siwe.action' defaultMessage='Sign in with extension' />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button theme='transparent' onClick={onClickAlt}>
|
<Button theme='transparent' onClick={onClickAlt}>
|
||||||
<FormattedMessage id='NOSTR_SIGNUP.siwe.alt' defaultMessage='Sign in with key' />
|
<FormattedMessage id='nostr_signup.siwe.alt' defaultMessage='Sign in with key' />
|
||||||
</Button>
|
</Button>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
|
@ -41,7 +41,7 @@ const KeyAddStep: React.FC<IKeyAddStep> = ({ onClose }) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal title={<FormattedMessage id='NOSTR_SIGNUP.key-add.title' defaultMessage='Import Key' />} onClose={onClose}>
|
<Modal title={<FormattedMessage id='nostr_signup.key-add.title' defaultMessage='Import Key' />} onClose={onClose}>
|
||||||
<Stack className='my-3' space={6}>
|
<Stack className='my-3' space={6}>
|
||||||
<NostrExtensionIndicator />
|
<NostrExtensionIndicator />
|
||||||
|
|
||||||
|
|
|
@ -24,17 +24,17 @@ const ExtensionStep: React.FC<IExtensionStep> = ({ setStep, onClose }) => {
|
||||||
const onClickAlt = () => setStep('key');
|
const onClickAlt = () => setStep('key');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal title={<FormattedMessage id='NOSTR_SIGNUP.siwe.title' defaultMessage='Sign in' />} onClose={onClose}>
|
<Modal title={<FormattedMessage id='nostr_signup.siwe.title' defaultMessage='Sign in' />} onClose={onClose}>
|
||||||
<Stack space={6}>
|
<Stack space={6}>
|
||||||
<EmojiGraphic emoji='🔐' />
|
<EmojiGraphic emoji='🔐' />
|
||||||
|
|
||||||
<Stack space={3}>
|
<Stack space={3}>
|
||||||
<Button theme='accent' size='lg' onClick={onClick}>
|
<Button theme='accent' size='lg' onClick={onClick}>
|
||||||
<FormattedMessage id='NOSTR_SIGNUP.siwe.action' defaultMessage='Sign in with extension' />
|
<FormattedMessage id='nostr_signup.siwe.action' defaultMessage='Sign in with extension' />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button theme='transparent' onClick={onClickAlt}>
|
<Button theme='transparent' onClick={onClickAlt}>
|
||||||
<FormattedMessage id='NOSTR_SIGNUP.siwe.alt' defaultMessage='Sign in with key' />
|
<FormattedMessage id='nostr_signup.siwe.alt' defaultMessage='Sign in with key' />
|
||||||
</Button>
|
</Button>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
|
@ -23,7 +23,7 @@ const KeyStep: React.FC<IKeyStep> = ({ setStep, onClose }) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal title={<FormattedMessage id='NOSTR_SIGNUP.key.title' defaultMessage='You need a key to continue' />} onClose={onClose}>
|
<Modal title={<FormattedMessage id='nostr_signup.key.title' defaultMessage='You need a key to continue' />} onClose={onClose}>
|
||||||
<Stack className='my-3' space={6}>
|
<Stack className='my-3' space={6}>
|
||||||
<NostrExtensionIndicator />
|
<NostrExtensionIndicator />
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ const KeygenStep: React.FC<IKeygenStep> = ({ onClose }) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal title={<FormattedMessage id='NOSTR_SIGNUP.keygen.title' defaultMessage='Your new key' />} onClose={onClose}>
|
<Modal title={<FormattedMessage id='nostr_signup.keygen.title' defaultMessage='Your new key' />} onClose={onClose}>
|
||||||
<Stack className='my-3' space={9}>
|
<Stack className='my-3' space={9}>
|
||||||
<EmojiGraphic emoji='🔑' />
|
<EmojiGraphic emoji='🔑' />
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue