AddToAny Share Buttons - Version 0.9.8.9.1

Version Description

Download this release

Release Info

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

Code changes from version 0.9.8.9 to 0.9.8.9.1

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.addtoany.com/contact/
4
  Tags: bookmarking, social, social bookmarking, bookmark, bookmarks, sharing, share, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
5
  Requires at least: 2.0
6
  Tested up to: 2.7.1
7
- Stable tag: 0.9.8.9
8
 
9
  Helps readers share, save, bookmark, and email your posts and pages using any service, such as Delicious, Digg, Facebook, Twitter, and over 100 more.
10
 
@@ -73,6 +73,12 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
73
 
74
  == Changelog ==
75
 
 
 
 
 
 
 
76
  .9.8.9:
77
 
78
  * wp_footer() detection
4
  Tags: bookmarking, social, social bookmarking, bookmark, bookmarks, sharing, share, saving, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, e-mail, email, seo, button, delicious, google, digg, reddit, facebook, myspace, twitter, stumbleupon, technorati, wpmu, addtoany, add, any
5
  Requires at least: 2.0
6
  Tested up to: 2.7.1
7
+ Stable tag: 0.9.8.9.1
8
 
9
  Helps readers share, save, bookmark, and email your posts and pages using any service, such as Delicious, Digg, Facebook, Twitter, and over 100 more.
10
 
73
 
74
  == Changelog ==
75
 
76
+ .9.8.9.1:
77
+
78
+ * Automatic localization/i18n
79
+ * Rename Spanish POT to proper
80
+ * Fixed "Display Share/Save button at the bottom of pages" option when "Display Share/Save button at the bottom of posts is disabled"
81
+
82
  .9.8.9:
83
 
84
  * wp_footer() detection
add-to-any.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Add to Any: Share/Save/Bookmark Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Helps readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
- Version: .9.8.9
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
@@ -19,8 +19,8 @@ $A2A_SHARE_SAVE_plugin_basename = plugin_basename(__FILE__);
19
  function A2A_SHARE_SAVE_textdomain() {
20
  global $A2A_SHARE_SAVE_plugin_basename;
21
  load_plugin_textdomain('add-to-any',
22
- PLUGINDIR.'/'.dirname($A2A_SHARE_SAVE_plugin_basename),
23
- dirname($A2A_SHARE_SAVE_plugin_basename));
24
  }
25
  add_action('init', 'A2A_SHARE_SAVE_textdomain');
26
 
@@ -184,7 +184,7 @@ function A2A_SHARE_SAVE_to_bottom_of_content($content) {
184
  ) &&
185
  (
186
  // Posts
187
- ( get_option('A2A_SHARE_SAVE_display_in_posts')=='-1' ) || // All posts
188
  ( is_home() && get_option('A2A_SHARE_SAVE_display_in_posts_on_front_page')=='-1' ) || // Front page posts
189
  ( is_category() && get_option('A2A_SHARE_SAVE_display_in_posts_on_front_page')=='-1' ) || // Category posts (same as Front page option)
190
  ( is_tag() && get_option('A2A_SHARE_SAVE_display_in_posts_on_front_page')=='-1' ) || // Tag Cloud posts (same as Front page option)
3
  Plugin Name: Add to Any: Share/Save/Bookmark Button
4
  Plugin URI: http://www.addtoany.com/
5
  Description: Helps readers share, save, bookmark, and email your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
6
+ Version: .9.8.9.1
7
  Author: Add to Any
8
  Author URI: http://www.addtoany.com/contact/
9
  */
19
  function A2A_SHARE_SAVE_textdomain() {
20
  global $A2A_SHARE_SAVE_plugin_basename;
21
  load_plugin_textdomain('add-to-any',
22
+ PLUGINDIR.'/'.dirname($A2A_SHARE_SAVE_plugin_basename).'/i18n',
23
+ dirname($A2A_SHARE_SAVE_plugin_basename).'/i18n');
24
  }
25
  add_action('init', 'A2A_SHARE_SAVE_textdomain');
26
 
184
  ) &&
185
  (
186
  // Posts
187
+ ( ! is_page() && get_option('A2A_SHARE_SAVE_display_in_posts')=='-1' ) || // All posts
188
  ( is_home() && get_option('A2A_SHARE_SAVE_display_in_posts_on_front_page')=='-1' ) || // Front page posts
189
  ( is_category() && get_option('A2A_SHARE_SAVE_display_in_posts_on_front_page')=='-1' ) || // Category posts (same as Front page option)
190
  ( is_tag() && get_option('A2A_SHARE_SAVE_display_in_posts_on_front_page')=='-1' ) || // Tag Cloud posts (same as Front page option)
i18n/add-to-any-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 19:36-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Danish team <g.s.adamsen@gmail.com>\n"
2
  msgstr ""
3
  "Project-Id-Version: Add to Any Share/Save/Bookmark\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-03-05 14:26-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: Danish team <g.s.adamsen@gmail.com>\n"
i18n/{add-to-any_es.mo → add-to-any-es_ES.mo} RENAMED
File without changes
i18n/{add-to-any_es.po → add-to-any-es_ES.po} RENAMED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 19:37-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pablo Poo <pablo@poo.cl>\n"
8
  "Language-Team: \n"
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-03-05 14:26-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Pablo Poo <pablo@poo.cl>\n"
8
  "Language-Team: \n"
i18n/add-to-any-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 19:37-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-03-05 14:26-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
i18n/add-to-any.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-02-23 19:37-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"
2
  msgstr ""
3
  "Project-Id-Version: add-to-any\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-03-05 14:26-0800\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: MicroPat\n"
8
  "Language-Team: \n"