Version Description
2015/09/28 =
Restored the
social_count_plus_number_format
filter.
Download this release
Release Info
Developer | claudiosanches |
Plugin | Social Count Plus |
Version | 3.3.2 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.3.2
- includes/admin/views/html-help-us.php +2 -3
- includes/class-social-count-plus-view.php +10 -4
- languages/social-count-plus-es_AR.mo +0 -0
- languages/social-count-plus-es_AR.po +0 -698
- languages/social-count-plus-fr_FR.mo +0 -0
- languages/social-count-plus-fr_FR.po +0 -698
- languages/social-count-plus-pt_BR.mo +0 -0
- languages/social-count-plus-pt_BR.po +0 -699
- languages/social-count-plus-ru_RU.mo +0 -0
- languages/social-count-plus-ru_RU.po +0 -698
- languages/social-count-plus-sq_AL.mo +0 -0
- languages/social-count-plus-sq_AL.po +0 -698
- languages/social-count-plus-sv_SE.mo +0 -0
- languages/social-count-plus-sv_SE.po +0 -698
- languages/social-count-plus.pot +10 -8
- readme.txt +32 -146
- social-count-plus.php +3 -7
includes/admin/views/html-help-us.php
CHANGED
@@ -3,10 +3,9 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
$reviews_url = 'https://wordpress.org/support/view/plugin-reviews/social-count-plus?filter=5#postform';
|
7 |
-
|
8 |
?>
|
9 |
|
10 |
<div class="updated">
|
11 |
-
<p><?php
|
|
|
12 |
</div>
|
3 |
exit;
|
4 |
}
|
5 |
|
|
|
|
|
6 |
?>
|
7 |
|
8 |
<div class="updated">
|
9 |
+
<p><?php echo esc_html( sprintf( __( 'Help us keep the %s plugin free making a donation or rate %s on WordPress.org. Thank you in advance!', 'social-count-plus' ), __( 'Social Count Plus', 'social-count-plus' ), '★★★★★' ) ); ?></p>
|
10 |
+
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y8HP99ZJ5Z59L" target="_blank" class="button button-primary"><?php esc_html_e( 'Make a donation', 'social-count-plus' ); ?></a> <a href="https://wordpress.org/support/view/plugin-reviews/social-count-plus?filter=5#postform" target="_blank" class="button button-secondary"><?php esc_html_e( 'Make a review', 'social-count-plus' ); ?></a></p>
|
11 |
</div>
|
includes/class-social-count-plus-view.php
CHANGED
@@ -55,12 +55,18 @@ class Social_Count_Plus_View {
|
|
55 |
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
} else {
|
63 |
-
$html .= apply_filters( 'social_count_plus_' . $icon . 'html_counter', '', $settings, $
|
64 |
}
|
65 |
}
|
66 |
|
55 |
|
56 |
foreach ( $icons as $icon ) {
|
57 |
$class = 'social_count_plus_' . $icon . '_counter';
|
|
|
|
|
58 |
|
59 |
+
if ( ! isset( $count[ $icon ] ) ) {
|
60 |
+
continue;
|
61 |
+
}
|
62 |
+
|
63 |
+
$total = apply_filters( 'social_count_plus_number_format', $count[ $icon ] );
|
64 |
+
|
65 |
+
if ( class_exists( $class ) ) {
|
66 |
+
$_class = new $class();
|
67 |
+
$html .= $_class->get_view( $settings, $total, $color );
|
68 |
} else {
|
69 |
+
$html .= apply_filters( 'social_count_plus_' . $icon . 'html_counter', '', $settings, $total, $color );
|
70 |
}
|
71 |
}
|
72 |
|
languages/social-count-plus-es_AR.mo
DELETED
Binary file
|
languages/social-count-plus-es_AR.po
DELETED
@@ -1,698 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 Claudio Sanches
|
2 |
-
# This file is distributed under the GPLv2 or later.
|
3 |
-
# Translators:
|
4 |
-
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-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"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"Language: es_AR\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
18 |
-
|
19 |
-
#: includes/admin/class-social-count-plus-admin.php:66
|
20 |
-
msgid "Create an App on Twitter in %s and get this data."
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: includes/admin/class-social-count-plus-admin.php:68
|
24 |
-
msgid "Create an App on Facebook in %s and get this data."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: includes/admin/class-social-count-plus-admin.php:70
|
28 |
-
msgid "Get the this data in %s."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/admin/class-social-count-plus-admin.php:72
|
32 |
-
msgid ""
|
33 |
-
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
34 |
-
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
-
|
42 |
-
#: includes/admin/class-social-count-plus-admin.php:80
|
43 |
-
msgid "Display Comments Counter"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: includes/admin/class-social-count-plus-admin.php:85
|
47 |
-
#: includes/admin/class-social-count-plus-admin.php:231
|
48 |
-
#: includes/admin/class-social-count-plus-admin.php:371
|
49 |
-
msgid "URL"
|
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 |
-
|
57 |
-
#: includes/admin/class-social-count-plus-admin.php:95
|
58 |
-
msgid "Display Facebook Counter"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/admin/class-social-count-plus-admin.php:99
|
62 |
-
msgid "Facebook Page ID"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: includes/admin/class-social-count-plus-admin.php:103
|
66 |
-
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/admin/class-social-count-plus-admin.php:104
|
70 |
-
msgid ""
|
71 |
-
"You can find this data clicking to edit your page on Facebook. The URL will "
|
72 |
-
"be similar to this:"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/admin/class-social-count-plus-admin.php:105
|
76 |
-
msgid "or"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/admin/class-social-count-plus-admin.php:109
|
80 |
-
msgid "Facebook App ID"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/admin/class-social-count-plus-admin.php:114
|
84 |
-
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:1073
|
89 |
-
msgid "GitHub"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: includes/admin/class-social-count-plus-admin.php:124
|
93 |
-
msgid "Display GitHub Counter"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: includes/admin/class-social-count-plus-admin.php:128
|
97 |
-
msgid "GitHub Username"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: includes/admin/class-social-count-plus-admin.php:130
|
101 |
-
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:1074
|
106 |
-
msgid "Google+"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: includes/admin/class-social-count-plus-admin.php:138
|
110 |
-
msgid "Display Google+ Counter"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/admin/class-social-count-plus-admin.php:142
|
114 |
-
msgid "Google+ ID"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/admin/class-social-count-plus-admin.php:146
|
118 |
-
msgid "Google+ page or profile ID."
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/admin/class-social-count-plus-admin.php:147
|
122 |
-
msgid "Example:"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/admin/class-social-count-plus-admin.php:151
|
126 |
-
#: includes/admin/class-social-count-plus-admin.php:409
|
127 |
-
msgid "Google API Key"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: includes/admin/class-social-count-plus-admin.php:154
|
131 |
-
msgid ""
|
132 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
133 |
-
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
134 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
135 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
136 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
-
|
144 |
-
#: includes/admin/class-social-count-plus-admin.php:164
|
145 |
-
msgid "Display Instagram Counter"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/admin/class-social-count-plus-admin.php:168
|
149 |
-
msgid "Instagram Username"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: includes/admin/class-social-count-plus-admin.php:170
|
153 |
-
msgid "Insert your Instagram Username."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/admin/class-social-count-plus-admin.php:173
|
157 |
-
msgid "Instagram User ID"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: includes/admin/class-social-count-plus-admin.php:175
|
161 |
-
msgid "Insert your Instagram User ID."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: includes/admin/class-social-count-plus-admin.php:178
|
165 |
-
msgid "Instagram Access Token"
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#: includes/admin/class-social-count-plus-admin.php:180
|
169 |
-
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:1076
|
174 |
-
msgid "LinkedIn"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/admin/class-social-count-plus-admin.php:188
|
178 |
-
msgid "Display LinkedIn counter"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/admin/class-social-count-plus-admin.php:192
|
182 |
-
msgid "LinkedIn Company ID"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: includes/admin/class-social-count-plus-admin.php:194
|
186 |
-
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: includes/admin/class-social-count-plus-admin.php:197
|
190 |
-
msgid "LinkedIn Access Token"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: includes/admin/class-social-count-plus-admin.php:199
|
194 |
-
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:1077
|
199 |
-
msgid "Pinterest"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: includes/admin/class-social-count-plus-admin.php:207
|
203 |
-
msgid "Display Pinterest Counter"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: includes/admin/class-social-count-plus-admin.php:211
|
207 |
-
msgid "Pinterest Username"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: includes/admin/class-social-count-plus-admin.php:213
|
211 |
-
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:1078
|
216 |
-
msgid "Posts"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: includes/admin/class-social-count-plus-admin.php:221
|
220 |
-
msgid "Display Posts Counter"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: includes/admin/class-social-count-plus-admin.php:226
|
224 |
-
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:1079
|
229 |
-
msgid "SoundCloud"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: includes/admin/class-social-count-plus-admin.php:241
|
233 |
-
msgid "Display SoundCloud Counter"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: includes/admin/class-social-count-plus-admin.php:245
|
237 |
-
msgid "SoundCloud Username"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: includes/admin/class-social-count-plus-admin.php:247
|
241 |
-
msgid "Insert your SoundCloud Username."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: includes/admin/class-social-count-plus-admin.php:250
|
245 |
-
msgid "SoundCloud Client ID"
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: includes/admin/class-social-count-plus-admin.php:252
|
249 |
-
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:1080
|
254 |
-
msgid "Steam"
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: includes/admin/class-social-count-plus-admin.php:260
|
258 |
-
msgid "Display Steam Counter"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: includes/admin/class-social-count-plus-admin.php:264
|
262 |
-
msgid "Steam Group Name"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/admin/class-social-count-plus-admin.php:266
|
266 |
-
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:1081
|
271 |
-
msgid "Tumblr"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: includes/admin/class-social-count-plus-admin.php:274
|
275 |
-
msgid "Display Tumblr counter"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/admin/class-social-count-plus-admin.php:278
|
279 |
-
msgid "Tumblr Hostname"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin/class-social-count-plus-admin.php:280
|
283 |
-
msgid "Insert your Tumblr Hostname. Example: %s."
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: includes/admin/class-social-count-plus-admin.php:283
|
287 |
-
msgid "Tumblr Consumer Key"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: includes/admin/class-social-count-plus-admin.php:288
|
291 |
-
msgid "Tumblr Consumer Secret"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/admin/class-social-count-plus-admin.php:293
|
295 |
-
msgid "Tumblr Token"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: includes/admin/class-social-count-plus-admin.php:298
|
299 |
-
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:1082
|
304 |
-
msgid "Twitch"
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: includes/admin/class-social-count-plus-admin.php:308
|
308 |
-
msgid "Display Twitch Counter"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: includes/admin/class-social-count-plus-admin.php:312
|
312 |
-
msgid "Twitch Username"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: includes/admin/class-social-count-plus-admin.php:314
|
316 |
-
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:1083
|
321 |
-
msgid "Twitter"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: includes/admin/class-social-count-plus-admin.php:322
|
325 |
-
msgid "Display Twitter Counter"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin/class-social-count-plus-admin.php:326
|
329 |
-
msgid "Twitter Username"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin/class-social-count-plus-admin.php:328
|
333 |
-
msgid "Insert the Twitter username. Example: %s."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: includes/admin/class-social-count-plus-admin.php:331
|
337 |
-
#: includes/admin/views/html-settings-page.php:25
|
338 |
-
msgid "Twitter Consumer key"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: includes/admin/class-social-count-plus-admin.php:336
|
342 |
-
#: includes/admin/views/html-settings-page.php:26
|
343 |
-
msgid "Twitter Consumer secret"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: includes/admin/class-social-count-plus-admin.php:341
|
347 |
-
#: includes/admin/views/html-settings-page.php:27
|
348 |
-
msgid "Twitter Access token"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: includes/admin/class-social-count-plus-admin.php:346
|
352 |
-
#: includes/admin/views/html-settings-page.php:28
|
353 |
-
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:1084
|
358 |
-
msgid "Users"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/admin/class-social-count-plus-admin.php:356
|
362 |
-
msgid "Display Users Counter"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: includes/admin/class-social-count-plus-admin.php:361
|
366 |
-
msgid "User Role"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/admin/class-social-count-plus-admin.php:366
|
370 |
-
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: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 |
-
|
383 |
-
#: includes/admin/class-social-count-plus-admin.php:381
|
384 |
-
msgid "Display Vimeo Counter"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/admin/class-social-count-plus-admin.php:385
|
388 |
-
msgid "Vimeo Username"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/admin/class-social-count-plus-admin.php:387
|
392 |
-
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:1086
|
397 |
-
msgid "YouTube"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: includes/admin/class-social-count-plus-admin.php:395
|
401 |
-
msgid "Display YouTube Counter"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/admin/class-social-count-plus-admin.php:399
|
405 |
-
msgid "YouTube Channel ID"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin/class-social-count-plus-admin.php:401
|
409 |
-
msgid "Insert the YouTube Channel ID. Example: %s."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin/class-social-count-plus-admin.php:404
|
413 |
-
msgid "YouTube Channel URL"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin/class-social-count-plus-admin.php:406
|
417 |
-
msgid "Insert the YouTube channel URL. Example: %s."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin/class-social-count-plus-admin.php:412
|
421 |
-
msgid ""
|
422 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
423 |
-
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
424 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
425 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
426 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 ""
|
434 |
-
|
435 |
-
#: includes/admin/class-social-count-plus-admin.php:422
|
436 |
-
msgid "Open URLs in new tab/window"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: includes/admin/class-social-count-plus-admin.php:424
|
440 |
-
#: includes/admin/class-social-count-plus-admin.php:429
|
441 |
-
msgid "This option add %s in all counters URLs."
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/admin/class-social-count-plus-admin.php:427
|
445 |
-
msgid "Add nofollow in URLs"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/admin/class-social-count-plus-admin.php:436
|
449 |
-
#: includes/admin/views/html-settings-page.php:9
|
450 |
-
msgid "Design"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: includes/admin/class-social-count-plus-admin.php:439
|
454 |
-
msgid "Layout Models"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: includes/admin/class-social-count-plus-admin.php:445
|
458 |
-
msgid "Text Color"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: includes/admin/class-social-count-plus-admin.php:450
|
462 |
-
msgid "Order"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/admin/class-social-count-plus-admin.php:452
|
466 |
-
msgid "This option controls the order of the icons in the widget."
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#. Plugin Name of the plugin/theme
|
470 |
-
msgid "Social Count Plus"
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: includes/admin/class-social-count-plus-admin.php:698
|
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 ""
|
532 |
-
|
533 |
-
#: includes/admin/views/html-help-us.php:11
|
534 |
-
msgid ""
|
535 |
-
"Help us keep the %s free making a %s or rate %s on %s. Thank you in advance!"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/admin/views/html-help-us.php:11
|
539 |
-
msgid "donation"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/admin/views/html-help-us.php:11
|
543 |
-
msgid "WordPress.org"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
547 |
-
msgid ""
|
548 |
-
"Use this library to generate your own model layout or display specific data "
|
549 |
-
"counters."
|
550 |
-
msgstr ""
|
551 |
-
|
552 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:9
|
553 |
-
msgid "Shortcodes"
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:11
|
557 |
-
msgid "Note: the shortcodes displays only the count in plain text."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:16
|
561 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:29
|
562 |
-
msgid "%s counter"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:22
|
566 |
-
msgid "Functions"
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:24
|
570 |
-
msgid ""
|
571 |
-
"Note: the functions displays only the count in plain text, except the "
|
572 |
-
"<code>get_scp_widget()</code> function that displays with images."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:34
|
576 |
-
msgid "Full widget"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: includes/admin/views/html-settings-page.php:9
|
580 |
-
msgid "Shortcodes and Functions"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: includes/admin/views/html-settings-page.php:9
|
584 |
-
msgid "System Status"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/admin/views/html-settings-page.php:22
|
588 |
-
msgid "To use the counter of Twitter you need to fill the fields:"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: includes/admin/views/html-settings-page.php:24
|
592 |
-
msgid "Twitter username"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: includes/admin/views/html-settings-system-status-page.php:5
|
596 |
-
msgid "Environment"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/admin/views/html-settings-system-status-page.php:33
|
600 |
-
msgid ""
|
601 |
-
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
602 |
-
"communicate with the social APIs will not work. Contact your hosting "
|
603 |
-
"provider."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: includes/admin/views/html-settings-system-status-page.php:37
|
607 |
-
msgid "Your server has fsockopen and cURL enabled."
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: includes/admin/views/html-settings-system-status-page.php:39
|
611 |
-
msgid "Your server has fsockopen enabled, cURL is disabled."
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: includes/admin/views/html-settings-system-status-page.php:41
|
615 |
-
msgid "Your server has cURL enabled, fsockopen is disabled."
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: includes/admin/views/html-settings-system-status-page.php:47
|
619 |
-
msgid "fsockopen/cURL"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: includes/admin/views/html-settings-system-status-page.php:57
|
623 |
-
msgid "wp_remote_get() failed. This may not work with your server."
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: includes/admin/views/html-settings-system-status-page.php:62
|
627 |
-
msgid "wp_remote_get() was successful."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: includes/admin/views/html-settings-system-status-page.php:64
|
631 |
-
msgid ""
|
632 |
-
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
633 |
-
"your hosting provider. Error:"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/admin/views/html-settings-system-status-page.php:67
|
637 |
-
msgid "WP Remote Get"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: includes/admin/views/html-settings-system-status-page.php:77
|
641 |
-
msgid "Get System Report"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: includes/class-social-count-plus-widget.php:19
|
645 |
-
msgid "Display the counter"
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: includes/class-social-count-plus-widget.php:59
|
649 |
-
msgid "Title"
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:80
|
653 |
-
msgid "comments"
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:114
|
657 |
-
msgid "likes"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: includes/counters/class-social-count-plus-github-counter.php:83
|
661 |
-
#: includes/counters/class-social-count-plus-googleplus-counter.php:83
|
662 |
-
#: includes/counters/class-social-count-plus-instagram-counter.php:87
|
663 |
-
#: includes/counters/class-social-count-plus-linkedin-counter.php:88
|
664 |
-
#: includes/counters/class-social-count-plus-pinterest-counter.php:92
|
665 |
-
#: includes/counters/class-social-count-plus-soundcloud-counter.php:83
|
666 |
-
#: includes/counters/class-social-count-plus-tumblr-counter.php:187
|
667 |
-
#: includes/counters/class-social-count-plus-twitch-counter.php:90
|
668 |
-
#: includes/counters/class-social-count-plus-twitter-counter.php:188
|
669 |
-
#: includes/counters/class-social-count-plus-vimeo-counter.php:83
|
670 |
-
msgid "followers"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: includes/counters/class-social-count-plus-steam-counter.php:82
|
674 |
-
msgid "members"
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: includes/counters/class-social-count-plus-youtube-counter.php:90
|
678 |
-
msgid "subscribers"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#. Plugin URI of the plugin/theme
|
682 |
-
msgid "https://github.com/claudiosmweb/social-count-plus"
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#. Description of the plugin/theme
|
686 |
-
msgid ""
|
687 |
-
"Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, "
|
688 |
-
"Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, "
|
689 |
-
"Youtube, posts, comments and users."
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#. Author of the plugin/theme
|
693 |
-
msgid "Claudio Sanches"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#. Author URI of the plugin/theme
|
697 |
-
msgid "http://claudiosmweb.com/"
|
698 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-count-plus-fr_FR.mo
DELETED
Binary file
|
languages/social-count-plus-fr_FR.po
DELETED
@@ -1,698 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 Claudio Sanches
|
2 |
-
# This file is distributed under the GPLv2 or later.
|
3 |
-
# Translators:
|
4 |
-
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-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"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"Language: fr_FR\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
17 |
-
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
18 |
-
|
19 |
-
#: includes/admin/class-social-count-plus-admin.php:66
|
20 |
-
msgid "Create an App on Twitter in %s and get this data."
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: includes/admin/class-social-count-plus-admin.php:68
|
24 |
-
msgid "Create an App on Facebook in %s and get this data."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: includes/admin/class-social-count-plus-admin.php:70
|
28 |
-
msgid "Get the this data in %s."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/admin/class-social-count-plus-admin.php:72
|
32 |
-
msgid ""
|
33 |
-
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
34 |
-
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
-
|
42 |
-
#: includes/admin/class-social-count-plus-admin.php:80
|
43 |
-
msgid "Display Comments Counter"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: includes/admin/class-social-count-plus-admin.php:85
|
47 |
-
#: includes/admin/class-social-count-plus-admin.php:231
|
48 |
-
#: includes/admin/class-social-count-plus-admin.php:371
|
49 |
-
msgid "URL"
|
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 |
-
|
57 |
-
#: includes/admin/class-social-count-plus-admin.php:95
|
58 |
-
msgid "Display Facebook Counter"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/admin/class-social-count-plus-admin.php:99
|
62 |
-
msgid "Facebook Page ID"
|
63 |
-
msgstr "ID de la page Facebook"
|
64 |
-
|
65 |
-
#: includes/admin/class-social-count-plus-admin.php:103
|
66 |
-
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/admin/class-social-count-plus-admin.php:104
|
70 |
-
msgid ""
|
71 |
-
"You can find this data clicking to edit your page on Facebook. The URL will "
|
72 |
-
"be similar to this:"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/admin/class-social-count-plus-admin.php:105
|
76 |
-
msgid "or"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/admin/class-social-count-plus-admin.php:109
|
80 |
-
msgid "Facebook App ID"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/admin/class-social-count-plus-admin.php:114
|
84 |
-
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:1073
|
89 |
-
msgid "GitHub"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: includes/admin/class-social-count-plus-admin.php:124
|
93 |
-
msgid "Display GitHub Counter"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: includes/admin/class-social-count-plus-admin.php:128
|
97 |
-
msgid "GitHub Username"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: includes/admin/class-social-count-plus-admin.php:130
|
101 |
-
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:1074
|
106 |
-
msgid "Google+"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: includes/admin/class-social-count-plus-admin.php:138
|
110 |
-
msgid "Display Google+ Counter"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/admin/class-social-count-plus-admin.php:142
|
114 |
-
msgid "Google+ ID"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/admin/class-social-count-plus-admin.php:146
|
118 |
-
msgid "Google+ page or profile ID."
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/admin/class-social-count-plus-admin.php:147
|
122 |
-
msgid "Example:"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/admin/class-social-count-plus-admin.php:151
|
126 |
-
#: includes/admin/class-social-count-plus-admin.php:409
|
127 |
-
msgid "Google API Key"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: includes/admin/class-social-count-plus-admin.php:154
|
131 |
-
msgid ""
|
132 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
133 |
-
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
134 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
135 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
136 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
-
|
144 |
-
#: includes/admin/class-social-count-plus-admin.php:164
|
145 |
-
msgid "Display Instagram Counter"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/admin/class-social-count-plus-admin.php:168
|
149 |
-
msgid "Instagram Username"
|
150 |
-
msgstr "Pseudo Instagram"
|
151 |
-
|
152 |
-
#: includes/admin/class-social-count-plus-admin.php:170
|
153 |
-
msgid "Insert your Instagram Username."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/admin/class-social-count-plus-admin.php:173
|
157 |
-
msgid "Instagram User ID"
|
158 |
-
msgstr "ID utilisateur Instagram"
|
159 |
-
|
160 |
-
#: includes/admin/class-social-count-plus-admin.php:175
|
161 |
-
msgid "Insert your Instagram User ID."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: includes/admin/class-social-count-plus-admin.php:178
|
165 |
-
msgid "Instagram Access Token"
|
166 |
-
msgstr "Instagram Access Token"
|
167 |
-
|
168 |
-
#: includes/admin/class-social-count-plus-admin.php:180
|
169 |
-
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:1076
|
174 |
-
msgid "LinkedIn"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/admin/class-social-count-plus-admin.php:188
|
178 |
-
msgid "Display LinkedIn counter"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/admin/class-social-count-plus-admin.php:192
|
182 |
-
msgid "LinkedIn Company ID"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: includes/admin/class-social-count-plus-admin.php:194
|
186 |
-
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: includes/admin/class-social-count-plus-admin.php:197
|
190 |
-
msgid "LinkedIn Access Token"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: includes/admin/class-social-count-plus-admin.php:199
|
194 |
-
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:1077
|
199 |
-
msgid "Pinterest"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: includes/admin/class-social-count-plus-admin.php:207
|
203 |
-
msgid "Display Pinterest Counter"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: includes/admin/class-social-count-plus-admin.php:211
|
207 |
-
msgid "Pinterest Username"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: includes/admin/class-social-count-plus-admin.php:213
|
211 |
-
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:1078
|
216 |
-
msgid "Posts"
|
217 |
-
msgstr "Posts"
|
218 |
-
|
219 |
-
#: includes/admin/class-social-count-plus-admin.php:221
|
220 |
-
msgid "Display Posts Counter"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: includes/admin/class-social-count-plus-admin.php:226
|
224 |
-
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:1079
|
229 |
-
msgid "SoundCloud"
|
230 |
-
msgstr "SoundCloud"
|
231 |
-
|
232 |
-
#: includes/admin/class-social-count-plus-admin.php:241
|
233 |
-
msgid "Display SoundCloud Counter"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: includes/admin/class-social-count-plus-admin.php:245
|
237 |
-
msgid "SoundCloud Username"
|
238 |
-
msgstr "Pseudo SoundCloud"
|
239 |
-
|
240 |
-
#: includes/admin/class-social-count-plus-admin.php:247
|
241 |
-
msgid "Insert your SoundCloud Username."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: includes/admin/class-social-count-plus-admin.php:250
|
245 |
-
msgid "SoundCloud Client ID"
|
246 |
-
msgstr "Client ID SoundCloud"
|
247 |
-
|
248 |
-
#: includes/admin/class-social-count-plus-admin.php:252
|
249 |
-
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:1080
|
254 |
-
msgid "Steam"
|
255 |
-
msgstr "Steam"
|
256 |
-
|
257 |
-
#: includes/admin/class-social-count-plus-admin.php:260
|
258 |
-
msgid "Display Steam Counter"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: includes/admin/class-social-count-plus-admin.php:264
|
262 |
-
msgid "Steam Group Name"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/admin/class-social-count-plus-admin.php:266
|
266 |
-
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:1081
|
271 |
-
msgid "Tumblr"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: includes/admin/class-social-count-plus-admin.php:274
|
275 |
-
msgid "Display Tumblr counter"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/admin/class-social-count-plus-admin.php:278
|
279 |
-
msgid "Tumblr Hostname"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin/class-social-count-plus-admin.php:280
|
283 |
-
msgid "Insert your Tumblr Hostname. Example: %s."
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: includes/admin/class-social-count-plus-admin.php:283
|
287 |
-
msgid "Tumblr Consumer Key"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: includes/admin/class-social-count-plus-admin.php:288
|
291 |
-
msgid "Tumblr Consumer Secret"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/admin/class-social-count-plus-admin.php:293
|
295 |
-
msgid "Tumblr Token"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: includes/admin/class-social-count-plus-admin.php:298
|
299 |
-
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:1082
|
304 |
-
msgid "Twitch"
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: includes/admin/class-social-count-plus-admin.php:308
|
308 |
-
msgid "Display Twitch Counter"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: includes/admin/class-social-count-plus-admin.php:312
|
312 |
-
msgid "Twitch Username"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: includes/admin/class-social-count-plus-admin.php:314
|
316 |
-
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:1083
|
321 |
-
msgid "Twitter"
|
322 |
-
msgstr "Twitter"
|
323 |
-
|
324 |
-
#: includes/admin/class-social-count-plus-admin.php:322
|
325 |
-
msgid "Display Twitter Counter"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin/class-social-count-plus-admin.php:326
|
329 |
-
msgid "Twitter Username"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin/class-social-count-plus-admin.php:328
|
333 |
-
msgid "Insert the Twitter username. Example: %s."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: includes/admin/class-social-count-plus-admin.php:331
|
337 |
-
#: includes/admin/views/html-settings-page.php:25
|
338 |
-
msgid "Twitter Consumer key"
|
339 |
-
msgstr "Twitter Consumer key"
|
340 |
-
|
341 |
-
#: includes/admin/class-social-count-plus-admin.php:336
|
342 |
-
#: includes/admin/views/html-settings-page.php:26
|
343 |
-
msgid "Twitter Consumer secret"
|
344 |
-
msgstr "Twitter Consumer secret"
|
345 |
-
|
346 |
-
#: includes/admin/class-social-count-plus-admin.php:341
|
347 |
-
#: includes/admin/views/html-settings-page.php:27
|
348 |
-
msgid "Twitter Access token"
|
349 |
-
msgstr "Twitter Access token"
|
350 |
-
|
351 |
-
#: includes/admin/class-social-count-plus-admin.php:346
|
352 |
-
#: includes/admin/views/html-settings-page.php:28
|
353 |
-
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:1084
|
358 |
-
msgid "Users"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/admin/class-social-count-plus-admin.php:356
|
362 |
-
msgid "Display Users Counter"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: includes/admin/class-social-count-plus-admin.php:361
|
366 |
-
msgid "User Role"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/admin/class-social-count-plus-admin.php:366
|
370 |
-
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: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 |
-
|
383 |
-
#: includes/admin/class-social-count-plus-admin.php:381
|
384 |
-
msgid "Display Vimeo Counter"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/admin/class-social-count-plus-admin.php:385
|
388 |
-
msgid "Vimeo Username"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/admin/class-social-count-plus-admin.php:387
|
392 |
-
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:1086
|
397 |
-
msgid "YouTube"
|
398 |
-
msgstr "YouTube"
|
399 |
-
|
400 |
-
#: includes/admin/class-social-count-plus-admin.php:395
|
401 |
-
msgid "Display YouTube Counter"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/admin/class-social-count-plus-admin.php:399
|
405 |
-
msgid "YouTube Channel ID"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin/class-social-count-plus-admin.php:401
|
409 |
-
msgid "Insert the YouTube Channel ID. Example: %s."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin/class-social-count-plus-admin.php:404
|
413 |
-
msgid "YouTube Channel URL"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin/class-social-count-plus-admin.php:406
|
417 |
-
msgid "Insert the YouTube channel URL. Example: %s."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin/class-social-count-plus-admin.php:412
|
421 |
-
msgid ""
|
422 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
423 |
-
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
424 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
425 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
426 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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"
|
434 |
-
|
435 |
-
#: includes/admin/class-social-count-plus-admin.php:422
|
436 |
-
msgid "Open URLs in new tab/window"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: includes/admin/class-social-count-plus-admin.php:424
|
440 |
-
#: includes/admin/class-social-count-plus-admin.php:429
|
441 |
-
msgid "This option add %s in all counters URLs."
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/admin/class-social-count-plus-admin.php:427
|
445 |
-
msgid "Add nofollow in URLs"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/admin/class-social-count-plus-admin.php:436
|
449 |
-
#: includes/admin/views/html-settings-page.php:9
|
450 |
-
msgid "Design"
|
451 |
-
msgstr "Style"
|
452 |
-
|
453 |
-
#: includes/admin/class-social-count-plus-admin.php:439
|
454 |
-
msgid "Layout Models"
|
455 |
-
msgstr "Modeles de Disposition"
|
456 |
-
|
457 |
-
#: includes/admin/class-social-count-plus-admin.php:445
|
458 |
-
msgid "Text Color"
|
459 |
-
msgstr "Couleur du texte"
|
460 |
-
|
461 |
-
#: includes/admin/class-social-count-plus-admin.php:450
|
462 |
-
msgid "Order"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/admin/class-social-count-plus-admin.php:452
|
466 |
-
msgid "This option controls the order of the icons in the widget."
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#. Plugin Name of the plugin/theme
|
470 |
-
msgid "Social Count Plus"
|
471 |
-
msgstr "Social Count Plus"
|
472 |
-
|
473 |
-
#: includes/admin/class-social-count-plus-admin.php:698
|
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 ""
|
532 |
-
|
533 |
-
#: includes/admin/views/html-help-us.php:11
|
534 |
-
msgid ""
|
535 |
-
"Help us keep the %s free making a %s or rate %s on %s. Thank you in advance!"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/admin/views/html-help-us.php:11
|
539 |
-
msgid "donation"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/admin/views/html-help-us.php:11
|
543 |
-
msgid "WordPress.org"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
547 |
-
msgid ""
|
548 |
-
"Use this library to generate your own model layout or display specific data "
|
549 |
-
"counters."
|
550 |
-
msgstr "Utilisez cette bibliothèque pour créer votre propre modèle de présentation ou afficher les compteurs de données spécifiques."
|
551 |
-
|
552 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:9
|
553 |
-
msgid "Shortcodes"
|
554 |
-
msgstr "Raccourcis"
|
555 |
-
|
556 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:11
|
557 |
-
msgid "Note: the shortcodes displays only the count in plain text."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:16
|
561 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:29
|
562 |
-
msgid "%s counter"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:22
|
566 |
-
msgid "Functions"
|
567 |
-
msgstr "Fonctions"
|
568 |
-
|
569 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:24
|
570 |
-
msgid ""
|
571 |
-
"Note: the functions displays only the count in plain text, except the "
|
572 |
-
"<code>get_scp_widget()</code> function that displays with images."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:34
|
576 |
-
msgid "Full widget"
|
577 |
-
msgstr "Widget complet"
|
578 |
-
|
579 |
-
#: includes/admin/views/html-settings-page.php:9
|
580 |
-
msgid "Shortcodes and Functions"
|
581 |
-
msgstr "Raccourcis et fonctions"
|
582 |
-
|
583 |
-
#: includes/admin/views/html-settings-page.php:9
|
584 |
-
msgid "System Status"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/admin/views/html-settings-page.php:22
|
588 |
-
msgid "To use the counter of Twitter you need to fill the fields:"
|
589 |
-
msgstr "Pour utiliser le compteur Twitter, vous devez remplir les champs : "
|
590 |
-
|
591 |
-
#: includes/admin/views/html-settings-page.php:24
|
592 |
-
msgid "Twitter username"
|
593 |
-
msgstr "Pseudo twitter"
|
594 |
-
|
595 |
-
#: includes/admin/views/html-settings-system-status-page.php:5
|
596 |
-
msgid "Environment"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/admin/views/html-settings-system-status-page.php:33
|
600 |
-
msgid ""
|
601 |
-
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
602 |
-
"communicate with the social APIs will not work. Contact your hosting "
|
603 |
-
"provider."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: includes/admin/views/html-settings-system-status-page.php:37
|
607 |
-
msgid "Your server has fsockopen and cURL enabled."
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: includes/admin/views/html-settings-system-status-page.php:39
|
611 |
-
msgid "Your server has fsockopen enabled, cURL is disabled."
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: includes/admin/views/html-settings-system-status-page.php:41
|
615 |
-
msgid "Your server has cURL enabled, fsockopen is disabled."
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: includes/admin/views/html-settings-system-status-page.php:47
|
619 |
-
msgid "fsockopen/cURL"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: includes/admin/views/html-settings-system-status-page.php:57
|
623 |
-
msgid "wp_remote_get() failed. This may not work with your server."
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: includes/admin/views/html-settings-system-status-page.php:62
|
627 |
-
msgid "wp_remote_get() was successful."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: includes/admin/views/html-settings-system-status-page.php:64
|
631 |
-
msgid ""
|
632 |
-
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
633 |
-
"your hosting provider. Error:"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/admin/views/html-settings-system-status-page.php:67
|
637 |
-
msgid "WP Remote Get"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: includes/admin/views/html-settings-system-status-page.php:77
|
641 |
-
msgid "Get System Report"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: includes/class-social-count-plus-widget.php:19
|
645 |
-
msgid "Display the counter"
|
646 |
-
msgstr "Afficher le compteur"
|
647 |
-
|
648 |
-
#: includes/class-social-count-plus-widget.php:59
|
649 |
-
msgid "Title"
|
650 |
-
msgstr "Titre"
|
651 |
-
|
652 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:80
|
653 |
-
msgid "comments"
|
654 |
-
msgstr "commentaires"
|
655 |
-
|
656 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:114
|
657 |
-
msgid "likes"
|
658 |
-
msgstr "Fans"
|
659 |
-
|
660 |
-
#: includes/counters/class-social-count-plus-github-counter.php:83
|
661 |
-
#: includes/counters/class-social-count-plus-googleplus-counter.php:83
|
662 |
-
#: includes/counters/class-social-count-plus-instagram-counter.php:87
|
663 |
-
#: includes/counters/class-social-count-plus-linkedin-counter.php:88
|
664 |
-
#: includes/counters/class-social-count-plus-pinterest-counter.php:92
|
665 |
-
#: includes/counters/class-social-count-plus-soundcloud-counter.php:83
|
666 |
-
#: includes/counters/class-social-count-plus-tumblr-counter.php:187
|
667 |
-
#: includes/counters/class-social-count-plus-twitch-counter.php:90
|
668 |
-
#: includes/counters/class-social-count-plus-twitter-counter.php:188
|
669 |
-
#: includes/counters/class-social-count-plus-vimeo-counter.php:83
|
670 |
-
msgid "followers"
|
671 |
-
msgstr "Abonnés"
|
672 |
-
|
673 |
-
#: includes/counters/class-social-count-plus-steam-counter.php:82
|
674 |
-
msgid "members"
|
675 |
-
msgstr "membres"
|
676 |
-
|
677 |
-
#: includes/counters/class-social-count-plus-youtube-counter.php:90
|
678 |
-
msgid "subscribers"
|
679 |
-
msgstr "Abonnés"
|
680 |
-
|
681 |
-
#. Plugin URI of the plugin/theme
|
682 |
-
msgid "https://github.com/claudiosmweb/social-count-plus"
|
683 |
-
msgstr "https://github.com/claudiosmweb/social-count-plus"
|
684 |
-
|
685 |
-
#. Description of the plugin/theme
|
686 |
-
msgid ""
|
687 |
-
"Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, "
|
688 |
-
"Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, "
|
689 |
-
"Youtube, posts, comments and users."
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#. Author of the plugin/theme
|
693 |
-
msgid "Claudio Sanches"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#. Author URI of the plugin/theme
|
697 |
-
msgid "http://claudiosmweb.com/"
|
698 |
-
msgstr "http://claudiosmweb.com/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-count-plus-pt_BR.mo
DELETED
Binary file
|
languages/social-count-plus-pt_BR.po
DELETED
@@ -1,699 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 Claudio Sanches
|
2 |
-
# This file is distributed under the GPLv2 or later.
|
3 |
-
# Translators:
|
4 |
-
# Claudio Sanches <contato@claudiosmweb.com>, 2014
|
5 |
-
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-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"
|
14 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
-
"Content-Transfer-Encoding: 8bit\n"
|
16 |
-
"Language: pt_BR\n"
|
17 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
-
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
19 |
-
|
20 |
-
#: includes/admin/class-social-count-plus-admin.php:66
|
21 |
-
msgid "Create an App on Twitter in %s and get this data."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: includes/admin/class-social-count-plus-admin.php:68
|
25 |
-
msgid "Create an App on Facebook in %s and get this data."
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: includes/admin/class-social-count-plus-admin.php:70
|
29 |
-
msgid "Get the this data in %s."
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: includes/admin/class-social-count-plus-admin.php:72
|
33 |
-
msgid ""
|
34 |
-
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
35 |
-
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
-
|
43 |
-
#: includes/admin/class-social-count-plus-admin.php:80
|
44 |
-
msgid "Display Comments Counter"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: includes/admin/class-social-count-plus-admin.php:85
|
48 |
-
#: includes/admin/class-social-count-plus-admin.php:231
|
49 |
-
#: includes/admin/class-social-count-plus-admin.php:371
|
50 |
-
msgid "URL"
|
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 |
-
|
58 |
-
#: includes/admin/class-social-count-plus-admin.php:95
|
59 |
-
msgid "Display Facebook Counter"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: includes/admin/class-social-count-plus-admin.php:99
|
63 |
-
msgid "Facebook Page ID"
|
64 |
-
msgstr "ID da página no Facebook"
|
65 |
-
|
66 |
-
#: includes/admin/class-social-count-plus-admin.php:103
|
67 |
-
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: includes/admin/class-social-count-plus-admin.php:104
|
71 |
-
msgid ""
|
72 |
-
"You can find this data clicking to edit your page on Facebook. The URL will "
|
73 |
-
"be similar to this:"
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: includes/admin/class-social-count-plus-admin.php:105
|
77 |
-
msgid "or"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: includes/admin/class-social-count-plus-admin.php:109
|
81 |
-
msgid "Facebook App ID"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: includes/admin/class-social-count-plus-admin.php:114
|
85 |
-
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:1073
|
90 |
-
msgid "GitHub"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: includes/admin/class-social-count-plus-admin.php:124
|
94 |
-
msgid "Display GitHub Counter"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: includes/admin/class-social-count-plus-admin.php:128
|
98 |
-
msgid "GitHub Username"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: includes/admin/class-social-count-plus-admin.php:130
|
102 |
-
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:1074
|
107 |
-
msgid "Google+"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: includes/admin/class-social-count-plus-admin.php:138
|
111 |
-
msgid "Display Google+ Counter"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: includes/admin/class-social-count-plus-admin.php:142
|
115 |
-
msgid "Google+ ID"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: includes/admin/class-social-count-plus-admin.php:146
|
119 |
-
msgid "Google+ page or profile ID."
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: includes/admin/class-social-count-plus-admin.php:147
|
123 |
-
msgid "Example:"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: includes/admin/class-social-count-plus-admin.php:151
|
127 |
-
#: includes/admin/class-social-count-plus-admin.php:409
|
128 |
-
msgid "Google API Key"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: includes/admin/class-social-count-plus-admin.php:154
|
132 |
-
msgid ""
|
133 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
134 |
-
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
135 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
136 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
137 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
-
|
145 |
-
#: includes/admin/class-social-count-plus-admin.php:164
|
146 |
-
msgid "Display Instagram Counter"
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
#: includes/admin/class-social-count-plus-admin.php:168
|
150 |
-
msgid "Instagram Username"
|
151 |
-
msgstr "Nome de usuário no Instagram"
|
152 |
-
|
153 |
-
#: includes/admin/class-social-count-plus-admin.php:170
|
154 |
-
msgid "Insert your Instagram Username."
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: includes/admin/class-social-count-plus-admin.php:173
|
158 |
-
msgid "Instagram User ID"
|
159 |
-
msgstr "User ID do Instagram"
|
160 |
-
|
161 |
-
#: includes/admin/class-social-count-plus-admin.php:175
|
162 |
-
msgid "Insert your Instagram User ID."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: includes/admin/class-social-count-plus-admin.php:178
|
166 |
-
msgid "Instagram Access Token"
|
167 |
-
msgstr "Access Token do Instagram"
|
168 |
-
|
169 |
-
#: includes/admin/class-social-count-plus-admin.php:180
|
170 |
-
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:1076
|
175 |
-
msgid "LinkedIn"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: includes/admin/class-social-count-plus-admin.php:188
|
179 |
-
msgid "Display LinkedIn counter"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: includes/admin/class-social-count-plus-admin.php:192
|
183 |
-
msgid "LinkedIn Company ID"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: includes/admin/class-social-count-plus-admin.php:194
|
187 |
-
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: includes/admin/class-social-count-plus-admin.php:197
|
191 |
-
msgid "LinkedIn Access Token"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: includes/admin/class-social-count-plus-admin.php:199
|
195 |
-
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:1077
|
200 |
-
msgid "Pinterest"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: includes/admin/class-social-count-plus-admin.php:207
|
204 |
-
msgid "Display Pinterest Counter"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: includes/admin/class-social-count-plus-admin.php:211
|
208 |
-
msgid "Pinterest Username"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: includes/admin/class-social-count-plus-admin.php:213
|
212 |
-
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:1078
|
217 |
-
msgid "Posts"
|
218 |
-
msgstr "Posts"
|
219 |
-
|
220 |
-
#: includes/admin/class-social-count-plus-admin.php:221
|
221 |
-
msgid "Display Posts Counter"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: includes/admin/class-social-count-plus-admin.php:226
|
225 |
-
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:1079
|
230 |
-
msgid "SoundCloud"
|
231 |
-
msgstr "SoundCloud"
|
232 |
-
|
233 |
-
#: includes/admin/class-social-count-plus-admin.php:241
|
234 |
-
msgid "Display SoundCloud Counter"
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
#: includes/admin/class-social-count-plus-admin.php:245
|
238 |
-
msgid "SoundCloud Username"
|
239 |
-
msgstr "Nome de usuário no SoundCloud"
|
240 |
-
|
241 |
-
#: includes/admin/class-social-count-plus-admin.php:247
|
242 |
-
msgid "Insert your SoundCloud Username."
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: includes/admin/class-social-count-plus-admin.php:250
|
246 |
-
msgid "SoundCloud Client ID"
|
247 |
-
msgstr "Client ID do SoundCloud"
|
248 |
-
|
249 |
-
#: includes/admin/class-social-count-plus-admin.php:252
|
250 |
-
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:1080
|
255 |
-
msgid "Steam"
|
256 |
-
msgstr "Steam"
|
257 |
-
|
258 |
-
#: includes/admin/class-social-count-plus-admin.php:260
|
259 |
-
msgid "Display Steam Counter"
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: includes/admin/class-social-count-plus-admin.php:264
|
263 |
-
msgid "Steam Group Name"
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: includes/admin/class-social-count-plus-admin.php:266
|
267 |
-
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:1081
|
272 |
-
msgid "Tumblr"
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: includes/admin/class-social-count-plus-admin.php:274
|
276 |
-
msgid "Display Tumblr counter"
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: includes/admin/class-social-count-plus-admin.php:278
|
280 |
-
msgid "Tumblr Hostname"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: includes/admin/class-social-count-plus-admin.php:280
|
284 |
-
msgid "Insert your Tumblr Hostname. Example: %s."
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: includes/admin/class-social-count-plus-admin.php:283
|
288 |
-
msgid "Tumblr Consumer Key"
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: includes/admin/class-social-count-plus-admin.php:288
|
292 |
-
msgid "Tumblr Consumer Secret"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: includes/admin/class-social-count-plus-admin.php:293
|
296 |
-
msgid "Tumblr Token"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: includes/admin/class-social-count-plus-admin.php:298
|
300 |
-
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:1082
|
305 |
-
msgid "Twitch"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: includes/admin/class-social-count-plus-admin.php:308
|
309 |
-
msgid "Display Twitch Counter"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: includes/admin/class-social-count-plus-admin.php:312
|
313 |
-
msgid "Twitch Username"
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#: includes/admin/class-social-count-plus-admin.php:314
|
317 |
-
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:1083
|
322 |
-
msgid "Twitter"
|
323 |
-
msgstr "Twitter"
|
324 |
-
|
325 |
-
#: includes/admin/class-social-count-plus-admin.php:322
|
326 |
-
msgid "Display Twitter Counter"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: includes/admin/class-social-count-plus-admin.php:326
|
330 |
-
msgid "Twitter Username"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: includes/admin/class-social-count-plus-admin.php:328
|
334 |
-
msgid "Insert the Twitter username. Example: %s."
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: includes/admin/class-social-count-plus-admin.php:331
|
338 |
-
#: includes/admin/views/html-settings-page.php:25
|
339 |
-
msgid "Twitter Consumer key"
|
340 |
-
msgstr "Twitter Consumer key"
|
341 |
-
|
342 |
-
#: includes/admin/class-social-count-plus-admin.php:336
|
343 |
-
#: includes/admin/views/html-settings-page.php:26
|
344 |
-
msgid "Twitter Consumer secret"
|
345 |
-
msgstr "Twitter Consumer secret"
|
346 |
-
|
347 |
-
#: includes/admin/class-social-count-plus-admin.php:341
|
348 |
-
#: includes/admin/views/html-settings-page.php:27
|
349 |
-
msgid "Twitter Access token"
|
350 |
-
msgstr "Twitter Access token"
|
351 |
-
|
352 |
-
#: includes/admin/class-social-count-plus-admin.php:346
|
353 |
-
#: includes/admin/views/html-settings-page.php:28
|
354 |
-
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:1084
|
359 |
-
msgid "Users"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: includes/admin/class-social-count-plus-admin.php:356
|
363 |
-
msgid "Display Users Counter"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: includes/admin/class-social-count-plus-admin.php:361
|
367 |
-
msgid "User Role"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: includes/admin/class-social-count-plus-admin.php:366
|
371 |
-
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: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 |
-
|
384 |
-
#: includes/admin/class-social-count-plus-admin.php:381
|
385 |
-
msgid "Display Vimeo Counter"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: includes/admin/class-social-count-plus-admin.php:385
|
389 |
-
msgid "Vimeo Username"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: includes/admin/class-social-count-plus-admin.php:387
|
393 |
-
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:1086
|
398 |
-
msgid "YouTube"
|
399 |
-
msgstr "YouTube"
|
400 |
-
|
401 |
-
#: includes/admin/class-social-count-plus-admin.php:395
|
402 |
-
msgid "Display YouTube Counter"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: includes/admin/class-social-count-plus-admin.php:399
|
406 |
-
msgid "YouTube Channel ID"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: includes/admin/class-social-count-plus-admin.php:401
|
410 |
-
msgid "Insert the YouTube Channel ID. Example: %s."
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: includes/admin/class-social-count-plus-admin.php:404
|
414 |
-
msgid "YouTube Channel URL"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: includes/admin/class-social-count-plus-admin.php:406
|
418 |
-
msgid "Insert the YouTube channel URL. Example: %s."
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: includes/admin/class-social-count-plus-admin.php:412
|
422 |
-
msgid ""
|
423 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
424 |
-
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
425 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
426 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
427 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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"
|
435 |
-
|
436 |
-
#: includes/admin/class-social-count-plus-admin.php:422
|
437 |
-
msgid "Open URLs in new tab/window"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: includes/admin/class-social-count-plus-admin.php:424
|
441 |
-
#: includes/admin/class-social-count-plus-admin.php:429
|
442 |
-
msgid "This option add %s in all counters URLs."
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: includes/admin/class-social-count-plus-admin.php:427
|
446 |
-
msgid "Add nofollow in URLs"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: includes/admin/class-social-count-plus-admin.php:436
|
450 |
-
#: includes/admin/views/html-settings-page.php:9
|
451 |
-
msgid "Design"
|
452 |
-
msgstr "Estilos"
|
453 |
-
|
454 |
-
#: includes/admin/class-social-count-plus-admin.php:439
|
455 |
-
msgid "Layout Models"
|
456 |
-
msgstr "Modelos"
|
457 |
-
|
458 |
-
#: includes/admin/class-social-count-plus-admin.php:445
|
459 |
-
msgid "Text Color"
|
460 |
-
msgstr "Cor do texto"
|
461 |
-
|
462 |
-
#: includes/admin/class-social-count-plus-admin.php:450
|
463 |
-
msgid "Order"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: includes/admin/class-social-count-plus-admin.php:452
|
467 |
-
msgid "This option controls the order of the icons in the widget."
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#. Plugin Name of the plugin/theme
|
471 |
-
msgid "Social Count Plus"
|
472 |
-
msgstr "Social Count Plus"
|
473 |
-
|
474 |
-
#: includes/admin/class-social-count-plus-admin.php:698
|
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 ""
|
533 |
-
|
534 |
-
#: includes/admin/views/html-help-us.php:11
|
535 |
-
msgid ""
|
536 |
-
"Help us keep the %s free making a %s or rate %s on %s. Thank you in advance!"
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: includes/admin/views/html-help-us.php:11
|
540 |
-
msgid "donation"
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: includes/admin/views/html-help-us.php:11
|
544 |
-
msgid "WordPress.org"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
548 |
-
msgid ""
|
549 |
-
"Use this library to generate your own model layout or display specific data "
|
550 |
-
"counters."
|
551 |
-
msgstr "Utilize esta biblioteca para gerar o seu próprio modelo de layout ou exibir contadores de dados específicos."
|
552 |
-
|
553 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:9
|
554 |
-
msgid "Shortcodes"
|
555 |
-
msgstr "Shortcodes"
|
556 |
-
|
557 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:11
|
558 |
-
msgid "Note: the shortcodes displays only the count in plain text."
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:16
|
562 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:29
|
563 |
-
msgid "%s counter"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:22
|
567 |
-
msgid "Functions"
|
568 |
-
msgstr "Funções"
|
569 |
-
|
570 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:24
|
571 |
-
msgid ""
|
572 |
-
"Note: the functions displays only the count in plain text, except the "
|
573 |
-
"<code>get_scp_widget()</code> function that displays with images."
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:34
|
577 |
-
msgid "Full widget"
|
578 |
-
msgstr "Widget completo"
|
579 |
-
|
580 |
-
#: includes/admin/views/html-settings-page.php:9
|
581 |
-
msgid "Shortcodes and Functions"
|
582 |
-
msgstr "Shortcodes e Funções"
|
583 |
-
|
584 |
-
#: includes/admin/views/html-settings-page.php:9
|
585 |
-
msgid "System Status"
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: includes/admin/views/html-settings-page.php:22
|
589 |
-
msgid "To use the counter of Twitter you need to fill the fields:"
|
590 |
-
msgstr "Para usar o contador do Twitter você precisa preencher os campos:"
|
591 |
-
|
592 |
-
#: includes/admin/views/html-settings-page.php:24
|
593 |
-
msgid "Twitter username"
|
594 |
-
msgstr "Nome de usuário no Twitter"
|
595 |
-
|
596 |
-
#: includes/admin/views/html-settings-system-status-page.php:5
|
597 |
-
msgid "Environment"
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: includes/admin/views/html-settings-system-status-page.php:33
|
601 |
-
msgid ""
|
602 |
-
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
603 |
-
"communicate with the social APIs will not work. Contact your hosting "
|
604 |
-
"provider."
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: includes/admin/views/html-settings-system-status-page.php:37
|
608 |
-
msgid "Your server has fsockopen and cURL enabled."
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: includes/admin/views/html-settings-system-status-page.php:39
|
612 |
-
msgid "Your server has fsockopen enabled, cURL is disabled."
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: includes/admin/views/html-settings-system-status-page.php:41
|
616 |
-
msgid "Your server has cURL enabled, fsockopen is disabled."
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: includes/admin/views/html-settings-system-status-page.php:47
|
620 |
-
msgid "fsockopen/cURL"
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: includes/admin/views/html-settings-system-status-page.php:57
|
624 |
-
msgid "wp_remote_get() failed. This may not work with your server."
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: includes/admin/views/html-settings-system-status-page.php:62
|
628 |
-
msgid "wp_remote_get() was successful."
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: includes/admin/views/html-settings-system-status-page.php:64
|
632 |
-
msgid ""
|
633 |
-
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
634 |
-
"your hosting provider. Error:"
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
#: includes/admin/views/html-settings-system-status-page.php:67
|
638 |
-
msgid "WP Remote Get"
|
639 |
-
msgstr ""
|
640 |
-
|
641 |
-
#: includes/admin/views/html-settings-system-status-page.php:77
|
642 |
-
msgid "Get System Report"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
#: includes/class-social-count-plus-widget.php:19
|
646 |
-
msgid "Display the counter"
|
647 |
-
msgstr "Exibir o contador"
|
648 |
-
|
649 |
-
#: includes/class-social-count-plus-widget.php:59
|
650 |
-
msgid "Title"
|
651 |
-
msgstr "Título"
|
652 |
-
|
653 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:80
|
654 |
-
msgid "comments"
|
655 |
-
msgstr "comentários"
|
656 |
-
|
657 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:114
|
658 |
-
msgid "likes"
|
659 |
-
msgstr "fãs"
|
660 |
-
|
661 |
-
#: includes/counters/class-social-count-plus-github-counter.php:83
|
662 |
-
#: includes/counters/class-social-count-plus-googleplus-counter.php:83
|
663 |
-
#: includes/counters/class-social-count-plus-instagram-counter.php:87
|
664 |
-
#: includes/counters/class-social-count-plus-linkedin-counter.php:88
|
665 |
-
#: includes/counters/class-social-count-plus-pinterest-counter.php:92
|
666 |
-
#: includes/counters/class-social-count-plus-soundcloud-counter.php:83
|
667 |
-
#: includes/counters/class-social-count-plus-tumblr-counter.php:187
|
668 |
-
#: includes/counters/class-social-count-plus-twitch-counter.php:90
|
669 |
-
#: includes/counters/class-social-count-plus-twitter-counter.php:188
|
670 |
-
#: includes/counters/class-social-count-plus-vimeo-counter.php:83
|
671 |
-
msgid "followers"
|
672 |
-
msgstr "seguidores"
|
673 |
-
|
674 |
-
#: includes/counters/class-social-count-plus-steam-counter.php:82
|
675 |
-
msgid "members"
|
676 |
-
msgstr "membros"
|
677 |
-
|
678 |
-
#: includes/counters/class-social-count-plus-youtube-counter.php:90
|
679 |
-
msgid "subscribers"
|
680 |
-
msgstr "assinantes"
|
681 |
-
|
682 |
-
#. Plugin URI of the plugin/theme
|
683 |
-
msgid "https://github.com/claudiosmweb/social-count-plus"
|
684 |
-
msgstr "https://github.com/claudiosmweb/social-count-plus"
|
685 |
-
|
686 |
-
#. Description of the plugin/theme
|
687 |
-
msgid ""
|
688 |
-
"Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, "
|
689 |
-
"Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, "
|
690 |
-
"Youtube, posts, comments and users."
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
#. Author of the plugin/theme
|
694 |
-
msgid "Claudio Sanches"
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#. Author URI of the plugin/theme
|
698 |
-
msgid "http://claudiosmweb.com/"
|
699 |
-
msgstr "http://claudiosmweb.com/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-count-plus-ru_RU.mo
DELETED
Binary file
|
languages/social-count-plus-ru_RU.po
DELETED
@@ -1,698 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 Claudio Sanches
|
2 |
-
# This file is distributed under the GPLv2 or later.
|
3 |
-
# Translators:
|
4 |
-
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-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"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"Language: ru_RU\n"
|
16 |
-
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
17 |
-
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
18 |
-
|
19 |
-
#: includes/admin/class-social-count-plus-admin.php:66
|
20 |
-
msgid "Create an App on Twitter in %s and get this data."
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: includes/admin/class-social-count-plus-admin.php:68
|
24 |
-
msgid "Create an App on Facebook in %s and get this data."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: includes/admin/class-social-count-plus-admin.php:70
|
28 |
-
msgid "Get the this data in %s."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/admin/class-social-count-plus-admin.php:72
|
32 |
-
msgid ""
|
33 |
-
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
34 |
-
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
-
|
42 |
-
#: includes/admin/class-social-count-plus-admin.php:80
|
43 |
-
msgid "Display Comments Counter"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: includes/admin/class-social-count-plus-admin.php:85
|
47 |
-
#: includes/admin/class-social-count-plus-admin.php:231
|
48 |
-
#: includes/admin/class-social-count-plus-admin.php:371
|
49 |
-
msgid "URL"
|
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 |
-
|
57 |
-
#: includes/admin/class-social-count-plus-admin.php:95
|
58 |
-
msgid "Display Facebook Counter"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/admin/class-social-count-plus-admin.php:99
|
62 |
-
msgid "Facebook Page ID"
|
63 |
-
msgstr "ID страницы Facebook"
|
64 |
-
|
65 |
-
#: includes/admin/class-social-count-plus-admin.php:103
|
66 |
-
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/admin/class-social-count-plus-admin.php:104
|
70 |
-
msgid ""
|
71 |
-
"You can find this data clicking to edit your page on Facebook. The URL will "
|
72 |
-
"be similar to this:"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/admin/class-social-count-plus-admin.php:105
|
76 |
-
msgid "or"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/admin/class-social-count-plus-admin.php:109
|
80 |
-
msgid "Facebook App ID"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/admin/class-social-count-plus-admin.php:114
|
84 |
-
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:1073
|
89 |
-
msgid "GitHub"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: includes/admin/class-social-count-plus-admin.php:124
|
93 |
-
msgid "Display GitHub Counter"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: includes/admin/class-social-count-plus-admin.php:128
|
97 |
-
msgid "GitHub Username"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: includes/admin/class-social-count-plus-admin.php:130
|
101 |
-
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:1074
|
106 |
-
msgid "Google+"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: includes/admin/class-social-count-plus-admin.php:138
|
110 |
-
msgid "Display Google+ Counter"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/admin/class-social-count-plus-admin.php:142
|
114 |
-
msgid "Google+ ID"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/admin/class-social-count-plus-admin.php:146
|
118 |
-
msgid "Google+ page or profile ID."
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/admin/class-social-count-plus-admin.php:147
|
122 |
-
msgid "Example:"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/admin/class-social-count-plus-admin.php:151
|
126 |
-
#: includes/admin/class-social-count-plus-admin.php:409
|
127 |
-
msgid "Google API Key"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: includes/admin/class-social-count-plus-admin.php:154
|
131 |
-
msgid ""
|
132 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
133 |
-
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
134 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
135 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
136 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
-
|
144 |
-
#: includes/admin/class-social-count-plus-admin.php:164
|
145 |
-
msgid "Display Instagram Counter"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/admin/class-social-count-plus-admin.php:168
|
149 |
-
msgid "Instagram Username"
|
150 |
-
msgstr "Пользователь Instagram"
|
151 |
-
|
152 |
-
#: includes/admin/class-social-count-plus-admin.php:170
|
153 |
-
msgid "Insert your Instagram Username."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/admin/class-social-count-plus-admin.php:173
|
157 |
-
msgid "Instagram User ID"
|
158 |
-
msgstr "ID пользователя Instagram"
|
159 |
-
|
160 |
-
#: includes/admin/class-social-count-plus-admin.php:175
|
161 |
-
msgid "Insert your Instagram User ID."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: includes/admin/class-social-count-plus-admin.php:178
|
165 |
-
msgid "Instagram Access Token"
|
166 |
-
msgstr "Instagram Access Token"
|
167 |
-
|
168 |
-
#: includes/admin/class-social-count-plus-admin.php:180
|
169 |
-
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:1076
|
174 |
-
msgid "LinkedIn"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/admin/class-social-count-plus-admin.php:188
|
178 |
-
msgid "Display LinkedIn counter"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/admin/class-social-count-plus-admin.php:192
|
182 |
-
msgid "LinkedIn Company ID"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: includes/admin/class-social-count-plus-admin.php:194
|
186 |
-
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: includes/admin/class-social-count-plus-admin.php:197
|
190 |
-
msgid "LinkedIn Access Token"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: includes/admin/class-social-count-plus-admin.php:199
|
194 |
-
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:1077
|
199 |
-
msgid "Pinterest"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: includes/admin/class-social-count-plus-admin.php:207
|
203 |
-
msgid "Display Pinterest Counter"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: includes/admin/class-social-count-plus-admin.php:211
|
207 |
-
msgid "Pinterest Username"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: includes/admin/class-social-count-plus-admin.php:213
|
211 |
-
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:1078
|
216 |
-
msgid "Posts"
|
217 |
-
msgstr "Записи"
|
218 |
-
|
219 |
-
#: includes/admin/class-social-count-plus-admin.php:221
|
220 |
-
msgid "Display Posts Counter"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: includes/admin/class-social-count-plus-admin.php:226
|
224 |
-
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:1079
|
229 |
-
msgid "SoundCloud"
|
230 |
-
msgstr "SoundCloud"
|
231 |
-
|
232 |
-
#: includes/admin/class-social-count-plus-admin.php:241
|
233 |
-
msgid "Display SoundCloud Counter"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: includes/admin/class-social-count-plus-admin.php:245
|
237 |
-
msgid "SoundCloud Username"
|
238 |
-
msgstr "Пользователь SoundCloud"
|
239 |
-
|
240 |
-
#: includes/admin/class-social-count-plus-admin.php:247
|
241 |
-
msgid "Insert your SoundCloud Username."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: includes/admin/class-social-count-plus-admin.php:250
|
245 |
-
msgid "SoundCloud Client ID"
|
246 |
-
msgstr "ID клиента SoundCloud"
|
247 |
-
|
248 |
-
#: includes/admin/class-social-count-plus-admin.php:252
|
249 |
-
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:1080
|
254 |
-
msgid "Steam"
|
255 |
-
msgstr "Steam"
|
256 |
-
|
257 |
-
#: includes/admin/class-social-count-plus-admin.php:260
|
258 |
-
msgid "Display Steam Counter"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: includes/admin/class-social-count-plus-admin.php:264
|
262 |
-
msgid "Steam Group Name"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/admin/class-social-count-plus-admin.php:266
|
266 |
-
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:1081
|
271 |
-
msgid "Tumblr"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: includes/admin/class-social-count-plus-admin.php:274
|
275 |
-
msgid "Display Tumblr counter"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/admin/class-social-count-plus-admin.php:278
|
279 |
-
msgid "Tumblr Hostname"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin/class-social-count-plus-admin.php:280
|
283 |
-
msgid "Insert your Tumblr Hostname. Example: %s."
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: includes/admin/class-social-count-plus-admin.php:283
|
287 |
-
msgid "Tumblr Consumer Key"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: includes/admin/class-social-count-plus-admin.php:288
|
291 |
-
msgid "Tumblr Consumer Secret"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/admin/class-social-count-plus-admin.php:293
|
295 |
-
msgid "Tumblr Token"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: includes/admin/class-social-count-plus-admin.php:298
|
299 |
-
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:1082
|
304 |
-
msgid "Twitch"
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: includes/admin/class-social-count-plus-admin.php:308
|
308 |
-
msgid "Display Twitch Counter"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: includes/admin/class-social-count-plus-admin.php:312
|
312 |
-
msgid "Twitch Username"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: includes/admin/class-social-count-plus-admin.php:314
|
316 |
-
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:1083
|
321 |
-
msgid "Twitter"
|
322 |
-
msgstr "Twitter"
|
323 |
-
|
324 |
-
#: includes/admin/class-social-count-plus-admin.php:322
|
325 |
-
msgid "Display Twitter Counter"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin/class-social-count-plus-admin.php:326
|
329 |
-
msgid "Twitter Username"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin/class-social-count-plus-admin.php:328
|
333 |
-
msgid "Insert the Twitter username. Example: %s."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: includes/admin/class-social-count-plus-admin.php:331
|
337 |
-
#: includes/admin/views/html-settings-page.php:25
|
338 |
-
msgid "Twitter Consumer key"
|
339 |
-
msgstr "Twitter Consumer key"
|
340 |
-
|
341 |
-
#: includes/admin/class-social-count-plus-admin.php:336
|
342 |
-
#: includes/admin/views/html-settings-page.php:26
|
343 |
-
msgid "Twitter Consumer secret"
|
344 |
-
msgstr "Twitter Consumer secret"
|
345 |
-
|
346 |
-
#: includes/admin/class-social-count-plus-admin.php:341
|
347 |
-
#: includes/admin/views/html-settings-page.php:27
|
348 |
-
msgid "Twitter Access token"
|
349 |
-
msgstr "Twitter Access token"
|
350 |
-
|
351 |
-
#: includes/admin/class-social-count-plus-admin.php:346
|
352 |
-
#: includes/admin/views/html-settings-page.php:28
|
353 |
-
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:1084
|
358 |
-
msgid "Users"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/admin/class-social-count-plus-admin.php:356
|
362 |
-
msgid "Display Users Counter"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: includes/admin/class-social-count-plus-admin.php:361
|
366 |
-
msgid "User Role"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/admin/class-social-count-plus-admin.php:366
|
370 |
-
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: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 |
-
|
383 |
-
#: includes/admin/class-social-count-plus-admin.php:381
|
384 |
-
msgid "Display Vimeo Counter"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/admin/class-social-count-plus-admin.php:385
|
388 |
-
msgid "Vimeo Username"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/admin/class-social-count-plus-admin.php:387
|
392 |
-
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:1086
|
397 |
-
msgid "YouTube"
|
398 |
-
msgstr "YouTube"
|
399 |
-
|
400 |
-
#: includes/admin/class-social-count-plus-admin.php:395
|
401 |
-
msgid "Display YouTube Counter"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/admin/class-social-count-plus-admin.php:399
|
405 |
-
msgid "YouTube Channel ID"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin/class-social-count-plus-admin.php:401
|
409 |
-
msgid "Insert the YouTube Channel ID. Example: %s."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin/class-social-count-plus-admin.php:404
|
413 |
-
msgid "YouTube Channel URL"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin/class-social-count-plus-admin.php:406
|
417 |
-
msgid "Insert the YouTube channel URL. Example: %s."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin/class-social-count-plus-admin.php:412
|
421 |
-
msgid ""
|
422 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
423 |
-
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
424 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
425 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
426 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 "Настройки"
|
434 |
-
|
435 |
-
#: includes/admin/class-social-count-plus-admin.php:422
|
436 |
-
msgid "Open URLs in new tab/window"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: includes/admin/class-social-count-plus-admin.php:424
|
440 |
-
#: includes/admin/class-social-count-plus-admin.php:429
|
441 |
-
msgid "This option add %s in all counters URLs."
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/admin/class-social-count-plus-admin.php:427
|
445 |
-
msgid "Add nofollow in URLs"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/admin/class-social-count-plus-admin.php:436
|
449 |
-
#: includes/admin/views/html-settings-page.php:9
|
450 |
-
msgid "Design"
|
451 |
-
msgstr "Внешний вид"
|
452 |
-
|
453 |
-
#: includes/admin/class-social-count-plus-admin.php:439
|
454 |
-
msgid "Layout Models"
|
455 |
-
msgstr "Внешний вид"
|
456 |
-
|
457 |
-
#: includes/admin/class-social-count-plus-admin.php:445
|
458 |
-
msgid "Text Color"
|
459 |
-
msgstr "Цвет текста"
|
460 |
-
|
461 |
-
#: includes/admin/class-social-count-plus-admin.php:450
|
462 |
-
msgid "Order"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/admin/class-social-count-plus-admin.php:452
|
466 |
-
msgid "This option controls the order of the icons in the widget."
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#. Plugin Name of the plugin/theme
|
470 |
-
msgid "Social Count Plus"
|
471 |
-
msgstr "Соц счетчики +"
|
472 |
-
|
473 |
-
#: includes/admin/class-social-count-plus-admin.php:698
|
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 ""
|
532 |
-
|
533 |
-
#: includes/admin/views/html-help-us.php:11
|
534 |
-
msgid ""
|
535 |
-
"Help us keep the %s free making a %s or rate %s on %s. Thank you in advance!"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/admin/views/html-help-us.php:11
|
539 |
-
msgid "donation"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/admin/views/html-help-us.php:11
|
543 |
-
msgid "WordPress.org"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
547 |
-
msgid ""
|
548 |
-
"Use this library to generate your own model layout or display specific data "
|
549 |
-
"counters."
|
550 |
-
msgstr "Используйте эту библиотеку для создания своего собственного стиля счетчиков."
|
551 |
-
|
552 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:9
|
553 |
-
msgid "Shortcodes"
|
554 |
-
msgstr "Шоткоды"
|
555 |
-
|
556 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:11
|
557 |
-
msgid "Note: the shortcodes displays only the count in plain text."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:16
|
561 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:29
|
562 |
-
msgid "%s counter"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:22
|
566 |
-
msgid "Functions"
|
567 |
-
msgstr "Функции"
|
568 |
-
|
569 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:24
|
570 |
-
msgid ""
|
571 |
-
"Note: the functions displays only the count in plain text, except the "
|
572 |
-
"<code>get_scp_widget()</code> function that displays with images."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:34
|
576 |
-
msgid "Full widget"
|
577 |
-
msgstr "Виджет"
|
578 |
-
|
579 |
-
#: includes/admin/views/html-settings-page.php:9
|
580 |
-
msgid "Shortcodes and Functions"
|
581 |
-
msgstr "Шоткоды и функции"
|
582 |
-
|
583 |
-
#: includes/admin/views/html-settings-page.php:9
|
584 |
-
msgid "System Status"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/admin/views/html-settings-page.php:22
|
588 |
-
msgid "To use the counter of Twitter you need to fill the fields:"
|
589 |
-
msgstr "Чтобы использовать счетчик Twitter, нужно заполнить поля ниже:"
|
590 |
-
|
591 |
-
#: includes/admin/views/html-settings-page.php:24
|
592 |
-
msgid "Twitter username"
|
593 |
-
msgstr "Пользователь Twitter"
|
594 |
-
|
595 |
-
#: includes/admin/views/html-settings-system-status-page.php:5
|
596 |
-
msgid "Environment"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/admin/views/html-settings-system-status-page.php:33
|
600 |
-
msgid ""
|
601 |
-
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
602 |
-
"communicate with the social APIs will not work. Contact your hosting "
|
603 |
-
"provider."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: includes/admin/views/html-settings-system-status-page.php:37
|
607 |
-
msgid "Your server has fsockopen and cURL enabled."
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: includes/admin/views/html-settings-system-status-page.php:39
|
611 |
-
msgid "Your server has fsockopen enabled, cURL is disabled."
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: includes/admin/views/html-settings-system-status-page.php:41
|
615 |
-
msgid "Your server has cURL enabled, fsockopen is disabled."
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: includes/admin/views/html-settings-system-status-page.php:47
|
619 |
-
msgid "fsockopen/cURL"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: includes/admin/views/html-settings-system-status-page.php:57
|
623 |
-
msgid "wp_remote_get() failed. This may not work with your server."
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: includes/admin/views/html-settings-system-status-page.php:62
|
627 |
-
msgid "wp_remote_get() was successful."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: includes/admin/views/html-settings-system-status-page.php:64
|
631 |
-
msgid ""
|
632 |
-
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
633 |
-
"your hosting provider. Error:"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/admin/views/html-settings-system-status-page.php:67
|
637 |
-
msgid "WP Remote Get"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: includes/admin/views/html-settings-system-status-page.php:77
|
641 |
-
msgid "Get System Report"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: includes/class-social-count-plus-widget.php:19
|
645 |
-
msgid "Display the counter"
|
646 |
-
msgstr "Показывать счетчик"
|
647 |
-
|
648 |
-
#: includes/class-social-count-plus-widget.php:59
|
649 |
-
msgid "Title"
|
650 |
-
msgstr "Заголовок"
|
651 |
-
|
652 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:80
|
653 |
-
msgid "comments"
|
654 |
-
msgstr "комментарии"
|
655 |
-
|
656 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:114
|
657 |
-
msgid "likes"
|
658 |
-
msgstr "отметки \"нравится\""
|
659 |
-
|
660 |
-
#: includes/counters/class-social-count-plus-github-counter.php:83
|
661 |
-
#: includes/counters/class-social-count-plus-googleplus-counter.php:83
|
662 |
-
#: includes/counters/class-social-count-plus-instagram-counter.php:87
|
663 |
-
#: includes/counters/class-social-count-plus-linkedin-counter.php:88
|
664 |
-
#: includes/counters/class-social-count-plus-pinterest-counter.php:92
|
665 |
-
#: includes/counters/class-social-count-plus-soundcloud-counter.php:83
|
666 |
-
#: includes/counters/class-social-count-plus-tumblr-counter.php:187
|
667 |
-
#: includes/counters/class-social-count-plus-twitch-counter.php:90
|
668 |
-
#: includes/counters/class-social-count-plus-twitter-counter.php:188
|
669 |
-
#: includes/counters/class-social-count-plus-vimeo-counter.php:83
|
670 |
-
msgid "followers"
|
671 |
-
msgstr "последователи"
|
672 |
-
|
673 |
-
#: includes/counters/class-social-count-plus-steam-counter.php:82
|
674 |
-
msgid "members"
|
675 |
-
msgstr "участники"
|
676 |
-
|
677 |
-
#: includes/counters/class-social-count-plus-youtube-counter.php:90
|
678 |
-
msgid "subscribers"
|
679 |
-
msgstr "подписчики"
|
680 |
-
|
681 |
-
#. Plugin URI of the plugin/theme
|
682 |
-
msgid "https://github.com/claudiosmweb/social-count-plus"
|
683 |
-
msgstr "https://github.com/claudiosmweb/social-count-plus"
|
684 |
-
|
685 |
-
#. Description of the plugin/theme
|
686 |
-
msgid ""
|
687 |
-
"Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, "
|
688 |
-
"Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, "
|
689 |
-
"Youtube, posts, comments and users."
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#. Author of the plugin/theme
|
693 |
-
msgid "Claudio Sanches"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#. Author URI of the plugin/theme
|
697 |
-
msgid "http://claudiosmweb.com/"
|
698 |
-
msgstr "http://claudiosmweb.com/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-count-plus-sq_AL.mo
DELETED
Binary file
|
languages/social-count-plus-sq_AL.po
DELETED
@@ -1,698 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 Claudio Sanches
|
2 |
-
# This file is distributed under the GPLv2 or later.
|
3 |
-
# Translators:
|
4 |
-
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-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"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"Language: sq_AL\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
18 |
-
|
19 |
-
#: includes/admin/class-social-count-plus-admin.php:66
|
20 |
-
msgid "Create an App on Twitter in %s and get this data."
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: includes/admin/class-social-count-plus-admin.php:68
|
24 |
-
msgid "Create an App on Facebook in %s and get this data."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: includes/admin/class-social-count-plus-admin.php:70
|
28 |
-
msgid "Get the this data in %s."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/admin/class-social-count-plus-admin.php:72
|
32 |
-
msgid ""
|
33 |
-
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
34 |
-
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
-
|
42 |
-
#: includes/admin/class-social-count-plus-admin.php:80
|
43 |
-
msgid "Display Comments Counter"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: includes/admin/class-social-count-plus-admin.php:85
|
47 |
-
#: includes/admin/class-social-count-plus-admin.php:231
|
48 |
-
#: includes/admin/class-social-count-plus-admin.php:371
|
49 |
-
msgid "URL"
|
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 |
-
|
57 |
-
#: includes/admin/class-social-count-plus-admin.php:95
|
58 |
-
msgid "Display Facebook Counter"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/admin/class-social-count-plus-admin.php:99
|
62 |
-
msgid "Facebook Page ID"
|
63 |
-
msgstr "ID për faqen në Facebook"
|
64 |
-
|
65 |
-
#: includes/admin/class-social-count-plus-admin.php:103
|
66 |
-
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/admin/class-social-count-plus-admin.php:104
|
70 |
-
msgid ""
|
71 |
-
"You can find this data clicking to edit your page on Facebook. The URL will "
|
72 |
-
"be similar to this:"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/admin/class-social-count-plus-admin.php:105
|
76 |
-
msgid "or"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/admin/class-social-count-plus-admin.php:109
|
80 |
-
msgid "Facebook App ID"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/admin/class-social-count-plus-admin.php:114
|
84 |
-
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:1073
|
89 |
-
msgid "GitHub"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: includes/admin/class-social-count-plus-admin.php:124
|
93 |
-
msgid "Display GitHub Counter"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: includes/admin/class-social-count-plus-admin.php:128
|
97 |
-
msgid "GitHub Username"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: includes/admin/class-social-count-plus-admin.php:130
|
101 |
-
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:1074
|
106 |
-
msgid "Google+"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: includes/admin/class-social-count-plus-admin.php:138
|
110 |
-
msgid "Display Google+ Counter"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/admin/class-social-count-plus-admin.php:142
|
114 |
-
msgid "Google+ ID"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/admin/class-social-count-plus-admin.php:146
|
118 |
-
msgid "Google+ page or profile ID."
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/admin/class-social-count-plus-admin.php:147
|
122 |
-
msgid "Example:"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/admin/class-social-count-plus-admin.php:151
|
126 |
-
#: includes/admin/class-social-count-plus-admin.php:409
|
127 |
-
msgid "Google API Key"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: includes/admin/class-social-count-plus-admin.php:154
|
131 |
-
msgid ""
|
132 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
133 |
-
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
134 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
135 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
136 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
-
|
144 |
-
#: includes/admin/class-social-count-plus-admin.php:164
|
145 |
-
msgid "Display Instagram Counter"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/admin/class-social-count-plus-admin.php:168
|
149 |
-
msgid "Instagram Username"
|
150 |
-
msgstr "Emër përdoruesi për Instagram"
|
151 |
-
|
152 |
-
#: includes/admin/class-social-count-plus-admin.php:170
|
153 |
-
msgid "Insert your Instagram Username."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/admin/class-social-count-plus-admin.php:173
|
157 |
-
msgid "Instagram User ID"
|
158 |
-
msgstr "ID për përdoruesin në Instagram"
|
159 |
-
|
160 |
-
#: includes/admin/class-social-count-plus-admin.php:175
|
161 |
-
msgid "Insert your Instagram User ID."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: includes/admin/class-social-count-plus-admin.php:178
|
165 |
-
msgid "Instagram Access Token"
|
166 |
-
msgstr "Shenjë hyrjeje për Instagram"
|
167 |
-
|
168 |
-
#: includes/admin/class-social-count-plus-admin.php:180
|
169 |
-
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:1076
|
174 |
-
msgid "LinkedIn"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/admin/class-social-count-plus-admin.php:188
|
178 |
-
msgid "Display LinkedIn counter"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/admin/class-social-count-plus-admin.php:192
|
182 |
-
msgid "LinkedIn Company ID"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: includes/admin/class-social-count-plus-admin.php:194
|
186 |
-
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: includes/admin/class-social-count-plus-admin.php:197
|
190 |
-
msgid "LinkedIn Access Token"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: includes/admin/class-social-count-plus-admin.php:199
|
194 |
-
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:1077
|
199 |
-
msgid "Pinterest"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: includes/admin/class-social-count-plus-admin.php:207
|
203 |
-
msgid "Display Pinterest Counter"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: includes/admin/class-social-count-plus-admin.php:211
|
207 |
-
msgid "Pinterest Username"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: includes/admin/class-social-count-plus-admin.php:213
|
211 |
-
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:1078
|
216 |
-
msgid "Posts"
|
217 |
-
msgstr "Postime"
|
218 |
-
|
219 |
-
#: includes/admin/class-social-count-plus-admin.php:221
|
220 |
-
msgid "Display Posts Counter"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: includes/admin/class-social-count-plus-admin.php:226
|
224 |
-
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:1079
|
229 |
-
msgid "SoundCloud"
|
230 |
-
msgstr "SoundCloud"
|
231 |
-
|
232 |
-
#: includes/admin/class-social-count-plus-admin.php:241
|
233 |
-
msgid "Display SoundCloud Counter"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: includes/admin/class-social-count-plus-admin.php:245
|
237 |
-
msgid "SoundCloud Username"
|
238 |
-
msgstr "Emër përdoruesi për SoundCloud"
|
239 |
-
|
240 |
-
#: includes/admin/class-social-count-plus-admin.php:247
|
241 |
-
msgid "Insert your SoundCloud Username."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: includes/admin/class-social-count-plus-admin.php:250
|
245 |
-
msgid "SoundCloud Client ID"
|
246 |
-
msgstr "ID Klienti për SoundCloud"
|
247 |
-
|
248 |
-
#: includes/admin/class-social-count-plus-admin.php:252
|
249 |
-
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:1080
|
254 |
-
msgid "Steam"
|
255 |
-
msgstr "Steam"
|
256 |
-
|
257 |
-
#: includes/admin/class-social-count-plus-admin.php:260
|
258 |
-
msgid "Display Steam Counter"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: includes/admin/class-social-count-plus-admin.php:264
|
262 |
-
msgid "Steam Group Name"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/admin/class-social-count-plus-admin.php:266
|
266 |
-
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:1081
|
271 |
-
msgid "Tumblr"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: includes/admin/class-social-count-plus-admin.php:274
|
275 |
-
msgid "Display Tumblr counter"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/admin/class-social-count-plus-admin.php:278
|
279 |
-
msgid "Tumblr Hostname"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin/class-social-count-plus-admin.php:280
|
283 |
-
msgid "Insert your Tumblr Hostname. Example: %s."
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: includes/admin/class-social-count-plus-admin.php:283
|
287 |
-
msgid "Tumblr Consumer Key"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: includes/admin/class-social-count-plus-admin.php:288
|
291 |
-
msgid "Tumblr Consumer Secret"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/admin/class-social-count-plus-admin.php:293
|
295 |
-
msgid "Tumblr Token"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: includes/admin/class-social-count-plus-admin.php:298
|
299 |
-
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:1082
|
304 |
-
msgid "Twitch"
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: includes/admin/class-social-count-plus-admin.php:308
|
308 |
-
msgid "Display Twitch Counter"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: includes/admin/class-social-count-plus-admin.php:312
|
312 |
-
msgid "Twitch Username"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: includes/admin/class-social-count-plus-admin.php:314
|
316 |
-
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:1083
|
321 |
-
msgid "Twitter"
|
322 |
-
msgstr "Twitter"
|
323 |
-
|
324 |
-
#: includes/admin/class-social-count-plus-admin.php:322
|
325 |
-
msgid "Display Twitter Counter"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin/class-social-count-plus-admin.php:326
|
329 |
-
msgid "Twitter Username"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin/class-social-count-plus-admin.php:328
|
333 |
-
msgid "Insert the Twitter username. Example: %s."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: includes/admin/class-social-count-plus-admin.php:331
|
337 |
-
#: includes/admin/views/html-settings-page.php:25
|
338 |
-
msgid "Twitter Consumer key"
|
339 |
-
msgstr "Çelës Përdoruesi për Twitter"
|
340 |
-
|
341 |
-
#: includes/admin/class-social-count-plus-admin.php:336
|
342 |
-
#: includes/admin/views/html-settings-page.php:26
|
343 |
-
msgid "Twitter Consumer secret"
|
344 |
-
msgstr "Kod sekret Përdoruesi për Twitter"
|
345 |
-
|
346 |
-
#: includes/admin/class-social-count-plus-admin.php:341
|
347 |
-
#: includes/admin/views/html-settings-page.php:27
|
348 |
-
msgid "Twitter Access token"
|
349 |
-
msgstr "Shenjë hyrjeje për Twitter"
|
350 |
-
|
351 |
-
#: includes/admin/class-social-count-plus-admin.php:346
|
352 |
-
#: includes/admin/views/html-settings-page.php:28
|
353 |
-
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:1084
|
358 |
-
msgid "Users"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/admin/class-social-count-plus-admin.php:356
|
362 |
-
msgid "Display Users Counter"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: includes/admin/class-social-count-plus-admin.php:361
|
366 |
-
msgid "User Role"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/admin/class-social-count-plus-admin.php:366
|
370 |
-
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: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 |
-
|
383 |
-
#: includes/admin/class-social-count-plus-admin.php:381
|
384 |
-
msgid "Display Vimeo Counter"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/admin/class-social-count-plus-admin.php:385
|
388 |
-
msgid "Vimeo Username"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/admin/class-social-count-plus-admin.php:387
|
392 |
-
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:1086
|
397 |
-
msgid "YouTube"
|
398 |
-
msgstr "YouTube"
|
399 |
-
|
400 |
-
#: includes/admin/class-social-count-plus-admin.php:395
|
401 |
-
msgid "Display YouTube Counter"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/admin/class-social-count-plus-admin.php:399
|
405 |
-
msgid "YouTube Channel ID"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin/class-social-count-plus-admin.php:401
|
409 |
-
msgid "Insert the YouTube Channel ID. Example: %s."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin/class-social-count-plus-admin.php:404
|
413 |
-
msgid "YouTube Channel URL"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin/class-social-count-plus-admin.php:406
|
417 |
-
msgid "Insert the YouTube channel URL. Example: %s."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin/class-social-count-plus-admin.php:412
|
421 |
-
msgid ""
|
422 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
423 |
-
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
424 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
425 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
426 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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"
|
434 |
-
|
435 |
-
#: includes/admin/class-social-count-plus-admin.php:422
|
436 |
-
msgid "Open URLs in new tab/window"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: includes/admin/class-social-count-plus-admin.php:424
|
440 |
-
#: includes/admin/class-social-count-plus-admin.php:429
|
441 |
-
msgid "This option add %s in all counters URLs."
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/admin/class-social-count-plus-admin.php:427
|
445 |
-
msgid "Add nofollow in URLs"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/admin/class-social-count-plus-admin.php:436
|
449 |
-
#: includes/admin/views/html-settings-page.php:9
|
450 |
-
msgid "Design"
|
451 |
-
msgstr "Dizajni"
|
452 |
-
|
453 |
-
#: includes/admin/class-social-count-plus-admin.php:439
|
454 |
-
msgid "Layout Models"
|
455 |
-
msgstr "Modele të paraqitjes"
|
456 |
-
|
457 |
-
#: includes/admin/class-social-count-plus-admin.php:445
|
458 |
-
msgid "Text Color"
|
459 |
-
msgstr "Ngjyra e tekstit"
|
460 |
-
|
461 |
-
#: includes/admin/class-social-count-plus-admin.php:450
|
462 |
-
msgid "Order"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/admin/class-social-count-plus-admin.php:452
|
466 |
-
msgid "This option controls the order of the icons in the widget."
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#. Plugin Name of the plugin/theme
|
470 |
-
msgid "Social Count Plus"
|
471 |
-
msgstr "Social Count Plus"
|
472 |
-
|
473 |
-
#: includes/admin/class-social-count-plus-admin.php:698
|
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 ""
|
532 |
-
|
533 |
-
#: includes/admin/views/html-help-us.php:11
|
534 |
-
msgid ""
|
535 |
-
"Help us keep the %s free making a %s or rate %s on %s. Thank you in advance!"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/admin/views/html-help-us.php:11
|
539 |
-
msgid "donation"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/admin/views/html-help-us.php:11
|
543 |
-
msgid "WordPress.org"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
547 |
-
msgid ""
|
548 |
-
"Use this library to generate your own model layout or display specific data "
|
549 |
-
"counters."
|
550 |
-
msgstr "Përdor këtë bibliotekë për të krijuar një model vetjak të paraqitjes ose për të shfaqur të dhëna specifike numërimi."
|
551 |
-
|
552 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:9
|
553 |
-
msgid "Shortcodes"
|
554 |
-
msgstr "Kode"
|
555 |
-
|
556 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:11
|
557 |
-
msgid "Note: the shortcodes displays only the count in plain text."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:16
|
561 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:29
|
562 |
-
msgid "%s counter"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:22
|
566 |
-
msgid "Functions"
|
567 |
-
msgstr "Funksione"
|
568 |
-
|
569 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:24
|
570 |
-
msgid ""
|
571 |
-
"Note: the functions displays only the count in plain text, except the "
|
572 |
-
"<code>get_scp_widget()</code> function that displays with images."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:34
|
576 |
-
msgid "Full widget"
|
577 |
-
msgstr "Widget i plotë"
|
578 |
-
|
579 |
-
#: includes/admin/views/html-settings-page.php:9
|
580 |
-
msgid "Shortcodes and Functions"
|
581 |
-
msgstr "Kodet dhe Funksionet"
|
582 |
-
|
583 |
-
#: includes/admin/views/html-settings-page.php:9
|
584 |
-
msgid "System Status"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/admin/views/html-settings-page.php:22
|
588 |
-
msgid "To use the counter of Twitter you need to fill the fields:"
|
589 |
-
msgstr "Për të përdorur numëruesin për Twitter ju duhet të plotësoni këto fusha:"
|
590 |
-
|
591 |
-
#: includes/admin/views/html-settings-page.php:24
|
592 |
-
msgid "Twitter username"
|
593 |
-
msgstr "Emër përdoruesi për Twitter"
|
594 |
-
|
595 |
-
#: includes/admin/views/html-settings-system-status-page.php:5
|
596 |
-
msgid "Environment"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/admin/views/html-settings-system-status-page.php:33
|
600 |
-
msgid ""
|
601 |
-
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
602 |
-
"communicate with the social APIs will not work. Contact your hosting "
|
603 |
-
"provider."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: includes/admin/views/html-settings-system-status-page.php:37
|
607 |
-
msgid "Your server has fsockopen and cURL enabled."
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: includes/admin/views/html-settings-system-status-page.php:39
|
611 |
-
msgid "Your server has fsockopen enabled, cURL is disabled."
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: includes/admin/views/html-settings-system-status-page.php:41
|
615 |
-
msgid "Your server has cURL enabled, fsockopen is disabled."
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: includes/admin/views/html-settings-system-status-page.php:47
|
619 |
-
msgid "fsockopen/cURL"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: includes/admin/views/html-settings-system-status-page.php:57
|
623 |
-
msgid "wp_remote_get() failed. This may not work with your server."
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: includes/admin/views/html-settings-system-status-page.php:62
|
627 |
-
msgid "wp_remote_get() was successful."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: includes/admin/views/html-settings-system-status-page.php:64
|
631 |
-
msgid ""
|
632 |
-
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
633 |
-
"your hosting provider. Error:"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/admin/views/html-settings-system-status-page.php:67
|
637 |
-
msgid "WP Remote Get"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: includes/admin/views/html-settings-system-status-page.php:77
|
641 |
-
msgid "Get System Report"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: includes/class-social-count-plus-widget.php:19
|
645 |
-
msgid "Display the counter"
|
646 |
-
msgstr "Shfaq numëruesin"
|
647 |
-
|
648 |
-
#: includes/class-social-count-plus-widget.php:59
|
649 |
-
msgid "Title"
|
650 |
-
msgstr "Titulli"
|
651 |
-
|
652 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:80
|
653 |
-
msgid "comments"
|
654 |
-
msgstr "komente"
|
655 |
-
|
656 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:114
|
657 |
-
msgid "likes"
|
658 |
-
msgstr "pëlqime"
|
659 |
-
|
660 |
-
#: includes/counters/class-social-count-plus-github-counter.php:83
|
661 |
-
#: includes/counters/class-social-count-plus-googleplus-counter.php:83
|
662 |
-
#: includes/counters/class-social-count-plus-instagram-counter.php:87
|
663 |
-
#: includes/counters/class-social-count-plus-linkedin-counter.php:88
|
664 |
-
#: includes/counters/class-social-count-plus-pinterest-counter.php:92
|
665 |
-
#: includes/counters/class-social-count-plus-soundcloud-counter.php:83
|
666 |
-
#: includes/counters/class-social-count-plus-tumblr-counter.php:187
|
667 |
-
#: includes/counters/class-social-count-plus-twitch-counter.php:90
|
668 |
-
#: includes/counters/class-social-count-plus-twitter-counter.php:188
|
669 |
-
#: includes/counters/class-social-count-plus-vimeo-counter.php:83
|
670 |
-
msgid "followers"
|
671 |
-
msgstr "ndjekës"
|
672 |
-
|
673 |
-
#: includes/counters/class-social-count-plus-steam-counter.php:82
|
674 |
-
msgid "members"
|
675 |
-
msgstr "anëtarë"
|
676 |
-
|
677 |
-
#: includes/counters/class-social-count-plus-youtube-counter.php:90
|
678 |
-
msgid "subscribers"
|
679 |
-
msgstr "pajtimtarë"
|
680 |
-
|
681 |
-
#. Plugin URI of the plugin/theme
|
682 |
-
msgid "https://github.com/claudiosmweb/social-count-plus"
|
683 |
-
msgstr "https://github.com/claudiosmweb/social-count-plus"
|
684 |
-
|
685 |
-
#. Description of the plugin/theme
|
686 |
-
msgid ""
|
687 |
-
"Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, "
|
688 |
-
"Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, "
|
689 |
-
"Youtube, posts, comments and users."
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#. Author of the plugin/theme
|
693 |
-
msgid "Claudio Sanches"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#. Author URI of the plugin/theme
|
697 |
-
msgid "http://claudiosmweb.com/"
|
698 |
-
msgstr "http://claudiosmweb.com/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-count-plus-sv_SE.mo
DELETED
Binary file
|
languages/social-count-plus-sv_SE.po
DELETED
@@ -1,698 +0,0 @@
|
|
1 |
-
# Copyright (C) 2015 Claudio Sanches
|
2 |
-
# This file is distributed under the GPLv2 or later.
|
3 |
-
# Translators:
|
4 |
-
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-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"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"Language: sv_SE\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
18 |
-
|
19 |
-
#: includes/admin/class-social-count-plus-admin.php:66
|
20 |
-
msgid "Create an App on Twitter in %s and get this data."
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: includes/admin/class-social-count-plus-admin.php:68
|
24 |
-
msgid "Create an App on Facebook in %s and get this data."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: includes/admin/class-social-count-plus-admin.php:70
|
28 |
-
msgid "Get the this data in %s."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/admin/class-social-count-plus-admin.php:72
|
32 |
-
msgid ""
|
33 |
-
"Register an App on Tumblr in %s, when the app is ready click in \"Explore "
|
34 |
-
"API\" and allow your app access your Tumblr account and get this data."
|
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 |
-
|
42 |
-
#: includes/admin/class-social-count-plus-admin.php:80
|
43 |
-
msgid "Display Comments Counter"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: includes/admin/class-social-count-plus-admin.php:85
|
47 |
-
#: includes/admin/class-social-count-plus-admin.php:231
|
48 |
-
#: includes/admin/class-social-count-plus-admin.php:371
|
49 |
-
msgid "URL"
|
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 |
-
|
57 |
-
#: includes/admin/class-social-count-plus-admin.php:95
|
58 |
-
msgid "Display Facebook Counter"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/admin/class-social-count-plus-admin.php:99
|
62 |
-
msgid "Facebook Page ID"
|
63 |
-
msgstr "Facebook sid-ID"
|
64 |
-
|
65 |
-
#: includes/admin/class-social-count-plus-admin.php:103
|
66 |
-
msgid "ID Facebook page. Must be the numeric ID or your page slug."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/admin/class-social-count-plus-admin.php:104
|
70 |
-
msgid ""
|
71 |
-
"You can find this data clicking to edit your page on Facebook. The URL will "
|
72 |
-
"be similar to this:"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/admin/class-social-count-plus-admin.php:105
|
76 |
-
msgid "or"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/admin/class-social-count-plus-admin.php:109
|
80 |
-
msgid "Facebook App ID"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/admin/class-social-count-plus-admin.php:114
|
84 |
-
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:1073
|
89 |
-
msgid "GitHub"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: includes/admin/class-social-count-plus-admin.php:124
|
93 |
-
msgid "Display GitHub Counter"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: includes/admin/class-social-count-plus-admin.php:128
|
97 |
-
msgid "GitHub Username"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: includes/admin/class-social-count-plus-admin.php:130
|
101 |
-
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:1074
|
106 |
-
msgid "Google+"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: includes/admin/class-social-count-plus-admin.php:138
|
110 |
-
msgid "Display Google+ Counter"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/admin/class-social-count-plus-admin.php:142
|
114 |
-
msgid "Google+ ID"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/admin/class-social-count-plus-admin.php:146
|
118 |
-
msgid "Google+ page or profile ID."
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/admin/class-social-count-plus-admin.php:147
|
122 |
-
msgid "Example:"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/admin/class-social-count-plus-admin.php:151
|
126 |
-
#: includes/admin/class-social-count-plus-admin.php:409
|
127 |
-
msgid "Google API Key"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: includes/admin/class-social-count-plus-admin.php:154
|
131 |
-
msgid ""
|
132 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
133 |
-
"to \"APIs & auth > APIs\" and turn on the \"Google+ API\", finally go to "
|
134 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
135 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
136 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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 |
-
|
144 |
-
#: includes/admin/class-social-count-plus-admin.php:164
|
145 |
-
msgid "Display Instagram Counter"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/admin/class-social-count-plus-admin.php:168
|
149 |
-
msgid "Instagram Username"
|
150 |
-
msgstr "Instagram-användarnamn"
|
151 |
-
|
152 |
-
#: includes/admin/class-social-count-plus-admin.php:170
|
153 |
-
msgid "Insert your Instagram Username."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/admin/class-social-count-plus-admin.php:173
|
157 |
-
msgid "Instagram User ID"
|
158 |
-
msgstr "Instagram användar-ID"
|
159 |
-
|
160 |
-
#: includes/admin/class-social-count-plus-admin.php:175
|
161 |
-
msgid "Insert your Instagram User ID."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: includes/admin/class-social-count-plus-admin.php:178
|
165 |
-
msgid "Instagram Access Token"
|
166 |
-
msgstr "Instagram Access Token"
|
167 |
-
|
168 |
-
#: includes/admin/class-social-count-plus-admin.php:180
|
169 |
-
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:1076
|
174 |
-
msgid "LinkedIn"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/admin/class-social-count-plus-admin.php:188
|
178 |
-
msgid "Display LinkedIn counter"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/admin/class-social-count-plus-admin.php:192
|
182 |
-
msgid "LinkedIn Company ID"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: includes/admin/class-social-count-plus-admin.php:194
|
186 |
-
msgid "Insert your LinkedIn Company ID. Get your Company ID in %s."
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: includes/admin/class-social-count-plus-admin.php:197
|
190 |
-
msgid "LinkedIn Access Token"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: includes/admin/class-social-count-plus-admin.php:199
|
194 |
-
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:1077
|
199 |
-
msgid "Pinterest"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: includes/admin/class-social-count-plus-admin.php:207
|
203 |
-
msgid "Display Pinterest Counter"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: includes/admin/class-social-count-plus-admin.php:211
|
207 |
-
msgid "Pinterest Username"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: includes/admin/class-social-count-plus-admin.php:213
|
211 |
-
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:1078
|
216 |
-
msgid "Posts"
|
217 |
-
msgstr "Inlägg"
|
218 |
-
|
219 |
-
#: includes/admin/class-social-count-plus-admin.php:221
|
220 |
-
msgid "Display Posts Counter"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: includes/admin/class-social-count-plus-admin.php:226
|
224 |
-
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:1079
|
229 |
-
msgid "SoundCloud"
|
230 |
-
msgstr "SoundCloud"
|
231 |
-
|
232 |
-
#: includes/admin/class-social-count-plus-admin.php:241
|
233 |
-
msgid "Display SoundCloud Counter"
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: includes/admin/class-social-count-plus-admin.php:245
|
237 |
-
msgid "SoundCloud Username"
|
238 |
-
msgstr "SoundCloud-användarnamn"
|
239 |
-
|
240 |
-
#: includes/admin/class-social-count-plus-admin.php:247
|
241 |
-
msgid "Insert your SoundCloud Username."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: includes/admin/class-social-count-plus-admin.php:250
|
245 |
-
msgid "SoundCloud Client ID"
|
246 |
-
msgstr "SoundCloud klient-ID"
|
247 |
-
|
248 |
-
#: includes/admin/class-social-count-plus-admin.php:252
|
249 |
-
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:1080
|
254 |
-
msgid "Steam"
|
255 |
-
msgstr "Steam"
|
256 |
-
|
257 |
-
#: includes/admin/class-social-count-plus-admin.php:260
|
258 |
-
msgid "Display Steam Counter"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: includes/admin/class-social-count-plus-admin.php:264
|
262 |
-
msgid "Steam Group Name"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/admin/class-social-count-plus-admin.php:266
|
266 |
-
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:1081
|
271 |
-
msgid "Tumblr"
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: includes/admin/class-social-count-plus-admin.php:274
|
275 |
-
msgid "Display Tumblr counter"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: includes/admin/class-social-count-plus-admin.php:278
|
279 |
-
msgid "Tumblr Hostname"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin/class-social-count-plus-admin.php:280
|
283 |
-
msgid "Insert your Tumblr Hostname. Example: %s."
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: includes/admin/class-social-count-plus-admin.php:283
|
287 |
-
msgid "Tumblr Consumer Key"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: includes/admin/class-social-count-plus-admin.php:288
|
291 |
-
msgid "Tumblr Consumer Secret"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/admin/class-social-count-plus-admin.php:293
|
295 |
-
msgid "Tumblr Token"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: includes/admin/class-social-count-plus-admin.php:298
|
299 |
-
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:1082
|
304 |
-
msgid "Twitch"
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: includes/admin/class-social-count-plus-admin.php:308
|
308 |
-
msgid "Display Twitch Counter"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: includes/admin/class-social-count-plus-admin.php:312
|
312 |
-
msgid "Twitch Username"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: includes/admin/class-social-count-plus-admin.php:314
|
316 |
-
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:1083
|
321 |
-
msgid "Twitter"
|
322 |
-
msgstr "Twitter"
|
323 |
-
|
324 |
-
#: includes/admin/class-social-count-plus-admin.php:322
|
325 |
-
msgid "Display Twitter Counter"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin/class-social-count-plus-admin.php:326
|
329 |
-
msgid "Twitter Username"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin/class-social-count-plus-admin.php:328
|
333 |
-
msgid "Insert the Twitter username. Example: %s."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: includes/admin/class-social-count-plus-admin.php:331
|
337 |
-
#: includes/admin/views/html-settings-page.php:25
|
338 |
-
msgid "Twitter Consumer key"
|
339 |
-
msgstr "Twitter Consumer key"
|
340 |
-
|
341 |
-
#: includes/admin/class-social-count-plus-admin.php:336
|
342 |
-
#: includes/admin/views/html-settings-page.php:26
|
343 |
-
msgid "Twitter Consumer secret"
|
344 |
-
msgstr "Twitter Consumer secret"
|
345 |
-
|
346 |
-
#: includes/admin/class-social-count-plus-admin.php:341
|
347 |
-
#: includes/admin/views/html-settings-page.php:27
|
348 |
-
msgid "Twitter Access token"
|
349 |
-
msgstr "Twitter Access token"
|
350 |
-
|
351 |
-
#: includes/admin/class-social-count-plus-admin.php:346
|
352 |
-
#: includes/admin/views/html-settings-page.php:28
|
353 |
-
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:1084
|
358 |
-
msgid "Users"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/admin/class-social-count-plus-admin.php:356
|
362 |
-
msgid "Display Users Counter"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: includes/admin/class-social-count-plus-admin.php:361
|
366 |
-
msgid "User Role"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/admin/class-social-count-plus-admin.php:366
|
370 |
-
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: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 |
-
|
383 |
-
#: includes/admin/class-social-count-plus-admin.php:381
|
384 |
-
msgid "Display Vimeo Counter"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/admin/class-social-count-plus-admin.php:385
|
388 |
-
msgid "Vimeo Username"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/admin/class-social-count-plus-admin.php:387
|
392 |
-
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:1086
|
397 |
-
msgid "YouTube"
|
398 |
-
msgstr "YouTube"
|
399 |
-
|
400 |
-
#: includes/admin/class-social-count-plus-admin.php:395
|
401 |
-
msgid "Display YouTube Counter"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/admin/class-social-count-plus-admin.php:399
|
405 |
-
msgid "YouTube Channel ID"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin/class-social-count-plus-admin.php:401
|
409 |
-
msgid "Insert the YouTube Channel ID. Example: %s."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin/class-social-count-plus-admin.php:404
|
413 |
-
msgid "YouTube Channel URL"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin/class-social-count-plus-admin.php:406
|
417 |
-
msgid "Insert the YouTube channel URL. Example: %s."
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin/class-social-count-plus-admin.php:412
|
421 |
-
msgid ""
|
422 |
-
"Get your API key creating a project/app in %s, then inside your project go "
|
423 |
-
"to \"APIs & auth > APIs\" and turn on the \"YouTube API\", finally go to "
|
424 |
-
"\"APIs & auth > APIs > Credentials > Public API access\" and click in the "
|
425 |
-
"\"CREATE A NEW KEY\" button, select the \"Browser key\" option and click in "
|
426 |
-
"the \"CREATE\" button, now just copy your API key and paste here."
|
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"
|
434 |
-
|
435 |
-
#: includes/admin/class-social-count-plus-admin.php:422
|
436 |
-
msgid "Open URLs in new tab/window"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: includes/admin/class-social-count-plus-admin.php:424
|
440 |
-
#: includes/admin/class-social-count-plus-admin.php:429
|
441 |
-
msgid "This option add %s in all counters URLs."
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/admin/class-social-count-plus-admin.php:427
|
445 |
-
msgid "Add nofollow in URLs"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: includes/admin/class-social-count-plus-admin.php:436
|
449 |
-
#: includes/admin/views/html-settings-page.php:9
|
450 |
-
msgid "Design"
|
451 |
-
msgstr "Design"
|
452 |
-
|
453 |
-
#: includes/admin/class-social-count-plus-admin.php:439
|
454 |
-
msgid "Layout Models"
|
455 |
-
msgstr "Layout-modeller"
|
456 |
-
|
457 |
-
#: includes/admin/class-social-count-plus-admin.php:445
|
458 |
-
msgid "Text Color"
|
459 |
-
msgstr "Textfärg"
|
460 |
-
|
461 |
-
#: includes/admin/class-social-count-plus-admin.php:450
|
462 |
-
msgid "Order"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: includes/admin/class-social-count-plus-admin.php:452
|
466 |
-
msgid "This option controls the order of the icons in the widget."
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#. Plugin Name of the plugin/theme
|
470 |
-
msgid "Social Count Plus"
|
471 |
-
msgstr "Social Count Plus"
|
472 |
-
|
473 |
-
#: includes/admin/class-social-count-plus-admin.php:698
|
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 ""
|
532 |
-
|
533 |
-
#: includes/admin/views/html-help-us.php:11
|
534 |
-
msgid ""
|
535 |
-
"Help us keep the %s free making a %s or rate %s on %s. Thank you in advance!"
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: includes/admin/views/html-help-us.php:11
|
539 |
-
msgid "donation"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: includes/admin/views/html-help-us.php:11
|
543 |
-
msgid "WordPress.org"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
547 |
-
msgid ""
|
548 |
-
"Use this library to generate your own model layout or display specific data "
|
549 |
-
"counters."
|
550 |
-
msgstr "Använd detta bibliotek för att generera din egen layout eller visa specifika data-räknare."
|
551 |
-
|
552 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:9
|
553 |
-
msgid "Shortcodes"
|
554 |
-
msgstr "Kortkoder"
|
555 |
-
|
556 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:11
|
557 |
-
msgid "Note: the shortcodes displays only the count in plain text."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:16
|
561 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:29
|
562 |
-
msgid "%s counter"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:22
|
566 |
-
msgid "Functions"
|
567 |
-
msgstr "Funktioner"
|
568 |
-
|
569 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:24
|
570 |
-
msgid ""
|
571 |
-
"Note: the functions displays only the count in plain text, except the "
|
572 |
-
"<code>get_scp_widget()</code> function that displays with images."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/admin/views/html-settings-functions-shortcodes-page.php:34
|
576 |
-
msgid "Full widget"
|
577 |
-
msgstr "Fullständig widget"
|
578 |
-
|
579 |
-
#: includes/admin/views/html-settings-page.php:9
|
580 |
-
msgid "Shortcodes and Functions"
|
581 |
-
msgstr "Kortkoder och funktioner"
|
582 |
-
|
583 |
-
#: includes/admin/views/html-settings-page.php:9
|
584 |
-
msgid "System Status"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/admin/views/html-settings-page.php:22
|
588 |
-
msgid "To use the counter of Twitter you need to fill the fields:"
|
589 |
-
msgstr "För att använda räknaren för Twitter behöver du fylla i fälten här nedanför:"
|
590 |
-
|
591 |
-
#: includes/admin/views/html-settings-page.php:24
|
592 |
-
msgid "Twitter username"
|
593 |
-
msgstr "Twitter-användarnamn"
|
594 |
-
|
595 |
-
#: includes/admin/views/html-settings-system-status-page.php:5
|
596 |
-
msgid "Environment"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/admin/views/html-settings-system-status-page.php:33
|
600 |
-
msgid ""
|
601 |
-
"Your server does not have fsockopen or cURL enabled. The scripts which "
|
602 |
-
"communicate with the social APIs will not work. Contact your hosting "
|
603 |
-
"provider."
|
604 |
-
msgstr ""
|
605 |
-
|
606 |
-
#: includes/admin/views/html-settings-system-status-page.php:37
|
607 |
-
msgid "Your server has fsockopen and cURL enabled."
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: includes/admin/views/html-settings-system-status-page.php:39
|
611 |
-
msgid "Your server has fsockopen enabled, cURL is disabled."
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
-
#: includes/admin/views/html-settings-system-status-page.php:41
|
615 |
-
msgid "Your server has cURL enabled, fsockopen is disabled."
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: includes/admin/views/html-settings-system-status-page.php:47
|
619 |
-
msgid "fsockopen/cURL"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: includes/admin/views/html-settings-system-status-page.php:57
|
623 |
-
msgid "wp_remote_get() failed. This may not work with your server."
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: includes/admin/views/html-settings-system-status-page.php:62
|
627 |
-
msgid "wp_remote_get() was successful."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: includes/admin/views/html-settings-system-status-page.php:64
|
631 |
-
msgid ""
|
632 |
-
"wp_remote_get() failed. This plugin won't work with your server. Contact "
|
633 |
-
"your hosting provider. Error:"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/admin/views/html-settings-system-status-page.php:67
|
637 |
-
msgid "WP Remote Get"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: includes/admin/views/html-settings-system-status-page.php:77
|
641 |
-
msgid "Get System Report"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: includes/class-social-count-plus-widget.php:19
|
645 |
-
msgid "Display the counter"
|
646 |
-
msgstr "Visa räknare"
|
647 |
-
|
648 |
-
#: includes/class-social-count-plus-widget.php:59
|
649 |
-
msgid "Title"
|
650 |
-
msgstr "Titel"
|
651 |
-
|
652 |
-
#: includes/counters/class-social-count-plus-comments-counter.php:80
|
653 |
-
msgid "comments"
|
654 |
-
msgstr "kommentarer"
|
655 |
-
|
656 |
-
#: includes/counters/class-social-count-plus-facebook-counter.php:114
|
657 |
-
msgid "likes"
|
658 |
-
msgstr "gillar"
|
659 |
-
|
660 |
-
#: includes/counters/class-social-count-plus-github-counter.php:83
|
661 |
-
#: includes/counters/class-social-count-plus-googleplus-counter.php:83
|
662 |
-
#: includes/counters/class-social-count-plus-instagram-counter.php:87
|
663 |
-
#: includes/counters/class-social-count-plus-linkedin-counter.php:88
|
664 |
-
#: includes/counters/class-social-count-plus-pinterest-counter.php:92
|
665 |
-
#: includes/counters/class-social-count-plus-soundcloud-counter.php:83
|
666 |
-
#: includes/counters/class-social-count-plus-tumblr-counter.php:187
|
667 |
-
#: includes/counters/class-social-count-plus-twitch-counter.php:90
|
668 |
-
#: includes/counters/class-social-count-plus-twitter-counter.php:188
|
669 |
-
#: includes/counters/class-social-count-plus-vimeo-counter.php:83
|
670 |
-
msgid "followers"
|
671 |
-
msgstr "följare"
|
672 |
-
|
673 |
-
#: includes/counters/class-social-count-plus-steam-counter.php:82
|
674 |
-
msgid "members"
|
675 |
-
msgstr "medlemmar"
|
676 |
-
|
677 |
-
#: includes/counters/class-social-count-plus-youtube-counter.php:90
|
678 |
-
msgid "subscribers"
|
679 |
-
msgstr "prenumeranter"
|
680 |
-
|
681 |
-
#. Plugin URI of the plugin/theme
|
682 |
-
msgid "https://github.com/claudiosmweb/social-count-plus"
|
683 |
-
msgstr "https://github.com/claudiosmweb/social-count-plus"
|
684 |
-
|
685 |
-
#. Description of the plugin/theme
|
686 |
-
msgid ""
|
687 |
-
"Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, "
|
688 |
-
"Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, "
|
689 |
-
"Youtube, posts, comments and users."
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#. Author of the plugin/theme
|
693 |
-
msgid "Claudio Sanches"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#. Author URI of the plugin/theme
|
697 |
-
msgid "http://claudiosmweb.com/"
|
698 |
-
msgstr "http://claudiosmweb.com/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/social-count-plus.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Social Count Plus 3.3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -522,16 +522,18 @@ msgstr ""
|
|
522 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/admin/views/html-help-us.php:
|
526 |
-
msgid "
|
|
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/admin/views/html-help-us.php:
|
530 |
-
msgid "donation"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/admin/views/html-help-us.php:
|
534 |
-
msgid "
|
535 |
msgstr ""
|
536 |
|
537 |
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Social Count Plus 3.3.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/woocommerce-domination/\n"
|
7 |
+
"POT-Creation-Date: 2015-12-22 18:42:51+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
522 |
msgid "You do not have any counter that needs to connect remotely currently active"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/admin/views/html-help-us.php:9
|
526 |
+
msgid ""
|
527 |
+
"Help us keep the %s plugin free making a donation or rate %s on "
|
528 |
+
"WordPress.org. Thank you in advance!"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/admin/views/html-help-us.php:10
|
532 |
+
msgid "Make a donation"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/admin/views/html-help-us.php:10
|
536 |
+
msgid "Make a review"
|
537 |
msgstr ""
|
538 |
|
539 |
#: includes/admin/views/html-settings-functions-shortcodes-page.php:7
|
readme.txt
CHANGED
@@ -3,12 +3,12 @@ Contributors: claudiosanches, felipesantana, deblynprado
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y8HP99ZJ5Z59L
|
4 |
Tags: counter, widget, shortcode, facebook, github, googleplus, instagram, linkedin, pinterest, soundcloud, steam, tumblr, twitch, twitter, vimeo, youtube
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 3.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
Displays your
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -22,7 +22,7 @@ The Social Count Plus performs counting for:
|
|
22 |
- LinkedIn company followers
|
23 |
- Pinterest followers
|
24 |
- Posts total
|
25 |
-
- SoundCloud
|
26 |
- Steam Community group members
|
27 |
- Tumblr followers
|
28 |
- Twitch channel followers
|
@@ -30,7 +30,7 @@ The Social Count Plus performs counting for:
|
|
30 |
- Users total
|
31 |
- Vimeo followers
|
32 |
|
33 |
-
You can
|
34 |
|
35 |
The results of the counters are cached and new values are checked only once a day. This cache can be wiped when published a new post.
|
36 |
|
@@ -78,7 +78,7 @@ It's required a Google API Key for Google+ and YouTube.
|
|
78 |
|
79 |
Access https://console.developers.google.com/project to create you Google API key following this steps:
|
80 |
|
81 |
-
https://www.youtube.com/watch?v=
|
82 |
|
83 |
= Twitter =
|
84 |
|
@@ -117,6 +117,26 @@ Example:
|
|
117 |
add_filter( 'social_count_plus_transient_time', 'social_count_plus_custom_transient_time' );
|
118 |
|
119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
= Can I use my own icons? =
|
121 |
|
122 |
Yes, you can!
|
@@ -158,6 +178,10 @@ Copy the report file content and paste it in [gist.github.com](https://gist.gith
|
|
158 |
|
159 |
== Changelog ==
|
160 |
|
|
|
|
|
|
|
|
|
161 |
= 3.3.1 - 2015/09/28 =
|
162 |
|
163 |
* Added submenu in settings page.
|
@@ -212,146 +236,8 @@ Copy the report file content and paste it in [gist.github.com](https://gist.gith
|
|
212 |
* Added option to display the widget without icons (this way it is simple for you to add your icons in your theme CSS).
|
213 |
* Added option to sort the icons order.
|
214 |
|
215 |
-
= 2.9.1 - 2014/04/30 =
|
216 |
-
|
217 |
-
* Improved the counter styles.
|
218 |
-
* Changed the default options in plugin install.
|
219 |
-
|
220 |
-
= 2.9.0 - 2014/04/05 =
|
221 |
-
|
222 |
-
* Added new Google Plus API.
|
223 |
-
* Added Google Plus API key option.
|
224 |
-
* Fixed the Google Plus counter, now is possible grab the pages and profiles followers count.
|
225 |
-
|
226 |
-
= 2.8.2 - 2014/03/26 =
|
227 |
-
|
228 |
-
* Improved the Facebook counter.
|
229 |
-
* Improved the validation of data for all counters.
|
230 |
-
* Added a option to enter with you YouTube Channel URL.
|
231 |
-
|
232 |
-
= 2.8.1 - 2014/02/05 =
|
233 |
-
|
234 |
-
* Added Swedish translation by [Ramrod](http://profiles.wordpress.org/ramrod).
|
235 |
-
|
236 |
-
= 2.8.0 - 03/01/2014 =
|
237 |
-
|
238 |
-
* Added option to insert `rel="nofollow"` in social URLs.
|
239 |
-
* Added option to insert `target="_blank"` in social URLs.
|
240 |
-
|
241 |
-
= 2.7.9 - 2013/12/29 =
|
242 |
-
|
243 |
-
* Added rel="nofollow" in social icons URLs.
|
244 |
-
|
245 |
-
= 2.7.8 - 2013/12/17 =
|
246 |
-
|
247 |
-
* Fixed get_scp_instagram() function.
|
248 |
-
* Fixed get_scp_soundcloud() function.
|
249 |
-
|
250 |
-
= 2.7.7 - 2013/12/13 =
|
251 |
-
|
252 |
-
* Added support to WordPress 3.8.
|
253 |
-
|
254 |
-
= 2.7.6 - 2013/11/26 =
|
255 |
-
|
256 |
-
* Added fr_FR translation by Gilles Santacreu.
|
257 |
-
|
258 |
-
= 2.7.5 - 2013/11/13 =
|
259 |
-
|
260 |
-
* Fixed SimpleXMLElement errors.
|
261 |
-
|
262 |
-
= 2.7.4 - 2013/11/02 =
|
263 |
-
|
264 |
-
* Added Albanian translation by Lorenc.
|
265 |
-
|
266 |
-
= 2.7.3 - 2013/10/31 =
|
267 |
-
|
268 |
-
* Added Russian translation by [Elvisrk](http://wordpress.org/support/profile/elvisrk).
|
269 |
-
|
270 |
-
= 2.7.2 - 2013/10/26 =
|
271 |
-
|
272 |
-
* Fixed the textdomain for new WordPress 3.7 standard.
|
273 |
-
* Fixed the icons padding.
|
274 |
-
|
275 |
-
= 2.7.1 - 2013/09/06 =
|
276 |
-
|
277 |
-
* Fixed icons order.
|
278 |
-
|
279 |
-
= 2.7.0 - 2013/09/06 =
|
280 |
-
|
281 |
-
* Added Intagram counter.
|
282 |
-
* Added Steam counter.
|
283 |
-
* Added SoundCloud counter.
|
284 |
-
* Added `social_count_plus_transient_time` filter.
|
285 |
-
* Added flat icons.
|
286 |
-
|
287 |
-
= 2.6.0 - 2013/06/21 =
|
288 |
-
|
289 |
-
* Added uninstall file.
|
290 |
-
|
291 |
-
= 2.5.0 - 2013/06/21 =
|
292 |
-
|
293 |
-
* Added option to change the text color of the widget.
|
294 |
-
|
295 |
-
= 2.4.0 - 2013/06/21 =
|
296 |
-
|
297 |
-
* Added Google Plus counter.
|
298 |
-
|
299 |
-
= 2.3.0 - 2013/06/20 =
|
300 |
-
|
301 |
-
* Updated the Twitter API to 1.1 version.
|
302 |
-
|
303 |
-
= 2.2 - 2013/04/19 =
|
304 |
-
|
305 |
-
* Added `social_count_plus_number_format` filter.
|
306 |
-
|
307 |
-
= 2.1.1 - 2013/01/22 =
|
308 |
-
|
309 |
-
* Removed cleaning transients to save a post.
|
310 |
-
|
311 |
-
= 2.1 - 2013/01/18 =
|
312 |
-
|
313 |
-
* Fixed a bug that was generated by adding an incorrect user the option of YouTube.
|
314 |
-
|
315 |
-
= 2.0.1 - 2013/01/14 =
|
316 |
-
|
317 |
-
* Fixed styles.
|
318 |
-
* Fixed YouTube widget icon.
|
319 |
-
|
320 |
-
= 2.0 - 2013/01/14 =
|
321 |
-
|
322 |
-
* Source code reformulation.
|
323 |
-
* Added YouTube counter.
|
324 |
-
* Improved performance with fewer options in the database.
|
325 |
-
* Added Brazilian Portuguese and English languages.
|
326 |
-
|
327 |
-
= 1.3 =
|
328 |
-
|
329 |
-
* Removed support for Feedburner since Google has disabled the [API](https://developers.google.com/feedburner/).
|
330 |
-
|
331 |
-
= 1.2 =
|
332 |
-
|
333 |
-
* Free version.
|
334 |
-
|
335 |
-
= 1.1 =
|
336 |
-
|
337 |
-
* Final configuration of the plugin.
|
338 |
-
|
339 |
-
= 1.0 =
|
340 |
-
|
341 |
-
* Initial release.
|
342 |
-
|
343 |
== Upgrade Notice ==
|
344 |
|
345 |
-
= 3.3.
|
346 |
-
|
347 |
-
* Added submenu in settings page.
|
348 |
-
|
349 |
-
== License ==
|
350 |
-
|
351 |
-
Social Count Plus is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published
|
352 |
-
by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
353 |
-
|
354 |
-
Social Count Plus is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
355 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
356 |
|
357 |
-
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y8HP99ZJ5Z59L
|
4 |
Tags: counter, widget, shortcode, facebook, github, googleplus, instagram, linkedin, pinterest, soundcloud, steam, tumblr, twitch, twitter, vimeo, youtube
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 3.3.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
Displays your number of followers from Facebook, Google+, Instagram, Twitch, Twitter and several other social media websites.
|
12 |
|
13 |
== Description ==
|
14 |
|
22 |
- LinkedIn company followers
|
23 |
- Pinterest followers
|
24 |
- Posts total
|
25 |
+
- SoundCloud followers
|
26 |
- Steam Community group members
|
27 |
- Tumblr followers
|
28 |
- Twitch channel followers
|
30 |
- Users total
|
31 |
- Vimeo followers
|
32 |
|
33 |
+
You can display your numbers using a Widget (with links and icons) or Shortcodes (to be used in posts and pages) or PHP functions in your theme.
|
34 |
|
35 |
The results of the counters are cached and new values are checked only once a day. This cache can be wiped when published a new post.
|
36 |
|
78 |
|
79 |
Access https://console.developers.google.com/project to create you Google API key following this steps:
|
80 |
|
81 |
+
https://www.youtube.com/watch?v=KufdCMLMuFs
|
82 |
|
83 |
= Twitter =
|
84 |
|
117 |
add_filter( 'social_count_plus_transient_time', 'social_count_plus_custom_transient_time' );
|
118 |
|
119 |
|
120 |
+
= How can I round numbers? =
|
121 |
+
|
122 |
+
It's possible to round numbers using the `social_count_plus_number_format` filter.
|
123 |
+
|
124 |
+
Example of rounding 1500 to 1.5K or 1000000 to 1M:
|
125 |
+
|
126 |
+
|
127 |
+
function my_custom_scp_number_format( $total ) {
|
128 |
+
if ( $total > 1000000 ) {
|
129 |
+
return round( $total / 1000000, 1 ) . 'M';
|
130 |
+
} else if ( $total > 1000 ) {
|
131 |
+
return round( $total / 1000, 1 ) . 'K';
|
132 |
+
}
|
133 |
+
|
134 |
+
return $total;
|
135 |
+
}
|
136 |
+
|
137 |
+
add_filter( 'social_count_plus_number_format', 'my_custom_scp_number_format' );
|
138 |
+
|
139 |
+
|
140 |
= Can I use my own icons? =
|
141 |
|
142 |
Yes, you can!
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
= 3.3.2 - 2015/09/28 =
|
182 |
+
|
183 |
+
* Restored the `social_count_plus_number_format` filter.
|
184 |
+
|
185 |
= 3.3.1 - 2015/09/28 =
|
186 |
|
187 |
* Added submenu in settings page.
|
236 |
* Added option to display the widget without icons (this way it is simple for you to add your icons in your theme CSS).
|
237 |
* Added option to sort the icons order.
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
== Upgrade Notice ==
|
240 |
|
241 |
+
= 3.3.2 =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
243 |
+
* Restored the `social_count_plus_number_format` filter.
|
social-count-plus.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, Youtube, posts, comments and users.
|
6 |
* Author: Claudio Sanches
|
7 |
* Author URI: http://claudiosmweb.com/
|
8 |
-
* Version: 3.3.
|
9 |
* License: GPLv2 or later
|
10 |
* Text Domain: social-count-plus
|
11 |
* Domain Path: /languages/
|
@@ -31,7 +31,7 @@ class Social_Count_Plus {
|
|
31 |
*
|
32 |
* @var string
|
33 |
*/
|
34 |
-
const VERSION = '3.3.
|
35 |
|
36 |
/**
|
37 |
* Instance of this class.
|
@@ -82,10 +82,7 @@ class Social_Count_Plus {
|
|
82 |
* Load the plugin text domain for translation.
|
83 |
*/
|
84 |
public function load_plugin_textdomain() {
|
85 |
-
|
86 |
-
|
87 |
-
load_textdomain( 'social-count-plus', trailingslashit( WP_LANG_DIR ) . 'social-count-plus/social-count-plus-' . $locale . '.mo' );
|
88 |
-
load_plugin_textdomain( 'social-count-plus', FALSE, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
89 |
}
|
90 |
|
91 |
/**
|
@@ -138,4 +135,3 @@ class Social_Count_Plus {
|
|
138 |
add_action( 'plugins_loaded', array( 'Social_Count_Plus', 'get_instance' ) );
|
139 |
|
140 |
endif;
|
141 |
-
|
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.2
|
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.2';
|
35 |
|
36 |
/**
|
37 |
* Instance of this class.
|
82 |
* Load the plugin text domain for translation.
|
83 |
*/
|
84 |
public function load_plugin_textdomain() {
|
85 |
+
load_plugin_textdomain( 'social-count-plus', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
|
|
|
|
|
|
86 |
}
|
87 |
|
88 |
/**
|
135 |
add_action( 'plugins_loaded', array( 'Social_Count_Plus', 'get_instance' ) );
|
136 |
|
137 |
endif;
|
|