Skip to content
Snippets Groups Projects
Commit a951ffe9 authored by Stefanie Grewenig's avatar Stefanie Grewenig
Browse files

move hard coded headers and explainers from temperature to i18n labels

- issue: 127
- by: sg
parent 6d88f2bb
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ export default class Temp extends Component {
<ScrollView style={styles.page}>
<View>
<SymptomSection
header="Temperature (°C)"
header={labels.temperature.header}
explainer={labels.temperature.explainer}
inline={true}
>
......@@ -112,7 +112,7 @@ export default class Temp extends Component {
/>
</SymptomSection>
<SymptomSection
header="Time"
header={labels.time}
inline={true}
>
<TextInput
......@@ -136,7 +136,7 @@ export default class Temp extends Component {
/>
</SymptomSection>
<SymptomSection
header="Note"
header={labels.note.header}
explainer={labels.note.explainer}
>
<TextInput
......@@ -150,8 +150,8 @@ export default class Temp extends Component {
/>
</SymptomSection>
<SymptomSection
header="Exclude"
explainer={labels.excludeExplainer}
header={labels.exclude.header}
explainer={labels.exclude.explainer}
inline={true}
>
<Switch
......
......@@ -89,12 +89,18 @@ export const temperature = {
outOfAbsoluteRangeWarning: 'This temperature value is too high or low to be shown on the temperature chart.',
saveAnyway: 'Save anyway',
temperature: {
header: "Temperature (°C)",
explainer: 'Take your temperature right after waking up, before getting out of bed'
},
time: "Time",
note: {
header: "Note",
explainer: 'Is there anything that could have influenced this value, such as bad sleep or alcohol consumption?'
},
excludeExplainer: "You can exclude this value if you don't want to use it for fertility detection"
exclude: {
header: "Exclude",
explainer: "You can exclude this value if you don't want to use it for fertility detection"
}
}
export const noteExplainer = "Anything you want to add for the day?"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment