chore: copy and style improvements

This commit is contained in:
Mo
2023-05-03 08:41:25 -05:00
parent 4aad554c1a
commit 44e91b5ede
24 changed files with 47 additions and 61 deletions

View File

@@ -65,7 +65,7 @@ const ErroredItems: FunctionComponent<Props> = ({ viewControllerManager }: Props
<PreferencesGroup>
<PreferencesSegment>
<Title>
Error Decrypting Items <span className="ml-1 text-warning"></span>
Error decrypting items <span className="ml-1 text-warning"></span>
</Title>
<Text>{`${erroredItems.length} items are errored and could not be decrypted.`}</Text>
<div className="flex">

View File

@@ -190,7 +190,7 @@ const PasscodeLock = ({ application, viewControllerManager }: Props) => {
<>
<PreferencesGroup>
<PreferencesSegment>
<Title>Passcode Lock</Title>
<Title>Passcode lock</Title>
{!hasPasscode && canAddPasscode && (
<>

View File

@@ -12,7 +12,7 @@ const TwoFactorTitle: FunctionComponent<Props> = ({ auth }) => {
return <Title>Two-factor authentication not available</Title>
}
return <Title>Two-Factor Authentication</Title>
return <Title>Two-factor authentication</Title>
}
export default observer(TwoFactorTitle)

View File

@@ -18,7 +18,7 @@ const U2FDescription: FunctionComponent<Props> = ({ userProvider }) => {
return (
<div>
<Text>Authenticate with a hardware security key such as Yubikey.</Text>
<Text>Authenticate with a hardware security key such as YubiKey.</Text>
{!application.isFullU2FClient && (
<Text className="italic">Please visit the web app in order to add a hardware security key.</Text>
)}

View File

@@ -13,7 +13,7 @@ const U2FTitle: FunctionComponent<Props> = ({ userProvider }) => {
return <Title>Hardware security key authentication not available</Title>
}
return <Title>Hardware Security Key Authentication</Title>
return <Title>Hardware security key authentication</Title>
}
export default observer(U2FTitle)