move space character from resources to code

This commit is contained in:
Adam Velebil 2023-02-23 16:59:42 +01:00
parent 9b39b5c391
commit d735a03dd5
No known key found for this signature in database
GPG Key ID: C9B1E4A3CBBD2E10
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@
}
},
"oath_custom_icons": "Custom icons",
"oath_custom_icons_description": "Icon packs can make your accounts more easily distinguishable with familiar logos and colors. ",
"oath_custom_icons_description": "Icon packs can make your accounts more easily distinguishable with familiar logos and colors.",
"oath_custom_icons_replace": "Replace icon pack",
"oath_custom_icons_loading": "Icon pack is loading...",
"oath_custom_icons_load": "Load icon pack",

View File

@ -85,7 +85,7 @@ class _DialogDescription extends ConsumerWidget {
text: TextSpan(
text: l10n.oath_custom_icons_description,
style: theme.textTheme.bodyMedium,
children: [_createLearnMoreLink(context)],
children: [const TextSpan(text: ' '), _createLearnMoreLink(context)],
),
);
}