Version Description
2017/04/25 =
Fixed Facebook integration according with new Facebook API requirements (Thanks to tc33).
Download this release
Release Info
Developer | claudiosanches |
Plugin | Social Count Plus |
Version | 3.3.6 |
Comparing to | |
See all releases |
Code changes from version 3.3.5 to 3.3.6
- assets/sass/admin.scss +84 -0
- assets/sass/counter.scss +129 -0
- includes/admin/class-social-count-plus-admin.php +1 -2
- includes/admin/views/html-help-us.php +0 -1
- includes/admin/views/html-settings-functions-shortcodes-page.php +1 -1
- includes/admin/views/html-settings-page.php +6 -6
- includes/admin/views/html-settings-system-status-page.php +6 -0
- includes/class-social-count-plus-widget.php +1 -1
- includes/counters/class-social-count-plus-facebook-counter.php +3 -2
- languages/social-count-plus.pot +164 -164
- readme.txt +8 -4
- social-count-plus.php +10 -10
assets/sass/admin.scss
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Status page */
|
2 |
+
table#social-count-plus-system-status {
|
3 |
+
margin-top: 1.1em;
|
4 |
+
|
5 |
+
tr {
|
6 |
+
&:nth-child(2n) {
|
7 |
+
th, td {
|
8 |
+
background: #fcfcfc;
|
9 |
+
}
|
10 |
+
}
|
11 |
+
}
|
12 |
+
th {
|
13 |
+
font-weight: bold;
|
14 |
+
}
|
15 |
+
td:first-child {
|
16 |
+
width: 20%;
|
17 |
+
}
|
18 |
+
td {
|
19 |
+
font-size: 1.1em;
|
20 |
+
padding: 6px 9px;
|
21 |
+
|
22 |
+
mark {
|
23 |
+
background: transparent none;
|
24 |
+
}
|
25 |
+
mark.yes {
|
26 |
+
color: #7AD03A;
|
27 |
+
}
|
28 |
+
mark.no {
|
29 |
+
color: #999;
|
30 |
+
}
|
31 |
+
mark.error {
|
32 |
+
color: #a00;
|
33 |
+
}
|
34 |
+
ul {
|
35 |
+
margin: 0;
|
36 |
+
}
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
+
.social-count-plus-icons-order {
|
41 |
+
*zoom: 1;
|
42 |
+
background: #fff;
|
43 |
+
border: 1px solid #ddd;
|
44 |
+
padding: 10px 5px 0 5px;
|
45 |
+
|
46 |
+
&:before,
|
47 |
+
&:after {
|
48 |
+
content: " ";
|
49 |
+
display: table;
|
50 |
+
}
|
51 |
+
|
52 |
+
&:after {
|
53 |
+
clear: both;
|
54 |
+
}
|
55 |
+
|
56 |
+
.social-icon,
|
57 |
+
.social-icon-placeholder {
|
58 |
+
border: 3px solid #ddd;
|
59 |
+
cursor: move;
|
60 |
+
float: left;
|
61 |
+
font-weight: bold;
|
62 |
+
margin: 0 5px 10px;
|
63 |
+
padding: 4px;
|
64 |
+
}
|
65 |
+
|
66 |
+
.social-icon-placeholder {
|
67 |
+
background: #f4f4f4;
|
68 |
+
border-style: dashed;
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
+
.social-count-plus {
|
73 |
+
margin-bottom: 20px;
|
74 |
+
|
75 |
+
.vertical li:not(:first-child) {
|
76 |
+
margin-left: 26px;
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
.social-count-plus-model-input {
|
81 |
+
display: block !important;
|
82 |
+
float: left !important;
|
83 |
+
margin: 10px 10px 0 0 !important;
|
84 |
+
}
|
assets/sass/counter.scss
ADDED
@@ -0,0 +1,129 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import "compass/css3";
|
2 |
+
@import "compass/utilities/general/clearfix";
|
3 |
+
|
4 |
+
/* General styles */
|
5 |
+
.social-count-plus {
|
6 |
+
@include pie-clearfix();
|
7 |
+
|
8 |
+
.clear {
|
9 |
+
clear: both;
|
10 |
+
}
|
11 |
+
|
12 |
+
ul {
|
13 |
+
border: none !important;
|
14 |
+
list-style: none !important;
|
15 |
+
margin: 0;
|
16 |
+
padding: 0;
|
17 |
+
}
|
18 |
+
|
19 |
+
li {
|
20 |
+
background: none !important;
|
21 |
+
border: none !important;
|
22 |
+
clear: none !important;
|
23 |
+
float: left;
|
24 |
+
list-style: none !important;
|
25 |
+
margin: 0;
|
26 |
+
padding: 0 0 20px;
|
27 |
+
text-align: center;
|
28 |
+
width: 60px;
|
29 |
+
}
|
30 |
+
|
31 |
+
.vertical li {
|
32 |
+
@include pie-clearfix();
|
33 |
+
display: block;
|
34 |
+
float: none;
|
35 |
+
padding-bottom: 10px;
|
36 |
+
text-align: left;
|
37 |
+
width: 100%;
|
38 |
+
}
|
39 |
+
|
40 |
+
span {
|
41 |
+
display: block;
|
42 |
+
margin: 0;
|
43 |
+
padding: 0;
|
44 |
+
}
|
45 |
+
|
46 |
+
/* Icons */
|
47 |
+
a {
|
48 |
+
@include transition(all 0.4s ease);
|
49 |
+
display: block;
|
50 |
+
margin: 0 auto;
|
51 |
+
opacity: 1;
|
52 |
+
padding: 0 !important;
|
53 |
+
}
|
54 |
+
|
55 |
+
a:hover {
|
56 |
+
opacity: 0.7;
|
57 |
+
}
|
58 |
+
|
59 |
+
.default a {
|
60 |
+
background-color: transparent !important;
|
61 |
+
background-image: url('../images/sprite-default.png') !important;
|
62 |
+
background-repeat: no-repeat !important;
|
63 |
+
height: 32px !important;
|
64 |
+
width: 32px !important;
|
65 |
+
}
|
66 |
+
|
67 |
+
.circle a {
|
68 |
+
background-image: url('../images/sprite-circle.png') !important;
|
69 |
+
height: 37px !important;
|
70 |
+
width: 36px !important;
|
71 |
+
}
|
72 |
+
|
73 |
+
.flat a {
|
74 |
+
background-image: url('../images/sprite-flat.png') !important;
|
75 |
+
height: 32px !important;
|
76 |
+
width: 32px !important;
|
77 |
+
}
|
78 |
+
|
79 |
+
.vertical a {
|
80 |
+
float: left;
|
81 |
+
}
|
82 |
+
|
83 |
+
.vertical .items {
|
84 |
+
float: left;
|
85 |
+
margin-left: 10px;
|
86 |
+
text-align: left;
|
87 |
+
}
|
88 |
+
|
89 |
+
/* Counters */
|
90 |
+
.count {
|
91 |
+
display: block;
|
92 |
+
font-size: 14px;
|
93 |
+
font-weight: bold;
|
94 |
+
line-height: 16px;
|
95 |
+
margin: 5px 0 0;
|
96 |
+
padding: 0;
|
97 |
+
}
|
98 |
+
|
99 |
+
.vertical .count {
|
100 |
+
margin-top: 3px;
|
101 |
+
}
|
102 |
+
|
103 |
+
/* Labels */
|
104 |
+
.label {
|
105 |
+
font-size: 9px;
|
106 |
+
font-weight: normal;
|
107 |
+
line-height: 16px;
|
108 |
+
text-transform: capitalize;
|
109 |
+
}
|
110 |
+
|
111 |
+
/* Sprites */
|
112 |
+
$icons: twitter facebook youtube googleplus posts comments instagram steam soundcloud twitch linkedin pinterest vimeo users tumblr github;
|
113 |
+
$i: 0;
|
114 |
+
@each $icon in $icons {
|
115 |
+
.default .count-#{$icon} a {
|
116 |
+
background-position: (-32px*$i) 0 !important;
|
117 |
+
}
|
118 |
+
|
119 |
+
.circle .count-#{$icon} a {
|
120 |
+
background-position: (-36px*$i) 0 !important;
|
121 |
+
}
|
122 |
+
|
123 |
+
.flat .count-#{$icon} a {
|
124 |
+
background-position: (-32px*$i) 0 !important;
|
125 |
+
}
|
126 |
+
|
127 |
+
$i: $i+1;
|
128 |
+
}
|
129 |
+
}
|
includes/admin/class-social-count-plus-admin.php
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
if ( ! defined( 'ABSPATH' ) ) {
|
4 |
-
exit;
|
5 |
}
|
6 |
|
7 |
/**
|
1 |
<?php
|
|
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
}
|
5 |
|
6 |
/**
|
includes/admin/views/html-help-us.php
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
exit;
|
4 |
}
|
5 |
-
|
6 |
?>
|
7 |
|
8 |
<div class="updated inline">
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
exit;
|
4 |
}
|
|
|
5 |
?>
|
6 |
|
7 |
<div class="updated inline">
|
includes/admin/views/html-settings-functions-shortcodes-page.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
-
exit;
|
4 |
}
|
5 |
?>
|
6 |
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
}
|
5 |
?>
|
6 |
|
includes/admin/views/html-settings-page.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
-
exit;
|
4 |
}
|
5 |
?>
|
6 |
|
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
9 |
<a href="options-general.php?page=social-count-plus&tab=settings" class="nav-tab <?php echo $current_tab == 'settings' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Settings', 'social-count-plus' ); ?></a><a href="options-general.php?page=social-count-plus&tab=design" class="nav-tab <?php echo $current_tab == 'design' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Design', 'social-count-plus' ); ?></a><a href="options-general.php?page=social-count-plus&tab=shortcodes" class="nav-tab <?php echo $current_tab == 'shortcodes' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Shortcodes and Functions', 'social-count-plus' ); ?></a><a href="options-general.php?page=social-count-plus&tab=system_status" class="nav-tab <?php echo $current_tab == 'system_status' ? 'nav-tab-active' : ''; ?>"><?php _e( 'System Status', 'social-count-plus' ); ?></a>
|
10 |
</h2>
|
11 |
|
12 |
-
<?php include 'html-help-us.php'; ?>
|
13 |
|
14 |
<form method="post" action="options.php">
|
15 |
<?php
|
@@ -17,10 +17,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
17 |
settings_fields( 'socialcountplus_design' );
|
18 |
do_settings_sections( 'socialcountplus_design' );
|
19 |
submit_button();
|
20 |
-
}
|
21 |
-
include 'html-settings-functions-shortcodes-page.php';
|
22 |
-
}
|
23 |
-
include 'html-settings-system-status-page.php';
|
24 |
} else {
|
25 |
$options = self::get_plugin_options();
|
26 |
$options = $options['socialcountplus_settings'];
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
}
|
5 |
?>
|
6 |
|
9 |
<a href="options-general.php?page=social-count-plus&tab=settings" class="nav-tab <?php echo $current_tab == 'settings' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Settings', 'social-count-plus' ); ?></a><a href="options-general.php?page=social-count-plus&tab=design" class="nav-tab <?php echo $current_tab == 'design' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Design', 'social-count-plus' ); ?></a><a href="options-general.php?page=social-count-plus&tab=shortcodes" class="nav-tab <?php echo $current_tab == 'shortcodes' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Shortcodes and Functions', 'social-count-plus' ); ?></a><a href="options-general.php?page=social-count-plus&tab=system_status" class="nav-tab <?php echo $current_tab == 'system_status' ? 'nav-tab-active' : ''; ?>"><?php _e( 'System Status', 'social-count-plus' ); ?></a>
|
10 |
</h2>
|
11 |
|
12 |
+
<?php include dirname( __FILE__ ) . '/html-help-us.php'; ?>
|
13 |
|
14 |
<form method="post" action="options.php">
|
15 |
<?php
|
17 |
settings_fields( 'socialcountplus_design' );
|
18 |
do_settings_sections( 'socialcountplus_design' );
|
19 |
submit_button();
|
20 |
+
} elseif ( 'shortcodes' == $current_tab ) {
|
21 |
+
include dirname( __FILE__ ) . '/html-settings-functions-shortcodes-page.php';
|
22 |
+
} elseif ( 'system_status' == $current_tab ) {
|
23 |
+
include dirname( __FILE__ ) . '/html-settings-system-status-page.php';
|
24 |
} else {
|
25 |
$options = self::get_plugin_options();
|
26 |
$options = $options['socialcountplus_settings'];
|
includes/admin/views/html-settings-system-status-page.php
CHANGED
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<table id="social-count-plus-system-status" class="widefat" cellspacing="0">
|
2 |
|
3 |
<thead>
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
|
7 |
<table id="social-count-plus-system-status" class="widefat" cellspacing="0">
|
8 |
|
9 |
<thead>
|
includes/class-social-count-plus-widget.php
CHANGED
@@ -29,7 +29,7 @@ class SocialCountPlus extends WP_Widget {
|
|
29 |
* @param array $instance Saved values from database.
|
30 |
*/
|
31 |
public function widget( $args, $instance ) {
|
32 |
-
$title = apply_filters( 'widget_title', $instance['title'] );
|
33 |
|
34 |
echo $args['before_widget'];
|
35 |
|
29 |
* @param array $instance Saved values from database.
|
30 |
*/
|
31 |
public function widget( $args, $instance ) {
|
32 |
+
$title = apply_filters( 'widget_title', isset( $instance['title'] ) ? $instance['title'] : '' );
|
33 |
|
34 |
echo $args['before_widget'];
|
35 |
|
includes/counters/class-social-count-plus-facebook-counter.php
CHANGED
@@ -57,7 +57,8 @@ class Social_Count_Plus_Facebook_Counter extends Social_Count_Plus_Counter {
|
|
57 |
if ( is_wp_error( $access_token ) || ( isset( $access_token['response']['code'] ) && 200 != $access_token['response']['code'] ) ) {
|
58 |
return '';
|
59 |
} else {
|
60 |
-
|
|
|
61 |
}
|
62 |
}
|
63 |
|
@@ -73,7 +74,7 @@ class Social_Count_Plus_Facebook_Counter extends Social_Count_Plus_Counter {
|
|
73 |
if ( $this->is_available( $settings ) ) {
|
74 |
$access_token = $this->get_access_token( $settings );
|
75 |
$url = sprintf(
|
76 |
-
'%s%s?fields=fan_count
|
77 |
$this->api_url . '/v2.7/',
|
78 |
sanitize_text_field( $settings['facebook_id'] ),
|
79 |
$access_token
|
57 |
if ( is_wp_error( $access_token ) || ( isset( $access_token['response']['code'] ) && 200 != $access_token['response']['code'] ) ) {
|
58 |
return '';
|
59 |
} else {
|
60 |
+
$access_token = json_decode( $access_token['body'], true );
|
61 |
+
return sanitize_text_field( $access_token['access_token'] );
|
62 |
}
|
63 |
}
|
64 |
|
74 |
if ( $this->is_available( $settings ) ) {
|
75 |
$access_token = $this->get_access_token( $settings );
|
76 |
$url = sprintf(
|
77 |
+
'%s%s?fields=fan_count&access_token=%s',
|
78 |
$this->api_url . '/v2.7/',
|
79 |
sanitize_text_field( $settings['facebook_id'] ),
|
80 |
$access_token
|
languages/social-count-plus.pot
CHANGED
@@ -1,130 +1,130 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Social Count Plus 3.3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
14 |
-
"X-Generator: grunt-wp-i18n 0.5.
|
15 |
|
16 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
17 |
msgid "Create an App on Twitter in %s and get this data."
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
21 |
msgid "Create an App on Facebook in %s and get this data."
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
25 |
msgid "Get the this data in %s."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
29 |
msgid ""
|
30 |
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
31 |
"API\" and allow your app access your Tumblr account and get this data."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
35 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
36 |
msgid "Comments"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
40 |
msgid "Display Comments Counter"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
44 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
45 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
46 |
msgid "URL"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
50 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
51 |
msgid "Facebook"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
55 |
msgid "Display Facebook Counter"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
59 |
msgid "Facebook Page ID"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
63 |
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
67 |
msgid ""
|
68 |
"You can find this data clicking to edit your page on Facebook. The URL will "
|
69 |
"be similar to this:"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
73 |
msgid "or"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
77 |
msgid "Facebook App ID"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
81 |
msgid "Facebook App Secret"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
85 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
86 |
msgid "GitHub"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
90 |
msgid "Display GitHub Counter"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
94 |
msgid "GitHub Username"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
98 |
msgid "Insert your GitHub username. Example: %s."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
102 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
103 |
msgid "Google+"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
107 |
msgid "Display Google+ Counter"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
111 |
msgid "Google+ ID"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
115 |
msgid "Google+ page or profile ID."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
119 |
msgid "Example:"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
123 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
124 |
msgid "Google API Key"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
128 |
msgid ""
|
129 |
"Get your API key creating a project/app in %s, then inside your project go "
|
130 |
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
@@ -133,284 +133,284 @@ msgid ""
|
|
133 |
"the \"CREATE\" button, now just copy your API key and paste here."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
137 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
138 |
msgid "Instagram"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
142 |
msgid "Display Instagram Counter"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
146 |
msgid "Instagram Username"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
150 |
msgid "Insert your Instagram Username."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
154 |
msgid "Instagram User ID"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
158 |
msgid "Insert your Instagram User ID."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
162 |
msgid "Instagram Access Token"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
166 |
msgid "Insert your Instagram Access Token."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
170 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
171 |
msgid "LinkedIn"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
175 |
msgid "Display LinkedIn counter"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
179 |
msgid "LinkedIn Company ID"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
183 |
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
187 |
msgid "LinkedIn Access Token"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
191 |
msgid "Get your Access Token in %s."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
195 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
196 |
msgid "Pinterest"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
200 |
msgid "Display Pinterest Counter"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
204 |
msgid "Pinterest Username"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
208 |
msgid "Insert your Pinterest username. Example: %s."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
212 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
213 |
msgid "Posts"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
217 |
msgid "Display Posts Counter"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
221 |
msgid "Post Type"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
225 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
226 |
msgid "SoundCloud"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
230 |
msgid "Display SoundCloud Counter"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
234 |
msgid "SoundCloud Username"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
238 |
msgid "Insert your SoundCloud Username."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
242 |
msgid "SoundCloud Client ID"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
246 |
msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
250 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
251 |
msgid "Steam"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
255 |
msgid "Display Steam Counter"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
259 |
msgid "Steam Group Name"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
263 |
msgid "Insert your Steam Community group name. Example: %s."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
267 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
268 |
msgid "Tumblr"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
272 |
msgid "Display Tumblr counter"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
276 |
msgid "Tumblr Hostname"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
280 |
msgid "Insert your Tumblr Hostname. Example: %s."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
284 |
msgid "Tumblr Consumer Key"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
288 |
msgid "Tumblr Consumer Secret"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
292 |
msgid "Tumblr Token"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
296 |
msgid "Tumblr Token Secret"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
300 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
301 |
msgid "Twitch"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
305 |
msgid "Display Twitch Counter"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
309 |
msgid "Twitch Username"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
313 |
msgid "Insert your Twitch username."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
317 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
318 |
msgid "Twitter"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
322 |
msgid "Display Twitter Counter"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
326 |
msgid "Twitter Username"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
330 |
msgid "Insert the Twitter username. Example: %s."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
334 |
msgid "Twitter Consumer key"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
338 |
msgid "Twitter Consumer secret"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
342 |
msgid "Twitter Access token"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
346 |
msgid "Twitter Access token secret"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
350 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
351 |
msgid "Users"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
355 |
msgid "Display Users Counter"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
359 |
msgid "User Role"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
363 |
msgid "Label"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
367 |
#: includes/counters/class-social-count-plus-users-counter.php:76
|
368 |
msgid "users"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
372 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
373 |
msgid "Vimeo"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
377 |
msgid "Display Vimeo Counter"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
381 |
msgid "Vimeo Username"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
385 |
msgid "Insert your Vimeo username. Example: %s."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
389 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
390 |
msgid "YouTube"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
394 |
msgid "Display YouTube Counter"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
398 |
msgid "YouTube Channel ID"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
402 |
msgid "Insert the YouTube Channel ID. Example: %s."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
406 |
msgid "YouTube Channel URL"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
410 |
msgid "Insert the YouTube channel URL. Example: %s."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
414 |
msgid ""
|
415 |
"Get your API key creating a project/app in %s, then inside your project go "
|
416 |
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
@@ -419,43 +419,43 @@ msgid ""
|
|
419 |
"the \"CREATE\" button, now just copy your API key and paste here."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
423 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
424 |
#: includes/admin/views/html-settings-page.php:9
|
425 |
msgid "Settings"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
429 |
msgid "Open URLs in new tab/window"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
433 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
434 |
msgid "This option add %s in all counters URLs."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
438 |
msgid "Add nofollow in URLs"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
442 |
#: includes/admin/views/html-settings-page.php:9
|
443 |
msgid "Design"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
447 |
msgid "Layout Models"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
451 |
msgid "Text Color"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
455 |
msgid "Order"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
459 |
msgid "This option controls the order of the icons in the widget."
|
460 |
msgstr ""
|
461 |
|
@@ -463,76 +463,76 @@ msgstr ""
|
|
463 |
msgid "Social Count Plus"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
467 |
msgid "Activate/Deactivate"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
471 |
msgid "All Roles"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
475 |
msgid "General Info"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
479 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
480 |
msgid "Social Count Plus Version"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
484 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
485 |
msgid "WordPress Version"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
489 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
490 |
msgid "WP Multisite Enabled"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
494 |
#: includes/admin/class-social-count-plus-admin.php:963
|
495 |
-
#: includes/admin/
|
496 |
-
#: includes/admin/views/html-settings-system-status-page.php:20
|
497 |
msgid "Yes"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
501 |
#: includes/admin/class-social-count-plus-admin.php:963
|
502 |
-
#: includes/admin/
|
503 |
-
#: includes/admin/views/html-settings-system-status-page.php:20
|
504 |
msgid "No"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
508 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
509 |
msgid "Web Server Info"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
513 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
514 |
msgid "PHP Version"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
518 |
msgid "Social Connections"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
522 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/admin/views/html-help-us.php:
|
526 |
msgid ""
|
527 |
"Help us keep the %s plugin free making a donation or rate %s on "
|
528 |
"WordPress.org. Thank you in advance!"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/admin/views/html-help-us.php:
|
532 |
msgid "Make a donation"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/admin/views/html-help-us.php:
|
536 |
msgid "Make a review"
|
537 |
msgstr ""
|
538 |
|
@@ -577,52 +577,52 @@ msgstr ""
|
|
577 |
msgid "System Status"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
581 |
msgid "Environment"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
585 |
msgid ""
|
586 |
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
587 |
"communicate with the social APIs will not work. Contact your hosting "
|
588 |
"provider."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
592 |
msgid "Your server has fsockopen and cURL enabled."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
596 |
msgid "Your server has fsockopen enabled, cURL is disabled."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
600 |
msgid "Your server has cURL enabled, fsockopen is disabled."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
604 |
msgid "fsockopen/cURL"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
608 |
msgid "wp_remote_get() failed. This may not work with your server."
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
612 |
msgid "wp_remote_get() was successful."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
616 |
msgid ""
|
617 |
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
618 |
"your hosting provider. Error:"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
622 |
msgid "WP Remote Get"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/admin/views/html-settings-system-status-page.php:
|
626 |
msgid "Get System Report"
|
627 |
msgstr ""
|
628 |
|
@@ -638,7 +638,7 @@ msgstr ""
|
|
638 |
msgid "comments"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:
|
642 |
msgid "likes"
|
643 |
msgstr ""
|
644 |
|
1 |
+
# Copyright (C) 2017 Claudio Sanches
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Social Count Plus 3.3.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
7 |
+
"POT-Creation-Date: 2017-04-25 06:07:16+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
14 |
+
"X-Generator: grunt-wp-i18n 0.5.4\n"
|
15 |
|
16 |
+
#: includes/admin/class-social-count-plus-admin.php:65
|
17 |
msgid "Create an App on Twitter in %s and get this data."
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: includes/admin/class-social-count-plus-admin.php:67
|
21 |
msgid "Create an App on Facebook in %s and get this data."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/admin/class-social-count-plus-admin.php:69
|
25 |
msgid "Get the this data in %s."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: includes/admin/class-social-count-plus-admin.php:71
|
29 |
msgid ""
|
30 |
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
31 |
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
|
39 |
+
#: includes/admin/class-social-count-plus-admin.php:79
|
40 |
msgid "Display Comments Counter"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: includes/admin/class-social-count-plus-admin.php:84
|
44 |
+
#: includes/admin/class-social-count-plus-admin.php:230
|
45 |
+
#: includes/admin/class-social-count-plus-admin.php:370
|
46 |
msgid "URL"
|
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 |
|
54 |
+
#: includes/admin/class-social-count-plus-admin.php:94
|
55 |
msgid "Display Facebook Counter"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/admin/class-social-count-plus-admin.php:98
|
59 |
msgid "Facebook Page ID"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/admin/class-social-count-plus-admin.php:102
|
63 |
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/admin/class-social-count-plus-admin.php:103
|
67 |
msgid ""
|
68 |
"You can find this data clicking to edit your page on Facebook. The URL will "
|
69 |
"be similar to this:"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/admin/class-social-count-plus-admin.php:104
|
73 |
msgid "or"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/admin/class-social-count-plus-admin.php:108
|
77 |
msgid "Facebook App ID"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/admin/class-social-count-plus-admin.php:113
|
81 |
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:1067
|
86 |
msgid "GitHub"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/admin/class-social-count-plus-admin.php:123
|
90 |
msgid "Display GitHub Counter"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/admin/class-social-count-plus-admin.php:127
|
94 |
msgid "GitHub Username"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/admin/class-social-count-plus-admin.php:129
|
98 |
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:1068
|
103 |
msgid "Google+"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/admin/class-social-count-plus-admin.php:137
|
107 |
msgid "Display Google+ Counter"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/admin/class-social-count-plus-admin.php:141
|
111 |
msgid "Google+ ID"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/admin/class-social-count-plus-admin.php:145
|
115 |
msgid "Google+ page or profile ID."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/admin/class-social-count-plus-admin.php:146
|
119 |
msgid "Example:"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/admin/class-social-count-plus-admin.php:150
|
123 |
+
#: includes/admin/class-social-count-plus-admin.php:408
|
124 |
msgid "Google API Key"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/admin/class-social-count-plus-admin.php:153
|
128 |
msgid ""
|
129 |
"Get your API key creating a project/app in %s, then inside your project go "
|
130 |
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
133 |
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
|
141 |
+
#: includes/admin/class-social-count-plus-admin.php:163
|
142 |
msgid "Display Instagram Counter"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/admin/class-social-count-plus-admin.php:167
|
146 |
msgid "Instagram Username"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/admin/class-social-count-plus-admin.php:169
|
150 |
msgid "Insert your Instagram Username."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/admin/class-social-count-plus-admin.php:172
|
154 |
msgid "Instagram User ID"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/admin/class-social-count-plus-admin.php:174
|
158 |
msgid "Insert your Instagram User ID."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/admin/class-social-count-plus-admin.php:177
|
162 |
msgid "Instagram Access Token"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/admin/class-social-count-plus-admin.php:179
|
166 |
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:1070
|
171 |
msgid "LinkedIn"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: includes/admin/class-social-count-plus-admin.php:187
|
175 |
msgid "Display LinkedIn counter"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/admin/class-social-count-plus-admin.php:191
|
179 |
msgid "LinkedIn Company ID"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/admin/class-social-count-plus-admin.php:193
|
183 |
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: includes/admin/class-social-count-plus-admin.php:196
|
187 |
msgid "LinkedIn Access Token"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/admin/class-social-count-plus-admin.php:198
|
191 |
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:1071
|
196 |
msgid "Pinterest"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/admin/class-social-count-plus-admin.php:206
|
200 |
msgid "Display Pinterest Counter"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/admin/class-social-count-plus-admin.php:210
|
204 |
msgid "Pinterest Username"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/admin/class-social-count-plus-admin.php:212
|
208 |
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:1072
|
213 |
msgid "Posts"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/admin/class-social-count-plus-admin.php:220
|
217 |
msgid "Display Posts Counter"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/admin/class-social-count-plus-admin.php:225
|
221 |
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:1073
|
226 |
msgid "SoundCloud"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/admin/class-social-count-plus-admin.php:240
|
230 |
msgid "Display SoundCloud Counter"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/admin/class-social-count-plus-admin.php:244
|
234 |
msgid "SoundCloud Username"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/admin/class-social-count-plus-admin.php:246
|
238 |
msgid "Insert your SoundCloud Username."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/admin/class-social-count-plus-admin.php:249
|
242 |
msgid "SoundCloud Client ID"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/admin/class-social-count-plus-admin.php:251
|
246 |
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:1074
|
251 |
msgid "Steam"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/admin/class-social-count-plus-admin.php:259
|
255 |
msgid "Display Steam Counter"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/admin/class-social-count-plus-admin.php:263
|
259 |
msgid "Steam Group Name"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/admin/class-social-count-plus-admin.php:265
|
263 |
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:1075
|
268 |
msgid "Tumblr"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/admin/class-social-count-plus-admin.php:273
|
272 |
msgid "Display Tumblr counter"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/admin/class-social-count-plus-admin.php:277
|
276 |
msgid "Tumblr Hostname"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/admin/class-social-count-plus-admin.php:279
|
280 |
msgid "Insert your Tumblr Hostname. Example: %s."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/admin/class-social-count-plus-admin.php:282
|
284 |
msgid "Tumblr Consumer Key"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/admin/class-social-count-plus-admin.php:287
|
288 |
msgid "Tumblr Consumer Secret"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/admin/class-social-count-plus-admin.php:292
|
292 |
msgid "Tumblr Token"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/admin/class-social-count-plus-admin.php:297
|
296 |
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:1076
|
301 |
msgid "Twitch"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/admin/class-social-count-plus-admin.php:307
|
305 |
msgid "Display Twitch Counter"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/admin/class-social-count-plus-admin.php:311
|
309 |
msgid "Twitch Username"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/admin/class-social-count-plus-admin.php:313
|
313 |
msgid "Insert your Twitch username."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/admin/class-social-count-plus-admin.php:318
|
317 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
318 |
msgid "Twitter"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/admin/class-social-count-plus-admin.php:321
|
322 |
msgid "Display Twitter Counter"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/admin/class-social-count-plus-admin.php:325
|
326 |
msgid "Twitter Username"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/admin/class-social-count-plus-admin.php:327
|
330 |
msgid "Insert the Twitter username. Example: %s."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/admin/class-social-count-plus-admin.php:330
|
334 |
msgid "Twitter Consumer key"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/admin/class-social-count-plus-admin.php:335
|
338 |
msgid "Twitter Consumer secret"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/admin/class-social-count-plus-admin.php:340
|
342 |
msgid "Twitter Access token"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/admin/class-social-count-plus-admin.php:345
|
346 |
msgid "Twitter Access token secret"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/admin/class-social-count-plus-admin.php:352
|
350 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
351 |
msgid "Users"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/admin/class-social-count-plus-admin.php:355
|
355 |
msgid "Display Users Counter"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/admin/class-social-count-plus-admin.php:360
|
359 |
msgid "User Role"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/admin/class-social-count-plus-admin.php:365
|
363 |
msgid "Label"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/admin/class-social-count-plus-admin.php:366
|
367 |
#: includes/counters/class-social-count-plus-users-counter.php:76
|
368 |
msgid "users"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/admin/class-social-count-plus-admin.php:377
|
372 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
373 |
msgid "Vimeo"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: includes/admin/class-social-count-plus-admin.php:380
|
377 |
msgid "Display Vimeo Counter"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/admin/class-social-count-plus-admin.php:384
|
381 |
msgid "Vimeo Username"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/admin/class-social-count-plus-admin.php:386
|
385 |
msgid "Insert your Vimeo username. Example: %s."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: includes/admin/class-social-count-plus-admin.php:391
|
389 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
390 |
msgid "YouTube"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/admin/class-social-count-plus-admin.php:394
|
394 |
msgid "Display YouTube Counter"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/admin/class-social-count-plus-admin.php:398
|
398 |
msgid "YouTube Channel ID"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/admin/class-social-count-plus-admin.php:400
|
402 |
msgid "Insert the YouTube Channel ID. Example: %s."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/admin/class-social-count-plus-admin.php:403
|
406 |
msgid "YouTube Channel URL"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/admin/class-social-count-plus-admin.php:405
|
410 |
msgid "Insert the YouTube channel URL. Example: %s."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: includes/admin/class-social-count-plus-admin.php:411
|
414 |
msgid ""
|
415 |
"Get your API key creating a project/app in %s, then inside your project go "
|
416 |
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
419 |
"the \"CREATE\" button, now just copy your API key and paste here."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/admin/class-social-count-plus-admin.php:418
|
423 |
+
#: includes/admin/class-social-count-plus-admin.php:903
|
424 |
#: includes/admin/views/html-settings-page.php:9
|
425 |
msgid "Settings"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/admin/class-social-count-plus-admin.php:421
|
429 |
msgid "Open URLs in new tab/window"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/admin/class-social-count-plus-admin.php:423
|
433 |
+
#: includes/admin/class-social-count-plus-admin.php:428
|
434 |
msgid "This option add %s in all counters URLs."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/admin/class-social-count-plus-admin.php:426
|
438 |
msgid "Add nofollow in URLs"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/admin/class-social-count-plus-admin.php:435
|
442 |
#: includes/admin/views/html-settings-page.php:9
|
443 |
msgid "Design"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/admin/class-social-count-plus-admin.php:438
|
447 |
msgid "Layout Models"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/admin/class-social-count-plus-admin.php:444
|
451 |
msgid "Text Color"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/admin/class-social-count-plus-admin.php:449
|
455 |
msgid "Order"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/admin/class-social-count-plus-admin.php:451
|
459 |
msgid "This option controls the order of the icons in the widget."
|
460 |
msgstr ""
|
461 |
|
463 |
msgid "Social Count Plus"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/admin/class-social-count-plus-admin.php:702
|
467 |
msgid "Activate/Deactivate"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
471 |
msgid "All Roles"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/admin/class-social-count-plus-admin.php:956
|
475 |
msgid "General Info"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/admin/class-social-count-plus-admin.php:957
|
479 |
+
#: includes/admin/views/html-settings-system-status-page.php:17
|
480 |
msgid "Social Count Plus Version"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin/class-social-count-plus-admin.php:958
|
484 |
+
#: includes/admin/views/html-settings-system-status-page.php:21
|
485 |
msgid "WordPress Version"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/admin/class-social-count-plus-admin.php:959
|
489 |
+
#: includes/admin/views/html-settings-system-status-page.php:25
|
490 |
msgid "WP Multisite Enabled"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/admin/class-social-count-plus-admin.php:959
|
494 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
495 |
#: includes/admin/class-social-count-plus-admin.php:963
|
496 |
+
#: includes/admin/views/html-settings-system-status-page.php:26
|
|
|
497 |
msgid "Yes"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/admin/class-social-count-plus-admin.php:959
|
501 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
502 |
#: includes/admin/class-social-count-plus-admin.php:963
|
503 |
+
#: includes/admin/views/html-settings-system-status-page.php:26
|
|
|
504 |
msgid "No"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/admin/class-social-count-plus-admin.php:960
|
508 |
+
#: includes/admin/views/html-settings-system-status-page.php:29
|
509 |
msgid "Web Server Info"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/admin/class-social-count-plus-admin.php:961
|
513 |
+
#: includes/admin/views/html-settings-system-status-page.php:33
|
514 |
msgid "PHP Version"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
518 |
msgid "Social Connections"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/admin/class-social-count-plus-admin.php:974
|
522 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/admin/views/html-help-us.php:8
|
526 |
msgid ""
|
527 |
"Help us keep the %s plugin free making a donation or rate %s on "
|
528 |
"WordPress.org. Thank you in advance!"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/admin/views/html-help-us.php:9
|
532 |
msgid "Make a donation"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/admin/views/html-help-us.php:9
|
536 |
msgid "Make a review"
|
537 |
msgstr ""
|
538 |
|
577 |
msgid "System Status"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/admin/views/html-settings-system-status-page.php:11
|
581 |
msgid "Environment"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/admin/views/html-settings-system-status-page.php:39
|
585 |
msgid ""
|
586 |
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
587 |
"communicate with the social APIs will not work. Contact your hosting "
|
588 |
"provider."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: includes/admin/views/html-settings-system-status-page.php:43
|
592 |
msgid "Your server has fsockopen and cURL enabled."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/admin/views/html-settings-system-status-page.php:45
|
596 |
msgid "Your server has fsockopen enabled, cURL is disabled."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/admin/views/html-settings-system-status-page.php:47
|
600 |
msgid "Your server has cURL enabled, fsockopen is disabled."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: includes/admin/views/html-settings-system-status-page.php:53
|
604 |
msgid "fsockopen/cURL"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/admin/views/html-settings-system-status-page.php:63
|
608 |
msgid "wp_remote_get() failed. This may not work with your server."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: includes/admin/views/html-settings-system-status-page.php:68
|
612 |
msgid "wp_remote_get() was successful."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: includes/admin/views/html-settings-system-status-page.php:70
|
616 |
msgid ""
|
617 |
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
618 |
"your hosting provider. Error:"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/admin/views/html-settings-system-status-page.php:73
|
622 |
msgid "WP Remote Get"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/admin/views/html-settings-system-status-page.php:83
|
626 |
msgid "Get System Report"
|
627 |
msgstr ""
|
628 |
|
638 |
msgid "comments"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: includes/counters/class-social-count-plus-facebook-counter.php:115
|
642 |
msgid "likes"
|
643 |
msgstr ""
|
644 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: claudiosanches, felipesantana, deblynprado
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y8HP99ZJ5Z59L
|
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.
|
7 |
-
Stable tag: 3.3.
|
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.3.5 - 2016/08/20 =
|
182 |
|
183 |
* Update and fixed the Facebook integration.
|
@@ -206,6 +210,6 @@ Copy the report file content and paste it in [gist.github.com](https://gist.gith
|
|
206 |
|
207 |
== Upgrade Notice ==
|
208 |
|
209 |
-
= 3.3.
|
210 |
|
211 |
-
*
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y8HP99ZJ5Z59L
|
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.7
|
7 |
+
Stable tag: 3.3.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
= 3.3.6 - 2017/04/25 =
|
182 |
+
|
183 |
+
* Fixed Facebook integration according with new Facebook API requirements (Thanks to [tc33](https://github.com/claudiosanches/social-count-plus/pull/38)).
|
184 |
+
|
185 |
= 3.3.5 - 2016/08/20 =
|
186 |
|
187 |
* Update and fixed the Facebook integration.
|
210 |
|
211 |
== Upgrade Notice ==
|
212 |
|
213 |
+
= 3.3.6 =
|
214 |
|
215 |
+
* Fixed Facebook integration according with new Facebook API requirements.
|
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: http://claudiosmweb.com/
|
8 |
-
* Version: 3.3.
|
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.3.
|
35 |
|
36 |
/**
|
37 |
* Instance of this class.
|
@@ -89,20 +89,20 @@ class Social_Count_Plus {
|
|
89 |
* Include admin actions.
|
90 |
*/
|
91 |
protected function admin_includes() {
|
92 |
-
include 'includes/admin/class-social-count-plus-admin.php';
|
93 |
}
|
94 |
|
95 |
/**
|
96 |
* Include plugin functions.
|
97 |
*/
|
98 |
protected function includes() {
|
99 |
-
include_once 'includes/class-social-count-plus-generator.php';
|
100 |
-
include_once 'includes/abstracts/abstract-social-count-plus-counter.php';
|
101 |
-
include_once 'includes/class-social-count-plus-view.php';
|
102 |
-
include_once 'includes/class-social-count-plus-widget.php';
|
103 |
-
include_once 'includes/class-social-count-plus-shortcodes.php';
|
104 |
-
include_once 'includes/social-count-plus-functions.php';
|
105 |
-
include_once 'includes/social-count-plus-deprecated-functions.php';
|
106 |
}
|
107 |
|
108 |
/**
|
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: http://claudiosmweb.com/
|
8 |
+
* Version: 3.3.6
|
9 |
* License: GPLv2 or later
|
10 |
* Text Domain: social-count-plus
|
11 |
* Domain Path: /languages/
|
31 |
*
|
32 |
* @var string
|
33 |
*/
|
34 |
+
const VERSION = '3.3.6';
|
35 |
|
36 |
/**
|
37 |
* Instance of this class.
|
89 |
* Include admin actions.
|
90 |
*/
|
91 |
protected function admin_includes() {
|
92 |
+
include dirname( __FILE__ ) . '/includes/admin/class-social-count-plus-admin.php';
|
93 |
}
|
94 |
|
95 |
/**
|
96 |
* Include plugin functions.
|
97 |
*/
|
98 |
protected function includes() {
|
99 |
+
include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-generator.php';
|
100 |
+
include_once dirname( __FILE__ ) . '/includes/abstracts/abstract-social-count-plus-counter.php';
|
101 |
+
include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-view.php';
|
102 |
+
include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-widget.php';
|
103 |
+
include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-shortcodes.php';
|
104 |
+
include_once dirname( __FILE__ ) . '/includes/social-count-plus-functions.php';
|
105 |
+
include_once dirname( __FILE__ ) . '/includes/social-count-plus-deprecated-functions.php';
|
106 |
}
|
107 |
|
108 |
/**
|