From a78cd0e70fdb27ad55c8eac4528c27efb524e159 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Thu, 5 Dec 2024 15:43:45 +0530 Subject: [PATCH] [auth] Copy change --- auth/lib/l10n/arb/app_en.arb | 1 + auth/lib/ui/home_page.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/auth/lib/l10n/arb/app_en.arb b/auth/lib/l10n/arb/app_en.arb index c9776fc9f5..0266e27040 100644 --- a/auth/lib/l10n/arb/app_en.arb +++ b/auth/lib/l10n/arb/app_en.arb @@ -451,6 +451,7 @@ "pinText": "Pin", "unpinText": "Unpin", "fav": "Favorite", + "favorites": "Favorites", "unfav": "Unfavorite", "favoritedCodeMessage": "{code} has been added to favorites", "unfavoritedCodeMessage": "{code} has been removed from favorites", diff --git a/auth/lib/ui/home_page.dart b/auth/lib/ui/home_page.dart index f41f6667dc..a34a0ddd3c 100644 --- a/auth/lib/ui/home_page.dart +++ b/auth/lib/ui/home_page.dart @@ -511,7 +511,7 @@ class _HomePageState extends State { } if (index == 1 && hasFavouriteCodes) { return TagChip( - label: context.l10n.fav, + label: context.l10n.favorites, state: _isFavouriteOpen ? TagChipState.selected : TagChipState.unselected,