Add/Correct Strings
This commit is contained in:
parent
d51e52444c
commit
aede386c22
3 changed files with 3 additions and 2 deletions
|
@ -1010,6 +1010,7 @@
|
|||
"Payment Type": "Payment Type",
|
||||
"Purchase": "Purchase",
|
||||
"No transactions.": "No transactions.",
|
||||
"Status":"Status",
|
||||
"Active": "Active",
|
||||
"Historical": "Historical",
|
||||
"Reposts": "Reposts",
|
||||
|
|
|
@ -112,7 +112,7 @@ export function CommentCreate(props: Props) {
|
|||
disabled={channel === CHANNEL_NEW}
|
||||
type={advancedEditor && !isReply ? 'markdown' : 'textarea'}
|
||||
name={isReply ? 'content_reply' : 'content_description'}
|
||||
label={isReply ? __('Replying as %reply_channel%', { reply_channel: channel }) : __('Comment')}
|
||||
label={isReply ? __('Replying as %reply_channel%'), { reply_channel: channel }) : __('Comment')}
|
||||
quickActionLabel={isReply ? undefined : advancedEditor ? __('Simple Editor') : __('Advanced Editor')}
|
||||
quickActionHandler={isReply ? undefined : toggleEditorMode}
|
||||
onFocus={onTextareaFocus}
|
||||
|
|
|
@ -230,7 +230,7 @@ function TxoList(props: Props) {
|
|||
{!hideStatus && (
|
||||
<div>
|
||||
<fieldset-section>
|
||||
<label>Status</label>
|
||||
label={__('Status')}
|
||||
<div className={'txo__radios'}>
|
||||
<Button
|
||||
button="alt"
|
||||
|
|
Loading…
Reference in a new issue