feature : Option to show / hide author details (#899)

* feature : option to show author details

* added languages

* feat: added dates proper format

final
This commit is contained in:
MAYUR
2024-10-14 10:50:11 +00:00
committed by GitHub
parent 03de2ecc3f
commit 30130e5e99
26 changed files with 69 additions and 29 deletions

View File

@@ -144,15 +144,22 @@ class QuoteOptions extends PureComponent {
subtitle={variables.getMessage(`${QUOTE_SECTION}.additional`)}
/>
<Action>
<Checkbox
name="authorDetails"
text = {variables.getMessage(`${QUOTE_SECTION}.author_details`)}
element=".other"
/>
<Checkbox
name="authorLink"
text={variables.getMessage(`${QUOTE_SECTION}.author_link`)}
element=".other"
disabled={localStorage.getItem('authorDetails')==='false'}
/>
<Checkbox
name="authorImg"
text={variables.getMessage(`${QUOTE_SECTION}.author_img`)}
element=".other"
disabled={localStorage.getItem('authorDetails')==='false'}
/>
</Action>
</Row>