Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make "Retry" button label translatable #7243

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions src/locale/locales/en/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:112
#: src/components/dms/MessageMenu.tsx:81
#: src/Navigation.tsx:393
#: src/screens/Messages/ChatList.tsx:244
#: src/screens/Messages/ChatList.tsx:246
msgid "Chat settings"
msgstr ""

Expand Down Expand Up @@ -4191,8 +4191,8 @@ msgstr ""
#~ msgstr ""

#: src/Navigation.tsx:609
#: src/screens/Messages/ChatList.tsx:260
#: src/screens/Messages/ChatList.tsx:284
#: src/screens/Messages/ChatList.tsx:262
#: src/screens/Messages/ChatList.tsx:286
msgid "Messages"
msgstr ""

Expand Down Expand Up @@ -4484,8 +4484,8 @@ msgstr ""
#~ msgstr ""

#: src/components/dms/dialogs/NewChatDialog.tsx:65
#: src/screens/Messages/ChatList.tsx:267
#: src/screens/Messages/ChatList.tsx:274
#: src/screens/Messages/ChatList.tsx:269
#: src/screens/Messages/ChatList.tsx:276
msgid "New chat"
msgstr ""

Expand Down Expand Up @@ -4630,7 +4630,7 @@ msgstr ""
msgid "No messages yet"
msgstr ""

#: src/screens/Messages/ChatList.tsx:223
#: src/screens/Messages/ChatList.tsx:225
msgid "No more conversations to show"
msgstr ""

Expand Down Expand Up @@ -4743,7 +4743,7 @@ msgstr ""
msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites."
msgstr ""

#: src/screens/Messages/ChatList.tsx:178
#: src/screens/Messages/ChatList.tsx:180
msgid "Nothing here"
msgstr ""

Expand Down Expand Up @@ -6118,6 +6118,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:336
#: src/screens/Login/LoginForm.tsx:305
#: src/screens/Login/LoginForm.tsx:312
#: src/screens/Messages/ChatList.tsx:169
#: src/screens/Messages/components/MessageListError.tsx:25
#: src/screens/Onboarding/StepInterests/index.tsx:217
#: src/screens/Onboarding/StepInterests/index.tsx:220
Expand Down Expand Up @@ -8690,7 +8691,7 @@ msgstr ""
msgid "You have muted this user"
msgstr ""

#: src/screens/Messages/ChatList.tsx:188
#: src/screens/Messages/ChatList.tsx:190
msgid "You have no conversations yet. Start one!"
msgstr ""

Expand Down
4 changes: 3 additions & 1 deletion src/screens/Messages/ChatList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@ export function MessagesScreen({navigation, route}: Props) {
color="secondary"
variant="solid"
onPress={() => refetch()}>
<ButtonText>Retry</ButtonText>
<ButtonText>
<Trans>Retry</Trans>
</ButtonText>
<ButtonIcon icon={Retry} position="right" />
</Button>
</View>
Expand Down