File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,9 @@ class WallpaperPage extends StatelessWidget {
129129 mainAxisAlignment: MainAxisAlignment .start,
130130 crossAxisAlignment: CrossAxisAlignment .start,
131131 children: [
132- const Padding (
132+ Padding (
133133 padding: headlineInsets,
134- child: Text ('Your wallpapers' ),
134+ child: Text (context.l10n.wallpaperPageYourWallpapersHeadline ),
135135 ),
136136 FutureBuilder <List <String >?>(
137137 future: model.customBackgrounds,
@@ -145,9 +145,10 @@ class WallpaperPage extends StatelessWidget {
145145 );
146146 }
147147 }),
148- const Padding (
148+ Padding (
149149 padding: headlineInsets,
150- child: Text ('Default wallpapers' ),
150+ child:
151+ Text (context.l10n.wallpaperPageDefaultWallpapersHeadline),
151152 ),
152153 FutureBuilder <List <String >?>(
153154 future: model.preInstalledBackgrounds,
You can’t perform that action at this time.
0 commit comments