Str-context-split: "Follow"
## Issue 4192
This commit is contained in:
parent
d7a178d259
commit
80b4600f60
5 changed files with 8 additions and 4 deletions
|
@ -21,6 +21,8 @@
|
|||
"Library": "Library",
|
||||
"Purchased": "Purchased",
|
||||
"Following": "Following",
|
||||
"Following --[sidebar button]--": "Following",
|
||||
"Following --[button label indicating a channel has been followed]--": "Following",
|
||||
"The tags you follow will change what's trending for you.": "The tags you follow will change what's trending for you.",
|
||||
"Tags": "Tags",
|
||||
"Send a tip": "Send a tip",
|
||||
|
|
|
@ -21,7 +21,7 @@ const HOME = {
|
|||
};
|
||||
|
||||
const RECENT_FROM_FOLLOWING = {
|
||||
label: 'Following',
|
||||
label: 'Following --[sidebar button]--',
|
||||
navigate: `/$/${PAGES.CHANNELS_FOLLOWING}`,
|
||||
icon: ICONS.SUBSCRIBE,
|
||||
};
|
||||
|
|
|
@ -41,7 +41,9 @@ export default function SubscribeButton(props: Props) {
|
|||
const claimName = '@' + channelName;
|
||||
|
||||
const subscriptionHandler = isSubscribed ? doChannelUnsubscribe : doChannelSubscribe;
|
||||
const subscriptionLabel = isSubscribed ? __('Following') : __('Follow');
|
||||
const subscriptionLabel = isSubscribed
|
||||
? __('Following --[button label indicating a channel has been followed]--')
|
||||
: __('Follow');
|
||||
const unfollowOverride = isSubscribed && isHovering && __('Unfollow');
|
||||
|
||||
const label = isMobile && shrinkOnMobile ? '' : unfollowOverride || subscriptionLabel;
|
||||
|
|
|
@ -148,7 +148,7 @@ export default function TagsSearch(props: Props) {
|
|||
%selectTagsLabel% (%number% left)
|
||||
</I18nMessage>
|
||||
) : (
|
||||
label || __('Following')
|
||||
label || __('Following --[button label indicating a channel has been followed]--')
|
||||
)}
|
||||
</label>
|
||||
<ul className="tags--remove">
|
||||
|
|
|
@ -50,7 +50,7 @@ function DiscoverPage(props: Props) {
|
|||
const tag = (tags && tags[0]) || null;
|
||||
|
||||
const isFollowing = followedTags.map(({ name }) => name).includes(tag);
|
||||
let label = isFollowing ? __('Following') : __('Follow');
|
||||
let label = isFollowing ? __('Following --[button label indicating a channel has been followed]--') : __('Follow');
|
||||
if (isHovering && isFollowing) {
|
||||
label = __('Unfollow');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue