de6c6f9bfd
* Add option to pass in url-search params. Impetus: allow linked comment ID and setting the discussion tab when clicking on the `ClaimPreview`. * comment.list: fix typos and renamed variables - Switch from 'author' to 'creator' to disambiguate between comment author and content author. For comment author, we'll use 'commenter' from now on. - Corrected 'commenterClaimId' to 'creatorClaimId' (just a typo, no functional change). * doCommentReset: change param from uri to claimId This reduces one lookup as clients will always have the claimID ready, but might not have the full URI. It was using URI previously just to match the other APIs. * Add doCommentListOwn -- command to fetch own comments Since the redux slice is set up based on content or channel ID (for Channel Discussion page), re-use the channel ID for the case of "own comments". We always clear each ID when fetching page-0, so no worries of conflict when actually browsing the Channel Discussion page. * Comment: add option to hide the actions section * Implement own-comments page * Use new param to remove sort-pins-first. comment.List currently always pushes pins to the top to support pagination. This new param removes this behavior.
64 lines
2.2 KiB
JavaScript
64 lines
2.2 KiB
JavaScript
// Customer-facing title for a page.
|
|
//
|
|
// Primarily used for the browser tab and history title.
|
|
// Ensure new strings are added to 'app-string.json' for localization.
|
|
|
|
import * as PAGES from 'constants/pages';
|
|
|
|
export const PAGE_TITLE = {
|
|
// --- Categories ---
|
|
[PAGES.BIG_HITS]: 'Big Hits',
|
|
[PAGES.DISCOVER]: 'Wild West',
|
|
// [PAGES.ENLIGHTENMENT] = 'Enlightenment',
|
|
[PAGES.FINANCE]: 'Finance 2.0',
|
|
[PAGES.GAMING]: 'Gaming',
|
|
[PAGES.GENERAL]: 'Cheese',
|
|
[PAGES.LAB]: 'Lab',
|
|
[PAGES.MOVIES]: 'Movies',
|
|
[PAGES.MUSIC]: 'Music',
|
|
[PAGES.NEWS]: 'News & Politics',
|
|
// [PAGES.RABBIT_HOLE]: 'The Rabbit Hole';
|
|
[PAGES.TECH]: 'Tech',
|
|
[PAGES.UNIVERSE]: 'The Universe',
|
|
[PAGES.WILD_WEST]: 'Wild West',
|
|
|
|
// --- Everything else in alphabetical order ---
|
|
[PAGES.BUY]: 'Buy or Swap',
|
|
[PAGES.CHANNELS]: 'Your channels',
|
|
[PAGES.CHANNELS_FOLLOWING]: 'Following',
|
|
[PAGES.CHANNELS_FOLLOWING_DISCOVER]: 'Discover Channels',
|
|
[PAGES.CHANNEL_NEW]: 'Create a channel',
|
|
[PAGES.CHECKOUT]: 'Checkout',
|
|
[PAGES.CODE_2257]: '2257',
|
|
[PAGES.CREATOR_DASHBOARD]: 'Creator Analytics',
|
|
[PAGES.HELP]: 'Help',
|
|
[PAGES.INVITE]: 'Invite',
|
|
[PAGES.LISTS]: 'Lists',
|
|
[PAGES.LIVESTREAM]: 'Go Live on Odysee',
|
|
[PAGES.LIVESTREAM_CURRENT]: 'Live (Experimental)',
|
|
[PAGES.NOTIFICATIONS]: 'Notifications',
|
|
[PAGES.RECEIVE]: 'Your address',
|
|
[PAGES.REPORT]: 'Report an issue or request a feature',
|
|
[PAGES.REPORT_CONTENT]: 'Report content',
|
|
[PAGES.REPOST_NEW]: 'Repost',
|
|
[PAGES.REWARDS]: 'Rewards',
|
|
[PAGES.REWARDS_VERIFY]: 'Verify to earn Credits',
|
|
[PAGES.SEARCH]: 'Search',
|
|
[PAGES.SEND]: 'Send Credits',
|
|
[PAGES.SETTINGS]: 'Settings',
|
|
[PAGES.SETTINGS_BLOCKED_MUTED]: 'Block and muted channels',
|
|
[PAGES.SETTINGS_CREATOR]: 'Creator settings',
|
|
[PAGES.SETTINGS_NOTIFICATIONS]: 'Manage notifications',
|
|
[PAGES.SETTINGS_STRIPE_ACCOUNT]: 'Bank Accounts',
|
|
[PAGES.SETTINGS_STRIPE_CARD]: 'Payment Methods',
|
|
[PAGES.SETTINGS_UPDATE_PWD]: 'Update password',
|
|
[PAGES.SETTINGS_OWN_COMMENTS]: 'Your comments',
|
|
[PAGES.SWAP]: 'Swap Credits',
|
|
[PAGES.TAGS_FOLLOWING]: 'Tags',
|
|
[PAGES.TAGS_FOLLOWING_MANAGE]: 'Manage tags',
|
|
[PAGES.UPLOAD]: 'Upload',
|
|
[PAGES.UPLOADS]: 'Your uploads',
|
|
[PAGES.WALLET]: 'Wallet',
|
|
[PAGES.WELCOME]: 'Welcome',
|
|
[PAGES.YOUTUBE_SYNC]: 'YouTube Sync',
|
|
};
|