File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 155
155
"@category": {
156
156
"description": "Category for an exercise, ingredient, etc."
157
157
},
158
+ "endDate": "End date",
159
+ "startDate": "Start date",
158
160
"routines": "Routines",
159
161
"newRoutine": "New routine",
160
162
"noRoutines": "You have no routines",
Original file line number Diff line number Diff line change @@ -108,8 +108,8 @@ class _RoutineFormState extends State<RoutineForm> {
108
108
}
109
109
return null ;
110
110
},
111
- decoration: const InputDecoration (
112
- labelText: 'Start date' ,
111
+ decoration: InputDecoration (
112
+ labelText: i18n.startDate ,
113
113
suffixIcon: Icon (
114
114
Icons .calendar_today,
115
115
key: Key ('calendarIcon' ),
@@ -145,8 +145,8 @@ class _RoutineFormState extends State<RoutineForm> {
145
145
key: const Key ('field-end-date' ),
146
146
// Stop keyboard from appearing
147
147
readOnly: true ,
148
- decoration: const InputDecoration (
149
- labelText: 'End date' ,
148
+ decoration: InputDecoration (
149
+ labelText: i18n.endDate ,
150
150
suffixIcon: Icon (
151
151
Icons .calendar_today,
152
152
key: Key ('calendarIcon' ),
You can’t perform that action at this time.
0 commit comments