Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Add context for translators and tweak strings (#10280)

authored by

surfdude29 and committed by
GitHub
2798e98c 9778a3da

+3 -3
+1 -1
src/components/dms/ReactionsDialog.tsx
··· 357 357 accessibilityRole="button" 358 358 accessibilityHint={ 359 359 reaction.key === 'all' 360 - ? l`Tap to show all reactions ` 360 + ? l`Tap to show all reactions` 361 361 : l`Tap to show ${reaction.value} reactions` 362 362 } 363 363 hitSlop={HITSLOP_10}
+2 -2
src/screens/Messages/ConversationSettings.tsx
··· 655 655 label={l`Message ${displayName}`} 656 656 onPress={handleMessageMember}> 657 657 <Menu.ItemText> 658 - <Trans>Message</Trans> 658 + <Trans context="action">Message</Trans> 659 659 </Menu.ItemText> 660 660 <Menu.ItemIcon icon={MessageIcon} /> 661 661 </Menu.Item> ··· 1084 1084 <Prompt.Basic 1085 1085 control={control} 1086 1086 title={l`Invite link`} 1087 - description={l`An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time. Your name, avatar, and the name of the group chat will be visible to everyone`} 1087 + description={l`An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time. Your name, avatar, and the name of the group chat will be visible to everyone.`} 1088 1088 confirmButtonCta={l`Get started`} 1089 1089 cancelButtonCta={l`Cancel`} 1090 1090 onConfirm={onConfirm}