You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$save_pending = apply_filters("redux/{$this->args['opt_name']}/localize/save_pending", __( 'You have changes that are not saved. Would you like to save them now?', 'redux-framework' ));
1900
+
1901
+
/**
1902
+
* Reset all string
1903
+
* filter 'redux/{opt_name}/localize/reset
1904
+
*
1905
+
* @param string reset all string
1906
+
*/
1907
+
$reset_all = apply_filters("redux/{$this->args['opt_name']}/localize/reset", __( 'Are you sure? Resetting will lose all custom values.', 'redux-framework' ));
1908
+
1909
+
/**
1910
+
* Reset section string
1911
+
* filter 'redux/{opt_name}/localize/reset_section
1912
+
*
1913
+
* @param string reset section string
1914
+
*/
1915
+
$reset_section = apply_filters("redux/{$this->args['opt_name']}/localize/reset_section", __( 'Are you sure? Resetting will lose all custom values in this section.', 'redux-framework' ));
1916
+
1917
+
/**
1918
+
* Preset confirm string
1919
+
* filter 'redux/{opt_name}/localize/preset
1920
+
*
1921
+
* @param string preset confirm string
1922
+
*/
1923
+
$preset_confirm = apply_filters("redux/{$this->args['opt_name']}/localize/preset", __( 'Your current options will be replaced with the values of this preset. Would you like to proceed?', 'redux-framework' ));
1924
+
1891
1925
$this->localize_data['args'] = array(
1892
-
'save_pending' => __( 'You have changes that are not saved. Would you like to save them now?', 'redux-framework' ),
1893
-
'reset_confirm' => __( 'Are you sure? Resetting will lose all custom values.', 'redux-framework' ),
1894
-
'reset_section_confirm' => __( 'Are you sure? Resetting will lose all custom values in this section.', 'redux-framework' ),
1895
-
'preset_confirm' => __( 'Your current options will be replaced with the values of this preset. Would you like to proceed?', 'redux-framework' ),
0 commit comments