mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
Merge branch 'text-channels'
This commit is contained in:
commit
5aa471a68f
1 changed files with 6 additions and 5 deletions
|
@ -112,7 +112,7 @@ class ChannelSection extends React.PureComponent {
|
||||||
<option key={name} value={name}>{name}</option>
|
<option key={name} value={name}>{name}</option>
|
||||||
)}
|
)}
|
||||||
<option key="new" value="new">
|
<option key="new" value="new">
|
||||||
{__("New identity...")}
|
{__("New channel...")}
|
||||||
</option>
|
</option>
|
||||||
</FormRow>
|
</FormRow>
|
||||||
);
|
);
|
||||||
|
@ -125,9 +125,10 @@ class ChannelSection extends React.PureComponent {
|
||||||
return (
|
return (
|
||||||
<section className="card">
|
<section className="card">
|
||||||
<div className="card__title-primary">
|
<div className="card__title-primary">
|
||||||
<h4>{__("Identity")}</h4>
|
<h4>{__("Channel Name")}</h4>
|
||||||
<div className="card__subtitle">
|
<div className="card__subtitle">
|
||||||
{__("Who created this content?")}
|
{__("This is the channel that broadcasts your content.")}
|
||||||
|
{__("Ex. @Marvel, @TheBeatles, @BooksByJoe")}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
|
@ -157,8 +158,8 @@ class ChannelSection extends React.PureComponent {
|
||||||
button="primary"
|
button="primary"
|
||||||
label={
|
label={
|
||||||
!this.state.creatingChannel
|
!this.state.creatingChannel
|
||||||
? __("Create identity")
|
? __("Create channel")
|
||||||
: __("Creating identity...")
|
: __("Creating channel...")
|
||||||
}
|
}
|
||||||
onClick={this.handleCreateChannelClick.bind(this)}
|
onClick={this.handleCreateChannelClick.bind(this)}
|
||||||
disabled={this.state.creatingChannel}
|
disabled={this.state.creatingChannel}
|
||||||
|
|
Loading…
Add table
Reference in a new issue