Skip to content

Commit 72ebd21

Browse files
committed
fix(localization): remove TODO comments for localization in archived topics view
1 parent 2799f65 commit 72ebd21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/content_management/view/archived_topics_page.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class _ArchivedTopicsView extends StatelessWidget {
3131
final l10n = AppLocalizationsX(context).l10n;
3232
return Scaffold(
3333
appBar: AppBar(
34-
title: Text(l10n.archivedTopics), // TODO(you): Localize this string
34+
title: Text(l10n.archivedTopics),
3535
),
3636
body: Padding(
3737
padding: const EdgeInsets.all(AppSpacing.lg),
@@ -41,7 +41,7 @@ class _ArchivedTopicsView extends StatelessWidget {
4141
state.topics.isEmpty) {
4242
return LoadingStateWidget(
4343
icon: Icons.topic,
44-
headline: l10n.loadingArchivedTopics, // TODO(you): Localize this string
44+
headline: l10n.loadingArchivedTopics,
4545
subheadline: l10n.pleaseWait,
4646
);
4747
}
@@ -58,7 +58,7 @@ class _ArchivedTopicsView extends StatelessWidget {
5858
}
5959

6060
if (state.topics.isEmpty) {
61-
return Center(child: Text(l10n.noArchivedTopicsFound)); // TODO(you): Localize this string
61+
return Center(child: Text(l10n.noArchivedTopicsFound));
6262
}
6363

6464
return Column(

0 commit comments

Comments
 (0)