i18n fixes for new category and page titles

This commit is contained in:
infinite-persistence 2021-11-24 11:11:46 +08:00
parent 84e75fdfe8
commit b762cac50b
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0
3 changed files with 7 additions and 1 deletions

View file

@ -1409,6 +1409,7 @@
"Cheese": "Cheese",
"Cooking": "Cooking",
"Big Hits": "Big Hits",
"Education": "Education",
"Enlightenment": "Enlightenment",
"Gaming": "Gaming",
"Game": "Game",
@ -1419,6 +1420,7 @@
"Movies": "Movies",
"News": "News",
"News & Politics": "News & Politics",
"Pop Culture": "Pop Culture",
"Finance 2.0": "Finance 2.0",
"The Universe": "The Universe",
"Wild West": "Wild West",

View file

@ -9,7 +9,8 @@ export const PAGE_TITLE = {
// --- Categories ---
[PAGES.BIG_HITS]: 'Big Hits',
[PAGES.DISCOVER]: 'Wild West',
// [PAGES.ENLIGHTENMENT] = 'Enlightenment',
[PAGES.EDUCATION]: 'Education',
[PAGES.ENLIGHTENMENT]: 'Enlightenment',
[PAGES.FINANCE]: 'Finance 2.0',
[PAGES.GAMING]: 'Gaming',
[PAGES.GENERAL]: 'Cheese',
@ -17,6 +18,7 @@ export const PAGE_TITLE = {
[PAGES.MOVIES]: 'Movies',
[PAGES.MUSIC]: 'Music',
[PAGES.NEWS]: 'News & Politics',
[PAGES.POP_CULTURE]: 'Pop Culture',
// [PAGES.RABBIT_HOLE]: 'The Rabbit Hole';
[PAGES.TECH]: 'Tech',
[PAGES.UNIVERSE]: 'The Universe',

View file

@ -11,12 +11,14 @@ exports.BIG_HITS = 'bighits';
exports.MOVIES = 'movies';
exports.MUSIC = 'music';
exports.COMMUNITY = 'community';
exports.EDUCATION = 'education';
exports.ENLIGHTENMENT = 'enlightenment';
exports.FINANCE = 'finance';
exports.GAMING = 'gaming';
exports.GENERAL = 'general';
exports.LAB = 'lab';
exports.NEWS = 'news';
exports.POP_CULTURE = 'popculture';
exports.RABBIT_HOLE = 'rabbithole';
exports.SCIENCE = 'science';
exports.TECHNOLOGY = 'technology';