diff --git a/app/utils/dictionary/filters.ts b/app/utils/dictionary/filters.ts deleted file mode 100644 index ad0b22e756f..00000000000 --- a/app/utils/dictionary/filters.ts +++ /dev/null @@ -1,36 +0,0 @@ -export const getDateRanges = function(this: any) { - return [ - { - name : this.l10n.t('All Dates'), - key : 'all_dates' - }, - { - name : this.l10n.t('Today'), - key : 'today' - }, - { - name : this.l10n.t('Tomorrow'), - key : 'tomorrow' - }, - { - name : this.l10n.t('This week'), - key : 'this_week' - }, - { - name : this.l10n.t('This Weekend'), - key : 'this_weekend' - }, - { - name : this.l10n.t('Next week'), - key : 'next_week' - }, - { - name : this.l10n.t('This Month'), - key : 'this_month' - }, - { - name : this.l10n.t('Custom dates'), - key : 'custom_dates' - } - ]; -};