Skip to content

Commit 0cc3a95

Browse files
authored
Fix: String Translation in admin.js (#3414)
* Update admin.js * Update admin.js * Update admin.js
1 parent 7ae2048 commit 0cc3a95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/welcome/admin.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ const SEARCH_TREE = [
238238
{
239239
id: 'optimizations',
240240
children: [
241-
__( 'Frontend JS & CSS Files' ),
241+
__( 'Frontend JS & CSS Files', i18n ),
242242
],
243243
},
244244
{
@@ -679,7 +679,7 @@ const EditorSettings = props => {
679679
{ editor.children.length > 0 &&
680680
<div className="s-setting-group">
681681
<h2>{ __( 'Editor', i18n ) }</h2>
682-
<p className="s-settings-subtitle">{ __( 'You can customize some of the features and behavior of Stackable in the editor here.' ) } </p>
682+
<p className="s-settings-subtitle">{ __( 'You can customize some of the features and behavior of Stackable in the editor here.', i18n ) } </p>
683683
<AdminToggleSetting
684684
label={ __( 'Stackable Text as Default Block', i18n ) }
685685
searchedSettings={ editor.children }
@@ -789,7 +789,7 @@ const EditorSettings = props => {
789789
{ inspector.children.length > 0 &&
790790
<div className="s-setting-group">
791791
<h2>{ __( 'Inspector', i18n ) }</h2>
792-
<p className="s-settings-subtitle">{ __( 'You can customize some of the features and behavior of Stackable in the inspector here.' ) }</p>
792+
<p className="s-settings-subtitle">{ __( 'You can customize some of the features and behavior of Stackable in the inspector here.', i18n ) }</p>
793793
<AdminToggleSetting
794794
label={ __( 'Don\'t show help video tooltips', i18n ) }
795795
searchedSettings={ inspector.children }

0 commit comments

Comments
 (0)