copy tweak (#8506)

This commit is contained in:
Samuel Newman
2025-06-18 00:12:59 +03:00
committed by GitHub
parent f1f9ca9606
commit 9cf457acf8
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -447,7 +447,7 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) {
name="LikesOnRepostsNotificationSettings" name="LikesOnRepostsNotificationSettings"
getComponent={() => LikesOnRepostsNotificationSettingsScreen} getComponent={() => LikesOnRepostsNotificationSettingsScreen}
options={{ options={{
title: title(msg`Likes on your reposts notifications`), title: title(msg`Likes of your reposts notifications`),
requireAuth: true, requireAuth: true,
}} }}
/> />
@@ -455,7 +455,7 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) {
name="RepostsOnRepostsNotificationSettings" name="RepostsOnRepostsNotificationSettings"
getComponent={() => RepostsOnRepostsNotificationSettingsScreen} getComponent={() => RepostsOnRepostsNotificationSettingsScreen}
options={{ options={{
title: title(msg`Reposts on your reposts notifications`), title: title(msg`Reposts of your reposts notifications`),
requireAuth: true, requireAuth: true,
}} }}
/> />
@@ -38,7 +38,7 @@ export function LikesOnRepostsNotificationSettingsScreen({}: Props) {
<SettingsList.ItemIcon icon={LikeRepostIcon} /> <SettingsList.ItemIcon icon={LikeRepostIcon} />
<ItemTextWithSubtitle <ItemTextWithSubtitle
bold bold
titleText={<Trans>Likes on your reposts</Trans>} titleText={<Trans>Likes of your reposts</Trans>}
subtitleText={ subtitleText={
<Trans> <Trans>
Get notifications when people like posts that you've reposted. Get notifications when people like posts that you've reposted.
@@ -199,13 +199,13 @@ export function NotificationSettingsScreen({}: Props) {
</SettingsList.LinkItem> */} </SettingsList.LinkItem> */}
<SettingsList.LinkItem <SettingsList.LinkItem
label={_( label={_(
msg`Settings for notifications for likes on your reposts`, msg`Settings for notifications for likes of your reposts`,
)} )}
to={{screen: 'LikesOnRepostsNotificationSettings'}} to={{screen: 'LikesOnRepostsNotificationSettings'}}
contentContainerStyle={[a.align_start]}> contentContainerStyle={[a.align_start]}>
<SettingsList.ItemIcon icon={LikeRepostIcon} /> <SettingsList.ItemIcon icon={LikeRepostIcon} />
<ItemTextWithSubtitle <ItemTextWithSubtitle
titleText={<Trans>Likes on your reposts</Trans>} titleText={<Trans>Likes of your reposts</Trans>}
subtitleText={ subtitleText={
<SettingPreview preference={settings?.likeViaRepost} /> <SettingPreview preference={settings?.likeViaRepost} />
} }