Version Description
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 0.9.9.7.1 |
Comparing to | |
See all releases |
Code changes from version 0.9.9.7 to 0.9.9.7.1
- README.txt +14 -1
- add-to-any.php +7 -10
- icons/clear.png +0 -0
- icons/messenger.png +0 -0
- icons/myspace.png +0 -0
- icons/print.png +0 -0
- icons/share.png +0 -0
- icons/sina_weibo.png +0 -0
- icons/skimbit.png +0 -0
- languages/add-to-any-de_DE.mo +0 -0
- languages/add-to-any-de_DE.po +335 -0
- services.php +13 -12
- share_save_171_16.gif +0 -0
- share_save_171_16.png +0 -0
- share_save_256_24.gif +0 -0
- share_save_256_24.png +0 -0
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat
|
|
3 |
Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, email, e-mail, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, messenger, stumbleupon, technorati, sociable, icon, icons, wpmu, addtoany, add
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 0.9.9.7
|
7 |
|
8 |
Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
|
9 |
|
@@ -177,6 +177,19 @@ Please read <a href="http://www.addtoany.com/buttons/customize/show_over_embeds"
|
|
177 |
|
178 |
== Changelog ==
|
179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
= .9.9.7 =
|
181 |
* W3C XHTML validation fix for the Twitter Tweet iframe
|
182 |
* Remove non-standard allowtransparency attribute on Like & Tweet iframes
|
3 |
Tags: sharing, share, sharethis, bookmarking, social, social bookmarking, social bookmarks, bookmark, bookmarks, save, Post, posts, page, pages, images, image, admin, statistics, stats, links, plugin, widget, email, e-mail, seo, button, delicious, google buzz, buzz, google, digg, reddit, facebook, facebook like, like, myspace, twitter, tweet, messenger, stumbleupon, technorati, sociable, icon, icons, wpmu, addtoany, add
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 0.9.9.7.1
|
7 |
|
8 |
Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more.
|
9 |
|
177 |
|
178 |
== Changelog ==
|
179 |
|
180 |
+
= .9.9.7.1 =
|
181 |
+
* New Print standalone service
|
182 |
+
* Fix custom services added to plugin services array
|
183 |
+
* Fix icons native vs. URL logic
|
184 |
+
* Buttons updated
|
185 |
+
* Myspace icon updated
|
186 |
+
* Add Microsoft Messenger
|
187 |
+
* Add Sina
|
188 |
+
* Remove Windows Live Favorites
|
189 |
+
* Remove Windows Live Spaces
|
190 |
+
* Remove Propeller
|
191 |
+
* German translation (by Richard Laufenberg of <a href="http://www.portavision.de/">MediaCenter Laufenberg</a>)
|
192 |
+
|
193 |
= .9.9.7 =
|
194 |
* W3C XHTML validation fix for the Twitter Tweet iframe
|
195 |
* Remove non-standard allowtransparency attribute on Like & Tweet iframes
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: AddToAny: Share/Bookmark/Email Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
-
Version: .9.9.7
|
7 |
Author: AddToAny
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
@@ -137,19 +137,16 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
|
|
137 |
$custom_service = FALSE;
|
138 |
}
|
139 |
|
140 |
-
|
141 |
-
|
142 |
-
elseif ( ! isset($service['icon']))
|
143 |
-
$icon = 'default';
|
144 |
-
else
|
145 |
-
$icon = $service['icon'];
|
146 |
$width = (isset($service['icon_width'])) ? $service['icon_width'] : '16';
|
147 |
$height = (isset($service['icon_height'])) ? $service['icon_height'] : '16';
|
148 |
|
149 |
$url = ($custom_service) ? $href : "http://www.addtoany.com/add_to/" . $safe_name . "?linkurl=" . $linkurl_enc . "&linkname=" . $linkname_enc;
|
150 |
-
$src = ($
|
|
|
151 |
|
152 |
-
$link = $html_wrap_open."<a
|
153 |
$link .= "<img src=\"$src\" width=\"$width\" height=\"$height\" alt=\"$name\"/>";
|
154 |
$link .= "</a>".$html_wrap_close;
|
155 |
}
|
@@ -632,7 +629,7 @@ function A2A_SHARE_SAVE_options_page() {
|
|
632 |
$site['icon'] = 'default';
|
633 |
?>
|
634 |
<li id="a2a_wp_<?php echo $service_safe_name; ?>" title="<?php echo $site['name']; ?>">
|
635 |
-
<span><img src="<?php echo ($
|
636 |
</li>
|
637 |
<?php
|
638 |
} ?>
|
3 |
Plugin Name: AddToAny: Share/Bookmark/Email Button
|
4 |
Plugin URI: http://www.addtoany.com/
|
5 |
Description: Help people share, bookmark, and email your posts & pages using any service, such as Facebook, Twitter, Google Buzz, Digg and many more. [<a href="options-general.php?page=add-to-any.php">Settings</a>]
|
6 |
+
Version: .9.9.7.1
|
7 |
Author: AddToAny
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
137 |
$custom_service = FALSE;
|
138 |
}
|
139 |
|
140 |
+
$icon_url = (isset($service['icon_url'])) ? $service['icon_url'] : FALSE;
|
141 |
+
$icon = (isset($service['icon'])) ? $service['icon'] : 'default'; // Just the icon filename
|
|
|
|
|
|
|
|
|
142 |
$width = (isset($service['icon_width'])) ? $service['icon_width'] : '16';
|
143 |
$height = (isset($service['icon_height'])) ? $service['icon_height'] : '16';
|
144 |
|
145 |
$url = ($custom_service) ? $href : "http://www.addtoany.com/add_to/" . $safe_name . "?linkurl=" . $linkurl_enc . "&linkname=" . $linkname_enc;
|
146 |
+
$src = ($icon_url) ? $icon_url : $A2A_SHARE_SAVE_plugin_url_path."/icons/".$icon.".png";
|
147 |
+
$class_attr = ($custom_service) ? "" : " class=\"a2a_button_$safe_name\"";
|
148 |
|
149 |
+
$link = $html_wrap_open."<a$class_attr href=\"$url\" title=\"$name\" rel=\"nofollow\" target=\"_blank\">";
|
150 |
$link .= "<img src=\"$src\" width=\"$width\" height=\"$height\" alt=\"$name\"/>";
|
151 |
$link .= "</a>".$html_wrap_close;
|
152 |
}
|
629 |
$site['icon'] = 'default';
|
630 |
?>
|
631 |
<li id="a2a_wp_<?php echo $service_safe_name; ?>" title="<?php echo $site['name']; ?>">
|
632 |
+
<span><img src="<?php echo ($site['icon_url']) ? $site['icon_url'] : $A2A_SHARE_SAVE_plugin_url_path.'/icons/'.$site['icon'].'.png'; ?>" width="<?php echo (isset($site['icon_width'])) ? $site['icon_width'] : '16'; ?>" height="<?php echo (isset($site['icon_height'])) ? $site['icon_height'] : '16'; ?>" alt="" /><?php echo $site['name']; ?></span>
|
633 |
</li>
|
634 |
<?php
|
635 |
} ?>
|
icons/clear.png
DELETED
Binary file
|
icons/messenger.png
ADDED
Binary file
|
icons/myspace.png
CHANGED
Binary file
|
icons/print.png
ADDED
Binary file
|
icons/share.png
DELETED
Binary file
|
icons/sina_weibo.png
ADDED
Binary file
|
icons/skimbit.png
DELETED
Binary file
|
languages/add-to-any-de_DE.mo
ADDED
Binary file
|
languages/add-to-any-de_DE.po
ADDED
@@ -0,0 +1,335 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: AddToAny: Share/Bookmark/Email Button v.9.9.6.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2010-10-06 07:34+0000\n"
|
7 |
+
"Last-Translator: MediaCenter Laufenberg <info@portavision.de>\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 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: German\n"
|
14 |
+
"X-Poedit-Country: GERMANY\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: add-to-any.php:281
|
23 |
+
#@ add-to-any
|
24 |
+
msgid "Share"
|
25 |
+
msgstr "Empfehlen"
|
26 |
+
|
27 |
+
#: add-to-any.php:282
|
28 |
+
#@ add-to-any
|
29 |
+
msgid "Save"
|
30 |
+
msgstr "Speichern"
|
31 |
+
|
32 |
+
#: add-to-any.php:283
|
33 |
+
#@ add-to-any
|
34 |
+
msgid "Subscribe"
|
35 |
+
msgstr "Abonnieren"
|
36 |
+
|
37 |
+
#: add-to-any.php:284
|
38 |
+
#@ add-to-any
|
39 |
+
msgid "E-mail"
|
40 |
+
msgstr "E-Mail"
|
41 |
+
|
42 |
+
#: add-to-any.php:285
|
43 |
+
#@ add-to-any
|
44 |
+
msgid "Bookmark"
|
45 |
+
msgstr "Bookmark"
|
46 |
+
|
47 |
+
#: add-to-any.php:286
|
48 |
+
#@ add-to-any
|
49 |
+
msgid "Show all"
|
50 |
+
msgstr "zeige alle"
|
51 |
+
|
52 |
+
#: add-to-any.php:287
|
53 |
+
#@ add-to-any
|
54 |
+
msgid "Show less"
|
55 |
+
msgstr "Zeige weniger"
|
56 |
+
|
57 |
+
#: add-to-any.php:288
|
58 |
+
#@ add-to-any
|
59 |
+
msgid "Find service(s)"
|
60 |
+
msgstr "Finden Dienstleistung(en)"
|
61 |
+
|
62 |
+
#: add-to-any.php:289
|
63 |
+
#@ add-to-any
|
64 |
+
msgid "Instantly find any service to add to"
|
65 |
+
msgstr "Um weitere Dienste ergänzen"
|
66 |
+
|
67 |
+
#: add-to-any.php:290
|
68 |
+
#@ add-to-any
|
69 |
+
msgid "Powered by"
|
70 |
+
msgstr "Powered by"
|
71 |
+
|
72 |
+
#: add-to-any.php:291
|
73 |
+
#@ add-to-any
|
74 |
+
msgid "Share via e-mail"
|
75 |
+
msgstr "per E-Mail empfehlen"
|
76 |
+
|
77 |
+
#: add-to-any.php:292
|
78 |
+
#@ add-to-any
|
79 |
+
msgid "Subscribe via e-mail"
|
80 |
+
msgstr "per E-Mail abonnieren"
|
81 |
+
|
82 |
+
#: add-to-any.php:293
|
83 |
+
#@ add-to-any
|
84 |
+
msgid "Bookmark in your browser"
|
85 |
+
msgstr "Seite den Bookmarks hinzufügen"
|
86 |
+
|
87 |
+
#: add-to-any.php:294
|
88 |
+
#@ add-to-any
|
89 |
+
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
90 |
+
msgstr "Drücken Sie Strg + D oder ⌘ + D, um diese Seite den Bookmarks hinzuzufügen"
|
91 |
+
|
92 |
+
#: add-to-any.php:295
|
93 |
+
#@ add-to-any
|
94 |
+
msgid "Add to your favorites"
|
95 |
+
msgstr "Zu Ihren Favoriten hinzufügen"
|
96 |
+
|
97 |
+
#: add-to-any.php:296
|
98 |
+
#@ add-to-any
|
99 |
+
msgid "Send from any e-mail address or e-mail program"
|
100 |
+
msgstr "Von E-Mail-Adresse oder E-Mail-Programm senden"
|
101 |
+
|
102 |
+
#: add-to-any.php:297
|
103 |
+
#@ add-to-any
|
104 |
+
msgid "E-mail program"
|
105 |
+
msgstr "E-Mail-Programm"
|
106 |
+
|
107 |
+
#: add-to-any.php:322
|
108 |
+
#@ default
|
109 |
+
msgid "Your theme needs to be fixed. To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: add-to-any.php:462
|
113 |
+
#, php-format
|
114 |
+
#@ default
|
115 |
+
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: add-to-any.php:542
|
119 |
+
#: add-to-any.php:615
|
120 |
+
#: add-to-any.php:619
|
121 |
+
#: add-to-any.php:623
|
122 |
+
#: add-to-any.php:627
|
123 |
+
#: add-to-any.php:659
|
124 |
+
#@ add-to-any
|
125 |
+
msgid "Share/Bookmark"
|
126 |
+
msgstr "Empfehlen/Bookmark"
|
127 |
+
|
128 |
+
#: add-to-any.php:556
|
129 |
+
#@ default
|
130 |
+
msgid "Settings saved."
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: add-to-any.php:569
|
134 |
+
#@ add-to-any
|
135 |
+
msgid "AddToAny: Share/Save "
|
136 |
+
msgstr "AddToAny: Empfehlen/Speichern"
|
137 |
+
|
138 |
+
#: add-to-any.php:569
|
139 |
+
#: add-to-any.php:951
|
140 |
+
#: add-to-any.php:982
|
141 |
+
#@ default
|
142 |
+
msgid "Settings"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: add-to-any.php:578
|
146 |
+
#@ add-to-any
|
147 |
+
msgid "Standalone Services"
|
148 |
+
msgstr "einzelne Services"
|
149 |
+
|
150 |
+
#: add-to-any.php:583
|
151 |
+
#@ add-to-any
|
152 |
+
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
153 |
+
msgstr "Wählen Sie die gewünschten Dienste aus. Klicken Sie auf einen gewählten Dienst erneut um ihn wieder zu entfernen. Per Drag & Drop können Sie die Reihenfolge bestimmen."
|
154 |
+
|
155 |
+
#: add-to-any.php:610
|
156 |
+
#@ add-to-any
|
157 |
+
msgid "Button"
|
158 |
+
msgstr "Button"
|
159 |
+
|
160 |
+
#: add-to-any.php:649
|
161 |
+
#@ default
|
162 |
+
msgid "Image URL"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: add-to-any.php:656
|
166 |
+
#@ default
|
167 |
+
msgid "Text only"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: add-to-any.php:664
|
171 |
+
#@ add-to-any
|
172 |
+
msgid "Placement"
|
173 |
+
msgstr "Platzierung"
|
174 |
+
|
175 |
+
#: add-to-any.php:669
|
176 |
+
#@ add-to-any
|
177 |
+
msgid "Display at the bottom of posts"
|
178 |
+
msgstr "unterhalb von Beiträgen anzeigen lassen"
|
179 |
+
|
180 |
+
#: add-to-any.php:676
|
181 |
+
#@ add-to-any
|
182 |
+
msgid "Display at the bottom of post excerpts"
|
183 |
+
msgstr "am unteren Rand von Beitrags-Auszügen anzeigen lassen"
|
184 |
+
|
185 |
+
#: add-to-any.php:683
|
186 |
+
#@ add-to-any
|
187 |
+
msgid "Display at the bottom of posts on the front page"
|
188 |
+
msgstr "am unteren Rand der Beiträge auf der Startseite anzeigen lassen"
|
189 |
+
|
190 |
+
#: add-to-any.php:691
|
191 |
+
#@ add-to-any
|
192 |
+
msgid "Display at the bottom of posts in the feed"
|
193 |
+
msgstr "am unteren Rand der Beiträge im Feed anzeigen"
|
194 |
+
|
195 |
+
#: add-to-any.php:695
|
196 |
+
#@ add-to-any
|
197 |
+
msgid "Display at the bottom of pages"
|
198 |
+
msgstr "Anzeige am unteren Rand bei statischen Seiten"
|
199 |
+
|
200 |
+
#: add-to-any.php:699
|
201 |
+
#@ add-to-any
|
202 |
+
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>)"
|
203 |
+
msgstr "Ist diese Option deaktiviert, müssen Sie den folgenden Code <a href=\"theme-editor.php\">Ihren Vorlage-Seiten</a> (innherhalb <code>index.php</code> , <code>single.php</code> und / oder <code>page.php</code> ) manuell hinzufügen"
|
204 |
+
|
205 |
+
#: add-to-any.php:708
|
206 |
+
#@ add-to-any
|
207 |
+
msgid "Menu Style"
|
208 |
+
msgstr "Menüstil"
|
209 |
+
|
210 |
+
#: add-to-any.php:710
|
211 |
+
#@ add-to-any
|
212 |
+
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."
|
213 |
+
msgstr "Mit AddToAny's Menu Styler können Sie die Farben des Empfehlen/Speichern-Menü selbst festlegen. Den generierten Code fügen Sie unter <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Zusätzliche Optionen</a> in das Feld ein."
|
214 |
+
|
215 |
+
#: add-to-any.php:712
|
216 |
+
#@ add-to-any
|
217 |
+
msgid "Open the AddToAny Menu Styler in a new window"
|
218 |
+
msgstr "AddToAny Menü-Styler in einem neuen Fenster öffnen"
|
219 |
+
|
220 |
+
#: add-to-any.php:714
|
221 |
+
#@ add-to-any
|
222 |
+
msgid "Open Menu Styler"
|
223 |
+
msgstr "Menü-Styler öffnen"
|
224 |
+
|
225 |
+
#: add-to-any.php:719
|
226 |
+
#@ add-to-any
|
227 |
+
msgid "Menu Options"
|
228 |
+
msgstr "Menü-Optionen"
|
229 |
+
|
230 |
+
#: add-to-any.php:724
|
231 |
+
#@ add-to-any
|
232 |
+
msgid "Only show the menu when the user clicks the Share/Save button"
|
233 |
+
msgstr "Menü erst dann zeigen, wenn der Benutzer auf den Empfehlen/Speichern-Knopf drückt"
|
234 |
+
|
235 |
+
#: add-to-any.php:729
|
236 |
+
#@ add-to-any
|
237 |
+
msgid "Show the title of the post (or page) within the menu"
|
238 |
+
msgstr "Den Titel des Beitrags oder der Seite im Menü anzeigen"
|
239 |
+
|
240 |
+
#: add-to-any.php:734
|
241 |
+
#@ add-to-any
|
242 |
+
msgid "Additional Options"
|
243 |
+
msgstr "Zusätzliche Optionen"
|
244 |
+
|
245 |
+
#: add-to-any.php:738
|
246 |
+
#@ add-to-any
|
247 |
+
msgid "Paste the code from AddToAny's Menu Styler in the box below!"
|
248 |
+
msgstr "Fügen Sie den Code aus AddToAny's Menü-Styler in das untere Feld ein!"
|
249 |
+
|
250 |
+
#: add-to-any.php:742
|
251 |
+
#@ add-to-any
|
252 |
+
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
253 |
+
msgstr "Hier können Sie spezielle JavaScript-Variablen für jedes \\\"Empfehlen/Speichern\\\"-Menü festlegen."
|
254 |
+
|
255 |
+
#: add-to-any.php:743
|
256 |
+
#@ add-to-any
|
257 |
+
msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
|
258 |
+
msgstr "Erfahrene Benutzer sollten auch die individuellen Funktionen unter <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">»AddToAny zusätzliche Optionen«</a> ausprobieren."
|
259 |
+
|
260 |
+
#: add-to-any.php:749
|
261 |
+
#@ add-to-any
|
262 |
+
msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
|
263 |
+
msgstr "<strong>Hinweis:</strong> Wenn Sie neuen Code hinzufügen sollten Sie darauf achten, dass Sie nicht den vorherigen Code überschreiben. Dies könnte zu Fehlern führen!"
|
264 |
+
|
265 |
+
#: add-to-any.php:754
|
266 |
+
#@ add-to-any
|
267 |
+
msgid "Advanced Options"
|
268 |
+
msgstr "Erweiterte Optionen"
|
269 |
+
|
270 |
+
#: add-to-any.php:759
|
271 |
+
#@ add-to-any
|
272 |
+
msgid "Use CSS stylesheet"
|
273 |
+
msgstr "Verwenden Sie CSS-Stylesheet"
|
274 |
+
|
275 |
+
#: add-to-any.php:764
|
276 |
+
#@ add-to-any
|
277 |
+
msgid "Cache AddToAny locally with daily cache updates"
|
278 |
+
msgstr "AddToAny lokal mit täglichen Updates Cachen"
|
279 |
+
|
280 |
+
#: add-to-any.php:768
|
281 |
+
#@ add-to-any
|
282 |
+
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."
|
283 |
+
msgstr "Nur für Webseiten mit häufig wiederkehrenden Besuchern zu empfehlen. Bei den Besuchern, in deren Browser AddToAny-Cache bereits eingestellt ist kann es dazu führen dass Ihre Seiten langsamer ausgeliefert werden. Achten Sie darauf, das »Cache/Ablauf«-Zeitlimit für Bild-Dateien in Ihrem <code>uploads/addtoany</code> Verzeichnis in die entfernte Zukunft festzulegen."
|
284 |
+
|
285 |
+
#: add-to-any.php:775
|
286 |
+
#@ add-to-any
|
287 |
+
msgid "Save Changes"
|
288 |
+
msgstr "Änderungen speichern"
|
289 |
+
|
290 |
+
#: add-to-any.php:780
|
291 |
+
#@ add-to-any
|
292 |
+
msgid "Like this plugin?"
|
293 |
+
msgstr "Gefällt Ihnen dieses Plugin?"
|
294 |
+
|
295 |
+
#: add-to-any.php:781
|
296 |
+
#@ add-to-any
|
297 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
|
298 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geben Sie diesem Plugin ein gutes Rating</a> auf WordPress.org."
|
299 |
+
|
300 |
+
#: add-to-any.php:782
|
301 |
+
#, php-format
|
302 |
+
#@ add-to-any
|
303 |
+
msgid "<a href=\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\">Share it</a> with your friends."
|
304 |
+
msgstr "<a href=\\\"http://www.addtoany.com/share_save?linkname=WordPress%20Share%20%2F%20Bookmark%20Plugin%20by%20AddToAny.com&linkurl=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fadd-to-any%2F\\\">Empfehlen Sie diesen Beitrag</a> Ihren Freunden."
|
305 |
+
|
306 |
+
#: add-to-any.php:784
|
307 |
+
#@ add-to-any
|
308 |
+
msgid "Need support?"
|
309 |
+
msgstr "Brauchen Sie Unterstützung?"
|
310 |
+
|
311 |
+
#: add-to-any.php:785
|
312 |
+
#@ add-to-any
|
313 |
+
msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
|
314 |
+
msgstr "Weitere Infos finden Sie in den <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs (frequently asked questions)</a>."
|
315 |
+
|
316 |
+
#: add-to-any.php:786
|
317 |
+
#@ add-to-any
|
318 |
+
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
319 |
+
msgstr "Suchen Sie auch in den <a href=\"http://wordpress.org/tags/add-to-any\">Support-Foren</a> ."
|
320 |
+
|
321 |
+
#: add-to-any.php:899
|
322 |
+
#@ add-to-any
|
323 |
+
msgid "Add/Remove Services"
|
324 |
+
msgstr "Dienste hinzufügen / entfernen"
|
325 |
+
|
326 |
+
#: add-to-any.php:951
|
327 |
+
#@ add-to-any
|
328 |
+
msgid "Share/Save"
|
329 |
+
msgstr "Empfehlen / Speichern"
|
330 |
+
|
331 |
+
#: add-to-any.php:952
|
332 |
+
#@ add-to-any
|
333 |
+
msgid "Share/Save Buttons"
|
334 |
+
msgstr "Empfehlen / Speichern Knopf"
|
335 |
+
|
services.php
CHANGED
@@ -270,6 +270,10 @@ $A2A_SHARE_SAVE_services = Array(
|
|
270 |
"name" => "Meneame",
|
271 |
"icon" => "meneame",
|
272 |
),
|
|
|
|
|
|
|
|
|
273 |
"mindbodygreen" => Array(
|
274 |
"name" => "MindBodyGreen",
|
275 |
"icon" => "mindbodygreen",
|
@@ -358,14 +362,15 @@ $A2A_SHARE_SAVE_services = Array(
|
|
358 |
"name" => "Posterous",
|
359 |
"icon" => "posterous",
|
360 |
),
|
|
|
|
|
|
|
|
|
|
|
361 |
"printfriendly" => Array(
|
362 |
"name" => "PrintFriendly",
|
363 |
"icon" => "printfriendly",
|
364 |
),
|
365 |
-
"propeller" => Array(
|
366 |
-
"name" => "Propeller",
|
367 |
-
"icon" => "propeller",
|
368 |
-
),
|
369 |
"protopage_bookmarks" => Array(
|
370 |
"name" => "Protopage Bookmarks",
|
371 |
"icon" => "protopage",
|
@@ -394,6 +399,10 @@ $A2A_SHARE_SAVE_services = Array(
|
|
394 |
"name" => "Simpy",
|
395 |
"icon" => "simpy",
|
396 |
),
|
|
|
|
|
|
|
|
|
397 |
"sitejot" => Array(
|
398 |
"name" => "SiteJot",
|
399 |
"icon" => "sitejot",
|
@@ -506,14 +515,6 @@ $A2A_SHARE_SAVE_services = Array(
|
|
506 |
"name" => "Webnews",
|
507 |
"icon" => "webnews",
|
508 |
),
|
509 |
-
"windows_live_favorites" => Array(
|
510 |
-
"name" => "Windows Live Favorites",
|
511 |
-
"icon" => "live",
|
512 |
-
),
|
513 |
-
"windows_live_spaces" => Array(
|
514 |
-
"name" => "Windows Live Spaces",
|
515 |
-
"icon" => "spaces",
|
516 |
-
),
|
517 |
"wink" => Array(
|
518 |
"name" => "Wink",
|
519 |
"icon" => "wink",
|
270 |
"name" => "Meneame",
|
271 |
"icon" => "meneame",
|
272 |
),
|
273 |
+
"live" => Array(
|
274 |
+
"name" => "Messenger",
|
275 |
+
"icon" => "messenger",
|
276 |
+
),
|
277 |
"mindbodygreen" => Array(
|
278 |
"name" => "MindBodyGreen",
|
279 |
"icon" => "mindbodygreen",
|
362 |
"name" => "Posterous",
|
363 |
"icon" => "posterous",
|
364 |
),
|
365 |
+
"print" => Array(
|
366 |
+
"name" => "Print",
|
367 |
+
"icon" => "print",
|
368 |
+
"href" => "javascript:print()",
|
369 |
+
),
|
370 |
"printfriendly" => Array(
|
371 |
"name" => "PrintFriendly",
|
372 |
"icon" => "printfriendly",
|
373 |
),
|
|
|
|
|
|
|
|
|
374 |
"protopage_bookmarks" => Array(
|
375 |
"name" => "Protopage Bookmarks",
|
376 |
"icon" => "protopage",
|
399 |
"name" => "Simpy",
|
400 |
"icon" => "simpy",
|
401 |
),
|
402 |
+
"sina_weibo" => Array(
|
403 |
+
"name" => "Sina Weibo",
|
404 |
+
"icon" => "sina_weibo",
|
405 |
+
),
|
406 |
"sitejot" => Array(
|
407 |
"name" => "SiteJot",
|
408 |
"icon" => "sitejot",
|
515 |
"name" => "Webnews",
|
516 |
"icon" => "webnews",
|
517 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
"wink" => Array(
|
519 |
"name" => "Wink",
|
520 |
"icon" => "wink",
|
share_save_171_16.gif
CHANGED
Binary file
|
share_save_171_16.png
CHANGED
Binary file
|
share_save_256_24.gif
CHANGED
Binary file
|
share_save_256_24.png
CHANGED
Binary file
|