Skip to content

Commit 7159eae

Browse files
committed
fix(status): implement localization for retry button text
- Replace placeholder localization key with actual l10n.retryButtonText - Remove TODO comment as localization is now implemented
1 parent ca3f497 commit 7159eae

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/status/view/status_page.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ class StatusPage extends StatelessWidget {
4040
// This allows the user to recover from transient network issues.
4141
return FailureStateWidget(
4242
exception: const NetworkException(), // A generic network error
43-
retryButtonText:
44-
'l10n.retryButtonText', //TODO(fulleni): localize me.
43+
retryButtonText: l10n.retryButtonText,
4544
onRetry: () {
4645
// Dispatch the event to AppBloc to re-trigger the fetch.
4746
context.read<AppBloc>().add(const AppConfigFetchRequested());

0 commit comments

Comments
 (0)