diff --git a/backend/locales/en-US.json b/backend/locales/en-US.json index 7845ae4fe..fe33e0583 100644 --- a/backend/locales/en-US.json +++ b/backend/locales/en-US.json @@ -218,6 +218,8 @@ "about": "About", "alph_asce": "Alphabetical (Z to A)", "alph_desc": "Alphabetical (A to Z)", + "date_asce": "Newest first", + "date_desc": "Oldest first", "title": "Browse" }, "store_testing_cta": "Please consider testing new plugins to help the Decky Loader team!", diff --git a/frontend/src/components/store/Store.tsx b/frontend/src/components/store/Store.tsx index b687ac199..b8ea7f29d 100644 --- a/frontend/src/components/store/Store.tsx +++ b/frontend/src/components/store/Store.tsx @@ -68,8 +68,8 @@ const BrowseTab: FC<{ children: { setPluginCount: Dispatch [ { data: 1, label: t('Store.store_tabs.alph_desc') }, { data: 2, label: t('Store.store_tabs.alph_asce') }, - { data: 3, label: 'date ascending' }, - { data: 4, label: 'date descending' }, + { data: 3, label: t('Store.store_tabs.date_desc') }, + { data: 4, label: t('Store.store_tabs.date_asce') }, ], [], ); @@ -87,19 +87,19 @@ const BrowseTab: FC<{ children: { setPluginCount: Dispatch