Skip to content

Commit 9363505

Browse files
Merge branch 'develop' of https://github.com/gambitph/Stackable into develop
2 parents da8ce1d + a3840cd commit 9363505

File tree

2 files changed

+3
-3
lines changed
  • src

2 files changed

+3
-3
lines changed

src/components/variation-picker/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const VariationPicker = props => {
1818
const {
1919
icon = layout,
2020
label = __( 'Choose variation' ), // Dev note: no text domain here since this will use WP's translation.
21-
instructions = __( 'Select a variation to start with.' ), // Dev note: no text domain here since this will use WP's translation.
21+
instructions = __( 'Select a variation to start with.', i18n ),
2222
variations,
2323
onSelect,
2424
allowSkip,

src/plugins/global-settings/typography/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ addFilter( 'stackable.global-settings.inspector', 'stackable/global-typography',
460460
<ControlSeparator />
461461

462462
<div className="ugb-global-settings-font-pair__heading">
463-
<h3>{ __( 'Preset Font Pairs' ) }</h3>
463+
<h3>{ __( 'Preset Font Pairs', i18n ) }</h3>
464464
{ isPro && applyFilters(
465465
'stackable.global-settings.typography.font-pairs.addFontPair',
466466
[ ...FONT_PAIRS, ...customFontPairs ],
@@ -523,7 +523,7 @@ addFilter( 'stackable.global-settings.inspector', 'stackable/global-typography',
523523
{ showProNotice && <ProControlButton type="font-pairs" /> }
524524
<ControlSeparator />
525525

526-
<h3>{ __( 'Typography Settings' ) }</h3>
526+
<h3>{ __( 'Typography Settings', i18n ) }</h3>
527527
<AdvancedSelectControl
528528
label={ __( 'Type Scale', i18n ) }
529529
options={ TYPE_SCALE }

0 commit comments

Comments
 (0)