File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/content_management/view Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments