AddToAny Share Buttons - Version 1.7.31

Version Description

  • Update language template file and extension
  • Remove StumbleUpon
Download this release

Release Info

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

Code changes from version 1.7.30 to 1.7.31

README.txt CHANGED
@@ -4,7 +4,7 @@ Tags: buttons, share, icons, social media, share buttons, sharing, share button,
4
  Requires at least: 3.7
5
  Tested up to: 5.0
6
  Requires PHP: 5.2
7
- Stable tag: 1.7.30
8
 
9
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
10
 
@@ -76,7 +76,7 @@ See also:
76
  * The <a href="https://www.addtoany.com/buttons/">share buttons</a> for all platforms
77
  * The <a href="https://www.addtoany.com/buttons/for/wordpress_com">share buttons for WordPress.com</a>
78
 
79
- <a href="https://www.addtoany.com/blog/">AddToAny Blog</a> | <a href="https://www.addtoany.com/privacy">Privacy Policy</a>
80
 
81
  == Installation ==
82
 
@@ -350,6 +350,10 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
350
 
351
  == Changelog ==
352
 
 
 
 
 
353
  = 1.7.30 =
354
  * Fix issue where the "Show count" checkbox was unavailable for some services in settings
355
 
@@ -987,6 +991,9 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
987
 
988
  == Upgrade Notice ==
989
 
 
 
 
990
  = 1.7.28 =
991
  New floating options! Hide a bar until the page is scrolled past a header. Hide a bar where it would overlap a footer. Center your floating horizontal bar, too.
992
 
4
  Requires at least: 3.7
5
  Tested up to: 5.0
6
  Requires PHP: 5.2
7
+ Stable tag: 1.7.31
8
 
9
  Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
10
 
76
  * The <a href="https://www.addtoany.com/buttons/">share buttons</a> for all platforms
77
  * The <a href="https://www.addtoany.com/buttons/for/wordpress_com">share buttons for WordPress.com</a>
78
 
