Browse Source

Merge pull request #733 from ente-io/fix_abbr

Fix abbreviations for months
Neeraj Gupta 2 years ago
parent
commit
e1a1bbe7c7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/utils/date_time_util.dart

+ 3 - 3
lib/utils/date_time_util.dart

@@ -9,11 +9,11 @@ const Set<int> monthWith30Days = {4, 6, 9, 11};
 Map<int, String> _months = {
   1: "Jan",
   2: "Feb",
-  3: "March",
-  4: "April",
+  3: "Mar",
+  4: "Apr",
   5: "May",
   6: "Jun",
-  7: "July",
+  7: "Jul",
   8: "Aug",
   9: "Sep",
   10: "Oct",