Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

copy tweak (#8506)

authored by

Samuel Newman and committed by
GitHub
9cf457ac f1f9ca96

+5 -5
+2 -2
src/Navigation.tsx
··· 447 447 name="LikesOnRepostsNotificationSettings" 448 448 getComponent={() => LikesOnRepostsNotificationSettingsScreen} 449 449 options={{ 450 - title: title(msg`Likes on your reposts notifications`), 450 + title: title(msg`Likes of your reposts notifications`), 451 451 requireAuth: true, 452 452 }} 453 453 /> ··· 455 455 name="RepostsOnRepostsNotificationSettings" 456 456 getComponent={() => RepostsOnRepostsNotificationSettingsScreen} 457 457 options={{ 458 - title: title(msg`Reposts on your reposts notifications`), 458 + title: title(msg`Reposts of your reposts notifications`), 459 459 requireAuth: true, 460 460 }} 461 461 />
+1 -1
src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx
··· 38 38 <SettingsList.ItemIcon icon={LikeRepostIcon} /> 39 39 <ItemTextWithSubtitle 40 40 bold 41 - titleText={<Trans>Likes on your reposts</Trans>} 41 + titleText={<Trans>Likes of your reposts</Trans>} 42 42 subtitleText={ 43 43 <Trans> 44 44 Get notifications when people like posts that you've reposted.
+2 -2
src/screens/Settings/NotificationSettings/index.tsx
··· 199 199 </SettingsList.LinkItem> */} 200 200 <SettingsList.LinkItem 201 201 label={_( 202 - msg`Settings for notifications for likes on your reposts`, 202 + msg`Settings for notifications for likes of your reposts`, 203 203 )} 204 204 to={{screen: 'LikesOnRepostsNotificationSettings'}} 205 205 contentContainerStyle={[a.align_start]}> 206 206 <SettingsList.ItemIcon icon={LikeRepostIcon} /> 207 207 <ItemTextWithSubtitle 208 - titleText={<Trans>Likes on your reposts</Trans>} 208 + titleText={<Trans>Likes of your reposts</Trans>} 209 209 subtitleText={ 210 210 <SettingPreview preference={settings?.likeViaRepost} /> 211 211 }