AddToAny Share Buttons - Version 1.7.22

Version Description

  • Use WordPress 4.9 code editor for Additional CSS and Additional JavaScript boxes
  • Rename CSS handles to addtoany
  • Remove Use default CSS option
    • If needed, you can disable the default stylesheet using add_action( 'wp_enqueue_scripts', function() { wp_dequeue_style( 'addtoany' ); }, 21 );
  • Remove menu style button in admin
  • Use Italian language pack (thanks truttle, blogforum)
  • Use Spanish language pack (thanks Luis Rull, Juan Ramn Navas, Yan Arlex)
Download this release

Release Info

Developer micropat
Plugin Icon 128x128 AddToAny Share Buttons
Version 1.7.22
Comparing to
See all releases

Code changes from version 1.7.21 to 1.7.22

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat, addtoany
3
  Tags: AddToAny, share, sharing, social, share buttons, share button, social media, media, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed, icons
4
  Requires at least: 3.7
5
  Tested up to: 4.9
6
- Stable tag: 1.7.21
7
 
8
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
9
 
@@ -351,6 +351,15 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
351
 
352
  == Changelog ==
353
 
 
 
 
 
 
 
 
 
 
354
  = 1.7.21 =
355
  * Fix simplified initial `a2a_config` JS so overlays are not enabled by default
356
 
3
  Tags: AddToAny, share, sharing, social, share buttons, share button, social media, media, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed, icons
4
  Requires at least: 3.7
5
  Tested up to: 4.9
6
+ Stable tag: 1.7.22
7
 
8
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
9
 
351
 
352
  == Changelog ==
353
 
354
+ = 1.7.22 =
355
+ * Use WordPress 4.9 code editor for Additional CSS and Additional JavaScript boxes
356
+ * Rename CSS handles to `addtoany`
357
+ * Remove Use default CSS option
358
+ * If needed, you can disable the default stylesheet using `add_action( 'wp_enqueue_scripts', function() { wp_dequeue_style( 'addtoany' ); }, 21 );`
359
+ * Remove menu style button in admin
360
+ * Use Italian language pack (thanks truttle, blogforum)
361
+ * Use Spanish language pack (thanks Luis Rull, Juan Ramón Navas, Yan Arlex)
362
+
363
  = 1.7.21 =
364
  * Fix simplified initial `a2a_config` JS so overlays are not enabled by default
365
 
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AddToAny Share Buttons
4
  Plugin URI: https://www.addtoany.com/
5
  Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
6
- Version: 1.7.21
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
@@ -939,81 +939,68 @@ function A2A_SHARE_SAVE_stylesheet() {
939
 
940
  $options = $A2A_SHARE_SAVE_options;
941
 
942
- // Use stylesheet?
943
- if ( ! isset( $options['inline_css'] ) || $options['inline_css'] != '-1' && ! is_admin() ) {
944
-
945
- wp_enqueue_style( 'A2A_SHARE_SAVE', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.css', false, '1.14' );
946
-
947
- // wp_add_inline_style requires WP 3.3+
948
- if ( '3.3' <= get_bloginfo( 'version' ) ) {
 
949
 
950
- // Prepare inline CSS
951
- $inline_css = '';
 
 
 
 
 
 
 
 
952
 
953
- $vertical_type = ( isset( $options['floating_vertical'] ) && 'none' != $options['floating_vertical'] ) ? $options['floating_vertical'] : false;
954
- $horizontal_type = ( isset( $options['floating_horizontal'] ) && 'none' != $options['floating_horizontal'] ) ? $options['floating_horizontal'] : false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
955
 
956
- // If vertical bar is enabled
957
- if ( $vertical_type &&
958
- // and respsonsiveness is enabled
959
- ( ! isset( $options['floating_vertical_responsive'] ) || '-1' != $options['floating_vertical_responsive'] )
960
- ) {
961
-
962
- // Get min-width for media query
963
- $vertical_max_width = (
964
- isset( $options['floating_vertical_responsive_max_width'] ) &&
965
- is_numeric( $options['floating_vertical_responsive_max_width'] )
966
- ) ? $options['floating_vertical_responsive_max_width'] : '980';
967
-
968
- // Set media query
969
- $inline_css .= '@media screen and (max-width:' . $vertical_max_width . 'px){' . "\n"
970
- . '.a2a_floating_style.a2a_vertical_style{display:none;}' . "\n"
971
- . '}';
972
-
973
- }
974
 
975
- // If horizontal bar is enabled
976
- if ( $horizontal_type &&
977
- // and respsonsiveness is enabled
978
- ( ! isset( $options['floating_horizontal_responsive'] ) || '-1' != $options['floating_horizontal_responsive'] )
979
- ) {
980
-
981
- // Get max-width for media query
982
- $horizontal_min_width = (
983
- isset( $options['floating_horizontal_responsive_min_width'] ) &&
984
- is_numeric( $options['floating_horizontal_responsive_min_width'] )
985
- ) ? $options['floating_horizontal_responsive_min_width'] : '981';
986
-
987
- // Insert newline if there is inline CSS already
988
- $inline_css = 0 < strlen( $inline_css ) ? $inline_css . "\n" : $inline_css;
989
-
990
- // Set media query
991
- $inline_css .= '@media screen and (min-width:' . $horizontal_min_width . 'px){' . "\n"
992
- . '.a2a_floating_style.a2a_default_style{display:none;}' . "\n"
993
- . '}';
994
-
995
- }
996
 
997
- // If additional CSS (custom CSS for AddToAny) is set
998
- if ( ! empty( $options['additional_css'] ) ) {
999
- $custom_css = stripslashes( $options['additional_css'] );
1000
-
1001
- // Insert newline if there is inline CSS already
1002
- $inline_css = 0 < strlen( $inline_css ) ? $inline_css . "\n" : $inline_css;
1003
-
1004
- $inline_css .= $custom_css;
1005
- }
1006
 
1007
- // If there is inline CSS
1008
- if ( 0 < strlen( $inline_css ) ) {
1009
- // Insert inline CSS
1010
- wp_add_inline_style( 'A2A_SHARE_SAVE', $inline_css );
1011
- }
1012
-
1013
  }
1014
 
 
 
 
 
 
1015
  }
1016
-
1017
  }
1018
 
1019
  add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_stylesheet', 20 );
@@ -1060,7 +1047,6 @@ function A2A_SHARE_SAVE_refresh_cache() {
1060
  }
1061
 
1062
  function A2A_SHARE_SAVE_schedule_cache() {
1063
- // WP "Cron" requires WP version 2.1
1064
  $timestamp = wp_next_scheduled( 'A2A_SHARE_SAVE_refresh_cache' );
1065
  if ( ! $timestamp) {
1066
  // Only schedule if currently unscheduled
@@ -1091,9 +1077,6 @@ function A2A_SHARE_SAVE_add_menu_link() {
1091
  'addtoany',
1092
  'A2A_SHARE_SAVE_options_page'
1093
  );
1094
-
1095
- /* Using registered $page handle to hook script load, to only load in AddToAny admin */
1096
- add_filter( 'admin_print_scripts-' . $page, 'A2A_SHARE_SAVE_scripts' );
1097
  }
1098
 
1099
  add_filter( 'admin_menu', 'A2A_SHARE_SAVE_add_menu_link' );
3
  Plugin Name: AddToAny Share Buttons
4
  Plugin URI: https://www.addtoany.com/
5
  Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
6
+ Version: 1.7.22
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
939
 
940
  $options = $A2A_SHARE_SAVE_options;
941
 
942
+ if ( ! is_admin() ) {
943
+ wp_enqueue_style( 'addtoany', $A2A_SHARE_SAVE_plugin_url_path . '/addtoany.min.css', false, '1.14' );
944
+
945
+ // Prepare inline CSS
946
+ $inline_css = '';
947
+
948
+ $vertical_type = ( isset( $options['floating_vertical'] ) && 'none' != $options['floating_vertical'] ) ? $options['floating_vertical'] : false;
949
+ $horizontal_type = ( isset( $options['floating_horizontal'] ) && 'none' != $options['floating_horizontal'] ) ? $options['floating_horizontal'] : false;
950
 
951
+ // If vertical bar is enabled
952
+ if ( $vertical_type &&
953
+ // and respsonsiveness is enabled
954
+ ( ! isset( $options['floating_vertical_responsive'] ) || '-1' != $options['floating_vertical_responsive'] )
955
+ ) {
956
+ // Get min-width for media query
957
+ $vertical_max_width = (
958
+ isset( $options['floating_vertical_responsive_max_width'] ) &&
959
+ is_numeric( $options['floating_vertical_responsive_max_width'] )
960
+ ) ? $options['floating_vertical_responsive_max_width'] : '980';
961
 
962
+ // Set media query
963
+ $inline_css .= '@media screen and (max-width:' . $vertical_max_width . 'px){' . "\n"
964
+ . '.a2a_floating_style.a2a_vertical_style{display:none;}' . "\n"
965
+ . '}';
966
+ }
967
+
968
+ // If horizontal bar is enabled
969
+ if ( $horizontal_type &&
970
+ // and respsonsiveness is enabled
971
+ ( ! isset( $options['floating_horizontal_responsive'] ) || '-1' != $options['floating_horizontal_responsive'] )
972
+ ) {
973
+ // Get max-width for media query
974
+ $horizontal_min_width = (
975
+ isset( $options['floating_horizontal_responsive_min_width'] ) &&
976
+ is_numeric( $options['floating_horizontal_responsive_min_width'] )
977
+ ) ? $options['floating_horizontal_responsive_min_width'] : '981';
978
 
979
+ // Insert newline if there is inline CSS already
980
+ $inline_css = 0 < strlen( $inline_css ) ? $inline_css . "\n" : $inline_css;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
981
 
982
+ // Set media query
983
+ $inline_css .= '@media screen and (min-width:' . $horizontal_min_width . 'px){' . "\n"
984
+ . '.a2a_floating_style.a2a_default_style{display:none;}' . "\n"
985
+ . '}';
986
+ }
987
+
988
+ // If additional CSS (custom CSS for AddToAny) is set
989
+ if ( ! empty( $options['additional_css'] ) ) {
990
+ $custom_css = stripslashes( $options['additional_css'] );
 
 
 
 
 
 
 
 
 
 
 
 
991
 
992
+ // Insert newline if there is inline CSS already
993
+ $inline_css = 0 < strlen( $inline_css ) ? $inline_css . "\n" : $inline_css;
 
 
 
 
 
 
 
994
 
995
+ $inline_css .= $custom_css;
 
 
 
 
 
996
  }
997
 
998
+ // If there is inline CSS
999
+ if ( 0 < strlen( $inline_css ) ) {
1000
+ // Insert inline CSS
1001
+ wp_add_inline_style( 'addtoany', $inline_css );
1002
+ }
1003
  }
 
1004
  }
1005
 
1006
  add_action( 'wp_enqueue_scripts', 'A2A_SHARE_SAVE_stylesheet', 20 );
1047
  }
