Mark more text as translatable (#2284)
parent
c91b9efccb
commit
f402f33a02
|
@ -69,7 +69,7 @@ export function Component({
|
||||||
|
|
||||||
<ScrollView>
|
<ScrollView>
|
||||||
<Text style={[pal.text, styles.description]}>
|
<Text style={[pal.text, styles.description]}>
|
||||||
Choose "Everybody" or "Nobody"
|
<Trans>Choose "Everybody" or "Nobody"</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
<View style={{flexDirection: 'row', gap: 6, paddingHorizontal: 6}}>
|
<View style={{flexDirection: 'row', gap: 6, paddingHorizontal: 6}}>
|
||||||
<Selectable
|
<Selectable
|
||||||
|
@ -86,7 +86,7 @@ export function Component({
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
<Text style={[pal.text, styles.description]}>
|
<Text style={[pal.text, styles.description]}>
|
||||||
Or combine these options:
|
<Trans>Or combine these options:</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
<View style={{flexDirection: 'column', gap: 4, paddingHorizontal: 6}}>
|
<View style={{flexDirection: 'column', gap: 4, paddingHorizontal: 6}}>
|
||||||
<Selectable
|
<Selectable
|
||||||
|
|
|
@ -117,7 +117,7 @@ export function PreferencesHomeFeed({navigation}: Props) {
|
||||||
<ToggleButton
|
<ToggleButton
|
||||||
testID="toggleRepliesBtn"
|
testID="toggleRepliesBtn"
|
||||||
type="default-light"
|
type="default-light"
|
||||||
label={showReplies ? 'Yes' : 'No'}
|
label={showReplies ? _(msg`Yes`) : _(msg`No`)}
|
||||||
isSelected={showReplies}
|
isSelected={showReplies}
|
||||||
onPress={() =>
|
onPress={() =>
|
||||||
setFeedViewPref({
|
setFeedViewPref({
|
||||||
|
|
Loading…
Reference in New Issue