english constant

FuzzyTimeLocale const english

Default English locale

Implementation

static const english = FuzzyTimeLocale(
  locale: FuzzyLocale.en,
  prefixAbout: 'about',
  prefixLessThan: 'less than',
  futureWrapper: _englishFuture,
  pastWrapper: _englishPast,
  futureWrapperShort: _englishFuture,
  pastWrapperShort: _englishPast,
  now: 'now',
  shortNow: 'now',
  fewSeconds: 'a few seconds',
  second: 'second',
  minute: 'minute',
  hour: 'hour',
  day: 'day',
  week: 'week',
  month: 'month',
  year: 'year',
  secondShort: 's',
  minuteShort: 'min',
  hourShort: 'hr',
  dayShort: 'd',
  weekShort: 'w',
  monthShort: 'mo',
  yearShort: 'y',
  pluralize: _englishPlural,
);