diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-12-07 11:50:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-07 11:50:50 +0000 |
commit | 5297973f682d31b1f0cd312a4fa2ab42c8103c1e (patch) | |
tree | aac2127597e5e9df3ae59288715d002d61418ae6 /src | |
parent | d05217e56006499a107b772a8a09c79b383e2e3f (diff) | |
download | voidsky-5297973f682d31b1f0cd312a4fa2ab42c8103c1e.tar.zst |
[ELI5] Change feed page copy (#6932)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Feeds.tsx | 5 | ||||
-rw-r--r-- | src/view/screens/Search/Explore.tsx | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 0dcf1f016..ec48b9c08 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -438,6 +438,7 @@ export function FeedsScreen(_props: Props) { <FeedsAboutHeader /> <View style={{paddingHorizontal: 12, paddingBottom: 4}}> <SearchInput + placeholder={_(msg`Search feeds`)} value={query} onChangeText={onChangeQuery} onClearText={onPressCancelSearch} @@ -724,8 +725,8 @@ function FeedsAboutHeader() { </Text> <Text style={[t.atoms.text_contrast_high]}> <Trans> - Custom feeds built by the community bring you new experiences and - help you find the content you love. + Choose your own timeline! Feeds built by the community help you find + content you love. </Trans> </Text> </View> diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx index 6aff9b88a..bd2ebe5d5 100644 --- a/src/view/screens/Search/Explore.tsx +++ b/src/view/screens/Search/Explore.tsx @@ -388,7 +388,7 @@ export function Explore() { key: 'suggested-feeds-header', title: _(msg`Discover new feeds`), description: _( - msg`Custom feeds built by the community bring you new experiences and help you find the content you love.`, + msg`Choose your own timeline! Feeds built by the community help you find content you love.`, ), style: [a.pt_5xl], icon: ListSparkle, |