79
+ <a href="https://www.addtoany.com/blog/">AddToAny Blog</a> | <a href="https://www.addtoany.com/privacy">Privacy Policy</a> [](http://coderisk.com/wp/plugin/add-to-any/RIPS-zO8M1_NDqs)
80
 
81
  == Installation ==
82
 
350
 
351
  == Changelog ==
352
 
353
+ = 1.7.31 =
354
+ * Update language template file and extension
355
+ * Remove StumbleUpon
356
+
357
  = 1.7.30 =
358
  * Fix issue where the "Show count" checkbox was unavailable for some services in settings
359
 
991
 
992
  == Upgrade Notice ==
993
 
994
+ = 1.7.31 =
995
+ Using the Facebook Like button? You can enable its counter by clicking the down arrow below the Facebook Like button in AddToAny settings. For accurate counts when you enable [AddToAny Share Count Recovery](https://www.addtoany.com/blog/fix-share-counts-after-https-domain-url-change/), switch to AddToAny's standard Facebook share button instead of the Like button, because the Facebook Like button does not offer a way for previous counts to be recovered.
996
+
997
  = 1.7.28 =
998
  New floating options! Hide a bar until the page is scrolled past a header. Hide a bar where it would overlap a footer. Center your floating horizontal bar, too.
999
 
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.30
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
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.31
7
  Author: AddToAny
8
  Author URI: https://www.addtoany.com/
9
  Text Domain: add-to-any
addtoany.admin.php CHANGED
@@ -1002,8 +1002,9 @@ function A2A_SHARE_SAVE_admin_head() {
1002
 
1003
  if (jQuery('#addtoany_services_sortable li').not('.dummy').length == 0)
1004
  jQuery('#addtoany_services_sortable').find('.dummy').hide();
1005
-
1006
- if (this_service_is_special) {
 
1007
  // Common "Show count" for facebook, pinterest, pinterest_pin, etc.
1008
  if (service_options[this_service_name] && service_options[this_service_name].show_count) {
1009
  checked = ' checked="checked"';
1002
 
1003
  if (jQuery('#addtoany_services_sortable li').not('.dummy').length == 0)
1004
  jQuery('#addtoany_services_sortable').find('.dummy').hide();
1005
+
1006
+ // If special service that has special options
1007
+ if ( this_service_is_special && jQuery.inArray( this_service_name, ['twitter_tweet', 'google_plusone', 'google_plus_share'] ) === -1 ) {
1008
  // Common "Show count" for facebook, pinterest, pinterest_pin, etc.
1009
  if (service_options[this_service_name] && service_options[this_service_name].show_count) {
1010
  checked = ' checked="checked"';
addtoany.services.php CHANGED
@@ -387,11 +387,6 @@ $A2A_SHARE_SAVE_services = array(
387
  "icon" => "stocktwits",
388
  "color" => "40576F",
389
  ),
390
- "stumbleupon" => array(
391
- "name" => "StumbleUpon",
392
- "icon" => "stumbleupon",
393
- "color" => "EF4E23",
394
- ),
395
  "svejo" => array(
396
  "name" => "Svejo",
397
  "icon" => "svejo",
387
  "icon" => "stocktwits",
388
  "color" => "40576F",
389
  ),
 
 
 
 
 
390
  "svejo" => array(
391
  "name" => "Svejo",
392
  "icon" => "svejo",
icons/stumbleupon.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M16.97 14.245l1.25.583 1.865-.557v-1.29A4.088 4.088 0 0 0 16 9.01a4.089 4.089 0 0 0-4.085 3.943v5.912a.969.969 0 0 1-1.937 0V16.36H6.846v2.538a4.093 4.093 0 0 0 4.092 4.093c2.242 0 4.06-1.8 4.09-4.03l.005-5.84a.97.97 0 0 1 1.94 0v1.127h-.004zm5.05 2.114v2.62a.97.97 0 1 1-1.938 0v-2.57l-1.864.555-1.25-.583v2.552a4.093 4.093 0 0 0 8.186-.036v-2.54H22.02z"/></svg>
 
languages/add-to-any.mo DELETED
Binary file
languages/{add-to-any.po → add-to-any.pot} RENAMED
@@ -1,306 +1,271 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: add-to-any\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-09 00:12-0800\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Pat <pat@example.com>\n"
8
- "Language-Team: \n"
9
  "Language: en_US\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
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: __assets/addtoany.admin.snippet.php:35
20
- #: __assets/addtoany.admin.snippet.php:58
21
- #: __assets/addtoany.admin.snippet.php:71 addtoany.admin.php:24
22
- msgid "Show sharing buttons."
23
- msgstr ""
24
-
25
- #: add-to-any.php:561 addtoany.admin.php:296 addtoany.admin.php:489
26
- #: addtoany.admin.php:491 addtoany.admin.php:494 addtoany.admin.php:496
27
- #: addtoany.admin.php:525
28
  msgid "Share"
29
  msgstr ""
30
 
31
- #: add-to-any.php:562
32
  msgid "Save"
33
  msgstr ""
34
 
35
- #: add-to-any.php:563
36
  msgid "Subscribe"
37
  msgstr ""
38
 
39
- #: add-to-any.php:564
40
  msgid "Email"
41
  msgstr ""
42
 
43
- #: add-to-any.php:565
44
  msgid "Bookmark"
45
  msgstr ""
46
 
47
- #: add-to-any.php:566
48
  msgid "Show all"
49
  msgstr ""
50
 
51
- #: add-to-any.php:567
52
  msgid "Show less"
53
  msgstr ""
54
 
55
- #: add-to-any.php:568
56
  msgid "Find service(s)"
57
  msgstr ""
58
 
59
- #: add-to-any.php:569
60
  msgid "Instantly find any service to add to"
61
  msgstr ""
62
 
63
- #: add-to-any.php:570
64
  msgid "Powered by"
65
  msgstr ""
66
 
67
- #: add-to-any.php:571
68
  msgid "Share via email"
69
  msgstr ""
70
 
71
- #: add-to-any.php:572
72
  msgid "Subscribe via email"
73
  msgstr ""
74
 
75
- #: add-to-any.php:573
76
  msgid "Bookmark in your browser"
77
  msgstr ""
78
 
79
- #: add-to-any.php:574
80
  msgid "Press Ctrl+D or \\u2318+D to bookmark this page"
81
  msgstr ""
82
 
83
- #: add-to-any.php:575
84
  msgid "Add to your favorites"
85
  msgstr ""
86
 
87
- #: add-to-any.php:576
88
  msgid "Send from any email address or email program"
89
  msgstr ""
90
 
91
- #: add-to-any.php:577
92
  msgid "Email program"
93
  msgstr ""
94
 
95
- #: add-to-any.php:578
96
  msgid "More&#8230;"
97
  msgstr ""
98
 
99
- #: add-to-any.php:1053
100
- #, php-format
101
- msgid ""
102
- "Unable to create directory %s. Is its parent directory writable by the "
103
- "server?"
104
  msgstr ""
105
 
106
- #: add-to-any.php:1096
107
- msgid "Share/Save"
108
  msgstr ""
109
 
110
- #: add-to-any.php:1096 add-to-any.php:1130
111
  msgid "Settings"
112
  msgstr ""
113
 
114
- #: add-to-any.php:1097 addtoany.admin.php:10
115
- msgid "AddToAny"
116
- msgstr ""
117
-
118
- #: addtoany.admin.php:346
119
- msgid "Settings saved."
120
  msgstr ""
121
 
122
- #: addtoany.admin.php:367
123
  msgid "bottom"
124
  msgstr ""
125
 
126
- #: addtoany.admin.php:371
127
  msgid "top"
128
  msgstr ""
129
 
130
- #: addtoany.admin.php:375
131
  msgid "top &amp; bottom"
132
  msgstr ""
133
 
134
- #: addtoany.admin.php:402
135
- msgid "AddToAny Share Settings"
136
- msgstr ""
137
-
138
- #: addtoany.admin.php:417
139
- msgid "Icon Size"
140
- msgstr ""
141
-
142
- #: addtoany.admin.php:419
143
- msgid "Large"
144
- msgstr ""
145
-
146
- #: addtoany.admin.php:421
147
- msgid "Small"
148
  msgstr ""
149
 
150
- #: addtoany.admin.php:423
151
- msgid "Custom"
152
  msgstr ""
153
 
154
- #: addtoany.admin.php:430
155
- msgid "Standalone Buttons"
156
  msgstr ""
157
 
158
- #: addtoany.admin.php:435
159
  msgid ""
160
  "Choose the services you want below. &nbsp;Click a chosen service again to "
161
  "remove. &nbsp;Reorder services by dragging and dropping as they appear above."
162
  msgstr ""
163
 
164
- #: addtoany.admin.php:476
165
  msgid "Universal Button"
166
  msgstr ""
167
 
168
- #: addtoany.admin.php:517
169
  msgid "Image URL"
170
  msgstr ""
171
 
172
- #: addtoany.admin.php:523
173
  msgid "Text only"
174
  msgstr ""
175
 
176
- #: addtoany.admin.php:528
177
  msgid ""
178
  "This option will disable universal sharing. Are you sure you want to disable "
179
  "universal sharing?"
180
  msgstr ""
181
 
182
- #: addtoany.admin.php:529 addtoany.admin.php:713 addtoany.admin.php:749
183
  msgid "None"
184
  msgstr ""
185
 
186
- #: addtoany.admin.php:542
187
  msgid "Sharing Header"
188
  msgstr ""
189
 
190
- #: addtoany.admin.php:551 addtoany.admin.php:707 addtoany.admin.php:743
191
  msgid "Placement"
192
  msgstr ""
193
 
194
- #: addtoany.admin.php:556
195
  #, php-format
196
  msgid "Display at the %s of posts"
197
  msgstr ""
198
 
199
- #: addtoany.admin.php:564
200
  #, php-format
201
  msgid "Display at the %s of posts on the front page"
202
  msgstr ""
203
 
204
- #: addtoany.admin.php:572
205
  #, php-format
206
  msgid "Display at the %s of posts on archive pages"
207
  msgstr ""
208
 
209
- #: addtoany.admin.php:580
210
  #, php-format
211
  msgid "Display at the %s of posts in the feed"
212
  msgstr ""
213
 
214
- #: addtoany.admin.php:587
215
  #, php-format
216
  msgid "Display at the %s of excerpts"
217
  msgstr ""
218
 
219
- #: addtoany.admin.php:592
220
  #, php-format
221
  msgid "Display at the %s of pages"
222
  msgstr ""
223
 
224
- #: addtoany.admin.php:604
 
 
 
 
 
225
  #, php-format
226
  msgid "Display at the %s of %s"
227
  msgstr ""
228
 
229
- #: addtoany.admin.php:610
230
  msgid ""
231
  "See <a href=\"widgets.php\" title=\"Theme Widgets\">Widgets</a> and <a href="
232
- "\"options-general.php?page=add-to-any.php&action=floating\" title=\"AddToAny "
233
  "Floating Share Buttons\">Floating</a> for additional placement options. For "
234
- "advanced placement, see <a href=\"http://wordpress.org/plugins/add-to-any/"
235
  "faq/\">the FAQs</a>."
236
  msgstr ""
237
 
238
- #: addtoany.admin.php:616
239
  msgid "Menu Options"
240
  msgstr ""
241
 
242
- #: addtoany.admin.php:620
243
  msgid ""
244
  "Only show the universal share menu when the user <em>clicks</em> the "
245
  "universal share button"
246
  msgstr ""
247
 
248
- #: addtoany.admin.php:625
249
- msgid "Show the title of the page within the universal share menu"
250
- msgstr ""
251
-
252
- #: addtoany.admin.php:628
253
- msgid ""
254
- "You can use AddToAny's Menu Styler to customize the colors of your universal "
255
- "share menu. When you're done, be sure to paste the generated code in the <a "
256
- "href=\"#\" onclick=\"document."
257
- "getElementById('A2A_SHARE_SAVE_additional_js_variables').focus();return false"
258
- "\">Additional JavaScript</a> box below."
259
- msgstr ""
260
-
261
- #: addtoany.admin.php:631
262
- msgid "Open the AddToAny Menu Styler in a new window"
263
- msgstr ""
264
-
265
- #: addtoany.admin.php:631
266
- msgid "Open Menu Styler"
267
- msgstr ""
268
-
269
- #: addtoany.admin.php:637
270
  msgid "Additional JavaScript"
271
  msgstr ""
272
 
273
- #: addtoany.admin.php:641
274
- msgid "Paste the code from AddToAny's Menu Styler in the box below!"
275
- msgstr ""
276
-
277
- #: addtoany.admin.php:645
278
  msgid "Below you can add special JavaScript code for AddToAny."
279
  msgstr ""
280
 
281
- #: addtoany.admin.php:646 addtoany.admin.php:658
282
  msgid ""
283
  "Advanced users should explore AddToAny's <a href=\"https://www.addtoany.com/"
284
  "buttons/customize/wordpress\" target=\"_blank\">additional options</a>."
285
  msgstr ""
286
 
287
- #: addtoany.admin.php:654
288
  msgid "Additional CSS"
289
  msgstr ""
290
 
291
- #: addtoany.admin.php:657
292
  msgid "Below you can add special CSS code for AddToAny."
293
  msgstr ""
294
 
295
- #: addtoany.admin.php:666
296
  msgid "Advanced Options"
297
  msgstr ""
298
 
299
- #: addtoany.admin.php:670
300
  msgid "Use custom icons. URL:"
301
  msgstr ""
302
 
303
- #: addtoany.admin.php:675
 
 
 
 
 
 
 
 
 
 
 
 
304
  msgid ""
305
  "Specify the URL of the directory containing your custom icons. For example, "
306
  "a URL of <code>//example.com/blog/uploads/addtoany/icons/custom/</code> "
@@ -312,21 +277,11 @@ msgid ""
312
  "return false\">above</a>)."
313
  msgstr ""
314
 
315
- #: addtoany.admin.php:680
316
- msgid "Use default CSS"
317
- msgstr ""
318
-
319
- #: addtoany.admin.php:683
320
- msgid ""
321
- "Only disable AddToAny's default stylesheet if you already have the necessary "
322
- "CSS code applied to your AddToAny buttons."
323
- msgstr ""
324
-
325
- #: addtoany.admin.php:688
326
  msgid "Cache AddToAny locally with daily cache updates"
327
  msgstr ""
328
 
329
- #: addtoany.admin.php:691
330
  msgid ""
331
  "Most sites should not use this option. By default, AddToAny loads "
332
  "asynchronously and most efficiently. Since many visitors will have AddToAny "
@@ -336,113 +291,125 @@ msgid ""
336
  "addtoany</code> directory."
337
  msgstr ""
338
 
339
- #: addtoany.admin.php:701
340
  msgid ""
341
  "AddToAny &quot;floating&quot; share buttons stay in a fixed position even "
342
  "when the user scrolls."
343
  msgstr ""
344
 
345
- #: addtoany.admin.php:702
346
- msgid ""
347
- "Large icons from your currently selected buttons are displayed in your "
348
- "floating bar(s). 3rd party buttons (Like, Tweet, etc.) are not displayed."
349
- msgstr ""
350
-
351
- #: addtoany.admin.php:704
352
  msgid "Vertical Buttons"
353
  msgstr ""
354
 
355
- #: addtoany.admin.php:709 addtoany.admin.php:745
356
  msgid "Left docked"
357
  msgstr ""
358
 
359
- #: addtoany.admin.php:711 addtoany.admin.php:747
360
  msgid "Right docked"
361
  msgstr ""
362
 
363
- #: addtoany.admin.php:717 addtoany.admin.php:753
 
 
 
 
364
  msgid "Responsiveness"
365
  msgstr ""
366
 
367
- #: addtoany.admin.php:727 addtoany.admin.php:763
368
  msgid "Position"
369
  msgstr ""
370
 
371
- #: addtoany.admin.php:733 addtoany.admin.php:769
372
  msgid "Offset"
373
  msgstr ""
374
 
375
- #: addtoany.admin.php:740
 
 
 
 
 
 
 
 
376
  msgid "Horizontal Buttons"
377
  msgstr ""
378
 
379
- #: addtoany.admin.php:781
 
 
 
 
380
  msgid "Save Changes"
381
  msgstr ""
382
 
383
- #: addtoany.admin.php:782
384
  msgid "Are you sure you want to delete all AddToAny options?"
385
  msgstr ""
386
 
387
- #: addtoany.admin.php:782
388
  msgid "Reset"
389
  msgstr ""
390
 
391
- #: addtoany.admin.php:787
392
  msgid "Like this plugin?"
393
  msgstr ""
394
 
395
- #: addtoany.admin.php:788
396
  msgid ""
397
- "<a href=\"https://wordpress.org/support/view/plugin-reviews/add-to-"
398
- "any#postform\" target=\"_blank\">Give it a 5 star rating</a> on WordPress."
399
- "org."
400
  msgstr ""
401
 
402
- #: addtoany.admin.php:789
403
  msgid ""
404
- "<a href=\"https://www.addtoany.com/share_save#title=WordPress%20Share"
405
- "%20Plugin%20by%20AddToAny.com&amp;url=http%3A%2F%2Fwordpress.org%2Fplugins"
406
- "%2Fadd-to-any%2F\">Share it</a> and follow <a href=\"https://www.addtoany."
407
- "com/\">AddToAny</a> on <a href=\"https://www.facebook.com/AddToAny\" target="
408
  "\"_blank\">Facebook</a> &amp; <a href=\"https://twitter.com/AddToAny\" "
409
  "target=\"_blank\">Twitter</a>."
410
  msgstr ""
411
 
412
- #: addtoany.admin.php:791
413
  msgid "Need support?"
414
  msgstr ""
415
 
416
- #: addtoany.admin.php:792
417
  msgid ""
418
- "See the <a href=\"http://wordpress.org/extend/plugins/add-to-any/faq/"
419
- "\">FAQs</a>."
420
  msgstr ""
421
 
422
- #: addtoany.admin.php:793
423
  msgid ""
424
- "Search the <a href=\"http://wordpress.org/tags/add-to-any\">support forums</"
425
- "a>."
426
  msgstr ""
427
 
428
- #: addtoany.admin.php:1094
429
  msgid "Add/Remove Services"
430
  msgstr ""
431
 
432
- #: addtoany.widgets.php:75 addtoany.widgets.php:173
433
  msgid "Title:"
434
  msgstr ""
435
 
436
- #: addtoany.widgets.php:79 addtoany.widgets.php:189
437
  msgid "AddToAny Settings"
438
  msgstr ""
439
 
440
- #: addtoany.widgets.php:179
 
 
 
 
441
  #, php-format
442
  msgid "%s URL:"
443
  msgstr ""
444
 
445
- #: addtoany.widgets.php:179
446
  #, php-format
447
  msgid "%s ID:"
448
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: AddToAny\n"
4
+ "POT-Creation-Date: 2018-09-16 21:55-0700\n"
5
+ "PO-Revision-Date: 2018-09-16 21:57-0700\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: https://translate.wordpress.org/projects/wp-plugins/add-to-"
8
+ "any\n"
9
  "Language: en_US\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.1.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: add-to-any.php:552 addtoany.admin.php:372 addtoany.admin.php:556
 
 
 
 
 
 
 
 
20
  msgid "Share"
21
  msgstr ""
22
 
23
+ #: add-to-any.php:553
24
  msgid "Save"
25
  msgstr ""
26
 
27
+ #: add-to-any.php:554
28
  msgid "Subscribe"
29
  msgstr ""
30
 
31
+ #: add-to-any.php:555
32
  msgid "Email"
33
  msgstr ""
34
 
35
+ #: add-to-any.php:556
36
  msgid "Bookmark"
37
  msgstr ""
38
 
39
+ #: add-to-any.php:557
40
  msgid "Show all"
41
  msgstr ""
42
 
43
+ #: add-to-any.php:558
44
  msgid "Show less"
45
  msgstr ""
46
 
47
+ #: add-to-any.php:559
48
  msgid "Find service(s)"
49
  msgstr ""
50
 
51
+ #: add-to-any.php:560
52
  msgid "Instantly find any service to add to"
53
  msgstr ""
54
 
55
+ #: add-to-any.php:561
56
  msgid "Powered by"
57
  msgstr ""
58
 
59
+ #: add-to-any.php:562
60
  msgid "Share via email"
61
  msgstr ""
62
 
63
+ #: add-to-any.php:563
64
  msgid "Subscribe via email"
65
  msgstr ""
66
 
67
+ #: add-to-any.php:564
68
  msgid "Bookmark in your browser"
69
  msgstr ""
70
 
71
+ #: add-to-any.php:565
72
  msgid "Press Ctrl+D or \\u2318+D to bookmark this page"
73
  msgstr ""
74
 
75
+ #: add-to-any.php:566
76
  msgid "Add to your favorites"
77
  msgstr ""
78
 
79
+ #: add-to-any.php:567
80
  msgid "Send from any email address or email program"
81
  msgstr ""
82
 
83
+ #: add-to-any.php:568
84
  msgid "Email program"
85
  msgstr ""
86
 
87
+ #: add-to-any.php:569
88
  msgid "More&#8230;"
89
  msgstr ""
90
 
91
+ #: add-to-any.php:1215 addtoany.admin.php:439
92
+ msgid "AddToAny Share Settings"
 
 
 
93
  msgstr ""
94
 
95
+ #: add-to-any.php:1216 addtoany.admin.php:11
96
+ msgid "AddToAny"
97
  msgstr ""
98
 
99
+ #: add-to-any.php:1245
100
  msgid "Settings"
101
  msgstr ""
102
 
103
+ #: addtoany.admin.php:44
104
+ msgid "Show sharing buttons."
 
 
 
 
105
  msgstr ""
106
 
107
+ #: addtoany.admin.php:149
108
  msgid "bottom"
109
  msgstr ""
110
 
111
+ #: addtoany.admin.php:153
112
  msgid "top"
113
  msgstr ""
114
 
115
+ #: addtoany.admin.php:157
116
  msgid "top &amp; bottom"
117
  msgstr ""
118
 
119
+ #: addtoany.admin.php:423
120
+ msgid "Settings saved."
 
 
 
 
 
 
 
 
 
 
 
 
121
  msgstr ""
122
 
123
+ #: addtoany.admin.php:454
124
+ msgid "Icon Style"
125
  msgstr ""
126
 
127
+ #: addtoany.admin.php:481
128
+ msgid "Share Buttons"
129
  msgstr ""
130
 
131
+ #: addtoany.admin.php:486
132
  msgid ""
133
  "Choose the services you want below. &nbsp;Click a chosen service again to "
134
  "remove. &nbsp;Reorder services by dragging and dropping as they appear above."
135
  msgstr ""
136
 
137
+ #: addtoany.admin.php:535
138
  msgid "Universal Button"
139
  msgstr ""
140
 
141
+ #: addtoany.admin.php:547
142
  msgid "Image URL"
143
  msgstr ""
144
 
145
+ #: addtoany.admin.php:554
146
  msgid "Text only"
147
  msgstr ""
148
 
149
+ #: addtoany.admin.php:560
150
  msgid ""
151
  "This option will disable universal sharing. Are you sure you want to disable "
152
  "universal sharing?"
153
  msgstr ""
154
 
155
+ #: addtoany.admin.php:561 addtoany.admin.php:742 addtoany.admin.php:817
156
  msgid "None"
157
  msgstr ""
158
 
159
+ #: addtoany.admin.php:576
160
  msgid "Sharing Header"
161
  msgstr ""
162
 
163
+ #: addtoany.admin.php:585 addtoany.admin.php:734 addtoany.admin.php:809
164
  msgid "Placement"
165
  msgstr ""
166
 
167
+ #: addtoany.admin.php:590
168
  #, php-format
169
  msgid "Display at the %s of posts"
170
  msgstr ""
171
 
172
+ #: addtoany.admin.php:598
173
  #, php-format
174
  msgid "Display at the %s of posts on the front page"
175
  msgstr ""
176
 
177
+ #: addtoany.admin.php:606
178
  #, php-format
179
  msgid "Display at the %s of posts on archive pages"
180
  msgstr ""
181
 
182
+ #: addtoany.admin.php:614
183
  #, php-format
184
  msgid "Display at the %s of posts in the feed"
185
  msgstr ""
186
 
187
+ #: addtoany.admin.php:621
188
  #, php-format
189
  msgid "Display at the %s of excerpts"
190
  msgstr ""
191
 
192
+ #: addtoany.admin.php:626
193
  #, php-format
194
  msgid "Display at the %s of pages"
195
  msgstr ""
196
 
197
+ #: addtoany.admin.php:633
198
+ #, php-format
199
+ msgid "Display at the %s of media pages"
200
+ msgstr ""
201
+
202
+ #: addtoany.admin.php:645
203
  #, php-format
204
  msgid "Display at the %s of %s"
205
  msgstr ""
206
 
207
+ #: addtoany.admin.php:651
208
  msgid ""
209
  "See <a href=\"widgets.php\" title=\"Theme Widgets\">Widgets</a> and <a href="
210
+ "\"options-general.php?page=addtoany&action=floating\" title=\"AddToAny "
211
  "Floating Share Buttons\">Floating</a> for additional placement options. For "
212
+ "advanced placement, see <a href=\"https://wordpress.org/plugins/add-to-any/"
213
  "faq/\">the FAQs</a>."
214
  msgstr ""
215
 
216
+ #: addtoany.admin.php:657
217
  msgid "Menu Options"
218
  msgstr ""
219
 
220
+ #: addtoany.admin.php:661
221
  msgid ""
222
  "Only show the universal share menu when the user <em>clicks</em> the "
223
  "universal share button"
224
  msgstr ""
225
 
226
+ #: addtoany.admin.php:667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  msgid "Additional JavaScript"
228
  msgstr ""
229
 
230
+ #: addtoany.admin.php:670
 
 
 
 
231
  msgid "Below you can add special JavaScript code for AddToAny."
232
  msgstr ""
233
 
234
+ #: addtoany.admin.php:671 addtoany.admin.php:683
235
  msgid ""
236
  "Advanced users should explore AddToAny's <a href=\"https://www.addtoany.com/"
237
  "buttons/customize/wordpress\" target=\"_blank\">additional options</a>."
238
  msgstr ""
239
 
240
+ #: addtoany.admin.php:679
241
  msgid "Additional CSS"
242
  msgstr ""
243
 
244
+ #: addtoany.admin.php:682
245
  msgid "Below you can add special CSS code for AddToAny."
246
  msgstr ""
247
 
248
+ #: addtoany.admin.php:691
249
  msgid "Advanced Options"
250
  msgstr ""
251
 
252
+ #: addtoany.admin.php:696
253
  msgid "Use custom icons. URL:"
254
  msgstr ""
255
 
256
+ #: addtoany.admin.php:700
257
+ msgid "Filename extension"
258
+ msgstr ""
259
+
260
+ #: addtoany.admin.php:702
261
+ msgid "Width"
262
+ msgstr ""
263
+
264
+ #: addtoany.admin.php:704
265
+ msgid "Height"
266
+ msgstr ""
267
+
268
+ #: addtoany.admin.php:707
269
  msgid ""
270
  "Specify the URL of the directory containing your custom icons. For example, "
271
  "a URL of <code>//example.com/blog/uploads/addtoany/icons/custom/</code> "
277
  "return false\">above</a>)."
278
  msgstr ""
279
 
280
+ #: addtoany.admin.php:714
 
 
 
 
 
 
 
 
 
 
281
  msgid "Cache AddToAny locally with daily cache updates"
282
  msgstr ""
283
 
284
+ #: addtoany.admin.php:717
285
  msgid ""
286
  "Most sites should not use this option. By default, AddToAny loads "
287
  "asynchronously and most efficiently. Since many visitors will have AddToAny "
291
  "addtoany</code> directory."
292
  msgstr ""
293
 
294
+ #: addtoany.admin.php:729
295
  msgid ""
296
  "AddToAny &quot;floating&quot; share buttons stay in a fixed position even "
297
  "when the user scrolls."
298
  msgstr ""
299
 
300
+ #: addtoany.admin.php:731
 
 
 
 
 
 
301
  msgid "Vertical Buttons"
302
  msgstr ""
303
 
304
+ #: addtoany.admin.php:736 addtoany.admin.php:811
305
  msgid "Left docked"
306
  msgstr ""
307
 
308
+ #: addtoany.admin.php:738 addtoany.admin.php:813
309
  msgid "Right docked"
310
  msgstr ""
311
 
312
+ #: addtoany.admin.php:740
313
+ msgid "Attach to content"
314
+ msgstr ""
315
+
316
+ #: addtoany.admin.php:753 addtoany.admin.php:821
317
  msgid "Responsiveness"
318
  msgstr ""
319
 
320
+ #: addtoany.admin.php:775 addtoany.admin.php:843
321
  msgid "Position"
322
  msgstr ""
323
 
324
+ #: addtoany.admin.php:781 addtoany.admin.php:849
325
  msgid "Offset"
326
  msgstr ""
327
 
328
+ #: addtoany.admin.php:787 addtoany.admin.php:855
329
+ msgid "Icon Size"
330
+ msgstr ""
331
+
332
+ #: addtoany.admin.php:793 addtoany.admin.php:861
333
+ msgid "Background"
334
+ msgstr ""
335
+
336
+ #: addtoany.admin.php:806
337
  msgid "Horizontal Buttons"
338
  msgstr ""
339
 
340
+ #: addtoany.admin.php:815
341
+ msgid "Center docked"
342
+ msgstr ""
343
+
344
+ #: addtoany.admin.php:879
345
  msgid "Save Changes"
346
  msgstr ""
347
 
348
+ #: addtoany.admin.php:880
349
  msgid "Are you sure you want to delete all AddToAny options?"
350
  msgstr ""
351
 
352
+ #: addtoany.admin.php:880
353
  msgid "Reset"
354
  msgstr ""
355
 
356
+ #: addtoany.admin.php:885
357
  msgid "Like this plugin?"
358
  msgstr ""
359
 
360
+ #: addtoany.admin.php:886
361
  msgid ""
362
+ "<a href=\"https://wordpress.org/support/plugin/add-to-any/reviews/#new-post"
363
+ "\" target=\"_blank\">Give it a 5 star rating</a> on WordPress.org."
 
364
  msgstr ""
365
 
366
+ #: addtoany.admin.php:887
367
  msgid ""
368
+ "<a href=\"https://www.addtoany.com/share#title=WordPress%20Share%20Plugin"
369
+ "%20by%20AddToAny.com&amp;url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fadd-to-"
370
+ "any%2F\">Share it</a> and follow <a href=\"https://www.addtoany.com/"
371
+ "\">AddToAny</a> on <a href=\"https://www.facebook.com/AddToAny\" target="
372
  "\"_blank\">Facebook</a> &amp; <a href=\"https://twitter.com/AddToAny\" "
373
  "target=\"_blank\">Twitter</a>."
374
  msgstr ""
375
 
376
+ #: addtoany.admin.php:889
377
  msgid "Need support?"
378
  msgstr ""
379
 
380
+ #: addtoany.admin.php:890
381
  msgid ""
382
+ "See the <a href=\"https://wordpress.org/plugins/add-to-any/faq/\">FAQs</a>."
 
383
  msgstr ""
384
 
385
+ #: addtoany.admin.php:891
386
  msgid ""
387
+ "Search the <a href=\"https://wordpress.org/support/plugin/add-to-any"
388
+ "\">support forums</a>."
389
  msgstr ""
390
 
391
+ #: addtoany.admin.php:1140
392
  msgid "Add/Remove Services"
393
  msgstr ""
394
 
395
+ #: addtoany.widgets.php:85 addtoany.widgets.php:212
396
  msgid "Title:"
397
  msgstr ""
398
 
399
+ #: addtoany.widgets.php:89 addtoany.widgets.php:233
400
  msgid "AddToAny Settings"
401
  msgstr ""
402
 
403
+ #: addtoany.widgets.php:216
404
+ msgid "Icon Size:"
405
+ msgstr ""
406
+
407
+ #: addtoany.widgets.php:223
408
  #, php-format
409
  msgid "%s URL:"
410
  msgstr ""
411
 
412
+ #: addtoany.widgets.php:223
413
  #, php-format
414
  msgid "%s ID:"
415
  msgstr ""