]> Untitled Git - lemmy-ui.git/commitdiff
Fixing top_time translations.
authorDessalines <tyhou13@gmx.com>
Fri, 22 Jan 2021 17:19:12 +0000 (12:19 -0500)
committerDessalines <tyhou13@gmx.com>
Fri, 22 Jan 2021 17:19:12 +0000 (12:19 -0500)
src/shared/components/sort-select.tsx

index 7ba8a5fd519e60e2f545cb084b436c968fbe9ed4..f711703d16ab826ae9b44a0f88c9b05e0ec510ca 100644 (file)
@@ -50,10 +50,10 @@ export class SortSelect extends Component<SortSelectProps, SortSelectState> {
           <option value={SortType.New}>{i18n.t('new')}</option>
           <option disabled>─────</option>
           <option value={SortType.TopDay}>{i18n.t('top_day')}</option>
-          <option value={SortType.TopWeek}>{i18n.t('week')}</option>
-          <option value={SortType.TopMonth}>{i18n.t('month')}</option>
-          <option value={SortType.TopYear}>{i18n.t('year')}</option>
-          <option value={SortType.TopAll}>{i18n.t('all')}</option>
+          <option value={SortType.TopWeek}>{i18n.t('top_week')}</option>
+          <option value={SortType.TopMonth}>{i18n.t('top_month')}</option>
+          <option value={SortType.TopYear}>{i18n.t('top_year')}</option>
+          <option value={SortType.TopAll}>{i18n.t('top_all')}</option>
         </select>
         <a
           className="text-muted"