From 75bb4c7dcf03da31a3179df2168587d8d051cb1e Mon Sep 17 00:00:00 2001 From: Jorge Coca Date: Sat, 30 Apr 2022 13:52:39 -0500 Subject: [PATCH] fix --- lib/footer/footer.dart | 4 ++-- lib/l10n/arb/app_en.arb | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) 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",