translating placeholders

This commit is contained in:
balzack 2023-10-06 22:49:45 -07:00
parent 1294e80523
commit 3e2ebe7f77

View File

@ -103,7 +103,7 @@ export function Profile({ drawer }) {
<Text style={styles.locationSet}>{ state.location }</Text>
)}
{ !state.location && (
<Text style={styles.locationUnset}>Location</Text>
<Text style={styles.locationUnset}>{ state.strings.location }</Text>
)}
</View>
<View style={styles.drawerEntry}>
@ -112,7 +112,7 @@ export function Profile({ drawer }) {
<Text style={styles.descriptionSet}>{ state.description }</Text>
)}
{ !state.description && (
<Text style={styles.descriptionUnset}>Description</Text>
<Text style={styles.descriptionUnset}>{ state.strings.description }</Text>
)}
</View>
<TouchableOpacity style={styles.drawerEntry} activeOpacity={1}>