about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-06-18 00:12:59 +0300
committerGitHub <noreply@github.com>2025-06-18 00:12:59 +0300
commit9cf457acf8495c1287e366f677e1516847e4d739 (patch)
treea230822f6e4209b4561d8aff6a0c0f2e5d2676ed /src
parentf1f9ca960681b5257429b4b4c2a02cccc29e4fd6 (diff)
downloadvoidsky-9cf457acf8495c1287e366f677e1516847e4d739.tar.zst
copy tweak (#8506)
Diffstat (limited to 'src')
-rw-r--r--src/Navigation.tsx4
-rw-r--r--src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx2
-rw-r--r--src/screens/Settings/NotificationSettings/index.tsx4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx
index 3bf1ace85..f1a9c569d 100644
--- a/src/Navigation.tsx
+++ b/src/Navigation.tsx
@@ -447,7 +447,7 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) {
         name="LikesOnRepostsNotificationSettings"
         getComponent={() => LikesOnRepostsNotificationSettingsScreen}
         options={{
-          title: title(msg`Likes on your reposts notifications`),
+          title: title(msg`Likes of your reposts notifications`),
           requireAuth: true,
         }}
       />
@@ -455,7 +455,7 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) {
         name="RepostsOnRepostsNotificationSettings"
         getComponent={() => RepostsOnRepostsNotificationSettingsScreen}
         options={{
-          title: title(msg`Reposts on your reposts notifications`),
+          title: title(msg`Reposts of your reposts notifications`),
           requireAuth: true,
         }}
       />
diff --git a/src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx b/src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx
index 08a05d468..c72e8c757 100644
--- a/src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx
+++ b/src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx
@@ -38,7 +38,7 @@ export function LikesOnRepostsNotificationSettingsScreen({}: Props) {
             <SettingsList.ItemIcon icon={LikeRepostIcon} />
             <ItemTextWithSubtitle
               bold
-              titleText={<Trans>Likes on your reposts</Trans>}
+              titleText={<Trans>Likes of your reposts</Trans>}
               subtitleText={
                 <Trans>
                   Get notifications when people like posts that you've reposted.
diff --git a/src/screens/Settings/NotificationSettings/index.tsx b/src/screens/Settings/NotificationSettings/index.tsx
index a4f6dede0..759363576 100644
--- a/src/screens/Settings/NotificationSettings/index.tsx
+++ b/src/screens/Settings/NotificationSettings/index.tsx
@@ -199,13 +199,13 @@ export function NotificationSettingsScreen({}: Props) {
             </SettingsList.LinkItem> */}
             <SettingsList.LinkItem
               label={_(
-                msg`Settings for notifications for likes on your reposts`,
+                msg`Settings for notifications for likes of your reposts`,
               )}
               to={{screen: 'LikesOnRepostsNotificationSettings'}}
               contentContainerStyle={[a.align_start]}>
               <SettingsList.ItemIcon icon={LikeRepostIcon} />
               <ItemTextWithSubtitle
-                titleText={<Trans>Likes on your reposts</Trans>}
+                titleText={<Trans>Likes of your reposts</Trans>}
                 subtitleText={
                   <SettingPreview preference={settings?.likeViaRepost} />
                 }