Improve wording on profile page ("My" instead of "Your")
This commit is contained in:
parent
25ec75e781
commit
e95f5096db
|
@ -65,7 +65,7 @@ export default function Stats({user = null}: {user?: null | string}) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Header as="h2">Statistics</Header>
|
<Header as="h2">{user && 'My '}Statistics</Header>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<Segment attached="top">
|
<Segment attached="top">
|
||||||
|
|
|
@ -48,7 +48,7 @@ const SettingsPage = connect((state) => ({login: state.login}), {setLogin})(func
|
||||||
<Grid centered relaxed divided stackable>
|
<Grid centered relaxed divided stackable>
|
||||||
<Grid.Row>
|
<Grid.Row>
|
||||||
<Grid.Column width={8}>
|
<Grid.Column width={8}>
|
||||||
<Header as="h2">Your profile</Header>
|
<Header as="h2">My profile</Header>
|
||||||
|
|
||||||
<Message info>All of this information is public.</Message>
|
<Message info>All of this information is public.</Message>
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ function ApiKeyDialog({login, onGenerateNewKey}) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Header as="h2">Your API Key</Header>
|
<Header as="h2">My API Key</Header>
|
||||||
<p>
|
<p>
|
||||||
Here you find your API Key, for use in the OpenBikeSensor. You can to copy and paste it into your sensor's
|
Here you find your API Key, for use in the OpenBikeSensor. You can to copy and paste it into your sensor's
|
||||||
configuration interface to allow direct upload from the device.
|
configuration interface to allow direct upload from the device.
|
||||||
|
|
Loading…
Reference in a new issue