chore: fix typo error

This commit is contained in:
appflowy 2022-06-11 07:41:46 +08:00
parent 827e542c6e
commit 4701a281b3
2 changed files with 5 additions and 5 deletions

View File

@ -205,10 +205,10 @@
"pannelTitle": "Select an option or create one",
"searchOption": "Search for an option"
},
"menuName":"Grid"
"menuName": "Grid"
},
"document":{
"menuName":"Doc"
"document": {
"menuName": "Doc",
"date": {
"timeHintTextInTwelveHour": "12:00 AM",
"timeHintTextInTwentyFourHour": "12:00"

View File

@ -225,9 +225,9 @@ class DateCalState with _$DateCalState {
String _timeHintText(DateTypeOption typeOption) {
switch (typeOption.timeFormat) {
case TimeFormat.TwelveHour:
return LocaleKeys.grid_date_timeHintTextInTwelveHour.tr();
return LocaleKeys.document_date_timeHintTextInTwelveHour.tr();
case TimeFormat.TwentyFourHour:
return LocaleKeys.grid_date_timeHintTextInTwentyFourHour.tr();
return LocaleKeys.document_date_timeHintTextInTwentyFourHour.tr();
}
return "";
}