Skip to content

Commit

Permalink
refactor: fix give text domain typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Waldstein committed Oct 23, 2023
1 parent 5a74bda commit 90f8763
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default () => {
label={__('From Name', 'give')}
help={__(
'The name which appears in the "From" field in all GiveWP donation emails.',
'givewp'
'give'
)}
value={emailFromName}
onChange={(emailFromName) => dispatch(setFormSettings({emailFromName}))}
Expand All @@ -60,7 +60,7 @@ export default () => {
label={__('From Email', 'give')}
help={__(
'Email address from which all GiveWP emails are sent from. This will act as the "from" and "reply-to" email address.',
'givewp'
'give'
)}
value={emailFromEmail}
onChange={(emailFromEmail) => dispatch(setFormSettings({emailFromEmail}))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default () => {
const templateTagsDescription = createInterpolateElement(
__(
'Available template tags for this email. HTML is accepted. <a>See our documentation</a> for examples of how to use custom meta email tags to output additional donor or donation information in your GiveWP emails',
'givewp'
'give'
),
{
a: <a href="https://make.wordpress.org" target="_blank" />,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const EmailTemplateSettings = ({notification}: EmailTemplateSettingsProps) => {
hideLabelFromVision={true}
help={__(
'Global options are set in GiveWP settings. You may override them for this form here',
'givewp'
'give'
)}
selected={option.status ?? 'global'}
options={config.statusOptions}
Expand Down Expand Up @@ -149,7 +149,7 @@ const EmailTemplateSettings = ({notification}: EmailTemplateSettingsProps) => {
label={__('Email', 'give')}
help={__(
'This email is automatically sent to the individual fundraiser and the recipient cannot be customized.',
'givewp'
'give'
)}
onChange={() => null}
value="{donor_email}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function LeftContentSection({assets}: LeftContentSectionProps) {
<p>
{__(
'GiveWP 3.0 introduces an enhanced forms experience powered by the new Visual Donations Form Builder.',
'givewp'
'give'
)}
</p>
</header>
Expand All @@ -47,7 +47,7 @@ export default function LeftContentSection({assets}: LeftContentSectionProps) {
<p>
{__(
'The team is still working on some new features, add-on and payment gateway compatibility to make your form experience better.',
'givewp'
'give'
)}
</p>
<ExternalLink href={'https://docs.givewp.com/welcome-docs'}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function RightContentSection({assets}: RightContentSectionProps)
title={__('Design mode', 'give')}
description={__(
'See exactly what your form looks like for potential donors using the “Design” tab of the builder. Changes are visible immediately.',
'givewp'
'give'
)}
>
<VideoPlayer src={`${assets}/design-mode.mp4`} fallbackImage={`${assets}/design-mode.min.png`} />
Expand All @@ -29,7 +29,7 @@ export default function RightContentSection({assets}: RightContentSectionProps)
title={__('Custom Paragraph and Sections', 'give')}
description={__(
'Add custom paragraphs or add whole sections anywhere in your form, no code required.',
'givewp'
'give'
)}
>
<VideoPlayer
Expand Down

0 comments on commit 90f8763

Please sign in to comment.