postfix all i18n imports with 'labels'

- issue: 127
- by: sg
This commit is contained in:
Stefanie Grewenig
2019-01-12 16:29:31 +01:00
parent a951ffe959
commit 9fe1940907
4 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ import {
} from 'react-native'
import { saveSymptom } from '../../../db'
import { pain as labels } from '../../../i18n/en/cycle-day'
import { shared } from '../../../i18n/en/labels'
import { shared as sharedLabels } from '../../../i18n/en/labels'
import ActionButtonFooter from './action-button-footer'
import SelectBoxGroup from '../select-box-group'
import SymptomSection from './symptom-section'
@@ -50,7 +50,7 @@ export default class Pain extends Component {
<TextInput
autoFocus={this.state.focusTextArea}
multiline={true}
placeholder={shared.enter}
placeholder={sharedLabels.enter}
value={this.state.note}
onChangeText={(val) => {
this.setState({note: val})