Skip to content

Commit

Permalink
Replaced keys with keys requested (#441)
Browse files Browse the repository at this point in the history
Fix #440
  • Loading branch information
Marc-Andrieu authored Oct 16, 2024
1 parent f68b159 commit 2effde4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/booking/tools/constants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class BookingTextConstants {
static const String invalidIntervalError = "Intervalle invalide";
static const String invalidDates = "Dates invalides";
static const String invalidRoom = "Salle invalide";
static const String keys = "Clés";
static const String keysRequested = "Clés demandées";
static const String manager = "Gestionnaire";
static const String managerName = "Nom du gestionnaire";
static const String multipleDay = "Plusieurs jours";
Expand Down
2 changes: 1 addition & 1 deletion lib/booking/ui/components/booking_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class BookingCard extends StatelessWidget {
),
),
Text(
'${BookingTextConstants.keys}: ${booking.key ? BookingTextConstants.yes : BookingTextConstants.no}',
'${BookingTextConstants.keysRequested}: ${booking.key ? BookingTextConstants.yes : BookingTextConstants.no}',
style: TextStyle(
fontSize: 13,
fontWeight: FontWeight.bold,
Expand Down

0 comments on commit 2effde4

Please sign in to comment.