Add/Correct Strings

This commit is contained in:
eatdostacos 2020-07-01 13:14:39 -07:00 committed by Sean Yesmunt
parent d51e52444c
commit aede386c22
3 changed files with 3 additions and 2 deletions

View file

@ -1010,6 +1010,7 @@
"Payment Type": "Payment Type", "Payment Type": "Payment Type",
"Purchase": "Purchase", "Purchase": "Purchase",
"No transactions.": "No transactions.", "No transactions.": "No transactions.",
"Status":"Status",
"Active": "Active", "Active": "Active",
"Historical": "Historical", "Historical": "Historical",
"Reposts": "Reposts", "Reposts": "Reposts",

View file

@ -112,7 +112,7 @@ export function CommentCreate(props: Props) {
disabled={channel === CHANNEL_NEW} disabled={channel === CHANNEL_NEW}
type={advancedEditor && !isReply ? 'markdown' : 'textarea'} type={advancedEditor && !isReply ? 'markdown' : 'textarea'}
name={isReply ? 'content_reply' : 'content_description'} 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')} quickActionLabel={isReply ? undefined : advancedEditor ? __('Simple Editor') : __('Advanced Editor')}
quickActionHandler={isReply ? undefined : toggleEditorMode} quickActionHandler={isReply ? undefined : toggleEditorMode}
onFocus={onTextareaFocus} onFocus={onTextareaFocus}

View file

@ -230,7 +230,7 @@ function TxoList(props: Props) {
{!hideStatus && ( {!hideStatus && (
<div> <div>
<fieldset-section> <fieldset-section>
<label>Status</label> label={__('Status')}
<div className={'txo__radios'}> <div className={'txo__radios'}>
<Button <Button
button="alt" button="alt"