Version Description
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 0.9.8.5 |
Comparing to | |
See all releases |
Code changes from version 0.9.8.4 to 0.9.8.5
- README.txt +10 -1
- add-to-any.php +24 -13
- add-to-any.po +47 -47
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, addtoany, add, any
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.7
|
7 |
-
Stable tag: 0.9.8.
|
8 |
|
9 |
Helps readers share, save, and bookmark your posts and pages using any service, such as Delicious, Digg, Facebook, MySpace, and all the rest.
|
10 |
|
@@ -66,6 +66,15 @@ This is done to overcome browser limitations that prevent the drop-down menu fro
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
.9.8.3:
|
70 |
|
71 |
* Language & localization update
|
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, addtoany, add, any
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.7
|
7 |
+
Stable tag: 0.9.8.5
|
8 |
|
9 |
Helps readers share, save, and bookmark your posts and pages using any service, such as Delicious, Digg, Facebook, MySpace, and all the rest.
|
10 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
.9.8.5:
|
70 |
+
|
71 |
+
* Button targets the current page if called outside The Loop
|
72 |
+
* Accomodates renamed plugin directory
|
73 |
+
|
74 |
+
.9.8.4:
|
75 |
+
|
76 |
+
* Fixed a small syntax error (critcal if you're on .9.8.3)
|
77 |
+
|
78 |
.9.8.3:
|
79 |
|
80 |
* Language & localization update
|
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, and bookmark your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
-
Version: .9.8.
|
7 |
Author: Add to Any
|
8 |
Author URI: http://www.addtoany.com/contact/
|
9 |
*/
|
@@ -23,22 +23,30 @@ function A2A_SHARE_SAVE_textdomain() {
|
|
23 |
add_action('init', 'A2A_SHARE_SAVE_textdomain');
|
24 |
|
25 |
|
26 |
-
function ADDTOANY_SHARE_SAVE_BUTTON($
|
27 |
|
28 |
-
|
|
|
|
|
29 |
|
30 |
$sitename_enc = rawurlencode( get_bloginfo('name') );
|
31 |
$siteurl_enc = rawurlencode( trailingslashit( get_bloginfo('url') ) );
|
32 |
-
$linkname = get_the_title();
|
33 |
$linkname_enc = rawurlencode( $linkname );
|
34 |
-
$linkurl =
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
$linkurl_enc = rawurlencode( $linkurl );
|
36 |
|
37 |
if( !get_option('A2A_SHARE_SAVE_button') ) {
|
38 |
$button_fname = 'share_save_120_16.gif';
|
39 |
$button_width = ' width="120"';
|
40 |
$button_height = ' height="16"';
|
41 |
-
$button_src = trailingslashit(
|
42 |
} else if( get_option('A2A_SHARE_SAVE_button') == 'CUSTOM' ) {
|
43 |
$button_src = get_option('A2A_SHARE_SAVE_button_custom');
|
44 |
$button_width = '';
|
@@ -50,10 +58,10 @@ function ADDTOANY_SHARE_SAVE_BUTTON($output_buffering=false) {
|
|
50 |
$button_fname = $button_attrs[0];
|
51 |
$button_width = ' width="'.$button_attrs[1].'"';
|
52 |
$button_height = ' height="'.$button_attrs[2].'"';
|
53 |
-
$button_src = trailingslashit(
|
54 |
}
|
55 |
if( $button_attrs[0] == 'favicon.png' ) {
|
56 |
-
$style_bg = 'background:url('.trailingslashit(
|
57 |
$style_bg = ';' . $style_bg . ' !important;';
|
58 |
$style = ' style="'.$style_bg.'padding:1px 5px 5px 22px"';
|
59 |
$button = 'Share/Save';
|
@@ -146,7 +154,10 @@ function A2A_SHARE_SAVE_to_bottom_of_content($content) {
|
|
146 |
)
|
147 |
return $content;
|
148 |
|
149 |
-
$
|
|
|
|
|
|
|
150 |
return $content;
|
151 |
}
|
152 |
|
@@ -209,25 +220,25 @@ function A2A_SHARE_SAVE_options_page() {
|
|
209 |
<label>
|
210 |
<input name="A2A_SHARE_SAVE_button" value="favicon.png|16|16" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='favicon.png|16|16') echo ' checked="checked"'; ?>
|
211 |
style="margin:9px 0;vertical-align:middle">
|
212 |
-
<img src="<?php echo trailingslashit(
|
213 |
onclick="this.parentNode.firstChild.checked=true"/>
|
214 |
</label><br>
|
215 |
<label>
|
216 |
<input name="A2A_SHARE_SAVE_button" value="share_save_120_16.gif|120|16" type="radio"<?php if( !get_option('A2A_SHARE_SAVE_button') || get_option('A2A_SHARE_SAVE_button' )=='share_save_120_16.gif|120|16') echo ' checked="checked"'; ?>
|
217 |
style="margin:9px 0;vertical-align:middle">
|
218 |
-
<img src="<?php echo trailingslashit(
|
219 |
onclick="this.parentNode.firstChild.checked=true"/>
|
220 |
</label><br>
|
221 |
<label>
|
222 |
<input name="A2A_SHARE_SAVE_button" value="share_save_171_16.gif|171|16" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='share_save_171_16.gif|171|16') echo ' checked="checked"'; ?>
|
223 |
style="margin:9px 0;vertical-align:middle">
|
224 |
-
<img src="<?php echo trailingslashit(
|
225 |
onclick="this.parentNode.firstChild.checked=true"/>
|
226 |
</label><br>
|
227 |
<label>
|
228 |
<input name="A2A_SHARE_SAVE_button" value="share_save_256_24.gif|256|24" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='share_save_256_24.gif|256|24') echo ' checked="checked"'; ?>
|
229 |
style="margin:9px 0;vertical-align:middle">
|
230 |
-
<img src="<?php echo trailingslashit(
|
231 |
onclick="this.parentNode.firstChild.checked=true"/>
|
232 |
</label><br>
|
233 |
<label>
|
3 |
Plugin Name: Add to Any: Share/Save/Bookmark Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Helps readers share, save, and bookmark your posts and pages using any service. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
+
Version: .9.8.5
|
7 |
Author: Add to Any
|
8 |
Author URI: http://www.addtoany.com/contact/
|
9 |
*/
|
23 |
add_action('init', 'A2A_SHARE_SAVE_textdomain');
|
24 |
|
25 |
|
26 |
+
function ADDTOANY_SHARE_SAVE_BUTTON( $args = false) {
|
27 |
|
28 |
+
global $id;
|
29 |
+
|
30 |
+
if($output_buffering) ob_start();
|
31 |
|
32 |
$sitename_enc = rawurlencode( get_bloginfo('name') );
|
33 |
$siteurl_enc = rawurlencode( trailingslashit( get_bloginfo('url') ) );
|
34 |
+
$linkname = ( $linkname ) ? $linkname : get_the_title();
|
35 |
$linkname_enc = rawurlencode( $linkname );
|
36 |
+
$linkurl = ( in_the_loop() ) ?
|
37 |
+
/* Current post (if within loop) or current page */
|
38 |
+
get_permalink() :
|
39 |
+
"http" . ( ($_SERVER["HTTPS"]=="on") ? 's' : '' ) . "://" .
|
40 |
+
$_SERVER["HTTP_HOST"] .
|
41 |
+
( ($_SERVER["SERVER_PORT"] != "80") ? ":". $_SERVER["SERVER_PORT"] : '') .
|
42 |
+
$_SERVER["REQUEST_URI"] ;
|
43 |
$linkurl_enc = rawurlencode( $linkurl );
|
44 |
|
45 |
if( !get_option('A2A_SHARE_SAVE_button') ) {
|
46 |
$button_fname = 'share_save_120_16.gif';
|
47 |
$button_width = ' width="120"';
|
48 |
$button_height = ' height="16"';
|
49 |
+
$button_src = trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/'.$button_fname;
|
50 |
} else if( get_option('A2A_SHARE_SAVE_button') == 'CUSTOM' ) {
|
51 |
$button_src = get_option('A2A_SHARE_SAVE_button_custom');
|
52 |
$button_width = '';
|
58 |
$button_fname = $button_attrs[0];
|
59 |
$button_width = ' width="'.$button_attrs[1].'"';
|
60 |
$button_height = ' height="'.$button_attrs[2].'"';
|
61 |
+
$button_src = trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/'.$button_fname;
|
62 |
}
|
63 |
if( $button_attrs[0] == 'favicon.png' ) {
|
64 |
+
$style_bg = 'background:url('.trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/'.$button_fname.') no-repeat scroll 0px 0px';
|
65 |
$style_bg = ';' . $style_bg . ' !important;';
|
66 |
$style = ' style="'.$style_bg.'padding:1px 5px 5px 22px"';
|
67 |
$button = 'Share/Save';
|
154 |
)
|
155 |
return $content;
|
156 |
|
157 |
+
$A2A_SHARE_SAVE_options = array(
|
158 |
+
"output_buffering" => true);
|
159 |
+
|
160 |
+
$content .= '<p class="addtoany_share_save_container">'.ADDTOANY_SHARE_SAVE_BUTTON( $A2A_SHARE_SAVE_options ).'</p>';
|
161 |
return $content;
|
162 |
}
|
163 |
|
220 |
<label>
|
221 |
<input name="A2A_SHARE_SAVE_button" value="favicon.png|16|16" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='favicon.png|16|16') echo ' checked="checked"'; ?>
|
222 |
style="margin:9px 0;vertical-align:middle">
|
223 |
+
<img src="<?php echo trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/favicon.png'; ?>" width="16" height="16" border="0" style="padding:9px;vertical-align:middle" alt="+ Share/Save" title="+ Share/Save"
|
224 |
onclick="this.parentNode.firstChild.checked=true"/>
|
225 |
</label><br>
|
226 |
<label>
|
227 |
<input name="A2A_SHARE_SAVE_button" value="share_save_120_16.gif|120|16" type="radio"<?php if( !get_option('A2A_SHARE_SAVE_button') || get_option('A2A_SHARE_SAVE_button' )=='share_save_120_16.gif|120|16') echo ' checked="checked"'; ?>
|
228 |
style="margin:9px 0;vertical-align:middle">
|
229 |
+
<img src="<?php echo trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/share_save_120_16.gif'; ?>" width="120" height="16" border="0" style="padding:9px;vertical-align:middle"
|
230 |
onclick="this.parentNode.firstChild.checked=true"/>
|
231 |
</label><br>
|
232 |
<label>
|
233 |
<input name="A2A_SHARE_SAVE_button" value="share_save_171_16.gif|171|16" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='share_save_171_16.gif|171|16') echo ' checked="checked"'; ?>
|
234 |
style="margin:9px 0;vertical-align:middle">
|
235 |
+
<img src="<?php echo trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/share_save_171_16.gif'; ?>" width="171" height="16" border="0" style="padding:9px;vertical-align:middle"
|
236 |
onclick="this.parentNode.firstChild.checked=true"/>
|
237 |
</label><br>
|
238 |
<label>
|
239 |
<input name="A2A_SHARE_SAVE_button" value="share_save_256_24.gif|256|24" type="radio"<?php if(get_option('A2A_SHARE_SAVE_button')=='share_save_256_24.gif|256|24') echo ' checked="checked"'; ?>
|
240 |
style="margin:9px 0;vertical-align:middle">
|
241 |
+
<img src="<?php echo trailingslashit(get_bloginfo('url')).PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/share_save_256_24.gif'; ?>" width="256" height="24" border="0" style="padding:9px;vertical-align:middle"
|
242 |
onclick="this.parentNode.firstChild.checked=true"/>
|
243 |
</label><br>
|
244 |
<label>
|
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: 2008-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: \n"
|
@@ -13,184 +13,184 @@ msgstr ""
|
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
-
#: add-to-any.php:
|
17 |
msgid "Share"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: add-to-any.php:
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: add-to-any.php:
|
25 |
msgid "Subscribe"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: add-to-any.php:
|
29 |
msgid "E-mail"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: add-to-any.php:
|
33 |
msgid "Bookmark"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: add-to-any.php:
|
37 |
msgid "Show all"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: add-to-any.php:
|
41 |
msgid "Show less"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: add-to-any.php:
|
45 |
msgid "Find service(s)"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: add-to-any.php:
|
49 |
msgid "Instantly find any service to add to"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: add-to-any.php:
|
53 |
msgid "Powered by"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: add-to-any.php:
|
57 |
msgid "Share via e-mail"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: add-to-any.php:
|
61 |
msgid "Subscribe via e-mail"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: add-to-any.php:
|
65 |
msgid "Bookmark in your browser"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: add-to-any.php:
|
69 |
msgid "Press Ctrl+D or Cmd+D to bookmark this page"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: add-to-any.php:
|
73 |
msgid "Add to your favorites"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: add-to-any.php:
|
77 |
msgid "Send from any e-mail address or e-mail program"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: add-to-any.php:
|
81 |
msgid "E-mail program"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: add-to-any.php:
|
85 |
msgid "Settings saved."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: add-to-any.php:
|
89 |
msgid "Add to Any: Share/Save "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: add-to-any.php:
|
93 |
-
#: add-to-any.php:
|
94 |
msgid "Settings"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: add-to-any.php:
|
98 |
msgid "Button"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: add-to-any.php:
|
102 |
msgid "Image URL"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: add-to-any.php:
|
106 |
msgid "Text only"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: add-to-any.php:
|
110 |
msgid "Button Placement"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: add-to-any.php:
|
114 |
msgid "Display Share/Save button at the bottom of posts"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: add-to-any.php:
|
118 |
msgid "Display Share/Save button at the bottom of posts on the front page"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: add-to-any.php:
|
122 |
msgid "Display Share/Save button at the bottom of posts in the feed"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: add-to-any.php:
|
126 |
msgid "Display Share/Save button at the bottom of pages"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: add-to-any.php:
|
130 |
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>)"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: add-to-any.php:
|
134 |
msgid "Menu Style"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: add-to-any.php:
|
138 |
msgid "Using Add to Any'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."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: add-to-any.php:
|
142 |
msgid "Open the Add to Any Menu Styler in a new window"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: add-to-any.php:
|
146 |
msgid "Open Menu Styler"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: add-to-any.php:
|
150 |
msgid "Menu Options"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: add-to-any.php:
|
154 |
msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: add-to-any.php:
|
158 |
msgid "Show the title of the post (or page) within the menu"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: add-to-any.php:
|
162 |
msgid "Only show the menu when the user clicks the Share/Save button"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: add-to-any.php:
|
166 |
msgid "Additional Options"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: add-to-any.php:
|
170 |
msgid "Paste the code from Add to Any's Menu Styler in the box below!"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: add-to-any.php:
|
174 |
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: add-to-any.php:
|
178 |
msgid "Advanced users might want to check out the code generated by Add to Any's general <a href=\"http://www.addtoany.com/buttons/share_save\">Share/Save button generator</a>."
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: add-to-any.php:
|
182 |
msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: add-to-any.php:
|
186 |
msgid "Save Changes"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: add-to-any.php:
|
190 |
msgid "Share/Save"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: add-to-any.php:
|
194 |
msgid "Share/Save Buttons"
|
195 |
msgstr ""
|
196 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: add-to-any\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-18 15:12-0800\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: MicroPat\n"
|
8 |
"Language-Team: \n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
|
16 |
+
#: add-to-any.php:121
|
17 |
msgid "Share"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: add-to-any.php:122
|
21 |
msgid "Save"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: add-to-any.php:123
|
25 |
msgid "Subscribe"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: add-to-any.php:124
|
29 |
msgid "E-mail"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: add-to-any.php:125
|
33 |
msgid "Bookmark"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: add-to-any.php:126
|
37 |
msgid "Show all"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: add-to-any.php:127
|
41 |
msgid "Show less"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: add-to-any.php:128
|
45 |
msgid "Find service(s)"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: add-to-any.php:129
|
49 |
msgid "Instantly find any service to add to"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: add-to-any.php:130
|
53 |
msgid "Powered by"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: add-to-any.php:131
|
57 |
msgid "Share via e-mail"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: add-to-any.php:132
|
61 |
msgid "Subscribe via e-mail"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: add-to-any.php:133
|
65 |
msgid "Bookmark in your browser"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: add-to-any.php:134
|
69 |
msgid "Press Ctrl+D or Cmd+D to bookmark this page"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: add-to-any.php:135
|
73 |
msgid "Add to your favorites"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: add-to-any.php:136
|
77 |
msgid "Send from any e-mail address or e-mail program"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: add-to-any.php:137
|
81 |
msgid "E-mail program"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: add-to-any.php:199
|
85 |
msgid "Settings saved."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: add-to-any.php:208
|
89 |
msgid "Add to Any: Share/Save "
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: add-to-any.php:208
|
93 |
+
#: add-to-any.php:363
|
94 |
msgid "Settings"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: add-to-any.php:218
|
98 |
msgid "Button"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: add-to-any.php:247
|
102 |
msgid "Image URL"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: add-to-any.php:254
|
106 |
msgid "Text only"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: add-to-any.php:262
|
110 |
msgid "Button Placement"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: add-to-any.php:271
|
114 |
msgid "Display Share/Save button at the bottom of posts"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: add-to-any.php:278
|
118 |
msgid "Display Share/Save button at the bottom of posts on the front page"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: add-to-any.php:285
|
122 |
msgid "Display Share/Save button at the bottom of posts in the feed"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: add-to-any.php:289
|
126 |
msgid "Display Share/Save button at the bottom of pages"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: add-to-any.php:292
|
130 |
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>)"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: add-to-any.php:297
|
134 |
msgid "Menu Style"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: add-to-any.php:299
|
138 |
msgid "Using Add to Any'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."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: add-to-any.php:301
|
142 |
msgid "Open the Add to Any Menu Styler in a new window"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: add-to-any.php:303
|
146 |
msgid "Open Menu Styler"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: add-to-any.php:308
|
150 |
msgid "Menu Options"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: add-to-any.php:313
|
154 |
msgid "Hide embedded objects (Flash, video, etc.) that intersect with the menu when displayed"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: add-to-any.php:318
|
158 |
msgid "Show the title of the post (or page) within the menu"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: add-to-any.php:323
|
162 |
msgid "Only show the menu when the user clicks the Share/Save button"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: add-to-any.php:328
|
166 |
msgid "Additional Options"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: add-to-any.php:332
|
170 |
msgid "Paste the code from Add to Any's Menu Styler in the box below!"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: add-to-any.php:336
|
174 |
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: add-to-any.php:337
|
178 |
msgid "Advanced users might want to check out the code generated by Add to Any's general <a href=\"http://www.addtoany.com/buttons/share_save\">Share/Save button generator</a>."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: add-to-any.php:343
|
182 |
msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: add-to-any.php:350
|
186 |
msgid "Save Changes"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: add-to-any.php:363
|
190 |
msgid "Share/Save"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: add-to-any.php:364
|
194 |
msgid "Share/Save Buttons"
|
195 |
msgstr ""
|
196 |
|