Version Description
2017/11/01 =
Removed
rel="nofollow"
option and applied automatically to all links.
Download this release
Release Info
Developer | claudiosanches |
Plugin | Social Count Plus |
Version | 3.4.1 |
Comparing to | |
See all releases |
Code changes from version 3.4.0 to 3.4.1
- includes/abstracts/abstract-social-count-plus-counter.php +1 -2
- includes/admin/class-social-count-plus-admin.php +0 -5
- includes/counters/class-social-count-plus-comments-counter.php +0 -1
- includes/counters/class-social-count-plus-posts-counter.php +0 -1
- includes/counters/class-social-count-plus-users-counter.php +0 -1
- languages/social-count-plus.pot +41 -46
- readme.txt +7 -3
- social-count-plus.php +2 -2
includes/abstracts/abstract-social-count-plus-counter.php
CHANGED
@@ -69,11 +69,10 @@ abstract class Social_Count_Plus_Counter {
|
|
69 |
*/
|
70 |
protected function get_view_li( $url, $count, $label, $color, $settings ) {
|
71 |
$target_blank = isset( $settings['target_blank'] ) ? ' target="_blank"' : '';
|
72 |
-
$rel_nofollow = isset( $settings['rel_nofollow'] ) ? ' rel="nofollow"' : '';
|
73 |
$styles = ! empty( $color ) ? ' style="color: ' . $color . ' !important;"' : '';
|
74 |
|
75 |
$html = sprintf( '<li class="count-%s">', $this->id );
|
76 |
-
$html .= sprintf( '<a class="icon" href="%s"%s
|
77 |
$html .= '<span class="items">';
|
78 |
$html .= sprintf( '<span class="count"%s>%s</span>', $styles, apply_filters( 'social_count_plus_number_format', $count ) );
|
79 |
$html .= sprintf( '<span class="label"%s>%s</span>', $styles, apply_filters( 'social_count_plus_label', $label, $this->id ) );
|
69 |
*/
|
70 |
protected function get_view_li( $url, $count, $label, $color, $settings ) {
|
71 |
$target_blank = isset( $settings['target_blank'] ) ? ' target="_blank"' : '';
|
|
|
72 |
$styles = ! empty( $color ) ? ' style="color: ' . $color . ' !important;"' : '';
|
73 |
|
74 |
$html = sprintf( '<li class="count-%s">', $this->id );
|
75 |
+
$html .= sprintf( '<a class="icon" href="%s" rel="nofollow noopener noreferrer"%s></a>', esc_url( $url ), $target_blank );
|
76 |
$html .= '<span class="items">';
|
77 |
$html .= sprintf( '<span class="count"%s>%s</span>', $styles, apply_filters( 'social_count_plus_number_format', $count ) );
|
78 |
$html .= sprintf( '<span class="label"%s>%s</span>', $styles, apply_filters( 'social_count_plus_label', $label, $this->id ) );
|
includes/admin/class-social-count-plus-admin.php
CHANGED
@@ -427,11 +427,6 @@ class Social_Count_Plus_Admin {
|
|
427 |
'type' => 'checkbox',
|
428 |
'description' => sprintf( __( 'This option add %s in all counters URLs.', 'social-count-plus' ), '<code>target="_blank"</code>' )
|
429 |
),
|
430 |
-
'rel_nofollow' => array(
|
431 |
-
'title' => __( 'Add nofollow in URLs', 'social-count-plus' ),
|
432 |
-
'type' => 'checkbox',
|
433 |
-
'description' => sprintf( __( 'This option add %s in all counters URLs.', 'social-count-plus' ), '<code>rel="nofollow"</code>' )
|
434 |
-
),
|
435 |
)
|
436 |
)
|
437 |
),
|
427 |
'type' => 'checkbox',
|
428 |
'description' => sprintf( __( 'This option add %s in all counters URLs.', 'social-count-plus' ), '<code>target="_blank"</code>' )
|
429 |
),
|
|
|
|
|
|
|
|
|
|
|
430 |
)
|
431 |
)
|
432 |
),
|
includes/counters/class-social-count-plus-comments-counter.php
CHANGED
@@ -75,7 +75,6 @@ class Social_Count_Plus_Comments_Counter extends Social_Count_Plus_Counter {
|
|
75 |
$url = ! empty( $settings['comments_url'] ) ? $settings['comments_url'] : get_home_url();
|
76 |
|
77 |
unset( $settings['target_blank'] );
|
78 |
-
unset( $settings['rel_nofollow'] );
|
79 |
|
80 |
return $this->get_view_li( $url, $total, __( 'comments', 'social-count-plus' ), $text_color, $settings );
|
81 |
}
|
75 |
$url = ! empty( $settings['comments_url'] ) ? $settings['comments_url'] : get_home_url();
|
76 |
|
77 |
unset( $settings['target_blank'] );
|
|
|
78 |
|
79 |
return $this->get_view_li( $url, $total, __( 'comments', 'social-count-plus' ), $text_color, $settings );
|
80 |
}
|
includes/counters/class-social-count-plus-posts-counter.php
CHANGED
@@ -78,7 +78,6 @@ class Social_Count_Plus_Posts_Counter extends Social_Count_Plus_Counter {
|
|
78 |
$url = ! empty( $settings['posts_url'] ) ? $settings['posts_url'] : get_home_url();
|
79 |
|
80 |
unset( $settings['target_blank'] );
|
81 |
-
unset( $settings['rel_nofollow'] );
|
82 |
|
83 |
return $this->get_view_li( $url, $total, strtolower( $post_object->label ), $text_color, $settings );
|
84 |
}
|
78 |
$url = ! empty( $settings['posts_url'] ) ? $settings['posts_url'] : get_home_url();
|
79 |
|
80 |
unset( $settings['target_blank'] );
|
|
|
81 |
|
82 |
return $this->get_view_li( $url, $total, strtolower( $post_object->label ), $text_color, $settings );
|
83 |
}
|
includes/counters/class-social-count-plus-users-counter.php
CHANGED
@@ -76,7 +76,6 @@ class Social_Count_Plus_Users_Counter extends Social_Count_Plus_Counter {
|
|
76 |
$label = ! empty( $settings['users_label'] ) ? $settings['users_label'] : __( 'users', 'social-count-plus' );
|
77 |
|
78 |
unset( $settings['target_blank'] );
|
79 |
-
unset( $settings['rel_nofollow'] );
|
80 |
|
81 |
return $this->get_view_li( $url, $total, $label, $text_color, $settings );
|
82 |
}
|
76 |
$label = ! empty( $settings['users_label'] ) ? $settings['users_label'] : __( 'users', 'social-count-plus' );
|
77 |
|
78 |
unset( $settings['target_blank'] );
|
|
|
79 |
|
80 |
return $this->get_view_li( $url, $total, $label, $text_color, $settings );
|
81 |
}
|
languages/social-count-plus.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Social Count Plus 3.4.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -32,7 +32,7 @@ msgid ""
|
|
32 |
msgstr ""
|
33 |
|
34 |
#: includes/admin/class-social-count-plus-admin.php:76
|
35 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
36 |
msgid "Comments"
|
37 |
msgstr ""
|
38 |
|
@@ -47,7 +47,7 @@ msgid "URL"
|
|
47 |
msgstr ""
|
48 |
|
49 |
#: includes/admin/class-social-count-plus-admin.php:91
|
50 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
51 |
msgid "Facebook"
|
52 |
msgstr ""
|
53 |
|
@@ -82,7 +82,7 @@ msgid "Facebook App Secret"
|
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/admin/class-social-count-plus-admin.php:120
|
85 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
86 |
msgid "GitHub"
|
87 |
msgstr ""
|
88 |
|
@@ -99,7 +99,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
99 |
msgstr ""
|
100 |
|
101 |
#: includes/admin/class-social-count-plus-admin.php:134
|
102 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
103 |
msgid "Google+"
|
104 |
msgstr ""
|
105 |
|
@@ -134,7 +134,7 @@ msgid ""
|
|
134 |
msgstr ""
|
135 |
|
136 |
#: includes/admin/class-social-count-plus-admin.php:160
|
137 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
138 |
msgid "Instagram"
|
139 |
msgstr ""
|
140 |
|
@@ -167,7 +167,7 @@ msgid "Insert your Instagram Access Token."
|
|
167 |
msgstr ""
|
168 |
|
169 |
#: includes/admin/class-social-count-plus-admin.php:184
|
170 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
171 |
msgid "LinkedIn"
|
172 |
msgstr ""
|
173 |
|
@@ -192,7 +192,7 @@ msgid "Get your Access Token in %s."
|
|
192 |
msgstr ""
|
193 |
|
194 |
#: includes/admin/class-social-count-plus-admin.php:203
|
195 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
196 |
msgid "Pinterest"
|
197 |
msgstr ""
|
198 |
|
@@ -209,7 +209,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
209 |
msgstr ""
|
210 |
|
211 |
#: includes/admin/class-social-count-plus-admin.php:217
|
212 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
213 |
msgid "Posts"
|
214 |
msgstr ""
|
215 |
|
@@ -222,7 +222,7 @@ msgid "Post Type"
|
|
222 |
msgstr ""
|
223 |
|
224 |
#: includes/admin/class-social-count-plus-admin.php:237
|
225 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
226 |
msgid "SoundCloud"
|
227 |
msgstr ""
|
228 |
|
@@ -247,7 +247,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
247 |
msgstr ""
|
248 |
|
249 |
#: includes/admin/class-social-count-plus-admin.php:256
|
250 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
251 |
msgid "Steam"
|
252 |
msgstr ""
|
253 |
|
@@ -264,7 +264,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-social-count-plus-admin.php:270
|
267 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
268 |
msgid "Tumblr"
|
269 |
msgstr ""
|
270 |
|
@@ -297,7 +297,7 @@ msgid "Tumblr Token Secret"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-social-count-plus-admin.php:304
|
300 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
301 |
msgid "Twitch"
|
302 |
msgstr ""
|
303 |
|
@@ -322,7 +322,7 @@ msgid "Insert your Twitch Client ID."
|
|
322 |
msgstr ""
|
323 |
|
324 |
#: includes/admin/class-social-count-plus-admin.php:323
|
325 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
326 |
msgid "Twitter"
|
327 |
msgstr ""
|
328 |
|
@@ -355,7 +355,7 @@ msgid "Twitter Access token secret"
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: includes/admin/class-social-count-plus-admin.php:357
|
358 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
359 |
msgid "Users"
|
360 |
msgstr ""
|
361 |
|
@@ -377,7 +377,7 @@ msgid "users"
|
|
377 |
msgstr ""
|
378 |
|
379 |
#: includes/admin/class-social-count-plus-admin.php:382
|
380 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
381 |
msgid "Vimeo"
|
382 |
msgstr ""
|
383 |
|
@@ -394,7 +394,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
394 |
msgstr ""
|
395 |
|
396 |
#: includes/admin/class-social-count-plus-admin.php:396
|
397 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
398 |
msgid "YouTube"
|
399 |
msgstr ""
|
400 |
|
@@ -428,7 +428,7 @@ msgid ""
|
|
428 |
msgstr ""
|
429 |
|
430 |
#: includes/admin/class-social-count-plus-admin.php:423
|
431 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
432 |
#: includes/admin/views/html-settings-page.php:9
|
433 |
msgid "Settings"
|
434 |
msgstr ""
|
@@ -438,32 +438,27 @@ msgid "Open URLs in new tab/window"
|
|
438 |
msgstr ""
|
439 |
|
440 |
#: includes/admin/class-social-count-plus-admin.php:428
|
441 |
-
#: includes/admin/class-social-count-plus-admin.php:433
|
442 |
msgid "This option add %s in all counters URLs."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
446 |
-
msgid "Add nofollow in URLs"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: includes/admin/class-social-count-plus-admin.php:440
|
450 |
#: includes/admin/views/html-settings-page.php:9
|
451 |
msgid "Design"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
455 |
msgid "Layout Models"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
459 |
msgid "Text Color"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
463 |
msgid "Order"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
467 |
msgid "This option controls the order of the icons in the widget."
|
468 |
msgstr ""
|
469 |
|
@@ -471,62 +466,62 @@ msgstr ""
|
|
471 |
msgid "Social Count Plus"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
475 |
msgid "Activate/Deactivate"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
479 |
msgid "All Roles"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
483 |
msgid "General Info"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
487 |
#: includes/admin/views/html-settings-system-status-page.php:17
|
488 |
msgid "Social Count Plus Version"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
492 |
#: includes/admin/views/html-settings-system-status-page.php:21
|
493 |
msgid "WordPress Version"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
497 |
#: includes/admin/views/html-settings-system-status-page.php:25
|
498 |
msgid "WP Multisite Enabled"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
502 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
503 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
504 |
#: includes/admin/views/html-settings-system-status-page.php:26
|
505 |
msgid "Yes"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
509 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
510 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
511 |
#: includes/admin/views/html-settings-system-status-page.php:26
|
512 |
msgid "No"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
516 |
#: includes/admin/views/html-settings-system-status-page.php:29
|
517 |
msgid "Web Server Info"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
521 |
#: includes/admin/views/html-settings-system-status-page.php:33
|
522 |
msgid "PHP Version"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
526 |
msgid "Social Connections"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
530 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
531 |
msgstr ""
|
532 |
|
@@ -642,7 +637,7 @@ msgstr ""
|
|
642 |
msgid "Title"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:
|
646 |
msgid "comments"
|
647 |
msgstr ""
|
648 |
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Social Count Plus 3.4.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
7 |
+
"POT-Creation-Date: 2017-11-01 18:46:03+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
32 |
msgstr ""
|
33 |
|
34 |
#: includes/admin/class-social-count-plus-admin.php:76
|
35 |
+
#: includes/admin/class-social-count-plus-admin.php:1065
|
36 |
msgid "Comments"
|
37 |
msgstr ""
|
38 |
|
47 |
msgstr ""
|
48 |
|
49 |
#: includes/admin/class-social-count-plus-admin.php:91
|
50 |
+
#: includes/admin/class-social-count-plus-admin.php:1066
|
51 |
msgid "Facebook"
|
52 |
msgstr ""
|
53 |
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/admin/class-social-count-plus-admin.php:120
|
85 |
+
#: includes/admin/class-social-count-plus-admin.php:1067
|
86 |
msgid "GitHub"
|
87 |
msgstr ""
|
88 |
|
99 |
msgstr ""
|
100 |
|
101 |
#: includes/admin/class-social-count-plus-admin.php:134
|
102 |
+
#: includes/admin/class-social-count-plus-admin.php:1068
|
103 |
msgid "Google+"
|
104 |
msgstr ""
|
105 |
|
134 |
msgstr ""
|
135 |
|
136 |
#: includes/admin/class-social-count-plus-admin.php:160
|
137 |
+
#: includes/admin/class-social-count-plus-admin.php:1069
|
138 |
msgid "Instagram"
|
139 |
msgstr ""
|
140 |
|
167 |
msgstr ""
|
168 |
|
169 |
#: includes/admin/class-social-count-plus-admin.php:184
|
170 |
+
#: includes/admin/class-social-count-plus-admin.php:1070
|
171 |
msgid "LinkedIn"
|
172 |
msgstr ""
|
173 |
|
192 |
msgstr ""
|
193 |
|
194 |
#: includes/admin/class-social-count-plus-admin.php:203
|
195 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
196 |
msgid "Pinterest"
|
197 |
msgstr ""
|
198 |
|
209 |
msgstr ""
|
210 |
|
211 |
#: includes/admin/class-social-count-plus-admin.php:217
|
212 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
213 |
msgid "Posts"
|
214 |
msgstr ""
|
215 |
|
222 |
msgstr ""
|
223 |
|
224 |
#: includes/admin/class-social-count-plus-admin.php:237
|
225 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
226 |
msgid "SoundCloud"
|
227 |
msgstr ""
|
228 |
|
247 |
msgstr ""
|
248 |
|
249 |
#: includes/admin/class-social-count-plus-admin.php:256
|
250 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
251 |
msgid "Steam"
|
252 |
msgstr ""
|
253 |
|
264 |
msgstr ""
|
265 |
|
266 |
#: includes/admin/class-social-count-plus-admin.php:270
|
267 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
268 |
msgid "Tumblr"
|
269 |
msgstr ""
|
270 |
|
297 |
msgstr ""
|
298 |
|
299 |
#: includes/admin/class-social-count-plus-admin.php:304
|
300 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
301 |
msgid "Twitch"
|
302 |
msgstr ""
|
303 |
|
322 |
msgstr ""
|
323 |
|
324 |
#: includes/admin/class-social-count-plus-admin.php:323
|
325 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
326 |
msgid "Twitter"
|
327 |
msgstr ""
|
328 |
|
355 |
msgstr ""
|
356 |
|
357 |
#: includes/admin/class-social-count-plus-admin.php:357
|
358 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
359 |
msgid "Users"
|
360 |
msgstr ""
|
361 |
|
377 |
msgstr ""
|
378 |
|
379 |
#: includes/admin/class-social-count-plus-admin.php:382
|
380 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
381 |
msgid "Vimeo"
|
382 |
msgstr ""
|
383 |
|
394 |
msgstr ""
|
395 |
|
396 |
#: includes/admin/class-social-count-plus-admin.php:396
|
397 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
398 |
msgid "YouTube"
|
399 |
msgstr ""
|
400 |
|
428 |
msgstr ""
|
429 |
|
430 |
#: includes/admin/class-social-count-plus-admin.php:423
|
431 |
+
#: includes/admin/class-social-count-plus-admin.php:903
|
432 |
#: includes/admin/views/html-settings-page.php:9
|
433 |
msgid "Settings"
|
434 |
msgstr ""
|
438 |
msgstr ""
|
439 |
|
440 |
#: includes/admin/class-social-count-plus-admin.php:428
|
|
|
441 |
msgid "This option add %s in all counters URLs."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/admin/class-social-count-plus-admin.php:435
|
|
|
|
|
|
|
|
|
445 |
#: includes/admin/views/html-settings-page.php:9
|
446 |
msgid "Design"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/admin/class-social-count-plus-admin.php:438
|
450 |
msgid "Layout Models"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/admin/class-social-count-plus-admin.php:444
|
454 |
msgid "Text Color"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/admin/class-social-count-plus-admin.php:449
|
458 |
msgid "Order"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/admin/class-social-count-plus-admin.php:451
|
462 |
msgid "This option controls the order of the icons in the widget."
|
463 |
msgstr ""
|
464 |
|
466 |
msgid "Social Count Plus"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/admin/class-social-count-plus-admin.php:702
|
470 |
msgid "Activate/Deactivate"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
474 |
msgid "All Roles"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/admin/class-social-count-plus-admin.php:956
|
478 |
msgid "General Info"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/admin/class-social-count-plus-admin.php:957
|
482 |
#: includes/admin/views/html-settings-system-status-page.php:17
|
483 |
msgid "Social Count Plus Version"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/admin/class-social-count-plus-admin.php:958
|
487 |
#: includes/admin/views/html-settings-system-status-page.php:21
|
488 |
msgid "WordPress Version"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/admin/class-social-count-plus-admin.php:959
|
492 |
#: includes/admin/views/html-settings-system-status-page.php:25
|
493 |
msgid "WP Multisite Enabled"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/admin/class-social-count-plus-admin.php:959
|
497 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
498 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
499 |
#: includes/admin/views/html-settings-system-status-page.php:26
|
500 |
msgid "Yes"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: includes/admin/class-social-count-plus-admin.php:959
|
504 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
505 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
506 |
#: includes/admin/views/html-settings-system-status-page.php:26
|
507 |
msgid "No"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/admin/class-social-count-plus-admin.php:960
|
511 |
#: includes/admin/views/html-settings-system-status-page.php:29
|
512 |
msgid "Web Server Info"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: includes/admin/class-social-count-plus-admin.php:961
|
516 |
#: includes/admin/views/html-settings-system-status-page.php:33
|
517 |
msgid "PHP Version"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
521 |
msgid "Social Connections"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: includes/admin/class-social-count-plus-admin.php:974
|
525 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
526 |
msgstr ""
|
527 |
|
637 |
msgid "Title"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/counters/class-social-count-plus-comments-counter.php:79
|
641 |
msgid "comments"
|
642 |
msgstr ""
|
643 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: counter, widget, shortcode, facebook, github, googleplus, instagram, linkedin, pinterest, soundcloud, steam, tumblr, twitch, twitter, vimeo, youtube
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 3.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -178,6 +178,10 @@ Copy the report file content and paste it in [gist.github.com](https://gist.gith
|
|
178 |
|
179 |
== Changelog ==
|
180 |
|
|
|
|
|
|
|
|
|
181 |
= 3.4.0 - 2017/10/25 =
|
182 |
|
183 |
- Updated Twitch integration requiring "Twitch Client ID".
|
@@ -216,6 +220,6 @@ Copy the report file content and paste it in [gist.github.com](https://gist.gith
|
|
216 |
|
217 |
== Upgrade Notice ==
|
218 |
|
219 |
-
= 3.
|
220 |
|
221 |
-
|
4 |
Tags: counter, widget, shortcode, facebook, github, googleplus, instagram, linkedin, pinterest, soundcloud, steam, tumblr, twitch, twitter, vimeo, youtube
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 3.4.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
= 3.4.1 - 2017/11/01 =
|
182 |
+
|
183 |
+
- Removed `rel="nofollow"` option and applied automatically to all links.
|
184 |
+
|
185 |
= 3.4.0 - 2017/10/25 =
|
186 |
|
187 |
- Updated Twitch integration requiring "Twitch Client ID".
|
220 |
|
221 |
== Upgrade Notice ==
|
222 |
|
223 |
+
= 3.4.1 =
|
224 |
|
225 |
+
- Removed `rel="nofollow"` option and applied automatically to all links.
|
social-count-plus.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, Youtube, posts, comments and users.
|
6 |
* Author: Claudio Sanches
|
7 |
* Author URI: https://claudiosanches.com/
|
8 |
-
* Version: 3.4.
|
9 |
* License: GPLv2 or later
|
10 |
* Text Domain: social-count-plus
|
11 |
* Domain Path: /languages/
|
@@ -31,7 +31,7 @@ class Social_Count_Plus {
|
|
31 |
*
|
32 |
* @var string
|
33 |
*/
|
34 |
-
const VERSION = '3.4.
|
35 |
|
36 |
/**
|
37 |
* Instance of this class.
|
5 |
* Description: Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, Youtube, posts, comments and users.
|
6 |
* Author: Claudio Sanches
|
7 |
* Author URI: https://claudiosanches.com/
|
8 |
+
* Version: 3.4.1
|
9 |
* License: GPLv2 or later
|
10 |
* Text Domain: social-count-plus
|
11 |
* Domain Path: /languages/
|
31 |
*
|
32 |
* @var string
|
33 |
*/
|
34 |
+
const VERSION = '3.4.1';
|
35 |
|
36 |
/**
|
37 |
* Instance of this class.
|