diff options
Diffstat (limited to 'src/view/com/modals')
-rw-r--r-- | src/view/com/modals/AltImage.tsx | 1 | ||||
-rw-r--r-- | src/view/com/modals/Threadgate.tsx | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/view/com/modals/AltImage.tsx b/src/view/com/modals/AltImage.tsx index 80130f43a..a2e918317 100644 --- a/src/view/com/modals/AltImage.tsx +++ b/src/view/com/modals/AltImage.tsx @@ -80,6 +80,7 @@ export function Component({image}: Props) { source={{ uri: image.cropped?.path ?? image.path, }} + contentFit="contain" accessible={true} accessibilityIgnoresInvertColors /> diff --git a/src/view/com/modals/Threadgate.tsx b/src/view/com/modals/Threadgate.tsx index 9d78a2e6d..0deef185b 100644 --- a/src/view/com/modals/Threadgate.tsx +++ b/src/view/com/modals/Threadgate.tsx @@ -69,7 +69,7 @@ export function Component({ <ScrollView> <Text style={[pal.text, styles.description]}> - Choose "Everybody" or "Nobody" + <Trans>Choose "Everybody" or "Nobody"</Trans> </Text> <View style={{flexDirection: 'row', gap: 6, paddingHorizontal: 6}}> <Selectable @@ -86,7 +86,7 @@ export function Component({ /> </View> <Text style={[pal.text, styles.description]}> - Or combine these options: + <Trans>Or combine these options:</Trans> </Text> <View style={{flexDirection: 'column', gap: 4, paddingHorizontal: 6}}> <Selectable |