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 {
31
31
final l10n = AppLocalizationsX (context).l10n;
32
32
return Scaffold (
33
33
appBar: AppBar (
34
- title: Text (l10n.archivedTopics), // TODO(you): Localize this string
34
+ title: Text (l10n.archivedTopics),
35
35
),
36
36
body: Padding (
37
37
padding: const EdgeInsets .all (AppSpacing .lg),
@@ -41,7 +41,7 @@ class _ArchivedTopicsView extends StatelessWidget {
41
41
state.topics.isEmpty) {
42
42
return LoadingStateWidget (
43
43
icon: Icons .topic,
44
- headline: l10n.loadingArchivedTopics, // TODO(you): Localize this string
44
+ headline: l10n.loadingArchivedTopics,
45
45
subheadline: l10n.pleaseWait,
46
46
);
47
47
}
@@ -58,7 +58,7 @@ class _ArchivedTopicsView extends StatelessWidget {
58
58
}
59
59
60
60
if (state.topics.isEmpty) {
61
- return Center (child: Text (l10n.noArchivedTopicsFound)); // TODO(you): Localize this string
61
+ return Center (child: Text (l10n.noArchivedTopicsFound));
62
62
}
63
63
64
64
return Column (
You can’t perform that action at this time.
0 commit comments