Skip to content

Commit 5003c00

Browse files
committed
Small tweaks
1 parent 9f4b7e3 commit 5003c00

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

lib/l10n/app_en.arb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -809,10 +809,9 @@
809809
"@none__bodyweight_exercise_": {
810810
"description": "Generated entry for translation for server strings"
811811
},
812-
"editSchedule": "Edit schedule",
813812
"log": "Log",
814813
"@log": {
815-
"description": "Log a specific meal"
814+
"description": "Log a specific meal (imperative form)"
816815
},
817816
"done": "Done"
818817
}

lib/widgets/nutrition/meal.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class _MealWidgetState extends State<MealWidget> {
9494
},
9595
),
9696
TextButton.icon(
97-
label: Text(AppLocalizations.of(context).editSchedule),
97+
label: Text(AppLocalizations.of(context).edit),
9898
onPressed: () {
9999
Navigator.pushNamed(
100100
context,

lib/widgets/workouts/day.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class _WorkoutDayWidgetState extends State<WorkoutDayWidget> {
194194
),
195195
TextButton.icon(
196196
icon: const Icon(Icons.calendar_month),
197-
label: Text(AppLocalizations.of(context).editSchedule),
197+
label: Text(AppLocalizations.of(context).edit),
198198
onPressed: () {
199199
Navigator.pushNamed(
200200
context,

0 commit comments

Comments
 (0)