| Index: pkg/intl/lib/src/date_format_field.dart
|
| diff --git a/pkg/intl/lib/src/date_format_field.dart b/pkg/intl/lib/src/date_format_field.dart
|
| index 08afc045765d650c5ebc2425a7116fd53712089f..fb8274ce1095f8b1c92db7fd241892028b6a60dd 100644
|
| --- a/pkg/intl/lib/src/date_format_field.dart
|
| +++ b/pkg/intl/lib/src/date_format_field.dart
|
| @@ -345,7 +345,7 @@ class _DateFormatPatternField extends _DateFormatField {
|
| }
|
|
|
| String formatQuarter(DateTime date) {
|
| - var quarter = (date.month / 3).truncate();
|
| + var quarter = ((date.month - 1) / 3).truncate();
|
| if (width < 4) {
|
| return symbols.SHORTQUARTERS[quarter];
|
| } else {
|
|
|