Skip to content

Commit

Permalink
fix localization issue
Browse files Browse the repository at this point in the history
  • Loading branch information
saidmsaif committed Dec 24, 2021
1 parent 4b00341 commit 6cb16b2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions inc/option-panel/customizer/options/home-counter.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ function repeater_labels( $string, $id, $control ) {
'section' => 'craftnce_home_page_counter',
'settings' => 'craftnce_home_counter_section_featured_image_setting',
'button_labels' => array(
'select' => 'Select Image',
'remove' => 'Remove Image',
'change' => 'Change Image',
'select' => __('Select Image', 'craftnce'),
'remove' => __('Remove Image', 'craftnce'),
'change' => __('Change Image', 'craftnce'),
)
)));
6 changes: 3 additions & 3 deletions inc/option-panel/customizer/options/home-hero.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@
'section' => 'craftnce_home_page_hero',
'settings' => 'craftnce_home_hero_featured_image_setting',
'button_labels' => array(
'select' => 'Select Image',
'remove' => 'Remove Image',
'change' => 'Change Image',
'select' => __('Select Image', 'craftnce'),
'remove' => __('Remove Image', 'craftnce'),
'change' => __('Change Image', 'craftnce'),
)
)));
6 changes: 3 additions & 3 deletions inc/option-panel/customizer/options/home-info.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@
'section' => 'craftnce_home_page_info',
'settings' => 'craftnce_home_info_section_featured_image_setting',
'button_labels' => array(
'select' => 'Select Image',
'remove' => 'Remove Image',
'change' => 'Change Image',
'select' => __('Select Image', 'craftnce'),
'remove' => __('Remove Image', 'craftnce'),
'change' => __('Change Image', 'craftnce'),
)
)));
6 changes: 3 additions & 3 deletions inc/option-panel/customizer/options/home-infography.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@
'section' => 'craftnce_home_page_infography',
'settings' => 'craftnce_home_infography_section_featured_image_setting',
'button_labels' => array(
'select' => 'Select Image',
'remove' => 'Remove Image',
'change' => 'Change Image',
'select' => __('Select Image', 'craftnce'),
'remove' => __('Remove Image', 'craftnce'),
'change' => __('Change Image', 'craftnce'),
)
)));

Expand Down
6 changes: 3 additions & 3 deletions inc/option-panel/customizer/options/home-newsletter.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@
'section' => 'craftnce_home_page_newsletter',
'settings' => 'craftnce_home_newsletter_section_background_image_setting',
'button_labels' => array(
'select' => 'Select Image',
'remove' => 'Remove Image',
'change' => 'Change Image',
'select' => __('Select Image', 'craftnce'),
'remove' => __('Remove Image', 'craftnce'),
'change' => __('Change Image', 'craftnce'),
)
)));

0 comments on commit 6cb16b2

Please sign in to comment.