@@ -13,7 +13,9 @@ import {
1313 PanelAdvancedSettings , AdvancedSelectControl , ControlSeparator , FontPairPicker , ProControl ,
1414} from '~stackable/components'
1515import { fetchSettings } from '~stackable/util'
16- import { i18n , isPro } from 'stackable'
16+ import {
17+ i18n , isPro , showProNotice ,
18+ } from 'stackable'
1719import {
1820 omit , head , isEqual ,
1921} from 'lodash'
@@ -286,7 +288,7 @@ addFilter( 'stackable.global-settings.inspector', 'stackable/global-typography',
286288 < ControlSeparator />
287289
288290 < div className = "ugb-global-settings-font-pair__heading" >
289- < h3 > Preset Font Pairs</ h3 >
291+ < h3 > { __ ( ' Preset Font Pairs' ) } </ h3 >
290292 { isPro && applyFilters (
291293 'stackable.global-settings.typography.font-pairs.addFontPair' ,
292294 [ ...FONT_PAIRS , ...customFontPairs ] ,
@@ -346,7 +348,7 @@ addFilter( 'stackable.global-settings.inspector', 'stackable/global-typography',
346348 />
347349 } ) }
348350 </ div >
349- { ! isPro && < ProControl type = "global- font-pairs" title = "Creating and editing Custom Font Pairs are premium features " /> }
351+ { showProNotice && < ProControl type = "font-pairs" /> }
350352 < ControlSeparator />
351353 </ div >
352354 }
@@ -364,7 +366,7 @@ addFilter( 'stackable.global-settings.inspector', 'stackable/global-typography',
364366 )
365367 }
366368
367- < h3 > Typography Settings</ h3 >
369+ < h3 > { __ ( ' Typography Settings' ) } </ h3 >
368370 < style > { getThemeStyles ( ) } </ style >
369371 { TYPOGRAPHY_TAGS . map ( ( {
370372 label, selector, help,
0 commit comments