1048
 
1049
  function A2A_SHARE_SAVE_schedule_cache() {
 
1050
  $timestamp = wp_next_scheduled( 'A2A_SHARE_SAVE_refresh_cache' );
1051
  if ( ! $timestamp) {
1052
  // Only schedule if currently unscheduled
1077
  'addtoany',
1078
  'A2A_SHARE_SAVE_options_page'
1079
  );
 
 
 
1080
  }
1081
 
1082
  add_filter( 'admin_menu', 'A2A_SHARE_SAVE_add_menu_link' );
addtoany.admin.php CHANGED
@@ -82,8 +82,8 @@ function A2A_SHARE_SAVE_enqueue_pointer_script_style( $hook_suffix ) {
82
  // Variable required for PHP < 5.5 because empty() only supports variables
83
  $options = get_option( 'addtoany_options', array() );
84
 
85
- // Return if AddToAny options have been set, or WP < 3.3
86
- if ( ! empty( $options ) || get_bloginfo( 'version' ) < '3.3' ) {
87
  return;
88
  }
89
 
@@ -309,7 +309,6 @@ function A2A_SHARE_SAVE_options_page() {
309
  $new_options['custom_icons_type'] = ( isset( $_POST['A2A_SHARE_SAVE_custom_icons_type'] ) ) ? $_POST['A2A_SHARE_SAVE_custom_icons_type'] : 'png';
310
  $new_options['custom_icons_width'] = ( isset( $_POST['A2A_SHARE_SAVE_custom_icons_width'] ) ) ? $_POST['A2A_SHARE_SAVE_custom_icons_width'] : '';
311
  $new_options['custom_icons_height'] = ( isset( $_POST['A2A_SHARE_SAVE_custom_icons_height'] ) ) ? $_POST['A2A_SHARE_SAVE_custom_icons_height'] : '';
312
- $new_options['inline_css'] = ( isset( $_POST['A2A_SHARE_SAVE_inline_css'] ) && $_POST['A2A_SHARE_SAVE_inline_css'] == '1') ? '1' : '-1';
313
  $new_options['cache'] = ( isset( $_POST['A2A_SHARE_SAVE_cache'] ) && $_POST['A2A_SHARE_SAVE_cache'] == '1' ) ? '1' : '-1';
314
 
315
  $custom_post_types = array_values( get_post_types( array( 'public' => true, '_builtin' => false ), 'objects' ) );
@@ -528,7 +527,7 @@ function A2A_SHARE_SAVE_options_page() {
528
 
529
  <tr valign="top">
530
  <th scope="row"><?php _e('Sharing Header', 'add-to-any'); ?></th>
531
- <td><fieldset id="addtoany_extra_section_sharing_header" class="addtoany_extra_section" role="region">
532
  <label>
533
  <input name="A2A_SHARE_SAVE_header" type="text" class="code" placeholder="<?php esc_attr_e( 'Share this:' ); ?>" size="50" value="<?php if ( isset( $options['header'] ) ) esc_attr_e( $options['header'] ); ?>" />
534
  </label>
@@ -614,23 +613,12 @@ function A2A_SHARE_SAVE_options_page() {
614
  <input name="A2A_SHARE_SAVE_onclick" type="checkbox"<?php if ( isset( $options['onclick'] ) && $options['onclick'] == '1' ) echo ' checked="checked"'; ?> value="1"/>
615
  <?php _e('Only show the universal share menu when the user <em>clicks</em> the universal share button', 'add-to-any'); ?>
616
  </label>
617
- <label>
618
- <p><?php _e("You can use AddToAny's Menu Styler to customize the colors of your universal share menu. When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional JavaScript</a> box below.", 'add-to-any'); ?></p>
619
- </label>
620
- <p>
621
- <a href="https://www.addtoany.com/buttons/share/menu_style/wordpress" class="button-secondary" title="<?php _e("Open the AddToAny Menu Styler in a new window", 'add-to-any'); ?>" target="_blank" onclick="document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus(); document.getElementById('A2A_SHARE_SAVE_menu_styler_note').style.display='';"><?php _e("Open Menu Styler", 'add-to-any'); ?></a>
622
- </p>
623
  </fieldset></td>
624
  </tr>
625
 
626
  <tr valign="top">
627
  <th scope="row"><?php _e('Additional JavaScript', 'add-to-any'); ?></th>
628
  <td><fieldset id="addtoany_extra_section_additional_javascript" class="addtoany_extra_section" role="region">
629
- <p id="A2A_SHARE_SAVE_menu_styler_note" style="display:none">
630
- <label for="A2A_SHARE_SAVE_additional_js_variables" class="updated">
631
- <strong><?php _e("Paste the code from AddToAny's Menu Styler in the box below!", 'add-to-any'); ?></strong>
632
- </label>
633
- </p>
634
  <label for="A2A_SHARE_SAVE_additional_js_variables">
635
  <p><?php _e('Below you can add special JavaScript code for AddToAny.', 'add-to-any'); ?>
636
  <?php _e("Advanced users should explore AddToAny's <a href=\"https://www.addtoany.com/buttons/customize/wordpress\" target=\"_blank\">additional options</a>.", 'add-to-any'); ?></p>
@@ -671,14 +659,6 @@ function A2A_SHARE_SAVE_options_page() {
671
  <?php _e("Specify the URL of the directory containing your custom icons. For example, a URL of <code>//example.com/blog/uploads/addtoany/icons/custom/</code> containing <code>facebook.png</code> and <code>twitter.png</code>. Be sure that custom icon filenames match the icon filenames in <code>plugins/add-to-any/icons</code>. For AddToAny's Universal Button, select Image URL and specify the URL of your AddToAny universal share icon (<a href=\"#\" onclick=\"document.getElementsByName('A2A_SHARE_SAVE_button_custom')[0].focus();return false\">above</a>).", 'add-to-any'); ?>
672
  </p>
673
  <br/>
674
- <label for="A2A_SHARE_SAVE_inline_css">
675
- <input name="A2A_SHARE_SAVE_inline_css" id="A2A_SHARE_SAVE_inline_css" type="checkbox"<?php if ( ! isset( $options['inline_css'] ) || $options['inline_css'] != '-1' ) echo ' checked="checked"'; ?> value="1"/>
676
- <?php _e('Use default CSS', 'add-to-any'); ?>
677
- </label>
678
- <p class="description">
679
- <?php _e("Only disable AddToAny's default stylesheet if you already have the necessary CSS code applied to your AddToAny buttons.", 'add-to-any'); ?>
680
- </p>
681
- <br/>
682
  <label for="A2A_SHARE_SAVE_cache">
683
  <input name="A2A_SHARE_SAVE_cache" id="A2A_SHARE_SAVE_cache" type="checkbox"<?php if ( isset( $options['cache'] ) && $options['cache'] == '1' ) echo ' checked="checked"'; ?> value="1"/>
684
  <?php _e('Cache AddToAny locally with daily cache updates', 'add-to-any'); ?>
@@ -1082,8 +1062,8 @@ function A2A_SHARE_SAVE_admin_head() {
1082
  jQuery(this).fadeOut('fast');
1083
  });
1084
 
1085
- // Hide each 'extra' section if it does not have a textarea with a value
1086
- jQuery('.addtoany_extra_section:not(:has(textarea:not(:empty)))').hide()
1087
  // Keep it accessible
1088
  .attr('aria-expanded', 'false')
1089
  .attr('tabindex', '-1')
@@ -1101,8 +1081,9 @@ function A2A_SHARE_SAVE_admin_head() {
1101
  });
1102
  --></script>
1103
 
1104
- <style type="text/css">
1105
- .color-field-container{display:none;}
 
1106
 
1107
  .ui-sortable-placeholder{background-color:transparent;border:1px dashed #CCC !important;}
1108
  .addtoany_admin_list{list-style:none;padding:0;margin:0;}
@@ -1172,10 +1153,56 @@ function A2A_SHARE_SAVE_admin_head() {
1172
 
1173
  add_filter( 'admin_head', 'A2A_SHARE_SAVE_admin_head' );
1174
 
1175
-
1176
-
1177
- function A2A_SHARE_SAVE_scripts() {
 
 
1178
  wp_enqueue_script( 'jquery-ui-sortable' );
1179
  wp_enqueue_script( 'wp-color-picker' );
1180
  wp_enqueue_style( 'wp-color-picker' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1181
  }
 
 
82
  // Variable required for PHP < 5.5 because empty() only supports variables
83
  $options = get_option( 'addtoany_options', array() );
84
 
85
+ // Return if AddToAny options have been set
86
+ if ( ! empty( $options ) ) {
87
  return;
88
  }
89
 
309
  $new_options['custom_icons_type'] = ( isset( $_POST['A2A_SHARE_SAVE_custom_icons_type'] ) ) ? $_POST['A2A_SHARE_SAVE_custom_icons_type'] : 'png';
310
  $new_options['custom_icons_width'] = ( isset( $_POST['A2A_SHARE_SAVE_custom_icons_width'] ) ) ? $_POST['A2A_SHARE_SAVE_custom_icons_width'] : '';
311
  $new_options['custom_icons_height'] = ( isset( $_POST['A2A_SHARE_SAVE_custom_icons_height'] ) ) ? $_POST['A2A_SHARE_SAVE_custom_icons_height'] : '';
 
312
  $new_options['cache'] = ( isset( $_POST['A2A_SHARE_SAVE_cache'] ) && $_POST['A2A_SHARE_SAVE_cache'] == '1' ) ? '1' : '-1';
313
 
314
  $custom_post_types = array_values( get_post_types( array( 'public' => true, '_builtin' => false ), 'objects' ) );
527
 
528
  <tr valign="top">
529
  <th scope="row"><?php _e('Sharing Header', 'add-to-any'); ?></th>
530
+ <td><fieldset id="addtoany_extra_section_sharing_header" class="addtoany_extra_section<?php if ( ! empty( $options['header'] ) ) echo ' addtoany_show_extra'; ?>" role="region">
531
  <label>
532
  <input name="A2A_SHARE_SAVE_header" type="text" class="code" placeholder="<?php esc_attr_e( 'Share this:' ); ?>" size="50" value="<?php if ( isset( $options['header'] ) ) esc_attr_e( $options['header'] ); ?>" />
533
  </label>
613
  <input name="A2A_SHARE_SAVE_onclick" type="checkbox"<?php if ( isset( $options['onclick'] ) && $options['onclick'] == '1' ) echo ' checked="checked"'; ?> value="1"/>
614
  <?php _e('Only show the universal share menu when the user <em>clicks</em> the universal share button', 'add-to-any'); ?>
615
  </label>
 
 
 
 
 
 
616
  </fieldset></td>
617
  </tr>
618
 
619
  <tr valign="top">
620
  <th scope="row"><?php _e('Additional JavaScript', 'add-to-any'); ?></th>
621
  <td><fieldset id="addtoany_extra_section_additional_javascript" class="addtoany_extra_section" role="region">
 
 
 
 
 
622
  <label for="A2A_SHARE_SAVE_additional_js_variables">
623
  <p><?php _e('Below you can add special JavaScript code for AddToAny.', 'add-to-any'); ?>
624
  <?php _e("Advanced users should explore AddToAny's <a href=\"https://www.addtoany.com/buttons/customize/wordpress\" target=\"_blank\">additional options</a>.", 'add-to-any'); ?></p>
659
  <?php _e("Specify the URL of the directory containing your custom icons. For example, a URL of <code>//example.com/blog/uploads/addtoany/icons/custom/</code> containing <code>facebook.png</code> and <code>twitter.png</code>. Be sure that custom icon filenames match the icon filenames in <code>plugins/add-to-any/icons</code>. For AddToAny's Universal Button, select Image URL and specify the URL of your AddToAny universal share icon (<a href=\"#\" onclick=\"document.getElementsByName('A2A_SHARE_SAVE_button_custom')[0].focus();return false\">above</a>).", 'add-to-any'); ?>
660
  </p>
661
  <br/>
 
 
 
 
 
 
 
 
662
  <label for="A2A_SHARE_SAVE_cache">
663
  <input name="A2A_SHARE_SAVE_cache" id="A2A_SHARE_SAVE_cache" type="checkbox"<?php if ( isset( $options['cache'] ) && $options['cache'] == '1' ) echo ' checked="checked"'; ?> value="1"/>
664
  <?php _e('Cache AddToAny locally with daily cache updates', 'add-to-any'); ?>
1062
  jQuery(this).fadeOut('fast');
1063
  });
1064
 
1065
+ // Hide each 'extra' section if it is not .addtoany_show_extra, or it does not have a textarea with a value
1066
+ jQuery('.addtoany_extra_section:not(.addtoany_show_extra, :has(textarea:not(:empty)))').hide()
1067
  // Keep it accessible
1068
  .attr('aria-expanded', 'false')
1069
  .attr('tabindex', '-1')
1081
  });
1082
  --></script>
1083
 
1084
+ <style>
1085
+ .color-field-container,
1086
+ .CodeMirror-hints{display:none;}
1087
 
1088
  .ui-sortable-placeholder{background-color:transparent;border:1px dashed #CCC !important;}
1089
  .addtoany_admin_list{list-style:none;padding:0;margin:0;}
1153
 
1154
  add_filter( 'admin_head', 'A2A_SHARE_SAVE_admin_head' );
1155
 
1156
+ function addtoany_admin_scripts( $current_admin_page ) {
1157
+ if ( 'settings_page_addtoany' !== $current_admin_page ) {
1158
+ return;
1159
+ }
1160
+
1161
  wp_enqueue_script( 'jquery-ui-sortable' );
1162
  wp_enqueue_script( 'wp-color-picker' );
1163
  wp_enqueue_style( 'wp-color-picker' );
1164
+
1165
+ // If current screen is the default tab and WordPress >= 4.9
1166
+ if ( empty( $_GET['action'] ) && function_exists( 'wp_enqueue_code_editor' ) ) {
1167
+ // Additional JavaScript editor.
1168
+ // Enqueue code editor and settings for manipulating JavaScript.
1169
+ $settings = wp_enqueue_code_editor( array(
1170
+ 'type' => 'text/javascript',
1171
+ 'jshint' => array(
1172
+ 'globals' => array( 'a2a_config' => true ),
1173
+ 'quotmark' => false,
1174
+ 'undef' => false,
1175
+ 'unused' => false,
1176
+ ),
1177
+ 'codemirror' => array( 'lineNumbers' => false ),
1178
+ ) );
1179
+
1180
+ // If user hasn't disabled CodeMirror.
1181
+ if ( false !== $settings ) {
1182
+ wp_add_inline_script(
1183
+ 'code-editor',
1184
+ sprintf(
1185
+ 'jQuery( function() { var wpCodeEditor = wp.codeEditor.initialize( "A2A_SHARE_SAVE_additional_js_variables", %s ); window.wpa2aCodeEditorJS = wpCodeEditor.codemirror; } );',
1186
+ wp_json_encode( $settings )
1187
+ )
1188
+ );
1189
+
1190
+ // Additional CSS editor.
1191
+ // Enqueue code editor and settings for manipulating CSS.
1192
+ $settings = wp_enqueue_code_editor( array(
1193
+ 'type' => 'text/css',
1194
+ 'codemirror' => array( 'lineNumbers' => false ),
1195
+ ) );
1196
+
1197
+ wp_add_inline_script(
1198
+ 'code-editor',
1199
+ sprintf(
1200
+ 'jQuery( function() { var wpCodeEditor = wp.codeEditor.initialize( "A2A_SHARE_SAVE_additional_css", %s ); window.wpa2aCodeEditorCSS = wpCodeEditor.codemirror; } );',
1201
+ wp_json_encode( $settings )
1202
+ )
1203
+ );
1204
+ }
1205
+ }
1206
  }
1207
+
1208
+ add_action( 'admin_enqueue_scripts', 'addtoany_admin_scripts' );
languages/add-to-any-es_ES.mo DELETED
Binary file
languages/add-to-any-es_ES.po DELETED
@@ -1,310 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: add-to-any\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-23 20:39-0800\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Pat <no@no.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-SearchPath-0: .\n"
15
-
16
- #: add-to-any.php:322
17
- msgid "Share"
18
- msgstr "Compartir"
19
-
20
- #: add-to-any.php:323
21
- msgid "Save"
22
- msgstr "Guardar"
23
-
24
- #: add-to-any.php:324
25
- msgid "Subscribe"
26
- msgstr "Suscribirse"
27
-
28
- #: add-to-any.php:325
29
- msgid "E-mail"
30
- msgstr "E-mail"
31
-
32
- #: add-to-any.php:326
33
- msgid "Bookmark"
34
- msgstr "Marcador"
35
-
36
- #: add-to-any.php:327
37
- msgid "Show all"
38
- msgstr "Mostrar todo"
39
-
40
- #: add-to-any.php:328
41
- msgid "Show less"
42
- msgstr "Mostrar menos"
43
-
44
- #: add-to-any.php:329
45
- msgid "Find service(s)"
46
- msgstr "Buscar servicios(s)"
47
-
48
- #: add-to-any.php:330
49
- msgid "Instantly find any service to add to"
50
- msgstr "Buscar servicio"
51
-
52
- #: add-to-any.php:331
53
- msgid "Powered by"
54
- msgstr "Servicio ofrecido por"
55
-
56
- #: add-to-any.php:332
57
- msgid "Share via e-mail"
58
- msgstr "Compartir por e-mail"
59
-
60
- #: add-to-any.php:333
61
- msgid "Subscribe via e-mail"
62
- msgstr "Suscribirse por e-mail"
63
-
64
- #: add-to-any.php:334
65
- msgid "Bookmark in your browser"
66
- msgstr "Agregar a marcadores de tu navegador"
67
-
68
- #: add-to-any.php:335
69
- msgid "Press Ctrl+D or &#8984;+D to bookmark this page"
70
- msgstr "Presione Ctrl+D o Cmd+D para marcar esta pagina"
71
-
72
- #: add-to-any.php:336
73
- msgid "Add to your favorites"
74
- msgstr "Agregar a favoritos"
75
-
76
- #: add-to-any.php:337
77
- msgid "Send from any e-mail address or e-mail program"
78
- msgstr "Enviar de cualquier dirección de e-mail o programa de e-mail"
79
-
80
- #: add-to-any.php:338
81
- msgid "E-mail program"
82
- msgstr "Programa de e-mail"
83
-
84
- #: add-to-any.php:363
85
- msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;</code> just before the <code>&lt;/body&gt;</code> line of your theme's <code>footer.php</code> file."
86
- msgstr ""
87
-
88
- #: add-to-any.php:520
89
- #, php-format
90
- msgid "Unable to create directory %s. Is its parent directory writable by the server?"
91
- msgstr ""
92
-
93
- #: add-to-any.php:654
94
- #: add-to-any.php:778
95
- #: add-to-any.php:782
96
- #: add-to-any.php:786
97
- #: add-to-any.php:790
98
- #: add-to-any.php:822
99
- msgid "Share/Bookmark"
100
- msgstr "Marcador"
101
-
102
- #: add-to-any.php:667
103
- msgid "Settings saved."
104
- msgstr "Configuración guardada."
105
-
106
- #: add-to-any.php:688
107
- msgid "bottom"
108
- msgstr ""
109
-
110
- #: add-to-any.php:692
111
- msgid "top"
112
- msgstr ""
113
-
114
- #: add-to-any.php:696
115
- msgid "top &amp; bottom"
116
- msgstr ""
117
-
118
- #: add-to-any.php:727
119
- msgid "AddToAny: Share/Save "
120
- msgstr "AddToAny: Compartir/Guardar "
121
-
122
- #: add-to-any.php:727
123
- #: add-to-any.php:1132
124
- #: add-to-any.php:1163
125
- msgid "Settings"
126
- msgstr "Configuración"
127
-
128
- #: add-to-any.php:736
129
- msgid "Standalone Services"
130
- msgstr ""
131
-
132
- #: add-to-any.php:741
133
- msgid "Choose the services you want below. &nbsp;Click a chosen service again to remove. &nbsp;Reorder services by dragging and dropping as they appear above."
134
- msgstr ""
135
-
136
- #: add-to-any.php:773
137
- msgid "Button"
138
- msgstr "Botón"
139
-
140
- #: add-to-any.php:812
141
- msgid "Image URL"
142
- msgstr "URL de la imagen"
143
-
144
- #: add-to-any.php:819
145
- msgid "Text only"
146
- msgstr "Solo texto"
147
-
148
- #: add-to-any.php:827
149
- msgid "Placement"
150
- msgstr "Ubicación del botón"
151
-
152
- #: add-to-any.php:832
153
- #, fuzzy, php-format
154
- msgid "Display at the %s of posts"
155
- msgstr "Mostrar el botón Compartir/Guardar al final de cada entrada"
156
-
157
- #: add-to-any.php:839
158
- #, php-format
159
- msgid "Display at the %s of post excerpts"
160
- msgstr ""
161
-
162
- #: add-to-any.php:846
163
- #, fuzzy, php-format
164
- msgid "Display at the %s of posts on the front page"
165
- msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en la pagina principal"
166
-
167
- #: add-to-any.php:854
168
- #, fuzzy, php-format
169
- msgid "Display at the %s of posts in the feed"
170
- msgstr "Mostrar el botón Compartir/Guardar al final de las entradas en el feed"
171
-
172
- #: add-to-any.php:858
173
- #, fuzzy, php-format
174
- msgid "Display at the %s of pages"
175
- msgstr "Mostrar el botón Compartir/Guardar al final de las paginas"
176
-
177
- #: add-to-any.php:862
178
- msgid "If unchecked, be sure to place the following code in <a href=\"theme-editor.php\">your template pages</a> (within <code>index.php</code>, <code>single.php</code>, and/or <code>page.php</code>)"
179
- msgstr "Si no está habilitado se debe agregar el siguiente código en <a href=\"theme-editor.php\">la plantilla de su tema</a>(dentro de <code>index.php</code>, <code>single.php</code>, y/o <code>page.php</code>)"
180
-
181
- #: add-to-any.php:871
182
- msgid "Menu Style"
183
- msgstr "Estilo del menú"
184
-
185
- #: add-to-any.php:873
186
- msgid "Using AddToAny's Menu Styler, you can customize the colors of your Share/Save menu! When you're done, be sure to paste the generated code in the <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Additional Options</a> box below."
187
- msgstr "Usar el personalizador de estilo de AddToAny, usted puede personalizar los colores de su menú Compartir/Guardar! Cuando finalice, debe copiar el código generado en el recuadro de <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">opciones adicionales</a> más abajo."
188
-
189
- #: add-to-any.php:875
190
- msgid "Open the AddToAny Menu Styler in a new window"
191
- msgstr "Abrir el personalizador de estilo de AddToAny en una nueva ventana"
192
-
193
- #: add-to-any.php:877
194
- msgid "Open Menu Styler"
195
- msgstr "Abrir el personalizador de estilos"
196
-
197
- #: add-to-any.php:882
198
- msgid "Menu Options"
199
- msgstr "Menú de opciones"
200
-
201
- #: add-to-any.php:887
202
- msgid "Only show the menu when the user clicks the Share/Save button"
203
- msgstr "Mostrar el menú solo cuando un usuario haga click sobre el botón Compartir/Guardar"
204
-
205
- #: add-to-any.php:892
206
- msgid "Show the title of the post (or page) within the menu"
207
- msgstr "Mostrar el título de la entrada (o de la pagina) dentro del menú"
208
-
209
- #: add-to-any.php:897
210
- msgid "Additional Options"
211
- msgstr "Opciones adicionales"
212
-
213
- #: add-to-any.php:901
214
- msgid "Paste the code from AddToAny's Menu Styler in the box below!"
215
- msgstr "Pegue el código del personalizador de estilo en el siguiente recuadro"
216
-
217
- #: add-to-any.php:905
218
- msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
219
- msgstr "Abajo puede inicializar las variables JavaScript especiales para aplicar a cada menú Compartir/Guardar"
220
-
221
- #: add-to-any.php:906
222
- msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
223
- msgstr "Los usuarios avanzados podrían preferir explorar la <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">API JavaScript</a> de AddToAny."
224
-
225
- #: add-to-any.php:912
226
- msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
227
- msgstr "<strong>Nota</strong>: Si usted agrega código nuevo, sea cuidadoso de no sobreescribir accidentalmente cualquier código ingresado anteriormente.</label>"
228
-
229
- #: add-to-any.php:917
230
- #, fuzzy
231
- msgid "Advanced Options"
232
- msgstr "Opciones adicionales"
233
-
234
- #: add-to-any.php:922
235
- msgid "Use CSS stylesheet"
236
- msgstr ""
237
-
238
- #: add-to-any.php:927
239
- msgid "Cache AddToAny locally with daily cache updates"
240
- msgstr ""
241
-
242
- #: add-to-any.php:931
243
- msgid "Only consider for sites with frequently returning visitors. Since many visitors will have AddToAny cached in their browser already, serving AddToAny locally from your site will be slower for those visitors. Be sure to set far future cache/expires headers for image files in your <code>uploads/addtoany</code> directory."
244
- msgstr ""
245
-
246
- #: add-to-any.php:938
247
- msgid "Save Changes"
248
- msgstr "Guardar cambios"
249
-
250
- #: add-to-any.php:939
251
- msgid "Are you sure you want to delete all AddToAny options?"
252
- msgstr ""
253
-
254
- #: add-to-any.php:939
255
- msgid "Reset"
256
- msgstr ""
257
-
258
- #: add-to-any.php:944
259
- msgid "Like this plugin?"
260
- msgstr ""
261
-
262
- #: add-to-any.php:945
263
- msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
264
- msgstr ""
265
-
266
- #: add-to-any.php:946
267
- msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
268
- msgstr ""
269
-
270
- #: add-to-any.php:948
271
- msgid "Need support?"
272
- msgstr ""
273
-
274
- #: add-to-any.php:949
275
- msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
276
- msgstr ""
277
-
278
- #: add-to-any.php:950
279
- msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
280
- msgstr ""
281
-
282
- #: add-to-any.php:1075
283
- msgid "Add/Remove Services"
284
- msgstr ""
285
-
286
- #: add-to-any.php:1132
287
- msgid "Share/Save"
288
- msgstr "Compartir/Guardar"
289
-
290
- #: add-to-any.php:1133
291
- msgid "Share/Save Buttons"
292
- msgstr "Botones Compartir/Guardar"
293
-
294
- #~ msgid ""
295
- #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
296
- #~ "the Share/Save button"
297
- #~ msgstr ""
298
- #~ "Abrir el menu de addtoany.com en una nueva pestaña o ventana si el "
299
- #~ "usuario hace click en el botón Compartir/Guardar"
300
-
301
- #~ msgid ""
302
- #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
303
- #~ "when displayed"
304
- #~ msgstr ""
305
- #~ "Ocultar los objetos embebidos (Flash, video, etc) que intersectan con el "
306
- #~ "manú cuando se muestra."
307
-
308
- #, fuzzy
309
- #~ msgid "Services"
310
- #~ msgstr "Buscar servicios(s)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/add-to-any-it_IT.mo DELETED
Binary file
languages/add-to-any-it_IT.po DELETED
@@ -1,568 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: add-to-any in italiano\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-08 23:42-0800\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Pat <pat@example.com>\n"
8
- "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
- "Language: it_IT\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Generator: Poedit 1.8.6\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: __assets/addtoany.admin.snippet.php:35
19
- #: __assets/addtoany.admin.snippet.php:58
20
- #: __assets/addtoany.admin.snippet.php:71 addtoany.admin.php:24
21
- msgid "Show sharing buttons."
22
- msgstr ""
23
-
24
- #: add-to-any.php:561 addtoany.admin.php:296 addtoany.admin.php:489
25
- #: addtoany.admin.php:491 addtoany.admin.php:494 addtoany.admin.php:496
26
- #: addtoany.admin.php:525
27
- msgid "Share"
28
- msgstr "Condividi"
29
-
30
- #: add-to-any.php:562
31
- msgid "Save"
32
- msgstr "Salva"
33
-
34
- #: add-to-any.php:563
35
- msgid "Subscribe"
36
- msgstr "Abbonati"
37
-
38
- #: add-to-any.php:564
39
- #, fuzzy
40
- msgid "Email"
41
- msgstr "E-mail"
42
-
43
- #: add-to-any.php:565
44
- msgid "Bookmark"
45
- msgstr "Segnalibro"
46
-
47
- #: add-to-any.php:566
48
- msgid "Show all"
49
- msgstr "espandi"
50
-
51
- #: add-to-any.php:567
52
- msgid "Show less"
53
- msgstr "comprimi"
54
-
55
- #: add-to-any.php:568
56
- msgid "Find service(s)"
57
- msgstr "Trova servizi"
58
-
59
- #: add-to-any.php:569
60
- msgid "Instantly find any service to add to"
61
- msgstr "Trova subito un servizio da aggiungere"
62
-
63
- #: add-to-any.php:570
64
- msgid "Powered by"
65
- msgstr "Fornito da"
66
-
67
- #: add-to-any.php:571
68
- #, fuzzy
69
- msgid "Share via email"
70
- msgstr "Condividi via email"
71
-
72
- #: add-to-any.php:572
73
- #, fuzzy
74
- msgid "Subscribe via email"
75
- msgstr "Abbonati via email"
76
-
77
- #: add-to-any.php:573
78
- msgid "Bookmark in your browser"
79
- msgstr "Aggiungi ai segnalibri"
80
-
81
- #: add-to-any.php:574
82
- #, fuzzy
83
- msgid "Press Ctrl+D or \\u2318+D to bookmark this page"
84
- msgstr ""
85
- "Premi Ctrl+D o Cmd+D per aggiungere questa pagina alla lista dei segnalibri"
86
-
87
- #: add-to-any.php:575
88
- msgid "Add to your favorites"
89
- msgstr "Aggiungi ai favoriti"
90
-
91
- #: add-to-any.php:576
92
- #, fuzzy
93
- msgid "Send from any email address or email program"
94
- msgstr "Invia da un indirizzo email o client di posta elettronica"
95
-
96
- #: add-to-any.php:577
97
- #, fuzzy
98
- msgid "Email program"
99
- msgstr "Client di posta elettronica"
100
-
101
- #: add-to-any.php:578
102
- msgid "More&#8230;"
103
- msgstr ""
104
-
105
- #: add-to-any.php:1053
106
- #, php-format
107
- msgid ""
108
- "Unable to create directory %s. Is its parent directory writable by the "
109
- "server?"
110
- msgstr ""
111
- "Impossibile creare la cartella %s. La sua cartella madre é scrivibile dal "
112
- "server?"
113
-
114
- #: add-to-any.php:1096
115
- msgid "Share/Save"
116
- msgstr "Condividi/Salva"
117
-
118
- #: add-to-any.php:1096 add-to-any.php:1130
119
- msgid "Settings"
120
- msgstr "Impostazioni"
121
-
122
- #: add-to-any.php:1097 addtoany.admin.php:10
123
- #, fuzzy
124
- msgid "AddToAny"
125
- msgstr ""
126
- "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
127
-
128
- #: addtoany.admin.php:346
129
- msgid "Settings saved."
130
- msgstr "Le impostazioni sono state salvate"
131
-
132
- #: addtoany.admin.php:367
133
- msgid "bottom"
134
- msgstr "fondo"
135
-
136
- #: addtoany.admin.php:371
137
- msgid "top"
138
- msgstr "cima"
139
-
140
- #: addtoany.admin.php:375
141
- msgid "top &amp; bottom"
142
- msgstr "al fondo ed in cima"
143
-
144
- #: addtoany.admin.php:402
145
- #, fuzzy
146
- msgid "AddToAny Share Settings"
147
- msgstr "AddToAny: Condividi/Salva "
148
-
149
- #: addtoany.admin.php:417
150
- msgid "Icon Size"
151
- msgstr ""
152
-
153
- #: addtoany.admin.php:419
154
- msgid "Large"
155
- msgstr ""
156
-
157
- #: addtoany.admin.php:421
158
- msgid "Small"
159
- msgstr ""
160
-
161
- #: addtoany.admin.php:423
162
- msgid "Custom"
163
- msgstr ""
164
-
165
- #: addtoany.admin.php:430
166
- #, fuzzy
167
- msgid "Standalone Buttons"
168
- msgstr "Pulsanti Condividi/Salva"
169
-
170
- #: addtoany.admin.php:435
171
- msgid ""
172
- "Choose the services you want below. &nbsp;Click a chosen service again to "
173
- "remove. &nbsp;Reorder services by dragging and dropping as they appear above."
174
- msgstr ""
175
- "Scegli qui sotto i servizi di tuo gradimento. &nbsp;Clicca su di un servizio "
176
- "attivo per rimuoverlo. &nbsp;Riordina i servizi via drag and drop."
177
-
178
- #: addtoany.admin.php:476
179
- msgid "Universal Button"
180
- msgstr ""
181
-
182
- #: addtoany.admin.php:517
183
- msgid "Image URL"
184
- msgstr "URL immagine"
185
-
186
- #: addtoany.admin.php:523
187
- msgid "Text only"
188
- msgstr "Solo testo"
189
-
190
- #: addtoany.admin.php:528
191
- msgid ""
192
- "This option will disable universal sharing. Are you sure you want to disable "
193
- "universal sharing?"
194
- msgstr ""
195
-
196
- #: addtoany.admin.php:529 addtoany.admin.php:713 addtoany.admin.php:749
197
- msgid "None"
198
- msgstr ""
199
-
200
- #: addtoany.admin.php:542
201
- msgid "Sharing Header"
202
- msgstr ""
203
-
204
- #: addtoany.admin.php:551 addtoany.admin.php:707 addtoany.admin.php:743
205
- msgid "Placement"
206
- msgstr "Posizione"
207
-
208
- #: addtoany.admin.php:556
209
- #, php-format
210
- msgid "Display at the %s of posts"
211
- msgstr "Mostra in %s degli articoli"
212
-
213
- #: addtoany.admin.php:564
214
- #, php-format
215
- msgid "Display at the %s of posts on the front page"
216
- msgstr "Mostra in %s agli articoli nella pagina principale"
217
-
218
- #: addtoany.admin.php:572
219
- #, fuzzy, php-format
220
- msgid "Display at the %s of posts on archive pages"
221
- msgstr "Mostra in %s agli articoli nella pagina principale"
222
-
223
- #: addtoany.admin.php:580
224
- #, php-format
225
- msgid "Display at the %s of posts in the feed"
226
- msgstr "Mostra nel feed in %s agli articoli"
227
-
228
- #: addtoany.admin.php:587
229
- #, fuzzy, php-format
230
- msgid "Display at the %s of excerpts"
231
- msgstr "Mostra in %s ai riassunti articolo"
232
-
233
- #: addtoany.admin.php:592
234
- #, php-format
235
- msgid "Display at the %s of pages"
236
- msgstr "Mostra %s delle pagine"
237
-
238
- #: addtoany.admin.php:604
239
- #, fuzzy, php-format
240
- msgid "Display at the %s of %s"
241
- msgstr "Mostra in %s degli articoli"
242
-
243
- #: addtoany.admin.php:610
244
- msgid ""
245
- "See <a href=\"widgets.php\" title=\"Theme Widgets\">Widgets</a> and <a href="
246
- "\"options-general.php?page=add-to-any.php&action=floating\" title=\"AddToAny "
247
- "Floating Share Buttons\">Floating</a> for additional placement options. For "
248
- "advanced placement, see <a href=\"http://wordpress.org/plugins/add-to-any/"
249
- "faq/\">the FAQs</a>."
250
- msgstr ""
251
-
252
- #: addtoany.admin.php:616
253
- msgid "Menu Options"
254
- msgstr "Opzioni menu"
255
-
256
- #: addtoany.admin.php:620
257
- #, fuzzy
258
- msgid ""
259
- "Only show the universal share menu when the user <em>clicks</em> the "
260
- "universal share button"
261
- msgstr ""
262
- "Mostra solamente il menu quando un utente clicca sul pulsante Share/Save"
263
-
264
- #: addtoany.admin.php:625
265
- #, fuzzy
266
- msgid "Show the title of the page within the universal share menu"
267
- msgstr "Mostra nel menu il titolo dell'articolo (o pagina)"
268
-
269
- #: addtoany.admin.php:628
270
- #, fuzzy
271
- msgid ""
272
- "You can use AddToAny's Menu Styler to customize the colors of your universal "
273
- "share menu. When you're done, be sure to paste the generated code in the <a "
274
- "href=\"#\" onclick=\"document."
275
- "getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false"
276
- "\">Additional JavaScript</a> box below."
277
- msgstr ""
278
- "Utilizzando il Menu Styler di AddToAny potrai personalizzare i colori del "
279
- "menu Share/Save! Una volta apportata la modifica, incolla il codice così "
280
- "ottenuto nel riquadro delle <a href=\"#\" onclick=\"document."
281
- "getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false"
282
- "\">Opzioni agggiuntive</a> qui sotto."
283
-
284
- #: addtoany.admin.php:631
285
- msgid "Open the AddToAny Menu Styler in a new window"
286
- msgstr "Apri in una nuova pagina per personalizzare il menu di AddToAny"
287
-
288
- #: addtoany.admin.php:631
289
- msgid "Open Menu Styler"
290
- msgstr "Stile menu"
291
-
292
- #: addtoany.admin.php:637
293
- #, fuzzy
294
- msgid "Additional JavaScript"
295
- msgstr "Opzioni aggiuntive"
296
-
297
- #: addtoany.admin.php:641
298
- msgid "Paste the code from AddToAny's Menu Styler in the box below!"
299
- msgstr ""
300
- "Incolla nel riquadro qui sotto il nuovo codice personalizzato per il menu! "
301
-
302
- #: addtoany.admin.php:645
303
- #, fuzzy
304
- msgid "Below you can add special JavaScript code for AddToAny."
305
- msgstr ""
306
- "Qui sotto é possibile impostare delle variabili JavaScript particolari "
307
- "applicabili ad ogni menu Share/Save."
308
-
309
- #: addtoany.admin.php:646 addtoany.admin.php:658
310
- #, fuzzy
311
- msgid ""
312
- "Advanced users should explore AddToAny's <a href=\"https://www.addtoany.com/"
313
- "buttons/customize/wordpress\" target=\"_blank\">additional options</a>."
314
- msgstr ""
315
- "Gli utenti più esperti possono prendere visione della <a href=\"http://www."
316
- "addtoany.com/buttons/customize/\" target=\"_blank\">JavaScript API</a> di "
317
- "AddToAny."
318
-
319
- #: addtoany.admin.php:654
320
- #, fuzzy
321
- msgid "Additional CSS"
322
- msgstr "Opzioni aggiuntive"
323
-
324
- #: addtoany.admin.php:657
325
- msgid "Below you can add special CSS code for AddToAny."
326
- msgstr ""
327
-
328
- #: addtoany.admin.php:666
329
- msgid "Advanced Options"
330
- msgstr "Opzioni avanzate"
331
-
332
- #: addtoany.admin.php:670
333
- msgid "Use custom icons. URL:"
334
- msgstr ""
335
-
336
- #: addtoany.admin.php:675
337
- msgid ""
338
- "Specify the URL of the directory containing your custom icons. For example, "
339
- "a URL of <code>//example.com/blog/uploads/addtoany/icons/custom/</code> "
340
- "containing <code>facebook.png</code> and <code>twitter.png</code>. Be sure "
341
- "that custom icon filenames match the icon filenames in <code>plugins/add-to-"
342
- "any/icons</code>. For AddToAny's Universal Button, select Image URL and "
343
- "specify the URL of your AddToAny universal share icon (<a href=\"#\" onclick="
344
- "\"document.getElementsByName('A2A_SHARE_SAVE_button_custom')[0].focus();"
345
- "return false\">above</a>)."
346
- msgstr ""
347
-
348
- #: addtoany.admin.php:680
349
- msgid "Use default CSS"
350
- msgstr ""
351
-
352
- #: addtoany.admin.php:683
353
- msgid ""
354
- "Only disable AddToAny's default stylesheet if you already have the necessary "
355
- "CSS code applied to your AddToAny buttons."
356
- msgstr ""
357
-
358
- #: addtoany.admin.php:688
359
- msgid "Cache AddToAny locally with daily cache updates"
360
- msgstr "Effettua localmente con aggiornamenti quotidiani la cache di AddToAny"
361
-
362
- #: addtoany.admin.php:691
363
- #, fuzzy
364
- msgid ""
365
- "Most sites should not use this option. By default, AddToAny loads "
366
- "asynchronously and most efficiently. Since many visitors will have AddToAny "
367
- "cached in their browser already, serving AddToAny locally from your site "
368
- "will be slower for those visitors. If local caching is enabled, be sure to "
369
- "set far future cache/expires headers for image files in your <code>uploads/"
370
- "addtoany</code> directory."
371
- msgstr ""
372
- "Funzione risevata ai siti con traffico elevato di visitatori abituali. "
373
- "Sebbene un buon numero dei tuoi visitatori abbia AddToAny nella cache del "
374
- "proprio browser, servire localmente AddToAny potrebbe rallentare l'apertura "
375
- "della pagina. Accertati di impostare a far future cache/expires headers i "
376
- "file immagine nella tua cartella <code>uploads/addtoany</code>."
377
-
378
- #: addtoany.admin.php:701
379
- msgid ""
380
- "AddToAny &quot;floating&quot; share buttons stay in a fixed position even "
381
- "when the user scrolls."
382
- msgstr ""
383
-
384
- #: addtoany.admin.php:702
385
- msgid ""
386
- "Large icons from your currently selected buttons are displayed in your "
387
- "floating bar(s). 3rd party buttons (Like, Tweet, etc.) are not displayed."
388
- msgstr ""
389
-
390
- #: addtoany.admin.php:704
391
- msgid "Vertical Buttons"
392
- msgstr ""
393
-
394
- #: addtoany.admin.php:709 addtoany.admin.php:745
395
- msgid "Left docked"
396
- msgstr ""
397
-
398
- #: addtoany.admin.php:711 addtoany.admin.php:747
399
- msgid "Right docked"
400
- msgstr ""
401
-
402
- #: addtoany.admin.php:717 addtoany.admin.php:753
403
- msgid "Responsiveness"
404
- msgstr ""
405
-
406
- #: addtoany.admin.php:727 addtoany.admin.php:763
407
- msgid "Position"
408
- msgstr ""
409
-
410
- #: addtoany.admin.php:733 addtoany.admin.php:769
411
- msgid "Offset"
412
- msgstr ""
413
-
414
- #: addtoany.admin.php:740
415
- msgid "Horizontal Buttons"
416
- msgstr ""
417
-
418
- #: addtoany.admin.php:781
419
- msgid "Save Changes"
420
- msgstr "Salva le modifiche"
421
-
422
- #: addtoany.admin.php:782
423
- msgid "Are you sure you want to delete all AddToAny options?"
424
- msgstr "Sei certo di volere cancellare tutti i dati di AddToAny?"
425
-
426
- #: addtoany.admin.php:782
427
- msgid "Reset"
428
- msgstr "Ripristina"
429
-
430
- #: addtoany.admin.php:787
431
- msgid "Like this plugin?"
432
- msgstr "Ti é piaciuto questo plugin?"
433
-
434
- #: addtoany.admin.php:788
435
- #, fuzzy
436
- msgid ""
437
- "<a href=\"https://wordpress.org/support/view/plugin-reviews/add-to-"
438
- "any#postform\" target=\"_blank\">Give it a 5 star rating</a> on WordPress."
439
- "org."
440
- msgstr ""
441
- "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Votalo</a> su "
442
- "WordPress.org."
443
-
444
- #: addtoany.admin.php:789
445
- msgid ""
446
- "<a href=\"https://www.addtoany.com/share_save#title=WordPress%20Share"
447
- "%20Plugin%20by%20AddToAny.com&amp;url=http%3A%2F%2Fwordpress.org%2Fplugins"
448
- "%2Fadd-to-any%2F\">Share it</a> and follow <a href=\"https://www.addtoany."
449
- "com/\">AddToAny</a> on <a href=\"https://www.facebook.com/AddToAny\" target="
450
- "\"_blank\">Facebook</a> &amp; <a href=\"https://twitter.com/AddToAny\" "
451
- "target=\"_blank\">Twitter</a>."
452
- msgstr ""
453
-
454
- #: addtoany.admin.php:791
455
- msgid "Need support?"
456
- msgstr "Serve aiuto?"
457
-
458
- #: addtoany.admin.php:792
459
- msgid ""
460
- "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/"
461
- "\">FAQs</a>."
462
- msgstr ""
463
- "Vedi la pagina dedicata alle <a href=\"http://wordpress.org/extend/plugins/"
464
- "add-to-any/faq/\">FAQ</a>."
465
-
466
- #: addtoany.admin.php:793
467
- msgid ""
468
- "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</"
469
- "a>."
470
- msgstr ""
471
- "Effettua una ricerca nel <a href=\"http://wordpress.org/tags/add-to-any"
472
- "\">forum di supporto</a>."
473
-
474
- #: addtoany.admin.php:1094
475
- msgid "Add/Remove Services"
476
- msgstr "Aggiungi/Rimuovi i sevizi"
477
-
478
- #: addtoany.widgets.php:75 addtoany.widgets.php:173
479
- msgid "Title:"
480
- msgstr ""
481
-
482
- #: addtoany.widgets.php:79 addtoany.widgets.php:189
483
- #, fuzzy
484
- msgid "AddToAny Settings"
485
- msgstr "Impostazioni"
486
-
487
- #: addtoany.widgets.php:179
488
- #, php-format
489
- msgid "%s URL:"
490
- msgstr ""
491
-
492
- #: addtoany.widgets.php:179
493
- #, php-format
494
- msgid "%s ID:"
495
- msgstr ""
496
-
497
- #~ msgid ""
498
- #~ "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-"
499
- #~ "editor.php\">Theme Editor</a> to insert <code>&lt;?php wp_footer(); ?&gt;"
500
- #~ "</code> just before the <code>&lt;/body&gt;</code> line of your theme's "
501
- #~ "<code>footer.php</code> file."
502
- #~ msgstr ""
503
- #~ "Il tuo tema deve essere aggiornato. Per apportare le modifiche "
504
- #~ "necessarie, utilizza l'editor dei <a href=\"theme-editor.php\">temi</a> "
505
- #~ "per inserire <code>&lt;?php wp_footer(); ?&gt;</code> subito prima del "
506
- #~ "tag di chiusura <code>&lt;/body&gt;</code> presente nel file <code>footer."
507
- #~ "php</code>."
508
-
509
- #~ msgid "Share/Bookmark"
510
- #~ msgstr "Segnalibro"
511
-
512
- #~ msgid "Standalone Services"
513
- #~ msgstr "Servizi indipendenti"
514
-
515
- #~ msgid "Button"
516
- #~ msgstr "Pulsante"
517
-
518
- #~ msgid ""
519
- #~ "If unchecked, be sure to place the following code in <a href=\"theme-"
520
- #~ "editor.php\">your template pages</a> (within <code>index.php</code>, "
521
- #~ "<code>single.php</code>, and/or <code>page.php</code>)"
522
- #~ msgstr ""
523
- #~ "Se disattivata, dovrai inserire il codice qui sotto nelle <a href=\"theme-"
524
- #~ "editor.php\">pagine del tuo tema</a> (in <code>index.php</code>, "
525
- #~ "<code>single.php</code>, e/o <code>page.php</code>)"
526
-
527
- #~ msgid "Menu Style"
528
- #~ msgstr "Stile menu"
529
-
530
- #~ msgid ""
531
- #~ "<strong>Note</strong>: If you're adding new code, be careful not to "
532
- #~ "accidentally overwrite any previous code.</label>"
533
- #~ msgstr ""
534
- #~ "<strong>Nota</strong>: qualora stessi aggiungendo un nnuovo codice, fai "
535
- #~ "attenzione a non sovrascrivere accidentalmente ogni codice precedente.</"
536
- #~ "label>"
537
-
538
- #~ msgid "Use CSS stylesheet"
539
- #~ msgstr "Usa foglio di stile CSS"
540
-
541
- #~ msgid ""
542
- #~ "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share"
543
- #~ "%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F"
544
- #~ "%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with "
545
- #~ "your friends."
546
- #~ msgstr ""
547
- #~ "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share"
548
- #~ "%20Plugin%20by%20AddToAny.com&amp;linkurl=http%3A%2F%2Fwordpress.org"
549
- #~ "%2Fextend%2Fplugins%2Fadd-to-any%2F\">Condividi</a> con i tuoi amici."
550
-
551
- #~ msgid ""
552
- #~ "Open the addtoany.com menu page in a new tab or window if the user clicks "
553
- #~ "the Share/Save button"
554
- #~ msgstr ""
555
- #~ "Apri in una nuova scheda o finestra la pagina menu di addtoany.com quando "
556
- #~ "un utente clicca il pulsante Share/Save"
557
-
558
- #~ msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
559
- #~ msgstr ""
560
- #~ "Se non selezionato, aggiungi al foglio di stile del tuo tema il seguente "
561
- #~ "CSS:"
562
-
563
- #~ msgid ""
564
- #~ "Hide embedded objects (Flash, video, etc.) that intersect with the menu "
565
- #~ "when displayed"
566
- #~ msgstr ""
567
- #~ "Nascondi gli oggetti incorporati (Flash, video, etc.) che possono "
568
- #~ "interferire con la visualizzazione corretta del menu"