Skip to content

Commit

Permalink
Translate strings
Browse files Browse the repository at this point in the history
  • Loading branch information
wpalani committed Nov 28, 2023
1 parent 254de76 commit f2189f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/app/components/site-info/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const SiteInfoBar = () => {
className="nfd-bg-[#383F4A] nfd-text-tiny nfd-w-full min-[400px]:nfd-w-auto"
>
<BluehostIcon />
Bluehost Account
{ __( 'Bluehost Account', 'wp-plugin-bluehost' ) }
</Button>
<Button
as="a"
Expand All @@ -68,8 +68,8 @@ export const SiteInfoBar = () => {
>
<WordPressIcon />
{ isWooCommerce && isStore
? 'View Store'
: 'View Site' }
? __( 'View Store', 'wp-plugin-bluehost' )
: __( 'View Site', 'wp-plugin-bluehost' ) }
</Button>
</div>
</div>
Expand Down
15 changes: 11 additions & 4 deletions src/app/pages/home/helpCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,25 @@ const HelpCard = ( {} ) => {
src={ SupportIllustration }
alt="Help Agent Illustration"
/>
<p>From DIY to full-service help.</p>
<p>
Call or chat 24/7 for support or let our experts build
your site for you.
{ __(
'From DIY to full-service help.',
'wp-plugin-bluehost'
) }
</p>
<p>
{ __(
'Call or chat 24/7 for support or let our experts build your site for you.',
'wp-plugin-bluehost'
) }
</p>
<Button
variant="secondary"
as="a"
href="#/help"
className="wppbh-help-link"
>
Help me
{ __( 'Get Help', 'wp-plugin-bluehost' ) }
</Button>
</div>
</Card.Content>
Expand Down

0 comments on commit f2189f1

Please sign in to comment.