diff --git a/lib/footer/footer.dart b/lib/footer/footer.dart index a869d1d8..711d1ba8 100644 --- a/lib/footer/footer.dart +++ b/lib/footer/footer.dart @@ -54,7 +54,7 @@ class _MadeWithFlutterAndFirebase extends StatelessWidget { style: theme.textTheme.bodyText1!.copyWith(color: AppColors.white), children: [ TextSpan( - text: l10n.footerMadeWithFlutterLinkText, + text: l10n.footerFlutterLinkText, recognizer: TapGestureRecognizer() ..onTap = () => openLink('https://flutter.dev'), style: const TextStyle( @@ -63,7 +63,7 @@ class _MadeWithFlutterAndFirebase extends StatelessWidget { ), const TextSpan(text: ' & '), TextSpan( - text: l10n.footerMadeWithFirebaseLinkText, + text: l10n.footerFirebaseLinkText, recognizer: TapGestureRecognizer() ..onTap = () => openLink('https://firebase.google.com'), style: const TextStyle( diff --git a/lib/l10n/arb/app_en.arb b/lib/l10n/arb/app_en.arb index 9540ba6d..7691e2dd 100644 --- a/lib/l10n/arb/app_en.arb +++ b/lib/l10n/arb/app_en.arb @@ -112,12 +112,12 @@ "@footerMadeWithText": { "description": "Text shown on the footer which mentions technologies used to build the app." }, - "footerMadeWithFlutterLinkText": "Flutter", - "@footerMadeWithFlutterLinkText": { + "footerFlutterLinkText": "Flutter", + "@footerFlutterLinkText": { "description": "Text on the link shown on the footer which navigates to the Flutter page" }, - "footerMadeWithFirebaseLinkText": "Firebase", - "@footerMadeWithFirebaseLinkText": { + "footerFirebaseLinkText": "Firebase", + "@footerFirebaseLinkText": { "description": "Text on the link shown on the footer which navigates to the Firebase page" }, "footerGoogleIOText": "Google I/O",