Version Description
- Added option to show all user roles in users integration.
- Fixed errors in PHP 5.2.
=
Download this release
Release Info
| Developer | claudiosanches |
| Plugin | |
| Version | 3.3.0 |
| Comparing to | |
| See all releases | |
Code changes from version 3.2.0 to 3.3.0
- includes/abstracts/abstract-social-count-plus-counter.php +3 -3
- includes/admin/class-social-count-plus-admin.php +5 -2
- includes/class-social-count-plus-generator.php +1 -1
- includes/class-social-count-plus-view.php +3 -1
- includes/counters/class-social-count-plus-comments-counter.php +4 -4
- includes/counters/class-social-count-plus-facebook-counter.php +5 -5
- includes/counters/class-social-count-plus-github-counter.php +5 -5
- includes/counters/class-social-count-plus-googleplus-counter.php +5 -5
- includes/counters/class-social-count-plus-instagram-counter.php +5 -5
- includes/counters/class-social-count-plus-linkedin-counter.php +5 -5
- includes/counters/class-social-count-plus-pinterest-counter.php +5 -5
- includes/counters/class-social-count-plus-posts-counter.php +4 -4
- includes/counters/class-social-count-plus-soundcloud-counter.php +5 -5
- includes/counters/class-social-count-plus-steam-counter.php +5 -5
- includes/counters/class-social-count-plus-tumblr-counter.php +5 -5
- includes/counters/class-social-count-plus-twitch-counter.php +5 -5
- includes/counters/class-social-count-plus-twitter-counter.php +5 -5
- includes/counters/class-social-count-plus-users-counter.php +6 -4
- includes/counters/class-social-count-plus-vimeo-counter.php +5 -5
- includes/counters/class-social-count-plus-youtube-counter.php +5 -5
- languages/social-count-plus-es_AR.mo +0 -0
- languages/social-count-plus-es_AR.po +36 -32
- languages/social-count-plus-fr_FR.mo +0 -0
- languages/social-count-plus-fr_FR.po +36 -32
- languages/social-count-plus-pt_BR.mo +0 -0
- languages/social-count-plus-pt_BR.po +36 -32
- languages/social-count-plus-ru_RU.mo +0 -0
- languages/social-count-plus-ru_RU.po +36 -32
- languages/social-count-plus-sq_AL.mo +0 -0
- languages/social-count-plus-sq_AL.po +36 -32
- languages/social-count-plus-sv_SE.mo +0 -0
- languages/social-count-plus-sv_SE.po +36 -32
- languages/social-count-plus.pot +35 -31
- readme.txt +10 -11
- social-count-plus.php +2 -2
includes/abstracts/abstract-social-count-plus-counter.php
CHANGED
|
@@ -25,7 +25,7 @@ abstract class Social_Count_Plus_Counter {
|
|
| 25 |
*
|
| 26 |
* @var string
|
| 27 |
*/
|
| 28 |
-
public
|
| 29 |
|
| 30 |
/**
|
| 31 |
* Connection.
|
|
@@ -68,7 +68,7 @@ abstract class Social_Count_Plus_Counter {
|
|
| 68 |
*
|
| 69 |
* @return string HTML li element.
|
| 70 |
*/
|
| 71 |
-
protected
|
| 72 |
$target_blank = isset( $settings['target_blank'] ) ? ' target="_blank"' : '';
|
| 73 |
$rel_nofollow = isset( $settings['rel_nofollow'] ) ? ' rel="nofollow"' : '';
|
| 74 |
|
|
@@ -92,7 +92,7 @@ abstract class Social_Count_Plus_Counter {
|
|
| 92 |
*
|
| 93 |
* @return string
|
| 94 |
*/
|
| 95 |
-
public
|
| 96 |
return '';
|
| 97 |
}
|
| 98 |
|
| 25 |
*
|
| 26 |
* @var string
|
| 27 |
*/
|
| 28 |
+
public $id = '';
|
| 29 |
|
| 30 |
/**
|
| 31 |
* Connection.
|
| 68 |
*
|
| 69 |
* @return string HTML li element.
|
| 70 |
*/
|
| 71 |
+
protected function get_view_li( $slug, $url, $count, $title, $color, $settings ) {
|
| 72 |
$target_blank = isset( $settings['target_blank'] ) ? ' target="_blank"' : '';
|
| 73 |
$rel_nofollow = isset( $settings['rel_nofollow'] ) ? ' rel="nofollow"' : '';
|
| 74 |
|
| 92 |
*
|
| 93 |
* @return string
|
| 94 |
*/
|
| 95 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 96 |
return '';
|
| 97 |
}
|
| 98 |
|
includes/admin/class-social-count-plus-admin.php
CHANGED
|
@@ -753,6 +753,7 @@ class Social_Count_Plus_Admin {
|
|
| 753 |
foreach ( $wp_roles->get_names() as $key => $value ) {
|
| 754 |
$html .= sprintf( '<option value="%s"%s>%s</option>', $key, selected( $current, $key, false ), $value );
|
| 755 |
}
|
|
|
|
| 756 |
$html .= '</select>';
|
| 757 |
|
| 758 |
// Displays option description.
|
|
@@ -788,7 +789,9 @@ class Social_Count_Plus_Admin {
|
|
| 788 |
foreach ( $this->get_i18n_counters() as $slug => $name ) {
|
| 789 |
$class = 'social_count_plus_' . $slug . '_counter';
|
| 790 |
if ( class_exists( $class ) ) {
|
| 791 |
-
$
|
|
|
|
|
|
|
| 792 |
}
|
| 793 |
}
|
| 794 |
|
|
@@ -951,7 +954,7 @@ class Social_Count_Plus_Admin {
|
|
| 951 |
|
| 952 |
if ( $_counter->is_available( $settings ) ) {
|
| 953 |
$_counter->get_total( $settings, $cache );
|
| 954 |
-
$debug[ $_counter
|
| 955 |
}
|
| 956 |
}
|
| 957 |
|
| 753 |
foreach ( $wp_roles->get_names() as $key => $value ) {
|
| 754 |
$html .= sprintf( '<option value="%s"%s>%s</option>', $key, selected( $current, $key, false ), $value );
|
| 755 |
}
|
| 756 |
+
$html .= sprintf( '<option value="%s"%s>%s</option>', 'all', selected( $current, 'all', false ), __( 'All Roles', 'social-count-plus' ) );
|
| 757 |
$html .= '</select>';
|
| 758 |
|
| 759 |
// Displays option description.
|
| 789 |
foreach ( $this->get_i18n_counters() as $slug => $name ) {
|
| 790 |
$class = 'social_count_plus_' . $slug . '_counter';
|
| 791 |
if ( class_exists( $class ) ) {
|
| 792 |
+
$_class = new $class();
|
| 793 |
+
|
| 794 |
+
$html .= $_class->get_view( array(), 100, '#333333' );
|
| 795 |
}
|
| 796 |
}
|
| 797 |
|
| 954 |
|
| 955 |
if ( $_counter->is_available( $settings ) ) {
|
| 956 |
$_counter->get_total( $settings, $cache );
|
| 957 |
+
$debug[ $_counter->id ] = $_counter->debug();
|
| 958 |
}
|
| 959 |
}
|
| 960 |
|
includes/class-social-count-plus-generator.php
CHANGED
|
@@ -65,7 +65,7 @@ class Social_Count_Plus_Generator {
|
|
| 65 |
|
| 66 |
foreach ( $counters as $counter ) {
|
| 67 |
$_counter = new $counter();
|
| 68 |
-
$total[ $_counter
|
| 69 |
}
|
| 70 |
|
| 71 |
// Update plugin extra cache.
|
| 65 |
|
| 66 |
foreach ( $counters as $counter ) {
|
| 67 |
$_counter = new $counter();
|
| 68 |
+
$total[ $_counter->id ] = $_counter->get_total( $settings, $cache );
|
| 69 |
}
|
| 70 |
|
| 71 |
// Update plugin extra cache.
|
includes/class-social-count-plus-view.php
CHANGED
|
@@ -56,7 +56,9 @@ class Social_Count_Plus_View {
|
|
| 56 |
foreach ( $icons as $icon ) {
|
| 57 |
$class = 'social_count_plus_' . $icon . '_counter';
|
| 58 |
if ( class_exists( $class ) && isset( $count[ $icon ] ) ) {
|
| 59 |
-
$
|
|
|
|
|
|
|
| 60 |
} else {
|
| 61 |
$html .= apply_filters( 'social_count_plus_' . $icon . 'html_counter', '', $settings, $count[ $icon ], $color );
|
| 62 |
}
|
| 56 |
foreach ( $icons as $icon ) {
|
| 57 |
$class = 'social_count_plus_' . $icon . '_counter';
|
| 58 |
if ( class_exists( $class ) && isset( $count[ $icon ] ) ) {
|
| 59 |
+
$_class = new $class();
|
| 60 |
+
|
| 61 |
+
$html .= $_class->get_view( $settings, $count[ $icon ], $color );
|
| 62 |
} else {
|
| 63 |
$html .= apply_filters( 'social_count_plus_' . $icon . 'html_counter', '', $settings, $count[ $icon ], $color );
|
| 64 |
}
|
includes/counters/class-social-count-plus-comments-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Comments_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_Comments_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$data = wp_count_comments();
|
| 52 |
|
| 53 |
if ( is_wp_error( $data ) ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$count = intval( $data->approved );
|
| 57 |
|
|
@@ -71,12 +71,12 @@ class Social_Count_Plus_Comments_Counter extends Social_Count_Plus_Counter {
|
|
| 71 |
*
|
| 72 |
* @return string
|
| 73 |
*/
|
| 74 |
-
public
|
| 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
|
| 81 |
}
|
| 82 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'comments';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$data = wp_count_comments();
|
| 52 |
|
| 53 |
if ( is_wp_error( $data ) ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$count = intval( $data->approved );
|
| 57 |
|
| 71 |
*
|
| 72 |
* @return string
|
| 73 |
*/
|
| 74 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 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( $this->id, $url, $total, __( 'comments', 'social-count-plus' ), $text_color, $settings );
|
| 81 |
}
|
| 82 |
}
|
includes/counters/class-social-count-plus-facebook-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Facebook_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -82,7 +82,7 @@ class Social_Count_Plus_Facebook_Counter extends Social_Count_Plus_Counter {
|
|
| 82 |
$this->connection = wp_remote_get( $url, array( 'timeout' => 60 ) );
|
| 83 |
|
| 84 |
if ( is_wp_error( $this->connection ) || ( isset( $this->connection['response']['code'] ) && 200 != $this->connection['response']['code'] ) ) {
|
| 85 |
-
$this->total = ( isset( $cache[
|
| 86 |
} else {
|
| 87 |
$_data = json_decode( $this->connection['body'], true );
|
| 88 |
|
|
@@ -91,7 +91,7 @@ class Social_Count_Plus_Facebook_Counter extends Social_Count_Plus_Counter {
|
|
| 91 |
|
| 92 |
$this->total = $count;
|
| 93 |
} else {
|
| 94 |
-
$this->total = ( isset( $cache[
|
| 95 |
}
|
| 96 |
}
|
| 97 |
}
|
|
@@ -108,9 +108,9 @@ class Social_Count_Plus_Facebook_Counter extends Social_Count_Plus_Counter {
|
|
| 108 |
*
|
| 109 |
* @return string
|
| 110 |
*/
|
| 111 |
-
public
|
| 112 |
$facebook_id = ! empty( $settings['facebook_id'] ) ? $settings['facebook_id'] : '';
|
| 113 |
|
| 114 |
-
return
|
| 115 |
}
|
| 116 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'facebook';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 82 |
$this->connection = wp_remote_get( $url, array( 'timeout' => 60 ) );
|
| 83 |
|
| 84 |
if ( is_wp_error( $this->connection ) || ( isset( $this->connection['response']['code'] ) && 200 != $this->connection['response']['code'] ) ) {
|
| 85 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 86 |
} else {
|
| 87 |
$_data = json_decode( $this->connection['body'], true );
|
| 88 |
|
| 91 |
|
| 92 |
$this->total = $count;
|
| 93 |
} else {
|
| 94 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 95 |
}
|
| 96 |
}
|
| 97 |
}
|
| 108 |
*
|
| 109 |
* @return string
|
| 110 |
*/
|
| 111 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 112 |
$facebook_id = ! empty( $settings['facebook_id'] ) ? $settings['facebook_id'] : '';
|
| 113 |
|
| 114 |
+
return $this->get_view_li( $this->id, 'https://www.facebook.com/' . $facebook_id, $total, __( 'likes', 'social-count-plus' ), $text_color, $settings );
|
| 115 |
}
|
| 116 |
}
|
includes/counters/class-social-count-plus-github-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_GitHub_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_GitHub_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . sanitize_text_field( $settings['github_username'] ), array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || 200 != $this->connection['response']['code'] ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$_data = json_decode( $this->connection['body'], true );
|
| 57 |
|
|
@@ -60,7 +60,7 @@ class Social_Count_Plus_GitHub_Counter extends Social_Count_Plus_Counter {
|
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
-
$this->total = ( isset( $cache[
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
|
@@ -77,9 +77,9 @@ class Social_Count_Plus_GitHub_Counter extends Social_Count_Plus_Counter {
|
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
-
public
|
| 81 |
$github_username = ! empty( $settings['github_username'] ) ? $settings['github_username'] : '';
|
| 82 |
|
| 83 |
-
return
|
| 84 |
}
|
| 85 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'github';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . sanitize_text_field( $settings['github_username'] ), array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || 200 != $this->connection['response']['code'] ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$_data = json_decode( $this->connection['body'], true );
|
| 57 |
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 81 |
$github_username = ! empty( $settings['github_username'] ) ? $settings['github_username'] : '';
|
| 82 |
|
| 83 |
+
return $this->get_view_li( $this->id, 'https://github.com/' . $github_username, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 84 |
}
|
| 85 |
}
|
includes/counters/class-social-count-plus-googleplus-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_GooglePlus_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_GooglePlus_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['googleplus_id'] . '?key=' . $settings['googleplus_api_key'], array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$_data = json_decode( $this->connection['body'], true );
|
| 57 |
|
|
@@ -60,7 +60,7 @@ class Social_Count_Plus_GooglePlus_Counter extends Social_Count_Plus_Counter {
|
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
-
$this->total = ( isset( $cache[
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
|
@@ -77,9 +77,9 @@ class Social_Count_Plus_GooglePlus_Counter extends Social_Count_Plus_Counter {
|
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
-
public
|
| 81 |
$googleplus_id = ! empty( $settings['googleplus_id'] ) ? $settings['googleplus_id'] : '';
|
| 82 |
|
| 83 |
-
return
|
| 84 |
}
|
| 85 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'googleplus';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['googleplus_id'] . '?key=' . $settings['googleplus_api_key'], array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$_data = json_decode( $this->connection['body'], true );
|
| 57 |
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 81 |
$googleplus_id = ! empty( $settings['googleplus_id'] ) ? $settings['googleplus_id'] : '';
|
| 82 |
|
| 83 |
+
return $this->get_view_li( $this->id, 'https://plus.google.com/' . $googleplus_id, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 84 |
}
|
| 85 |
}
|
includes/counters/class-social-count-plus-instagram-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Instagram_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_Instagram_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['instagram_user_id'] . '/?access_token=' . $settings['instagram_access_token'], array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$response = json_decode( $this->connection['body'], true );
|
| 57 |
|
|
@@ -64,7 +64,7 @@ class Social_Count_Plus_Instagram_Counter extends Social_Count_Plus_Counter {
|
|
| 64 |
|
| 65 |
$this->total = $count;
|
| 66 |
} else {
|
| 67 |
-
$this->total = ( isset( $cache[
|
| 68 |
}
|
| 69 |
}
|
| 70 |
}
|
|
@@ -81,9 +81,9 @@ class Social_Count_Plus_Instagram_Counter extends Social_Count_Plus_Counter {
|
|
| 81 |
*
|
| 82 |
* @return string
|
| 83 |
*/
|
| 84 |
-
public
|
| 85 |
$instagram_username = ! empty( $settings['instagram_username'] ) ? $settings['instagram_username'] : '';
|
| 86 |
|
| 87 |
-
return
|
| 88 |
}
|
| 89 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'instagram';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['instagram_user_id'] . '/?access_token=' . $settings['instagram_access_token'], array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$response = json_decode( $this->connection['body'], true );
|
| 57 |
|
| 64 |
|
| 65 |
$this->total = $count;
|
| 66 |
} else {
|
| 67 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 68 |
}
|
| 69 |
}
|
| 70 |
}
|
| 81 |
*
|
| 82 |
* @return string
|
| 83 |
*/
|
| 84 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 85 |
$instagram_username = ! empty( $settings['instagram_username'] ) ? $settings['instagram_username'] : '';
|
| 86 |
|
| 87 |
+
return $this->get_view_li( $this->id, 'https://instagram.com/' . $instagram_username, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 88 |
}
|
| 89 |
}
|
includes/counters/class-social-count-plus-linkedin-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_LinkedIn_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -58,14 +58,14 @@ class Social_Count_Plus_LinkedIn_Counter extends Social_Count_Plus_Counter {
|
|
| 58 |
$this->connection = wp_remote_get( sprintf( $this->api_url, sanitize_text_field( $settings['linkedin_company_id'] ) ), $params );
|
| 59 |
|
| 60 |
if ( is_wp_error( $this->connection ) || 200 != $this->connection['response']['code'] ) {
|
| 61 |
-
$this->total = ( isset( $cache[
|
| 62 |
} else {
|
| 63 |
$count = intval( $this->connection['body'] );
|
| 64 |
|
| 65 |
if ( 0 < $count ) {
|
| 66 |
$this->total = $count;
|
| 67 |
} else {
|
| 68 |
-
$this->total = ( isset( $cache[
|
| 69 |
}
|
| 70 |
}
|
| 71 |
}
|
|
@@ -82,9 +82,9 @@ class Social_Count_Plus_LinkedIn_Counter extends Social_Count_Plus_Counter {
|
|
| 82 |
*
|
| 83 |
* @return string
|
| 84 |
*/
|
| 85 |
-
public
|
| 86 |
$linkedin_company_id = ! empty( $settings['linkedin_company_id'] ) ? $settings['linkedin_company_id'] : '';
|
| 87 |
|
| 88 |
-
return
|
| 89 |
}
|
| 90 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'linkedin';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 58 |
$this->connection = wp_remote_get( sprintf( $this->api_url, sanitize_text_field( $settings['linkedin_company_id'] ) ), $params );
|
| 59 |
|
| 60 |
if ( is_wp_error( $this->connection ) || 200 != $this->connection['response']['code'] ) {
|
| 61 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 62 |
} else {
|
| 63 |
$count = intval( $this->connection['body'] );
|
| 64 |
|
| 65 |
if ( 0 < $count ) {
|
| 66 |
$this->total = $count;
|
| 67 |
} else {
|
| 68 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 69 |
}
|
| 70 |
}
|
| 71 |
}
|
| 82 |
*
|
| 83 |
* @return string
|
| 84 |
*/
|
| 85 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 86 |
$linkedin_company_id = ! empty( $settings['linkedin_company_id'] ) ? $settings['linkedin_company_id'] : '';
|
| 87 |
|
| 88 |
+
return $this->get_view_li( $this->id, 'https://www.linkedin.com/company/' . $linkedin_company_id, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 89 |
}
|
| 90 |
}
|
includes/counters/class-social-count-plus-pinterest-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Pinterest_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_Pinterest_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . sanitize_text_field( $settings['pinterest_username'] ), array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$count = 0;
|
| 57 |
|
|
@@ -66,7 +66,7 @@ class Social_Count_Plus_Pinterest_Counter extends Social_Count_Plus_Counter {
|
|
| 66 |
if ( 0 < $count ) {
|
| 67 |
$this->total = $count;
|
| 68 |
} else {
|
| 69 |
-
$this->total = ( isset( $cache[
|
| 70 |
}
|
| 71 |
|
| 72 |
// Just to make the system report more clear...
|
|
@@ -86,9 +86,9 @@ class Social_Count_Plus_Pinterest_Counter extends Social_Count_Plus_Counter {
|
|
| 86 |
*
|
| 87 |
* @return string
|
| 88 |
*/
|
| 89 |
-
public
|
| 90 |
$pinterest_username = ! empty( $settings['pinterest_username'] ) ? $settings['pinterest_username'] : '';
|
| 91 |
|
| 92 |
-
return
|
| 93 |
}
|
| 94 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'pinterest';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . sanitize_text_field( $settings['pinterest_username'] ), array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$count = 0;
|
| 57 |
|
| 66 |
if ( 0 < $count ) {
|
| 67 |
$this->total = $count;
|
| 68 |
} else {
|
| 69 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 70 |
}
|
| 71 |
|
| 72 |
// Just to make the system report more clear...
|
| 86 |
*
|
| 87 |
* @return string
|
| 88 |
*/
|
| 89 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 90 |
$pinterest_username = ! empty( $settings['pinterest_username'] ) ? $settings['pinterest_username'] : '';
|
| 91 |
|
| 92 |
+
return $this->get_view_li( $this->id, 'https://www.pinterest.com/' . $pinterest_username, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 93 |
}
|
| 94 |
}
|
includes/counters/class-social-count-plus-posts-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Posts_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -52,7 +52,7 @@ class Social_Count_Plus_Posts_Counter extends Social_Count_Plus_Counter {
|
|
| 52 |
$data = wp_count_posts( $post_type );
|
| 53 |
|
| 54 |
if ( is_wp_error( $data ) ) {
|
| 55 |
-
$this->total = ( isset( $cache[
|
| 56 |
} else {
|
| 57 |
$count = intval( $data->publish );
|
| 58 |
|
|
@@ -72,7 +72,7 @@ class Social_Count_Plus_Posts_Counter extends Social_Count_Plus_Counter {
|
|
| 72 |
*
|
| 73 |
* @return string
|
| 74 |
*/
|
| 75 |
-
public
|
| 76 |
$post_type = ( isset( $settings['posts_post_type'] ) && ! empty( $settings['posts_post_type'] ) ) ? $settings['posts_post_type'] : 'post';
|
| 77 |
$post_object = get_post_type_object( $post_type );
|
| 78 |
$url = ! empty( $settings['posts_url'] ) ? $settings['posts_url'] : get_home_url();
|
|
@@ -80,6 +80,6 @@ class Social_Count_Plus_Posts_Counter extends Social_Count_Plus_Counter {
|
|
| 80 |
unset( $settings['target_blank'] );
|
| 81 |
unset( $settings['rel_nofollow'] );
|
| 82 |
|
| 83 |
-
return
|
| 84 |
}
|
| 85 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'posts';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 52 |
$data = wp_count_posts( $post_type );
|
| 53 |
|
| 54 |
if ( is_wp_error( $data ) ) {
|
| 55 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 56 |
} else {
|
| 57 |
$count = intval( $data->publish );
|
| 58 |
|
| 72 |
*
|
| 73 |
* @return string
|
| 74 |
*/
|
| 75 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 76 |
$post_type = ( isset( $settings['posts_post_type'] ) && ! empty( $settings['posts_post_type'] ) ) ? $settings['posts_post_type'] : 'post';
|
| 77 |
$post_object = get_post_type_object( $post_type );
|
| 78 |
$url = ! empty( $settings['posts_url'] ) ? $settings['posts_url'] : get_home_url();
|
| 80 |
unset( $settings['target_blank'] );
|
| 81 |
unset( $settings['rel_nofollow'] );
|
| 82 |
|
| 83 |
+
return $this->get_view_li( $this->id, $url, $total, strtolower( $post_object->label ), $text_color, $settings );
|
| 84 |
}
|
| 85 |
}
|
includes/counters/class-social-count-plus-soundcloud-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_SoundCloud_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_SoundCloud_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['soundcloud_username'] . '.json?client_id=' . $settings['soundcloud_client_id'], array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$response = json_decode( $this->connection['body'], true );
|
| 57 |
|
|
@@ -60,7 +60,7 @@ class Social_Count_Plus_SoundCloud_Counter extends Social_Count_Plus_Counter {
|
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
-
$this->total = ( isset( $cache[
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
|
@@ -77,9 +77,9 @@ class Social_Count_Plus_SoundCloud_Counter extends Social_Count_Plus_Counter {
|
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
-
public
|
| 81 |
$soundcloud_username = ! empty( $settings['soundcloud_username'] ) ? $settings['soundcloud_username'] : '';
|
| 82 |
|
| 83 |
-
return
|
| 84 |
}
|
| 85 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'soundcloud';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['soundcloud_username'] . '.json?client_id=' . $settings['soundcloud_client_id'], array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$response = json_decode( $this->connection['body'], true );
|
| 57 |
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 81 |
$soundcloud_username = ! empty( $settings['soundcloud_username'] ) ? $settings['soundcloud_username'] : '';
|
| 82 |
|
| 83 |
+
return $this->get_view_li( $this->id, 'https://soundcloud.com/' . $soundcloud_username, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 84 |
}
|
| 85 |
}
|
includes/counters/class-social-count-plus-steam-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Steam_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_Steam_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['steam_group_name'] . '/memberslistxml/?xml=1', array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
try {
|
| 57 |
$xml = @new SimpleXmlElement( $this->connection['body'], LIBXML_NOCDATA );
|
|
@@ -59,7 +59,7 @@ class Social_Count_Plus_Steam_Counter extends Social_Count_Plus_Counter {
|
|
| 59 |
|
| 60 |
$this->total = $count;
|
| 61 |
} catch ( Exception $e ) {
|
| 62 |
-
$this->total = ( isset( $cache[
|
| 63 |
}
|
| 64 |
}
|
| 65 |
}
|
|
@@ -76,9 +76,9 @@ class Social_Count_Plus_Steam_Counter extends Social_Count_Plus_Counter {
|
|
| 76 |
*
|
| 77 |
* @return string
|
| 78 |
*/
|
| 79 |
-
public
|
| 80 |
$steam_group_name = ! empty( $settings['steam_group_name'] ) ? $settings['steam_group_name'] : '';
|
| 81 |
|
| 82 |
-
return
|
| 83 |
}
|
| 84 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'steam';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( $this->api_url . $settings['steam_group_name'] . '/memberslistxml/?xml=1', array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || '400' <= $this->connection['response']['code'] ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
try {
|
| 57 |
$xml = @new SimpleXmlElement( $this->connection['body'], LIBXML_NOCDATA );
|
| 59 |
|
| 60 |
$this->total = $count;
|
| 61 |
} catch ( Exception $e ) {
|
| 62 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 63 |
}
|
| 64 |
}
|
| 65 |
}
|
| 76 |
*
|
| 77 |
* @return string
|
| 78 |
*/
|
| 79 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 80 |
$steam_group_name = ! empty( $settings['steam_group_name'] ) ? $settings['steam_group_name'] : '';
|
| 81 |
|
| 82 |
+
return $this->get_view_li( $this->id, 'https://steamcommunity.com/groups/' . $steam_group_name, $total, __( 'members', 'social-count-plus' ), $text_color, $settings );
|
| 83 |
}
|
| 84 |
}
|
includes/counters/class-social-count-plus-tumblr-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Tumblr_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -155,7 +155,7 @@ class Social_Count_Plus_Tumblr_Counter extends Social_Count_Plus_Counter {
|
|
| 155 |
$this->connection = wp_remote_get( sprintf( $this->api_url, $hostname ), $params );
|
| 156 |
|
| 157 |
if ( is_wp_error( $this->connection ) || ( isset( $this->connection['response']['code'] ) && 200 != $this->connection['response']['code'] ) ) {
|
| 158 |
-
$this->total = ( isset( $cache[
|
| 159 |
} else {
|
| 160 |
$_data = json_decode( $this->connection['body'], true );
|
| 161 |
|
|
@@ -164,7 +164,7 @@ class Social_Count_Plus_Tumblr_Counter extends Social_Count_Plus_Counter {
|
|
| 164 |
|
| 165 |
$this->total = $count;
|
| 166 |
} else {
|
| 167 |
-
$this->total = ( isset( $cache[
|
| 168 |
}
|
| 169 |
}
|
| 170 |
}
|
|
@@ -181,9 +181,9 @@ class Social_Count_Plus_Tumblr_Counter extends Social_Count_Plus_Counter {
|
|
| 181 |
*
|
| 182 |
* @return string
|
| 183 |
*/
|
| 184 |
-
public
|
| 185 |
$tumblr_hostname = ! empty( $settings['tumblr_hostname'] ) ? $settings['tumblr_hostname'] : '';
|
| 186 |
|
| 187 |
-
return
|
| 188 |
}
|
| 189 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'tumblr';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 155 |
$this->connection = wp_remote_get( sprintf( $this->api_url, $hostname ), $params );
|
| 156 |
|
| 157 |
if ( is_wp_error( $this->connection ) || ( isset( $this->connection['response']['code'] ) && 200 != $this->connection['response']['code'] ) ) {
|
| 158 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 159 |
} else {
|
| 160 |
$_data = json_decode( $this->connection['body'], true );
|
| 161 |
|
| 164 |
|
| 165 |
$this->total = $count;
|
| 166 |
} else {
|
| 167 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 168 |
}
|
| 169 |
}
|
| 170 |
}
|
| 181 |
*
|
| 182 |
* @return string
|
| 183 |
*/
|
| 184 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 185 |
$tumblr_hostname = ! empty( $settings['tumblr_hostname'] ) ? $settings['tumblr_hostname'] : '';
|
| 186 |
|
| 187 |
+
return $this->get_view_li( $this->id, $tumblr_hostname, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 188 |
}
|
| 189 |
}
|
includes/counters/class-social-count-plus-twitch-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Twitch_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -58,7 +58,7 @@ class Social_Count_Plus_Twitch_Counter extends Social_Count_Plus_Counter {
|
|
| 58 |
$this->connection = wp_remote_get( $this->api_url . sanitize_text_field( $settings['twitch_username'] ), $params );
|
| 59 |
|
| 60 |
if ( is_wp_error( $this->connection ) || ( isset( $this->connection['response']['code'] ) && 200 != $this->connection['response']['code'] ) ) {
|
| 61 |
-
$this->total = ( isset( $cache[
|
| 62 |
} else {
|
| 63 |
$_data = json_decode( $this->connection['body'], true );
|
| 64 |
|
|
@@ -67,7 +67,7 @@ class Social_Count_Plus_Twitch_Counter extends Social_Count_Plus_Counter {
|
|
| 67 |
|
| 68 |
$this->total = $count;
|
| 69 |
} else {
|
| 70 |
-
$this->total = ( isset( $cache[
|
| 71 |
}
|
| 72 |
}
|
| 73 |
}
|
|
@@ -84,9 +84,9 @@ class Social_Count_Plus_Twitch_Counter extends Social_Count_Plus_Counter {
|
|
| 84 |
*
|
| 85 |
* @return string
|
| 86 |
*/
|
| 87 |
-
public
|
| 88 |
$twitch_username = ! empty( $settings['twitch_username'] ) ? $settings['twitch_username'] : '';
|
| 89 |
|
| 90 |
-
return
|
| 91 |
}
|
| 92 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'twitch';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 58 |
$this->connection = wp_remote_get( $this->api_url . sanitize_text_field( $settings['twitch_username'] ), $params );
|
| 59 |
|
| 60 |
if ( is_wp_error( $this->connection ) || ( isset( $this->connection['response']['code'] ) && 200 != $this->connection['response']['code'] ) ) {
|
| 61 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 62 |
} else {
|
| 63 |
$_data = json_decode( $this->connection['body'], true );
|
| 64 |
|
| 67 |
|
| 68 |
$this->total = $count;
|
| 69 |
} else {
|
| 70 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 71 |
}
|
| 72 |
}
|
| 73 |
}
|
| 84 |
*
|
| 85 |
* @return string
|
| 86 |
*/
|
| 87 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 88 |
$twitch_username = ! empty( $settings['twitch_username'] ) ? $settings['twitch_username'] : '';
|
| 89 |
|
| 90 |
+
return $this->get_view_li( $this->id, 'http://www.twitch.tv/' . $twitch_username . '/profile', $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 91 |
}
|
| 92 |
}
|
includes/counters/class-social-count-plus-twitter-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Twitter_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -156,7 +156,7 @@ class Social_Count_Plus_Twitter_Counter extends Social_Count_Plus_Counter {
|
|
| 156 |
$this->connection = wp_remote_get( $this->api_url . '?screen_name=' . $user, $params );
|
| 157 |
|
| 158 |
if ( is_wp_error( $this->connection ) ) {
|
| 159 |
-
$this->total = ( isset( $cache[
|
| 160 |
} else {
|
| 161 |
$_data = json_decode( $this->connection['body'], true );
|
| 162 |
|
|
@@ -165,7 +165,7 @@ class Social_Count_Plus_Twitter_Counter extends Social_Count_Plus_Counter {
|
|
| 165 |
|
| 166 |
$this->total = $count;
|
| 167 |
} else {
|
| 168 |
-
$this->total = ( isset( $cache[
|
| 169 |
}
|
| 170 |
}
|
| 171 |
}
|
|
@@ -182,9 +182,9 @@ class Social_Count_Plus_Twitter_Counter extends Social_Count_Plus_Counter {
|
|
| 182 |
*
|
| 183 |
* @return string
|
| 184 |
*/
|
| 185 |
-
public
|
| 186 |
$twitter_user = ! empty( $settings['twitter_user'] ) ? $settings['twitter_user'] : '';
|
| 187 |
|
| 188 |
-
return
|
| 189 |
}
|
| 190 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'twitter';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 156 |
$this->connection = wp_remote_get( $this->api_url . '?screen_name=' . $user, $params );
|
| 157 |
|
| 158 |
if ( is_wp_error( $this->connection ) ) {
|
| 159 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 160 |
} else {
|
| 161 |
$_data = json_decode( $this->connection['body'], true );
|
| 162 |
|
| 165 |
|
| 166 |
$this->total = $count;
|
| 167 |
} else {
|
| 168 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 169 |
}
|
| 170 |
}
|
| 171 |
}
|
| 182 |
*
|
| 183 |
* @return string
|
| 184 |
*/
|
| 185 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 186 |
$twitter_user = ! empty( $settings['twitter_user'] ) ? $settings['twitter_user'] : '';
|
| 187 |
|
| 188 |
+
return $this->get_view_li( $this->id, 'https://twitter.com/' . $twitter_user, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 189 |
}
|
| 190 |
}
|
includes/counters/class-social-count-plus-users-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Users_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -50,7 +50,9 @@ class Social_Count_Plus_Users_Counter extends Social_Count_Plus_Counter {
|
|
| 50 |
if ( $this->is_available( $settings ) ) {
|
| 51 |
$users = count_users();
|
| 52 |
|
| 53 |
-
if (
|
|
|
|
|
|
|
| 54 |
$this->total = intval( $users['avail_roles'][ $settings['users_user_role'] ] );
|
| 55 |
} else {
|
| 56 |
$this->total = 0;
|
|
@@ -69,13 +71,13 @@ class Social_Count_Plus_Users_Counter extends Social_Count_Plus_Counter {
|
|
| 69 |
*
|
| 70 |
* @return string
|
| 71 |
*/
|
| 72 |
-
public
|
| 73 |
$url = ! empty( $settings['users_url'] ) ? $settings['users_url'] : get_home_url();
|
| 74 |
$label = ! empty( $settings['users_label'] ) ? $settings['users_label'] : __( 'users', 'social-count-plus' );
|
| 75 |
|
| 76 |
unset( $settings['target_blank'] );
|
| 77 |
unset( $settings['rel_nofollow'] );
|
| 78 |
|
| 79 |
-
return
|
| 80 |
}
|
| 81 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'users';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 50 |
if ( $this->is_available( $settings ) ) {
|
| 51 |
$users = count_users();
|
| 52 |
|
| 53 |
+
if ( 'all' == $settings['users_user_role'] ) {
|
| 54 |
+
$this->total = intval( $users['total_users'] );
|
| 55 |
+
} else if ( ! empty( $users['avail_roles'][ $settings['users_user_role'] ] ) ) {
|
| 56 |
$this->total = intval( $users['avail_roles'][ $settings['users_user_role'] ] );
|
| 57 |
} else {
|
| 58 |
$this->total = 0;
|
| 71 |
*
|
| 72 |
* @return string
|
| 73 |
*/
|
| 74 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 75 |
$url = ! empty( $settings['users_url'] ) ? $settings['users_url'] : get_home_url();
|
| 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( $this->id, $url, $total, $label, $text_color, $settings );
|
| 82 |
}
|
| 83 |
}
|
includes/counters/class-social-count-plus-vimeo-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_Vimeo_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -51,7 +51,7 @@ class Social_Count_Plus_Vimeo_Counter extends Social_Count_Plus_Counter {
|
|
| 51 |
$this->connection = wp_remote_get( sprintf( $this->api_url, sanitize_text_field( $settings['vimeo_username'] ) ), array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || 200 != $this->connection['response']['code'] ) {
|
| 54 |
-
$this->total = ( isset( $cache[
|
| 55 |
} else {
|
| 56 |
$_data = json_decode( $this->connection['body'], true );
|
| 57 |
|
|
@@ -60,7 +60,7 @@ class Social_Count_Plus_Vimeo_Counter extends Social_Count_Plus_Counter {
|
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
-
$this->total = ( isset( $cache[
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
|
@@ -77,9 +77,9 @@ class Social_Count_Plus_Vimeo_Counter extends Social_Count_Plus_Counter {
|
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
-
public
|
| 81 |
$vimeo_username = ! empty( $settings['vimeo_username'] ) ? $settings['vimeo_username'] : '';
|
| 82 |
|
| 83 |
-
return
|
| 84 |
}
|
| 85 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'vimeo';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 51 |
$this->connection = wp_remote_get( sprintf( $this->api_url, sanitize_text_field( $settings['vimeo_username'] ) ), array( 'timeout' => 60 ) );
|
| 52 |
|
| 53 |
if ( is_wp_error( $this->connection ) || 200 != $this->connection['response']['code'] ) {
|
| 54 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 55 |
} else {
|
| 56 |
$_data = json_decode( $this->connection['body'], true );
|
| 57 |
|
| 60 |
|
| 61 |
$this->total = $count;
|
| 62 |
} else {
|
| 63 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 64 |
}
|
| 65 |
}
|
| 66 |
}
|
| 77 |
*
|
| 78 |
* @return string
|
| 79 |
*/
|
| 80 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 81 |
$vimeo_username = ! empty( $settings['vimeo_username'] ) ? $settings['vimeo_username'] : '';
|
| 82 |
|
| 83 |
+
return $this->get_view_li( $this->id, 'https://vimeo.com/' . $vimeo_username, $total, __( 'followers', 'social-count-plus' ), $text_color, $settings );
|
| 84 |
}
|
| 85 |
}
|
includes/counters/class-social-count-plus-youtube-counter.php
CHANGED
|
@@ -18,7 +18,7 @@ class Social_Count_Plus_YouTube_Counter extends Social_Count_Plus_Counter {
|
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
-
public
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
|
@@ -58,7 +58,7 @@ class Social_Count_Plus_YouTube_Counter extends Social_Count_Plus_Counter {
|
|
| 58 |
$this->connection = wp_remote_get( $url, array( 'timeout' => 60 ) );
|
| 59 |
|
| 60 |
if ( is_wp_error( $this->connection ) || 400 <= $this->connection['response']['code'] ) {
|
| 61 |
-
$this->total = ( isset( $cache[
|
| 62 |
} else {
|
| 63 |
$_data = json_decode( $this->connection['body'], true );
|
| 64 |
|
|
@@ -67,7 +67,7 @@ class Social_Count_Plus_YouTube_Counter extends Social_Count_Plus_Counter {
|
|
| 67 |
|
| 68 |
$this->total = $count;
|
| 69 |
} else {
|
| 70 |
-
$this->total = ( isset( $cache[
|
| 71 |
}
|
| 72 |
}
|
| 73 |
}
|
|
@@ -84,9 +84,9 @@ class Social_Count_Plus_YouTube_Counter extends Social_Count_Plus_Counter {
|
|
| 84 |
*
|
| 85 |
* @return string
|
| 86 |
*/
|
| 87 |
-
public
|
| 88 |
$youtube_url = ! empty( $settings['youtube_url'] ) ? $settings['youtube_url'] : '';
|
| 89 |
|
| 90 |
-
return
|
| 91 |
}
|
| 92 |
}
|
| 18 |
*
|
| 19 |
* @var string
|
| 20 |
*/
|
| 21 |
+
public $id = 'youtube';
|
| 22 |
|
| 23 |
/**
|
| 24 |
* API URL.
|
| 58 |
$this->connection = wp_remote_get( $url, array( 'timeout' => 60 ) );
|
| 59 |
|
| 60 |
if ( is_wp_error( $this->connection ) || 400 <= $this->connection['response']['code'] ) {
|
| 61 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 62 |
} else {
|
| 63 |
$_data = json_decode( $this->connection['body'], true );
|
| 64 |
|
| 67 |
|
| 68 |
$this->total = $count;
|
| 69 |
} else {
|
| 70 |
+
$this->total = ( isset( $cache[ $this->id ] ) ) ? $cache[ $this->id ] : 0;
|
| 71 |
}
|
| 72 |
}
|
| 73 |
}
|
| 84 |
*
|
| 85 |
* @return string
|
| 86 |
*/
|
| 87 |
+
public function get_view( $settings, $total, $text_color ) {
|
| 88 |
$youtube_url = ! empty( $settings['youtube_url'] ) ? $settings['youtube_url'] : '';
|
| 89 |
|
| 90 |
+
return $this->get_view_li( $this->id, $youtube_url, $total, __( 'subscribers', 'social-count-plus' ), $text_color, $settings );
|
| 91 |
}
|
| 92 |
}
|
languages/social-count-plus-es_AR.mo
CHANGED
|
Binary file
|
languages/social-count-plus-es_AR.po
CHANGED
|
@@ -5,8 +5,8 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
-
"PO-Revision-Date: 2015-09-
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/claudiosmweb/social-count-plus/language/es_AR/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
|
@@ -35,7 +35,7 @@ msgid ""
|
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr ""
|
| 41 |
|
|
@@ -50,7 +50,7 @@ msgid "URL"
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr ""
|
| 56 |
|
|
@@ -85,7 +85,7 @@ msgid "Facebook App Secret"
|
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
|
@@ -102,7 +102,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
|
@@ -137,7 +137,7 @@ msgid ""
|
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr ""
|
| 143 |
|
|
@@ -170,7 +170,7 @@ msgid "Insert your Instagram Access Token."
|
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
|
@@ -195,7 +195,7 @@ msgid "Get your Access Token in %s."
|
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
|
@@ -212,7 +212,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr ""
|
| 218 |
|
|
@@ -225,7 +225,7 @@ msgid "Post Type"
|
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr ""
|
| 231 |
|
|
@@ -250,7 +250,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr ""
|
| 256 |
|
|
@@ -267,7 +267,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
|
@@ -300,7 +300,7 @@ msgid "Tumblr Token Secret"
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
|
@@ -317,7 +317,7 @@ msgid "Insert your Twitch username."
|
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr ""
|
| 323 |
|
|
@@ -354,7 +354,7 @@ msgid "Twitter Access token secret"
|
|
| 354 |
msgstr ""
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
|
@@ -371,12 +371,12 @@ msgid "Label"
|
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
|
@@ -393,7 +393,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr ""
|
| 399 |
|
|
@@ -427,7 +427,7 @@ msgid ""
|
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr ""
|
|
@@ -474,54 +474,58 @@ msgstr ""
|
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
msgid "General Info"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 482 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 483 |
msgid "Social Count Plus Version"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 487 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 488 |
msgid "WordPress Version"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 492 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 493 |
msgid "WP Multisite Enabled"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 497 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 498 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 499 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 500 |
msgid "Yes"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 504 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 505 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 506 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 507 |
msgid "No"
|
| 508 |
msgstr ""
|
| 509 |
|
| 510 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 511 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 512 |
msgid "Web Server Info"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 516 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 517 |
msgid "PHP Version"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 521 |
msgid "Social Connections"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 525 |
msgid ""
|
| 526 |
"You do not have any counter that needs to connect remotely currently active"
|
| 527 |
msgstr ""
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+00:00\n"
|
| 9 |
+
"PO-Revision-Date: 2015-09-05 03:10+0000\n"
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/claudiosmweb/social-count-plus/language/es_AR/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr ""
|
| 41 |
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr ""
|
| 56 |
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr ""
|
| 143 |
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr ""
|
| 218 |
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr ""
|
| 231 |
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr ""
|
| 256 |
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr ""
|
| 323 |
|
| 354 |
msgstr ""
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr ""
|
| 399 |
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr ""
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 478 |
+
msgid "All Roles"
|
| 479 |
+
msgstr ""
|
| 480 |
+
|
| 481 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 482 |
msgid "General Info"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 486 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 487 |
msgid "Social Count Plus Version"
|
| 488 |
msgstr ""
|
| 489 |
|
| 490 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 491 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 492 |
msgid "WordPress Version"
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 496 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 497 |
msgid "WP Multisite Enabled"
|
| 498 |
msgstr ""
|
| 499 |
|
|
|
|
| 500 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 501 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 502 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 503 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 504 |
msgid "Yes"
|
| 505 |
msgstr ""
|
| 506 |
|
|
|
|
| 507 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 508 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 509 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 510 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 511 |
msgid "No"
|
| 512 |
msgstr ""
|
| 513 |
|
| 514 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 515 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 516 |
msgid "Web Server Info"
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 520 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 521 |
msgid "PHP Version"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 525 |
msgid "Social Connections"
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 529 |
msgid ""
|
| 530 |
"You do not have any counter that needs to connect remotely currently active"
|
| 531 |
msgstr ""
|
languages/social-count-plus-fr_FR.mo
CHANGED
|
Binary file
|
languages/social-count-plus-fr_FR.po
CHANGED
|
@@ -5,8 +5,8 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
-
"PO-Revision-Date: 2015-09-
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: French (France) (http://www.transifex.com/claudiosmweb/social-count-plus/language/fr_FR/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
|
@@ -35,7 +35,7 @@ msgid ""
|
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Commentaires"
|
| 41 |
|
|
@@ -50,7 +50,7 @@ msgid "URL"
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
|
@@ -85,7 +85,7 @@ msgid "Facebook App Secret"
|
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
|
@@ -102,7 +102,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
|
@@ -137,7 +137,7 @@ msgid ""
|
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
|
@@ -170,7 +170,7 @@ msgid "Insert your Instagram Access Token."
|
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
|
@@ -195,7 +195,7 @@ msgid "Get your Access Token in %s."
|
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
|
@@ -212,7 +212,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Posts"
|
| 218 |
|
|
@@ -225,7 +225,7 @@ msgid "Post Type"
|
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
|
@@ -250,7 +250,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
|
@@ -267,7 +267,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
|
@@ -300,7 +300,7 @@ msgid "Tumblr Token Secret"
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
|
@@ -317,7 +317,7 @@ msgid "Insert your Twitch username."
|
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
|
@@ -354,7 +354,7 @@ msgid "Twitter Access token secret"
|
|
| 354 |
msgstr "Twitter Access token secret"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
|
@@ -371,12 +371,12 @@ msgid "Label"
|
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
|
@@ -393,7 +393,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
|
@@ -427,7 +427,7 @@ msgid ""
|
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Paramètres"
|
|
@@ -474,54 +474,58 @@ msgstr "Social Count Plus"
|
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Activer / Désactiver"
|
| 476 |
|
| 477 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
msgid "General Info"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 482 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 483 |
msgid "Social Count Plus Version"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 487 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 488 |
msgid "WordPress Version"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 492 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 493 |
msgid "WP Multisite Enabled"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 497 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 498 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 499 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 500 |
msgid "Yes"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 504 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 505 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 506 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 507 |
msgid "No"
|
| 508 |
msgstr ""
|
| 509 |
|
| 510 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 511 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 512 |
msgid "Web Server Info"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 516 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 517 |
msgid "PHP Version"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 521 |
msgid "Social Connections"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 525 |
msgid ""
|
| 526 |
"You do not have any counter that needs to connect remotely currently active"
|
| 527 |
msgstr ""
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+00:00\n"
|
| 9 |
+
"PO-Revision-Date: 2015-09-05 03:10+0000\n"
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: French (France) (http://www.transifex.com/claudiosmweb/social-count-plus/language/fr_FR/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Commentaires"
|
| 41 |
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Posts"
|
| 218 |
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
| 354 |
msgstr "Twitter Access token secret"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Paramètres"
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Activer / Désactiver"
|
| 476 |
|
| 477 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 478 |
+
msgid "All Roles"
|
| 479 |
+
msgstr ""
|
| 480 |
+
|
| 481 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 482 |
msgid "General Info"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 486 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 487 |
msgid "Social Count Plus Version"
|
| 488 |
msgstr ""
|
| 489 |
|
| 490 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 491 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 492 |
msgid "WordPress Version"
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 496 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 497 |
msgid "WP Multisite Enabled"
|
| 498 |
msgstr ""
|
| 499 |
|
|
|
|
| 500 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 501 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 502 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 503 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 504 |
msgid "Yes"
|
| 505 |
msgstr ""
|
| 506 |
|
|
|
|
| 507 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 508 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 509 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 510 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 511 |
msgid "No"
|
| 512 |
msgstr ""
|
| 513 |
|
| 514 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 515 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 516 |
msgid "Web Server Info"
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 520 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 521 |
msgid "PHP Version"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 525 |
msgid "Social Connections"
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 529 |
msgid ""
|
| 530 |
"You do not have any counter that needs to connect remotely currently active"
|
| 531 |
msgstr ""
|
languages/social-count-plus-pt_BR.mo
CHANGED
|
Binary file
|
languages/social-count-plus-pt_BR.po
CHANGED
|
@@ -6,8 +6,8 @@ msgid ""
|
|
| 6 |
msgstr ""
|
| 7 |
"Project-Id-Version: Social Count Plus\n"
|
| 8 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 9 |
-
"POT-Creation-Date: 2015-09-
|
| 10 |
-
"PO-Revision-Date: 2015-09-
|
| 11 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 12 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/claudiosmweb/social-count-plus/language/pt_BR/)\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
|
@@ -36,7 +36,7 @@ msgid ""
|
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 39 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 40 |
msgid "Comments"
|
| 41 |
msgstr "Comentários"
|
| 42 |
|
|
@@ -51,7 +51,7 @@ msgid "URL"
|
|
| 51 |
msgstr ""
|
| 52 |
|
| 53 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 54 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 55 |
msgid "Facebook"
|
| 56 |
msgstr "Facebook"
|
| 57 |
|
|
@@ -86,7 +86,7 @@ msgid "Facebook App Secret"
|
|
| 86 |
msgstr ""
|
| 87 |
|
| 88 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 89 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 90 |
msgid "GitHub"
|
| 91 |
msgstr ""
|
| 92 |
|
|
@@ -103,7 +103,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 106 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 107 |
msgid "Google+"
|
| 108 |
msgstr ""
|
| 109 |
|
|
@@ -138,7 +138,7 @@ msgid ""
|
|
| 138 |
msgstr ""
|
| 139 |
|
| 140 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 141 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 142 |
msgid "Instagram"
|
| 143 |
msgstr "Instagram"
|
| 144 |
|
|
@@ -171,7 +171,7 @@ msgid "Insert your Instagram Access Token."
|
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 174 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 175 |
msgid "LinkedIn"
|
| 176 |
msgstr ""
|
| 177 |
|
|
@@ -196,7 +196,7 @@ msgid "Get your Access Token in %s."
|
|
| 196 |
msgstr ""
|
| 197 |
|
| 198 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 199 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 200 |
msgid "Pinterest"
|
| 201 |
msgstr ""
|
| 202 |
|
|
@@ -213,7 +213,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
| 213 |
msgstr ""
|
| 214 |
|
| 215 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 216 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 217 |
msgid "Posts"
|
| 218 |
msgstr "Posts"
|
| 219 |
|
|
@@ -226,7 +226,7 @@ msgid "Post Type"
|
|
| 226 |
msgstr ""
|
| 227 |
|
| 228 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 229 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 230 |
msgid "SoundCloud"
|
| 231 |
msgstr "SoundCloud"
|
| 232 |
|
|
@@ -251,7 +251,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
| 251 |
msgstr ""
|
| 252 |
|
| 253 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 254 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 255 |
msgid "Steam"
|
| 256 |
msgstr "Steam"
|
| 257 |
|
|
@@ -268,7 +268,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
| 268 |
msgstr ""
|
| 269 |
|
| 270 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 271 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 272 |
msgid "Tumblr"
|
| 273 |
msgstr ""
|
| 274 |
|
|
@@ -301,7 +301,7 @@ msgid "Tumblr Token Secret"
|
|
| 301 |
msgstr ""
|
| 302 |
|
| 303 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 304 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 305 |
msgid "Twitch"
|
| 306 |
msgstr ""
|
| 307 |
|
|
@@ -318,7 +318,7 @@ msgid "Insert your Twitch username."
|
|
| 318 |
msgstr ""
|
| 319 |
|
| 320 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 321 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 322 |
msgid "Twitter"
|
| 323 |
msgstr "Twitter"
|
| 324 |
|
|
@@ -355,7 +355,7 @@ msgid "Twitter Access token secret"
|
|
| 355 |
msgstr "Twitter Access token secret"
|
| 356 |
|
| 357 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 358 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 359 |
msgid "Users"
|
| 360 |
msgstr ""
|
| 361 |
|
|
@@ -372,12 +372,12 @@ msgid "Label"
|
|
| 372 |
msgstr ""
|
| 373 |
|
| 374 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 375 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 376 |
msgid "users"
|
| 377 |
msgstr ""
|
| 378 |
|
| 379 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 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:392
|
| 397 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 398 |
msgid "YouTube"
|
| 399 |
msgstr "YouTube"
|
| 400 |
|
|
@@ -428,7 +428,7 @@ msgid ""
|
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 431 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 432 |
#: includes/admin/views/html-settings-page.php:9
|
| 433 |
msgid "Settings"
|
| 434 |
msgstr "Configurações"
|
|
@@ -475,54 +475,58 @@ msgstr "Social Count Plus"
|
|
| 475 |
msgid "Activate/Deactivate"
|
| 476 |
msgstr "Ativar/Desativar"
|
| 477 |
|
| 478 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 479 |
msgid "General Info"
|
| 480 |
msgstr ""
|
| 481 |
|
| 482 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 483 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 484 |
msgid "Social Count Plus Version"
|
| 485 |
msgstr ""
|
| 486 |
|
| 487 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 488 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 489 |
msgid "WordPress Version"
|
| 490 |
msgstr ""
|
| 491 |
|
| 492 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 493 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 494 |
msgid "WP Multisite Enabled"
|
| 495 |
msgstr ""
|
| 496 |
|
| 497 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 498 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 499 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 500 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 501 |
msgid "Yes"
|
| 502 |
msgstr ""
|
| 503 |
|
| 504 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 505 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 506 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 507 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 508 |
msgid "No"
|
| 509 |
msgstr ""
|
| 510 |
|
| 511 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 512 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 513 |
msgid "Web Server Info"
|
| 514 |
msgstr ""
|
| 515 |
|
| 516 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 517 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 518 |
msgid "PHP Version"
|
| 519 |
msgstr ""
|
| 520 |
|
| 521 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 522 |
msgid "Social Connections"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 526 |
msgid ""
|
| 527 |
"You do not have any counter that needs to connect remotely currently active"
|
| 528 |
msgstr ""
|
| 6 |
msgstr ""
|
| 7 |
"Project-Id-Version: Social Count Plus\n"
|
| 8 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 9 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+00:00\n"
|
| 10 |
+
"PO-Revision-Date: 2015-09-05 03:10+0000\n"
|
| 11 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 12 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/claudiosmweb/social-count-plus/language/pt_BR/)\n"
|
| 13 |
"MIME-Version: 1.0\n"
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 39 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 40 |
msgid "Comments"
|
| 41 |
msgstr "Comentários"
|
| 42 |
|
| 51 |
msgstr ""
|
| 52 |
|
| 53 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 54 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 55 |
msgid "Facebook"
|
| 56 |
msgstr "Facebook"
|
| 57 |
|
| 86 |
msgstr ""
|
| 87 |
|
| 88 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 89 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 90 |
msgid "GitHub"
|
| 91 |
msgstr ""
|
| 92 |
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 106 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 107 |
msgid "Google+"
|
| 108 |
msgstr ""
|
| 109 |
|
| 138 |
msgstr ""
|
| 139 |
|
| 140 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 141 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 142 |
msgid "Instagram"
|
| 143 |
msgstr "Instagram"
|
| 144 |
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 174 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 175 |
msgid "LinkedIn"
|
| 176 |
msgstr ""
|
| 177 |
|
| 196 |
msgstr ""
|
| 197 |
|
| 198 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 199 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 200 |
msgid "Pinterest"
|
| 201 |
msgstr ""
|
| 202 |
|
| 213 |
msgstr ""
|
| 214 |
|
| 215 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 216 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 217 |
msgid "Posts"
|
| 218 |
msgstr "Posts"
|
| 219 |
|
| 226 |
msgstr ""
|
| 227 |
|
| 228 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 229 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 230 |
msgid "SoundCloud"
|
| 231 |
msgstr "SoundCloud"
|
| 232 |
|
| 251 |
msgstr ""
|
| 252 |
|
| 253 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 254 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 255 |
msgid "Steam"
|
| 256 |
msgstr "Steam"
|
| 257 |
|
| 268 |
msgstr ""
|
| 269 |
|
| 270 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 271 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 272 |
msgid "Tumblr"
|
| 273 |
msgstr ""
|
| 274 |
|
| 301 |
msgstr ""
|
| 302 |
|
| 303 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 304 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 305 |
msgid "Twitch"
|
| 306 |
msgstr ""
|
| 307 |
|
| 318 |
msgstr ""
|
| 319 |
|
| 320 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 321 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 322 |
msgid "Twitter"
|
| 323 |
msgstr "Twitter"
|
| 324 |
|
| 355 |
msgstr "Twitter Access token secret"
|
| 356 |
|
| 357 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 358 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 359 |
msgid "Users"
|
| 360 |
msgstr ""
|
| 361 |
|
| 372 |
msgstr ""
|
| 373 |
|
| 374 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 375 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 376 |
msgid "users"
|
| 377 |
msgstr ""
|
| 378 |
|
| 379 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 380 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 381 |
msgid "Vimeo"
|
| 382 |
msgstr ""
|
| 383 |
|
| 394 |
msgstr ""
|
| 395 |
|
| 396 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 397 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 398 |
msgid "YouTube"
|
| 399 |
msgstr "YouTube"
|
| 400 |
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 431 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 432 |
#: includes/admin/views/html-settings-page.php:9
|
| 433 |
msgid "Settings"
|
| 434 |
msgstr "Configurações"
|
| 475 |
msgid "Activate/Deactivate"
|
| 476 |
msgstr "Ativar/Desativar"
|
| 477 |
|
| 478 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 479 |
+
msgid "All Roles"
|
| 480 |
+
msgstr ""
|
| 481 |
+
|
| 482 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 483 |
msgid "General Info"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 487 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 488 |
msgid "Social Count Plus Version"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 492 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 493 |
msgid "WordPress Version"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 497 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 498 |
msgid "WP Multisite Enabled"
|
| 499 |
msgstr ""
|
| 500 |
|
|
|
|
| 501 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 502 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 503 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 504 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 505 |
msgid "Yes"
|
| 506 |
msgstr ""
|
| 507 |
|
|
|
|
| 508 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 509 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 510 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 511 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 512 |
msgid "No"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 516 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 517 |
msgid "Web Server Info"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 521 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 522 |
msgid "PHP Version"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 526 |
msgid "Social Connections"
|
| 527 |
msgstr ""
|
| 528 |
|
| 529 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 530 |
msgid ""
|
| 531 |
"You do not have any counter that needs to connect remotely currently active"
|
| 532 |
msgstr ""
|
languages/social-count-plus-ru_RU.mo
CHANGED
|
Binary file
|
languages/social-count-plus-ru_RU.po
CHANGED
|
@@ -5,8 +5,8 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
-
"PO-Revision-Date: 2015-09-
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Russian (Russia) (http://www.transifex.com/claudiosmweb/social-count-plus/language/ru_RU/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
|
@@ -35,7 +35,7 @@ msgid ""
|
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Комментарии"
|
| 41 |
|
|
@@ -50,7 +50,7 @@ msgid "URL"
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
|
@@ -85,7 +85,7 @@ msgid "Facebook App Secret"
|
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
|
@@ -102,7 +102,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
|
@@ -137,7 +137,7 @@ msgid ""
|
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
|
@@ -170,7 +170,7 @@ msgid "Insert your Instagram Access Token."
|
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
|
@@ -195,7 +195,7 @@ msgid "Get your Access Token in %s."
|
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
|
@@ -212,7 +212,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Записи"
|
| 218 |
|
|
@@ -225,7 +225,7 @@ msgid "Post Type"
|
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
|
@@ -250,7 +250,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
|
@@ -267,7 +267,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
|
@@ -300,7 +300,7 @@ msgid "Tumblr Token Secret"
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
|
@@ -317,7 +317,7 @@ msgid "Insert your Twitch username."
|
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
|
@@ -354,7 +354,7 @@ msgid "Twitter Access token secret"
|
|
| 354 |
msgstr "Twitter Access token secret"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
|
@@ -371,12 +371,12 @@ msgid "Label"
|
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
|
@@ -393,7 +393,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
|
@@ -427,7 +427,7 @@ msgid ""
|
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Настройки"
|
|
@@ -474,54 +474,58 @@ msgstr "Соц счетчики +"
|
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Включить/Отключить"
|
| 476 |
|
| 477 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
msgid "General Info"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 482 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 483 |
msgid "Social Count Plus Version"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 487 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 488 |
msgid "WordPress Version"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 492 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 493 |
msgid "WP Multisite Enabled"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 497 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 498 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 499 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 500 |
msgid "Yes"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 504 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 505 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 506 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 507 |
msgid "No"
|
| 508 |
msgstr ""
|
| 509 |
|
| 510 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 511 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 512 |
msgid "Web Server Info"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 516 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 517 |
msgid "PHP Version"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 521 |
msgid "Social Connections"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 525 |
msgid ""
|
| 526 |
"You do not have any counter that needs to connect remotely currently active"
|
| 527 |
msgstr ""
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+00:00\n"
|
| 9 |
+
"PO-Revision-Date: 2015-09-05 03:10+0000\n"
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Russian (Russia) (http://www.transifex.com/claudiosmweb/social-count-plus/language/ru_RU/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Комментарии"
|
| 41 |
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Записи"
|
| 218 |
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
| 354 |
msgstr "Twitter Access token secret"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Настройки"
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Включить/Отключить"
|
| 476 |
|
| 477 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 478 |
+
msgid "All Roles"
|
| 479 |
+
msgstr ""
|
| 480 |
+
|
| 481 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 482 |
msgid "General Info"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 486 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 487 |
msgid "Social Count Plus Version"
|
| 488 |
msgstr ""
|
| 489 |
|
| 490 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 491 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 492 |
msgid "WordPress Version"
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 496 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 497 |
msgid "WP Multisite Enabled"
|
| 498 |
msgstr ""
|
| 499 |
|
|
|
|
| 500 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 501 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 502 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 503 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 504 |
msgid "Yes"
|
| 505 |
msgstr ""
|
| 506 |
|
|
|
|
| 507 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 508 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 509 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 510 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 511 |
msgid "No"
|
| 512 |
msgstr ""
|
| 513 |
|
| 514 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 515 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 516 |
msgid "Web Server Info"
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 520 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 521 |
msgid "PHP Version"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 525 |
msgid "Social Connections"
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 529 |
msgid ""
|
| 530 |
"You do not have any counter that needs to connect remotely currently active"
|
| 531 |
msgstr ""
|
languages/social-count-plus-sq_AL.mo
CHANGED
|
Binary file
|
languages/social-count-plus-sq_AL.po
CHANGED
|
@@ -5,8 +5,8 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
-
"PO-Revision-Date: 2015-09-
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Albanian (Albania) (http://www.transifex.com/claudiosmweb/social-count-plus/language/sq_AL/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
|
@@ -35,7 +35,7 @@ msgid ""
|
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Komentet"
|
| 41 |
|
|
@@ -50,7 +50,7 @@ msgid "URL"
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
|
@@ -85,7 +85,7 @@ msgid "Facebook App Secret"
|
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
|
@@ -102,7 +102,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
|
@@ -137,7 +137,7 @@ msgid ""
|
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
|
@@ -170,7 +170,7 @@ msgid "Insert your Instagram Access Token."
|
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
|
@@ -195,7 +195,7 @@ msgid "Get your Access Token in %s."
|
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
|
@@ -212,7 +212,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Postime"
|
| 218 |
|
|
@@ -225,7 +225,7 @@ msgid "Post Type"
|
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
|
@@ -250,7 +250,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
|
@@ -267,7 +267,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
|
@@ -300,7 +300,7 @@ msgid "Tumblr Token Secret"
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
|
@@ -317,7 +317,7 @@ msgid "Insert your Twitch username."
|
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
|
@@ -354,7 +354,7 @@ msgid "Twitter Access token secret"
|
|
| 354 |
msgstr "Shenjë sekrete hyrjeje për Twitter"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
|
@@ -371,12 +371,12 @@ msgid "Label"
|
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
|
@@ -393,7 +393,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
|
@@ -427,7 +427,7 @@ msgid ""
|
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Cilësimet"
|
|
@@ -474,54 +474,58 @@ msgstr "Social Count Plus"
|
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Aktivizo/Çaktivizo"
|
| 476 |
|
| 477 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
msgid "General Info"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 482 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 483 |
msgid "Social Count Plus Version"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 487 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 488 |
msgid "WordPress Version"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 492 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 493 |
msgid "WP Multisite Enabled"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 497 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 498 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 499 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 500 |
msgid "Yes"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 504 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 505 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 506 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 507 |
msgid "No"
|
| 508 |
msgstr ""
|
| 509 |
|
| 510 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 511 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 512 |
msgid "Web Server Info"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 516 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 517 |
msgid "PHP Version"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 521 |
msgid "Social Connections"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 525 |
msgid ""
|
| 526 |
"You do not have any counter that needs to connect remotely currently active"
|
| 527 |
msgstr ""
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+00:00\n"
|
| 9 |
+
"PO-Revision-Date: 2015-09-05 03:10+0000\n"
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Albanian (Albania) (http://www.transifex.com/claudiosmweb/social-count-plus/language/sq_AL/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Komentet"
|
| 41 |
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Postime"
|
| 218 |
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
| 354 |
msgstr "Shenjë sekrete hyrjeje për Twitter"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Cilësimet"
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Aktivizo/Çaktivizo"
|
| 476 |
|
| 477 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 478 |
+
msgid "All Roles"
|
| 479 |
+
msgstr ""
|
| 480 |
+
|
| 481 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 482 |
msgid "General Info"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 486 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 487 |
msgid "Social Count Plus Version"
|
| 488 |
msgstr ""
|
| 489 |
|
| 490 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 491 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 492 |
msgid "WordPress Version"
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 496 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 497 |
msgid "WP Multisite Enabled"
|
| 498 |
msgstr ""
|
| 499 |
|
|
|
|
| 500 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 501 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 502 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 503 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 504 |
msgid "Yes"
|
| 505 |
msgstr ""
|
| 506 |
|
|
|
|
| 507 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 508 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 509 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 510 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 511 |
msgid "No"
|
| 512 |
msgstr ""
|
| 513 |
|
| 514 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 515 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 516 |
msgid "Web Server Info"
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 520 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 521 |
msgid "PHP Version"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 525 |
msgid "Social Connections"
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 529 |
msgid ""
|
| 530 |
"You do not have any counter that needs to connect remotely currently active"
|
| 531 |
msgstr ""
|
languages/social-count-plus-sv_SE.mo
CHANGED
|
Binary file
|
languages/social-count-plus-sv_SE.po
CHANGED
|
@@ -5,8 +5,8 @@ msgid ""
|
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
-
"POT-Creation-Date: 2015-09-
|
| 9 |
-
"PO-Revision-Date: 2015-09-
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/claudiosmweb/social-count-plus/language/sv_SE/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
|
@@ -35,7 +35,7 @@ msgid ""
|
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Kommentarer"
|
| 41 |
|
|
@@ -50,7 +50,7 @@ msgid "URL"
|
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
|
@@ -85,7 +85,7 @@ msgid "Facebook App Secret"
|
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
|
@@ -102,7 +102,7 @@ msgid "Insert your GitHub username. Example: %s."
|
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
|
@@ -137,7 +137,7 @@ msgid ""
|
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
|
@@ -170,7 +170,7 @@ msgid "Insert your Instagram Access Token."
|
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
|
@@ -195,7 +195,7 @@ msgid "Get your Access Token in %s."
|
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
|
@@ -212,7 +212,7 @@ msgid "Insert your Pinterest username. Example: %s."
|
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Inlägg"
|
| 218 |
|
|
@@ -225,7 +225,7 @@ msgid "Post Type"
|
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
|
@@ -250,7 +250,7 @@ msgid "Insert your SoundCloud App Client ID. Generate this data in %s."
|
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
|
@@ -267,7 +267,7 @@ msgid "Insert your Steam Community group name. Example: %s."
|
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
|
@@ -300,7 +300,7 @@ msgid "Tumblr Token Secret"
|
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
|
@@ -317,7 +317,7 @@ msgid "Insert your Twitch username."
|
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
|
@@ -354,7 +354,7 @@ msgid "Twitter Access token secret"
|
|
| 354 |
msgstr "Twitter Access token secret"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
|
@@ -371,12 +371,12 @@ msgid "Label"
|
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
|
@@ -393,7 +393,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
|
@@ -427,7 +427,7 @@ msgid ""
|
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Inställningar"
|
|
@@ -474,54 +474,58 @@ msgstr "Social Count Plus"
|
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Aktivera/Avaktivera"
|
| 476 |
|
| 477 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
msgid "General Info"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 482 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 483 |
msgid "Social Count Plus Version"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 487 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 488 |
msgid "WordPress Version"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 492 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 493 |
msgid "WP Multisite Enabled"
|
| 494 |
msgstr ""
|
| 495 |
|
| 496 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 497 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 498 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 499 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 500 |
msgid "Yes"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 504 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 505 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 506 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 507 |
msgid "No"
|
| 508 |
msgstr ""
|
| 509 |
|
| 510 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 511 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 512 |
msgid "Web Server Info"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 516 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 517 |
msgid "PHP Version"
|
| 518 |
msgstr ""
|
| 519 |
|
| 520 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 521 |
msgid "Social Connections"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 525 |
msgid ""
|
| 526 |
"You do not have any counter that needs to connect remotely currently active"
|
| 527 |
msgstr ""
|
| 5 |
msgstr ""
|
| 6 |
"Project-Id-Version: Social Count Plus\n"
|
| 7 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 8 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+00:00\n"
|
| 9 |
+
"PO-Revision-Date: 2015-09-05 03:10+0000\n"
|
| 10 |
"Last-Translator: Claudio Sanches <contato@claudiosmweb.com>\n"
|
| 11 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/claudiosmweb/social-count-plus/language/sv_SE/)\n"
|
| 12 |
"MIME-Version: 1.0\n"
|
| 35 |
msgstr ""
|
| 36 |
|
| 37 |
#: includes/admin/class-social-count-plus-admin.php:77
|
| 38 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 39 |
msgid "Comments"
|
| 40 |
msgstr "Kommentarer"
|
| 41 |
|
| 50 |
msgstr ""
|
| 51 |
|
| 52 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 53 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 54 |
msgid "Facebook"
|
| 55 |
msgstr "Facebook"
|
| 56 |
|
| 85 |
msgstr ""
|
| 86 |
|
| 87 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 88 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 89 |
msgid "GitHub"
|
| 90 |
msgstr ""
|
| 91 |
|
| 102 |
msgstr ""
|
| 103 |
|
| 104 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 105 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 106 |
msgid "Google+"
|
| 107 |
msgstr ""
|
| 108 |
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 140 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 141 |
msgid "Instagram"
|
| 142 |
msgstr "Instagram"
|
| 143 |
|
| 170 |
msgstr ""
|
| 171 |
|
| 172 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 173 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 174 |
msgid "LinkedIn"
|
| 175 |
msgstr ""
|
| 176 |
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 198 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 199 |
msgid "Pinterest"
|
| 200 |
msgstr ""
|
| 201 |
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 215 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 216 |
msgid "Posts"
|
| 217 |
msgstr "Inlägg"
|
| 218 |
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 228 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 229 |
msgid "SoundCloud"
|
| 230 |
msgstr "SoundCloud"
|
| 231 |
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 253 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 254 |
msgid "Steam"
|
| 255 |
msgstr "Steam"
|
| 256 |
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 270 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 271 |
msgid "Tumblr"
|
| 272 |
msgstr ""
|
| 273 |
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 303 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 304 |
msgid "Twitch"
|
| 305 |
msgstr ""
|
| 306 |
|
| 317 |
msgstr ""
|
| 318 |
|
| 319 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 320 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 321 |
msgid "Twitter"
|
| 322 |
msgstr "Twitter"
|
| 323 |
|
| 354 |
msgstr "Twitter Access token secret"
|
| 355 |
|
| 356 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 357 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 358 |
msgid "Users"
|
| 359 |
msgstr ""
|
| 360 |
|
| 371 |
msgstr ""
|
| 372 |
|
| 373 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 374 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 375 |
msgid "users"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 379 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 380 |
msgid "Vimeo"
|
| 381 |
msgstr ""
|
| 382 |
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 396 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 397 |
msgid "YouTube"
|
| 398 |
msgstr "YouTube"
|
| 399 |
|
| 427 |
msgstr ""
|
| 428 |
|
| 429 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 430 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 431 |
#: includes/admin/views/html-settings-page.php:9
|
| 432 |
msgid "Settings"
|
| 433 |
msgstr "Inställningar"
|
| 474 |
msgid "Activate/Deactivate"
|
| 475 |
msgstr "Aktivera/Avaktivera"
|
| 476 |
|
| 477 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 478 |
+
msgid "All Roles"
|
| 479 |
+
msgstr ""
|
| 480 |
+
|
| 481 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 482 |
msgid "General Info"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 486 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 487 |
msgid "Social Count Plus Version"
|
| 488 |
msgstr ""
|
| 489 |
|
| 490 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 491 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 492 |
msgid "WordPress Version"
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 496 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 497 |
msgid "WP Multisite Enabled"
|
| 498 |
msgstr ""
|
| 499 |
|
|
|
|
| 500 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 501 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 502 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 503 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 504 |
msgid "Yes"
|
| 505 |
msgstr ""
|
| 506 |
|
|
|
|
| 507 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 508 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 509 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 510 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 511 |
msgid "No"
|
| 512 |
msgstr ""
|
| 513 |
|
| 514 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 515 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 516 |
msgid "Web Server Info"
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 520 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 521 |
msgid "PHP Version"
|
| 522 |
msgstr ""
|
| 523 |
|
| 524 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 525 |
msgid "Social Connections"
|
| 526 |
msgstr ""
|
| 527 |
|
| 528 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 529 |
msgid ""
|
| 530 |
"You do not have any counter that needs to connect remotely currently active"
|
| 531 |
msgstr ""
|
languages/social-count-plus.pot
CHANGED
|
@@ -4,7 +4,7 @@ msgid ""
|
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: Social Count Plus 3.2.0\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 7 |
-
"POT-Creation-Date: 2015-09-
|
| 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:77
|
| 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:92
|
| 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:121
|
| 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:135
|
| 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:161
|
| 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:185
|
| 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:204
|
| 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:218
|
| 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:238
|
| 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:257
|
| 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:271
|
| 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:305
|
| 300 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 301 |
msgid "Twitch"
|
| 302 |
msgstr ""
|
| 303 |
|
|
@@ -314,7 +314,7 @@ msgid "Insert your Twitch username."
|
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 317 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 318 |
msgid "Twitter"
|
| 319 |
msgstr ""
|
| 320 |
|
|
@@ -351,7 +351,7 @@ msgid "Twitter Access token secret"
|
|
| 351 |
msgstr ""
|
| 352 |
|
| 353 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 354 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 355 |
msgid "Users"
|
| 356 |
msgstr ""
|
| 357 |
|
|
@@ -368,12 +368,12 @@ msgid "Label"
|
|
| 368 |
msgstr ""
|
| 369 |
|
| 370 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 371 |
-
#: includes/counters/class-social-count-plus-users-counter.php:
|
| 372 |
msgid "users"
|
| 373 |
msgstr ""
|
| 374 |
|
| 375 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 376 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 377 |
msgid "Vimeo"
|
| 378 |
msgstr ""
|
| 379 |
|
|
@@ -390,7 +390,7 @@ msgid "Insert your Vimeo username. Example: %s."
|
|
| 390 |
msgstr ""
|
| 391 |
|
| 392 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 393 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 394 |
msgid "YouTube"
|
| 395 |
msgstr ""
|
| 396 |
|
|
@@ -424,7 +424,7 @@ msgid ""
|
|
| 424 |
msgstr ""
|
| 425 |
|
| 426 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 427 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
| 428 |
#: includes/admin/views/html-settings-page.php:9
|
| 429 |
msgid "Settings"
|
| 430 |
msgstr ""
|
|
@@ -471,54 +471,58 @@ msgstr ""
|
|
| 471 |
msgid "Activate/Deactivate"
|
| 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:11
|
| 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:15
|
| 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:19
|
| 490 |
msgid "WP Multisite Enabled"
|
| 491 |
msgstr ""
|
| 492 |
|
| 493 |
-
#: includes/admin/class-social-count-plus-admin.php:962
|
| 494 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 495 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 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:962
|
| 501 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 502 |
-
#: includes/admin/class-social-count-plus-admin.php:
|
|
|
|
| 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:23
|
| 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:27
|
| 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 |
|
| 4 |
msgstr ""
|
| 5 |
"Project-Id-Version: Social Count Plus 3.2.0\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
| 7 |
+
"POT-Creation-Date: 2015-09-05 03:09:12+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:77
|
| 35 |
+
#: includes/admin/class-social-count-plus-admin.php:1071
|
| 36 |
msgid "Comments"
|
| 37 |
msgstr ""
|
| 38 |
|
| 47 |
msgstr ""
|
| 48 |
|
| 49 |
#: includes/admin/class-social-count-plus-admin.php:92
|
| 50 |
+
#: includes/admin/class-social-count-plus-admin.php:1072
|
| 51 |
msgid "Facebook"
|
| 52 |
msgstr ""
|
| 53 |
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
#: includes/admin/class-social-count-plus-admin.php:121
|
| 85 |
+
#: includes/admin/class-social-count-plus-admin.php:1073
|
| 86 |
msgid "GitHub"
|
| 87 |
msgstr ""
|
| 88 |
|
| 99 |
msgstr ""
|
| 100 |
|
| 101 |
#: includes/admin/class-social-count-plus-admin.php:135
|
| 102 |
+
#: includes/admin/class-social-count-plus-admin.php:1074
|
| 103 |
msgid "Google+"
|
| 104 |
msgstr ""
|
| 105 |
|
| 134 |
msgstr ""
|
| 135 |
|
| 136 |
#: includes/admin/class-social-count-plus-admin.php:161
|
| 137 |
+
#: includes/admin/class-social-count-plus-admin.php:1075
|
| 138 |
msgid "Instagram"
|
| 139 |
msgstr ""
|
| 140 |
|
| 167 |
msgstr ""
|
| 168 |
|
| 169 |
#: includes/admin/class-social-count-plus-admin.php:185
|
| 170 |
+
#: includes/admin/class-social-count-plus-admin.php:1076
|
| 171 |
msgid "LinkedIn"
|
| 172 |
msgstr ""
|
| 173 |
|
| 192 |
msgstr ""
|
| 193 |
|
| 194 |
#: includes/admin/class-social-count-plus-admin.php:204
|
| 195 |
+
#: includes/admin/class-social-count-plus-admin.php:1077
|
| 196 |
msgid "Pinterest"
|
| 197 |
msgstr ""
|
| 198 |
|
| 209 |
msgstr ""
|
| 210 |
|
| 211 |
#: includes/admin/class-social-count-plus-admin.php:218
|
| 212 |
+
#: includes/admin/class-social-count-plus-admin.php:1078
|
| 213 |
msgid "Posts"
|
| 214 |
msgstr ""
|
| 215 |
|
| 222 |
msgstr ""
|
| 223 |
|
| 224 |
#: includes/admin/class-social-count-plus-admin.php:238
|
| 225 |
+
#: includes/admin/class-social-count-plus-admin.php:1079
|
| 226 |
msgid "SoundCloud"
|
| 227 |
msgstr ""
|
| 228 |
|
| 247 |
msgstr ""
|
| 248 |
|
| 249 |
#: includes/admin/class-social-count-plus-admin.php:257
|
| 250 |
+
#: includes/admin/class-social-count-plus-admin.php:1080
|
| 251 |
msgid "Steam"
|
| 252 |
msgstr ""
|
| 253 |
|
| 264 |
msgstr ""
|
| 265 |
|
| 266 |
#: includes/admin/class-social-count-plus-admin.php:271
|
| 267 |
+
#: includes/admin/class-social-count-plus-admin.php:1081
|
| 268 |
msgid "Tumblr"
|
| 269 |
msgstr ""
|
| 270 |
|
| 297 |
msgstr ""
|
| 298 |
|
| 299 |
#: includes/admin/class-social-count-plus-admin.php:305
|
| 300 |
+
#: includes/admin/class-social-count-plus-admin.php:1082
|
| 301 |
msgid "Twitch"
|
| 302 |
msgstr ""
|
| 303 |
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
#: includes/admin/class-social-count-plus-admin.php:319
|
| 317 |
+
#: includes/admin/class-social-count-plus-admin.php:1083
|
| 318 |
msgid "Twitter"
|
| 319 |
msgstr ""
|
| 320 |
|
| 351 |
msgstr ""
|
| 352 |
|
| 353 |
#: includes/admin/class-social-count-plus-admin.php:353
|
| 354 |
+
#: includes/admin/class-social-count-plus-admin.php:1084
|
| 355 |
msgid "Users"
|
| 356 |
msgstr ""
|
| 357 |
|
| 368 |
msgstr ""
|
| 369 |
|
| 370 |
#: includes/admin/class-social-count-plus-admin.php:367
|
| 371 |
+
#: includes/counters/class-social-count-plus-users-counter.php:76
|
| 372 |
msgid "users"
|
| 373 |
msgstr ""
|
| 374 |
|
| 375 |
#: includes/admin/class-social-count-plus-admin.php:378
|
| 376 |
+
#: includes/admin/class-social-count-plus-admin.php:1085
|
| 377 |
msgid "Vimeo"
|
| 378 |
msgstr ""
|
| 379 |
|
| 390 |
msgstr ""
|
| 391 |
|
| 392 |
#: includes/admin/class-social-count-plus-admin.php:392
|
| 393 |
+
#: includes/admin/class-social-count-plus-admin.php:1086
|
| 394 |
msgid "YouTube"
|
| 395 |
msgstr ""
|
| 396 |
|
| 424 |
msgstr ""
|
| 425 |
|
| 426 |
#: includes/admin/class-social-count-plus-admin.php:419
|
| 427 |
+
#: includes/admin/class-social-count-plus-admin.php:909
|
| 428 |
#: includes/admin/views/html-settings-page.php:9
|
| 429 |
msgid "Settings"
|
| 430 |
msgstr ""
|
| 471 |
msgid "Activate/Deactivate"
|
| 472 |
msgstr ""
|
| 473 |
|
| 474 |
+
#: includes/admin/class-social-count-plus-admin.php:756
|
| 475 |
+
msgid "All Roles"
|
| 476 |
+
msgstr ""
|
| 477 |
+
|
| 478 |
+
#: includes/admin/class-social-count-plus-admin.php:962
|
| 479 |
msgid "General Info"
|
| 480 |
msgstr ""
|
| 481 |
|
| 482 |
+
#: includes/admin/class-social-count-plus-admin.php:963
|
| 483 |
#: includes/admin/views/html-settings-system-status-page.php:11
|
| 484 |
msgid "Social Count Plus Version"
|
| 485 |
msgstr ""
|
| 486 |
|
| 487 |
+
#: includes/admin/class-social-count-plus-admin.php:964
|
| 488 |
#: includes/admin/views/html-settings-system-status-page.php:15
|
| 489 |
msgid "WordPress Version"
|
| 490 |
msgstr ""
|
| 491 |
|
| 492 |
+
#: includes/admin/class-social-count-plus-admin.php:965
|
| 493 |
#: includes/admin/views/html-settings-system-status-page.php:19
|
| 494 |
msgid "WP Multisite Enabled"
|
| 495 |
msgstr ""
|
| 496 |
|
|
|
|
| 497 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 498 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 499 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 500 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 501 |
msgid "Yes"
|
| 502 |
msgstr ""
|
| 503 |
|
|
|
|
| 504 |
#: includes/admin/class-social-count-plus-admin.php:965
|
| 505 |
+
#: includes/admin/class-social-count-plus-admin.php:968
|
| 506 |
+
#: includes/admin/class-social-count-plus-admin.php:969
|
| 507 |
#: includes/admin/views/html-settings-system-status-page.php:20
|
| 508 |
msgid "No"
|
| 509 |
msgstr ""
|
| 510 |
|
| 511 |
+
#: includes/admin/class-social-count-plus-admin.php:966
|
| 512 |
#: includes/admin/views/html-settings-system-status-page.php:23
|
| 513 |
msgid "Web Server Info"
|
| 514 |
msgstr ""
|
| 515 |
|
| 516 |
+
#: includes/admin/class-social-count-plus-admin.php:967
|
| 517 |
#: includes/admin/views/html-settings-system-status-page.php:27
|
| 518 |
msgid "PHP Version"
|
| 519 |
msgstr ""
|
| 520 |
|
| 521 |
+
#: includes/admin/class-social-count-plus-admin.php:970
|
| 522 |
msgid "Social Connections"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
+
#: includes/admin/class-social-count-plus-admin.php:980
|
| 526 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
| 527 |
msgstr ""
|
| 528 |
|
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.3
|
| 7 |
-
Stable tag: 3.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -38,7 +38,7 @@ The cache avoids not only that your blog be seeking new results every time a pag
|
|
| 38 |
|
| 39 |
#### Translate ####
|
| 40 |
|
| 41 |
-
You can contribute to the source code in our [
|
| 42 |
|
| 43 |
#### Contribute ####
|
| 44 |
|
|
@@ -147,6 +147,11 @@ The CSS classes you will need to use:
|
|
| 147 |
|
| 148 |
== Changelog ==
|
| 149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
= 3.2.0 - 2015/08/31 =
|
| 151 |
|
| 152 |
* Added GitHub integration.
|
|
@@ -322,16 +327,10 @@ The CSS classes you will need to use:
|
|
| 322 |
|
| 323 |
== Upgrade Notice ==
|
| 324 |
|
| 325 |
-
= 3.
|
| 326 |
|
| 327 |
-
* Added
|
| 328 |
-
*
|
| 329 |
-
* Added Pinterest integration.
|
| 330 |
-
* Added Tumblr integration.
|
| 331 |
-
* Added Vimeo integration.
|
| 332 |
-
* Added users integration.
|
| 333 |
-
* Added new "URL" options for comments and posts.
|
| 334 |
-
* Improved the Twitch integration.
|
| 335 |
|
| 336 |
== License ==
|
| 337 |
|
| 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.3
|
| 7 |
+
Stable tag: 3.3.0
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 38 |
|
| 39 |
#### Translate ####
|
| 40 |
|
| 41 |
+
You can contribute to the source code in our [Transifex](https://www.transifex.com/claudiosmweb/social-count-plus/) page.
|
| 42 |
|
| 43 |
#### Contribute ####
|
| 44 |
|
| 147 |
|
| 148 |
== Changelog ==
|
| 149 |
|
| 150 |
+
= 3.3.0 - 2015/09/05 =
|
| 151 |
+
|
| 152 |
+
* Added option to show all user roles in users integration.
|
| 153 |
+
* Fixed errors in PHP 5.2.
|
| 154 |
+
|
| 155 |
= 3.2.0 - 2015/08/31 =
|
| 156 |
|
| 157 |
* Added GitHub integration.
|
| 327 |
|
| 328 |
== Upgrade Notice ==
|
| 329 |
|
| 330 |
+
= 3.3.0 =
|
| 331 |
|
| 332 |
+
* Added option to show all user roles in users integration.
|
| 333 |
+
* Fixed errors in PHP 5.2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 334 |
|
| 335 |
== License ==
|
| 336 |
|
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.
|
| 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.
|
| 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: http://claudiosmweb.com/
|
| 8 |
+
* Version: 3.3.0
|
| 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.0';
|
| 35 |
|
| 36 |
/**
|
| 37 |
* Instance of this class.
|
