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 _ArchivedSourcesView extends StatelessWidget {
31
31
final l10n = AppLocalizationsX (context).l10n;
32
32
return Scaffold (
33
33
appBar: AppBar (
34
- title: const Text ('Archived Sources' ), // TODO(you): Will be fixed in l10n phase.
34
+ title: Text (l10n.archivedSources),
35
35
),
36
36
body: Padding (
37
37
padding: const EdgeInsets .all (AppSpacing .lg),
@@ -41,7 +41,7 @@ class _ArchivedSourcesView extends StatelessWidget {
41
41
state.sources.isEmpty) {
42
42
return LoadingStateWidget (
43
43
icon: Icons .source,
44
- headline: 'Loading Archived Sources' , // TODO(you): Will be fixed in l10n phase.
44
+ headline: l10n.loadingArchivedSources,
45
45
subheadline: l10n.pleaseWait,
46
46
);
47
47
}
@@ -58,7 +58,7 @@ class _ArchivedSourcesView extends StatelessWidget {
58
58
}
59
59
60
60
if (state.sources.isEmpty) {
61
- return const Center (child: Text ('No archived sources found.' )); // TODO(you): Will be fixed in l10n phase.
61
+ return Center (child: Text (l10n.noArchivedSourcesFound ));
62
62
}
63
63
64
64
return Column (
You can’t perform that action at this time.
0 commit comments