Version Description
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 0.9.9.6.5 |
Comparing to | |
See all releases |
Code changes from version 0.9.9.6.4 to 0.9.9.6.5
- README.txt +6 -1
- add-to-any.php +5 -5
- languages/add-to-any-nl_NL.mo +0 -0
- languages/add-to-any-nl_NL.po +274 -0
README.txt
CHANGED
@@ -22,7 +22,7 @@ Individual **service icons** let you optimize your blog posts for specific socia
|
|
22 |
* Includes all <a href="http://www.addtoany.com/services/" target="_blank">services</a>
|
23 |
* Menu updated automatically
|
24 |
* Google Analytics integration (<a href="http://www.addtoany.com/ext/google_analytics/">access guide</a>)
|
25 |
-
* WordPress optimized, localized (English, Chinese, Spanish, Japanese, French, Portuguese, Italian, Danish, Catalan, Russian, Albanian, Romanian, Belarusian)
|
26 |
* Many more publisher and user features!
|
27 |
|
28 |
After **years of ongoing development**, over **1 million downloads**, and **ongoing support** from the community, AddToAny still strives to be the best WordPress plugin for sharing. We hope it's perfect for everyone by version 1.0.
|
@@ -171,6 +171,11 @@ Please read <a href="http://www.addtoany.com/buttons/customize/show_over_embeds"
|
|
171 |
|
172 |
== Changelog ==
|
173 |
|
|
|
|
|
|
|
|
|
|
|
174 |
= .9.9.6.4 =
|
175 |
* Option to toggle displaying at the bottom of excerpts
|
176 |
* Shorten option descriptions
|
22 |
* Includes all <a href="http://www.addtoany.com/services/" target="_blank">services</a>
|
23 |
* Menu updated automatically
|
24 |
* Google Analytics integration (<a href="http://www.addtoany.com/ext/google_analytics/">access guide</a>)
|
25 |
+
* WordPress optimized, localized (English, Chinese, Spanish, Japanese, French, Portuguese, Italian, Dutch, Danish, Catalan, Russian, Albanian, Romanian, Belarusian)
|
26 |
* Many more publisher and user features!
|
27 |
|
28 |
After **years of ongoing development**, over **1 million downloads**, and **ongoing support** from the community, AddToAny still strives to be the best WordPress plugin for sharing. We hope it's perfect for everyone by version 1.0.
|
171 |
|
172 |
== Changelog ==
|
173 |
|
174 |
+
= .9.9.6.5 =
|
175 |
+
* Add class-names to use official <a href="http://www.addtoany.com/buttons/customize/standalone_services">Standalone Services Kit</a>
|
176 |
+
* Google Analytics stats for individual services
|
177 |
+
* Dutch translation (by Rene from <a href="http://wpwebshop.com/premium-wordpress-plugins/">WordPress Webshop</a>)
|
178 |
+
|
179 |
= .9.9.6.4 =
|
180 |
* Option to toggle displaying at the bottom of excerpts
|
181 |
* Shorten option descriptions
|
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.6.
|
7 |
Author: AddToAny
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
@@ -50,7 +50,7 @@ include_once('services.php');
|
|
50 |
function ADDTOANY_SHARE_SAVE_KIT( $args = false ) {
|
51 |
|
52 |
if ( ! isset($args['html_container_open']))
|
53 |
-
$args['html_container_open'] = "<ul class=\"addtoany_list\">";
|
54 |
if ( ! isset($args['html_container_close']))
|
55 |
$args['html_container_close'] = "</ul>";
|
56 |
// Close container element in ADDTOANY_SHARE_SAVE_BUTTON, not prematurely in ADDTOANY_SHARE_SAVE_ICONS
|
@@ -141,7 +141,7 @@ function ADDTOANY_SHARE_SAVE_ICONS( $args = array() ) {
|
|
141 |
$url = ($custom_service) ? $href : "http://www.addtoany.com/add_to/" . $safe_name . "?linkurl=" . $linkurl_enc . "&linkname=" . $linkname_enc;
|
142 |
$src = ($custom_service) ? $icon : $A2A_SHARE_SAVE_plugin_url_path."/icons/".$icon.".png";
|
143 |
|
144 |
-
$link = $html_wrap_open."<a href=\"$url\" title=\"$name\" rel=\"nofollow\" target=\"_blank\">";
|
145 |
$link .= "<img src=\"$src\" width=\"$width\" height=\"$height\" alt=\"$name\"/>";
|
146 |
$link .= "</a>".$html_wrap_close;
|
147 |
|
@@ -217,7 +217,7 @@ function ADDTOANY_SHARE_SAVE_BUTTON( $args = array() ) {
|
|
217 |
$button = $button_text;
|
218 |
} else {
|
219 |
$style = '';
|
220 |
-
$button = '<img src="'.$button_src.'"'.$button_width.$button_height.' alt="Share
|
221 |
}
|
222 |
|
223 |
$button_html = $html_container_open.$html_wrap_open.'<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"'
|
@@ -398,7 +398,7 @@ function A2A_SHARE_SAVE_to_bottom_of_content($content) {
|
|
398 |
|
399 |
$kit_args = array(
|
400 |
"output_later" => true,
|
401 |
-
"html_container_open" => ($is_feed) ? "" : "<ul class=\"addtoany_list\">",
|
402 |
"html_container_close" => ($is_feed) ? "" : "</ul>",
|
403 |
"html_wrap_open" => ($is_feed) ? "" : "<li>",
|
404 |
"html_wrap_close" => ($is_feed) ? " " : "</li>",
|
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.6.5
|
7 |
Author: AddToAny
|
8 |
Author URI: http://www.addtoany.com/
|
9 |
*/
|
50 |
function ADDTOANY_SHARE_SAVE_KIT( $args = false ) {
|
51 |
|
52 |
if ( ! isset($args['html_container_open']))
|
53 |
+
$args['html_container_open'] = "<ul class=\"a2a_kit addtoany_list\">";
|
54 |
if ( ! isset($args['html_container_close']))
|
55 |
$args['html_container_close'] = "</ul>";
|
56 |
// Close container element in ADDTOANY_SHARE_SAVE_BUTTON, not prematurely in ADDTOANY_SHARE_SAVE_ICONS
|
141 |
$url = ($custom_service) ? $href : "http://www.addtoany.com/add_to/" . $safe_name . "?linkurl=" . $linkurl_enc . "&linkname=" . $linkname_enc;
|
142 |
$src = ($custom_service) ? $icon : $A2A_SHARE_SAVE_plugin_url_path."/icons/".$icon.".png";
|
143 |
|
144 |
+
$link = $html_wrap_open."<a class=\"a2a_button_$safe_name\" href=\"$url\" title=\"$name\" rel=\"nofollow\" target=\"_blank\">";
|
145 |
$link .= "<img src=\"$src\" width=\"$width\" height=\"$height\" alt=\"$name\"/>";
|
146 |
$link .= "</a>".$html_wrap_close;
|
147 |
|
217 |
$button = $button_text;
|
218 |
} else {
|
219 |
$style = '';
|
220 |
+
$button = '<img src="'.$button_src.'"'.$button_width.$button_height.' alt="Share"/>';
|
221 |
}
|
222 |
|
223 |
$button_html = $html_container_open.$html_wrap_open.'<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"'
|
398 |
|
399 |
$kit_args = array(
|
400 |
"output_later" => true,
|
401 |
+
"html_container_open" => ($is_feed) ? "" : "<ul class=\"a2a_kit addtoany_list\">",
|
402 |
"html_container_close" => ($is_feed) ? "" : "</ul>",
|
403 |
"html_wrap_open" => ($is_feed) ? "" : "<li>",
|
404 |
"html_wrap_close" => ($is_feed) ? " " : "</li>",
|
languages/add-to-any-nl_NL.mo
ADDED
Binary file
|
languages/add-to-any-nl_NL.po
ADDED
@@ -0,0 +1,274 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: add-to-any .9.9.6.4\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-07-20 01:02-0800\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Rene <info@wpwebshop.com>\n"
|
8 |
+
"Language-Team: Translation by WordPressWebshop.com <info@wpwebshop.com>\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 |
+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
15 |
+
"X-Poedit-Language: Dutch\n"
|
16 |
+
"X-Poedit-Country: NETHERLANDS\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: add-to-any.php:258
|
20 |
+
msgid "Share"
|
21 |
+
msgstr "Delen"
|
22 |
+
|
23 |
+
#: add-to-any.php:259
|
24 |
+
msgid "Save"
|
25 |
+
msgstr "Bewaren"
|
26 |
+
|
27 |
+
#: add-to-any.php:260
|
28 |
+
msgid "Subscribe"
|
29 |
+
msgstr "Inschrijven"
|
30 |
+
|
31 |
+
#: add-to-any.php:261
|
32 |
+
msgid "E-mail"
|
33 |
+
msgstr "E-mail"
|
34 |
+
|
35 |
+
#: add-to-any.php:262
|
36 |
+
msgid "Bookmark"
|
37 |
+
msgstr "Bookmark"
|
38 |
+
|
39 |
+
#: add-to-any.php:263
|
40 |
+
msgid "Show all"
|
41 |
+
msgstr "Alles weergeven"
|
42 |
+
|
43 |
+
#: add-to-any.php:264
|
44 |
+
msgid "Show less"
|
45 |
+
msgstr "Niet alles weergeven"
|
46 |
+
|
47 |
+
#: add-to-any.php:265
|
48 |
+
msgid "Find service(s)"
|
49 |
+
msgstr "Vind dienst(en)"
|
50 |
+
|
51 |
+
#: add-to-any.php:266
|
52 |
+
msgid "Instantly find any service to add to"
|
53 |
+
msgstr "Vind direct een dienst om aan toe te voegen"
|
54 |
+
|
55 |
+
#: add-to-any.php:267
|
56 |
+
msgid "Powered by"
|
57 |
+
msgstr "Mede mogelijk gemaakt door"
|
58 |
+
|
59 |
+
#: add-to-any.php:268
|
60 |
+
msgid "Share via e-mail"
|
61 |
+
msgstr "Delen via e-mail"
|
62 |
+
|
63 |
+
#: add-to-any.php:269
|
64 |
+
msgid "Subscribe via e-mail"
|
65 |
+
msgstr "Inschrijven via email"
|
66 |
+
|
67 |
+
#: add-to-any.php:270
|
68 |
+
msgid "Bookmark in your browser"
|
69 |
+
msgstr "Bookmark in je browser"
|
70 |
+
|
71 |
+
#: add-to-any.php:271
|
72 |
+
msgid "Press Ctrl+D or ⌘+D to bookmark this page"
|
73 |
+
msgstr "Druk op Ctrl+D of ⌘+D om deze pagina te bookmarken"
|
74 |
+
|
75 |
+
#: add-to-any.php:272
|
76 |
+
msgid "Add to your favorites"
|
77 |
+
msgstr "Voeg aan je favorieten toe"
|
78 |
+
|
79 |
+
#: add-to-any.php:273
|
80 |
+
msgid "Send from any e-mail address or e-mail program"
|
81 |
+
msgstr "Verzend vanaf elk email adres of email programma"
|
82 |
+
|
83 |
+
#: add-to-any.php:274
|
84 |
+
msgid "E-mail program"
|
85 |
+
msgstr "E-mail programma"
|
86 |
+
|
87 |
+
#: add-to-any.php:299
|
88 |
+
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."
|
89 |
+
msgstr "Je template moet gerepareerd worden, gebruik hiervoor de <a href=\"theme-editor.php\">Template Editor</ a> om <code><?php wp_footer(); ?></code> in te voegen net voor de <code></body></code> regel van het <code>footer.php</code> bestand."
|
90 |
+
|
91 |
+
#: add-to-any.php:490
|
92 |
+
#, php-format
|
93 |
+
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
94 |
+
msgstr "Niet mogelijk om folder %s te creëeren. Is de bovenliggende folder beschrijfbaar door de server?"
|
95 |
+
|
96 |
+
#: add-to-any.php:566
|
97 |
+
#: add-to-any.php:639
|
98 |
+
#: add-to-any.php:643
|
99 |
+
#: add-to-any.php:647
|
100 |
+
#: add-to-any.php:651
|
101 |
+
#: add-to-any.php:683
|
102 |
+
msgid "Share/Bookmark"
|
103 |
+
msgstr "Delen/Bookmark"
|
104 |
+
|
105 |
+
#: add-to-any.php:580
|
106 |
+
msgid "Settings saved."
|
107 |
+
msgstr "Instellingen opgeslagen."
|
108 |
+
|
109 |
+
#: add-to-any.php:593
|
110 |
+
msgid "AddToAny: Share/Save "
|
111 |
+
msgstr "AddToAny: Delen/Bewaren"
|
112 |
+
|
113 |
+
#: add-to-any.php:593
|
114 |
+
#: add-to-any.php:978
|
115 |
+
#: add-to-any.php:1002
|
116 |
+
msgid "Settings"
|
117 |
+
msgstr "Instellingen"
|
118 |
+
|
119 |
+
#: add-to-any.php:602
|
120 |
+
msgid "Standalone Services"
|
121 |
+
msgstr "Zelfstandige Diensten"
|
122 |
+
|
123 |
+
#: add-to-any.php:607
|
124 |
+
msgid "Choose the services you want below. Click a chosen service again to remove. Reorder services by dragging and dropping as they appear above."
|
125 |
+
msgstr "Kies de gewenste diensten hieronder. Klik op een gekozen dienst om deze weer te verwijderen. Herorder de volgorde van diensten door middel van slepen en plaatsen zoals hierboven."
|
126 |
+
|
127 |
+
#: add-to-any.php:634
|
128 |
+
msgid "Button"
|
129 |
+
msgstr "Knop"
|
130 |
+
|
131 |
+
#: add-to-any.php:673
|
132 |
+
msgid "Image URL"
|
133 |
+
msgstr "Afbeelding URL"
|
134 |
+
|
135 |
+
#: add-to-any.php:680
|
136 |
+
msgid "Text only"
|
137 |
+
msgstr "Alleen tekst"
|
138 |
+
|
139 |
+
#: add-to-any.php:688
|
140 |
+
msgid "Placement"
|
141 |
+
msgstr "Plaatsing"
|
142 |
+
|
143 |
+
#: add-to-any.php:697
|
144 |
+
msgid "Display Share/Save button at the bottom of posts"
|
145 |
+
msgstr "Laat Delen/Bewaren knop zien aan het einde van berichten"
|
146 |
+
|
147 |
+
#: add-to-any.php:704
|
148 |
+
msgid "Display Share/Save button at the bottom of posts on the front page"
|
149 |
+
msgstr "Laat Delen/Bewaren knop zien aan de onderkant van berichten op de voorpagina"
|
150 |
+
|
151 |
+
#: add-to-any.php:711
|
152 |
+
msgid "Display Share/Save button at the bottom of posts in the feed"
|
153 |
+
msgstr "Laat Delen/Bewaren knop zien aan de onderkant van feed berichten "
|
154 |
+
|
155 |
+
#: add-to-any.php:715
|
156 |
+
msgid "Display Share/Save button at the bottom of pages"
|
157 |
+
msgstr "Laat Delen/Bewaren knop zien aan de onderkant van pagina's"
|
158 |
+
|
159 |
+
#: add-to-any.php:719
|
160 |
+
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>)"
|
161 |
+
msgstr "Indien niet aangevinkt moet je de volgende code in <a href=\"theme-editor.php\">je sjabloon pagina's</a> plaatsen (binnen <code>index.php</code>, <code>single.php</code>, en/of <code>page.php</code>)"
|
162 |
+
|
163 |
+
#: add-to-any.php:728
|
164 |
+
msgid "Menu Style"
|
165 |
+
msgstr "Menu Stijl"
|
166 |
+
|
167 |
+
#: add-to-any.php:730
|
168 |
+
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."
|
169 |
+
msgstr "Met behulp van AddToAny's Menu Styler kun je de kleuren veranderen van je Delen/Bewaren menu! Wanneer je klaar bent moet je de gegenereerde code plakken in het onderstaande vak <a href=\"#\" onclick=\"document.getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false\">Aanvullende opties</a>."
|
170 |
+
|
171 |
+
#: add-to-any.php:732
|
172 |
+
msgid "Open the AddToAny Menu Styler in a new window"
|
173 |
+
msgstr "Open het AddToAny Styler menu in een nieuw venster"
|
174 |
+
|
175 |
+
#: add-to-any.php:734
|
176 |
+
msgid "Open Menu Styler"
|
177 |
+
msgstr "Open Menu Styler"
|
178 |
+
|
179 |
+
#: add-to-any.php:739
|
180 |
+
msgid "Menu Options"
|
181 |
+
msgstr "Menu Opties"
|
182 |
+
|
183 |
+
#: add-to-any.php:744
|
184 |
+
msgid "Show the title of the post (or page) within the menu"
|
185 |
+
msgstr "Toon de titel van het bericht (of pagina) in het menu"
|
186 |
+
|
187 |
+
#: add-to-any.php:751
|
188 |
+
msgid "Only show the menu when the user clicks the Share/Save button"
|
189 |
+
msgstr "Alleen het menu weergeven wanneer de gebruiker klikt op de Delen/Bewaren knop"
|
190 |
+
|
191 |
+
#: add-to-any.php:757
|
192 |
+
msgid "Open the addtoany.com menu page in a new tab or window if the user clicks the Share/Save button"
|
193 |
+
msgstr "Open de addtoany.com menupagina in een nieuw tabblad of venster als de gebruiker klikt op de Delen/Bewaren knop"
|
194 |
+
|
195 |
+
#: add-to-any.php:762
|
196 |
+
msgid "Additional Options"
|
197 |
+
msgstr "Additionele Opties"
|
198 |
+
|
199 |
+
#: add-to-any.php:766
|
200 |
+
msgid "Paste the code from AddToAny's Menu Styler in the box below!"
|
201 |
+
msgstr "Plak de code van AddToAny's Menu Styler in het vak hieronder!"
|
202 |
+
|
203 |
+
#: add-to-any.php:770
|
204 |
+
msgid "Below you can set special JavaScript variables to apply to each Share/Save menu."
|
205 |
+
msgstr "Hieronder kun je speciale JavaScript variabelen instellen welke van toepassing zijn op elk Delen/Bewaren menu."
|
206 |
+
|
207 |
+
#: add-to-any.php:771
|
208 |
+
msgid "Advanced users might want to explore AddToAny's <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">additional options</a>."
|
209 |
+
msgstr "Gevorderde gebruikers willen wellicht de <a href=\"http://www.addtoany.com/buttons/customize/\" target=\"_blank\">extra opties</ a> van AddToAny's verkennen."
|
210 |
+
|
211 |
+
#: add-to-any.php:777
|
212 |
+
msgid "<strong>Note</strong>: If you're adding new code, be careful not to accidentally overwrite any previous code.</label>"
|
213 |
+
msgstr "<strong>Opmerking</ strong>: Pas op dat je niet per ongeluk oudere code overschrijft wanneer je nieuwe code toevoegt.</label>"
|
214 |
+
|
215 |
+
#: add-to-any.php:782
|
216 |
+
msgid "Advanced Options"
|
217 |
+
msgstr "Geavanceerde Opties"
|
218 |
+
|
219 |
+
#: add-to-any.php:787
|
220 |
+
msgid "Use CSS stylesheet"
|
221 |
+
msgstr "Gebruik CSS stijlbestand"
|
222 |
+
|
223 |
+
#: add-to-any.php:792
|
224 |
+
msgid "Cache AddToAny locally with daily cache updates"
|
225 |
+
msgstr "Cache AddToAny lokaal met dagelijkse cache updates"
|
226 |
+
|
227 |
+
#: add-to-any.php:796
|
228 |
+
msgid "If unchecked, be sure to place the CSS in your theme's stylesheet:"
|
229 |
+
msgstr "Indien niet aangevinkt moet je de CSS plaatsen in je thema's stylesheet:"
|
230 |
+
|
231 |
+
#: add-to-any.php:801
|
232 |
+
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."
|
233 |
+
msgstr "Alleen ter afweging voor sites met vaak terugkomende bezoekers. Aangezien veel bezoekers AddToAny al gecached hebben in hun browser zal AddToAny lokaal gestart van je site langzamer zijn voor bezoekers. Wees er zeker van om toekomstige cache/expires headers voor afbeelding bestanden in te stellen in je <code>uploads/addtoany</code> folder."
|
234 |
+
|
235 |
+
#: add-to-any.php:808
|
236 |
+
msgid "Save Changes"
|
237 |
+
msgstr "Wijzigingen opslaan"
|
238 |
+
|
239 |
+
#: add-to-any.php:813
|
240 |
+
msgid "Like this plugin?"
|
241 |
+
msgstr "Vind je deze plugin goed?"
|
242 |
+
|
243 |
+
#: add-to-any.php:814
|
244 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Give it a good rating</a> on WordPress.org."
|
245 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/add-to-any/\">Geef het een goede rating</a> op WordPress.org."
|
246 |
+
|
247 |
+
#: add-to-any.php:815
|
248 |
+
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."
|
249 |
+
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\">Deel het</a> met je vrienden."
|
250 |
+
|
251 |
+
#: add-to-any.php:817
|
252 |
+
msgid "Need support?"
|
253 |
+
msgstr "Hulp nodig?"
|
254 |
+
|
255 |
+
#: add-to-any.php:818
|
256 |
+
msgid "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">FAQs</a>."
|
257 |
+
msgstr "Zie de <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/\">veelgestelde vragen</ a> (Engels)."
|
258 |
+
|
259 |
+
#: add-to-any.php:819
|
260 |
+
msgid "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a>."
|
261 |
+
msgstr "Zoek in de <a href=\"http://wordpress.org/tags/add-to-any\">support forums</a> (Engels)."
|
262 |
+
|
263 |
+
#: add-to-any.php:926
|
264 |
+
msgid "Add/Remove Services"
|
265 |
+
msgstr "Toevoegen/Verwijderen Diensten"
|
266 |
+
|
267 |
+
#: add-to-any.php:978
|
268 |
+
msgid "Share/Save"
|
269 |
+
msgstr "Delen/Bewaren"
|
270 |
+
|
271 |
+
#: add-to-any.php:979
|
272 |
+
msgid "Share/Save Buttons"
|
273 |
+
msgstr "Delen/Bewaren Knoppen"
|
274 |
+
|