more placeholder translation

This commit is contained in:
balzack 2023-10-06 22:55:49 -07:00
parent 3e2ebe7f77
commit d02130679b

View File

@ -163,7 +163,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.divider} />
@ -174,7 +174,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>
</ScrollView>