WordPress Popular Posts - Version 3.2.0

Version Description

  • Adds check for jQuery.
  • Fixes invalid parameter in htmlspecialchars().
  • Switches AJAX update to POST method.
  • Removes href attribute from link when popular post is viewed.
  • Removes unnecesary ORDER BY clause in views/comments subquery.
  • Fixes Javascript console not working under IE8 (thanks, @raphaelsaunier!)
  • Fixes WPML compatibility bug storing post IDs as 0.
  • Removes wpp-upload.js since it was no longer in use.
  • Fixes undefined default thumbnail image (thanks, Lea Cohen!)
  • Fixes rating parameter returning false value.
  • Adds Data Sampling (thanks, @kurtpayne!)
  • Minor query optimizations.
  • Adds {date} (thanks, @matsuoshi!) and {thumb_img} tags to custom html.
  • Adds minute time option for caching.
  • Adds wpp_data_sampling filter.
  • Removes jQuery's DOM ready hook for AJAX views update.
  • Adds back missing GROUP BY clause.
  • Removes unnecesary HTML decoding for custom HTML (thanks, Lea Cohen!)
  • Translates category name when WPML is detected.
  • Adds list of available thumbnail sizes to the widget.
  • Other minor bugfixes and improvements.
Download this release

Release Info

Developer hcabrera
Plugin Icon 128x128 WordPress Popular Posts
Version 3.2.0
Comparing to
See all releases

Code changes from version 3.1.1 to 3.2.0

js/admin.js CHANGED
@@ -35,15 +35,19 @@
35
  tb_show('Upload a thumbnail', 'media-upload.php?referer=wpp_admin&type=image&TB_iframe=true&post_id=0', false);
36
  e.preventDefault();
37
  });
38
- window.send_to_editor = function(html) {
39
- var image_url = $('img',html).attr('src');
40
- $('#upload_thumb_src').val(image_url);
41
-
42
- var img = new Image();
43
- img.src = image_url;
44
-
45
- $("#thumb-review").html( img );
46
- $("#thumb-review").parent().show();
 
 
 
 
47
 
48
  tb_remove();
49
  };
35
  tb_show('Upload a thumbnail', 'media-upload.php?referer=wpp_admin&type=image&TB_iframe=true&post_id=0', false);
36
  e.preventDefault();
37
  });
38
+ window.send_to_editor = function(html) {
39
+ var regex = /<img[^>]+src="(http:\/\/[^">]+)"/g;
40
+ var result = regex.exec(html);
41
+
42
+ if ( null != result ) {
43
+ $('#upload_thumb_src').val(result[1]);
44
+
45
+ var img = new Image();
46
+ img.onload = function() {
47
+ $("#thumb-review").html( this ).parent().fadeIn();
48
+ }
49
+ img.src = result[1];
50
+ }
51
 
52
  tb_remove();
53
  };
js/wpp-upload.js DELETED
@@ -1,23 +0,0 @@
1
- jQuery(document).ready(function($) {
2
-
3
- $('#upload_thumb_button').click(function(e) {
4
- e.preventDefault();
5
- tb_show('Upload a thumbnail', 'media-upload.php?referer=wpp_admin&type=image&TB_iframe=true&post_id=0', false);
6
- });
7
-
8
- window.send_to_editor = function(html) {
9
-
10
- var image_url = $('img',html).attr('src');
11
- $('#upload_thumb_src').val(image_url);
12
-
13
- var img = new Image();
14
- img.src = image_url;
15
-
16
- $("#thumb-review").html( img );
17
- $("#thumb-review").parent().show();
18
-
19
- tb_remove();
20
-
21
- };
22
-
23
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/wordpress-popular-posts-de_DE.mo CHANGED
Binary file
lang/wordpress-popular-posts-de_DE.po CHANGED
@@ -1,1450 +1,1514 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Wordpress Popular Posts\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-23 16:53-0430\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
8
- "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
9
- "Language: de_DE\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;_n:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.6.9\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
22
- #: ../views/admin.php:69
23
- msgid "Settings saved."
24
- msgstr "Einstellungen gespeichert"
25
-
26
- #: ../views/admin.php:40
27
- msgid "Please provide the name of your custom field."
28
- msgstr "Gebe einen Namen für das benutzerdefinierte Feld an."
29
-
30
- #: ../views/admin.php:75
31
- msgid ""
32
- "Any changes made to WPP's default stylesheet will be lost after every plugin "
33
- "update. In order to prevent this from happening, please copy the wpp.css "
34
- "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
35
- "theme's directory"
36
- msgstr ""
37
-
38
- #: ../views/admin.php:90
39
- #, fuzzy
40
- msgid ""
41
- "This operation will delete all entries from WordPress Popular Posts' cache "
42
- "table and cannot be undone."
43
- msgstr ""
44
- "Alle Einträge im Cache werden gelöscht und können nicht mehr wieder "
45
- "hergestellt werden."
46
-
47
- #: ../views/admin.php:90 ../views/admin.php:98 ../views/admin.php:106
48
- msgid "Do you want to continue?"
49
- msgstr "Möchtest du fortfahren?"
50
-
51
- #: ../views/admin.php:98
52
- msgid ""
53
- "This operation will delete all stored info from WordPress Popular Posts' "
54
- "data tables and cannot be undone."
55
- msgstr ""
56
- "Alle gespeicherten Daten von WordPress Popular Posts werden gelöscht und "
57
- "können nicht wieder hergestellt werden."
58
-
59
- #: ../views/admin.php:106
60
- #, fuzzy
61
- msgid "This operation will delete all cached thumbnails and cannot be undone."
62
- msgstr ""
63
- "Alle Einträge im Cache werden gelöscht und können nicht mehr wieder "
64
- "hergestellt werden."
65
-
66
- #: ../views/admin.php:123
67
- msgid "Stats"
68
- msgstr "Statistiken"
69
-
70
- #: ../views/admin.php:124
71
- msgid "Tools"
72
- msgstr "Werkzeuge"
73
-
74
- #: ../views/admin.php:125 ../views/admin.php:689
75
- msgid "Parameters"
76
- msgstr "Parameter"
77
-
78
- #: ../views/admin.php:126
79
- msgid "FAQ"
80
- msgstr "Häufige Fragen und Antworten"
81
-
82
- #: ../views/admin.php:127
83
- msgid "About"
84
- msgstr "Über"
85
-
86
- #: ../views/admin.php:138
87
- msgid ""
88
- "Click on each tab to see what are the most popular entries on your blog in "
89
- "the last 24 hours, this week, last 30 days or all time since WordPress "
90
- "Popular Posts was installed."
91
- msgstr ""
92
- "Klicke auf jeden Reiter, um die beliebtesten Beiträge deines Blogs von den "
93
- "letzten 24 Stunden, dieser Woche, den letzten 30 Tagen oder des gesamten "
94
- "Zeitraums seit der Installation von WordPress Popular Posts zu sehen."
95
-
96
- #: ../views/admin.php:144
97
- msgid "Order by comments"
98
- msgstr "Sortiert nach Kommentaren"
99
-
100
- #: ../views/admin.php:145
101
- msgid "Order by views"
102
- msgstr "Sortiert nach Seitenaufrufen"
103
-
104
- #: ../views/admin.php:146
105
- msgid "Order by avg. daily views"
106
- msgstr "Sortierte nach durchschn. Tagesaufrufen"
107
-
108
- #: ../views/admin.php:148
109
- msgid "Post type"
110
- msgstr "Post-Type"
111
-
112
- #: ../views/admin.php:149
113
- msgid "Limit"
114
- msgstr "Max. aufzulistende Einträge:"
115
-
116
- #: ../views/admin.php:150 ../views/form.php:32
117
- msgid "Display only posts published within the selected Time Range"
118
- msgstr ""
119
-
120
- #: ../views/admin.php:152 ../views/admin.php:242 ../views/admin.php:308
121
- #: ../views/admin.php:345
122
- msgid "Apply"
123
- msgstr "Anwenden"
124
-
125
- #: ../views/admin.php:158 ../views/form.php:26
126
- msgid "Last 24 hours"
127
- msgstr "Letzte 24 Stunden"
128
-
129
- #: ../views/admin.php:159 ../views/form.php:27
130
- msgid "Last 7 days"
131
- msgstr "Letzte 7 Tage"
132
-
133
- #: ../views/admin.php:160 ../views/form.php:28
134
- msgid "Last 30 days"
135
- msgstr "Letzte 30 Tage"
136
-
137
- #: ../views/admin.php:161 ../views/form.php:29
138
- msgid "All-time"
139
- msgstr "Allzeithoch"
140
-
141
- #: ../views/admin.php:183
142
- msgid "Thumbnails"
143
- msgstr "Vorschaubilder"
144
-
145
- #: ../views/admin.php:188
146
- msgid "Default thumbnail"
147
- msgstr "Standardvorschaubild"
148
-
149
- #: ../views/admin.php:193
150
- msgid "Upload thumbnail"
151
- msgstr "Vorschaubild hochladen"
152
-
153
- #: ../views/admin.php:195
154
- msgid ""
155
- "How-to: upload (or select) an image, set Size to Full and click on Upload. "
156
- "After it's done, hit on Apply to save changes"
157
- msgstr ""
158
- "Anleitung: ein Bild hochladen (oder aus existierenden wählen) und "
159
- "\"vollständige Größe\" einstellen. Anschließend \"Anwenden\" anklicken."
160
-
161
- #: ../views/admin.php:199
162
- msgid "Pick image from"
163
- msgstr "Wähle Bildquelle"
164
-
165
- #: ../views/admin.php:202
166
- msgid "Featured image"
167
- msgstr "Beitragsbild"
168
-
169
- #: ../views/admin.php:203
170
- msgid "First image on post"
171
- msgstr "Erstes Bild im Beitrag"
172
-
173
- #: ../views/admin.php:204
174
- msgid "Custom field"
175
- msgstr "Benutzerdefiniertes Feld"
176
-
177
- #: ../views/admin.php:207
178
- #, fuzzy
179
- msgid "Tell WordPress Popular Posts where it should get thumbnails from"
180
- msgstr "Woher kommen die Vorschaubilder?"
181
-
182
- #: ../views/admin.php:211
183
- msgid "Custom field name"
184
- msgstr "Name des benutzerdefiniertes Feldes"
185
-
186
- #: ../views/admin.php:217
187
- msgid "Resize image from Custom field?"
188
- msgstr "Bild aus benutzerdefiniertem Feld skalieren?"
189
-
190
- #: ../views/admin.php:220
191
- msgid "No, I will upload my own thumbnail"
192
- msgstr "Nein, ich lade mein eigenes Vorschaubild hoch"
193
-
194
- #: ../views/admin.php:221
195
- msgid "Yes"
196
- msgstr "Ja"
197
-
198
- #: ../views/admin.php:232
199
- #, fuzzy
200
- msgid "Empty image cache"
201
- msgstr "Cache leeren"
202
-
203
- #: ../views/admin.php:233
204
- #, fuzzy
205
- msgid "Use this button to clear WPP's thumbnails cache"
206
- msgstr ""
207
- "Nutze diese Schaltfläche, um die Cache-Tabelle von Wordpress Popular Posts "
208
- "zu leeren."
209
-
210
- #: ../views/admin.php:251
211
- msgid "Data"
212
- msgstr "Daten"
213
-
214
- #: ../views/admin.php:256
215
- msgid "Log views from"
216
- msgstr "Erfasse Aufrufe"
217
-
218
- #: ../views/admin.php:259
219
- msgid "Visitors only"
220
- msgstr "von jedem außer eingeloggten Benutzern"
221
-
222
- #: ../views/admin.php:260
223
- msgid "Logged-in users only"
224
- msgstr "nur von eingeloggten Benutzern"
225
-
226
- #: ../views/admin.php:261
227
- msgid "Everyone"
228
- msgstr "von jedem"
229
-
230
- #: ../views/admin.php:267
231
- msgid "Ajaxify widget"
232
- msgstr "Widget via Ajax"
233
-
234
- #: ../views/admin.php:270 ../views/admin.php:336
235
- msgid "Disabled"
236
- msgstr "Deaktiviert"
237
-
238
- #: ../views/admin.php:271 ../views/admin.php:335
239
- msgid "Enabled"
240
- msgstr "Aktiviert"
241
-
242
- #: ../views/admin.php:275
243
- msgid ""
244
- "If you are using a caching plugin such as WP Super Cache, enabling this "
245
- "feature will keep the popular list from being cached by it"
246
- msgstr ""
247
- "Falls du ein Cache-Plugin wie z. B. WP Super Cache verwendest, verhindert "
248
- "das Aktivieren, dass die Liste nicht gecachet wird und stets aktuell ist."
249
-
250
- #: ../views/admin.php:279
251
- msgid "Listing refresh interval"
252
- msgstr "Aktualisierungsintervall der Liste"
253
-
254
- #: ../views/admin.php:282
255
- msgid "Live"
256
- msgstr "Echtzeit"
257
-
258
- #: ../views/admin.php:283
259
- msgid "Custom interval"
260
- msgstr "Benutzerdefiniertes Intervall"
261
-
262
- #: ../views/admin.php:287
263
- msgid ""
264
- "Sets how often the listing should be updated. For most sites the Live option "
265
- "should be fine, however if you are experiencing slowdowns or your blog gets "
266
- "a lot of visitors then you might want to change the refresh rate"
267
- msgstr ""
268
- "Stellt ein, wie oft die Liste aktualisiert wird. Für die meisten Websites "
269
- "erreicht die Echtzeit-Einstellung gute Werte. Solltest du jedoch "
270
- "Verlangsamungen feststellen oder deine Website erreicht viele Besucher, "
271
- "solltest du die Aktualisierungsrate ändern."
272
-
273
- #: ../views/admin.php:291
274
- msgid "Refresh list every"
275
- msgstr "Benutzerdefiniertes Intervall"
276
-
277
- #: ../views/admin.php:295
278
- msgid "Hour(s)"
279
- msgstr "Stunde(n)"
280
-
281
- #: ../views/admin.php:296
282
- msgid "Day(s)"
283
- msgstr "Tag(e)"
284
-
285
- #: ../views/admin.php:297
286
- msgid "Week(s)"
287
- msgstr "Woche(n)"
288
-
289
- #: ../views/admin.php:298
290
- msgid "Month(s)"
291
- msgstr "Monat(e)"
292
-
293
- #: ../views/admin.php:299
294
- msgid "Year(s)"
295
- msgstr "Jahr(e)"
296
-
297
- #: ../views/admin.php:302
298
- msgid "Really? That long?"
299
- msgstr "Wirklich? So lang?"
300
-
301
- #: ../views/admin.php:317
302
- msgid "Miscellaneous"
303
- msgstr "Sonstiges"
304
-
305
- #: ../views/admin.php:322
306
- msgid "Open links in"
307
- msgstr "Links öffnen in"
308
-
309
- #: ../views/admin.php:325
310
- msgid "Current window"
311
- msgstr "aktuellem Fenster"
312
-
313
- #: ../views/admin.php:326
314
- msgid "New tab/window"
315
- msgstr "Neuem Tab/Fenster"
316
-
317
- #: ../views/admin.php:332
318
- msgid "Use plugin's stylesheet"
319
- msgstr "Stylesheet des Plugins benutzen"
320
-
321
- #: ../views/admin.php:339
322
- msgid ""
323
- "By default, the plugin includes a stylesheet called wpp.css which you can "
324
- "use to style your popular posts listing. If you wish to use your own "
325
- "stylesheet or do not want it to have it included in the header section of "
326
- "your site, use this."
327
- msgstr ""
328
- "Als Voreinstellung schließt dieses Plugin eine Stylesheet-Datei wpp.css ein. "
329
- "Du kannst mit ihr die Auflistung beliebter Beiträge gestalten. Falls du dein "
330
- "eigenes Stylesheet verwenden oder die wpp.css nicht im HEAD-Abschnitt "
331
- "einbinden willst, deaktiviere die Einbindung."
332
-
333
- #: ../views/admin.php:356
334
- msgid ""
335
- "WordPress Popular Posts maintains data in two separate tables: one for "
336
- "storing the most popular entries on a daily basis (from now on, \"cache\"), "
337
- "and another one to keep the All-time data (from now on, \"historical data\" "
338
- "or just \"data\"). If for some reason you need to clear the cache table, or "
339
- "even both historical and cache tables, please use the buttons below to do so."
340
- msgstr ""
341
- "WordPress Popular Posts speichert Daten in zwei getrennten Tabellen: eine "
342
- "für die beliebtesten Beiträge der letzten 30 Tage (auch: \"Cache-Tabelle\"), "
343
- "und die andere für die Allzeit-Daten (auch \"historische Daten\" oder "
344
- "einfach \"Datentabelle\"). Solltest du aus verschiedenen Gründen die Cache-"
345
- "Tabelle leeren wollen oder sowohl die Datentabelle als auch die Cache-"
346
- "Tabelle, nutze die folgenden Schaltflächen."
347
-
348
- #: ../views/admin.php:357
349
- msgid "Empty cache"
350
- msgstr "Cache leeren"
351
-
352
- #: ../views/admin.php:357
353
- msgid "Use this button to manually clear entries from WPP cache only"
354
- msgstr ""
355
- "Nutze diese Schaltfläche, um die Cache-Tabelle von Wordpress Popular Posts "
356
- "zu leeren."
357
-
358
- #: ../views/admin.php:358
359
- msgid "Clear all data"
360
- msgstr "Alle Daten löschen"
361
-
362
- #: ../views/admin.php:358
363
- msgid "Use this button to manually clear entries from all WPP data tables"
364
- msgstr ""
365
- "Nutze diese Schaltfläche, um alle Einträge in der Datentabelle von Wordpress "
366
- "Popular Posts zu löschen."
367
-
368
- #: ../views/admin.php:365
369
- #, php-format
370
- msgid ""
371
- "With the following parameters you can customize the popular posts list when "
372
- "using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or "
373
- "the <a href=\"%2$s\">[wpp] shortcode</a>."
374
- msgstr ""
375
-
376
- #: ../views/admin.php:373
377
- msgid "Parameter"
378
- msgstr "Parameter"
379
-
380
- #: ../views/admin.php:374 ../views/admin.php:688
381
- msgid "What it does "
382
- msgstr "Was es macht"
383
-
384
- #: ../views/admin.php:375
385
- msgid "Possible values"
386
- msgstr "Erlaubte Werte"
387
-
388
- #: ../views/admin.php:376
389
- msgid "Defaults to"
390
- msgstr "Voreinstellung"
391
-
392
- #: ../views/admin.php:377 ../views/admin.php:690
393
- msgid "Example"
394
- msgstr "Beispiel"
395
-
396
- #: ../views/admin.php:383
397
- msgid "Sets a heading for the list"
398
- msgstr "Bestimmt die Überschrift der Liste"
399
-
400
- #: ../views/admin.php:384 ../views/admin.php:391 ../views/admin.php:398
401
- #: ../views/admin.php:433 ../views/admin.php:440 ../views/admin.php:447
402
- #: ../views/admin.php:454 ../views/admin.php:545 ../views/admin.php:559
403
- #: ../views/admin.php:566
404
- msgid "Text string"
405
- msgstr "Zeichenkette"
406
-
407
- #: ../views/admin.php:385
408
- msgid "Popular Posts"
409
- msgstr "Beliebteste Beiträge"
410
-
411
- #: ../views/admin.php:390
412
- msgid "Set the opening tag for the heading of the list"
413
- msgstr "Bestimmt den öffnenden Tag der Listenüberschrift"
414
-
415
- #: ../views/admin.php:397
416
- msgid "Set the closing tag for the heading of the list"
417
- msgstr "Bestimmt den schließenden Tag der Listenüberschrift"
418
-
419
- #: ../views/admin.php:404
420
- msgid "Sets the maximum number of popular posts to be shown on the listing"
421
- msgstr "Bestimmt die maximale Anzahl der beliebten Beiträge in der Auflistung"
422
-
423
- #: ../views/admin.php:405 ../views/admin.php:461 ../views/admin.php:475
424
- #: ../views/admin.php:496 ../views/admin.php:503
425
- msgid "Positive integer"
426
- msgstr "Positive Ganzzahl"
427
-
428
- #: ../views/admin.php:411
429
- msgid ""
430
- "Tells WordPress Popular Posts to retrieve the most popular entries within "
431
- "the time range specified by you"
432
- msgstr ""
433
- "Weist WordPress Popular Posts an, die beliebtesten Beiträge innerhalt der "
434
- "eingestellten Zeitspanne anzuzeigen."
435
-
436
- #: ../views/admin.php:418
437
- msgid ""
438
- "Tells WordPress Popular Posts to retrieve the most popular entries published "
439
- "within the time range specified by you"
440
- msgstr ""
441
- "Weist WordPress Popular Posts an, die beliebtesten Beiträge innerhalt der "
442
- "eingestellten Zeitspanne anzuzeigen."
443
-
444
- #: ../views/admin.php:425
445
- msgid "Sets the sorting option of the popular posts"
446
- msgstr "Bestimmt die Auswahl der Reihenfolge der beliebten Beiträge"
447
-
448
- #: ../views/admin.php:426
449
- msgid "(for average views per day)"
450
- msgstr "(für durchschn. Aufrufe pro Tag)"
451
-
452
- #: ../views/admin.php:432
453
- msgid "Defines the type of posts to show on the listing"
454
- msgstr "Bestimmt die Art der Dokumente, die aufgelistet werden"
455
-
456
- #: ../views/admin.php:439
457
- msgid ""
458
- "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
459
- "form the listing."
460
- msgstr ""
461
- "Falls gesetzt, zeigt WordPress Popular Posts die Beiträge und Seiten anhand "
462
- "ihrer angegebener ID(s) in der Liste nicht an."
463
-
464
- #: ../views/admin.php:441 ../views/admin.php:448 ../views/admin.php:455
465
- msgid "None"
466
- msgstr "nichts"
467
-
468
- #: ../views/admin.php:446
469
- msgid ""
470
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
471
- "specified category(ies) ID(s). If a minus sign is used, the category(ies) "
472
- "will be excluded instead."
473
- msgstr ""
474
- "Falls gesetzt, zeigt WordPress Popular Posts alle Einträge, die den "
475
- "angegebenen Kategorie-IDs zugeordnet sind, an. Ein Minus-Zeichen vor der ID "
476
- "schließt die Beiträge dieser Kategorie aus."
477
-
478
- #: ../views/admin.php:453
479
- msgid ""
480
- "If set, WordPress Popular Posts will retrieve all entries created by "
481
- "specified author(s) ID(s)."
482
- msgstr ""
483
- "Falls gesetzt, wird WordPress Popular Posts alle Einträge anhand angegebener "
484
- "Autor(en)-ID(s) ausgeben."
485
-
486
- #: ../views/admin.php:460
487
- msgid ""
488
- "If set, WordPress Popular Posts will shorten each post title to \"n\" "
489
- "characters whenever possible"
490
- msgstr ""
491
- "Falls gesetzt, kürzt WordPress Popular Posts jeden Titel, wenn möglich, auf "
492
- "\"n\" Zeichen."
493
-
494
- #: ../views/admin.php:467
495
- msgid ""
496
- "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
497
- "words instead of characters"
498
- msgstr ""
499
- "Falls gesetzt, kürzt WordPress Popular Posts jeden Titel, wenn möglich, auf "
500
- "\"n\" Wörter anstatt Zeichen."
501
-
502
- #: ../views/admin.php:474
503
- msgid ""
504
- "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
505
- "characters long from the content of each post listed as popular"
506
- msgstr ""
507
- "Falls gesetzt, zeigt WordPress Popular Posts einen Auszug von \"n\" "
508
- "Buchstaben Länge bei jedem Beitrag an."
509
-
510
- #: ../views/admin.php:481
511
- msgid ""
512
- "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
513
- "italic, etc) and hyperlinks found in the excerpt"
514
- msgstr ""
515
- "Falls gesetzt, behält WordPress Popular Posts die formatierenden Tags (fett, "
516
- "kursiv usw.) und die Links im Auszug bei."
517
-
518
- #: ../views/admin.php:488
519
- msgid ""
520
- "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
521
- "instead of characters"
522
- msgstr ""
523
- "Falls gesetzt, kürzt WordPress Popular Posts jeden Auszug, wenn möglich, auf "
524
- "\"n\" Wörter anstatt Zeichen."
525
-
526
- #: ../views/admin.php:495
527
- msgid ""
528
- "If set, and if your current server configuration allows it, you will be able "
529
- "to display thumbnails of your posts. This attribute sets the width for "
530
- "thumbnails"
531
- msgstr ""
532
- "Falls gesetzt und es die aktuelle Server-Konfiguration erlaubt, ist dir die "
533
- "Anzeige von Vorschaubildern deiner Beiträge möglich. Dieses Attribut "
534
- "bestimmt die Breite der Vorschaubilder."
535
-
536
- #: ../views/admin.php:502
537
- msgid ""
538
- "If set, and if your current server configuration allows it, you will be able "
539
- "to display thumbnails of your posts. This attribute sets the height for "
540
- "thumbnails"
541
- msgstr ""
542
- "Falls gesetzt und es die aktuelle Server-Konfiguration erlaubt, ist dir die "
543
- "Anzeige von Vorschaubildern deiner Beiträge möglich. Dieses Attribut "
544
- "bestimmt die Höhe der Vorschaubilder."
545
-
546
- #: ../views/admin.php:509
547
- msgid ""
548
- "If set, and if the WP-PostRatings plugin is installed and enabled on your "
549
- "blog, WordPress Popular Posts will show how your visitors are rating your "
550
- "entries"
551
- msgstr ""
552
- "Falls gesetzt und wenn das Plugin WP-PostRatings in Deinem Blog läuft, zeigt "
553
- "WordPress Popular Posts die Bewertungen der Nutzer an."
554
-
555
- #: ../views/admin.php:516
556
- msgid ""
557
- "If set, WordPress Popular Posts will show how many comments each popular "
558
- "post has got until now"
559
- msgstr ""
560
- "Falls gesetzt, zeigt WordPress Popular Posts an, wie viele Kommentare jeder "
561
- "Beitrag bis jetzt erhielt."
562
-
563
- #: ../views/admin.php:523
564
- msgid ""
565
- "If set, WordPress Popular Posts will show how many views each popular post "
566
- "has got since it was installed"
567
- msgstr ""
568
- "Falls gesetzt, zeigt WordPress Popular Posts an, wie viele Aufrufe jeder "
569
- "Beitrag seit der Installation erhielt."
570
-
571
- #: ../views/admin.php:530
572
- msgid ""
573
- "If set, WordPress Popular Posts will show who published each popular post on "
574
- "the list"
575
- msgstr ""
576
- "Falls gesetzt, zeigt WordPress Popular Posts an, wer welchen Beitrag "
577
- "veröffentlicht hat."
578
-
579
- #: ../views/admin.php:537
580
- msgid ""
581
- "If set, WordPress Popular Posts will display the date when each popular post "
582
- "on the list was published"
583
- msgstr ""
584
- "Falls gesetzt, zeigt WordPress Popular Posts das Veröffentlichungsdatum "
585
- "jeden Beitrags in der Liste an."
586
-
587
- #: ../views/admin.php:544
588
- msgid "Sets the date format"
589
- msgstr "Bestimmt das Datumsformat"
590
-
591
- #: ../views/admin.php:551
592
- msgid "If set, WordPress Popular Posts will display the category"
593
- msgstr "Falls gesetzt, zeigt WordPress Popular Posts die Kategorie an"
594
-
595
- #: ../views/admin.php:558
596
- msgid "Sets the opening tag for the listing"
597
- msgstr "Bestimmt das öffnende Tag der Auflistung"
598
-
599
- #: ../views/admin.php:565
600
- msgid "Sets the closing tag for the listing"
601
- msgstr "Bestimmt das schließende Tag der Auflistung"
602
-
603
- #: ../views/admin.php:572
604
- msgid "Sets the HTML structure of each post"
605
- msgstr "Setzt die HTML-Struktur jeden Beitrags"
606
-
607
- #: ../views/admin.php:573
608
- msgid "Text string, custom HTML"
609
- msgstr "Zeichenkette, benutzerdefiniertes HTML"
610
-
611
- #: ../views/admin.php:573
612
- msgid "Available Content Tags"
613
- msgstr "Verfügbare Content-Tags"
614
-
615
- #: ../views/admin.php:573
616
- msgid "displays thumbnail linked to post/page"
617
- msgstr "zeigt verlinktes Vorschaubild des Beitrags/der Seite an"
618
-
619
- #: ../views/admin.php:573
620
- msgid "displays linked post/page title"
621
- msgstr "zeigt den verlinkten Titel des Beitrags/der Seiten an"
622
-
623
- #: ../views/admin.php:573
624
- msgid ""
625
- "displays post/page excerpt, and requires excerpt_length to be greater than 0"
626
- msgstr ""
627
- "zeigt den Auszug (excerpt) des Beitrags/der Seite an, erfordert "
628
- "excerpt_length größer als 0"
629
-
630
- #: ../views/admin.php:573
631
- msgid "displays the default stats tags"
632
- msgstr "zeigt die standard&shy;mäßigen Statistik-Tags an"
633
-
634
- #: ../views/admin.php:573
635
- msgid ""
636
- "displays post/page current rating, requires WP-PostRatings installed and "
637
- "enabled"
638
- msgstr ""
639
- "zeigt die aktuelle Bewertung des Beitrags/der Seite an, erfordert das "
640
- "installierte und aktivierte Plugin WP-PostRatings"
641
-
642
- #: ../views/admin.php:573
643
- msgid ""
644
- "displays post/page current rating as an integer, requires WP-PostRatings "
645
- "installed and enabled"
646
- msgstr ""
647
- "zeigt die aktuelle Bewertung des Beitrags/der Seite an, erfordert das "
648
- "installierte und aktivierte Plugin WP-PostRatings"
649
-
650
- #: ../views/admin.php:573
651
- msgid "outputs the URL of the post/page"
652
- msgstr "gibt die URL des Beitrags/der Seite aus"
653
-
654
- #: ../views/admin.php:573
655
- msgid "displays post/page title, no link"
656
- msgstr "zeigt den Titel des Beitrags/der Seite an, ohne Link"
657
-
658
- #: ../views/admin.php:573
659
- msgid "displays linked author name, requires stats_author=1"
660
- msgstr "zeigt den verlinkten Autoren&shy;namen an, erfordert stats_author=1"
661
-
662
- #: ../views/admin.php:573
663
- msgid "displays linked category name, requires stats_category=1"
664
- msgstr ""
665
- "zeigt den verlinkten Kategorien&shy;namen an, erfordert stats_category=1"
666
-
667
- #: ../views/admin.php:573
668
- msgid "displays views count only, no text"
669
- msgstr "zeigt nur die Anzahl an, ohne Text"
670
-
671
- #: ../views/admin.php:573
672
- msgid "displays comments count only, no text, requires stats_comments=1"
673
- msgstr ""
674
- "zeigt nur die Anzahl der Kom&shy;men&shy;tare an, ohne Text, erfordert "
675
- "stats_comment=1"
676
-
677
- #: ../views/admin.php:585
678
- msgid "What does \"Title\" do?"
679
- msgstr "Was macht \"Titel\"?"
680
-
681
- #: ../views/admin.php:588
682
- msgid ""
683
- "It allows you to show a heading for your most popular posts listing. If left "
684
- "empty, no heading will be displayed at all."
685
- msgstr ""
686
- "Ermöglicht dir, eine Überschrift für die Auflistung anzugeben. Falls leer "
687
- "belassen, wird keine Überschrift angezeigt."
688
-
689
- #: ../views/admin.php:591
690
- msgid "What is Time Range for?"
691
- msgstr "Für was steht die Zeitspanne?"
692
-
693
- #: ../views/admin.php:593
694
- msgid ""
695
- "It will tell WordPress Popular Posts to retrieve all posts with most views / "
696
- "comments within the selected time range."
697
- msgstr ""
698
- "Weist WordPress Popular Posts an, alle Beiträge mit den meisten Aufrufen "
699
- "bzw. Kommentaren innerhalb der eingestellten Zeitspanne anzuzeigen."
700
-
701
- #: ../views/admin.php:596
702
- msgid "What is \"Sort post by\" for?"
703
- msgstr "Für was steht \"Sortiere Beiträge nach\"?"
704
-
705
- #: ../views/admin.php:598
706
- msgid ""
707
- "It allows you to decide whether to order your popular posts listing by total "
708
- "views, comments, or average views per day."
709
- msgstr ""
710
- "Ermöglicht dir zu entscheiden, ob die Listeneinträge nach absoluter Anzahl "
711
- "der Aufrufe, Kommentare oder durchschnittlichen Aufrufen pro Tag geordnet "
712
- "werden."
713
-
714
- #: ../views/admin.php:601
715
- msgid "What does \"Display post rating\" do?"
716
- msgstr "Was macht \"Zeige Bewertung\"?"
717
-
718
- #: ../views/admin.php:603
719
- msgid ""
720
- "If checked, WordPress Popular Posts will show how your readers are rating "
721
- "your most popular posts. This feature requires having WP-PostRatings plugin "
722
- "installed and enabled on your blog for it to work."
723
- msgstr ""
724
- "Falls aktiviert, zeigt WordPress Popular Posts an, wie deine Leser deine "
725
- "beliebtesten Beiträge bewertet haben. Diese Funktion erfordert die "
726
- "Installation und Aktivierung des Plugins WP-PostRatings."
727
-
728
- #: ../views/admin.php:606
729
- msgid "What does \"Shorten title\" do?"
730
- msgstr "Was macht \"Kürze den Titel\"?"
731
-
732
- #: ../views/admin.php:608
733
- msgid ""
734
- "If checked, all posts titles will be shortened to \"n\" characters/words. A "
735
- "new \"Shorten title to\" option will appear so you can set it to whatever "
736
- "you like."
737
- msgstr ""
738
- "Falls aktiviert, werden alle Titel auf \"n\" Zeichen gekürzt. Eine neue "
739
- "Auswahl \"Kürze den Titel zu\" wird erscheinen, mit der du die Titellänge "
740
- "setzen kannst."
741
-
742
- #: ../views/admin.php:611
743
- msgid "What does \"Display post excerpt\" do?"
744
- msgstr "Was macht \"Zeige Auszug\"?"
745
-
746
- #: ../views/admin.php:613
747
- msgid ""
748
- "If checked, WordPress Popular Posts will also include a small extract of "
749
- "your posts in the list. Similarly to the previous option, you will be able "
750
- "to decide how long the post excerpt should be."
751
- msgstr ""
752
- "Falls aktiviert, zeigt WordPress Popular Posts zusätzlich einen kurzen "
753
- "Auszug Deines Beitrags in der Liste an. Wie bei der vorhergehenden Auswahl "
754
- "ist es dir möglich, die Länge des Auszugs einzustellen."
755
-
756
- #: ../views/admin.php:616
757
- msgid "What does \"Keep text format and links\" do?"
758
- msgstr "Was macht \"Behalte Textformat und Links bei\"?"
759
-
760
- #: ../views/admin.php:618
761
- msgid ""
762
- "If checked, and if the Post Excerpt feature is enabled, WordPress Popular "
763
- "Posts will keep the styling tags (eg. bold, italic, etc) that were found in "
764
- "the excerpt. Hyperlinks will remain intact, too."
765
- msgstr ""
766
- "Falls aktiviert und wenn die Darstellung von Auszügen aktiviert ist, behält "
767
- "WordPress Popular Posts die formatierenden Tags (z. B. fett, kursiv usw.) im "
768
- "Auszug. Auch Links bleiben unverändert."
769
-
770
- #: ../views/admin.php:621
771
- msgid "What is \"Post type\" for?"
772
- msgstr "Für was steht \"Post-Type\"?"
773
-
774
- #: ../views/admin.php:623
775
- msgid ""
776
- "This filter allows you to decide which post types to show on the listing. By "
777
- "default, it will retrieve only posts and pages (which should be fine for "
778
- "most cases)."
779
- msgstr ""
780
- "Dieser Filter erlaubt dir zu entscheiden, welche Post-Types aufgelistet "
781
- "werden. Per Voreinstellung werden nur Seiten und Beiträge angezeigt (was in "
782
- "den meisten Fällen ausreicht)."
783
-
784
- #: ../views/admin.php:626
785
- msgid "What is \"Category(ies) ID(s)\" for?"
786
- msgstr "Für was steht \"Kategorie(n)-ID(s)\"?"
787
-
788
- #: ../views/admin.php:628
789
- msgid ""
790
- "This filter allows you to select which categories should be included or "
791
- "excluded from the listing. A negative sign in front of the category ID "
792
- "number will exclude posts belonging to it from the list, for example. You "
793
- "can specify more than one ID with a comma separated list."
794
- msgstr ""
795
- "Dieser Filter erlaubt dir auszuwählen, welche Kategorien in der Auflistung "
796
- "eingeschlossen oder ausgeschlossen werden sollten. Ein Minus-Zeichen vor "
797
- "einer Kategorien-ID schließt Beiträge, die die ID zugewiesen bekamen, von "
798
- "der Liste aus. du kannst mehr als eine ID, mit Kommas getrennt, angeben."
799
-
800
- #: ../views/admin.php:631
801
- msgid "What is \"Author(s) ID(s)\" for?"
802
- msgstr "Für was steht \"Autor(en)-ID(s)\"?"
803
-
804
- #: ../views/admin.php:633
805
- msgid ""
806
- "Just like the Category filter, this one lets you filter posts by author ID. "
807
- "You can specify more than one ID with a comma separated list."
808
- msgstr ""
809
- "Wie beim Kategorienfilter kannst du auch Beiträge nach Autoren filtern. Du "
810
- "kannst mehr als eine Autoren-ID, getrennt durch Kommas, angeben."
811
-
812
- #: ../views/admin.php:636
813
- msgid "What does \"Display post thumbnail\" do?"
814
- msgstr "Was macht \"Zeige Vorschaubild\"?"
815
-
816
- #: ../views/admin.php:638
817
- msgid ""
818
- "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail "
819
- "of each post. You can set up the source of the thumbnail via Settings - "
820
- "WordPress Popular Posts - Tools."
821
- msgstr ""
822
- "Falls aktiviert, versucht WordPress Popular Posts, das Vorschaubild von "
823
- "jedem Beitrag darzustellen. Du kannst die Quelle des Vorschaubildes unter "
824
- "\"Werkzeuge\" einstellen."
825
-
826
- #: ../views/admin.php:641
827
- msgid "What does \"Display comment count\" do?"
828
- msgstr "Was macht \"Zeige Anzahl Kommentare\"?"
829
-
830
- #: ../views/admin.php:643
831
- msgid ""
832
- "If checked, WordPress Popular Posts will display how many comments each "
833
- "popular post has got in the selected Time Range."
834
- msgstr ""
835
- "Falls aktiviert, zeigt WordPress Popular Posts an, wie viele Kommentare "
836
- "jeder beliebte Beitrag in der eingestellten Zeitspanne erhielt."
837
-
838
- #: ../views/admin.php:646
839
- msgid "What does \"Display views\" do?"
840
- msgstr "Was macht \"Zeige Aufrufe\"?"
841
-
842
- #: ../views/admin.php:648
843
- msgid ""
844
- "If checked, WordPress Popular Posts will show how many pageviews a single "
845
- "post has gotten in the selected Time Range."
846
- msgstr ""
847
- "Falls aktiviert, zeigt WordPress Popular Posts an, wie viele Seitenaufrufe "
848
- "jeder einzelne Beitrag in der eingestellten Zeitspanne erhielt."
849
-
850
- #: ../views/admin.php:651
851
- msgid "What does \"Display author\" do?"
852
- msgstr "Was macht \"Zeige Autor\"?"
853
-
854
- #: ../views/admin.php:653
855
- msgid ""
856
- "If checked, WordPress Popular Posts will display the name of the author of "
857
- "each entry listed."
858
- msgstr ""
859
- "Falls aktiviert, zeigt WordPress Popular Posts den Autorennamen in jedem "
860
- "Listeneintrag an."
861
-
862
- #: ../views/admin.php:656
863
- msgid "What does \"Display date\" do?"
864
- msgstr "Was macht \"Zeige Datum\"?"
865
-
866
- #: ../views/admin.php:658
867
- msgid ""
868
- "If checked, WordPress Popular Posts will display the date when each popular "
869
- "posts was published."
870
- msgstr ""
871
- "Falls aktiviert, zeigt WordPress Popular Posts das Veröffentlichungsdatum "
872
- "jeden Beitrags an."
873
-
874
- #: ../views/admin.php:661
875
- msgid "What does \"Display category\" do?"
876
- msgstr "Was macht \"Zeige Kategorie\"?"
877
-
878
- #: ../views/admin.php:663
879
- msgid ""
880
- "If checked, WordPress Popular Posts will display the category of each post."
881
- msgstr ""
882
- "Falls aktiviert, zeigt WordPress Popular Posts den Kategorie in jedem "
883
- "Listeneintrag an."
884
-
885
- #: ../views/admin.php:666
886
- msgid "What does \"Use custom HTML Markup\" do?"
887
- msgstr "Was macht \"Verwende benutzerdefinierten HTML-Code\"?"
888
-
889
- #: ../views/admin.php:668
890
- msgid ""
891
- "If checked, you will be able to customize the HTML markup of your popular "
892
- "posts listing. For example, you can decide whether to wrap your posts in an "
893
- "unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is "
894
- "for you!"
895
- msgstr ""
896
- "Falls aktiviert, ist es dir möglich, eigenen HTML-Code in der Auflistung "
897
- "einzusetzen. Du kannst z. B. bestimmen, ob die Einträge in einer "
898
- "ungeordneten Liste, geordneten Liste, einem DIV oder was auch immer gesetzt "
899
- "werden. Wenn du HTML und CSS kannst, ist diese Auswahl dein Freund."
900
-
901
- #: ../views/admin.php:671
902
- msgid "What are \"Content Tags\"?"
903
- msgstr "Was sind \"Content-Tags\"?"
904
-
905
- #: ../views/admin.php:673
906
- #, fuzzy, php-format
907
- msgid ""
908
- "Content Tags are codes to display a variety of items on your popular posts "
909
- "custom HTML structure. For example, setting it to \"{title}: "
910
- "{summary}\" (without the quotes) would display \"Post title: excerpt of the "
911
- "post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank"
912
- "\">Parameters</a> section."
913
- msgstr ""
914
- "Content-Tags sind Code-Schnipsel, um verschiedene Angaben über die "
915
- "beliebtesten Beiträge in deiner selbst definierten HTML-Struktur anzuzeigen. "
916
- "Zum Beispiel zeigt \"{title}: {summary}\" (ohne die Anführungszeichen) "
917
- "\"Überschrift: Auszug des Beitrags\" an. Für weitere Content-Tags siehe "
918
- "\"Liste der gültigen Parameter von wpp_gewt-mostpopular() und des [wpp]-"
919
- "Shortcodes\"."
920
-
921
- #: ../views/admin.php:676
922
- msgid "What are \"Template Tags\"?"
923
- msgstr "Was sind \"Template-Tags\"?"
924
-
925
- #: ../views/admin.php:678
926
- msgid ""
927
- "Template Tags are simply php functions that allow you to perform certain "
928
- "actions. For example, WordPress Popular Posts currently supports two "
929
- "different template tags: wpp_get_mostpopular() and wpp_get_views()."
930
- msgstr ""
931
- "Template-Tags sind schlicht und einfach PHP-Funktionen, die bestimmten "
932
- "Aktionen ausführen. Zum Beispiel unterstützt WordPress Popular Posts zwei "
933
- "verschiedene Template-Tags: wpp_get_mostpopular() und wpp_get_views()."
934
-
935
- #: ../views/admin.php:681
936
- msgid "What are the template tags that WordPress Popular Posts supports?"
937
- msgstr "Welche Template-Tags unterstützt WordPress Popular Posts?"
938
-
939
- #: ../views/admin.php:683
940
- msgid ""
941
- "The following are the template tags supported by WordPress Popular Posts"
942
- msgstr "Die folgenden Template-Tags unterstützt WordPress Popular Posts"
943
-
944
- #: ../views/admin.php:687
945
- msgid "Template tag"
946
- msgstr "Template-Tag"
947
-
948
- #: ../views/admin.php:696
949
- #, fuzzy, php-format
950
- msgid ""
951
- "Similar to the widget functionality, this tag retrieves the most popular "
952
- "posts on your blog. This function also accepts <a href=\"%1$s\">parameters</"
953
- "a> so you can customize your popular listing, but these are not required."
954
- msgstr ""
955
- "Ähnlich wie das Widget zeigt dieser Tag die beliebtesten Beiträge Deines "
956
- "Blogs an. Diese Funktion akzeptiert auch Parameter, so dass du die "
957
- "Auflistung nach deinen Vorstellungen setzen kannst, aber sie sind sind "
958
- "erforderlich."
959
-
960
- #: ../views/admin.php:697
961
- #, php-format
962
- msgid ""
963
- "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete "
964
- "list of attributes."
965
- msgstr ""
966
-
967
- #: ../views/admin.php:702
968
- msgid ""
969
- "Displays the number of views of a single post. Post ID is required or it "
970
- "will return false."
971
- msgstr ""
972
- "Zeigt die Anzahl der Aufrufe eines einzelnen Beitrags an. Die Post-ID ist "
973
- "erforderlich, andersfalls wird false zurückgegeben."
974
-
975
- #: ../views/admin.php:703
976
- msgid "Post ID"
977
- msgstr "Post-ID"
978
-
979
- #: ../views/admin.php:710
980
- msgid "What are \"shortcodes\"?"
981
- msgstr "Was sind \"Shortcodes\"?"
982
-
983
- #: ../views/admin.php:712
984
- #, php-format
985
- msgid ""
986
- "Shortcodes are similar to BB Codes, these allow us to call a php function by "
987
- "simply typing something like [shortcode]. With WordPress Popular Posts, the "
988
- "shortcode [wpp] will let you insert a list of the most popular posts in "
989
- "posts content and pages too! For more information about shortcodes, please "
990
- "visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page."
991
- msgstr ""
992
- "Shortcodes sind vergleichbar mit BB-Codes. Sie erlauben uns, eine PHP-"
993
- "Funktion aufzurufen durch einen einfachen Text wie [shortcode]. Der "
994
- "Shortcode [wpp] fügt die Liste der beliebtesten Beiträge in den Text sowohl "
995
- "von Beiträgen als auch Seiten ein. Für mehr Informationen über Shortcodes "
996
- "besuche <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a>."
997
-
998
- #: ../views/admin.php:721
999
- #, php-format
1000
- msgid "About WordPress Popular Posts %s"
1001
- msgstr "Über WordPress Popular Posts %s"
1002
-
1003
- #: ../views/admin.php:722
1004
- msgid "This version includes the following changes"
1005
- msgstr "Diese Version enthält die folgenden Änderungen"
1006
-
1007
- #: ../views/admin.php:741
1008
- msgid "Do you like this plugin?"
1009
- msgstr "Gefällt dir dieses Plugin?"
1010
-
1011
- #: ../views/admin.php:748
1012
- msgid ""
1013
- "Each donation motivates me to keep releasing free stuff for the WordPress "
1014
- "community!"
1015
- msgstr ""
1016
- "Jede Spende motiviert mich, der WordPress-Gemeinschaft nützliches Zeugs "
1017
- "weiterhin kostenlos zur Verfügung zu stellen!"
1018
-
1019
- #: ../views/admin.php:749
1020
- #, php-format
1021
- msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
1022
- msgstr ""
1023
-
1024
- #: ../views/admin.php:753
1025
- msgid "Need help?"
1026
- msgstr "Brauchen Sie Hilfe?"
1027
-
1028
- #: ../views/admin.php:754
1029
- #, php-format
1030
- msgid ""
1031
- "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions "
1032
- "and feedback."
1033
- msgstr ""
1034
-
1035
- #: ../views/admin.php:755
1036
- msgid "Let's make this plugin even better!"
1037
- msgstr ""
1038
-
1039
- #: ../views/form.php:2
1040
- msgid "Title"
1041
- msgstr "Titel:"
1042
-
1043
- #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24
1044
- #: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43
1045
- #: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63
1046
- #: ../views/form.php:66 ../views/form.php:73 ../views/form.php:87
1047
- #: ../views/form.php:89 ../views/form.php:91 ../views/form.php:93
1048
- #: ../views/form.php:105 ../views/form.php:111
1049
- msgid "What is this?"
1050
- msgstr "Was ist das?"
1051
-
1052
- #: ../views/form.php:7
1053
- msgid "Show up to"
1054
- msgstr "Zeige bis zu:"
1055
-
1056
- #: ../views/form.php:8
1057
- msgid "posts"
1058
- msgstr "Beiträge"
1059
-
1060
- #: ../views/form.php:12
1061
- msgid "Sort posts by"
1062
- msgstr "Sortiere Beiträge nach:"
1063
-
1064
- #: ../views/form.php:14
1065
- msgid "Comments"
1066
- msgstr "Kommentaren"
1067
-
1068
- #: ../views/form.php:15
1069
- msgid "Total views"
1070
- msgstr "Zahl der Aufrufe"
1071
-
1072
- #: ../views/form.php:16
1073
- msgid "Avg. daily views"
1074
- msgstr "Durchschn. tägl. Aufrufe"
1075
-
1076
- #: ../views/form.php:22
1077
- msgid "Filters"
1078
- msgstr "Filter:"
1079
-
1080
- #: ../views/form.php:24
1081
- msgid "Time Range"
1082
- msgstr "Zeitspanne:"
1083
-
1084
- #: ../views/form.php:34
1085
- msgid "Post type(s)"
1086
- msgstr "Post-Type(s):"
1087
-
1088
- #: ../views/form.php:37
1089
- msgid "Post(s) ID(s) to exclude"
1090
- msgstr "Post-ID(s), die ausgeschlossen werden:"
1091
-
1092
- #: ../views/form.php:40
1093
- msgid "Category(ies) ID(s)"
1094
- msgstr "Kategorie(n)-ID(s):"
1095
-
1096
- #: ../views/form.php:43
1097
- msgid "Author(s) ID(s)"
1098
- msgstr "Autor(en)-ID(s):"
1099
-
1100
- #: ../views/form.php:48
1101
- msgid "Posts settings"
1102
- msgstr "Einstellungen für Beiträge"
1103
-
1104
- #: ../views/form.php:52
1105
- msgid "Display post rating"
1106
- msgstr "Zeige Bewertung"
1107
-
1108
- #: ../views/form.php:55
1109
- msgid "Shorten title"
1110
- msgstr "Kürze den Titel"
1111
-
1112
- #: ../views/form.php:58
1113
- msgid "Shorten title to"
1114
- msgstr "Kürze den Titel auf"
1115
-
1116
- #: ../views/form.php:59 ../views/form.php:69
1117
- msgid "characters"
1118
- msgstr "Buchstaben"
1119
-
1120
- #: ../views/form.php:60 ../views/form.php:70
1121
- msgid "words"
1122
- msgstr "Wörter"
1123
-
1124
- #: ../views/form.php:63
1125
- msgid "Display post excerpt"
1126
- msgstr "Zeige Auszug"
1127
-
1128
- #: ../views/form.php:66
1129
- msgid "Keep text format and links"
1130
- msgstr "Behalte Textformat und Links bei"
1131
-
1132
- #: ../views/form.php:67
1133
- msgid "Excerpt length"
1134
- msgstr "Länge des Auszugs:"
1135
-
1136
- #: ../views/form.php:73
1137
- msgid "Display post thumbnail"
1138
- msgstr "Zeige Vorschaubild"
1139
-
1140
- #: ../views/form.php:76
1141
- msgid "Width"
1142
- msgstr "Breite:"
1143
-
1144
- #: ../views/form.php:77 ../views/form.php:80
1145
- msgid "px"
1146
- msgstr "px"
1147
-
1148
- #: ../views/form.php:79
1149
- msgid "Height"
1150
- msgstr "Höhe:"
1151
-
1152
- #: ../views/form.php:85
1153
- msgid "Stats Tag settings"
1154
- msgstr "Einstellungen des Statistik-Tags"
1155
-
1156
- #: ../views/form.php:87
1157
- msgid "Display comment count"
1158
- msgstr "Zeige Anzahl Kommentare"
1159
-
1160
- #: ../views/form.php:89
1161
- msgid "Display views"
1162
- msgstr "Zeige Aufrufe"
1163
-
1164
- #: ../views/form.php:91
1165
- msgid "Display author"
1166
- msgstr "Zeige Autor"
1167
-
1168
- #: ../views/form.php:93
1169
- msgid "Display date"
1170
- msgstr "Zeige Datum"
1171
-
1172
- #: ../views/form.php:96
1173
- msgid "Date Format"
1174
- msgstr "Datumsformat"
1175
-
1176
- #: ../views/form.php:98
1177
- msgid "WordPress Date Format"
1178
- msgstr "Datumsformat WordPress"
1179
-
1180
- #: ../views/form.php:105
1181
- msgid "Display category"
1182
- msgstr "Zeige Kategorie"
1183
-
1184
- #: ../views/form.php:109
1185
- msgid "HTML Markup settings"
1186
- msgstr "Einstellungen des HTML-Codes"
1187
-
1188
- #: ../views/form.php:111
1189
- msgid "Use custom HTML Markup"
1190
- msgstr "Verwende nutzerdefinierten HTML-Code"
1191
-
1192
- #: ../views/form.php:114
1193
- msgid "Before / after title"
1194
- msgstr "Vor / nach dem Titel:"
1195
-
1196
- #: ../views/form.php:117
1197
- msgid "Before / after Popular Posts"
1198
- msgstr "Vor / nach Beliebte Beiträge:"
1199
-
1200
- #: ../views/form.php:120
1201
- msgid "Post HTML Markup"
1202
- msgstr "Zeige HTML-Code"
1203
-
1204
- #: ../wordpress-popular-posts.php:276
1205
- msgid "The most Popular Posts on your blog."
1206
- msgstr "Die beliebtesten Beiträge deines Blogs."
1207
-
1208
- #: ../wordpress-popular-posts.php:433
1209
- msgid ""
1210
- "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1211
- "the <em>id</em> attribute on before_widget (see <a href=\"http://codex."
1212
- "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1213
- "\"nofollow\">register_sidebar</a> for more)."
1214
- msgstr ""
1215
-
1216
- #: ../wordpress-popular-posts.php:658
1217
- msgid "Upload"
1218
- msgstr "Hochladen"
1219
-
1220
- #: ../wordpress-popular-posts.php:1032
1221
- #, php-format
1222
- msgid ""
1223
- "Your PHP installation is too old. WordPress Popular Posts requires at least "
1224
- "PHP version %1$s to function correctly. Please contact your hosting provider "
1225
- "and ask them to upgrade PHP to %1$s or higher."
1226
- msgstr ""
1227
- "Deine PHP-Version ist zu alt. Das Plugin\"WordPress Popular Posts\" benötigt "
1228
- "mindestens PHP-Version %1$s für die einwandfreie Funktion. Bitte nehme "
1229
- "Kontakt mit deinem Hosting-Provider auf und bitte ihn, PHP auf v%1$s oder "
1230
- "höher zu aktualisieren."
1231
-
1232
- #: ../wordpress-popular-posts.php:1039
1233
- #, php-format
1234
- msgid ""
1235
- "Your WordPress version is too old. WordPress Popular Posts requires at least "
1236
- "WordPress version %1$s to function correctly. Please update your blog via "
1237
- "Dashboard &gt; Update."
1238
- msgstr ""
1239
- "Deine WordPress-Version ist zu alt. Das Plugin WordPress Popular Posts "
1240
- "benötigt mindestens Version %1$s. Bitte aktualisiere WordPress via Dashboard "
1241
- "&gt; Aktualisieren."
1242
-
1243
- #: ../wordpress-popular-posts.php:1064
1244
- #, php-format
1245
- msgid ""
1246
- "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</"
1247
- "strong>.</p></div>"
1248
- msgstr ""
1249
- "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> wurde <strong>deaktiviert</"
1250
- "strong>.</p></div>"
1251
-
1252
- #: ../wordpress-popular-posts.php:1124
1253
- msgid "Success! The cache table has been cleared!"
1254
- msgstr "Erfolg: Die Cache-Tabelle wurde geleert!"
1255
-
1256
- #: ../wordpress-popular-posts.php:1126
1257
- msgid "Error: cache table does not exist."
1258
- msgstr "Fehler: Cache-Tabelle ist nicht vorhanden."
1259
-
1260
- #: ../wordpress-popular-posts.php:1133
1261
- msgid "Success! All data have been cleared!"
1262
- msgstr "Erfolg: Alle Daten wurden gelöscht!"
1263
-
1264
- #: ../wordpress-popular-posts.php:1135
1265
- msgid "Error: one or both data tables are missing."
1266
- msgstr "Fehler: Eine oder beide Tabellen fehlen."
1267
-
1268
- #: ../wordpress-popular-posts.php:1138 ../wordpress-popular-posts.php:1176
1269
- msgid "Invalid action."
1270
- msgstr "Ungültige Aktion."
1271
-
1272
- #: ../wordpress-popular-posts.php:1141 ../wordpress-popular-posts.php:1179
1273
- msgid ""
1274
- "Sorry, you do not have enough permissions to do this. Please contact the "
1275
- "site administrator for support."
1276
- msgstr ""
1277
- "Du hast nicht die erforderlichen Rechte um das zu tun. Bitte wende dich an "
1278
- "den Administrator für weitere Hilfe."
1279
-
1280
- #: ../wordpress-popular-posts.php:1171
1281
- #, fuzzy
1282
- msgid "Success! All files have been deleted!"
1283
- msgstr "Erfolg: Alle Daten wurden gelöscht!"
1284
-
1285
- #: ../wordpress-popular-posts.php:1173
1286
- msgid "The thumbnail cache is already empty!"
1287
- msgstr ""
1288
-
1289
- #: ../wordpress-popular-posts.php:1696
1290
- msgid "Sorry. No data so far."
1291
- msgstr "Noch keine Daten vorhanden."
1292
-
1293
- #: ../wordpress-popular-posts.php:2156
1294
- #, php-format
1295
- msgid "1 comment"
1296
- msgid_plural "%s comments"
1297
- msgstr[0] "1 Kommentar"
1298
- msgstr[1] "%s Kommentare"
1299
-
1300
- #: ../wordpress-popular-posts.php:2168
1301
- #, php-format
1302
- msgid "1 view per day"
1303
- msgid_plural "%s views per day"
1304
- msgstr[0] "1 Aufruf pro Tag"
1305
- msgstr[1] "%s Aufrufe pro Tag"
1306
-
1307
- #: ../wordpress-popular-posts.php:2174
1308
- #, php-format
1309
- msgid "1 view"
1310
- msgid_plural "%s views"
1311
- msgstr[0] "1 Aufruf"
1312
- msgstr[1] "%s Aufrufe"
1313
-
1314
- #: ../wordpress-popular-posts.php:2186
1315
- #, php-format
1316
- msgid "by %s"
1317
- msgstr "von %s"
1318
-
1319
- #: ../wordpress-popular-posts.php:2192
1320
- #, php-format
1321
- msgid "posted on %s"
1322
- msgstr "veröffentlicht am %s"
1323
-
1324
- #: ../wordpress-popular-posts.php:2200
1325
- #, php-format
1326
- msgid "under %s"
1327
- msgstr "in %s"
1328
-
1329
- #~ msgid ""
1330
- #~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() "
1331
- #~ "and the [wpp] shortcode\"."
1332
- #~ msgstr ""
1333
- #~ "Bitte schlage nach bei \"Liste der gültigen Parameter von wpp_gewt-"
1334
- #~ "mostpopular() und des [wpp]-Shortcodes\"."
1335
-
1336
- #~ msgid ""
1337
- #~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] "
1338
- #~ "shortcode"
1339
- #~ msgstr ""
1340
- #~ "Liste der gültigen Parameter von wpp_get-mostpopular() und des [wpp]-"
1341
- #~ "Shortcodes"
1342
-
1343
- #~ msgid ""
1344
- #~ "These parameters can be used by both the template tag "
1345
- #~ "wpp_get_most_popular() and the shortcode [wpp]."
1346
- #~ msgstr ""
1347
- #~ "Diese Parameter können sowohl im Template-Tag wpp_get_most_popular() als "
1348
- #~ "auch im Shortcode [wpp] eingesetzt werden."
1349
-
1350
- #~ msgid "Preview"
1351
- #~ msgstr "Vorschau"
1352
-
1353
- #~ msgid "Excerpt Properties"
1354
- #~ msgstr "Eigenschaften des Auszugs"
1355
-
1356
- #~ msgid "Thumbnail settings"
1357
- #~ msgstr "Einstellungen für die Vorschaubilder"
1358
-
1359
- #~ msgid ""
1360
- #~ "Here you will find a handy group of options to tweak Wordpress Popular "
1361
- #~ "Posts."
1362
- #~ msgstr ""
1363
- #~ "Hier findest du einen überschaubaren Bereich an Einstellungen, um "
1364
- #~ "Wordpress Popular Posts zu optimieren."
1365
-
1366
- #, fuzzy
1367
- #~ msgid "Popular Posts links behavior"
1368
- #~ msgstr "Aktualisierungsintervall der Liste"
1369
-
1370
- #~ msgid "Views logging behavior"
1371
- #~ msgstr "Zählverhalten"
1372
-
1373
- #~ msgid "Wordpress Popular Posts Stylesheet"
1374
- #~ msgstr "Wordpress Popular Posts Stylesheet"
1375
-
1376
- #~ msgid "Data tools"
1377
- #~ msgstr "Datenwerkzeuge"
1378
-
1379
- #~ msgid "Popular posts listing refresh interval"
1380
- #~ msgstr "Aktualisierungsintervall der Liste"
1381
-
1382
- #~ msgid "Frequently Asked Questions"
1383
- #~ msgstr "Häufig gestellte Fragen"
1384
-
1385
- #~ msgid "Sets the opening tag for each item on the list"
1386
- #~ msgstr "Bestimmt den öffnenden Tag für jeden Listeneintrag"
1387
-
1388
- #~ msgid "Sets the closing tag for each item on the list"
1389
- #~ msgstr "Bestimmt den schließenden Tag für jeden Listeneintrag"
1390
-
1391
- #~ msgid ""
1392
- #~ "If set, this option will allow you to decide the order of the contents "
1393
- #~ "within each item on the list."
1394
- #~ msgstr ""
1395
- #~ "Falls gesetzt, kannst du die Reihenfolge der Einträge in der Liste "
1396
- #~ "bestimmen."
1397
-
1398
- #~ msgid ""
1399
- #~ "If set, you can decide the order of each content inside a single item on "
1400
- #~ "the list. For example, setting it to \"{title}: {summary}\" would output "
1401
- #~ "something like \"Your Post Title: summary here\". This attribute requires "
1402
- #~ "do_pattern to be true."
1403
- #~ msgstr ""
1404
- #~ "Falls gesetzt, kannst du die Reihenfolge des Inhalts innerhalbs eines "
1405
- #~ "einzelnen Listeneintrags einstellen. Zum Beispiel zeigt \"{title}: "
1406
- #~ "{summary}\" (ohne Anführungszeichen) sowas wie \"Überschrift: Text des "
1407
- #~ "Auszugs\" an. Dieses Attribut erfordert, dass do_pattern auf 1 (true) "
1408
- #~ "gesetzt ist."
1409
-
1410
- #~ msgid "Available tags"
1411
- #~ msgstr "Verfügbare Tags"
1412
-
1413
- #~ msgid "Rate it"
1414
- #~ msgstr "Bewerte es"
1415
-
1416
- #~ msgid "on the official Plugin Directory!"
1417
- #~ msgstr "im offiziellen Plugin-Verzeichnis!"
1418
-
1419
- #~ msgid "Do you love this plugin?"
1420
- #~ msgstr "Magst du dieses Plugin?"
1421
-
1422
- #~ msgid "Buy me a beer!"
1423
- #~ msgstr "Spende mir ein Bier!"
1424
-
1425
- #~ msgid "comments"
1426
- #~ msgstr "Komentare"
1427
-
1428
- #~ msgid "views per day"
1429
- #~ msgstr "Aufrufe pro Tag"
1430
-
1431
- #~ msgid "views"
1432
- #~ msgstr "Aufrufe"
1433
-
1434
- #~ msgid "by"
1435
- #~ msgstr "von"
1436
-
1437
- #~ msgid "What does \"Use content formatting tags\" do?"
1438
- #~ msgstr "Was macht \"Verwende textformatierende Tags\"?"
1439
-
1440
- #~ msgid "Before / after each post:"
1441
- #~ msgstr "Vor / nach jedem Beitrag:"
1442
-
1443
- #~ msgid "Use content formatting tags"
1444
- #~ msgstr "Verwende textformatierende Tags"
1445
-
1446
- #~ msgid "Content format:"
1447
- #~ msgstr "Inhaltsformat:"
1448
-
1449
- #~ msgid "Wordpress Popular Posts Stats"
1450
- #~ msgstr "Wordpress Popular Posts Statistik"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Wordpress Popular Posts\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-06 18:07-0430\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
8
+ "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
9
+ "Language: de_DE\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.7.1\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPath-1: ..\n"
20
+
21
+ #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
22
+ #: ../views/admin.php:74
23
+ msgid "Settings saved."
24
+ msgstr "Einstellungen gespeichert"
25
+
26
+ #: ../views/admin.php:40
27
+ msgid "Please provide the name of your custom field."
28
+ msgstr "Gebe einen Namen für das benutzerdefinierte Feld an."
29
+
30
+ #: ../views/admin.php:80
31
+ msgid ""
32
+ "Any changes made to WPP's default stylesheet will be lost after every plugin "
33
+ "update. In order to prevent this from happening, please copy the wpp.css "
34
+ "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
35
+ "theme's directory"
36
+ msgstr ""
37
+
38
+ #: ../views/admin.php:95
39
+ #, fuzzy
40
+ msgid ""
41
+ "This operation will delete all entries from WordPress Popular Posts' cache "
42
+ "table and cannot be undone."
43
+ msgstr ""
44
+ "Alle Einträge im Cache werden gelöscht und können nicht mehr wieder "
45
+ "hergestellt werden."
46
+
47
+ #: ../views/admin.php:95 ../views/admin.php:103 ../views/admin.php:111
48
+ msgid "Do you want to continue?"
49
+ msgstr "Möchtest du fortfahren?"
50
+
51
+ #: ../views/admin.php:103
52
+ msgid ""
53
+ "This operation will delete all stored info from WordPress Popular Posts' "
54
+ "data tables and cannot be undone."
55
+ msgstr ""
56
+ "Alle gespeicherten Daten von WordPress Popular Posts werden gelöscht und "
57
+ "können nicht wieder hergestellt werden."
58
+
59
+ #: ../views/admin.php:111
60
+ #, fuzzy
61
+ msgid "This operation will delete all cached thumbnails and cannot be undone."
62
+ msgstr ""
63
+ "Alle Einträge im Cache werden gelöscht und können nicht mehr wieder "
64
+ "hergestellt werden."
65
+
66
+ #: ../views/admin.php:145
67
+ msgid "Stats"
68
+ msgstr "Statistiken"
69
+
70
+ #: ../views/admin.php:146
71
+ msgid "Tools"
72
+ msgstr "Werkzeuge"
73
+
74
+ #: ../views/admin.php:147 ../views/admin.php:735
75
+ msgid "Parameters"
76
+ msgstr "Parameter"
77
+
78
+ #: ../views/admin.php:148
79
+ msgid "FAQ"
80
+ msgstr "Häufige Fragen und Antworten"
81
+
82
+ #: ../views/admin.php:149
83
+ msgid "About"
84
+ msgstr "Über"
85
+
86
+ #: ../views/admin.php:160
87
+ msgid ""
88
+ "Click on each tab to see what are the most popular entries on your blog in "
89
+ "the last 24 hours, this week, last 30 days or all time since WordPress "
90
+ "Popular Posts was installed."
91
+ msgstr ""
92
+ "Klicke auf jeden Reiter, um die beliebtesten Beiträge deines Blogs von den "
93
+ "letzten 24 Stunden, dieser Woche, den letzten 30 Tagen oder des gesamten "
94
+ "Zeitraums seit der Installation von WordPress Popular Posts zu sehen."
95
+
96
+ #: ../views/admin.php:166
97
+ msgid "Order by comments"
98
+ msgstr "Sortiert nach Kommentaren"
99
+
100
+ #: ../views/admin.php:167
101
+ msgid "Order by views"
102
+ msgstr "Sortiert nach Seitenaufrufen"
103
+
104
+ #: ../views/admin.php:168
105
+ msgid "Order by avg. daily views"
106
+ msgstr "Sortierte nach durchschn. Tagesaufrufen"
107
+
108
+ #: ../views/admin.php:170
109
+ msgid "Post type"
110
+ msgstr "Post-Type"
111
+
112
+ #: ../views/admin.php:171
113
+ msgid "Limit"
114
+ msgstr "Max. aufzulistende Einträge:"
115
+
116
+ #: ../views/admin.php:173 ../views/admin.php:267 ../views/admin.php:354
117
+ #: ../views/admin.php:391
118
+ msgid "Apply"
119
+ msgstr "Anwenden"
120
+
121
+ #: ../views/admin.php:176 ../views/form.php:32
122
+ msgid "Display only posts published within the selected Time Range"
123
+ msgstr ""
124
+
125
+ #: ../views/admin.php:183 ../views/form.php:26
126
+ msgid "Last 24 hours"
127
+ msgstr "Letzte 24 Stunden"
128
+
129
+ #: ../views/admin.php:184 ../views/form.php:27
130
+ msgid "Last 7 days"
131
+ msgstr "Letzte 7 Tage"
132
+
133
+ #: ../views/admin.php:185 ../views/form.php:28
134
+ msgid "Last 30 days"
135
+ msgstr "Letzte 30 Tage"
136
+
137
+ #: ../views/admin.php:186 ../views/form.php:29
138
+ msgid "All-time"
139
+ msgstr "Allzeithoch"
140
+
141
+ #: ../views/admin.php:208
142
+ msgid "Thumbnails"
143
+ msgstr "Vorschaubilder"
144
+
145
+ #: ../views/admin.php:213
146
+ msgid "Default thumbnail"
147
+ msgstr "Standardvorschaubild"
148
+
149
+ #: ../views/admin.php:218
150
+ msgid "Upload thumbnail"
151
+ msgstr "Vorschaubild hochladen"
152
+
153
+ #: ../views/admin.php:220
154
+ msgid ""
155
+ "How-to: upload (or select) an image, set Size to Full and click on Upload. "
156
+ "After it's done, hit on Apply to save changes"
157
+ msgstr ""
158
+ "Anleitung: ein Bild hochladen (oder aus existierenden wählen) und "
159
+ "\"vollständige Größe\" einstellen. Anschließend \"Anwenden\" anklicken."
160
+
161
+ #: ../views/admin.php:224
162
+ msgid "Pick image from"
163
+ msgstr "Wähle Bildquelle"
164
+
165
+ #: ../views/admin.php:227
166
+ msgid "Featured image"
167
+ msgstr "Beitragsbild"
168
+
169
+ #: ../views/admin.php:228
170
+ msgid "First image on post"
171
+ msgstr "Erstes Bild im Beitrag"
172
+
173
+ #: ../views/admin.php:229
174
+ msgid "Custom field"
175
+ msgstr "Benutzerdefiniertes Feld"
176
+
177
+ #: ../views/admin.php:232
178
+ #, fuzzy
179
+ msgid "Tell WordPress Popular Posts where it should get thumbnails from"
180
+ msgstr "Woher kommen die Vorschaubilder?"
181
+
182
+ #: ../views/admin.php:236
183
+ msgid "Custom field name"
184
+ msgstr "Name des benutzerdefiniertes Feldes"
185
+
186
+ #: ../views/admin.php:242
187
+ msgid "Resize image from Custom field?"
188
+ msgstr "Bild aus benutzerdefiniertem Feld skalieren?"
189
+
190
+ #: ../views/admin.php:245
191
+ msgid "No, I will upload my own thumbnail"
192
+ msgstr "Nein, ich lade mein eigenes Vorschaubild hoch"
193
+
194
+ #: ../views/admin.php:246
195
+ msgid "Yes"
196
+ msgstr "Ja"
197
+
198
+ #: ../views/admin.php:257
199
+ #, fuzzy
200
+ msgid "Empty image cache"
201
+ msgstr "Cache leeren"
202
+
203
+ #: ../views/admin.php:258
204
+ #, fuzzy
205
+ msgid "Use this button to clear WPP's thumbnails cache"
206
+ msgstr ""
207
+ "Nutze diese Schaltfläche, um die Cache-Tabelle von Wordpress Popular Posts "
208
+ "zu leeren."
209
+
210
+ #: ../views/admin.php:276
211
+ msgid "Data"
212
+ msgstr "Daten"
213
+
214
+ #: ../views/admin.php:281
215
+ msgid "Log views from"
216
+ msgstr "Erfasse Aufrufe"
217
+
218
+ #: ../views/admin.php:284
219
+ msgid "Visitors only"
220
+ msgstr "von jedem außer eingeloggten Benutzern"
221
+
222
+ #: ../views/admin.php:285
223
+ msgid "Logged-in users only"
224
+ msgstr "nur von eingeloggten Benutzern"
225
+
226
+ #: ../views/admin.php:286
227
+ msgid "Everyone"
228
+ msgstr "von jedem"
229
+
230
+ #: ../views/admin.php:292
231
+ msgid "Ajaxify widget"
232
+ msgstr "Widget via Ajax"
233
+
234
+ #: ../views/admin.php:295 ../views/admin.php:335 ../views/admin.php:382
235
+ msgid "Disabled"
236
+ msgstr "Deaktiviert"
237
+
238
+ #: ../views/admin.php:296 ../views/admin.php:336 ../views/admin.php:381
239
+ msgid "Enabled"
240
+ msgstr "Aktiviert"
241
+
242
+ #: ../views/admin.php:300
243
+ msgid ""
244
+ "If you are using a caching plugin such as WP Super Cache, enabling this "
245
+ "feature will keep the popular list from being cached by it"
246
+ msgstr ""
247
+ "Falls du ein Cache-Plugin wie z. B. WP Super Cache verwendest, verhindert "
248
+ "das Aktivieren, dass die Liste nicht gecachet wird und stets aktuell ist."
249
+
250
+ #: ../views/admin.php:304
251
+ msgid "WPP Cache Expiry Policy"
252
+ msgstr ""
253
+
254
+ #: ../views/admin.php:307
255
+ msgid "Never cache"
256
+ msgstr ""
257
+
258
+ #: ../views/admin.php:308
259
+ msgid "Enable caching"
260
+ msgstr ""
261
+
262
+ #: ../views/admin.php:312
263
+ msgid ""
264
+ "Sets WPP's cache expiration time. WPP can cache the popular list for a "
265
+ "specified amount of time. Recommended for large / high traffic sites"
266
+ msgstr ""
267
+
268
+ #: ../views/admin.php:316
269
+ msgid "Refresh cache every"
270
+ msgstr ""
271
+
272
+ #: ../views/admin.php:320
273
+ msgid "Minute(s)"
274
+ msgstr ""
275
+
276
+ #: ../views/admin.php:321
277
+ msgid "Hour(s)"
278
+ msgstr "Stunde(n)"
279
+
280
+ #: ../views/admin.php:322
281
+ msgid "Day(s)"
282
+ msgstr "Tag(e)"
283
+
284
+ #: ../views/admin.php:323
285
+ msgid "Week(s)"
286
+ msgstr "Woche(n)"
287
+
288
+ #: ../views/admin.php:324
289
+ msgid "Month(s)"
290
+ msgstr "Monat(e)"
291
+
292
+ #: ../views/admin.php:325
293
+ msgid "Year(s)"
294
+ msgstr "Jahr(e)"
295
+
296
+ #: ../views/admin.php:328
297
+ msgid "Really? That long?"
298
+ msgstr "Wirklich? So lang?"
299
+
300
+ #: ../views/admin.php:332
301
+ msgid "Data Sampling"
302
+ msgstr ""
303
+
304
+ #: ../views/admin.php:340
305
+ #, php-format
306
+ msgid ""
307
+ "By default, WordPress Popular Posts stores in database every single visit "
308
+ "your site receives. For small / medium sites this is generally OK, but on "
309
+ "large / high traffic sites the constant writing to the database may have an "
310
+ "impact on performance. With data sampling, WordPress Popular Posts will "
311
+ "store only a subset of your traffic and report on the tendencies detected in "
312
+ "that sample set (for more on <em>data sampling</em>, please <a href=\"%1$s\" "
313
+ "target=\"_blank\">read here</a>)"
314
+ msgstr ""
315
+
316
+ #: ../views/admin.php:344
317
+ msgid "Sample Rate"
318
+ msgstr ""
319
+
320
+ #: ../views/admin.php:348
321
+ #, php-format
322
+ msgid ""
323
+ "A sampling rate of %d is recommended for large / high traffic sites. For "
324
+ "lower traffic sites, you should lower the value"
325
+ msgstr ""
326
+
327
+ #: ../views/admin.php:363
328
+ msgid "Miscellaneous"
329
+ msgstr "Sonstiges"
330
+
331
+ #: ../views/admin.php:368
332
+ msgid "Open links in"
333
+ msgstr "Links öffnen in"
334
+
335
+ #: ../views/admin.php:371
336
+ msgid "Current window"
337
+ msgstr "aktuellem Fenster"
338
+
339
+ #: ../views/admin.php:372
340
+ msgid "New tab/window"
341
+ msgstr "Neuem Tab/Fenster"
342
+
343
+ #: ../views/admin.php:378
344
+ msgid "Use plugin's stylesheet"
345
+ msgstr "Stylesheet des Plugins benutzen"
346
+
347
+ #: ../views/admin.php:385
348
+ msgid ""
349
+ "By default, the plugin includes a stylesheet called wpp.css which you can "
350
+ "use to style your popular posts listing. If you wish to use your own "
351
+ "stylesheet or do not want it to have it included in the header section of "
352
+ "your site, use this."
353
+ msgstr ""
354
+ "Als Voreinstellung schließt dieses Plugin eine Stylesheet-Datei wpp.css ein. "
355
+ "Du kannst mit ihr die Auflistung beliebter Beiträge gestalten. Falls du dein "
356
+ "eigenes Stylesheet verwenden oder die wpp.css nicht im HEAD-Abschnitt "
357
+ "einbinden willst, deaktiviere die Einbindung."
358
+
359
+ #: ../views/admin.php:402
360
+ msgid ""
361
+ "WordPress Popular Posts maintains data in two separate tables: one for "
362
+ "storing the most popular entries on a daily basis (from now on, \"cache\"), "
363
+ "and another one to keep the All-time data (from now on, \"historical data\" "
364
+ "or just \"data\"). If for some reason you need to clear the cache table, or "
365
+ "even both historical and cache tables, please use the buttons below to do so."
366
+ msgstr ""
367
+ "WordPress Popular Posts speichert Daten in zwei getrennten Tabellen: eine "
368
+ "für die beliebtesten Beiträge der letzten 30 Tage (auch: \"Cache-Tabelle\"), "
369
+ "und die andere für die Allzeit-Daten (auch \"historische Daten\" oder "
370
+ "einfach \"Datentabelle\"). Solltest du aus verschiedenen Gründen die Cache-"
371
+ "Tabelle leeren wollen oder sowohl die Datentabelle als auch die Cache-"
372
+ "Tabelle, nutze die folgenden Schaltflächen."
373
+
374
+ #: ../views/admin.php:403
375
+ msgid "Empty cache"
376
+ msgstr "Cache leeren"
377
+
378
+ #: ../views/admin.php:403
379
+ msgid "Use this button to manually clear entries from WPP cache only"
380
+ msgstr ""
381
+ "Nutze diese Schaltfläche, um die Cache-Tabelle von Wordpress Popular Posts "
382
+ "zu leeren."
383
+
384
+ #: ../views/admin.php:404
385
+ msgid "Clear all data"
386
+ msgstr "Alle Daten löschen"
387
+
388
+ #: ../views/admin.php:404
389
+ msgid "Use this button to manually clear entries from all WPP data tables"
390
+ msgstr ""
391
+ "Nutze diese Schaltfläche, um alle Einträge in der Datentabelle von Wordpress "
392
+ "Popular Posts zu löschen."
393
+
394
+ #: ../views/admin.php:411
395
+ #, php-format
396
+ msgid ""
397
+ "With the following parameters you can customize the popular posts list when "
398
+ "using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or "
399
+ "the <a href=\"%2$s\">[wpp] shortcode</a>."
400
+ msgstr ""
401
+
402
+ #: ../views/admin.php:419
403
+ msgid "Parameter"
404
+ msgstr "Parameter"
405
+
406
+ #: ../views/admin.php:420 ../views/admin.php:734
407
+ msgid "What it does "
408
+ msgstr "Was es macht"
409
+
410
+ #: ../views/admin.php:421
411
+ msgid "Possible values"
412
+ msgstr "Erlaubte Werte"
413
+
414
+ #: ../views/admin.php:422
415
+ msgid "Defaults to"
416
+ msgstr "Voreinstellung"
417
+
418
+ #: ../views/admin.php:423 ../views/admin.php:736
419
+ msgid "Example"
420
+ msgstr "Beispiel"
421
+
422
+ #: ../views/admin.php:429
423
+ msgid "Sets a heading for the list"
424
+ msgstr "Bestimmt die Überschrift der Liste"
425
+
426
+ #: ../views/admin.php:430 ../views/admin.php:437 ../views/admin.php:444
427
+ #: ../views/admin.php:479 ../views/admin.php:486 ../views/admin.php:493
428
+ #: ../views/admin.php:500 ../views/admin.php:591 ../views/admin.php:605
429
+ #: ../views/admin.php:612
430
+ msgid "Text string"
431
+ msgstr "Zeichenkette"
432
+
433
+ #: ../views/admin.php:431
434
+ msgid "Popular Posts"
435
+ msgstr "Beliebteste Beiträge"
436
+
437
+ #: ../views/admin.php:436
438
+ msgid "Set the opening tag for the heading of the list"
439
+ msgstr "Bestimmt den öffnenden Tag der Listenüberschrift"
440
+
441
+ #: ../views/admin.php:443
442
+ msgid "Set the closing tag for the heading of the list"
443
+ msgstr "Bestimmt den schließenden Tag der Listenüberschrift"
444
+
445
+ #: ../views/admin.php:450
446
+ msgid "Sets the maximum number of popular posts to be shown on the listing"
447
+ msgstr "Bestimmt die maximale Anzahl der beliebten Beiträge in der Auflistung"
448
+
449
+ #: ../views/admin.php:451 ../views/admin.php:507 ../views/admin.php:521
450
+ #: ../views/admin.php:542 ../views/admin.php:549
451
+ msgid "Positive integer"
452
+ msgstr "Positive Ganzzahl"
453
+
454
+ #: ../views/admin.php:457
455
+ msgid ""
456
+ "Tells WordPress Popular Posts to retrieve the most popular entries within "
457
+ "the time range specified by you"
458
+ msgstr ""
459
+ "Weist WordPress Popular Posts an, die beliebtesten Beiträge innerhalt der "
460
+ "eingestellten Zeitspanne anzuzeigen."
461
+
462
+ #: ../views/admin.php:464
463
+ msgid ""
464
+ "Tells WordPress Popular Posts to retrieve the most popular entries published "
465
+ "within the time range specified by you"
466
+ msgstr ""
467
+ "Weist WordPress Popular Posts an, die beliebtesten Beiträge innerhalt der "
468
+ "eingestellten Zeitspanne anzuzeigen."
469
+
470
+ #: ../views/admin.php:471
471
+ msgid "Sets the sorting option of the popular posts"
472
+ msgstr "Bestimmt die Auswahl der Reihenfolge der beliebten Beiträge"
473
+
474
+ #: ../views/admin.php:472
475
+ msgid "(for average views per day)"
476
+ msgstr "(für durchschn. Aufrufe pro Tag)"
477
+
478
+ #: ../views/admin.php:478
479
+ msgid "Defines the type of posts to show on the listing"
480
+ msgstr "Bestimmt die Art der Dokumente, die aufgelistet werden"
481
+
482
+ #: ../views/admin.php:485
483
+ msgid ""
484
+ "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
485
+ "form the listing."
486
+ msgstr ""
487
+ "Falls gesetzt, zeigt WordPress Popular Posts die Beiträge und Seiten anhand "
488
+ "ihrer angegebener ID(s) in der Liste nicht an."
489
+
490
+ #: ../views/admin.php:487 ../views/admin.php:494 ../views/admin.php:501
491
+ msgid "None"
492
+ msgstr "nichts"
493
+
494
+ #: ../views/admin.php:492
495
+ msgid ""
496
+ "If set, WordPress Popular Posts will retrieve all entries that belong to the "
497
+ "specified category(ies) ID(s). If a minus sign is used, the category(ies) "
498
+ "will be excluded instead."
499
+ msgstr ""
500
+ "Falls gesetzt, zeigt WordPress Popular Posts alle Einträge, die den "
501
+ "angegebenen Kategorie-IDs zugeordnet sind, an. Ein Minus-Zeichen vor der ID "
502
+ "schließt die Beiträge dieser Kategorie aus."
503
+
504
+ #: ../views/admin.php:499
505
+ msgid ""
506
+ "If set, WordPress Popular Posts will retrieve all entries created by "
507
+ "specified author(s) ID(s)."
508
+ msgstr ""
509
+ "Falls gesetzt, wird WordPress Popular Posts alle Einträge anhand angegebener "
510
+ "Autor(en)-ID(s) ausgeben."
511
+
512
+ #: ../views/admin.php:506
513
+ msgid ""
514
+ "If set, WordPress Popular Posts will shorten each post title to \"n\" "
515
+ "characters whenever possible"
516
+ msgstr ""
517
+ "Falls gesetzt, kürzt WordPress Popular Posts jeden Titel, wenn möglich, auf "
518
+ "\"n\" Zeichen."
519
+
520
+ #: ../views/admin.php:513
521
+ msgid ""
522
+ "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
523
+ "words instead of characters"
524
+ msgstr ""
525
+ "Falls gesetzt, kürzt WordPress Popular Posts jeden Titel, wenn möglich, auf "
526
+ "\"n\" Wörter anstatt Zeichen."
527
+
528
+ #: ../views/admin.php:520
529
+ msgid ""
530
+ "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
531
+ "characters long from the content of each post listed as popular"
532
+ msgstr ""
533
+ "Falls gesetzt, zeigt WordPress Popular Posts einen Auszug von \"n\" "
534
+ "Buchstaben Länge bei jedem Beitrag an."
535
+
536
+ #: ../views/admin.php:527
537
+ msgid ""
538
+ "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
539
+ "italic, etc) and hyperlinks found in the excerpt"
540
+ msgstr ""
541
+ "Falls gesetzt, behält WordPress Popular Posts die formatierenden Tags (fett, "
542
+ "kursiv usw.) und die Links im Auszug bei."
543
+
544
+ #: ../views/admin.php:534
545
+ msgid ""
546
+ "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
547
+ "instead of characters"
548
+ msgstr ""
549
+ "Falls gesetzt, kürzt WordPress Popular Posts jeden Auszug, wenn möglich, auf "
550
+ "\"n\" Wörter anstatt Zeichen."
551
+
552
+ #: ../views/admin.php:541
553
+ msgid ""
554
+ "If set, and if your current server configuration allows it, you will be able "
555
+ "to display thumbnails of your posts. This attribute sets the width for "
556
+ "thumbnails"
557
+ msgstr ""
558
+ "Falls gesetzt und es die aktuelle Server-Konfiguration erlaubt, ist dir die "
559
+ "Anzeige von Vorschaubildern deiner Beiträge möglich. Dieses Attribut "
560
+ "bestimmt die Breite der Vorschaubilder."
561
+
562
+ #: ../views/admin.php:548
563
+ msgid ""
564
+ "If set, and if your current server configuration allows it, you will be able "
565
+ "to display thumbnails of your posts. This attribute sets the height for "
566
+ "thumbnails"
567
+ msgstr ""
568
+ "Falls gesetzt und es die aktuelle Server-Konfiguration erlaubt, ist dir die "
569
+ "Anzeige von Vorschaubildern deiner Beiträge möglich. Dieses Attribut "
570
+ "bestimmt die Höhe der Vorschaubilder."
571
+
572
+ #: ../views/admin.php:555
573
+ msgid ""
574
+ "If set, and if the WP-PostRatings plugin is installed and enabled on your "
575
+ "blog, WordPress Popular Posts will show how your visitors are rating your "
576
+ "entries"
577
+ msgstr ""
578
+ "Falls gesetzt und wenn das Plugin WP-PostRatings in Deinem Blog läuft, zeigt "
579
+ "WordPress Popular Posts die Bewertungen der Nutzer an."
580
+
581
+ #: ../views/admin.php:562
582
+ msgid ""
583
+ "If set, WordPress Popular Posts will show how many comments each popular "
584
+ "post has got until now"
585
+ msgstr ""
586
+ "Falls gesetzt, zeigt WordPress Popular Posts an, wie viele Kommentare jeder "
587
+ "Beitrag bis jetzt erhielt."
588
+
589
+ #: ../views/admin.php:569
590
+ msgid ""
591
+ "If set, WordPress Popular Posts will show how many views each popular post "
592
+ "has got since it was installed"
593
+ msgstr ""
594
+ "Falls gesetzt, zeigt WordPress Popular Posts an, wie viele Aufrufe jeder "
595
+ "Beitrag seit der Installation erhielt."
596
+
597
+ #: ../views/admin.php:576
598
+ msgid ""
599
+ "If set, WordPress Popular Posts will show who published each popular post on "
600
+ "the list"
601
+ msgstr ""
602
+ "Falls gesetzt, zeigt WordPress Popular Posts an, wer welchen Beitrag "
603
+ "veröffentlicht hat."
604
+
605
+ #: ../views/admin.php:583
606
+ msgid ""
607
+ "If set, WordPress Popular Posts will display the date when each popular post "
608
+ "on the list was published"
609
+ msgstr ""
610
+ "Falls gesetzt, zeigt WordPress Popular Posts das Veröffentlichungsdatum "
611
+ "jeden Beitrags in der Liste an."
612
+
613
+ #: ../views/admin.php:590
614
+ msgid "Sets the date format"
615
+ msgstr "Bestimmt das Datumsformat"
616
+
617
+ #: ../views/admin.php:597
618
+ msgid "If set, WordPress Popular Posts will display the category"
619
+ msgstr "Falls gesetzt, zeigt WordPress Popular Posts die Kategorie an"
620
+
621
+ #: ../views/admin.php:604
622
+ msgid "Sets the opening tag for the listing"
623
+ msgstr "Bestimmt das öffnende Tag der Auflistung"
624
+
625
+ #: ../views/admin.php:611
626
+ msgid "Sets the closing tag for the listing"
627
+ msgstr "Bestimmt das schließende Tag der Auflistung"
628
+
629
+ #: ../views/admin.php:618
630
+ msgid "Sets the HTML structure of each post"
631
+ msgstr "Setzt die HTML-Struktur jeden Beitrags"
632
+
633
+ #: ../views/admin.php:619
634
+ msgid "Text string, custom HTML"
635
+ msgstr "Zeichenkette, benutzerdefiniertes HTML"
636
+
637
+ #: ../views/admin.php:619
638
+ msgid "Available Content Tags"
639
+ msgstr "Verfügbare Content-Tags"
640
+
641
+ #: ../views/admin.php:619
642
+ msgid "displays thumbnail linked to post/page"
643
+ msgstr "zeigt verlinktes Vorschaubild des Beitrags/der Seite an"
644
+
645
+ #: ../views/admin.php:619
646
+ msgid "displays thumbnail image without linking to post/page"
647
+ msgstr ""
648
+
649
+ #: ../views/admin.php:619
650
+ msgid "displays linked post/page title"
651
+ msgstr "zeigt den verlinkten Titel des Beitrags/der Seiten an"
652
+
653
+ #: ../views/admin.php:619
654
+ msgid ""
655
+ "displays post/page excerpt, and requires excerpt_length to be greater than 0"
656
+ msgstr ""
657
+ "zeigt den Auszug (excerpt) des Beitrags/der Seite an, erfordert "
658
+ "excerpt_length größer als 0"
659
+
660
+ #: ../views/admin.php:619
661
+ msgid "displays the default stats tags"
662
+ msgstr "zeigt die standard&shy;mäßigen Statistik-Tags an"
663
+
664
+ #: ../views/admin.php:619
665
+ msgid ""
666
+ "displays post/page current rating, requires WP-PostRatings installed and "
667
+ "enabled"
668
+ msgstr ""
669
+ "zeigt die aktuelle Bewertung des Beitrags/der Seite an, erfordert das "
670
+ "installierte und aktivierte Plugin WP-PostRatings"
671
+
672
+ #: ../views/admin.php:619
673
+ msgid ""
674
+ "displays post/page current rating as an integer, requires WP-PostRatings "
675
+ "installed and enabled"
676
+ msgstr ""
677
+ "zeigt die aktuelle Bewertung des Beitrags/der Seite an, erfordert das "
678
+ "installierte und aktivierte Plugin WP-PostRatings"
679
+
680
+ #: ../views/admin.php:619
681
+ msgid "outputs the URL of the post/page"
682
+ msgstr "gibt die URL des Beitrags/der Seite aus"
683
+
684
+ #: ../views/admin.php:619
685
+ msgid "displays post/page title, no link"
686
+ msgstr "zeigt den Titel des Beitrags/der Seite an, ohne Link"
687
+
688
+ #: ../views/admin.php:619
689
+ msgid "displays linked author name, requires stats_author=1"
690
+ msgstr "zeigt den verlinkten Autoren&shy;namen an, erfordert stats_author=1"
691
+
692
+ #: ../views/admin.php:619
693
+ msgid "displays linked category name, requires stats_category=1"
694
+ msgstr ""
695
+ "zeigt den verlinkten Kategorien&shy;namen an, erfordert stats_category=1"
696
+
697
+ #: ../views/admin.php:619
698
+ msgid "displays views count only, no text"
699
+ msgstr "zeigt nur die Anzahl an, ohne Text"
700
+
701
+ #: ../views/admin.php:619
702
+ msgid "displays comments count only, no text, requires stats_comments=1"
703
+ msgstr ""
704
+ "zeigt nur die Anzahl der Kom&shy;men&shy;tare an, ohne Text, erfordert "
705
+ "stats_comment=1"
706
+
707
+ #: ../views/admin.php:619
708
+ msgid "displays post/page date, requires stats_date=1"
709
+ msgstr ""
710
+
711
+ #: ../views/admin.php:631
712
+ msgid "What does \"Title\" do?"
713
+ msgstr "Was macht \"Titel\"?"
714
+
715
+ #: ../views/admin.php:634
716
+ msgid ""
717
+ "It allows you to show a heading for your most popular posts listing. If left "
718
+ "empty, no heading will be displayed at all."
719
+ msgstr ""
720
+ "Ermöglicht dir, eine Überschrift für die Auflistung anzugeben. Falls leer "
721
+ "belassen, wird keine Überschrift angezeigt."
722
+
723
+ #: ../views/admin.php:637
724
+ msgid "What is Time Range for?"
725
+ msgstr "Für was steht die Zeitspanne?"
726
+
727
+ #: ../views/admin.php:639
728
+ msgid ""
729
+ "It will tell WordPress Popular Posts to retrieve all posts with most views / "
730
+ "comments within the selected time range."
731
+ msgstr ""
732
+ "Weist WordPress Popular Posts an, alle Beiträge mit den meisten Aufrufen "
733
+ "bzw. Kommentaren innerhalb der eingestellten Zeitspanne anzuzeigen."
734
+
735
+ #: ../views/admin.php:642
736
+ msgid "What is \"Sort post by\" for?"
737
+ msgstr "Für was steht \"Sortiere Beiträge nach\"?"
738
+
739
+ #: ../views/admin.php:644
740
+ msgid ""
741
+ "It allows you to decide whether to order your popular posts listing by total "
742
+ "views, comments, or average views per day."
743
+ msgstr ""
744
+ "Ermöglicht dir zu entscheiden, ob die Listeneinträge nach absoluter Anzahl "
745
+ "der Aufrufe, Kommentare oder durchschnittlichen Aufrufen pro Tag geordnet "
746
+ "werden."
747
+
748
+ #: ../views/admin.php:647
749
+ msgid "What does \"Display post rating\" do?"
750
+ msgstr "Was macht \"Zeige Bewertung\"?"
751
+
752
+ #: ../views/admin.php:649
753
+ msgid ""
754
+ "If checked, WordPress Popular Posts will show how your readers are rating "
755
+ "your most popular posts. This feature requires having WP-PostRatings plugin "
756
+ "installed and enabled on your blog for it to work."
757
+ msgstr ""
758
+ "Falls aktiviert, zeigt WordPress Popular Posts an, wie deine Leser deine "
759
+ "beliebtesten Beiträge bewertet haben. Diese Funktion erfordert die "
760
+ "Installation und Aktivierung des Plugins WP-PostRatings."
761
+
762
+ #: ../views/admin.php:652
763
+ msgid "What does \"Shorten title\" do?"
764
+ msgstr "Was macht \"Kürze den Titel\"?"
765
+
766
+ #: ../views/admin.php:654
767
+ msgid ""
768
+ "If checked, all posts titles will be shortened to \"n\" characters/words. A "
769
+ "new \"Shorten title to\" option will appear so you can set it to whatever "
770
+ "you like."
771
+ msgstr ""
772
+ "Falls aktiviert, werden alle Titel auf \"n\" Zeichen gekürzt. Eine neue "
773
+ "Auswahl \"Kürze den Titel zu\" wird erscheinen, mit der du die Titellänge "
774
+ "setzen kannst."
775
+
776
+ #: ../views/admin.php:657
777
+ msgid "What does \"Display post excerpt\" do?"
778
+ msgstr "Was macht \"Zeige Auszug\"?"
779
+
780
+ #: ../views/admin.php:659
781
+ msgid ""
782
+ "If checked, WordPress Popular Posts will also include a small extract of "
783
+ "your posts in the list. Similarly to the previous option, you will be able "
784
+ "to decide how long the post excerpt should be."
785
+ msgstr ""
786
+ "Falls aktiviert, zeigt WordPress Popular Posts zusätzlich einen kurzen "
787
+ "Auszug Deines Beitrags in der Liste an. Wie bei der vorhergehenden Auswahl "
788
+ "ist es dir möglich, die Länge des Auszugs einzustellen."
789
+
790
+ #: ../views/admin.php:662
791
+ msgid "What does \"Keep text format and links\" do?"
792
+ msgstr "Was macht \"Behalte Textformat und Links bei\"?"
793
+
794
+ #: ../views/admin.php:664
795
+ msgid ""
796
+ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular "
797
+ "Posts will keep the styling tags (eg. bold, italic, etc) that were found in "
798
+ "the excerpt. Hyperlinks will remain intact, too."
799
+ msgstr ""
800
+ "Falls aktiviert und wenn die Darstellung von Auszügen aktiviert ist, behält "
801
+ "WordPress Popular Posts die formatierenden Tags (z. B. fett, kursiv usw.) im "
802
+ "Auszug. Auch Links bleiben unverändert."
803
+
804
+ #: ../views/admin.php:667
805
+ msgid "What is \"Post type\" for?"
806
+ msgstr "Für was steht \"Post-Type\"?"
807
+
808
+ #: ../views/admin.php:669
809
+ msgid ""
810
+ "This filter allows you to decide which post types to show on the listing. By "
811
+ "default, it will retrieve only posts and pages (which should be fine for "
812
+ "most cases)."
813
+ msgstr ""
814
+ "Dieser Filter erlaubt dir zu entscheiden, welche Post-Types aufgelistet "
815
+ "werden. Per Voreinstellung werden nur Seiten und Beiträge angezeigt (was in "
816
+ "den meisten Fällen ausreicht)."
817
+
818
+ #: ../views/admin.php:672
819
+ msgid "What is \"Category(ies) ID(s)\" for?"
820
+ msgstr "Für was steht \"Kategorie(n)-ID(s)\"?"
821
+
822
+ #: ../views/admin.php:674
823
+ msgid ""
824
+ "This filter allows you to select which categories should be included or "
825
+ "excluded from the listing. A negative sign in front of the category ID "
826
+ "number will exclude posts belonging to it from the list, for example. You "
827
+ "can specify more than one ID with a comma separated list."
828
+ msgstr ""
829
+ "Dieser Filter erlaubt dir auszuwählen, welche Kategorien in der Auflistung "
830
+ "eingeschlossen oder ausgeschlossen werden sollten. Ein Minus-Zeichen vor "
831
+ "einer Kategorien-ID schließt Beiträge, die die ID zugewiesen bekamen, von "
832
+ "der Liste aus. du kannst mehr als eine ID, mit Kommas getrennt, angeben."
833
+
834
+ #: ../views/admin.php:677
835
+ msgid "What is \"Author(s) ID(s)\" for?"
836
+ msgstr "Für was steht \"Autor(en)-ID(s)\"?"
837
+
838
+ #: ../views/admin.php:679
839
+ msgid ""
840
+ "Just like the Category filter, this one lets you filter posts by author ID. "
841
+ "You can specify more than one ID with a comma separated list."
842
+ msgstr ""
843
+ "Wie beim Kategorienfilter kannst du auch Beiträge nach Autoren filtern. Du "
844
+ "kannst mehr als eine Autoren-ID, getrennt durch Kommas, angeben."
845
+
846
+ #: ../views/admin.php:682
847
+ msgid "What does \"Display post thumbnail\" do?"
848
+ msgstr "Was macht \"Zeige Vorschaubild\"?"
849
+
850
+ #: ../views/admin.php:684
851
+ msgid ""
852
+ "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail "
853
+ "of each post. You can set up the source of the thumbnail via Settings - "
854
+ "WordPress Popular Posts - Tools."
855
+ msgstr ""
856
+ "Falls aktiviert, versucht WordPress Popular Posts, das Vorschaubild von "
857
+ "jedem Beitrag darzustellen. Du kannst die Quelle des Vorschaubildes unter "
858
+ "\"Werkzeuge\" einstellen."
859
+
860
+ #: ../views/admin.php:687
861
+ msgid "What does \"Display comment count\" do?"
862
+ msgstr "Was macht \"Zeige Anzahl Kommentare\"?"
863
+
864
+ #: ../views/admin.php:689
865
+ msgid ""
866
+ "If checked, WordPress Popular Posts will display how many comments each "
867
+ "popular post has got in the selected Time Range."
868
+ msgstr ""
869
+ "Falls aktiviert, zeigt WordPress Popular Posts an, wie viele Kommentare "
870
+ "jeder beliebte Beitrag in der eingestellten Zeitspanne erhielt."
871
+
872
+ #: ../views/admin.php:692
873
+ msgid "What does \"Display views\" do?"
874
+ msgstr "Was macht \"Zeige Aufrufe\"?"
875
+
876
+ #: ../views/admin.php:694
877
+ msgid ""
878
+ "If checked, WordPress Popular Posts will show how many pageviews a single "
879
+ "post has gotten in the selected Time Range."
880
+ msgstr ""
881
+ "Falls aktiviert, zeigt WordPress Popular Posts an, wie viele Seitenaufrufe "
882
+ "jeder einzelne Beitrag in der eingestellten Zeitspanne erhielt."
883
+
884
+ #: ../views/admin.php:697
885
+ msgid "What does \"Display author\" do?"
886
+ msgstr "Was macht \"Zeige Autor\"?"
887
+
888
+ #: ../views/admin.php:699
889
+ msgid ""
890
+ "If checked, WordPress Popular Posts will display the name of the author of "
891
+ "each entry listed."
892
+ msgstr ""
893
+ "Falls aktiviert, zeigt WordPress Popular Posts den Autorennamen in jedem "
894
+ "Listeneintrag an."
895
+
896
+ #: ../views/admin.php:702
897
+ msgid "What does \"Display date\" do?"
898
+ msgstr "Was macht \"Zeige Datum\"?"
899
+
900
+ #: ../views/admin.php:704
901
+ msgid ""
902
+ "If checked, WordPress Popular Posts will display the date when each popular "
903
+ "posts was published."
904
+ msgstr ""
905
+ "Falls aktiviert, zeigt WordPress Popular Posts das Veröffentlichungsdatum "
906
+ "jeden Beitrags an."
907
+
908
+ #: ../views/admin.php:707
909
+ msgid "What does \"Display category\" do?"
910
+ msgstr "Was macht \"Zeige Kategorie\"?"
911
+
912
+ #: ../views/admin.php:709
913
+ msgid ""
914
+ "If checked, WordPress Popular Posts will display the category of each post."
915
+ msgstr ""
916
+ "Falls aktiviert, zeigt WordPress Popular Posts den Kategorie in jedem "
917
+ "Listeneintrag an."
918
+
919
+ #: ../views/admin.php:712
920
+ msgid "What does \"Use custom HTML Markup\" do?"
921
+ msgstr "Was macht \"Verwende benutzerdefinierten HTML-Code\"?"
922
+
923
+ #: ../views/admin.php:714
924
+ msgid ""
925
+ "If checked, you will be able to customize the HTML markup of your popular "
926
+ "posts listing. For example, you can decide whether to wrap your posts in an "
927
+ "unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is "
928
+ "for you!"
929
+ msgstr ""
930
+ "Falls aktiviert, ist es dir möglich, eigenen HTML-Code in der Auflistung "
931
+ "einzusetzen. Du kannst z. B. bestimmen, ob die Einträge in einer "
932
+ "ungeordneten Liste, geordneten Liste, einem DIV oder was auch immer gesetzt "
933
+ "werden. Wenn du HTML und CSS kannst, ist diese Auswahl dein Freund."
934
+
935
+ #: ../views/admin.php:717
936
+ msgid "What are \"Content Tags\"?"
937
+ msgstr "Was sind \"Content-Tags\"?"
938
+
939
+ #: ../views/admin.php:719
940
+ #, fuzzy, php-format
941
+ msgid ""
942
+ "Content Tags are codes to display a variety of items on your popular posts "
943
+ "custom HTML structure. For example, setting it to \"{title}: "
944
+ "{summary}\" (without the quotes) would display \"Post title: excerpt of the "
945
+ "post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank"
946
+ "\">Parameters</a> section."
947
+ msgstr ""
948
+ "Content-Tags sind Code-Schnipsel, um verschiedene Angaben über die "
949
+ "beliebtesten Beiträge in deiner selbst definierten HTML-Struktur anzuzeigen. "
950
+ "Zum Beispiel zeigt \"{title}: {summary}\" (ohne die Anführungszeichen) "
951
+ "\"Überschrift: Auszug des Beitrags\" an. Für weitere Content-Tags siehe "
952
+ "\"Liste der gültigen Parameter von wpp_gewt-mostpopular() und des [wpp]-"
953
+ "Shortcodes\"."
954
+
955
+ #: ../views/admin.php:722
956
+ msgid "What are \"Template Tags\"?"
957
+ msgstr "Was sind \"Template-Tags\"?"
958
+
959
+ #: ../views/admin.php:724
960
+ msgid ""
961
+ "Template Tags are simply php functions that allow you to perform certain "
962
+ "actions. For example, WordPress Popular Posts currently supports two "
963
+ "different template tags: wpp_get_mostpopular() and wpp_get_views()."
964
+ msgstr ""
965
+ "Template-Tags sind schlicht und einfach PHP-Funktionen, die bestimmten "
966
+ "Aktionen ausführen. Zum Beispiel unterstützt WordPress Popular Posts zwei "
967
+ "verschiedene Template-Tags: wpp_get_mostpopular() und wpp_get_views()."
968
+
969
+ #: ../views/admin.php:727
970
+ msgid "What are the template tags that WordPress Popular Posts supports?"
971
+ msgstr "Welche Template-Tags unterstützt WordPress Popular Posts?"
972
+
973
+ #: ../views/admin.php:729
974
+ msgid ""
975
+ "The following are the template tags supported by WordPress Popular Posts"
976
+ msgstr "Die folgenden Template-Tags unterstützt WordPress Popular Posts"
977
+
978
+ #: ../views/admin.php:733
979
+ msgid "Template tag"
980
+ msgstr "Template-Tag"
981
+
982
+ #: ../views/admin.php:742
983
+ #, fuzzy, php-format
984
+ msgid ""
985
+ "Similar to the widget functionality, this tag retrieves the most popular "
986
+ "posts on your blog. This function also accepts <a href=\"%1$s\">parameters</"
987
+ "a> so you can customize your popular listing, but these are not required."
988
+ msgstr ""
989
+ "Ähnlich wie das Widget zeigt dieser Tag die beliebtesten Beiträge Deines "
990
+ "Blogs an. Diese Funktion akzeptiert auch Parameter, so dass du die "
991
+ "Auflistung nach deinen Vorstellungen setzen kannst, aber sie sind sind "
992
+ "erforderlich."
993
+
994
+ #: ../views/admin.php:743
995
+ #, php-format
996
+ msgid ""
997
+ "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete "
998
+ "list of attributes."
999
+ msgstr ""
1000
+
1001
+ #: ../views/admin.php:748
1002
+ msgid ""
1003
+ "Displays the number of views of a single post. Post ID is required or it "
1004
+ "will return false."
1005
+ msgstr ""
1006
+ "Zeigt die Anzahl der Aufrufe eines einzelnen Beitrags an. Die Post-ID ist "
1007
+ "erforderlich, andersfalls wird false zurückgegeben."
1008
+
1009
+ #: ../views/admin.php:749
1010
+ msgid "Post ID"
1011
+ msgstr "Post-ID"
1012
+
1013
+ #: ../views/admin.php:756
1014
+ msgid "What are \"shortcodes\"?"
1015
+ msgstr "Was sind \"Shortcodes\"?"
1016
+
1017
+ #: ../views/admin.php:758
1018
+ #, php-format
1019
+ msgid ""
1020
+ "Shortcodes are similar to BB Codes, these allow us to call a php function by "
1021
+ "simply typing something like [shortcode]. With WordPress Popular Posts, the "
1022
+ "shortcode [wpp] will let you insert a list of the most popular posts in "
1023
+ "posts content and pages too! For more information about shortcodes, please "
1024
+ "visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page."
1025
+ msgstr ""
1026
+ "Shortcodes sind vergleichbar mit BB-Codes. Sie erlauben uns, eine PHP-"
1027
+ "Funktion aufzurufen durch einen einfachen Text wie [shortcode]. Der "
1028
+ "Shortcode [wpp] fügt die Liste der beliebtesten Beiträge in den Text sowohl "
1029
+ "von Beiträgen als auch Seiten ein. Für mehr Informationen über Shortcodes "
1030
+ "besuche <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a>."
1031
+
1032
+ #: ../views/admin.php:766
1033
+ #, php-format
1034
+ msgid "About WordPress Popular Posts %s"
1035
+ msgstr "Über WordPress Popular Posts %s"
1036
+
1037
+ #: ../views/admin.php:767
1038
+ msgid "This version includes the following changes"
1039
+ msgstr "Diese Version enthält die folgenden Änderungen"
1040
+
1041
+ #: ../views/admin.php:797
1042
+ msgid "Do you like this plugin?"
1043
+ msgstr "Gefällt dir dieses Plugin?"
1044
+
1045
+ #: ../views/admin.php:804
1046
+ msgid ""
1047
+ "Each donation motivates me to keep releasing free stuff for the WordPress "
1048
+ "community!"
1049
+ msgstr ""
1050
+ "Jede Spende motiviert mich, der WordPress-Gemeinschaft nützliches Zeugs "
1051
+ "weiterhin kostenlos zur Verfügung zu stellen!"
1052
+
1053
+ #: ../views/admin.php:805
1054
+ #, php-format
1055
+ msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
1056
+ msgstr ""
1057
+
1058
+ #: ../views/admin.php:809
1059
+ msgid "Need help?"
1060
+ msgstr "Brauchen Sie Hilfe?"
1061
+
1062
+ #: ../views/admin.php:810
1063
+ #, php-format
1064
+ msgid ""
1065
+ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions "
1066
+ "and feedback."
1067
+ msgstr ""
1068
+
1069
+ #: ../views/admin.php:811
1070
+ msgid "Let's make this plugin even better!"
1071
+ msgstr ""
1072
+
1073
+ #: ../views/form.php:2
1074
+ msgid "Title"
1075
+ msgstr "Titel:"
1076
+
1077
+ #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24
1078
+ #: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43
1079
+ #: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63
1080
+ #: ../views/form.php:66 ../views/form.php:73 ../views/form.php:103
1081
+ #: ../views/form.php:105 ../views/form.php:107 ../views/form.php:109
1082
+ #: ../views/form.php:121 ../views/form.php:127
1083
+ msgid "What is this?"
1084
+ msgstr "Was ist das?"
1085
+
1086
+ #: ../views/form.php:7
1087
+ msgid "Show up to"
1088
+ msgstr "Zeige bis zu:"
1089
+
1090
+ #: ../views/form.php:8
1091
+ msgid "posts"
1092
+ msgstr "Beiträge"
1093
+
1094
+ #: ../views/form.php:12
1095
+ msgid "Sort posts by"
1096
+ msgstr "Sortiere Beiträge nach:"
1097
+
1098
+ #: ../views/form.php:14
1099
+ msgid "Comments"
1100
+ msgstr "Kommentaren"
1101
+
1102
+ #: ../views/form.php:15
1103
+ msgid "Total views"
1104
+ msgstr "Zahl der Aufrufe"
1105
+
1106
+ #: ../views/form.php:16
1107
+ msgid "Avg. daily views"
1108
+ msgstr "Durchschn. tägl. Aufrufe"
1109
+
1110
+ #: ../views/form.php:22
1111
+ msgid "Filters"
1112
+ msgstr "Filter:"
1113
+
1114
+ #: ../views/form.php:24
1115
+ msgid "Time Range"
1116
+ msgstr "Zeitspanne:"
1117
+
1118
+ #: ../views/form.php:34
1119
+ msgid "Post type(s)"
1120
+ msgstr "Post-Type(s):"
1121
+
1122
+ #: ../views/form.php:37
1123
+ msgid "Post(s) ID(s) to exclude"
1124
+ msgstr "Post-ID(s), die ausgeschlossen werden:"
1125
+
1126
+ #: ../views/form.php:40
1127
+ msgid "Category(ies) ID(s)"
1128
+ msgstr "Kategorie(n)-ID(s):"
1129
+
1130
+ #: ../views/form.php:43
1131
+ msgid "Author(s) ID(s)"
1132
+ msgstr "Autor(en)-ID(s):"
1133
+
1134
+ #: ../views/form.php:48
1135
+ msgid "Posts settings"
1136
+ msgstr "Einstellungen für Beiträge"
1137
+
1138
+ #: ../views/form.php:52
1139
+ msgid "Display post rating"
1140
+ msgstr "Zeige Bewertung"
1141
+
1142
+ #: ../views/form.php:55
1143
+ msgid "Shorten title"
1144
+ msgstr "Kürze den Titel"
1145
+
1146
+ #: ../views/form.php:58
1147
+ msgid "Shorten title to"
1148
+ msgstr "Kürze den Titel auf"
1149
+
1150
+ #: ../views/form.php:59 ../views/form.php:69
1151
+ msgid "characters"
1152
+ msgstr "Buchstaben"
1153
+
1154
+ #: ../views/form.php:60 ../views/form.php:70
1155
+ msgid "words"
1156
+ msgstr "Wörter"
1157
+
1158
+ #: ../views/form.php:63
1159
+ msgid "Display post excerpt"
1160
+ msgstr "Zeige Auszug"
1161
+
1162
+ #: ../views/form.php:66
1163
+ msgid "Keep text format and links"
1164
+ msgstr "Behalte Textformat und Links bei"
1165
+
1166
+ #: ../views/form.php:67
1167
+ msgid "Excerpt length"
1168
+ msgstr "Länge des Auszugs:"
1169
+
1170
+ #: ../views/form.php:73
1171
+ msgid "Display post thumbnail"
1172
+ msgstr "Zeige Vorschaubild"
1173
+
1174
+ #: ../views/form.php:76
1175
+ msgid "Use predefined size"
1176
+ msgstr ""
1177
+
1178
+ #: ../views/form.php:90
1179
+ msgid "Set size manually"
1180
+ msgstr ""
1181
+
1182
+ #: ../views/form.php:92
1183
+ msgid "Width"
1184
+ msgstr "Breite:"
1185
+
1186
+ #: ../views/form.php:93 ../views/form.php:96
1187
+ msgid "px"
1188
+ msgstr "px"
1189
+
1190
+ #: ../views/form.php:95
1191
+ msgid "Height"
1192
+ msgstr "Höhe:"
1193
+
1194
+ #: ../views/form.php:101
1195
+ msgid "Stats Tag settings"
1196
+ msgstr "Einstellungen des Statistik-Tags"
1197
+
1198
+ #: ../views/form.php:103
1199
+ msgid "Display comment count"
1200
+ msgstr "Zeige Anzahl Kommentare"
1201
+
1202
+ #: ../views/form.php:105
1203
+ msgid "Display views"
1204
+ msgstr "Zeige Aufrufe"
1205
+
1206
+ #: ../views/form.php:107
1207
+ msgid "Display author"
1208
+ msgstr "Zeige Autor"
1209
+
1210
+ #: ../views/form.php:109
1211
+ msgid "Display date"
1212
+ msgstr "Zeige Datum"
1213
+
1214
+ #: ../views/form.php:112
1215
+ msgid "Date Format"
1216
+ msgstr "Datumsformat"
1217
+
1218
+ #: ../views/form.php:114
1219
+ msgid "WordPress Date Format"
1220
+ msgstr "Datumsformat WordPress"
1221
+
1222
+ #: ../views/form.php:121
1223
+ msgid "Display category"
1224
+ msgstr "Zeige Kategorie"
1225
+
1226
+ #: ../views/form.php:125
1227
+ msgid "HTML Markup settings"
1228
+ msgstr "Einstellungen des HTML-Codes"
1229
+
1230
+ #: ../views/form.php:127
1231
+ msgid "Use custom HTML Markup"
1232
+ msgstr "Verwende nutzerdefinierten HTML-Code"
1233
+
1234
+ #: ../views/form.php:130
1235
+ msgid "Before / after title"
1236
+ msgstr "Vor / nach dem Titel:"
1237
+
1238
+ #: ../views/form.php:133
1239
+ msgid "Before / after Popular Posts"
1240
+ msgstr "Vor / nach Beliebte Beiträge:"
1241
+
1242
+ #: ../views/form.php:136
1243
+ msgid "Post HTML Markup"
1244
+ msgstr "Zeige HTML-Code"
1245
+
1246
+ #: ../wordpress-popular-posts.php:293
1247
+ msgid "The most Popular Posts on your blog."
1248
+ msgstr "Die beliebtesten Beiträge deines Blogs."
1249
+
1250
+ #: ../wordpress-popular-posts.php:476
1251
+ msgid ""
1252
+ "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1253
+ "the <em>id</em> attribute on before_widget (see <a href=\"http://codex."
1254
+ "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1255
+ "\"nofollow\">register_sidebar</a> for more)."
1256
+ msgstr ""
1257
+
1258
+ #: ../wordpress-popular-posts.php:720
1259
+ msgid "Upload"
1260
+ msgstr "Hochladen"
1261
+
1262
+ #: ../wordpress-popular-posts.php:1096
1263
+ #, php-format
1264
+ msgid ""
1265
+ "Your PHP installation is too old. WordPress Popular Posts requires at least "
1266
+ "PHP version %1$s to function correctly. Please contact your hosting provider "
1267
+ "and ask them to upgrade PHP to %1$s or higher."
1268
+ msgstr ""
1269
+ "Deine PHP-Version ist zu alt. Das Plugin\"WordPress Popular Posts\" benötigt "
1270
+ "mindestens PHP-Version %1$s für die einwandfreie Funktion. Bitte nehme "
1271
+ "Kontakt mit deinem Hosting-Provider auf und bitte ihn, PHP auf v%1$s oder "
1272
+ "höher zu aktualisieren."
1273
+
1274
+ #: ../wordpress-popular-posts.php:1103
1275
+ #, php-format
1276
+ msgid ""
1277
+ "Your WordPress version is too old. WordPress Popular Posts requires at least "
1278
+ "WordPress version %1$s to function correctly. Please update your blog via "
1279
+ "Dashboard &gt; Update."
1280
+ msgstr ""
1281
+ "Deine WordPress-Version ist zu alt. Das Plugin WordPress Popular Posts "
1282
+ "benötigt mindestens Version %1$s. Bitte aktualisiere WordPress via Dashboard "
1283
+ "&gt; Aktualisieren."
1284
+
1285
+ #: ../wordpress-popular-posts.php:1128
1286
+ #, php-format
1287
+ msgid ""
1288
+ "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</"
1289
+ "strong>.</p></div>"
1290
+ msgstr ""
1291
+ "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> wurde <strong>deaktiviert</"
1292
+ "strong>.</p></div>"
1293
+
1294
+ #: ../wordpress-popular-posts.php:1188
1295
+ msgid "Success! The cache table has been cleared!"
1296
+ msgstr "Erfolg: Die Cache-Tabelle wurde geleert!"
1297
+
1298
+ #: ../wordpress-popular-posts.php:1190
1299
+ msgid "Error: cache table does not exist."
1300
+ msgstr "Fehler: Cache-Tabelle ist nicht vorhanden."
1301
+
1302
+ #: ../wordpress-popular-posts.php:1197
1303
+ msgid "Success! All data have been cleared!"
1304
+ msgstr "Erfolg: Alle Daten wurden gelöscht!"
1305
+
1306
+ #: ../wordpress-popular-posts.php:1199
1307
+ msgid "Error: one or both data tables are missing."
1308
+ msgstr "Fehler: Eine oder beide Tabellen fehlen."
1309
+
1310
+ #: ../wordpress-popular-posts.php:1202 ../wordpress-popular-posts.php:1240
1311
+ msgid "Invalid action."
1312
+ msgstr "Ungültige Aktion."
1313
+
1314
+ #: ../wordpress-popular-posts.php:1205 ../wordpress-popular-posts.php:1243
1315
+ msgid ""
1316
+ "Sorry, you do not have enough permissions to do this. Please contact the "
1317
+ "site administrator for support."
1318
+ msgstr ""
1319
+ "Du hast nicht die erforderlichen Rechte um das zu tun. Bitte wende dich an "
1320
+ "den Administrator für weitere Hilfe."
1321
+
1322
+ #: ../wordpress-popular-posts.php:1235
1323
+ #, fuzzy
1324
+ msgid "Success! All files have been deleted!"
1325
+ msgstr "Erfolg: Alle Daten wurden gelöscht!"
1326
+
1327
+ #: ../wordpress-popular-posts.php:1237
1328
+ msgid "The thumbnail cache is already empty!"
1329
+ msgstr ""
1330
+
1331
+ #: ../wordpress-popular-posts.php:1771
1332
+ msgid "Sorry. No data so far."
1333
+ msgstr "Noch keine Daten vorhanden."
1334
+
1335
+ #: ../wordpress-popular-posts.php:2248
1336
+ #, php-format
1337
+ msgid "1 comment"
1338
+ msgid_plural "%s comments"
1339
+ msgstr[0] "1 Kommentar"
1340
+ msgstr[1] "%s Kommentare"
1341
+
1342
+ #: ../wordpress-popular-posts.php:2260
1343
+ #, php-format
1344
+ msgid "1 view per day"
1345
+ msgid_plural "%s views per day"
1346
+ msgstr[0] "1 Aufruf pro Tag"
1347
+ msgstr[1] "%s Aufrufe pro Tag"
1348
+
1349
+ #: ../wordpress-popular-posts.php:2266
1350
+ #, php-format
1351
+ msgid "1 view"
1352
+ msgid_plural "%s views"
1353
+ msgstr[0] "1 Aufruf"
1354
+ msgstr[1] "%s Aufrufe"
1355
+
1356
+ #: ../wordpress-popular-posts.php:2278
1357
+ #, php-format
1358
+ msgid "by %s"
1359
+ msgstr "von %s"
1360
+
1361
+ #: ../wordpress-popular-posts.php:2284
1362
+ #, php-format
1363
+ msgid "posted on %s"
1364
+ msgstr "veröffentlicht am %s"
1365
+
1366
+ #: ../wordpress-popular-posts.php:2292
1367
+ #, php-format
1368
+ msgid "under %s"
1369
+ msgstr "in %s"
1370
+
1371
+ #~ msgid "Listing refresh interval"
1372
+ #~ msgstr "Aktualisierungsintervall der Liste"
1373
+
1374
+ #~ msgid "Live"
1375
+ #~ msgstr "Echtzeit"
1376
+
1377
+ #~ msgid "Custom interval"
1378
+ #~ msgstr "Benutzerdefiniertes Intervall"
1379
+
1380
+ #~ msgid ""
1381
+ #~ "Sets how often the listing should be updated. For most sites the Live "
1382
+ #~ "option should be fine, however if you are experiencing slowdowns or your "
1383
+ #~ "blog gets a lot of visitors then you might want to change the refresh rate"
1384
+ #~ msgstr ""
1385
+ #~ "Stellt ein, wie oft die Liste aktualisiert wird. Für die meisten Websites "
1386
+ #~ "erreicht die Echtzeit-Einstellung gute Werte. Solltest du jedoch "
1387
+ #~ "Verlangsamungen feststellen oder deine Website erreicht viele Besucher, "
1388
+ #~ "solltest du die Aktualisierungsrate ändern."
1389
+
1390
+ #~ msgid "Refresh list every"
1391
+ #~ msgstr "Benutzerdefiniertes Intervall"
1392
+
1393
+ #~ msgid ""
1394
+ #~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() "
1395
+ #~ "and the [wpp] shortcode\"."
1396
+ #~ msgstr ""
1397
+ #~ "Bitte schlage nach bei \"Liste der gültigen Parameter von wpp_gewt-"
1398
+ #~ "mostpopular() und des [wpp]-Shortcodes\"."
1399
+
1400
+ #~ msgid ""
1401
+ #~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] "
1402
+ #~ "shortcode"
1403
+ #~ msgstr ""
1404
+ #~ "Liste der gültigen Parameter von wpp_get-mostpopular() und des [wpp]-"
1405
+ #~ "Shortcodes"
1406
+
1407
+ #~ msgid ""
1408
+ #~ "These parameters can be used by both the template tag "
1409
+ #~ "wpp_get_most_popular() and the shortcode [wpp]."
1410
+ #~ msgstr ""
1411
+ #~ "Diese Parameter können sowohl im Template-Tag wpp_get_most_popular() als "
1412
+ #~ "auch im Shortcode [wpp] eingesetzt werden."
1413
+
1414
+ #~ msgid "Preview"
1415
+ #~ msgstr "Vorschau"
1416
+
1417
+ #~ msgid "Excerpt Properties"
1418
+ #~ msgstr "Eigenschaften des Auszugs"
1419
+
1420
+ #~ msgid "Thumbnail settings"
1421
+ #~ msgstr "Einstellungen für die Vorschaubilder"
1422
+
1423
+ #~ msgid ""
1424
+ #~ "Here you will find a handy group of options to tweak Wordpress Popular "
1425
+ #~ "Posts."
1426
+ #~ msgstr ""
1427
+ #~ "Hier findest du einen überschaubaren Bereich an Einstellungen, um "
1428
+ #~ "Wordpress Popular Posts zu optimieren."
1429
+
1430
+ #, fuzzy
1431
+ #~ msgid "Popular Posts links behavior"
1432
+ #~ msgstr "Aktualisierungsintervall der Liste"
1433
+
1434
+ #~ msgid "Views logging behavior"
1435
+ #~ msgstr "Zählverhalten"
1436
+
1437
+ #~ msgid "Wordpress Popular Posts Stylesheet"
1438
+ #~ msgstr "Wordpress Popular Posts Stylesheet"
1439
+
1440
+ #~ msgid "Data tools"
1441
+ #~ msgstr "Datenwerkzeuge"
1442
+
1443
+ #~ msgid "Popular posts listing refresh interval"
1444
+ #~ msgstr "Aktualisierungsintervall der Liste"
1445
+
1446
+ #~ msgid "Frequently Asked Questions"
1447
+ #~ msgstr "Häufig gestellte Fragen"
1448
+
1449
+ #~ msgid "Sets the opening tag for each item on the list"
1450
+ #~ msgstr "Bestimmt den öffnenden Tag für jeden Listeneintrag"
1451
+
1452
+ #~ msgid "Sets the closing tag for each item on the list"
1453
+ #~ msgstr "Bestimmt den schließenden Tag für jeden Listeneintrag"
1454
+
1455
+ #~ msgid ""
1456
+ #~ "If set, this option will allow you to decide the order of the contents "
1457
+ #~ "within each item on the list."
1458
+ #~ msgstr ""
1459
+ #~ "Falls gesetzt, kannst du die Reihenfolge der Einträge in der Liste "
1460
+ #~ "bestimmen."
1461
+
1462
+ #~ msgid ""
1463
+ #~ "If set, you can decide the order of each content inside a single item on "
1464
+ #~ "the list. For example, setting it to \"{title}: {summary}\" would output "
1465
+ #~ "something like \"Your Post Title: summary here\". This attribute requires "
1466
+ #~ "do_pattern to be true."
1467
+ #~ msgstr ""
1468
+ #~ "Falls gesetzt, kannst du die Reihenfolge des Inhalts innerhalbs eines "
1469
+ #~ "einzelnen Listeneintrags einstellen. Zum Beispiel zeigt \"{title}: "
1470
+ #~ "{summary}\" (ohne Anführungszeichen) sowas wie \"Überschrift: Text des "
1471
+ #~ "Auszugs\" an. Dieses Attribut erfordert, dass do_pattern auf 1 (true) "
1472
+ #~ "gesetzt ist."
1473
+
1474
+ #~ msgid "Available tags"
1475
+ #~ msgstr "Verfügbare Tags"
1476
+
1477
+ #~ msgid "Rate it"
1478
+ #~ msgstr "Bewerte es"
1479
+
1480
+ #~ msgid "on the official Plugin Directory!"
1481
+ #~ msgstr "im offiziellen Plugin-Verzeichnis!"
1482
+
1483
+ #~ msgid "Do you love this plugin?"
1484
+ #~ msgstr "Magst du dieses Plugin?"
1485
+
1486
+ #~ msgid "Buy me a beer!"
1487
+ #~ msgstr "Spende mir ein Bier!"
1488
+
1489
+ #~ msgid "comments"
1490
+ #~ msgstr "Komentare"
1491
+
1492
+ #~ msgid "views per day"
1493
+ #~ msgstr "Aufrufe pro Tag"
1494
+
1495
+ #~ msgid "views"
1496
+ #~ msgstr "Aufrufe"
1497
+
1498
+ #~ msgid "by"
1499
+ #~ msgstr "von"
1500
+
1501
+ #~ msgid "What does \"Use content formatting tags\" do?"
1502
+ #~ msgstr "Was macht \"Verwende textformatierende Tags\"?"
1503
+
1504
+ #~ msgid "Before / after each post:"
1505
+ #~ msgstr "Vor / nach jedem Beitrag:"
1506
+
1507
+ #~ msgid "Use content formatting tags"
1508
+ #~ msgstr "Verwende textformatierende Tags"
1509
+
1510
+ #~ msgid "Content format:"
1511
+ #~ msgstr "Inhaltsformat:"
1512
+
1513
+ #~ msgid "Wordpress Popular Posts Stats"
1514
+ #~ msgstr "Wordpress Popular Posts Statistik"
lang/wordpress-popular-posts-es_ES.mo CHANGED
Binary file
lang/wordpress-popular-posts-es_ES.po CHANGED
@@ -1,1481 +1,1561 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Wordpress Popular Posts\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-23 16:54-0430\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
8
- "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
9
- "Language: es_ES\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-KeywordsList: __;_e;_n:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Generator: Poedit 1.6.9\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPath-1: ..\n"
20
-
21
- #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
22
- #: ../views/admin.php:69
23
- msgid "Settings saved."
24
- msgstr "Configuraci&oacute;n guardada."
25
-
26
- #: ../views/admin.php:40
27
- msgid "Please provide the name of your custom field."
28
- msgstr "Por favor indica el nombre de tu custom field."
29
-
30
- #: ../views/admin.php:75
31
- msgid ""
32
- "Any changes made to WPP's default stylesheet will be lost after every plugin "
33
- "update. In order to prevent this from happening, please copy the wpp.css "
34
- "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
35
- "theme's directory"
36
- msgstr ""
37
- "Cualquier cambio hecho a la hoja de estilos por defecto de WPP se "
38
- "perder&aacute; cada vez que el plugin se actualize. Para evitar esto, por "
39
- "favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
40
- "popular-posts/style) en la carpeta de tu tema actual."
41
-
42
- #: ../views/admin.php:90
43
- msgid ""
44
- "This operation will delete all entries from WordPress Popular Posts' cache "
45
- "table and cannot be undone."
46
- msgstr ""
47
- "Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
48
- "WordPress Popular Posts y no se puede deshacer."
49
-
50
- #: ../views/admin.php:90 ../views/admin.php:98 ../views/admin.php:106
51
- msgid "Do you want to continue?"
52
- msgstr "Deseas continuar?"
53
-
54
- #: ../views/admin.php:98
55
- msgid ""
56
- "This operation will delete all stored info from WordPress Popular Posts' "
57
- "data tables and cannot be undone."
58
- msgstr ""
59
- "Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
60
- "tablas de WordPress Popular Posts y no puede ser reversado."
61
-
62
- #: ../views/admin.php:106
63
- msgid "This operation will delete all cached thumbnails and cannot be undone."
64
- msgstr ""
65
- "Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
66
- "puede deshacer."
67
-
68
- #: ../views/admin.php:123
69
- msgid "Stats"
70
- msgstr "Estad&iacute;sticas"
71
-
72
- #: ../views/admin.php:124
73
- msgid "Tools"
74
- msgstr "Herramientas"
75
-
76
- #: ../views/admin.php:125 ../views/admin.php:689
77
- msgid "Parameters"
78
- msgstr "Par&aacute;metros"
79
-
80
- #: ../views/admin.php:126
81
- msgid "FAQ"
82
- msgstr "FAQ"
83
-
84
- #: ../views/admin.php:127
85
- msgid "About"
86
- msgstr "Acerca de"
87
-
88
- #: ../views/admin.php:138
89
- msgid ""
90
- "Click on each tab to see what are the most popular entries on your blog in "
91
- "the last 24 hours, this week, last 30 days or all time since WordPress "
92
- "Popular Posts was installed."
93
- msgstr ""
94
- "Haz clic en cada pesta&ntilde;a para ver las entradas m&aacute;s populares "
95
- "de tu blog en las &uacute;ltimas 24 horas, esta semana, los &uacute;ltimos "
96
- "30 d&iacute;as o de todos los tiempos desde que WordPress Popular Posts fue "
97
- "instalado."
98
-
99
- #: ../views/admin.php:144
100
- msgid "Order by comments"
101
- msgstr "Ordenar por comentarios"
102
-
103
- #: ../views/admin.php:145
104
- msgid "Order by views"
105
- msgstr "Ordenar por vistas"
106
-
107
- #: ../views/admin.php:146
108
- msgid "Order by avg. daily views"
109
- msgstr "Ordenar por average de vistas diarias"
110
-
111
- #: ../views/admin.php:148
112
- msgid "Post type"
113
- msgstr "Post type"
114
-
115
- #: ../views/admin.php:149
116
- msgid "Limit"
117
- msgstr "L&iacute;mite"
118
-
119
- #: ../views/admin.php:150 ../views/form.php:32
120
- msgid "Display only posts published within the selected Time Range"
121
- msgstr ""
122
- "Mostrar s&oacute;lo entradas publicadas en el Rango de Tiempo seleccionado"
123
-
124
- #: ../views/admin.php:152 ../views/admin.php:242 ../views/admin.php:308
125
- #: ../views/admin.php:345
126
- msgid "Apply"
127
- msgstr "Aplicar"
128
-
129
- #: ../views/admin.php:158 ../views/form.php:26
130
- msgid "Last 24 hours"
131
- msgstr "&Uacute;ltimas 24 horas"
132
-
133
- #: ../views/admin.php:159 ../views/form.php:27
134
- msgid "Last 7 days"
135
- msgstr "&Uacute;ltimos 7 d&iacute;as"
136
-
137
- #: ../views/admin.php:160 ../views/form.php:28
138
- msgid "Last 30 days"
139
- msgstr "&Uacute;ltimos 30 d&iacute;as"
140
-
141
- #: ../views/admin.php:161 ../views/form.php:29
142
- msgid "All-time"
143
- msgstr "Todos los tiempos"
144
-
145
- #: ../views/admin.php:183
146
- msgid "Thumbnails"
147
- msgstr "Miniaturas"
148
-
149
- #: ../views/admin.php:188
150
- msgid "Default thumbnail"
151
- msgstr "Miniatura por defecto"
152
-
153
- #: ../views/admin.php:193
154
- msgid "Upload thumbnail"
155
- msgstr "Subir miniatura"
156
-
157
- #: ../views/admin.php:195
158
- msgid ""
159
- "How-to: upload (or select) an image, set Size to Full and click on Upload. "
160
- "After it's done, hit on Apply to save changes"
161
- msgstr ""
162
- "Tutorial: sube (o selecciona) una imagen, selecciona Tama&ntilde;o Completo "
163
- "y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios"
164
-
165
- #: ../views/admin.php:199
166
- msgid "Pick image from"
167
- msgstr "Seleccionar imagen desde"
168
-
169
- #: ../views/admin.php:202
170
- msgid "Featured image"
171
- msgstr "Imagen destacada"
172
-
173
- #: ../views/admin.php:203
174
- msgid "First image on post"
175
- msgstr "Primera imagen de la entrada"
176
-
177
- #: ../views/admin.php:204
178
- msgid "Custom field"
179
- msgstr "Custom field"
180
-
181
- #: ../views/admin.php:207
182
- msgid "Tell WordPress Popular Posts where it should get thumbnails from"
183
- msgstr ""
184
- "Dile a WordPress Popular Posts de d&oacute;nde debe obtener las miniaturas"
185
-
186
- #: ../views/admin.php:211
187
- msgid "Custom field name"
188
- msgstr "Nombre del custom field"
189
-
190
- #: ../views/admin.php:217
191
- msgid "Resize image from Custom field?"
192
- msgstr "&iexcl;Ajustar la imagen del Custom field?"
193
-
194
- #: ../views/admin.php:220
195
- msgid "No, I will upload my own thumbnail"
196
- msgstr "No, subir&eacute; mi propia miniatura"
197
-
198
- #: ../views/admin.php:221
199
- msgid "Yes"
200
- msgstr "S&iacute;"
201
-
202
- #: ../views/admin.php:232
203
- msgid "Empty image cache"
204
- msgstr "Vaciar el cach&eacute; de im&aacute;genes"
205
-
206
- #: ../views/admin.php:233
207
- msgid "Use this button to clear WPP's thumbnails cache"
208
- msgstr ""
209
- "Utiliza este bot&oacute;n para vaciar el cach&eacute; de miniaturas de WPP"
210
-
211
- #: ../views/admin.php:251
212
- msgid "Data"
213
- msgstr "Datos"
214
-
215
- #: ../views/admin.php:256
216
- msgid "Log views from"
217
- msgstr "Registrar vistas de"
218
-
219
- #: ../views/admin.php:259
220
- msgid "Visitors only"
221
- msgstr "S&oacute;lo visitantes"
222
-
223
- #: ../views/admin.php:260
224
- msgid "Logged-in users only"
225
- msgstr "S&oacute;lo usuarios conectados"
226
-
227
- #: ../views/admin.php:261
228
- msgid "Everyone"
229
- msgstr "Todos"
230
-
231
- #: ../views/admin.php:267
232
- msgid "Ajaxify widget"
233
- msgstr "Usar Ajax con el widget"
234
-
235
- #: ../views/admin.php:270 ../views/admin.php:336
236
- msgid "Disabled"
237
- msgstr "Deshabilitado"
238
-
239
- #: ../views/admin.php:271 ../views/admin.php:335
240
- msgid "Enabled"
241
- msgstr "Habilitado"
242
-
243
- #: ../views/admin.php:275
244
- msgid ""
245
- "If you are using a caching plugin such as WP Super Cache, enabling this "
246
- "feature will keep the popular list from being cached by it"
247
- msgstr ""
248
- "Si est&aacute;s utilizando un plugin de cacheo como WP Super Cache, "
249
- "habilitar esta caracter&iacute;stica evitar&aacute; que la lista de entradas "
250
- "populares sea guardada en cach&eacute;"
251
-
252
- #: ../views/admin.php:279
253
- msgid "Listing refresh interval"
254
- msgstr "Intervalo de refrescamiento del listado"
255
-
256
- #: ../views/admin.php:282
257
- msgid "Live"
258
- msgstr "En vivo"
259
-
260
- #: ../views/admin.php:283
261
- msgid "Custom interval"
262
- msgstr "Intervalo personalizado"
263
-
264
- #: ../views/admin.php:287
265
- msgid ""
266
- "Sets how often the listing should be updated. For most sites the Live option "
267
- "should be fine, however if you are experiencing slowdowns or your blog gets "
268
- "a lot of visitors then you might want to change the refresh rate"
269
- msgstr ""
270
- "Configura cu&aacute;n frecuentemente debe actualizarse listado. Para la "
271
- "mayor&iacute;a de los sitios la opci&oacute;n En Vivo deber&iacute;a estar "
272
- "bien, sin embargo si est&aacute;s experimentando lentitud o tu blog recibe "
273
- "muchos visitantes entonces quiz&aacute;s prefieras cambiar la tasa de "
274
- "refrescamiento"
275
-
276
- #: ../views/admin.php:291
277
- msgid "Refresh list every"
278
- msgstr "Refrescar la lista cada"
279
-
280
- #: ../views/admin.php:295
281
- msgid "Hour(s)"
282
- msgstr "Hora(s)"
283
-
284
- #: ../views/admin.php:296
285
- msgid "Day(s)"
286
- msgstr "D&iacute;a(s)"
287
-
288
- #: ../views/admin.php:297
289
- msgid "Week(s)"
290
- msgstr "Semana(s)"
291
-
292
- #: ../views/admin.php:298
293
- msgid "Month(s)"
294
- msgstr "Mes(es)"
295
-
296
- #: ../views/admin.php:299
297
- msgid "Year(s)"
298
- msgstr "A&ntilde;o(s)"
299
-
300
- #: ../views/admin.php:302
301
- msgid "Really? That long?"
302
- msgstr "&iquest;En serio? &iquest;Tanto tiempo?"
303
-
304
- #: ../views/admin.php:317
305
- msgid "Miscellaneous"
306
- msgstr "Miscel&aacute;neos"
307
-
308
- #: ../views/admin.php:322
309
- msgid "Open links in"
310
- msgstr "Abrir links en"
311
-
312
- #: ../views/admin.php:325
313
- msgid "Current window"
314
- msgstr "Ventana actual"
315
-
316
- #: ../views/admin.php:326
317
- msgid "New tab/window"
318
- msgstr "Nueva pesta&ntilde;a/ventana"
319
-
320
- #: ../views/admin.php:332
321
- msgid "Use plugin's stylesheet"
322
- msgstr "Utilizar la hoja de estilos del plugin"
323
-
324
- #: ../views/admin.php:339
325
- msgid ""
326
- "By default, the plugin includes a stylesheet called wpp.css which you can "
327
- "use to style your popular posts listing. If you wish to use your own "
328
- "stylesheet or do not want it to have it included in the header section of "
329
- "your site, use this."
330
- msgstr ""
331
- "Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que "
332
- "puedes utilizar para darle estilos a tu listado de entradas populares. Si "
333
- "deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
334
- "incluya en el header de tu sitio web, utiliza esto."
335
-
336
- #: ../views/admin.php:356
337
- msgid ""
338
- "WordPress Popular Posts maintains data in two separate tables: one for "
339
- "storing the most popular entries on a daily basis (from now on, \"cache\"), "
340
- "and another one to keep the All-time data (from now on, \"historical data\" "
341
- "or just \"data\"). If for some reason you need to clear the cache table, or "
342
- "even both historical and cache tables, please use the buttons below to do so."
343
- msgstr ""
344
- "WordPress Popular Posts mantiene la data en dos tablas separadas: una para "
345
- "guardar diariamente las entradas m&aacute;s populares (\"cach&eacute;\", de "
346
- "aqu&iacute; en adelante), y otra tabla para almacenar la data de Todos los "
347
- "tiempos (\"data hist&oacute;rica\" o simplemente \"data\"). Si por alguna "
348
- "raz&oacute;n necesitas vaciar la tabla cach&eacute;, o inclusive las dos "
349
- "tablas hist&oacute;ricas y de cach&eacute;, por favor utiliza los botones de "
350
- "abajo."
351
-
352
- #: ../views/admin.php:357
353
- msgid "Empty cache"
354
- msgstr "Vaciar el cach&eacute;"
355
-
356
- #: ../views/admin.php:357
357
- msgid "Use this button to manually clear entries from WPP cache only"
358
- msgstr ""
359
- "Utiliza este bot&oacute;n para vaciar manualmente s&oacute;lo las entradas "
360
- "del cach&eacute; de WPP"
361
-
362
- #: ../views/admin.php:358
363
- msgid "Clear all data"
364
- msgstr "Eliminar toda la data"
365
-
366
- #: ../views/admin.php:358
367
- msgid "Use this button to manually clear entries from all WPP data tables"
368
- msgstr ""
369
- "Utiliza este bot&oacute;n para limpiar manualmente las tablas de datos de WPP"
370
-
371
- #: ../views/admin.php:365
372
- #, php-format
373
- msgid ""
374
- "With the following parameters you can customize the popular posts list when "
375
- "using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or "
376
- "the <a href=\"%2$s\">[wpp] shortcode</a>."
377
- msgstr ""
378
- "Con los siguientes par&aacute;metros puedes personalizar la lista de "
379
- "entradas populares al utilizar tanto el <a href=\"%1$s"
380
- "\">wpp_get_most_popular() template tag</a> como el <a href=\"%2$s\">[wpp] "
381
- "shortcode</a>."
382
-
383
- #: ../views/admin.php:373
384
- msgid "Parameter"
385
- msgstr "Par&aacute;metro"
386
-
387
- #: ../views/admin.php:374 ../views/admin.php:688
388
- msgid "What it does "
389
- msgstr "Qu&eacute; hace"
390
-
391
- #: ../views/admin.php:375
392
- msgid "Possible values"
393
- msgstr "Valores posibles"
394
-
395
- #: ../views/admin.php:376
396
- msgid "Defaults to"
397
- msgstr "Por defecto"
398
-
399
- #: ../views/admin.php:377 ../views/admin.php:690
400
- msgid "Example"
401
- msgstr "Ejemplo"
402
-
403
- #: ../views/admin.php:383
404
- msgid "Sets a heading for the list"
405
- msgstr "Configura el encabezado de la lista"
406
-
407
- #: ../views/admin.php:384 ../views/admin.php:391 ../views/admin.php:398
408
- #: ../views/admin.php:433 ../views/admin.php:440 ../views/admin.php:447
409
- #: ../views/admin.php:454 ../views/admin.php:545 ../views/admin.php:559
410
- #: ../views/admin.php:566
411
- msgid "Text string"
412
- msgstr "Texto"
413
-
414
- #: ../views/admin.php:385
415
- msgid "Popular Posts"
416
- msgstr "Entradas Populares"
417
-
418
- #: ../views/admin.php:390
419
- msgid "Set the opening tag for the heading of the list"
420
- msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
421
-
422
- #: ../views/admin.php:397
423
- msgid "Set the closing tag for the heading of the list"
424
- msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
425
-
426
- #: ../views/admin.php:404
427
- msgid "Sets the maximum number of popular posts to be shown on the listing"
428
- msgstr ""
429
- "Configura el m&aacute;ximo de entradas populares a ser mostradas en la lista"
430
-
431
- #: ../views/admin.php:405 ../views/admin.php:461 ../views/admin.php:475
432
- #: ../views/admin.php:496 ../views/admin.php:503
433
- msgid "Positive integer"
434
- msgstr "Entero positivo"
435
-
436
- #: ../views/admin.php:411
437
- msgid ""
438
- "Tells WordPress Popular Posts to retrieve the most popular entries within "
439
- "the time range specified by you"
440
- msgstr ""
441
- "Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
442
- "hayan sido populares dentro del rango de tiempo especificado por ti"
443
-
444
- #: ../views/admin.php:418
445
- msgid ""
446
- "Tells WordPress Popular Posts to retrieve the most popular entries published "
447
- "within the time range specified by you"
448
- msgstr ""
449
- "Le indica a WordPress Popular Posts que debe listar aquellas entradas "
450
- "populares publicadas dentro del rango de tiempo especificado por ti"
451
-
452
- #: ../views/admin.php:425
453
- msgid "Sets the sorting option of the popular posts"
454
- msgstr "Configura el ordenado de las entradas populares"
455
-
456
- #: ../views/admin.php:426
457
- msgid "(for average views per day)"
458
- msgstr "(para el porcentaje de vistas por d&iacute;a)"
459
-
460
- #: ../views/admin.php:432
461
- msgid "Defines the type of posts to show on the listing"
462
- msgstr "Define el tipo de entrada a mostrar en el listado"
463
-
464
- #: ../views/admin.php:439
465
- msgid ""
466
- "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
467
- "form the listing."
468
- msgstr ""
469
- "Si se configura, WordPress Popular Posts excluir&aacute; todos los IDs de "
470
- "las entradas especificadas."
471
-
472
- #: ../views/admin.php:441 ../views/admin.php:448 ../views/admin.php:455
473
- msgid "None"
474
- msgstr "Ninguno"
475
-
476
- #: ../views/admin.php:446
477
- msgid ""
478
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
479
- "specified category(ies) ID(s). If a minus sign is used, the category(ies) "
480
- "will be excluded instead."
481
- msgstr ""
482
- "Si se configura, WordPress Popular Posts mostrar&aacute; todas las entradas "
483
- "que pertenecen a la(s) categor&iacute;a(s) especificada(s). Si se usa un "
484
- "signo negativo, la(s) categor&iacute;a(s) ser&aacute;(n) exclu&iacute;da(s)."
485
-
486
- #: ../views/admin.php:453
487
- msgid ""
488
- "If set, WordPress Popular Posts will retrieve all entries created by "
489
- "specified author(s) ID(s)."
490
- msgstr ""
491
- "Si se configura, WordPress Popular Posts traer&aacute; todas las entradas "
492
- "creadas por el (los) ID(s) de autor(es) especificado(s)."
493
-
494
- #: ../views/admin.php:460
495
- msgid ""
496
- "If set, WordPress Popular Posts will shorten each post title to \"n\" "
497
- "characters whenever possible"
498
- msgstr ""
499
- "Si se configura, WordPress Popular Posts acortar&aacute; cada titulo en \"n"
500
- "\" caracteres cuando sea posible"
501
-
502
- #: ../views/admin.php:467
503
- msgid ""
504
- "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
505
- "words instead of characters"
506
- msgstr ""
507
- "Si se pasa el valor 1, WordPress Popular Posts acortar&aacute; cada titulo "
508
- "en \"n\" palabras en vez de caracteres"
509
-
510
- #: ../views/admin.php:474
511
- msgid ""
512
- "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
513
- "characters long from the content of each post listed as popular"
514
- msgstr ""
515
- "Si se configura, WordPress Popular Posts construir&aacute; e incluir&aacute; "
516
- "un extracto de \"n\" caracteres del contenido de cada entrada listada como "
517
- "popular"
518
-
519
- #: ../views/admin.php:481
520
- msgid ""
521
- "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
522
- "italic, etc) and hyperlinks found in the excerpt"
523
- msgstr ""
524
- "Si se configura, WordPress Popular Posts mantendr&aacute; todas las "
525
- "etiquetas de estilo (strong, italic, etc) y los hiperv&iacute;nculos "
526
- "encontrados en el extracto"
527
-
528
- #: ../views/admin.php:488
529
- msgid ""
530
- "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
531
- "instead of characters"
532
- msgstr ""
533
- "Si se configura, WordPress Popular Posts acortar&aacute; el resumen en \"n\" "
534
- "palabras en vez de caracteres"
535
-
536
- #: ../views/admin.php:495
537
- msgid ""
538
- "If set, and if your current server configuration allows it, you will be able "
539
- "to display thumbnails of your posts. This attribute sets the width for "
540
- "thumbnails"
541
- msgstr ""
542
- "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
543
- "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
544
- "configura el ancho de tus miniaturas"
545
-
546
- #: ../views/admin.php:502
547
- msgid ""
548
- "If set, and if your current server configuration allows it, you will be able "
549
- "to display thumbnails of your posts. This attribute sets the height for "
550
- "thumbnails"
551
- msgstr ""
552
- "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
553
- "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
554
- "configura el alto de tus miniaturas"
555
-
556
- #: ../views/admin.php:509
557
- msgid ""
558
- "If set, and if the WP-PostRatings plugin is installed and enabled on your "
559
- "blog, WordPress Popular Posts will show how your visitors are rating your "
560
- "entries"
561
- msgstr ""
562
- "Si se configura, y si el plugin WP-PostRatings est&aacute; instalado y "
563
- "habilitado en tu blog, WordPress Popular Posts mostrar&aacute; como tus "
564
- "visitantes han calificado a tus entradas"
565
-
566
- #: ../views/admin.php:516
567
- msgid ""
568
- "If set, WordPress Popular Posts will show how many comments each popular "
569
- "post has got until now"
570
- msgstr ""
571
- "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntos "
572
- "comentarios ha obtenido cada entrada popular hasta ahora"
573
-
574
- #: ../views/admin.php:523
575
- msgid ""
576
- "If set, WordPress Popular Posts will show how many views each popular post "
577
- "has got since it was installed"
578
- msgstr ""
579
- "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntas "
580
- "vistas ha obtenido cada entrada popular desde que el plugin fue instalado"
581
-
582
- #: ../views/admin.php:530
583
- msgid ""
584
- "If set, WordPress Popular Posts will show who published each popular post on "
585
- "the list"
586
- msgstr ""
587
- "Si se configura, WordPress Popular Posts mostrar&aacute; qui&eacute;n "
588
- "public&oacute; cada entrada popular de la lista"
589
-
590
- #: ../views/admin.php:537
591
- msgid ""
592
- "If set, WordPress Popular Posts will display the date when each popular post "
593
- "on the list was published"
594
- msgstr ""
595
- "Si se tilda, WordPress Popular Posts mostrar&aacute; la fecha en la que fue "
596
- "publicada cada entrada popular"
597
-
598
- #: ../views/admin.php:544
599
- msgid "Sets the date format"
600
- msgstr "Configura el formato de la fecha"
601
-
602
- #: ../views/admin.php:551
603
- msgid "If set, WordPress Popular Posts will display the category"
604
- msgstr ""
605
- "Si se tilda, WordPress Popular Posts mostrar&aacute; la categor&iacute;a"
606
-
607
- #: ../views/admin.php:558
608
- msgid "Sets the opening tag for the listing"
609
- msgstr "Configura la etiqueta de apertura del listado"
610
-
611
- #: ../views/admin.php:565
612
- msgid "Sets the closing tag for the listing"
613
- msgstr "Configura la etiqueta de cierre del listado"
614
-
615
- #: ../views/admin.php:572
616
- msgid "Sets the HTML structure of each post"
617
- msgstr "Configura la estructura HTML de cada entrada"
618
-
619
- #: ../views/admin.php:573
620
- msgid "Text string, custom HTML"
621
- msgstr "Texto, HTML personalizado"
622
-
623
- #: ../views/admin.php:573
624
- msgid "Available Content Tags"
625
- msgstr "Content Tags disponibles"
626
-
627
- #: ../views/admin.php:573
628
- msgid "displays thumbnail linked to post/page"
629
- msgstr "muestra la miniatura vinculada a la entrada/p&aacute;gina"
630
-
631
- #: ../views/admin.php:573
632
- msgid "displays linked post/page title"
633
- msgstr ""
634
- "muestra el t&iacute;tulo de la entrada/p&aacute;gina con v&iacute;nculo"
635
-
636
- #: ../views/admin.php:573
637
- msgid ""
638
- "displays post/page excerpt, and requires excerpt_length to be greater than 0"
639
- msgstr ""
640
- "muestra el resumen de la entrada/p&aacute;gina, requiere que excerpt_length "
641
- "sea mayor a 0"
642
-
643
- #: ../views/admin.php:573
644
- msgid "displays the default stats tags"
645
- msgstr "muestra el stats tag por defecto"
646
-
647
- #: ../views/admin.php:573
648
- msgid ""
649
- "displays post/page current rating, requires WP-PostRatings installed and "
650
- "enabled"
651
- msgstr ""
652
- "muestra el rating actual de la entrada/p&aacute;gina, requiere que WP-"
653
- "PostRatings est&eacute; instalado y activo"
654
-
655
- #: ../views/admin.php:573
656
- msgid ""
657
- "displays post/page current rating as an integer, requires WP-PostRatings "
658
- "installed and enabled"
659
- msgstr ""
660
- "muestra el rating actual de la entrada/p&aacute;gina como un entero, "
661
- "requiere que WP-PostRatings est&eacute; instalado y activo"
662
-
663
- #: ../views/admin.php:573
664
- msgid "outputs the URL of the post/page"
665
- msgstr "muestra la URL de la entrada/p&aacute;gina"
666
-
667
- #: ../views/admin.php:573
668
- msgid "displays post/page title, no link"
669
- msgstr ""
670
- "muestra el t&iacute;tulo de la entrada/p&aacute;gina, sin v&iacute;nculo"
671
-
672
- #: ../views/admin.php:573
673
- msgid "displays linked author name, requires stats_author=1"
674
- msgstr ""
675
- "muestra el nombre del autor con v&iacute;nculo, requiere stats_author=1"
676
-
677
- #: ../views/admin.php:573
678
- msgid "displays linked category name, requires stats_category=1"
679
- msgstr ""
680
- "muestra el nombre de la categor&iacute;a vinculado, requiere stats_category=1"
681
-
682
- #: ../views/admin.php:573
683
- msgid "displays views count only, no text"
684
- msgstr "muestra el n&uacute;mero de vistas, sin texto adicional"
685
-
686
- #: ../views/admin.php:573
687
- msgid "displays comments count only, no text, requires stats_comments=1"
688
- msgstr ""
689
- "muestra el n&uacute;mero de comentarios, sin texto adicional, requiere "
690
- "stats_comments=1"
691
-
692
- #: ../views/admin.php:585
693
- msgid "What does \"Title\" do?"
694
- msgstr "&iquest;Para qu&eacute; es \"T&iacute;tulo\"?"
695
-
696
- #: ../views/admin.php:588
697
- msgid ""
698
- "It allows you to show a heading for your most popular posts listing. If left "
699
- "empty, no heading will be displayed at all."
700
- msgstr ""
701
- "Te permite mostrar un encabezado para tu lista de entradas populares. Si se "
702
- "deja vac&iacute;o, no se mostrar&aacute; el encabezado."
703
-
704
- #: ../views/admin.php:591
705
- msgid "What is Time Range for?"
706
- msgstr "&iquest;Para qu&eacute; es \"Rango de Tiempo\"?"
707
-
708
- #: ../views/admin.php:593
709
- msgid ""
710
- "It will tell WordPress Popular Posts to retrieve all posts with most views / "
711
- "comments within the selected time range."
712
- msgstr ""
713
- "Le indica a WordPress Popular Posts que muestre las entradas m&aacute;s "
714
- "vistas / comentadas en el rango de tiempo seleccionado."
715
-
716
- #: ../views/admin.php:596
717
- msgid "What is \"Sort post by\" for?"
718
- msgstr "&iquest;Para qu&eacute; es \"Ordenar entradas por\"?"
719
-
720
- #: ../views/admin.php:598
721
- msgid ""
722
- "It allows you to decide whether to order your popular posts listing by total "
723
- "views, comments, or average views per day."
724
- msgstr ""
725
- "Te permite decidir si ordenar tus entradas populares por la cantidad total "
726
- "de vistas, comentarios, o por el porcentaje diario de vistas."
727
-
728
- #: ../views/admin.php:601
729
- msgid "What does \"Display post rating\" do?"
730
- msgstr "&iquest;Qu&eacute; hace \"Mostrar rating de la entrada\"?"
731
-
732
- #: ../views/admin.php:603
733
- msgid ""
734
- "If checked, WordPress Popular Posts will show how your readers are rating "
735
- "your most popular posts. This feature requires having WP-PostRatings plugin "
736
- "installed and enabled on your blog for it to work."
737
- msgstr ""
738
- "Si se tilda, WordPress Popular Posts mostrar&aacute; c&oacute;mo tus "
739
- "lectores est&aacute;n calificando tus entradas populares. Esta "
740
- "caracter&iacute;stica requiere que el plugin WP-PostRatings est&eacute; "
741
- "instalado y habilitado en tu blog para que funcione."
742
-
743
- #: ../views/admin.php:606
744
- msgid "What does \"Shorten title\" do?"
745
- msgstr "&iquest;Qu&eacute; hace \"Acortar t&iacute;tulo\"?"
746
-
747
- #: ../views/admin.php:608
748
- msgid ""
749
- "If checked, all posts titles will be shortened to \"n\" characters/words. A "
750
- "new \"Shorten title to\" option will appear so you can set it to whatever "
751
- "you like."
752
- msgstr ""
753
- "Si se tilda, todos los t&iacute;tulos de las entradas se acortar&aacute;n \"n"
754
- "\" caracteres/palabras. Una nueva opci&oacute;n \"Acortar t&iacute;tulo en\" "
755
- "se mostrar&aacute; para que puedas configurarlo como quieras."
756
-
757
- #: ../views/admin.php:611
758
- msgid "What does \"Display post excerpt\" do?"
759
- msgstr "&iquest;Qu&eacute; hace \"Mostrar resumen de la entrada\"?"
760
-
761
- #: ../views/admin.php:613
762
- msgid ""
763
- "If checked, WordPress Popular Posts will also include a small extract of "
764
- "your posts in the list. Similarly to the previous option, you will be able "
765
- "to decide how long the post excerpt should be."
766
- msgstr ""
767
- "Si se tilda, WordPress Popular Posts incluir&aacute; un peque&ntilde;o "
768
- "extracto de tus entradas en la lista. Similar a la opci&oacute;n anterior, "
769
- "podr&aacute;s decidir qu&eacute; tan largo debe ser el extracto."
770
-
771
- #: ../views/admin.php:616
772
- msgid "What does \"Keep text format and links\" do?"
773
- msgstr "&iquest;Qu&eacute; hace \"Mantener el formato de texto y links\"?"
774
-
775
- #: ../views/admin.php:618
776
- msgid ""
777
- "If checked, and if the Post Excerpt feature is enabled, WordPress Popular "
778
- "Posts will keep the styling tags (eg. bold, italic, etc) that were found in "
779
- "the excerpt. Hyperlinks will remain intact, too."
780
- msgstr ""
781
- "Si se tilda, y si la opci&oacute;n Mostrar Resumen est&aacute; habilitada, "
782
- "WordPress Popular Posts mantendr&aacute; las etiquetas de estilos que se "
783
- "encontraron en el extracto. Los hiperv&iacute;nculos tambi&eacute;n se "
784
- "mantendr&aacute;n."
785
-
786
- #: ../views/admin.php:621
787
- msgid "What is \"Post type\" for?"
788
- msgstr "&iquest;Para qu&eacute; es el \"Post type\"?"
789
-
790
- #: ../views/admin.php:623
791
- msgid ""
792
- "This filter allows you to decide which post types to show on the listing. By "
793
- "default, it will retrieve only posts and pages (which should be fine for "
794
- "most cases)."
795
- msgstr ""
796
- "Este filtro te permite decidir que tipo de entradas deseas mostrar en el "
797
- "listado. Por defecto, trater&aacute; s&oacute;lo entradas y p&aacute;ginas "
798
- "(que es lo que se quiere, en la mayor&iacute;a de los casos)."
799
-
800
- #: ../views/admin.php:626
801
- msgid "What is \"Category(ies) ID(s)\" for?"
802
- msgstr "&iquest;Para qu&eacute; es el \"ID(s) de Categor&iacute;a(s)\"?"
803
-
804
- #: ../views/admin.php:628
805
- msgid ""
806
- "This filter allows you to select which categories should be included or "
807
- "excluded from the listing. A negative sign in front of the category ID "
808
- "number will exclude posts belonging to it from the list, for example. You "
809
- "can specify more than one ID with a comma separated list."
810
- msgstr ""
811
- "Este filtro te permite seleccionar qu&eacute; categor&iacute;as deber&iacute;"
812
- "an ser inclu&iacute;das o exclu&iacute;das del listado. Un signo negativo "
813
- "enfrente del ID de la categor&iacute;a la excluir&aacute; de la lista, por "
814
- "ejemplo. Puedes especificar m&aacute;s de un ID separ&aacute;ndolos con "
815
- "comas."
816
-
817
- #: ../views/admin.php:631
818
- msgid "What is \"Author(s) ID(s)\" for?"
819
- msgstr "&iquest;Para qu&eacute; es el \"ID de Autor(es)\"?"
820
-
821
- #: ../views/admin.php:633
822
- msgid ""
823
- "Just like the Category filter, this one lets you filter posts by author ID. "
824
- "You can specify more than one ID with a comma separated list."
825
- msgstr ""
826
- "Justo como el filtro de Categor&iacute;a, &eacute;ste te permite filtrar "
827
- "entradas por ID del autor. Puedes especificar m&aacute;s de un ID "
828
- "separ&aacute;ndolos con comas."
829
-
830
- #: ../views/admin.php:636
831
- msgid "What does \"Display post thumbnail\" do?"
832
- msgstr "&iquest;Qu&eacute; hace \"Mostrar miniatura de la entrada\"?"
833
-
834
- #: ../views/admin.php:638
835
- msgid ""
836
- "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail "
837
- "of each post. You can set up the source of the thumbnail via Settings - "
838
- "WordPress Popular Posts - Tools."
839
- msgstr ""
840
- "Si se tilda, WordPress Popular Posts intentar&aacute; obtener la imagen "
841
- "miniatura de cada entrada. Puedes configurar la fuente de la miniatura via "
842
- "Configuraci&oacute;n - Wordpress Popular Posts - Herramientas."
843
-
844
- #: ../views/admin.php:641
845
- msgid "What does \"Display comment count\" do?"
846
- msgstr "&iquest;Qu&eacute; hace \"Mostrar cantidad de comentarios\"?"
847
-
848
- #: ../views/admin.php:643
849
- msgid ""
850
- "If checked, WordPress Popular Posts will display how many comments each "
851
- "popular post has got in the selected Time Range."
852
- msgstr ""
853
- "Si se tilda, WordPress Popular Posts mostrar&aacute; cu&aacute;ntos "
854
- "comentarios ha obtenido cada entrada popular dentro del Rango de Tiempo "
855
- "seleccionado."
856
-
857
- #: ../views/admin.php:646
858
- msgid "What does \"Display views\" do?"
859
- msgstr "&iquest;Qu&eacute; hace \"Mostrar vistas\"?"
860
-
861
- #: ../views/admin.php:648
862
- msgid ""
863
- "If checked, WordPress Popular Posts will show how many pageviews a single "
864
- "post has gotten in the selected Time Range."
865
- msgstr ""
866
- "Si se tilda, WordPress Popular Posts mostrar&aacute; cu&aacute;ntas vistas "
867
- "ha obtenido cada entrada en el Rango de Tiempo seleccionado."
868
-
869
- #: ../views/admin.php:651
870
- msgid "What does \"Display author\" do?"
871
- msgstr "&iquest;Qu&eacute; hace \"Mostrar autor\"?"
872
-
873
- #: ../views/admin.php:653
874
- msgid ""
875
- "If checked, WordPress Popular Posts will display the name of the author of "
876
- "each entry listed."
877
- msgstr ""
878
- "Si se tilda, WordPress Popular Posts mostrar&aacute; el nombre del autor de "
879
- "cada entrada listada."
880
-
881
- #: ../views/admin.php:656
882
- msgid "What does \"Display date\" do?"
883
- msgstr "&iquest;Qu&eacute; hace \"Mostrar fecha\"?"
884
-
885
- #: ../views/admin.php:658
886
- msgid ""
887
- "If checked, WordPress Popular Posts will display the date when each popular "
888
- "posts was published."
889
- msgstr ""
890
- "Si se tilda, WordPress Popular Posts mostrar&aacute; la fecha en la que fue "
891
- "publicada cada entrada popular."
892
-
893
- #: ../views/admin.php:661
894
- msgid "What does \"Display category\" do?"
895
- msgstr "&iquest;Qu&eacute; hace \"Mostrar categor&iacute;a\"?"
896
-
897
- #: ../views/admin.php:663
898
- msgid ""
899
- "If checked, WordPress Popular Posts will display the category of each post."
900
- msgstr ""
901
- "Si se tilda, WordPress Popular Posts mostrar&aacute; la categor&iacute;a de "
902
- "cada entrada."
903
-
904
- #: ../views/admin.php:666
905
- msgid "What does \"Use custom HTML Markup\" do?"
906
- msgstr "&iquest;Qu&eacute; hace \"Utilizar Markup HTML personalizado\"?"
907
-
908
- #: ../views/admin.php:668
909
- msgid ""
910
- "If checked, you will be able to customize the HTML markup of your popular "
911
- "posts listing. For example, you can decide whether to wrap your posts in an "
912
- "unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is "
913
- "for you!"
914
- msgstr ""
915
- "Si se tilda, podr&aacute;s personalizad el markup HTML de tu listado de "
916
- "entradas populares. Por ejemplo, podr&aacute;s decidir si colocar tu listado "
917
- "en una lista desordenada, una ordenada, dentro de un div, etc. Si sabes "
918
- "xHTML/CSS, &iexcl;esto es para ti!"
919
-
920
- #: ../views/admin.php:671
921
- msgid "What are \"Content Tags\"?"
922
- msgstr "&iquest;Qu&eacute; son los \"Content Tags\"?"
923
-
924
- #: ../views/admin.php:673
925
- #, php-format
926
- msgid ""
927
- "Content Tags are codes to display a variety of items on your popular posts "
928
- "custom HTML structure. For example, setting it to \"{title}: "
929
- "{summary}\" (without the quotes) would display \"Post title: excerpt of the "
930
- "post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank"
931
- "\">Parameters</a> section."
932
- msgstr ""
933
- "Los Content Tags son etiquetas que sirven para mostrar una variedad de items "
934
- "en la estructura HTML de tu lista. Por ejemplo, configurarlo como \"{title}: "
935
- "{summary}\" (sin las comillas) mostrar&iacute;a \"T&iacute;tulo de la "
936
- "entrada: extracto de la entrada aqu&iacute;\". Para ver otras Content Tags, "
937
- "ver la secci&oacute;n <a href=\"%s\" target=\"_blank\">Par&aacute;metros</a."
938
-
939
- #: ../views/admin.php:676
940
- msgid "What are \"Template Tags\"?"
941
- msgstr "&iquest;Qu&eacute; son los \"Template Tags\"?"
942
-
943
- #: ../views/admin.php:678
944
- msgid ""
945
- "Template Tags are simply php functions that allow you to perform certain "
946
- "actions. For example, WordPress Popular Posts currently supports two "
947
- "different template tags: wpp_get_mostpopular() and wpp_get_views()."
948
- msgstr ""
949
- "Los Template Tags son simplemente funciones php que nos permiten realizar "
950
- "ciertas acciones. Por ejemplo, WordPress Popular Posts actualmente soporta "
951
- "dos template tags diferentes: wpp_get_mostpopular() y wpp_get_views()."
952
-
953
- #: ../views/admin.php:681
954
- msgid "What are the template tags that WordPress Popular Posts supports?"
955
- msgstr ""
956
- "&iquest;Cu&aacute;les son los Template Tags soportados por WordPress Popular "
957
- "Posts?"
958
-
959
- #: ../views/admin.php:683
960
- msgid ""
961
- "The following are the template tags supported by WordPress Popular Posts"
962
- msgstr ""
963
- "Los siguientes son los template tags soportados por WordPress Popular Posts"
964
-
965
- #: ../views/admin.php:687
966
- msgid "Template tag"
967
- msgstr "Template tag"
968
-
969
- #: ../views/admin.php:696
970
- #, php-format
971
- msgid ""
972
- "Similar to the widget functionality, this tag retrieves the most popular "
973
- "posts on your blog. This function also accepts <a href=\"%1$s\">parameters</"
974
- "a> so you can customize your popular listing, but these are not required."
975
- msgstr ""
976
- "Parecido a la funcionalidad del widget, esta etiqueta obtiene las entradas "
977
- "m&aacute;s populares de tu blog. Esta funci&oacute;n tambi&eacute;n acepta "
978
- "<a href=\"%1$s\">par&aacute;metros</a> para que puedas personalizar el "
979
- "listado, pero &eacute;stos no son requeridos."
980
-
981
- #: ../views/admin.php:697
982
- #, php-format
983
- msgid ""
984
- "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete "
985
- "list of attributes."
986
- msgstr ""
987
- "Por favor ver la <a href=\"%1$s\">secci&oacute;n Par&aacute;metros</a> para "
988
- "la lista completa de atributos."
989
-
990
- #: ../views/admin.php:702
991
- msgid ""
992
- "Displays the number of views of a single post. Post ID is required or it "
993
- "will return false."
994
- msgstr ""
995
- "Muestra la cantidad de vistas de una entrada. El ID de la entrada es "
996
- "requerido, o la funci&oacute;n devolver&aacute; false."
997
-
998
- #: ../views/admin.php:703
999
- msgid "Post ID"
1000
- msgstr "ID de la entrada"
1001
-
1002
- #: ../views/admin.php:710
1003
- msgid "What are \"shortcodes\"?"
1004
- msgstr "&iquest;Qu&eacute; son los \"shortcodes\"?"
1005
-
1006
- #: ../views/admin.php:712
1007
- #, php-format
1008
- msgid ""
1009
- "Shortcodes are similar to BB Codes, these allow us to call a php function by "
1010
- "simply typing something like [shortcode]. With WordPress Popular Posts, the "
1011
- "shortcode [wpp] will let you insert a list of the most popular posts in "
1012
- "posts content and pages too! For more information about shortcodes, please "
1013
- "visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page."
1014
- msgstr ""
1015
- "Los Shortcodes son similares a los BB Codes, &eacute;stos nos permiten "
1016
- "llamar a una funci&oacute;n php simplemente escribiendo algo como "
1017
- "[shortcode]. Con WordPress Popular Posts, el shortcode [wpp] te "
1018
- "permitir&aacute; insertar una lista de las entradas m&aacute;s populares en "
1019
- "el contenido de tus entradas y en p&aacute;ginas tambi&eacute;n. Para mayor "
1020
- "informaci&oacute;n sobre los shortcodes, por favor visita la p&aacute;gina "
1021
- "<a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a>."
1022
-
1023
- #: ../views/admin.php:721
1024
- #, php-format
1025
- msgid "About WordPress Popular Posts %s"
1026
- msgstr "Acerca de WordPress Popular Posts %s"
1027
-
1028
- #: ../views/admin.php:722
1029
- msgid "This version includes the following changes"
1030
- msgstr "Esta versi&oacute;n incluye los siguientes cambios"
1031
-
1032
- #: ../views/admin.php:741
1033
- msgid "Do you like this plugin?"
1034
- msgstr "&iquest;Te gusta este plugin?"
1035
-
1036
- #: ../views/admin.php:748
1037
- msgid ""
1038
- "Each donation motivates me to keep releasing free stuff for the WordPress "
1039
- "community!"
1040
- msgstr ""
1041
- "&iexcl;Cada donaci&oacute;n me motiva a seguir publicando cosas gratuitas "
1042
- "para la comunidad de WordPress!"
1043
-
1044
- #: ../views/admin.php:749
1045
- #, php-format
1046
- msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
1047
- msgstr ""
1048
- "&iexcl;Puedes <a href=\"%s\" target=\"_blank\">dejar una rese&ntilde;a</a> "
1049
- "tambi&eacute;n!"
1050
-
1051
- #: ../views/admin.php:753
1052
- msgid "Need help?"
1053
- msgstr "&iquest;Necesitas ayuda?"
1054
-
1055
- #: ../views/admin.php:754
1056
- #, php-format
1057
- msgid ""
1058
- "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions "
1059
- "and feedback."
1060
- msgstr ""
1061
- "Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, "
1062
- "hacer preguntas y dejar tu feedback."
1063
-
1064
- #: ../views/admin.php:755
1065
- msgid "Let's make this plugin even better!"
1066
- msgstr "&iexcl;Hagamos a este plugin inclusive mejor!"
1067
-
1068
- #: ../views/form.php:2
1069
- msgid "Title"
1070
- msgstr "T&iacute;tulo"
1071
-
1072
- #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24
1073
- #: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43
1074
- #: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63
1075
- #: ../views/form.php:66 ../views/form.php:73 ../views/form.php:87
1076
- #: ../views/form.php:89 ../views/form.php:91 ../views/form.php:93
1077
- #: ../views/form.php:105 ../views/form.php:111
1078
- msgid "What is this?"
1079
- msgstr "&iquest;Qu&eacute; es esto?"
1080
-
1081
- #: ../views/form.php:7
1082
- msgid "Show up to"
1083
- msgstr "Mostrar hasta"
1084
-
1085
- #: ../views/form.php:8
1086
- msgid "posts"
1087
- msgstr "entradas"
1088
-
1089
- #: ../views/form.php:12
1090
- msgid "Sort posts by"
1091
- msgstr "Ordenar entradas por"
1092
-
1093
- #: ../views/form.php:14
1094
- msgid "Comments"
1095
- msgstr "Comentarios"
1096
-
1097
- #: ../views/form.php:15
1098
- msgid "Total views"
1099
- msgstr "Total de vistas"
1100
-
1101
- #: ../views/form.php:16
1102
- msgid "Avg. daily views"
1103
- msgstr "Porcentaje de vistas diarias"
1104
-
1105
- #: ../views/form.php:22
1106
- msgid "Filters"
1107
- msgstr "Filtros"
1108
-
1109
- #: ../views/form.php:24
1110
- msgid "Time Range"
1111
- msgstr "Rango de Tiempo"
1112
-
1113
- #: ../views/form.php:34
1114
- msgid "Post type(s)"
1115
- msgstr "Post type(s)"
1116
-
1117
- #: ../views/form.php:37
1118
- msgid "Post(s) ID(s) to exclude"
1119
- msgstr "ID(s) de Entrada(s) a excluir"
1120
-
1121
- #: ../views/form.php:40
1122
- msgid "Category(ies) ID(s)"
1123
- msgstr "ID(s) de Categor&iacute;a(s)"
1124
-
1125
- #: ../views/form.php:43
1126
- msgid "Author(s) ID(s)"
1127
- msgstr "ID(s) de Autor(es)"
1128
-
1129
- #: ../views/form.php:48
1130
- msgid "Posts settings"
1131
- msgstr "Configuraci&oacute;n de las entradas"
1132
-
1133
- #: ../views/form.php:52
1134
- msgid "Display post rating"
1135
- msgstr "Mostrar rating de la entrada"
1136
-
1137
- #: ../views/form.php:55
1138
- msgid "Shorten title"
1139
- msgstr "Acortar t&iacute;tulo"
1140
-
1141
- #: ../views/form.php:58
1142
- msgid "Shorten title to"
1143
- msgstr "Acortar t&iacute;tulo en"
1144
-
1145
- #: ../views/form.php:59 ../views/form.php:69
1146
- msgid "characters"
1147
- msgstr "caracteres"
1148
-
1149
- #: ../views/form.php:60 ../views/form.php:70
1150
- msgid "words"
1151
- msgstr "palabras"
1152
-
1153
- #: ../views/form.php:63
1154
- msgid "Display post excerpt"
1155
- msgstr "Mostrar resumen de la entrada"
1156
-
1157
- #: ../views/form.php:66
1158
- msgid "Keep text format and links"
1159
- msgstr "Mantener formato de texto y links"
1160
-
1161
- #: ../views/form.php:67
1162
- msgid "Excerpt length"
1163
- msgstr "Largo del resumen"
1164
-
1165
- #: ../views/form.php:73
1166
- msgid "Display post thumbnail"
1167
- msgstr "Mostrar miniatura"
1168
-
1169
- #: ../views/form.php:76
1170
- msgid "Width"
1171
- msgstr "Ancho"
1172
-
1173
- #: ../views/form.php:77 ../views/form.php:80
1174
- msgid "px"
1175
- msgstr "px"
1176
-
1177
- #: ../views/form.php:79
1178
- msgid "Height"
1179
- msgstr "Alto"
1180
-
1181
- #: ../views/form.php:85
1182
- msgid "Stats Tag settings"
1183
- msgstr "Configuraci&oacute;n del Stats Tag"
1184
-
1185
- #: ../views/form.php:87
1186
- msgid "Display comment count"
1187
- msgstr "Mostrar cantidad de comentarios"
1188
-
1189
- #: ../views/form.php:89
1190
- msgid "Display views"
1191
- msgstr "Mostrar vistas"
1192
-
1193
- #: ../views/form.php:91
1194
- msgid "Display author"
1195
- msgstr "Mostrar autor"
1196
-
1197
- #: ../views/form.php:93
1198
- msgid "Display date"
1199
- msgstr "Mostrar fecha"
1200
-
1201
- #: ../views/form.php:96
1202
- msgid "Date Format"
1203
- msgstr "Formato de la fecha"
1204
-
1205
- #: ../views/form.php:98
1206
- msgid "WordPress Date Format"
1207
- msgstr "Formato de fecha de WordPress"
1208
-
1209
- #: ../views/form.php:105
1210
- msgid "Display category"
1211
- msgstr "Mostrar categor&iacute;a"
1212
-
1213
- #: ../views/form.php:109
1214
- msgid "HTML Markup settings"
1215
- msgstr "Configuraci&oacute;n del Markup HTML"
1216
-
1217
- #: ../views/form.php:111
1218
- msgid "Use custom HTML Markup"
1219
- msgstr "Utilizar Markup HTML personalizado"
1220
-
1221
- #: ../views/form.php:114
1222
- msgid "Before / after title"
1223
- msgstr "Antes / despu&eacute;s del t&iacute;tulo"
1224
-
1225
- #: ../views/form.php:117
1226
- msgid "Before / after Popular Posts"
1227
- msgstr "Antes / despu&eacute;s de las entradas populares"
1228
-
1229
- #: ../views/form.php:120
1230
- msgid "Post HTML Markup"
1231
- msgstr "Markup HTML de la Entrada"
1232
-
1233
- #: ../wordpress-popular-posts.php:276
1234
- msgid "The most Popular Posts on your blog."
1235
- msgstr "Las entradas m&aacute;s populares en tu blog."
1236
-
1237
- #: ../wordpress-popular-posts.php:433
1238
- msgid ""
1239
- "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1240
- "the <em>id</em> attribute on before_widget (see <a href=\"http://codex."
1241
- "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1242
- "\"nofollow\">register_sidebar</a> for more)."
1243
- msgstr ""
1244
- "Error: no es posible ajaxificar WordPress Popular Posts en este tema. Falta "
1245
- "el atributo <em>id</em> en before_widget (ver <a href=\"http://codex."
1246
- "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1247
- "\"nofollow\">register_sidebar</a> para m&aacute;s informaci&oacute;n)."
1248
-
1249
- #: ../wordpress-popular-posts.php:658
1250
- msgid "Upload"
1251
- msgstr "Subir"
1252
-
1253
- #: ../wordpress-popular-posts.php:1032
1254
- #, php-format
1255
- msgid ""
1256
- "Your PHP installation is too old. WordPress Popular Posts requires at least "
1257
- "PHP version %1$s to function correctly. Please contact your hosting provider "
1258
- "and ask them to upgrade PHP to %1$s or higher."
1259
- msgstr ""
1260
- "Tu versi&oacute;n de PHP es muy antigua. El plugin WordPress Popular Posts "
1261
- "requiere al menos PHP version %1$s para funcionar correctamente. Por favor "
1262
- "contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
1263
- "mejor."
1264
-
1265
- #: ../wordpress-popular-posts.php:1039
1266
- #, php-format
1267
- msgid ""
1268
- "Your WordPress version is too old. WordPress Popular Posts requires at least "
1269
- "WordPress version %1$s to function correctly. Please update your blog via "
1270
- "Dashboard &gt; Update."
1271
- msgstr ""
1272
- "Tu versi&oacute;n de WordPress es muy antigua. El plugin WordPress Popular "
1273
- "Posts requiere al menos la versi&oacute;n %1$s para funcionar correctamente. "
1274
- "Por favor actualiza tu blog via Escritorio &gt; Actualizaciones."
1275
-
1276
- #: ../wordpress-popular-posts.php:1064
1277
- #, php-format
1278
- msgid ""
1279
- "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</"
1280
- "strong>.</p></div>"
1281
- msgstr ""
1282
- "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> ha sido <strong>desactivado</"
1283
- "strong>.</p></div>"
1284
-
1285
- #: ../wordpress-popular-posts.php:1124
1286
- msgid "Success! The cache table has been cleared!"
1287
- msgstr "&iexcl;&Eacute;xito! &iexcl;La tabla cach&eacute; ha sido borrada!"
1288
-
1289
- #: ../wordpress-popular-posts.php:1126
1290
- msgid "Error: cache table does not exist."
1291
- msgstr "Error: la tabla cach&eacute; no existe."
1292
-
1293
- #: ../wordpress-popular-posts.php:1133
1294
- msgid "Success! All data have been cleared!"
1295
- msgstr "&iexcl;&Eacute;xito! &iexcl;Toda la data ha sido borrada!"
1296
-
1297
- #: ../wordpress-popular-posts.php:1135
1298
- msgid "Error: one or both data tables are missing."
1299
- msgstr "Error: una o ambas tablas de datos no existen."
1300
-
1301
- #: ../wordpress-popular-posts.php:1138 ../wordpress-popular-posts.php:1176
1302
- msgid "Invalid action."
1303
- msgstr "Acci&oacute;n inv&aacute;lida."
1304
-
1305
- #: ../wordpress-popular-posts.php:1141 ../wordpress-popular-posts.php:1179
1306
- msgid ""
1307
- "Sorry, you do not have enough permissions to do this. Please contact the "
1308
- "site administrator for support."
1309
- msgstr ""
1310
- "Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
1311
- "contacta al administrador del sitio."
1312
-
1313
- #: ../wordpress-popular-posts.php:1171
1314
- msgid "Success! All files have been deleted!"
1315
- msgstr "&iexcl;&Eacute;xito! &iexcl;Todos los archivos han sido borrados!"
1316
-
1317
- #: ../wordpress-popular-posts.php:1173
1318
- msgid "The thumbnail cache is already empty!"
1319
- msgstr "&iexcl;El cache de miniaturas ya est&aacute; vac&iacute;o!"
1320
-
1321
- #: ../wordpress-popular-posts.php:1696
1322
- msgid "Sorry. No data so far."
1323
- msgstr "Lo lamentamos. No hay nada que mostrar a&uacute;n."
1324
-
1325
- #: ../wordpress-popular-posts.php:2156
1326
- #, php-format
1327
- msgid "1 comment"
1328
- msgid_plural "%s comments"
1329
- msgstr[0] "1 comentario"
1330
- msgstr[1] "%s comentarios"
1331
-
1332
- #: ../wordpress-popular-posts.php:2168
1333
- #, php-format
1334
- msgid "1 view per day"
1335
- msgid_plural "%s views per day"
1336
- msgstr[0] "1 vista por d&iacute;a"
1337
- msgstr[1] "%s vistas por d&iacute;a"
1338
-
1339
- #: ../wordpress-popular-posts.php:2174
1340
- #, php-format
1341
- msgid "1 view"
1342
- msgid_plural "%s views"
1343
- msgstr[0] "1 vista"
1344
- msgstr[1] "%s vistas"
1345
-
1346
- #: ../wordpress-popular-posts.php:2186
1347
- #, php-format
1348
- msgid "by %s"
1349
- msgstr "por %s"
1350
-
1351
- #: ../wordpress-popular-posts.php:2192
1352
- #, php-format
1353
- msgid "posted on %s"
1354
- msgstr "publicado el %s"
1355
-
1356
- #: ../wordpress-popular-posts.php:2200
1357
- #, php-format
1358
- msgid "under %s"
1359
- msgstr "bajo %s"
1360
-
1361
- #~ msgid ""
1362
- #~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() "
1363
- #~ "and the [wpp] shortcode\"."
1364
- #~ msgstr ""
1365
- #~ "Por favor revisa \"Listado de par&aacute;metros aceptados por "
1366
- #~ "wpp_get_mostpopular() y el shortcode [wpp]\"."
1367
-
1368
- #~ msgid ""
1369
- #~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] "
1370
- #~ "shortcode"
1371
- #~ msgstr ""
1372
- #~ "Lista de par&aacute;metros aceptados por wpp_get_mostpopular() y el "
1373
- #~ "shortcode [wpp]"
1374
-
1375
- #~ msgid ""
1376
- #~ "These parameters can be used by both the template tag "
1377
- #~ "wpp_get_most_popular() and the shortcode [wpp]."
1378
- #~ msgstr ""
1379
- #~ "Estos par&aacute;metros pueden ser utilizados tanto por el template tag "
1380
- #~ "wpp_get_mostpopular() como por el shortcode [wpp]."
1381
-
1382
- #~ msgid "Preview"
1383
- #~ msgstr "Vista previa"
1384
-
1385
- #~ msgid "Excerpt Properties"
1386
- #~ msgstr "Propiedades del resumen"
1387
-
1388
- #~ msgid "Thumbnail settings"
1389
- #~ msgstr "Configuraci&oacute;n de miniatura"
1390
-
1391
- #~ msgid ""
1392
- #~ "Here you will find a handy group of options to tweak Wordpress Popular "
1393
- #~ "Posts."
1394
- #~ msgstr ""
1395
- #~ "Aqu&iacute; encontrar&aacute;s un &uacute;til grupo de opciones para "
1396
- #~ "ajustar a Wordpress Popular Posts."
1397
-
1398
- #~ msgid "Popular Posts links behavior"
1399
- #~ msgstr "Comportamiento de los link en las Entradas Populares"
1400
-
1401
- #~ msgid "Views logging behavior"
1402
- #~ msgstr "Comportamiento del registro de vistas"
1403
-
1404
- #~ msgid "Wordpress Popular Posts Stylesheet"
1405
- #~ msgstr "Hoja de estilos de Wordpress Popular Posts"
1406
-
1407
- #~ msgid "Data tools"
1408
- #~ msgstr "Herramientas de datos"
1409
-
1410
- #~ msgid "Popular posts listing refresh interval"
1411
- #~ msgstr "Intervalo de refrescamiento de las Entradas Populares"
1412
-
1413
- #~ msgid "Frequently Asked Questions"
1414
- #~ msgstr "Preguntas Frecuentes (FAQ)"
1415
-
1416
- #~ msgid "Sets the opening tag for each item on the list"
1417
- #~ msgstr "Configura la etiqueta de apertura de cada &iacute;tem del listado"
1418
-
1419
- #~ msgid "Sets the closing tag for each item on the list"
1420
- #~ msgstr "Configura la etiqueta de cierre de cada &iacute;tem del listado"
1421
-
1422
- #~ msgid ""
1423
- #~ "If set, this option will allow you to decide the order of the contents "
1424
- #~ "within each item on the list."
1425
- #~ msgstr ""
1426
- #~ "Si se configura, esta opci&oacute;n te permitir&aacute; decidir el orden "
1427
- #~ "de los contenidos dentro de cada item en la lista."
1428
-
1429
- #~ msgid ""
1430
- #~ "If set, you can decide the order of each content inside a single item on "
1431
- #~ "the list. For example, setting it to \"{title}: {summary}\" would output "
1432
- #~ "something like \"Your Post Title: summary here\". This attribute requires "
1433
- #~ "do_pattern to be true."
1434
- #~ msgstr ""
1435
- #~ "Si se configura, puedes decidir el orden de cada contenido dentro de cada "
1436
- #~ "item en la lista. Por ejemplo, configurarlo como \"{title}: {summary}\" "
1437
- #~ "mostrar&iacute;a \"El t&iacute;tulo de tu entrada: resumen aqu&iacute;\". "
1438
- #~ "Este atributo requiere que do_pattern sea true."
1439
-
1440
- #~ msgid "Available tags"
1441
- #~ msgstr "Etiquetas disponibles"
1442
-
1443
- #~ msgid "Rate it"
1444
- #~ msgstr "&iexcl;Calif&iacute;calo"
1445
-
1446
- #~ msgid "on the official Plugin Directory!"
1447
- #~ msgstr "en el Directorio Oficial de Plugins!"
1448
-
1449
- #~ msgid "Do you love this plugin?"
1450
- #~ msgstr "&iquest;Adoras este plugin?"
1451
-
1452
- #~ msgid "Buy me a beer!"
1453
- #~ msgstr "&iexcl;C&oacute;mprame una cerveza!"
1454
-
1455
- #~ msgid "comments"
1456
- #~ msgstr "comentarios"
1457
-
1458
- #~ msgid "views per day"
1459
- #~ msgstr "vistas por d&iacute;a"
1460
-
1461
- #~ msgid "views"
1462
- #~ msgstr "vistas"
1463
-
1464
- #~ msgid "by"
1465
- #~ msgstr "por"
1466
-
1467
- #~ msgid "What does \"Use content formatting tags\" do?"
1468
- #~ msgstr ""
1469
- #~ "&iquest;Qu&eacute; hace \"Utilizar etiquetas de formato de contenido\"?"
1470
-
1471
- #~ msgid "Before / after each post:"
1472
- #~ msgstr "Antes / despu&eacute;s de cada entrada"
1473
-
1474
- #~ msgid "Use content formatting tags"
1475
- #~ msgstr "Utilizar etiquetas de formato de contenido"
1476
-
1477
- #~ msgid "Content format:"
1478
- #~ msgstr "Formato de contenido:"
1479
-
1480
- #~ msgid "Wordpress Popular Posts Stats"
1481
- #~ msgstr "Estad&iacute;sticas de Wordpress Popular Posts"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Wordpress Popular Posts\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-12-06 18:07-0430\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
8
+ "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
9
+ "Language: es_ES\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;_n:1,2\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Generator: Poedit 1.7.1\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPath-1: ..\n"
20
+
21
+ #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
22
+ #: ../views/admin.php:74
23
+ msgid "Settings saved."
24
+ msgstr "Configuraci&oacute;n guardada."
25
+
26
+ #: ../views/admin.php:40
27
+ msgid "Please provide the name of your custom field."
28
+ msgstr "Por favor indica el nombre de tu custom field."
29
+
30
+ #: ../views/admin.php:80
31
+ msgid ""
32
+ "Any changes made to WPP's default stylesheet will be lost after every plugin "
33
+ "update. In order to prevent this from happening, please copy the wpp.css "
34
+ "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
35
+ "theme's directory"
36
+ msgstr ""
37
+ "Cualquier cambio hecho a la hoja de estilos por defecto de WPP se "
38
+ "perder&aacute; cada vez que el plugin se actualize. Para evitar esto, por "
39
+ "favor copia el archivo wpp.css (ubicado en wp-content/plugins/wordpress-"
40
+ "popular-posts/style) en la carpeta de tu tema actual."
41
+
42
+ #: ../views/admin.php:95
43
+ msgid ""
44
+ "This operation will delete all entries from WordPress Popular Posts' cache "
45
+ "table and cannot be undone."
46
+ msgstr ""
47
+ "Esta operaci\\363n borrar\\341 todas las entradas en el cach\\351 de "
48
+ "WordPress Popular Posts y no se puede deshacer."
49
+
50
+ #: ../views/admin.php:95 ../views/admin.php:103 ../views/admin.php:111
51
+ msgid "Do you want to continue?"
52
+ msgstr "Deseas continuar?"
53
+
54
+ #: ../views/admin.php:103
55
+ msgid ""
56
+ "This operation will delete all stored info from WordPress Popular Posts' "
57
+ "data tables and cannot be undone."
58
+ msgstr ""
59
+ "Esta operaci\\363n borrar\\341 toda la informaci\\363n guardada en las "
60
+ "tablas de WordPress Popular Posts y no puede ser reversado."
61
+
62
+ #: ../views/admin.php:111
63
+ msgid "This operation will delete all cached thumbnails and cannot be undone."
64
+ msgstr ""
65
+ "Esta operaci\\363n borrar\\341 todas las miniaturas en el cach\\351 y no se "
66
+ "puede deshacer."
67
+
68
+ #: ../views/admin.php:145
69
+ msgid "Stats"
70
+ msgstr "Estad&iacute;sticas"
71
+
72
+ #: ../views/admin.php:146
73
+ msgid "Tools"
74
+ msgstr "Herramientas"
75
+
76
+ #: ../views/admin.php:147 ../views/admin.php:735
77
+ msgid "Parameters"
78
+ msgstr "Par&aacute;metros"
79
+
80
+ #: ../views/admin.php:148
81
+ msgid "FAQ"
82
+ msgstr "FAQ"
83
+
84
+ #: ../views/admin.php:149
85
+ msgid "About"
86
+ msgstr "Acerca de"
87
+
88
+ #: ../views/admin.php:160
89
+ msgid ""
90
+ "Click on each tab to see what are the most popular entries on your blog in "
91
+ "the last 24 hours, this week, last 30 days or all time since WordPress "
92
+ "Popular Posts was installed."
93
+ msgstr ""
94
+ "Haz clic en cada pesta&ntilde;a para ver las entradas m&aacute;s populares "
95
+ "de tu blog en las &uacute;ltimas 24 horas, esta semana, los &uacute;ltimos "
96
+ "30 d&iacute;as o de todos los tiempos desde que WordPress Popular Posts fue "
97
+ "instalado."
98
+
99
+ #: ../views/admin.php:166
100
+ msgid "Order by comments"
101
+ msgstr "Ordenar por comentarios"
102
+
103
+ #: ../views/admin.php:167
104
+ msgid "Order by views"
105
+ msgstr "Ordenar por vistas"
106
+
107
+ #: ../views/admin.php:168
108
+ msgid "Order by avg. daily views"
109
+ msgstr "Ordenar por average de vistas diarias"
110
+
111
+ #: ../views/admin.php:170
112
+ msgid "Post type"
113
+ msgstr "Post type"
114
+
115
+ #: ../views/admin.php:171
116
+ msgid "Limit"
117
+ msgstr "L&iacute;mite"
118
+
119
+ #: ../views/admin.php:173 ../views/admin.php:267 ../views/admin.php:354
120
+ #: ../views/admin.php:391
121
+ msgid "Apply"
122
+ msgstr "Aplicar"
123
+
124
+ #: ../views/admin.php:176 ../views/form.php:32
125
+ msgid "Display only posts published within the selected Time Range"
126
+ msgstr ""
127
+ "Mostrar s&oacute;lo entradas publicadas en el Rango de Tiempo seleccionado"
128
+
129
+ #: ../views/admin.php:183 ../views/form.php:26
130
+ msgid "Last 24 hours"
131
+ msgstr "&Uacute;ltimas 24 horas"
132
+
133
+ #: ../views/admin.php:184 ../views/form.php:27
134
+ msgid "Last 7 days"
135
+ msgstr "&Uacute;ltimos 7 d&iacute;as"
136
+
137
+ #: ../views/admin.php:185 ../views/form.php:28
138
+ msgid "Last 30 days"
139
+ msgstr "&Uacute;ltimos 30 d&iacute;as"
140
+
141
+ #: ../views/admin.php:186 ../views/form.php:29
142
+ msgid "All-time"
143
+ msgstr "Todos los tiempos"
144
+
145
+ #: ../views/admin.php:208
146
+ msgid "Thumbnails"
147
+ msgstr "Miniaturas"
148
+
149
+ #: ../views/admin.php:213
150
+ msgid "Default thumbnail"
151
+ msgstr "Miniatura por defecto"
152
+
153
+ #: ../views/admin.php:218
154
+ msgid "Upload thumbnail"
155
+ msgstr "Subir miniatura"
156
+
157
+ #: ../views/admin.php:220
158
+ msgid ""
159
+ "How-to: upload (or select) an image, set Size to Full and click on Upload. "
160
+ "After it's done, hit on Apply to save changes"
161
+ msgstr ""
162
+ "Tutorial: sube (o selecciona) una imagen, selecciona Tama&ntilde;o Completo "
163
+ "y haz clic en Subir. Cuando termine, dale a Aplicar para guardar los cambios"
164
+
165
+ #: ../views/admin.php:224
166
+ msgid "Pick image from"
167
+ msgstr "Seleccionar imagen desde"
168
+
169
+ #: ../views/admin.php:227
170
+ msgid "Featured image"
171
+ msgstr "Imagen destacada"
172
+
173
+ #: ../views/admin.php:228
174
+ msgid "First image on post"
175
+ msgstr "Primera imagen de la entrada"
176
+
177
+ #: ../views/admin.php:229
178
+ msgid "Custom field"
179
+ msgstr "Custom field"
180
+
181
+ #: ../views/admin.php:232
182
+ msgid "Tell WordPress Popular Posts where it should get thumbnails from"
183
+ msgstr ""
184
+ "Dile a WordPress Popular Posts de d&oacute;nde debe obtener las miniaturas"
185
+
186
+ #: ../views/admin.php:236
187
+ msgid "Custom field name"
188
+ msgstr "Nombre del custom field"
189
+
190
+ #: ../views/admin.php:242
191
+ msgid "Resize image from Custom field?"
192
+ msgstr "&iexcl;Ajustar la imagen del Custom field?"
193
+
194
+ #: ../views/admin.php:245
195
+ msgid "No, I will upload my own thumbnail"
196
+ msgstr "No, subir&eacute; mi propia miniatura"
197
+
198
+ #: ../views/admin.php:246
199
+ msgid "Yes"
200
+ msgstr "S&iacute;"
201
+
202
+ #: ../views/admin.php:257
203
+ msgid "Empty image cache"
204
+ msgstr "Vaciar el cach&eacute; de im&aacute;genes"
205
+
206
+ #: ../views/admin.php:258
207
+ msgid "Use this button to clear WPP's thumbnails cache"
208
+ msgstr ""
209
+ "Utiliza este bot&oacute;n para vaciar el cach&eacute; de miniaturas de WPP"
210
+
211
+ #: ../views/admin.php:276
212
+ msgid "Data"
213
+ msgstr "Datos"
214
+
215
+ #: ../views/admin.php:281
216
+ msgid "Log views from"
217
+ msgstr "Registrar vistas de"
218
+
219
+ #: ../views/admin.php:284
220
+ msgid "Visitors only"
221
+ msgstr "S&oacute;lo visitantes"
222
+
223
+ #: ../views/admin.php:285
224
+ msgid "Logged-in users only"
225
+ msgstr "S&oacute;lo usuarios conectados"
226
+
227
+ #: ../views/admin.php:286
228
+ msgid "Everyone"
229
+ msgstr "Todos"
230
+
231
+ #: ../views/admin.php:292
232
+ msgid "Ajaxify widget"
233
+ msgstr "Usar Ajax con el widget"
234
+
235
+ #: ../views/admin.php:295 ../views/admin.php:335 ../views/admin.php:382
236
+ msgid "Disabled"
237
+ msgstr "Deshabilitado"
238
+
239
+ #: ../views/admin.php:296 ../views/admin.php:336 ../views/admin.php:381
240
+ msgid "Enabled"
241
+ msgstr "Habilitado"
242
+
243
+ #: ../views/admin.php:300
244
+ msgid ""
245
+ "If you are using a caching plugin such as WP Super Cache, enabling this "
246
+ "feature will keep the popular list from being cached by it"
247
+ msgstr ""
248
+ "Si est&aacute;s utilizando un plugin de cacheo como WP Super Cache, "
249
+ "habilitar esta caracter&iacute;stica evitar&aacute; que la lista de entradas "
250
+ "populares sea guardada en cach&eacute;"
251
+
252
+ #: ../views/admin.php:304
253
+ msgid "WPP Cache Expiry Policy"
254
+ msgstr "WPP Pol&iacute;tica de Expiraci&oacute;n del Cache"
255
+
256
+ #: ../views/admin.php:307
257
+ msgid "Never cache"
258
+ msgstr "Nunca almacenar en cach&eacute;"
259
+
260
+ #: ../views/admin.php:308
261
+ msgid "Enable caching"
262
+ msgstr "Habilitar cach&eacute;"
263
+
264
+ #: ../views/admin.php:312
265
+ msgid ""
266
+ "Sets WPP's cache expiration time. WPP can cache the popular list for a "
267
+ "specified amount of time. Recommended for large / high traffic sites"
268
+ msgstr ""
269
+ "Configura lel tiempo de expiraci&oacute;n del cache de WPP. WPP puede "
270
+ "almacenar en cach&eacute; el listado de entradas populares por una cantidad "
271
+ "de tiempo especificada. Recomendado para sitios web grandes / de alto "
272
+ "tr&aacute;fico"
273
+
274
+ #: ../views/admin.php:316
275
+ msgid "Refresh cache every"
276
+ msgstr "Refrescar el cach&eacute; cada"
277
+
278
+ #: ../views/admin.php:320
279
+ msgid "Minute(s)"
280
+ msgstr "Minuto(s)"
281
+
282
+ #: ../views/admin.php:321
283
+ msgid "Hour(s)"
284
+ msgstr "Hora(s)"
285
+
286
+ #: ../views/admin.php:322
287
+ msgid "Day(s)"
288
+ msgstr "D&iacute;a(s)"
289
+
290
+ #: ../views/admin.php:323
291
+ msgid "Week(s)"
292
+ msgstr "Semana(s)"
293
+
294
+ #: ../views/admin.php:324
295
+ msgid "Month(s)"
296
+ msgstr "Mes(es)"
297
+
298
+ #: ../views/admin.php:325
299
+ msgid "Year(s)"
300
+ msgstr "A&ntilde;o(s)"
301
+
302
+ #: ../views/admin.php:328
303
+ msgid "Really? That long?"
304
+ msgstr "&iquest;En serio? &iquest;Tanto tiempo?"
305
+
306
+ #: ../views/admin.php:332
307
+ msgid "Data Sampling"
308
+ msgstr "Sampleo de Datos"
309
+
310
+ #: ../views/admin.php:340
311
+ #, php-format
312
+ msgid ""
313
+ "By default, WordPress Popular Posts stores in database every single visit "
314
+ "your site receives. For small / medium sites this is generally OK, but on "
315
+ "large / high traffic sites the constant writing to the database may have an "
316
+ "impact on performance. With data sampling, WordPress Popular Posts will "
317
+ "store only a subset of your traffic and report on the tendencies detected in "
318
+ "that sample set (for more on <em>data sampling</em>, please <a href=\"%1$s\" "
319
+ "target=\"_blank\">read here</a>)"
320
+ msgstr ""
321
+ "Por defecto, WordPress Popular Posts almacena en la base de datos todas y "
322
+ "cada una de las visitas que tu sitio recibe. Para sitios web peque&ntilde;"
323
+ "os / medianos esto est&aacute; bien, pero en sitios grandes / de alto "
324
+ "tr&aacute;fico la escritura constante en la base de datos pudiera causar un "
325
+ "impacto en el rendimiento. Con el sampleo de datos, WordPress Popular Posts "
326
+ "almacenar&aacute; s&oacute;lo un subconjunto de tu tr&aacute;fico y "
327
+ "reportar&aacute; de acuerdo a las tendencias detectadas en dicho sub "
328
+ "conjunto (para mayor informaci&oacute;n acerca de; <em>sampleo de data</em>, "
329
+ "por favor <a href=\"%1$s\" target=\"_blank\">leer aqu&iacute;</a>)"
330
+
331
+ #: ../views/admin.php:344
332
+ msgid "Sample Rate"
333
+ msgstr "Rata de Sampleo"
334
+
335
+ #: ../views/admin.php:348
336
+ #, php-format
337
+ msgid ""
338
+ "A sampling rate of %d is recommended for large / high traffic sites. For "
339
+ "lower traffic sites, you should lower the value"
340
+ msgstr ""
341
+ "Se recomienda una rata de sampleo de %d para sitios grandes / de alto "
342
+ "tr&aacute;fico. Para sitios con menos tr&aacute;fico, deber&iacute;as "
343
+ "disminuir el valor"
344
+
345
+ #: ../views/admin.php:363
346
+ msgid "Miscellaneous"
347
+ msgstr "Miscel&aacute;neos"
348
+
349
+ #: ../views/admin.php:368
350
+ msgid "Open links in"
351
+ msgstr "Abrir links en"
352
+
353
+ #: ../views/admin.php:371
354
+ msgid "Current window"
355
+ msgstr "Ventana actual"
356
+
357
+ #: ../views/admin.php:372
358
+ msgid "New tab/window"
359
+ msgstr "Nueva pesta&ntilde;a/ventana"
360
+
361
+ #: ../views/admin.php:378
362
+ msgid "Use plugin's stylesheet"
363
+ msgstr "Utilizar la hoja de estilos del plugin"
364
+
365
+ #: ../views/admin.php:385
366
+ msgid ""
367
+ "By default, the plugin includes a stylesheet called wpp.css which you can "
368
+ "use to style your popular posts listing. If you wish to use your own "
369
+ "stylesheet or do not want it to have it included in the header section of "
370
+ "your site, use this."
371
+ msgstr ""
372
+ "Por defecto, el plugin incluye una hoja de estilos llamada wpp.css que "
373
+ "puedes utilizar para darle estilos a tu listado de entradas populares. Si "
374
+ "deseas utilizar tu propia hoja de estilos, o no quieres que wpp.css se "
375
+ "incluya en el header de tu sitio web, utiliza esto."
376
+
377
+ #: ../views/admin.php:402
378
+ msgid ""
379
+ "WordPress Popular Posts maintains data in two separate tables: one for "
380
+ "storing the most popular entries on a daily basis (from now on, \"cache\"), "
381
+ "and another one to keep the All-time data (from now on, \"historical data\" "
382
+ "or just \"data\"). If for some reason you need to clear the cache table, or "
383
+ "even both historical and cache tables, please use the buttons below to do so."
384
+ msgstr ""
385
+ "WordPress Popular Posts mantiene la data en dos tablas separadas: una para "
386
+ "guardar diariamente las entradas m&aacute;s populares (\"cach&eacute;\", de "
387
+ "aqu&iacute; en adelante), y otra tabla para almacenar la data de Todos los "
388
+ "tiempos (\"data hist&oacute;rica\" o simplemente \"data\"). Si por alguna "
389
+ "raz&oacute;n necesitas vaciar la tabla cach&eacute;, o inclusive las dos "
390
+ "tablas hist&oacute;ricas y de cach&eacute;, por favor utiliza los botones de "
391
+ "abajo."
392
+
393
+ #: ../views/admin.php:403
394
+ msgid "Empty cache"
395
+ msgstr "Vaciar el cach&eacute;"
396
+
397
+ #: ../views/admin.php:403
398
+ msgid "Use this button to manually clear entries from WPP cache only"
399
+ msgstr ""
400
+ "Utiliza este bot&oacute;n para vaciar manualmente s&oacute;lo las entradas "
401
+ "del cach&eacute; de WPP"
402
+
403
+ #: ../views/admin.php:404
404
+ msgid "Clear all data"
405
+ msgstr "Eliminar toda la data"
406
+
407
+ #: ../views/admin.php:404
408
+ msgid "Use this button to manually clear entries from all WPP data tables"
409
+ msgstr ""
410
+ "Utiliza este bot&oacute;n para limpiar manualmente las tablas de datos de WPP"
411
+
412
+ #: ../views/admin.php:411
413
+ #, php-format
414
+ msgid ""
415
+ "With the following parameters you can customize the popular posts list when "
416
+ "using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or "
417
+ "the <a href=\"%2$s\">[wpp] shortcode</a>."
418
+ msgstr ""
419
+ "Con los siguientes par&aacute;metros puedes personalizar la lista de "
420
+ "entradas populares al utilizar tanto el <a href=\"%1$s"
421
+ "\">wpp_get_most_popular() template tag</a> como el <a href=\"%2$s\">[wpp] "
422
+ "shortcode</a>."
423
+
424
+ #: ../views/admin.php:419
425
+ msgid "Parameter"
426
+ msgstr "Par&aacute;metro"
427
+
428
+ #: ../views/admin.php:420 ../views/admin.php:734
429
+ msgid "What it does "
430
+ msgstr "Qu&eacute; hace"
431
+
432
+ #: ../views/admin.php:421
433
+ msgid "Possible values"
434
+ msgstr "Valores posibles"
435
+
436
+ #: ../views/admin.php:422
437
+ msgid "Defaults to"
438
+ msgstr "Por defecto"
439
+
440
+ #: ../views/admin.php:423 ../views/admin.php:736
441
+ msgid "Example"
442
+ msgstr "Ejemplo"
443
+
444
+ #: ../views/admin.php:429
445
+ msgid "Sets a heading for the list"
446
+ msgstr "Configura el encabezado de la lista"
447
+
448
+ #: ../views/admin.php:430 ../views/admin.php:437 ../views/admin.php:444
449
+ #: ../views/admin.php:479 ../views/admin.php:486 ../views/admin.php:493
450
+ #: ../views/admin.php:500 ../views/admin.php:591 ../views/admin.php:605
451
+ #: ../views/admin.php:612
452
+ msgid "Text string"
453
+ msgstr "Texto"
454
+
455
+ #: ../views/admin.php:431
456
+ msgid "Popular Posts"
457
+ msgstr "Entradas Populares"
458
+
459
+ #: ../views/admin.php:436
460
+ msgid "Set the opening tag for the heading of the list"
461
+ msgstr "Configura la etiqueta de apertura para el encabezado de la lista"
462
+
463
+ #: ../views/admin.php:443
464
+ msgid "Set the closing tag for the heading of the list"
465
+ msgstr "Configura la etiqueta de cierre para el encabezado de la lista"
466
+
467
+ #: ../views/admin.php:450
468
+ msgid "Sets the maximum number of popular posts to be shown on the listing"
469
+ msgstr ""
470
+ "Configura el m&aacute;ximo de entradas populares a ser mostradas en la lista"
471
+
472
+ #: ../views/admin.php:451 ../views/admin.php:507 ../views/admin.php:521
473
+ #: ../views/admin.php:542 ../views/admin.php:549
474
+ msgid "Positive integer"
475
+ msgstr "Entero positivo"
476
+
477
+ #: ../views/admin.php:457
478
+ msgid ""
479
+ "Tells WordPress Popular Posts to retrieve the most popular entries within "
480
+ "the time range specified by you"
481
+ msgstr ""
482
+ "Le indica a WordPress Popular Posts que debe listar aquellas entradas que "
483
+ "hayan sido populares dentro del rango de tiempo especificado por ti"
484
+
485
+ #: ../views/admin.php:464
486
+ msgid ""
487
+ "Tells WordPress Popular Posts to retrieve the most popular entries published "
488
+ "within the time range specified by you"
489
+ msgstr ""
490
+ "Le indica a WordPress Popular Posts que debe listar aquellas entradas "
491
+ "populares publicadas dentro del rango de tiempo especificado por ti"
492
+
493
+ #: ../views/admin.php:471
494
+ msgid "Sets the sorting option of the popular posts"
495
+ msgstr "Configura el ordenado de las entradas populares"
496
+
497
+ #: ../views/admin.php:472
498
+ msgid "(for average views per day)"
499
+ msgstr "(para el porcentaje de vistas por d&iacute;a)"
500
+
501
+ #: ../views/admin.php:478
502
+ msgid "Defines the type of posts to show on the listing"
503
+ msgstr "Define el tipo de entrada a mostrar en el listado"
504
+
505
+ #: ../views/admin.php:485
506
+ msgid ""
507
+ "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
508
+ "form the listing."
509
+ msgstr ""
510
+ "Si se configura, WordPress Popular Posts excluir&aacute; todos los IDs de "
511
+ "las entradas especificadas."
512
+
513
+ #: ../views/admin.php:487 ../views/admin.php:494 ../views/admin.php:501
514
+ msgid "None"
515
+ msgstr "Ninguno"
516
+
517
+ #: ../views/admin.php:492
518
+ msgid ""
519
+ "If set, WordPress Popular Posts will retrieve all entries that belong to the "
520
+ "specified category(ies) ID(s). If a minus sign is used, the category(ies) "
521
+ "will be excluded instead."
522
+ msgstr ""
523
+ "Si se configura, WordPress Popular Posts mostrar&aacute; todas las entradas "
524
+ "que pertenecen a la(s) categor&iacute;a(s) especificada(s). Si se usa un "
525
+ "signo negativo, la(s) categor&iacute;a(s) ser&aacute;(n) exclu&iacute;da(s)."
526
+
527
+ #: ../views/admin.php:499
528
+ msgid ""
529
+ "If set, WordPress Popular Posts will retrieve all entries created by "
530
+ "specified author(s) ID(s)."
531
+ msgstr ""
532
+ "Si se configura, WordPress Popular Posts traer&aacute; todas las entradas "
533
+ "creadas por el (los) ID(s) de autor(es) especificado(s)."
534
+
535
+ #: ../views/admin.php:506
536
+ msgid ""
537
+ "If set, WordPress Popular Posts will shorten each post title to \"n\" "
538
+ "characters whenever possible"
539
+ msgstr ""
540
+ "Si se configura, WordPress Popular Posts acortar&aacute; cada titulo en \"n"
541
+ "\" caracteres cuando sea posible"
542
+
543
+ #: ../views/admin.php:513
544
+ msgid ""
545
+ "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
546
+ "words instead of characters"
547
+ msgstr ""
548
+ "Si se pasa el valor 1, WordPress Popular Posts acortar&aacute; cada titulo "
549
+ "en \"n\" palabras en vez de caracteres"
550
+
551
+ #: ../views/admin.php:520
552
+ msgid ""
553
+ "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
554
+ "characters long from the content of each post listed as popular"
555
+ msgstr ""
556
+ "Si se configura, WordPress Popular Posts construir&aacute; e incluir&aacute; "
557
+ "un extracto de \"n\" caracteres del contenido de cada entrada listada como "
558
+ "popular"
559
+
560
+ #: ../views/admin.php:527
561
+ msgid ""
562
+ "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
563
+ "italic, etc) and hyperlinks found in the excerpt"
564
+ msgstr ""
565
+ "Si se configura, WordPress Popular Posts mantendr&aacute; todas las "
566
+ "etiquetas de estilo (strong, italic, etc) y los hiperv&iacute;nculos "
567
+ "encontrados en el extracto"
568
+
569
+ #: ../views/admin.php:534
570
+ msgid ""
571
+ "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
572
+ "instead of characters"
573
+ msgstr ""
574
+ "Si se configura, WordPress Popular Posts acortar&aacute; el resumen en \"n\" "
575
+ "palabras en vez de caracteres"
576
+
577
+ #: ../views/admin.php:541
578
+ msgid ""
579
+ "If set, and if your current server configuration allows it, you will be able "
580
+ "to display thumbnails of your posts. This attribute sets the width for "
581
+ "thumbnails"
582
+ msgstr ""
583
+ "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
584
+ "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
585
+ "configura el ancho de tus miniaturas"
586
+
587
+ #: ../views/admin.php:548
588
+ msgid ""
589
+ "If set, and if your current server configuration allows it, you will be able "
590
+ "to display thumbnails of your posts. This attribute sets the height for "
591
+ "thumbnails"
592
+ msgstr ""
593
+ "Si se configura, y si la configuraci&oacute;n actual de tu servidor lo "
594
+ "permite, podr&aacute;s mostrar miniaturas de tus entradas. Este atributo "
595
+ "configura el alto de tus miniaturas"
596
+
597
+ #: ../views/admin.php:555
598
+ msgid ""
599
+ "If set, and if the WP-PostRatings plugin is installed and enabled on your "
600
+ "blog, WordPress Popular Posts will show how your visitors are rating your "
601
+ "entries"
602
+ msgstr ""
603
+ "Si se configura, y si el plugin WP-PostRatings est&aacute; instalado y "
604
+ "habilitado en tu blog, WordPress Popular Posts mostrar&aacute; como tus "
605
+ "visitantes han calificado a tus entradas"
606
+
607
+ #: ../views/admin.php:562
608
+ msgid ""
609
+ "If set, WordPress Popular Posts will show how many comments each popular "
610
+ "post has got until now"
611
+ msgstr ""
612
+ "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntos "
613
+ "comentarios ha obtenido cada entrada popular hasta ahora"
614
+
615
+ #: ../views/admin.php:569
616
+ msgid ""
617
+ "If set, WordPress Popular Posts will show how many views each popular post "
618
+ "has got since it was installed"
619
+ msgstr ""
620
+ "Si se configura, WordPress Popular Posts mostrar&aacute; cu&aacute;ntas "
621
+ "vistas ha obtenido cada entrada popular desde que el plugin fue instalado"
622
+
623
+ #: ../views/admin.php:576
624
+ msgid ""
625
+ "If set, WordPress Popular Posts will show who published each popular post on "
626
+ "the list"
627
+ msgstr ""
628
+ "Si se configura, WordPress Popular Posts mostrar&aacute; qui&eacute;n "
629
+ "public&oacute; cada entrada popular de la lista"
630
+
631
+ #: ../views/admin.php:583
632
+ msgid ""
633
+ "If set, WordPress Popular Posts will display the date when each popular post "
634
+ "on the list was published"
635
+ msgstr ""
636
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; la fecha en la que fue "
637
+ "publicada cada entrada popular"
638
+
639
+ #: ../views/admin.php:590
640
+ msgid "Sets the date format"
641
+ msgstr "Configura el formato de la fecha"
642
+
643
+ #: ../views/admin.php:597
644
+ msgid "If set, WordPress Popular Posts will display the category"
645
+ msgstr ""
646
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; la categor&iacute;a"
647
+
648
+ #: ../views/admin.php:604
649
+ msgid "Sets the opening tag for the listing"
650
+ msgstr "Configura la etiqueta de apertura del listado"
651
+
652
+ #: ../views/admin.php:611
653
+ msgid "Sets the closing tag for the listing"
654
+ msgstr "Configura la etiqueta de cierre del listado"
655
+
656
+ #: ../views/admin.php:618
657
+ msgid "Sets the HTML structure of each post"
658
+ msgstr "Configura la estructura HTML de cada entrada"
659
+
660
+ #: ../views/admin.php:619
661
+ msgid "Text string, custom HTML"
662
+ msgstr "Texto, HTML personalizado"
663
+
664
+ #: ../views/admin.php:619
665
+ msgid "Available Content Tags"
666
+ msgstr "Content Tags disponibles"
667
+
668
+ #: ../views/admin.php:619
669
+ msgid "displays thumbnail linked to post/page"
670
+ msgstr "muestra la miniatura vinculada a la entrada/p&aacute;gina"
671
+
672
+ #: ../views/admin.php:619
673
+ msgid "displays thumbnail image without linking to post/page"
674
+ msgstr "muestra la imagen miniatura sin un link hacia la entrada/p&aacute;gina"
675
+
676
+ #: ../views/admin.php:619
677
+ msgid "displays linked post/page title"
678
+ msgstr ""
679
+ "muestra el t&iacute;tulo de la entrada/p&aacute;gina con v&iacute;nculo"
680
+
681
+ #: ../views/admin.php:619
682
+ msgid ""
683
+ "displays post/page excerpt, and requires excerpt_length to be greater than 0"
684
+ msgstr ""
685
+ "muestra el resumen de la entrada/p&aacute;gina, requiere que excerpt_length "
686
+ "sea mayor a 0"
687
+
688
+ #: ../views/admin.php:619
689
+ msgid "displays the default stats tags"
690
+ msgstr "muestra el stats tag por defecto"
691
+
692
+ #: ../views/admin.php:619
693
+ msgid ""
694
+ "displays post/page current rating, requires WP-PostRatings installed and "
695
+ "enabled"
696
+ msgstr ""
697
+ "muestra el rating actual de la entrada/p&aacute;gina, requiere que WP-"
698
+ "PostRatings est&eacute; instalado y activo"
699
+
700
+ #: ../views/admin.php:619
701
+ msgid ""
702
+ "displays post/page current rating as an integer, requires WP-PostRatings "
703
+ "installed and enabled"
704
+ msgstr ""
705
+ "muestra el rating actual de la entrada/p&aacute;gina como un entero, "
706
+ "requiere que WP-PostRatings est&eacute; instalado y activo"
707
+
708
+ #: ../views/admin.php:619
709
+ msgid "outputs the URL of the post/page"
710
+ msgstr "muestra la URL de la entrada/p&aacute;gina"
711
+
712
+ #: ../views/admin.php:619
713
+ msgid "displays post/page title, no link"
714
+ msgstr ""
715
+ "muestra el t&iacute;tulo de la entrada/p&aacute;gina, sin v&iacute;nculo"
716
+
717
+ #: ../views/admin.php:619
718
+ msgid "displays linked author name, requires stats_author=1"
719
+ msgstr ""
720
+ "muestra el nombre del autor con v&iacute;nculo, requiere stats_author=1"
721
+
722
+ #: ../views/admin.php:619
723
+ msgid "displays linked category name, requires stats_category=1"
724
+ msgstr ""
725
+ "muestra el nombre de la categor&iacute;a vinculado, requiere stats_category=1"
726
+
727
+ #: ../views/admin.php:619
728
+ msgid "displays views count only, no text"
729
+ msgstr "muestra el n&uacute;mero de vistas, sin texto adicional"
730
+
731
+ #: ../views/admin.php:619
732
+ msgid "displays comments count only, no text, requires stats_comments=1"
733
+ msgstr ""
734
+ "muestra el n&uacute;mero de comentarios, sin texto adicional, requiere "
735
+ "stats_comments=1"
736
+
737
+ #: ../views/admin.php:619
738
+ msgid "displays post/page date, requires stats_date=1"
739
+ msgstr "muestra la fecha de la entrada/p&aacute;gina, requiere stats_date=1"
740
+
741
+ #: ../views/admin.php:631
742
+ msgid "What does \"Title\" do?"
743
+ msgstr "&iquest;Para qu&eacute; es \"T&iacute;tulo\"?"
744
+
745
+ #: ../views/admin.php:634
746
+ msgid ""
747
+ "It allows you to show a heading for your most popular posts listing. If left "
748
+ "empty, no heading will be displayed at all."
749
+ msgstr ""
750
+ "Te permite mostrar un encabezado para tu lista de entradas populares. Si se "
751
+ "deja vac&iacute;o, no se mostrar&aacute; el encabezado."
752
+
753
+ #: ../views/admin.php:637
754
+ msgid "What is Time Range for?"
755
+ msgstr "&iquest;Para qu&eacute; es \"Rango de Tiempo\"?"
756
+
757
+ #: ../views/admin.php:639
758
+ msgid ""
759
+ "It will tell WordPress Popular Posts to retrieve all posts with most views / "
760
+ "comments within the selected time range."
761
+ msgstr ""
762
+ "Le indica a WordPress Popular Posts que muestre las entradas m&aacute;s "
763
+ "vistas / comentadas en el rango de tiempo seleccionado."
764
+
765
+ #: ../views/admin.php:642
766
+ msgid "What is \"Sort post by\" for?"
767
+ msgstr "&iquest;Para qu&eacute; es \"Ordenar entradas por\"?"
768
+
769
+ #: ../views/admin.php:644
770
+ msgid ""
771
+ "It allows you to decide whether to order your popular posts listing by total "
772
+ "views, comments, or average views per day."
773
+ msgstr ""
774
+ "Te permite decidir si ordenar tus entradas populares por la cantidad total "
775
+ "de vistas, comentarios, o por el porcentaje diario de vistas."
776
+
777
+ #: ../views/admin.php:647
778
+ msgid "What does \"Display post rating\" do?"
779
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar rating de la entrada\"?"
780
+
781
+ #: ../views/admin.php:649
782
+ msgid ""
783
+ "If checked, WordPress Popular Posts will show how your readers are rating "
784
+ "your most popular posts. This feature requires having WP-PostRatings plugin "
785
+ "installed and enabled on your blog for it to work."
786
+ msgstr ""
787
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; c&oacute;mo tus "
788
+ "lectores est&aacute;n calificando tus entradas populares. Esta "
789
+ "caracter&iacute;stica requiere que el plugin WP-PostRatings est&eacute; "
790
+ "instalado y habilitado en tu blog para que funcione."
791
+
792
+ #: ../views/admin.php:652
793
+ msgid "What does \"Shorten title\" do?"
794
+ msgstr "&iquest;Qu&eacute; hace \"Acortar t&iacute;tulo\"?"
795
+
796
+ #: ../views/admin.php:654
797
+ msgid ""
798
+ "If checked, all posts titles will be shortened to \"n\" characters/words. A "
799
+ "new \"Shorten title to\" option will appear so you can set it to whatever "
800
+ "you like."
801
+ msgstr ""
802
+ "Si se tilda, todos los t&iacute;tulos de las entradas se acortar&aacute;n \"n"
803
+ "\" caracteres/palabras. Una nueva opci&oacute;n \"Acortar t&iacute;tulo en\" "
804
+ "se mostrar&aacute; para que puedas configurarlo como quieras."
805
+
806
+ #: ../views/admin.php:657
807
+ msgid "What does \"Display post excerpt\" do?"
808
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar resumen de la entrada\"?"
809
+
810
+ #: ../views/admin.php:659
811
+ msgid ""
812
+ "If checked, WordPress Popular Posts will also include a small extract of "
813
+ "your posts in the list. Similarly to the previous option, you will be able "
814
+ "to decide how long the post excerpt should be."
815
+ msgstr ""
816
+ "Si se tilda, WordPress Popular Posts incluir&aacute; un peque&ntilde;o "
817
+ "extracto de tus entradas en la lista. Similar a la opci&oacute;n anterior, "
818
+ "podr&aacute;s decidir qu&eacute; tan largo debe ser el extracto."
819
+
820
+ #: ../views/admin.php:662
821
+ msgid "What does \"Keep text format and links\" do?"
822
+ msgstr "&iquest;Qu&eacute; hace \"Mantener el formato de texto y links\"?"
823
+
824
+ #: ../views/admin.php:664
825
+ msgid ""
826
+ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular "
827
+ "Posts will keep the styling tags (eg. bold, italic, etc) that were found in "
828
+ "the excerpt. Hyperlinks will remain intact, too."
829
+ msgstr ""
830
+ "Si se tilda, y si la opci&oacute;n Mostrar Resumen est&aacute; habilitada, "
831
+ "WordPress Popular Posts mantendr&aacute; las etiquetas de estilos que se "
832
+ "encontraron en el extracto. Los hiperv&iacute;nculos tambi&eacute;n se "
833
+ "mantendr&aacute;n."
834
+
835
+ #: ../views/admin.php:667
836
+ msgid "What is \"Post type\" for?"
837
+ msgstr "&iquest;Para qu&eacute; es el \"Post type\"?"
838
+
839
+ #: ../views/admin.php:669
840
+ msgid ""
841
+ "This filter allows you to decide which post types to show on the listing. By "
842
+ "default, it will retrieve only posts and pages (which should be fine for "
843
+ "most cases)."
844
+ msgstr ""
845
+ "Este filtro te permite decidir que tipo de entradas deseas mostrar en el "
846
+ "listado. Por defecto, trater&aacute; s&oacute;lo entradas y p&aacute;ginas "
847
+ "(que es lo que se quiere, en la mayor&iacute;a de los casos)."
848
+
849
+ #: ../views/admin.php:672
850
+ msgid "What is \"Category(ies) ID(s)\" for?"
851
+ msgstr "&iquest;Para qu&eacute; es el \"ID(s) de Categor&iacute;a(s)\"?"
852
+
853
+ #: ../views/admin.php:674
854
+ msgid ""
855
+ "This filter allows you to select which categories should be included or "
856
+ "excluded from the listing. A negative sign in front of the category ID "
857
+ "number will exclude posts belonging to it from the list, for example. You "
858
+ "can specify more than one ID with a comma separated list."
859
+ msgstr ""
860
+ "Este filtro te permite seleccionar qu&eacute; categor&iacute;as deber&iacute;"
861
+ "an ser inclu&iacute;das o exclu&iacute;das del listado. Un signo negativo "
862
+ "enfrente del ID de la categor&iacute;a la excluir&aacute; de la lista, por "
863
+ "ejemplo. Puedes especificar m&aacute;s de un ID separ&aacute;ndolos con "
864
+ "comas."
865
+
866
+ #: ../views/admin.php:677
867
+ msgid "What is \"Author(s) ID(s)\" for?"
868
+ msgstr "&iquest;Para qu&eacute; es el \"ID de Autor(es)\"?"
869
+
870
+ #: ../views/admin.php:679
871
+ msgid ""
872
+ "Just like the Category filter, this one lets you filter posts by author ID. "
873
+ "You can specify more than one ID with a comma separated list."
874
+ msgstr ""
875
+ "Justo como el filtro de Categor&iacute;a, &eacute;ste te permite filtrar "
876
+ "entradas por ID del autor. Puedes especificar m&aacute;s de un ID "
877
+ "separ&aacute;ndolos con comas."
878
+
879
+ #: ../views/admin.php:682
880
+ msgid "What does \"Display post thumbnail\" do?"
881
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar miniatura de la entrada\"?"
882
+
883
+ #: ../views/admin.php:684
884
+ msgid ""
885
+ "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail "
886
+ "of each post. You can set up the source of the thumbnail via Settings - "
887
+ "WordPress Popular Posts - Tools."
888
+ msgstr ""
889
+ "Si se tilda, WordPress Popular Posts intentar&aacute; obtener la imagen "
890
+ "miniatura de cada entrada. Puedes configurar la fuente de la miniatura via "
891
+ "Configuraci&oacute;n - Wordpress Popular Posts - Herramientas."
892
+
893
+ #: ../views/admin.php:687
894
+ msgid "What does \"Display comment count\" do?"
895
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar cantidad de comentarios\"?"
896
+
897
+ #: ../views/admin.php:689
898
+ msgid ""
899
+ "If checked, WordPress Popular Posts will display how many comments each "
900
+ "popular post has got in the selected Time Range."
901
+ msgstr ""
902
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; cu&aacute;ntos "
903
+ "comentarios ha obtenido cada entrada popular dentro del Rango de Tiempo "
904
+ "seleccionado."
905
+
906
+ #: ../views/admin.php:692
907
+ msgid "What does \"Display views\" do?"
908
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar vistas\"?"
909
+
910
+ #: ../views/admin.php:694
911
+ msgid ""
912
+ "If checked, WordPress Popular Posts will show how many pageviews a single "
913
+ "post has gotten in the selected Time Range."
914
+ msgstr ""
915
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; cu&aacute;ntas vistas "
916
+ "ha obtenido cada entrada en el Rango de Tiempo seleccionado."
917
+
918
+ #: ../views/admin.php:697
919
+ msgid "What does \"Display author\" do?"
920
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar autor\"?"
921
+
922
+ #: ../views/admin.php:699
923
+ msgid ""
924
+ "If checked, WordPress Popular Posts will display the name of the author of "
925
+ "each entry listed."
926
+ msgstr ""
927
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; el nombre del autor de "
928
+ "cada entrada listada."
929
+
930
+ #: ../views/admin.php:702
931
+ msgid "What does \"Display date\" do?"
932
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar fecha\"?"
933
+
934
+ #: ../views/admin.php:704
935
+ msgid ""
936
+ "If checked, WordPress Popular Posts will display the date when each popular "
937
+ "posts was published."
938
+ msgstr ""
939
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; la fecha en la que fue "
940
+ "publicada cada entrada popular."
941
+
942
+ #: ../views/admin.php:707
943
+ msgid "What does \"Display category\" do?"
944
+ msgstr "&iquest;Qu&eacute; hace \"Mostrar categor&iacute;a\"?"
945
+
946
+ #: ../views/admin.php:709
947
+ msgid ""
948
+ "If checked, WordPress Popular Posts will display the category of each post."
949
+ msgstr ""
950
+ "Si se tilda, WordPress Popular Posts mostrar&aacute; la categor&iacute;a de "
951
+ "cada entrada."
952
+
953
+ #: ../views/admin.php:712
954
+ msgid "What does \"Use custom HTML Markup\" do?"
955
+ msgstr "&iquest;Qu&eacute; hace \"Utilizar Markup HTML personalizado\"?"
956
+
957
+ #: ../views/admin.php:714
958
+ msgid ""
959
+ "If checked, you will be able to customize the HTML markup of your popular "
960
+ "posts listing. For example, you can decide whether to wrap your posts in an "
961
+ "unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is "
962
+ "for you!"
963
+ msgstr ""
964
+ "Si se tilda, podr&aacute;s personalizad el markup HTML de tu listado de "
965
+ "entradas populares. Por ejemplo, podr&aacute;s decidir si colocar tu listado "
966
+ "en una lista desordenada, una ordenada, dentro de un div, etc. Si sabes "
967
+ "xHTML/CSS, &iexcl;esto es para ti!"
968
+
969
+ #: ../views/admin.php:717
970
+ msgid "What are \"Content Tags\"?"
971
+ msgstr "&iquest;Qu&eacute; son los \"Content Tags\"?"
972
+
973
+ #: ../views/admin.php:719
974
+ #, php-format
975
+ msgid ""
976
+ "Content Tags are codes to display a variety of items on your popular posts "
977
+ "custom HTML structure. For example, setting it to \"{title}: "
978
+ "{summary}\" (without the quotes) would display \"Post title: excerpt of the "
979
+ "post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank"
980
+ "\">Parameters</a> section."
981
+ msgstr ""
982
+ "Los Content Tags son etiquetas que sirven para mostrar una variedad de items "
983
+ "en la estructura HTML de tu lista. Por ejemplo, configurarlo como \"{title}: "
984
+ "{summary}\" (sin las comillas) mostrar&iacute;a \"T&iacute;tulo de la "
985
+ "entrada: extracto de la entrada aqu&iacute;\". Para ver otras Content Tags, "
986
+ "ver la secci&oacute;n <a href=\"%s\" target=\"_blank\">Par&aacute;metros</a."
987
+
988
+ #: ../views/admin.php:722
989
+ msgid "What are \"Template Tags\"?"
990
+ msgstr "&iquest;Qu&eacute; son los \"Template Tags\"?"
991
+
992
+ #: ../views/admin.php:724
993
+ msgid ""
994
+ "Template Tags are simply php functions that allow you to perform certain "
995
+ "actions. For example, WordPress Popular Posts currently supports two "
996
+ "different template tags: wpp_get_mostpopular() and wpp_get_views()."
997
+ msgstr ""
998
+ "Los Template Tags son simplemente funciones php que nos permiten realizar "
999
+ "ciertas acciones. Por ejemplo, WordPress Popular Posts actualmente soporta "
1000
+ "dos template tags diferentes: wpp_get_mostpopular() y wpp_get_views()."
1001
+
1002
+ #: ../views/admin.php:727
1003
+ msgid "What are the template tags that WordPress Popular Posts supports?"
1004
+ msgstr ""
1005
+ "&iquest;Cu&aacute;les son los Template Tags soportados por WordPress Popular "
1006
+ "Posts?"
1007
+
1008
+ #: ../views/admin.php:729
1009
+ msgid ""
1010
+ "The following are the template tags supported by WordPress Popular Posts"
1011
+ msgstr ""
1012
+ "Los siguientes son los template tags soportados por WordPress Popular Posts"
1013
+
1014
+ #: ../views/admin.php:733
1015
+ msgid "Template tag"
1016
+ msgstr "Template tag"
1017
+
1018
+ #: ../views/admin.php:742
1019
+ #, php-format
1020
+ msgid ""
1021
+ "Similar to the widget functionality, this tag retrieves the most popular "
1022
+ "posts on your blog. This function also accepts <a href=\"%1$s\">parameters</"
1023
+ "a> so you can customize your popular listing, but these are not required."
1024
+ msgstr ""
1025
+ "Parecido a la funcionalidad del widget, esta etiqueta obtiene las entradas "
1026
+ "m&aacute;s populares de tu blog. Esta funci&oacute;n tambi&eacute;n acepta "
1027
+ "<a href=\"%1$s\">par&aacute;metros</a> para que puedas personalizar el "
1028
+ "listado, pero &eacute;stos no son requeridos."
1029
+
1030
+ #: ../views/admin.php:743
1031
+ #, php-format
1032
+ msgid ""
1033
+ "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete "
1034
+ "list of attributes."
1035
+ msgstr ""
1036
+ "Por favor ver la <a href=\"%1$s\">secci&oacute;n Par&aacute;metros</a> para "
1037
+ "la lista completa de atributos."
1038
+
1039
+ #: ../views/admin.php:748
1040
+ msgid ""
1041
+ "Displays the number of views of a single post. Post ID is required or it "
1042
+ "will return false."
1043
+ msgstr ""
1044
+ "Muestra la cantidad de vistas de una entrada. El ID de la entrada es "
1045
+ "requerido, o la funci&oacute;n devolver&aacute; false."
1046
+
1047
+ #: ../views/admin.php:749
1048
+ msgid "Post ID"
1049
+ msgstr "ID de la entrada"
1050
+
1051
+ #: ../views/admin.php:756
1052
+ msgid "What are \"shortcodes\"?"
1053
+ msgstr "&iquest;Qu&eacute; son los \"shortcodes\"?"
1054
+
1055
+ #: ../views/admin.php:758
1056
+ #, php-format
1057
+ msgid ""
1058
+ "Shortcodes are similar to BB Codes, these allow us to call a php function by "
1059
+ "simply typing something like [shortcode]. With WordPress Popular Posts, the "
1060
+ "shortcode [wpp] will let you insert a list of the most popular posts in "
1061
+ "posts content and pages too! For more information about shortcodes, please "
1062
+ "visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page."
1063
+ msgstr ""
1064
+ "Los Shortcodes son similares a los BB Codes, &eacute;stos nos permiten "
1065
+ "llamar a una funci&oacute;n php simplemente escribiendo algo como "
1066
+ "[shortcode]. Con WordPress Popular Posts, el shortcode [wpp] te "
1067
+ "permitir&aacute; insertar una lista de las entradas m&aacute;s populares en "
1068
+ "el contenido de tus entradas y en p&aacute;ginas tambi&eacute;n. Para mayor "
1069
+ "informaci&oacute;n sobre los shortcodes, por favor visita la p&aacute;gina "
1070
+ "<a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a>."
1071
+
1072
+ #: ../views/admin.php:766
1073
+ #, php-format
1074
+ msgid "About WordPress Popular Posts %s"
1075
+ msgstr "Acerca de WordPress Popular Posts %s"
1076
+
1077
+ #: ../views/admin.php:767
1078
+ msgid "This version includes the following changes"
1079
+ msgstr "Esta versi&oacute;n incluye los siguientes cambios"
1080
+
1081
+ #: ../views/admin.php:797
1082
+ msgid "Do you like this plugin?"
1083
+ msgstr "&iquest;Te gusta este plugin?"
1084
+
1085
+ #: ../views/admin.php:804
1086
+ msgid ""
1087
+ "Each donation motivates me to keep releasing free stuff for the WordPress "
1088
+ "community!"
1089
+ msgstr ""
1090
+ "&iexcl;Cada donaci&oacute;n me motiva a seguir publicando cosas gratuitas "
1091
+ "para la comunidad de WordPress!"
1092
+
1093
+ #: ../views/admin.php:805
1094
+ #, php-format
1095
+ msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
1096
+ msgstr ""
1097
+ "&iexcl;Puedes <a href=\"%s\" target=\"_blank\">dejar una rese&ntilde;a</a> "
1098
+ "tambi&eacute;n!"
1099
+
1100
+ #: ../views/admin.php:809
1101
+ msgid "Need help?"
1102
+ msgstr "&iquest;Necesitas ayuda?"
1103
+
1104
+ #: ../views/admin.php:810
1105
+ #, php-format
1106
+ msgid ""
1107
+ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions "
1108
+ "and feedback."
1109
+ msgstr ""
1110
+ "Visita <a href=\"%s\" target=\"_blank\">el foro</a> para obtener soporte, "
1111
+ "hacer preguntas y dejar tu feedback."
1112
+
1113
+ #: ../views/admin.php:811
1114
+ msgid "Let's make this plugin even better!"
1115
+ msgstr "&iexcl;Hagamos a este plugin inclusive mejor!"
1116
+
1117
+ #: ../views/form.php:2
1118
+ msgid "Title"
1119
+ msgstr "T&iacute;tulo"
1120
+
1121
+ #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24
1122
+ #: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43
1123
+ #: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63
1124
+ #: ../views/form.php:66 ../views/form.php:73 ../views/form.php:103
1125
+ #: ../views/form.php:105 ../views/form.php:107 ../views/form.php:109
1126
+ #: ../views/form.php:121 ../views/form.php:127
1127
+ msgid "What is this?"
1128
+ msgstr "&iquest;Qu&eacute; es esto?"
1129
+
1130
+ #: ../views/form.php:7
1131
+ msgid "Show up to"
1132
+ msgstr "Mostrar hasta"
1133
+
1134
+ #: ../views/form.php:8
1135
+ msgid "posts"
1136
+ msgstr "entradas"
1137
+
1138
+ #: ../views/form.php:12
1139
+ msgid "Sort posts by"
1140
+ msgstr "Ordenar entradas por"
1141
+
1142
+ #: ../views/form.php:14
1143
+ msgid "Comments"
1144
+ msgstr "Comentarios"
1145
+
1146
+ #: ../views/form.php:15
1147
+ msgid "Total views"
1148
+ msgstr "Total de vistas"
1149
+
1150
+ #: ../views/form.php:16
1151
+ msgid "Avg. daily views"
1152
+ msgstr "Porcentaje de vistas diarias"
1153
+
1154
+ #: ../views/form.php:22
1155
+ msgid "Filters"
1156
+ msgstr "Filtros"
1157
+
1158
+ #: ../views/form.php:24
1159
+ msgid "Time Range"
1160
+ msgstr "Rango de Tiempo"
1161
+
1162
+ #: ../views/form.php:34
1163
+ msgid "Post type(s)"
1164
+ msgstr "Post type(s)"
1165
+
1166
+ #: ../views/form.php:37
1167
+ msgid "Post(s) ID(s) to exclude"
1168
+ msgstr "ID(s) de Entrada(s) a excluir"
1169
+
1170
+ #: ../views/form.php:40
1171
+ msgid "Category(ies) ID(s)"
1172
+ msgstr "ID(s) de Categor&iacute;a(s)"
1173
+
1174
+ #: ../views/form.php:43
1175
+ msgid "Author(s) ID(s)"
1176
+ msgstr "ID(s) de Autor(es)"
1177
+
1178
+ #: ../views/form.php:48
1179
+ msgid "Posts settings"
1180
+ msgstr "Configuraci&oacute;n de las entradas"
1181
+
1182
+ #: ../views/form.php:52
1183
+ msgid "Display post rating"
1184
+ msgstr "Mostrar rating de la entrada"
1185
+
1186
+ #: ../views/form.php:55
1187
+ msgid "Shorten title"
1188
+ msgstr "Acortar t&iacute;tulo"
1189
+
1190
+ #: ../views/form.php:58
1191
+ msgid "Shorten title to"
1192
+ msgstr "Acortar t&iacute;tulo en"
1193
+
1194
+ #: ../views/form.php:59 ../views/form.php:69
1195
+ msgid "characters"
1196
+ msgstr "caracteres"
1197
+
1198
+ #: ../views/form.php:60 ../views/form.php:70
1199
+ msgid "words"
1200
+ msgstr "palabras"
1201
+
1202
+ #: ../views/form.php:63
1203
+ msgid "Display post excerpt"
1204
+ msgstr "Mostrar resumen de la entrada"
1205
+
1206
+ #: ../views/form.php:66
1207
+ msgid "Keep text format and links"
1208
+ msgstr "Mantener formato de texto y links"
1209
+
1210
+ #: ../views/form.php:67
1211
+ msgid "Excerpt length"
1212
+ msgstr "Largo del resumen"
1213
+
1214
+ #: ../views/form.php:73
1215
+ msgid "Display post thumbnail"
1216
+ msgstr "Mostrar miniatura"
1217
+
1218
+ #: ../views/form.php:76
1219
+ msgid "Use predefined size"
1220
+ msgstr "Utilizar un tama&ntilde;o predefinido"
1221
+
1222
+ #: ../views/form.php:90
1223
+ msgid "Set size manually"
1224
+ msgstr "Configurar el tama&ntilde;o manualmente"
1225
+
1226
+ #: ../views/form.php:92
1227
+ msgid "Width"
1228
+ msgstr "Ancho"
1229
+
1230
+ #: ../views/form.php:93 ../views/form.php:96
1231
+ msgid "px"
1232
+ msgstr "px"
1233
+
1234
+ #: ../views/form.php:95
1235
+ msgid "Height"
1236
+ msgstr "Alto"
1237
+
1238
+ #: ../views/form.php:101
1239
+ msgid "Stats Tag settings"
1240
+ msgstr "Configuraci&oacute;n del Stats Tag"
1241
+
1242
+ #: ../views/form.php:103
1243
+ msgid "Display comment count"
1244
+ msgstr "Mostrar cantidad de comentarios"
1245
+
1246
+ #: ../views/form.php:105
1247
+ msgid "Display views"
1248
+ msgstr "Mostrar vistas"
1249
+
1250
+ #: ../views/form.php:107
1251
+ msgid "Display author"
1252
+ msgstr "Mostrar autor"
1253
+
1254
+ #: ../views/form.php:109
1255
+ msgid "Display date"
1256
+ msgstr "Mostrar fecha"
1257
+
1258
+ #: ../views/form.php:112
1259
+ msgid "Date Format"
1260
+ msgstr "Formato de la fecha"
1261
+
1262
+ #: ../views/form.php:114
1263
+ msgid "WordPress Date Format"
1264
+ msgstr "Formato de fecha de WordPress"
1265
+
1266
+ #: ../views/form.php:121
1267
+ msgid "Display category"
1268
+ msgstr "Mostrar categor&iacute;a"
1269
+
1270
+ #: ../views/form.php:125
1271
+ msgid "HTML Markup settings"
1272
+ msgstr "Configuraci&oacute;n del Markup HTML"
1273
+
1274
+ #: ../views/form.php:127
1275
+ msgid "Use custom HTML Markup"
1276
+ msgstr "Utilizar Markup HTML personalizado"
1277
+
1278
+ #: ../views/form.php:130
1279
+ msgid "Before / after title"
1280
+ msgstr "Antes / despu&eacute;s del t&iacute;tulo"
1281
+
1282
+ #: ../views/form.php:133
1283
+ msgid "Before / after Popular Posts"
1284
+ msgstr "Antes / despu&eacute;s de las entradas populares"
1285
+
1286
+ #: ../views/form.php:136
1287
+ msgid "Post HTML Markup"
1288
+ msgstr "Markup HTML de la Entrada"
1289
+
1290
+ #: ../wordpress-popular-posts.php:293
1291
+ msgid "The most Popular Posts on your blog."
1292
+ msgstr "Las entradas m&aacute;s populares en tu blog."
1293
+
1294
+ #: ../wordpress-popular-posts.php:476
1295
+ msgid ""
1296
+ "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1297
+ "the <em>id</em> attribute on before_widget (see <a href=\"http://codex."
1298
+ "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1299
+ "\"nofollow\">register_sidebar</a> for more)."
1300
+ msgstr ""
1301
+ "Error: no es posible ajaxificar WordPress Popular Posts en este tema. Falta "
1302
+ "el atributo <em>id</em> en before_widget (ver <a href=\"http://codex."
1303
+ "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1304
+ "\"nofollow\">register_sidebar</a> para m&aacute;s informaci&oacute;n)."
1305
+
1306
+ #: ../wordpress-popular-posts.php:720
1307
+ msgid "Upload"
1308
+ msgstr "Subir"
1309
+
1310
+ #: ../wordpress-popular-posts.php:1096
1311
+ #, php-format
1312
+ msgid ""
1313
+ "Your PHP installation is too old. WordPress Popular Posts requires at least "
1314
+ "PHP version %1$s to function correctly. Please contact your hosting provider "
1315
+ "and ask them to upgrade PHP to %1$s or higher."
1316
+ msgstr ""
1317
+ "Tu versi&oacute;n de PHP es muy antigua. El plugin WordPress Popular Posts "
1318
+ "requiere al menos PHP version %1$s para funcionar correctamente. Por favor "
1319
+ "contacta a tu proveedor de hosting y solicita que se actualice PHP a %1$s o "
1320
+ "mejor."
1321
+
1322
+ #: ../wordpress-popular-posts.php:1103
1323
+ #, php-format
1324
+ msgid ""
1325
+ "Your WordPress version is too old. WordPress Popular Posts requires at least "
1326
+ "WordPress version %1$s to function correctly. Please update your blog via "
1327
+ "Dashboard &gt; Update."
1328
+ msgstr ""
1329
+ "Tu versi&oacute;n de WordPress es muy antigua. El plugin WordPress Popular "
1330
+ "Posts requiere al menos la versi&oacute;n %1$s para funcionar correctamente. "
1331
+ "Por favor actualiza tu blog via Escritorio &gt; Actualizaciones."
1332
+
1333
+ #: ../wordpress-popular-posts.php:1128
1334
+ #, php-format
1335
+ msgid ""
1336
+ "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</"
1337
+ "strong>.</p></div>"
1338
+ msgstr ""
1339
+ "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> ha sido <strong>desactivado</"
1340
+ "strong>.</p></div>"
1341
+
1342
+ #: ../wordpress-popular-posts.php:1188
1343
+ msgid "Success! The cache table has been cleared!"
1344
+ msgstr "&iexcl;&Eacute;xito! &iexcl;La tabla cach&eacute; ha sido borrada!"
1345
+
1346
+ #: ../wordpress-popular-posts.php:1190
1347
+ msgid "Error: cache table does not exist."
1348
+ msgstr "Error: la tabla cach&eacute; no existe."
1349
+
1350
+ #: ../wordpress-popular-posts.php:1197
1351
+ msgid "Success! All data have been cleared!"
1352
+ msgstr "&iexcl;&Eacute;xito! &iexcl;Toda la data ha sido borrada!"
1353
+
1354
+ #: ../wordpress-popular-posts.php:1199
1355
+ msgid "Error: one or both data tables are missing."
1356
+ msgstr "Error: una o ambas tablas de datos no existen."
1357
+
1358
+ #: ../wordpress-popular-posts.php:1202 ../wordpress-popular-posts.php:1240
1359
+ msgid "Invalid action."
1360
+ msgstr "Acci&oacute;n inv&aacute;lida."
1361
+
1362
+ #: ../wordpress-popular-posts.php:1205 ../wordpress-popular-posts.php:1243
1363
+ msgid ""
1364
+ "Sorry, you do not have enough permissions to do this. Please contact the "
1365
+ "site administrator for support."
1366
+ msgstr ""
1367
+ "Lo lamento, no tienes permisos suficientes para hacer esto. Por favor "
1368
+ "contacta al administrador del sitio."
1369
+
1370
+ #: ../wordpress-popular-posts.php:1235
1371
+ msgid "Success! All files have been deleted!"
1372
+ msgstr "&iexcl;&Eacute;xito! &iexcl;Todos los archivos han sido borrados!"
1373
+
1374
+ #: ../wordpress-popular-posts.php:1237
1375
+ msgid "The thumbnail cache is already empty!"
1376
+ msgstr "&iexcl;El cache de miniaturas ya est&aacute; vac&iacute;o!"
1377
+
1378
+ #: ../wordpress-popular-posts.php:1771
1379
+ msgid "Sorry. No data so far."
1380
+ msgstr "Lo lamentamos. No hay nada que mostrar a&uacute;n."
1381
+
1382
+ #: ../wordpress-popular-posts.php:2248
1383
+ #, php-format
1384
+ msgid "1 comment"
1385
+ msgid_plural "%s comments"
1386
+ msgstr[0] "1 comentario"
1387
+ msgstr[1] "%s comentarios"
1388
+
1389
+ #: ../wordpress-popular-posts.php:2260
1390
+ #, php-format
1391
+ msgid "1 view per day"
1392
+ msgid_plural "%s views per day"
1393
+ msgstr[0] "1 vista por d&iacute;a"
1394
+ msgstr[1] "%s vistas por d&iacute;a"
1395
+
1396
+ #: ../wordpress-popular-posts.php:2266
1397
+ #, php-format
1398
+ msgid "1 view"
1399
+ msgid_plural "%s views"
1400
+ msgstr[0] "1 vista"
1401
+ msgstr[1] "%s vistas"
1402
+
1403
+ #: ../wordpress-popular-posts.php:2278
1404
+ #, php-format
1405
+ msgid "by %s"
1406
+ msgstr "por %s"
1407
+
1408
+ #: ../wordpress-popular-posts.php:2284
1409
+ #, php-format
1410
+ msgid "posted on %s"
1411
+ msgstr "publicado el %s"
1412
+
1413
+ #: ../wordpress-popular-posts.php:2292
1414
+ #, php-format
1415
+ msgid "under %s"
1416
+ msgstr "bajo %s"
1417
+
1418
+ #~ msgid "Listing refresh interval"
1419
+ #~ msgstr "Intervalo de refrescamiento del listado"
1420
+
1421
+ #~ msgid "Live"
1422
+ #~ msgstr "En vivo"
1423
+
1424
+ #~ msgid "Custom interval"
1425
+ #~ msgstr "Intervalo personalizado"
1426
+
1427
+ #~ msgid ""
1428
+ #~ "Sets how often the listing should be updated. For most sites the Live "
1429
+ #~ "option should be fine, however if you are experiencing slowdowns or your "
1430
+ #~ "blog gets a lot of visitors then you might want to change the refresh rate"
1431
+ #~ msgstr ""
1432
+ #~ "Configura cu&aacute;n frecuentemente debe actualizarse listado. Para la "
1433
+ #~ "mayor&iacute;a de los sitios la opci&oacute;n En Vivo deber&iacute;a "
1434
+ #~ "estar bien, sin embargo si est&aacute;s experimentando lentitud o tu blog "
1435
+ #~ "recibe muchos visitantes entonces quiz&aacute;s prefieras cambiar la tasa "
1436
+ #~ "de refrescamiento"
1437
+
1438
+ #~ msgid "Refresh list every"
1439
+ #~ msgstr "Refrescar la lista cada"
1440
+
1441
+ #~ msgid ""
1442
+ #~ "Please refer to \"List of parameters accepted by wpp_get_mostpopular() "
1443
+ #~ "and the [wpp] shortcode\"."
1444
+ #~ msgstr ""
1445
+ #~ "Por favor revisa \"Listado de par&aacute;metros aceptados por "
1446
+ #~ "wpp_get_mostpopular() y el shortcode [wpp]\"."
1447
+
1448
+ #~ msgid ""
1449
+ #~ "List of parameters accepted by wpp_get_mostpopular() and the [wpp] "
1450
+ #~ "shortcode"
1451
+ #~ msgstr ""
1452
+ #~ "Lista de par&aacute;metros aceptados por wpp_get_mostpopular() y el "
1453
+ #~ "shortcode [wpp]"
1454
+
1455
+ #~ msgid ""
1456
+ #~ "These parameters can be used by both the template tag "
1457
+ #~ "wpp_get_most_popular() and the shortcode [wpp]."
1458
+ #~ msgstr ""
1459
+ #~ "Estos par&aacute;metros pueden ser utilizados tanto por el template tag "
1460
+ #~ "wpp_get_mostpopular() como por el shortcode [wpp]."
1461
+
1462
+ #~ msgid "Preview"
1463
+ #~ msgstr "Vista previa"
1464
+
1465
+ #~ msgid "Excerpt Properties"
1466
+ #~ msgstr "Propiedades del resumen"
1467
+
1468
+ #~ msgid "Thumbnail settings"
1469
+ #~ msgstr "Configuraci&oacute;n de miniatura"
1470
+
1471
+ #~ msgid ""
1472
+ #~ "Here you will find a handy group of options to tweak Wordpress Popular "
1473
+ #~ "Posts."
1474
+ #~ msgstr ""
1475
+ #~ "Aqu&iacute; encontrar&aacute;s un &uacute;til grupo de opciones para "
1476
+ #~ "ajustar a Wordpress Popular Posts."
1477
+
1478
+ #~ msgid "Popular Posts links behavior"
1479
+ #~ msgstr "Comportamiento de los link en las Entradas Populares"
1480
+
1481
+ #~ msgid "Views logging behavior"
1482
+ #~ msgstr "Comportamiento del registro de vistas"
1483
+
1484
+ #~ msgid "Wordpress Popular Posts Stylesheet"
1485
+ #~ msgstr "Hoja de estilos de Wordpress Popular Posts"
1486
+
1487
+ #~ msgid "Data tools"
1488
+ #~ msgstr "Herramientas de datos"
1489
+
1490
+ #~ msgid "Popular posts listing refresh interval"
1491
+ #~ msgstr "Intervalo de refrescamiento de las Entradas Populares"
1492
+
1493
+ #~ msgid "Frequently Asked Questions"
1494
+ #~ msgstr "Preguntas Frecuentes (FAQ)"
1495
+
1496
+ #~ msgid "Sets the opening tag for each item on the list"
1497
+ #~ msgstr "Configura la etiqueta de apertura de cada &iacute;tem del listado"
1498
+
1499
+ #~ msgid "Sets the closing tag for each item on the list"
1500
+ #~ msgstr "Configura la etiqueta de cierre de cada &iacute;tem del listado"
1501
+
1502
+ #~ msgid ""
1503
+ #~ "If set, this option will allow you to decide the order of the contents "
1504
+ #~ "within each item on the list."
1505
+ #~ msgstr ""
1506
+ #~ "Si se configura, esta opci&oacute;n te permitir&aacute; decidir el orden "
1507
+ #~ "de los contenidos dentro de cada item en la lista."
1508
+
1509
+ #~ msgid ""
1510
+ #~ "If set, you can decide the order of each content inside a single item on "
1511
+ #~ "the list. For example, setting it to \"{title}: {summary}\" would output "
1512
+ #~ "something like \"Your Post Title: summary here\". This attribute requires "
1513
+ #~ "do_pattern to be true."
1514
+ #~ msgstr ""
1515
+ #~ "Si se configura, puedes decidir el orden de cada contenido dentro de cada "
1516
+ #~ "item en la lista. Por ejemplo, configurarlo como \"{title}: {summary}\" "
1517
+ #~ "mostrar&iacute;a \"El t&iacute;tulo de tu entrada: resumen aqu&iacute;\". "
1518
+ #~ "Este atributo requiere que do_pattern sea true."
1519
+
1520
+ #~ msgid "Available tags"
1521
+ #~ msgstr "Etiquetas disponibles"
1522
+
1523
+ #~ msgid "Rate it"
1524
+ #~ msgstr "&iexcl;Calif&iacute;calo"
1525
+
1526
+ #~ msgid "on the official Plugin Directory!"
1527
+ #~ msgstr "en el Directorio Oficial de Plugins!"
1528
+
1529
+ #~ msgid "Do you love this plugin?"
1530
+ #~ msgstr "&iquest;Adoras este plugin?"
1531
+
1532
+ #~ msgid "Buy me a beer!"
1533
+ #~ msgstr "&iexcl;C&oacute;mprame una cerveza!"
1534
+
1535
+ #~ msgid "comments"
1536
+ #~ msgstr "comentarios"
1537
+
1538
+ #~ msgid "views per day"
1539
+ #~ msgstr "vistas por d&iacute;a"
1540
+
1541
+ #~ msgid "views"
1542
+ #~ msgstr "vistas"
1543
+
1544
+ #~ msgid "by"
1545
+ #~ msgstr "por"
1546
+
1547
+ #~ msgid "What does \"Use content formatting tags\" do?"
1548
+ #~ msgstr ""
1549
+ #~ "&iquest;Qu&eacute; hace \"Utilizar etiquetas de formato de contenido\"?"
1550
+
1551
+ #~ msgid "Before / after each post:"
1552
+ #~ msgstr "Antes / despu&eacute;s de cada entrada"
1553
+
1554
+ #~ msgid "Use content formatting tags"
1555
+ #~ msgstr "Utilizar etiquetas de formato de contenido"
1556
+
1557
+ #~ msgid "Content format:"
1558
+ #~ msgstr "Formato de contenido:"
1559
+
1560
+ #~ msgid "Wordpress Popular Posts Stats"
1561
+ #~ msgstr "Estad&iacute;sticas de Wordpress Popular Posts"
lang/wordpress-popular-posts.mo CHANGED
Binary file
lang/wordpress-popular-posts.po CHANGED
@@ -1,1168 +1,1193 @@
1
- # Copyright (C) 2013 Wordpress Popular Posts
2
- # This file is distributed under the same license as the Wordpress Popular Posts package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Wordpress Popular Posts\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
7
- "POT-Creation-Date: 2014-09-23 16:52-0430\n"
8
- "PO-Revision-Date: 2014-09-23 16:52-0430\n"
9
- "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
10
- "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
11
- "Language: en\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.6.9\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n:1,2;__ngettext_noop;_n_noop;_x;"
18
- "_nx;_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
19
- "esc_html_x;_c;_nc\n"
20
- "X-Poedit-Basepath: .\n"
21
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
- "X-Poedit-SearchPath-0: ..\n"
23
- "X-Poedit-SearchPath-1: .\n"
24
-
25
- #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
26
- #: ../views/admin.php:69
27
- msgid "Settings saved."
28
- msgstr ""
29
-
30
- #: ../views/admin.php:40
31
- msgid "Please provide the name of your custom field."
32
- msgstr ""
33
-
34
- #: ../views/admin.php:75
35
- msgid ""
36
- "Any changes made to WPP's default stylesheet will be lost after every plugin "
37
- "update. In order to prevent this from happening, please copy the wpp.css "
38
- "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
39
- "theme's directory"
40
- msgstr ""
41
-
42
- #: ../views/admin.php:90
43
- msgid ""
44
- "This operation will delete all entries from WordPress Popular Posts' cache "
45
- "table and cannot be undone."
46
- msgstr ""
47
-
48
- #: ../views/admin.php:90 ../views/admin.php:98 ../views/admin.php:106
49
- msgid "Do you want to continue?"
50
- msgstr ""
51
-
52
- #: ../views/admin.php:98
53
- msgid ""
54
- "This operation will delete all stored info from WordPress Popular Posts' "
55
- "data tables and cannot be undone."
56
- msgstr ""
57
-
58
- #: ../views/admin.php:106
59
- msgid "This operation will delete all cached thumbnails and cannot be undone."
60
- msgstr ""
61
-
62
- #: ../views/admin.php:123
63
- msgid "Stats"
64
- msgstr ""
65
-
66
- #: ../views/admin.php:124
67
- msgid "Tools"
68
- msgstr ""
69
-
70
- #: ../views/admin.php:125 ../views/admin.php:689
71
- msgid "Parameters"
72
- msgstr ""
73
-
74
- #: ../views/admin.php:126
75
- msgid "FAQ"
76
- msgstr ""
77
-
78
- #: ../views/admin.php:127
79
- msgid "About"
80
- msgstr ""
81
-
82
- #: ../views/admin.php:138
83
- msgid ""
84
- "Click on each tab to see what are the most popular entries on your blog in "
85
- "the last 24 hours, this week, last 30 days or all time since WordPress "
86
- "Popular Posts was installed."
87
- msgstr ""
88
-
89
- #: ../views/admin.php:144
90
- msgid "Order by comments"
91
- msgstr ""
92
-
93
- #: ../views/admin.php:145
94
- msgid "Order by views"
95
- msgstr ""
96
-
97
- #: ../views/admin.php:146
98
- msgid "Order by avg. daily views"
99
- msgstr ""
100
-
101
- #: ../views/admin.php:148
102
- msgid "Post type"
103
- msgstr ""
104
-
105
- #: ../views/admin.php:149
106
- msgid "Limit"
107
- msgstr ""
108
-
109
- #: ../views/admin.php:150 ../views/form.php:32
110
- msgid "Display only posts published within the selected Time Range"
111
- msgstr ""
112
-
113
- #: ../views/admin.php:152 ../views/admin.php:242 ../views/admin.php:308
114
- #: ../views/admin.php:345
115
- msgid "Apply"
116
- msgstr ""
117
-
118
- #: ../views/admin.php:158 ../views/form.php:26
119
- msgid "Last 24 hours"
120
- msgstr ""
121
-
122
- #: ../views/admin.php:159 ../views/form.php:27
123
- msgid "Last 7 days"
124
- msgstr ""
125
-
126
- #: ../views/admin.php:160 ../views/form.php:28
127
- msgid "Last 30 days"
128
- msgstr ""
129
-
130
- #: ../views/admin.php:161 ../views/form.php:29
131
- msgid "All-time"
132
- msgstr ""
133
-
134
- #: ../views/admin.php:183
135
- msgid "Thumbnails"
136
- msgstr ""
137
-
138
- #: ../views/admin.php:188
139
- msgid "Default thumbnail"
140
- msgstr ""
141
-
142
- #: ../views/admin.php:193
143
- msgid "Upload thumbnail"
144
- msgstr ""
145
-
146
- #: ../views/admin.php:195
147
- msgid ""
148
- "How-to: upload (or select) an image, set Size to Full and click on Upload. "
149
- "After it's done, hit on Apply to save changes"
150
- msgstr ""
151
-
152
- #: ../views/admin.php:199
153
- msgid "Pick image from"
154
- msgstr ""
155
-
156
- #: ../views/admin.php:202
157
- msgid "Featured image"
158
- msgstr ""
159
-
160
- #: ../views/admin.php:203
161
- msgid "First image on post"
162
- msgstr ""
163
-
164
- #: ../views/admin.php:204
165
- msgid "Custom field"
166
- msgstr ""
167
-
168
- #: ../views/admin.php:207
169
- msgid "Tell WordPress Popular Posts where it should get thumbnails from"
170
- msgstr ""
171
-
172
- #: ../views/admin.php:211
173
- msgid "Custom field name"
174
- msgstr ""
175
-
176
- #: ../views/admin.php:217
177
- msgid "Resize image from Custom field?"
178
- msgstr ""
179
-
180
- #: ../views/admin.php:220
181
- msgid "No, I will upload my own thumbnail"
182
- msgstr ""
183
-
184
- #: ../views/admin.php:221
185
- msgid "Yes"
186
- msgstr ""
187
-
188
- #: ../views/admin.php:232
189
- msgid "Empty image cache"
190
- msgstr ""
191
-
192
- #: ../views/admin.php:233
193
- msgid "Use this button to clear WPP's thumbnails cache"
194
- msgstr ""
195
-
196
- #: ../views/admin.php:251
197
- msgid "Data"
198
- msgstr ""
199
-
200
- #: ../views/admin.php:256
201
- msgid "Log views from"
202
- msgstr ""
203
-
204
- #: ../views/admin.php:259
205
- msgid "Visitors only"
206
- msgstr ""
207
-
208
- #: ../views/admin.php:260
209
- msgid "Logged-in users only"
210
- msgstr ""
211
-
212
- #: ../views/admin.php:261
213
- msgid "Everyone"
214
- msgstr ""
215
-
216
- #: ../views/admin.php:267
217
- msgid "Ajaxify widget"
218
- msgstr ""
219
-
220
- #: ../views/admin.php:270 ../views/admin.php:336
221
- msgid "Disabled"
222
- msgstr ""
223
-
224
- #: ../views/admin.php:271 ../views/admin.php:335
225
- msgid "Enabled"
226
- msgstr ""
227
-
228
- #: ../views/admin.php:275
229
- msgid ""
230
- "If you are using a caching plugin such as WP Super Cache, enabling this "
231
- "feature will keep the popular list from being cached by it"
232
- msgstr ""
233
-
234
- #: ../views/admin.php:279
235
- msgid "Listing refresh interval"
236
- msgstr ""
237
-
238
- #: ../views/admin.php:282
239
- msgid "Live"
240
- msgstr ""
241
-
242
- #: ../views/admin.php:283
243
- msgid "Custom interval"
244
- msgstr ""
245
-
246
- #: ../views/admin.php:287
247
- msgid ""
248
- "Sets how often the listing should be updated. For most sites the Live option "
249
- "should be fine, however if you are experiencing slowdowns or your blog gets "
250
- "a lot of visitors then you might want to change the refresh rate"
251
- msgstr ""
252
-
253
- #: ../views/admin.php:291
254
- msgid "Refresh list every"
255
- msgstr ""
256
-
257
- #: ../views/admin.php:295
258
- msgid "Hour(s)"
259
- msgstr ""
260
-
261
- #: ../views/admin.php:296
262
- msgid "Day(s)"
263
- msgstr ""
264
-
265
- #: ../views/admin.php:297
266
- msgid "Week(s)"
267
- msgstr ""
268
-
269
- #: ../views/admin.php:298
270
- msgid "Month(s)"
271
- msgstr ""
272
-
273
- #: ../views/admin.php:299
274
- msgid "Year(s)"
275
- msgstr ""
276
-
277
- #: ../views/admin.php:302
278
- msgid "Really? That long?"
279
- msgstr ""
280
-
281
- #: ../views/admin.php:317
282
- msgid "Miscellaneous"
283
- msgstr ""
284
-
285
- #: ../views/admin.php:322
286
- msgid "Open links in"
287
- msgstr ""
288
-
289
- #: ../views/admin.php:325
290
- msgid "Current window"
291
- msgstr ""
292
-
293
- #: ../views/admin.php:326
294
- msgid "New tab/window"
295
- msgstr ""
296
-
297
- #: ../views/admin.php:332
298
- msgid "Use plugin's stylesheet"
299
- msgstr ""
300
-
301
- #: ../views/admin.php:339
302
- msgid ""
303
- "By default, the plugin includes a stylesheet called wpp.css which you can "
304
- "use to style your popular posts listing. If you wish to use your own "
305
- "stylesheet or do not want it to have it included in the header section of "
306
- "your site, use this."
307
- msgstr ""
308
-
309
- #: ../views/admin.php:356
310
- msgid ""
311
- "WordPress Popular Posts maintains data in two separate tables: one for "
312
- "storing the most popular entries on a daily basis (from now on, \"cache\"), "
313
- "and another one to keep the All-time data (from now on, \"historical data\" "
314
- "or just \"data\"). If for some reason you need to clear the cache table, or "
315
- "even both historical and cache tables, please use the buttons below to do so."
316
- msgstr ""
317
-
318
- #: ../views/admin.php:357
319
- msgid "Empty cache"
320
- msgstr ""
321
-
322
- #: ../views/admin.php:357
323
- msgid "Use this button to manually clear entries from WPP cache only"
324
- msgstr ""
325
-
326
- #: ../views/admin.php:358
327
- msgid "Clear all data"
328
- msgstr ""
329
-
330
- #: ../views/admin.php:358
331
- msgid "Use this button to manually clear entries from all WPP data tables"
332
- msgstr ""
333
-
334
- #: ../views/admin.php:365
335
- #, php-format
336
- msgid ""
337
- "With the following parameters you can customize the popular posts list when "
338
- "using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or "
339
- "the <a href=\"%2$s\">[wpp] shortcode</a>."
340
- msgstr ""
341
-
342
- #: ../views/admin.php:373
343
- msgid "Parameter"
344
- msgstr ""
345
-
346
- #: ../views/admin.php:374 ../views/admin.php:688
347
- msgid "What it does "
348
- msgstr ""
349
-
350
- #: ../views/admin.php:375
351
- msgid "Possible values"
352
- msgstr ""
353
-
354
- #: ../views/admin.php:376
355
- msgid "Defaults to"
356
- msgstr ""
357
-
358
- #: ../views/admin.php:377 ../views/admin.php:690
359
- msgid "Example"
360
- msgstr ""
361
-
362
- #: ../views/admin.php:383
363
- msgid "Sets a heading for the list"
364
- msgstr ""
365
-
366
- #: ../views/admin.php:384 ../views/admin.php:391 ../views/admin.php:398
367
- #: ../views/admin.php:433 ../views/admin.php:440 ../views/admin.php:447
368
- #: ../views/admin.php:454 ../views/admin.php:545 ../views/admin.php:559
369
- #: ../views/admin.php:566
370
- msgid "Text string"
371
- msgstr ""
372
-
373
- #: ../views/admin.php:385
374
- msgid "Popular Posts"
375
- msgstr ""
376
-
377
- #: ../views/admin.php:390
378
- msgid "Set the opening tag for the heading of the list"
379
- msgstr ""
380
-
381
- #: ../views/admin.php:397
382
- msgid "Set the closing tag for the heading of the list"
383
- msgstr ""
384
-
385
- #: ../views/admin.php:404
386
- msgid "Sets the maximum number of popular posts to be shown on the listing"
387
- msgstr ""
388
-
389
- #: ../views/admin.php:405 ../views/admin.php:461 ../views/admin.php:475
390
- #: ../views/admin.php:496 ../views/admin.php:503
391
- msgid "Positive integer"
392
- msgstr ""
393
-
394
- #: ../views/admin.php:411
395
- msgid ""
396
- "Tells WordPress Popular Posts to retrieve the most popular entries within "
397
- "the time range specified by you"
398
- msgstr ""
399
-
400
- #: ../views/admin.php:418
401
- msgid ""
402
- "Tells WordPress Popular Posts to retrieve the most popular entries published "
403
- "within the time range specified by you"
404
- msgstr ""
405
-
406
- #: ../views/admin.php:425
407
- msgid "Sets the sorting option of the popular posts"
408
- msgstr ""
409
-
410
- #: ../views/admin.php:426
411
- msgid "(for average views per day)"
412
- msgstr ""
413
-
414
- #: ../views/admin.php:432
415
- msgid "Defines the type of posts to show on the listing"
416
- msgstr ""
417
-
418
- #: ../views/admin.php:439
419
- msgid ""
420
- "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
421
- "form the listing."
422
- msgstr ""
423
-
424
- #: ../views/admin.php:441 ../views/admin.php:448 ../views/admin.php:455
425
- msgid "None"
426
- msgstr ""
427
-
428
- #: ../views/admin.php:446
429
- msgid ""
430
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
431
- "specified category(ies) ID(s). If a minus sign is used, the category(ies) "
432
- "will be excluded instead."
433
- msgstr ""
434
-
435
- #: ../views/admin.php:453
436
- msgid ""
437
- "If set, WordPress Popular Posts will retrieve all entries created by "
438
- "specified author(s) ID(s)."
439
- msgstr ""
440
-
441
- #: ../views/admin.php:460
442
- msgid ""
443
- "If set, WordPress Popular Posts will shorten each post title to \"n\" "
444
- "characters whenever possible"
445
- msgstr ""
446
-
447
- #: ../views/admin.php:467
448
- msgid ""
449
- "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
450
- "words instead of characters"
451
- msgstr ""
452
-
453
- #: ../views/admin.php:474
454
- msgid ""
455
- "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
456
- "characters long from the content of each post listed as popular"
457
- msgstr ""
458
-
459
- #: ../views/admin.php:481
460
- msgid ""
461
- "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
462
- "italic, etc) and hyperlinks found in the excerpt"
463
- msgstr ""
464
-
465
- #: ../views/admin.php:488
466
- msgid ""
467
- "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
468
- "instead of characters"
469
- msgstr ""
470
-
471
- #: ../views/admin.php:495
472
- msgid ""
473
- "If set, and if your current server configuration allows it, you will be able "
474
- "to display thumbnails of your posts. This attribute sets the width for "
475
- "thumbnails"
476
- msgstr ""
477
-
478
- #: ../views/admin.php:502
479
- msgid ""
480
- "If set, and if your current server configuration allows it, you will be able "
481
- "to display thumbnails of your posts. This attribute sets the height for "
482
- "thumbnails"
483
- msgstr ""
484
-
485
- #: ../views/admin.php:509
486
- msgid ""
487
- "If set, and if the WP-PostRatings plugin is installed and enabled on your "
488
- "blog, WordPress Popular Posts will show how your visitors are rating your "
489
- "entries"
490
- msgstr ""
491
-
492
- #: ../views/admin.php:516
493
- msgid ""
494
- "If set, WordPress Popular Posts will show how many comments each popular "
495
- "post has got until now"
496
- msgstr ""
497
-
498
- #: ../views/admin.php:523
499
- msgid ""
500
- "If set, WordPress Popular Posts will show how many views each popular post "
501
- "has got since it was installed"
502
- msgstr ""
503
-
504
- #: ../views/admin.php:530
505
- msgid ""
506
- "If set, WordPress Popular Posts will show who published each popular post on "
507
- "the list"
508
- msgstr ""
509
-
510
- #: ../views/admin.php:537
511
- msgid ""
512
- "If set, WordPress Popular Posts will display the date when each popular post "
513
- "on the list was published"
514
- msgstr ""
515
-
516
- #: ../views/admin.php:544
517
- msgid "Sets the date format"
518
- msgstr ""
519
-
520
- #: ../views/admin.php:551
521
- msgid "If set, WordPress Popular Posts will display the category"
522
- msgstr ""
523
-
524
- #: ../views/admin.php:558
525
- msgid "Sets the opening tag for the listing"
526
- msgstr ""
527
-
528
- #: ../views/admin.php:565
529
- msgid "Sets the closing tag for the listing"
530
- msgstr ""
531
-
532
- #: ../views/admin.php:572
533
- msgid "Sets the HTML structure of each post"
534
- msgstr ""
535
-
536
- #: ../views/admin.php:573
537
- msgid "Text string, custom HTML"
538
- msgstr ""
539
-
540
- #: ../views/admin.php:573
541
- msgid "Available Content Tags"
542
- msgstr ""
543
-
544
- #: ../views/admin.php:573
545
- msgid "displays thumbnail linked to post/page"
546
- msgstr ""
547
-
548
- #: ../views/admin.php:573
549
- msgid "displays linked post/page title"
550
- msgstr ""
551
-
552
- #: ../views/admin.php:573
553
- msgid ""
554
- "displays post/page excerpt, and requires excerpt_length to be greater than 0"
555
- msgstr ""
556
-
557
- #: ../views/admin.php:573
558
- msgid "displays the default stats tags"
559
- msgstr ""
560
-
561
- #: ../views/admin.php:573
562
- msgid ""
563
- "displays post/page current rating, requires WP-PostRatings installed and "
564
- "enabled"
565
- msgstr ""
566
-
567
- #: ../views/admin.php:573
568
- msgid ""
569
- "displays post/page current rating as an integer, requires WP-PostRatings "
570
- "installed and enabled"
571
- msgstr ""
572
-
573
- #: ../views/admin.php:573
574
- msgid "outputs the URL of the post/page"
575
- msgstr ""
576
-
577
- #: ../views/admin.php:573
578
- msgid "displays post/page title, no link"
579
- msgstr ""
580
-
581
- #: ../views/admin.php:573
582
- msgid "displays linked author name, requires stats_author=1"
583
- msgstr ""
584
-
585
- #: ../views/admin.php:573
586
- msgid "displays linked category name, requires stats_category=1"
587
- msgstr ""
588
-
589
- #: ../views/admin.php:573
590
- msgid "displays views count only, no text"
591
- msgstr ""
592
-
593
- #: ../views/admin.php:573
594
- msgid "displays comments count only, no text, requires stats_comments=1"
595
- msgstr ""
596
-
597
- #: ../views/admin.php:585
598
- msgid "What does \"Title\" do?"
599
- msgstr ""
600
-
601
- #: ../views/admin.php:588
602
- msgid ""
603
- "It allows you to show a heading for your most popular posts listing. If left "
604
- "empty, no heading will be displayed at all."
605
- msgstr ""
606
-
607
- #: ../views/admin.php:591
608
- msgid "What is Time Range for?"
609
- msgstr ""
610
-
611
- #: ../views/admin.php:593
612
- msgid ""
613
- "It will tell WordPress Popular Posts to retrieve all posts with most views / "
614
- "comments within the selected time range."
615
- msgstr ""
616
-
617
- #: ../views/admin.php:596
618
- msgid "What is \"Sort post by\" for?"
619
- msgstr ""
620
-
621
- #: ../views/admin.php:598
622
- msgid ""
623
- "It allows you to decide whether to order your popular posts listing by total "
624
- "views, comments, or average views per day."
625
- msgstr ""
626
-
627
- #: ../views/admin.php:601
628
- msgid "What does \"Display post rating\" do?"
629
- msgstr ""
630
-
631
- #: ../views/admin.php:603
632
- msgid ""
633
- "If checked, WordPress Popular Posts will show how your readers are rating "
634
- "your most popular posts. This feature requires having WP-PostRatings plugin "
635
- "installed and enabled on your blog for it to work."
636
- msgstr ""
637
-
638
- #: ../views/admin.php:606
639
- msgid "What does \"Shorten title\" do?"
640
- msgstr ""
641
-
642
- #: ../views/admin.php:608
643
- msgid ""
644
- "If checked, all posts titles will be shortened to \"n\" characters/words. A "
645
- "new \"Shorten title to\" option will appear so you can set it to whatever "
646
- "you like."
647
- msgstr ""
648
-
649
- #: ../views/admin.php:611
650
- msgid "What does \"Display post excerpt\" do?"
651
- msgstr ""
652
-
653
- #: ../views/admin.php:613
654
- msgid ""
655
- "If checked, WordPress Popular Posts will also include a small extract of "
656
- "your posts in the list. Similarly to the previous option, you will be able "
657
- "to decide how long the post excerpt should be."
658
- msgstr ""
659
-
660
- #: ../views/admin.php:616
661
- msgid "What does \"Keep text format and links\" do?"
662
- msgstr ""
663
-
664
- #: ../views/admin.php:618
665
- msgid ""
666
- "If checked, and if the Post Excerpt feature is enabled, WordPress Popular "
667
- "Posts will keep the styling tags (eg. bold, italic, etc) that were found in "
668
- "the excerpt. Hyperlinks will remain intact, too."
669
- msgstr ""
670
-
671
- #: ../views/admin.php:621
672
- msgid "What is \"Post type\" for?"
673
- msgstr ""
674
-
675
- #: ../views/admin.php:623
676
- msgid ""
677
- "This filter allows you to decide which post types to show on the listing. By "
678
- "default, it will retrieve only posts and pages (which should be fine for "
679
- "most cases)."
680
- msgstr ""
681
-
682
- #: ../views/admin.php:626
683
- msgid "What is \"Category(ies) ID(s)\" for?"
684
- msgstr ""
685
-
686
- #: ../views/admin.php:628
687
- msgid ""
688
- "This filter allows you to select which categories should be included or "
689
- "excluded from the listing. A negative sign in front of the category ID "
690
- "number will exclude posts belonging to it from the list, for example. You "
691
- "can specify more than one ID with a comma separated list."
692
- msgstr ""
693
-
694
- #: ../views/admin.php:631
695
- msgid "What is \"Author(s) ID(s)\" for?"
696
- msgstr ""
697
-
698
- #: ../views/admin.php:633
699
- msgid ""
700
- "Just like the Category filter, this one lets you filter posts by author ID. "
701
- "You can specify more than one ID with a comma separated list."
702
- msgstr ""
703
-
704
- #: ../views/admin.php:636
705
- msgid "What does \"Display post thumbnail\" do?"
706
- msgstr ""
707
-
708
- #: ../views/admin.php:638
709
- msgid ""
710
- "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail "
711
- "of each post. You can set up the source of the thumbnail via Settings - "
712
- "WordPress Popular Posts - Tools."
713
- msgstr ""
714
-
715
- #: ../views/admin.php:641
716
- msgid "What does \"Display comment count\" do?"
717
- msgstr ""
718
-
719
- #: ../views/admin.php:643
720
- msgid ""
721
- "If checked, WordPress Popular Posts will display how many comments each "
722
- "popular post has got in the selected Time Range."
723
- msgstr ""
724
-
725
- #: ../views/admin.php:646
726
- msgid "What does \"Display views\" do?"
727
- msgstr ""
728
-
729
- #: ../views/admin.php:648
730
- msgid ""
731
- "If checked, WordPress Popular Posts will show how many pageviews a single "
732
- "post has gotten in the selected Time Range."
733
- msgstr ""
734
-
735
- #: ../views/admin.php:651
736
- msgid "What does \"Display author\" do?"
737
- msgstr ""
738
-
739
- #: ../views/admin.php:653
740
- msgid ""
741
- "If checked, WordPress Popular Posts will display the name of the author of "
742
- "each entry listed."
743
- msgstr ""
744
-
745
- #: ../views/admin.php:656
746
- msgid "What does \"Display date\" do?"
747
- msgstr ""
748
-
749
- #: ../views/admin.php:658
750
- msgid ""
751
- "If checked, WordPress Popular Posts will display the date when each popular "
752
- "posts was published."
753
- msgstr ""
754
-
755
- #: ../views/admin.php:661
756
- msgid "What does \"Display category\" do?"
757
- msgstr ""
758
-
759
- #: ../views/admin.php:663
760
- msgid ""
761
- "If checked, WordPress Popular Posts will display the category of each post."
762
- msgstr ""
763
-
764
- #: ../views/admin.php:666
765
- msgid "What does \"Use custom HTML Markup\" do?"
766
- msgstr ""
767
-
768
- #: ../views/admin.php:668
769
- msgid ""
770
- "If checked, you will be able to customize the HTML markup of your popular "
771
- "posts listing. For example, you can decide whether to wrap your posts in an "
772
- "unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is "
773
- "for you!"
774
- msgstr ""
775
-
776
- #: ../views/admin.php:671
777
- msgid "What are \"Content Tags\"?"
778
- msgstr ""
779
-
780
- #: ../views/admin.php:673
781
- #, php-format
782
- msgid ""
783
- "Content Tags are codes to display a variety of items on your popular posts "
784
- "custom HTML structure. For example, setting it to \"{title}: "
785
- "{summary}\" (without the quotes) would display \"Post title: excerpt of the "
786
- "post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank"
787
- "\">Parameters</a> section."
788
- msgstr ""
789
-
790
- #: ../views/admin.php:676
791
- msgid "What are \"Template Tags\"?"
792
- msgstr ""
793
-
794
- #: ../views/admin.php:678
795
- msgid ""
796
- "Template Tags are simply php functions that allow you to perform certain "
797
- "actions. For example, WordPress Popular Posts currently supports two "
798
- "different template tags: wpp_get_mostpopular() and wpp_get_views()."
799
- msgstr ""
800
-
801
- #: ../views/admin.php:681
802
- msgid "What are the template tags that WordPress Popular Posts supports?"
803
- msgstr ""
804
-
805
- #: ../views/admin.php:683
806
- msgid ""
807
- "The following are the template tags supported by WordPress Popular Posts"
808
- msgstr ""
809
-
810
- #: ../views/admin.php:687
811
- msgid "Template tag"
812
- msgstr ""
813
-
814
- #: ../views/admin.php:696
815
- #, php-format
816
- msgid ""
817
- "Similar to the widget functionality, this tag retrieves the most popular "
818
- "posts on your blog. This function also accepts <a href=\"%1$s\">parameters</"
819
- "a> so you can customize your popular listing, but these are not required."
820
- msgstr ""
821
-
822
- #: ../views/admin.php:697
823
- #, php-format
824
- msgid ""
825
- "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete "
826
- "list of attributes."
827
- msgstr ""
828
-
829
- #: ../views/admin.php:702
830
- msgid ""
831
- "Displays the number of views of a single post. Post ID is required or it "
832
- "will return false."
833
- msgstr ""
834
-
835
- #: ../views/admin.php:703
836
- msgid "Post ID"
837
- msgstr ""
838
-
839
- #: ../views/admin.php:710
840
- msgid "What are \"shortcodes\"?"
841
- msgstr ""
842
-
843
- #: ../views/admin.php:712
844
- #, php-format
845
- msgid ""
846
- "Shortcodes are similar to BB Codes, these allow us to call a php function by "
847
- "simply typing something like [shortcode]. With WordPress Popular Posts, the "
848
- "shortcode [wpp] will let you insert a list of the most popular posts in "
849
- "posts content and pages too! For more information about shortcodes, please "
850
- "visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page."
851
- msgstr ""
852
-
853
- #: ../views/admin.php:721
854
- #, php-format
855
- msgid "About WordPress Popular Posts %s"
856
- msgstr ""
857
-
858
- #: ../views/admin.php:722
859
- msgid "This version includes the following changes"
860
- msgstr ""
861
-
862
- #: ../views/admin.php:741
863
- msgid "Do you like this plugin?"
864
- msgstr ""
865
-
866
- #: ../views/admin.php:748
867
- msgid ""
868
- "Each donation motivates me to keep releasing free stuff for the WordPress "
869
- "community!"
870
- msgstr ""
871
-
872
- #: ../views/admin.php:749
873
- #, php-format
874
- msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
875
- msgstr ""
876
-
877
- #: ../views/admin.php:753
878
- msgid "Need help?"
879
- msgstr ""
880
-
881
- #: ../views/admin.php:754
882
- #, php-format
883
- msgid ""
884
- "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions "
885
- "and feedback."
886
- msgstr ""
887
-
888
- #: ../views/admin.php:755
889
- msgid "Let's make this plugin even better!"
890
- msgstr ""
891
-
892
- #: ../views/form.php:2
893
- msgid "Title"
894
- msgstr ""
895
-
896
- #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24
897
- #: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43
898
- #: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63
899
- #: ../views/form.php:66 ../views/form.php:73 ../views/form.php:87
900
- #: ../views/form.php:89 ../views/form.php:91 ../views/form.php:93
901
- #: ../views/form.php:105 ../views/form.php:111
902
- msgid "What is this?"
903
- msgstr ""
904
-
905
- #: ../views/form.php:7
906
- msgid "Show up to"
907
- msgstr ""
908
-
909
- #: ../views/form.php:8
910
- msgid "posts"
911
- msgstr ""
912
-
913
- #: ../views/form.php:12
914
- msgid "Sort posts by"
915
- msgstr ""
916
-
917
- #: ../views/form.php:14
918
- msgid "Comments"
919
- msgstr ""
920
-
921
- #: ../views/form.php:15
922
- msgid "Total views"
923
- msgstr ""
924
-
925
- #: ../views/form.php:16
926
- msgid "Avg. daily views"
927
- msgstr ""
928
-
929
- #: ../views/form.php:22
930
- msgid "Filters"
931
- msgstr ""
932
-
933
- #: ../views/form.php:24
934
- msgid "Time Range"
935
- msgstr ""
936
-
937
- #: ../views/form.php:34
938
- msgid "Post type(s)"
939
- msgstr ""
940
-
941
- #: ../views/form.php:37
942
- msgid "Post(s) ID(s) to exclude"
943
- msgstr ""
944
-
945
- #: ../views/form.php:40
946
- msgid "Category(ies) ID(s)"
947
- msgstr ""
948
-
949
- #: ../views/form.php:43
950
- msgid "Author(s) ID(s)"
951
- msgstr ""
952
-
953
- #: ../views/form.php:48
954
- msgid "Posts settings"
955
- msgstr ""
956
-
957
- #: ../views/form.php:52
958
- msgid "Display post rating"
959
- msgstr ""
960
-
961
- #: ../views/form.php:55
962
- msgid "Shorten title"
963
- msgstr ""
964
-
965
- #: ../views/form.php:58
966
- msgid "Shorten title to"
967
- msgstr ""
968
-
969
- #: ../views/form.php:59 ../views/form.php:69
970
- msgid "characters"
971
- msgstr ""
972
-
973
- #: ../views/form.php:60 ../views/form.php:70
974
- msgid "words"
975
- msgstr ""
976
-
977
- #: ../views/form.php:63
978
- msgid "Display post excerpt"
979
- msgstr ""
980
-
981
- #: ../views/form.php:66
982
- msgid "Keep text format and links"
983
- msgstr ""
984
-
985
- #: ../views/form.php:67
986
- msgid "Excerpt length"
987
- msgstr ""
988
-
989
- #: ../views/form.php:73
990
- msgid "Display post thumbnail"
991
- msgstr ""
992
-
993
- #: ../views/form.php:76
994
- msgid "Width"
995
- msgstr ""
996
-
997
- #: ../views/form.php:77 ../views/form.php:80
998
- msgid "px"
999
- msgstr ""
1000
-
1001
- #: ../views/form.php:79
1002
- msgid "Height"
1003
- msgstr ""
1004
-
1005
- #: ../views/form.php:85
1006
- msgid "Stats Tag settings"
1007
- msgstr ""
1008
-
1009
- #: ../views/form.php:87
1010
- msgid "Display comment count"
1011
- msgstr ""
1012
-
1013
- #: ../views/form.php:89
1014
- msgid "Display views"
1015
- msgstr ""
1016
-
1017
- #: ../views/form.php:91
1018
- msgid "Display author"
1019
- msgstr ""
1020
-
1021
- #: ../views/form.php:93
1022
- msgid "Display date"
1023
- msgstr ""
1024
-
1025
- #: ../views/form.php:96
1026
- msgid "Date Format"
1027
- msgstr ""
1028
-
1029
- #: ../views/form.php:98
1030
- msgid "WordPress Date Format"
1031
- msgstr ""
1032
-
1033
- #: ../views/form.php:105
1034
- msgid "Display category"
1035
- msgstr ""
1036
-
1037
- #: ../views/form.php:109
1038
- msgid "HTML Markup settings"
1039
- msgstr ""
1040
-
1041
- #: ../views/form.php:111
1042
- msgid "Use custom HTML Markup"
1043
- msgstr ""
1044
-
1045
- #: ../views/form.php:114
1046
- msgid "Before / after title"
1047
- msgstr ""
1048
-
1049
- #: ../views/form.php:117
1050
- msgid "Before / after Popular Posts"
1051
- msgstr ""
1052
-
1053
- #: ../views/form.php:120
1054
- msgid "Post HTML Markup"
1055
- msgstr ""
1056
-
1057
- #: ../wordpress-popular-posts.php:276
1058
- msgid "The most Popular Posts on your blog."
1059
- msgstr ""
1060
-
1061
- #: ../wordpress-popular-posts.php:433
1062
- msgid ""
1063
- "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1064
- "the <em>id</em> attribute on before_widget (see <a href=\"http://codex."
1065
- "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1066
- "\"nofollow\">register_sidebar</a> for more)."
1067
- msgstr ""
1068
-
1069
- #: ../wordpress-popular-posts.php:658
1070
- msgid "Upload"
1071
- msgstr ""
1072
-
1073
- #: ../wordpress-popular-posts.php:1032
1074
- #, php-format
1075
- msgid ""
1076
- "Your PHP installation is too old. WordPress Popular Posts requires at least "
1077
- "PHP version %1$s to function correctly. Please contact your hosting provider "
1078
- "and ask them to upgrade PHP to %1$s or higher."
1079
- msgstr ""
1080
-
1081
- #: ../wordpress-popular-posts.php:1039
1082
- #, php-format
1083
- msgid ""
1084
- "Your WordPress version is too old. WordPress Popular Posts requires at least "
1085
- "WordPress version %1$s to function correctly. Please update your blog via "
1086
- "Dashboard &gt; Update."
1087
- msgstr ""
1088
-
1089
- #: ../wordpress-popular-posts.php:1064
1090
- #, php-format
1091
- msgid ""
1092
- "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</"
1093
- "strong>.</p></div>"
1094
- msgstr ""
1095
-
1096
- #: ../wordpress-popular-posts.php:1124
1097
- msgid "Success! The cache table has been cleared!"
1098
- msgstr ""
1099
-
1100
- #: ../wordpress-popular-posts.php:1126
1101
- msgid "Error: cache table does not exist."
1102
- msgstr ""
1103
-
1104
- #: ../wordpress-popular-posts.php:1133
1105
- msgid "Success! All data have been cleared!"
1106
- msgstr ""
1107
-
1108
- #: ../wordpress-popular-posts.php:1135
1109
- msgid "Error: one or both data tables are missing."
1110
- msgstr ""
1111
-
1112
- #: ../wordpress-popular-posts.php:1138 ../wordpress-popular-posts.php:1176
1113
- msgid "Invalid action."
1114
- msgstr ""
1115
-
1116
- #: ../wordpress-popular-posts.php:1141 ../wordpress-popular-posts.php:1179
1117
- msgid ""
1118
- "Sorry, you do not have enough permissions to do this. Please contact the "
1119
- "site administrator for support."
1120
- msgstr ""
1121
-
1122
- #: ../wordpress-popular-posts.php:1171
1123
- msgid "Success! All files have been deleted!"
1124
- msgstr ""
1125
-
1126
- #: ../wordpress-popular-posts.php:1173
1127
- msgid "The thumbnail cache is already empty!"
1128
- msgstr ""
1129
-
1130
- #: ../wordpress-popular-posts.php:1696
1131
- msgid "Sorry. No data so far."
1132
- msgstr ""
1133
-
1134
- #: ../wordpress-popular-posts.php:2156
1135
- #, php-format
1136
- msgid "1 comment"
1137
- msgid_plural "%s comments"
1138
- msgstr[0] ""
1139
- msgstr[1] ""
1140
-
1141
- #: ../wordpress-popular-posts.php:2168
1142
- #, php-format
1143
- msgid "1 view per day"
1144
- msgid_plural "%s views per day"
1145
- msgstr[0] ""
1146
- msgstr[1] ""
1147
-
1148
- #: ../wordpress-popular-posts.php:2174
1149
- #, php-format
1150
- msgid "1 view"
1151
- msgid_plural "%s views"
1152
- msgstr[0] ""
1153
- msgstr[1] ""
1154
-
1155
- #: ../wordpress-popular-posts.php:2186
1156
- #, php-format
1157
- msgid "by %s"
1158
- msgstr ""
1159
-
1160
- #: ../wordpress-popular-posts.php:2192
1161
- #, php-format
1162
- msgid "posted on %s"
1163
- msgstr ""
1164
-
1165
- #: ../wordpress-popular-posts.php:2200
1166
- #, php-format
1167
- msgid "under %s"
1168
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013 Wordpress Popular Posts
2
+ # This file is distributed under the same license as the Wordpress Popular Posts package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Wordpress Popular Posts\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
7
+ "POT-Creation-Date: 2014-12-06 18:07-0430\n"
8
+ "PO-Revision-Date: 2014-12-06 18:07-0430\n"
9
+ "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
10
+ "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
11
+ "Language: en\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext;_n:1,2;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;"
18
+ "_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+ "X-Poedit-SearchPath-1: .\n"
23
+
24
+ #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
25
+ #: ../views/admin.php:74
26
+ msgid "Settings saved."
27
+ msgstr ""
28
+
29
+ #: ../views/admin.php:40
30
+ msgid "Please provide the name of your custom field."
31
+ msgstr ""
32
+
33
+ #: ../views/admin.php:80
34
+ msgid ""
35
+ "Any changes made to WPP's default stylesheet will be lost after every plugin update. "
36
+ "In order to prevent this from happening, please copy the wpp.css file (located at wp-"
37
+ "content/plugins/wordpress-popular-posts/style) into your theme's directory"
38
+ msgstr ""
39
+
40
+ #: ../views/admin.php:95
41
+ msgid ""
42
+ "This operation will delete all entries from WordPress Popular Posts' cache table and "
43
+ "cannot be undone."
44
+ msgstr ""
45
+
46
+ #: ../views/admin.php:95 ../views/admin.php:103 ../views/admin.php:111
47
+ msgid "Do you want to continue?"
48
+ msgstr ""
49
+
50
+ #: ../views/admin.php:103
51
+ msgid ""
52
+ "This operation will delete all stored info from WordPress Popular Posts' data tables "
53
+ "and cannot be undone."
54
+ msgstr ""
55
+
56
+ #: ../views/admin.php:111
57
+ msgid "This operation will delete all cached thumbnails and cannot be undone."
58
+ msgstr ""
59
+
60
+ #: ../views/admin.php:145
61
+ msgid "Stats"
62
+ msgstr ""
63
+
64
+ #: ../views/admin.php:146
65
+ msgid "Tools"
66
+ msgstr ""
67
+
68
+ #: ../views/admin.php:147 ../views/admin.php:735
69
+ msgid "Parameters"
70
+ msgstr ""
71
+
72
+ #: ../views/admin.php:148
73
+ msgid "FAQ"
74
+ msgstr ""
75
+
76
+ #: ../views/admin.php:149
77
+ msgid "About"
78
+ msgstr ""
79
+
80
+ #: ../views/admin.php:160
81
+ msgid ""
82
+ "Click on each tab to see what are the most popular entries on your blog in the last 24 "
83
+ "hours, this week, last 30 days or all time since WordPress Popular Posts was installed."
84
+ msgstr ""
85
+
86
+ #: ../views/admin.php:166
87
+ msgid "Order by comments"
88
+ msgstr ""
89
+
90
+ #: ../views/admin.php:167
91
+ msgid "Order by views"
92
+ msgstr ""
93
+
94
+ #: ../views/admin.php:168
95
+ msgid "Order by avg. daily views"
96
+ msgstr ""
97
+
98
+ #: ../views/admin.php:170
99
+ msgid "Post type"
100
+ msgstr ""
101
+
102
+ #: ../views/admin.php:171
103
+ msgid "Limit"
104
+ msgstr ""
105
+
106
+ #: ../views/admin.php:173 ../views/admin.php:267 ../views/admin.php:354
107
+ #: ../views/admin.php:391
108
+ msgid "Apply"
109
+ msgstr ""
110
+
111
+ #: ../views/admin.php:176 ../views/form.php:32
112
+ msgid "Display only posts published within the selected Time Range"
113
+ msgstr ""
114
+
115
+ #: ../views/admin.php:183 ../views/form.php:26
116
+ msgid "Last 24 hours"
117
+ msgstr ""
118
+
119
+ #: ../views/admin.php:184 ../views/form.php:27
120
+ msgid "Last 7 days"
121
+ msgstr ""
122
+
123
+ #: ../views/admin.php:185 ../views/form.php:28
124
+ msgid "Last 30 days"
125
+ msgstr ""
126
+
127
+ #: ../views/admin.php:186 ../views/form.php:29
128
+ msgid "All-time"
129
+ msgstr ""
130
+
131
+ #: ../views/admin.php:208
132
+ msgid "Thumbnails"
133
+ msgstr ""
134
+
135
+ #: ../views/admin.php:213
136
+ msgid "Default thumbnail"
137
+ msgstr ""
138
+
139
+ #: ../views/admin.php:218
140
+ msgid "Upload thumbnail"
141
+ msgstr ""
142
+
143
+ #: ../views/admin.php:220
144
+ msgid ""
145
+ "How-to: upload (or select) an image, set Size to Full and click on Upload. After it's "
146
+ "done, hit on Apply to save changes"
147
+ msgstr ""
148
+
149
+ #: ../views/admin.php:224
150
+ msgid "Pick image from"
151
+ msgstr ""
152
+
153
+ #: ../views/admin.php:227
154
+ msgid "Featured image"
155
+ msgstr ""
156
+
157
+ #: ../views/admin.php:228
158
+ msgid "First image on post"
159
+ msgstr ""
160
+
161
+ #: ../views/admin.php:229
162
+ msgid "Custom field"
163
+ msgstr ""
164
+
165
+ #: ../views/admin.php:232
166
+ msgid "Tell WordPress Popular Posts where it should get thumbnails from"
167
+ msgstr ""
168
+
169
+ #: ../views/admin.php:236
170
+ msgid "Custom field name"
171
+ msgstr ""
172
+
173
+ #: ../views/admin.php:242
174
+ msgid "Resize image from Custom field?"
175
+ msgstr ""
176
+
177
+ #: ../views/admin.php:245
178
+ msgid "No, I will upload my own thumbnail"
179
+ msgstr ""
180
+
181
+ #: ../views/admin.php:246
182
+ msgid "Yes"
183
+ msgstr ""
184
+
185
+ #: ../views/admin.php:257
186
+ msgid "Empty image cache"
187
+ msgstr ""
188
+
189
+ #: ../views/admin.php:258
190
+ msgid "Use this button to clear WPP's thumbnails cache"
191
+ msgstr ""
192
+
193
+ #: ../views/admin.php:276
194
+ msgid "Data"
195
+ msgstr ""
196
+
197
+ #: ../views/admin.php:281
198
+ msgid "Log views from"
199
+ msgstr ""
200
+
201
+ #: ../views/admin.php:284
202
+ msgid "Visitors only"
203
+ msgstr ""
204
+
205
+ #: ../views/admin.php:285
206
+ msgid "Logged-in users only"
207
+ msgstr ""
208
+
209
+ #: ../views/admin.php:286
210
+ msgid "Everyone"
211
+ msgstr ""
212
+
213
+ #: ../views/admin.php:292
214
+ msgid "Ajaxify widget"
215
+ msgstr ""
216
+
217
+ #: ../views/admin.php:295 ../views/admin.php:335 ../views/admin.php:382
218
+ msgid "Disabled"
219
+ msgstr ""
220
+
221
+ #: ../views/admin.php:296 ../views/admin.php:336 ../views/admin.php:381
222
+ msgid "Enabled"
223
+ msgstr ""
224
+
225
+ #: ../views/admin.php:300
226
+ msgid ""
227
+ "If you are using a caching plugin such as WP Super Cache, enabling this feature will "
228
+ "keep the popular list from being cached by it"
229
+ msgstr ""
230
+
231
+ #: ../views/admin.php:304
232
+ msgid "WPP Cache Expiry Policy"
233
+ msgstr ""
234
+
235
+ #: ../views/admin.php:307
236
+ msgid "Never cache"
237
+ msgstr ""
238
+
239
+ #: ../views/admin.php:308
240
+ msgid "Enable caching"
241
+ msgstr ""
242
+
243
+ #: ../views/admin.php:312
244
+ msgid ""
245
+ "Sets WPP's cache expiration time. WPP can cache the popular list for a specified "
246
+ "amount of time. Recommended for large / high traffic sites"
247
+ msgstr ""
248
+
249
+ #: ../views/admin.php:316
250
+ msgid "Refresh cache every"
251
+ msgstr ""
252
+
253
+ #: ../views/admin.php:320
254
+ msgid "Minute(s)"
255
+ msgstr ""
256
+
257
+ #: ../views/admin.php:321
258
+ msgid "Hour(s)"
259
+ msgstr ""
260
+
261
+ #: ../views/admin.php:322
262
+ msgid "Day(s)"
263
+ msgstr ""
264
+
265
+ #: ../views/admin.php:323
266
+ msgid "Week(s)"
267
+ msgstr ""
268
+
269
+ #: ../views/admin.php:324
270
+ msgid "Month(s)"
271
+ msgstr ""
272
+
273
+ #: ../views/admin.php:325
274
+ msgid "Year(s)"
275
+ msgstr ""
276
+
277
+ #: ../views/admin.php:328
278
+ msgid "Really? That long?"
279
+ msgstr ""
280
+
281
+ #: ../views/admin.php:332
282
+ msgid "Data Sampling"
283
+ msgstr ""
284
+
285
+ #: ../views/admin.php:340
286
+ #, php-format
287
+ msgid ""
288
+ "By default, WordPress Popular Posts stores in database every single visit your site "
289
+ "receives. For small / medium sites this is generally OK, but on large / high traffic "
290
+ "sites the constant writing to the database may have an impact on performance. With "
291
+ "data sampling, WordPress Popular Posts will store only a subset of your traffic and "
292
+ "report on the tendencies detected in that sample set (for more on <em>data sampling</"
293
+ "em>, please <a href=\"%1$s\" target=\"_blank\">read here</a>)"
294
+ msgstr ""
295
+
296
+ #: ../views/admin.php:344
297
+ msgid "Sample Rate"
298
+ msgstr ""
299
+
300
+ #: ../views/admin.php:348
301
+ #, php-format
302
+ msgid ""
303
+ "A sampling rate of %d is recommended for large / high traffic sites. For lower traffic "
304
+ "sites, you should lower the value"
305
+ msgstr ""
306
+
307
+ #: ../views/admin.php:363
308
+ msgid "Miscellaneous"
309
+ msgstr ""
310
+
311
+ #: ../views/admin.php:368
312
+ msgid "Open links in"
313
+ msgstr ""
314
+
315
+ #: ../views/admin.php:371
316
+ msgid "Current window"
317
+ msgstr ""
318
+
319
+ #: ../views/admin.php:372
320
+ msgid "New tab/window"
321
+ msgstr ""
322
+
323
+ #: ../views/admin.php:378
324
+ msgid "Use plugin's stylesheet"
325
+ msgstr ""
326
+
327
+ #: ../views/admin.php:385
328
+ msgid ""
329
+ "By default, the plugin includes a stylesheet called wpp.css which you can use to style "
330
+ "your popular posts listing. If you wish to use your own stylesheet or do not want it "
331
+ "to have it included in the header section of your site, use this."
332
+ msgstr ""
333
+
334
+ #: ../views/admin.php:402
335
+ msgid ""
336
+ "WordPress Popular Posts maintains data in two separate tables: one for storing the "
337
+ "most popular entries on a daily basis (from now on, \"cache\"), and another one to "
338
+ "keep the All-time data (from now on, \"historical data\" or just \"data\"). If for "
339
+ "some reason you need to clear the cache table, or even both historical and cache "
340
+ "tables, please use the buttons below to do so."
341
+ msgstr ""
342
+
343
+ #: ../views/admin.php:403
344
+ msgid "Empty cache"
345
+ msgstr ""
346
+
347
+ #: ../views/admin.php:403
348
+ msgid "Use this button to manually clear entries from WPP cache only"
349
+ msgstr ""
350
+
351
+ #: ../views/admin.php:404
352
+ msgid "Clear all data"
353
+ msgstr ""
354
+
355
+ #: ../views/admin.php:404
356
+ msgid "Use this button to manually clear entries from all WPP data tables"
357
+ msgstr ""
358
+
359
+ #: ../views/admin.php:411
360
+ #, php-format
361
+ msgid ""
362
+ "With the following parameters you can customize the popular posts list when using "
363
+ "either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or the <a href="
364
+ "\"%2$s\">[wpp] shortcode</a>."
365
+ msgstr ""
366
+
367
+ #: ../views/admin.php:419
368
+ msgid "Parameter"
369
+ msgstr ""
370
+
371
+ #: ../views/admin.php:420 ../views/admin.php:734
372
+ msgid "What it does "
373
+ msgstr ""
374
+
375
+ #: ../views/admin.php:421
376
+ msgid "Possible values"
377
+ msgstr ""
378
+
379
+ #: ../views/admin.php:422
380
+ msgid "Defaults to"
381
+ msgstr ""
382
+
383
+ #: ../views/admin.php:423 ../views/admin.php:736
384
+ msgid "Example"
385
+ msgstr ""
386
+
387
+ #: ../views/admin.php:429
388
+ msgid "Sets a heading for the list"
389
+ msgstr ""
390
+
391
+ #: ../views/admin.php:430 ../views/admin.php:437 ../views/admin.php:444
392
+ #: ../views/admin.php:479 ../views/admin.php:486 ../views/admin.php:493
393
+ #: ../views/admin.php:500 ../views/admin.php:591 ../views/admin.php:605
394
+ #: ../views/admin.php:612
395
+ msgid "Text string"
396
+ msgstr ""
397
+
398
+ #: ../views/admin.php:431
399
+ msgid "Popular Posts"
400
+ msgstr ""
401
+
402
+ #: ../views/admin.php:436
403
+ msgid "Set the opening tag for the heading of the list"
404
+ msgstr ""
405
+
406
+ #: ../views/admin.php:443
407
+ msgid "Set the closing tag for the heading of the list"
408
+ msgstr ""
409
+
410
+ #: ../views/admin.php:450
411
+ msgid "Sets the maximum number of popular posts to be shown on the listing"
412
+ msgstr ""
413
+
414
+ #: ../views/admin.php:451 ../views/admin.php:507 ../views/admin.php:521
415
+ #: ../views/admin.php:542 ../views/admin.php:549
416
+ msgid "Positive integer"
417
+ msgstr ""
418
+
419
+ #: ../views/admin.php:457
420
+ msgid ""
421
+ "Tells WordPress Popular Posts to retrieve the most popular entries within the time "
422
+ "range specified by you"
423
+ msgstr ""
424
+
425
+ #: ../views/admin.php:464
426
+ msgid ""
427
+ "Tells WordPress Popular Posts to retrieve the most popular entries published within "
428
+ "the time range specified by you"
429
+ msgstr ""
430
+
431
+ #: ../views/admin.php:471
432
+ msgid "Sets the sorting option of the popular posts"
433
+ msgstr ""
434
+
435
+ #: ../views/admin.php:472
436
+ msgid "(for average views per day)"
437
+ msgstr ""
438
+
439
+ #: ../views/admin.php:478
440
+ msgid "Defines the type of posts to show on the listing"
441
+ msgstr ""
442
+
443
+ #: ../views/admin.php:485
444
+ msgid ""
445
+ "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the "
446
+ "listing."
447
+ msgstr ""
448
+
449
+ #: ../views/admin.php:487 ../views/admin.php:494 ../views/admin.php:501
450
+ msgid "None"
451
+ msgstr ""
452
+
453
+ #: ../views/admin.php:492
454
+ msgid ""
455
+ "If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
456
+ "category(ies) ID(s). If a minus sign is used, the category(ies) will be excluded "
457
+ "instead."
458
+ msgstr ""
459
+
460
+ #: ../views/admin.php:499
461
+ msgid ""
462
+ "If set, WordPress Popular Posts will retrieve all entries created by specified "
463
+ "author(s) ID(s)."
464
+ msgstr ""
465
+
466
+ #: ../views/admin.php:506
467
+ msgid ""
468
+ "If set, WordPress Popular Posts will shorten each post title to \"n\" characters "
469
+ "whenever possible"
470
+ msgstr ""
471
+
472
+ #: ../views/admin.php:513
473
+ msgid ""
474
+ "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words "
475
+ "instead of characters"
476
+ msgstr ""
477
+
478
+ #: ../views/admin.php:520
479
+ msgid ""
480
+ "If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters "
481
+ "long from the content of each post listed as popular"
482
+ msgstr ""
483
+
484
+ #: ../views/admin.php:527
485
+ msgid ""
486
+ "If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) "
487
+ "and hyperlinks found in the excerpt"
488
+ msgstr ""
489
+
490
+ #: ../views/admin.php:534
491
+ msgid ""
492
+ "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead "
493
+ "of characters"
494
+ msgstr ""
495
+
496
+ #: ../views/admin.php:541
497
+ msgid ""
498
+ "If set, and if your current server configuration allows it, you will be able to "
499
+ "display thumbnails of your posts. This attribute sets the width for thumbnails"
500
+ msgstr ""
501
+
502
+ #: ../views/admin.php:548
503
+ msgid ""
504
+ "If set, and if your current server configuration allows it, you will be able to "
505
+ "display thumbnails of your posts. This attribute sets the height for thumbnails"
506
+ msgstr ""
507
+
508
+ #: ../views/admin.php:555
509
+ msgid ""
510
+ "If set, and if the WP-PostRatings plugin is installed and enabled on your blog, "
511
+ "WordPress Popular Posts will show how your visitors are rating your entries"
512
+ msgstr ""
513
+
514
+ #: ../views/admin.php:562
515
+ msgid ""
516
+ "If set, WordPress Popular Posts will show how many comments each popular post has got "
517
+ "until now"
518
+ msgstr ""
519
+
520
+ #: ../views/admin.php:569
521
+ msgid ""
522
+ "If set, WordPress Popular Posts will show how many views each popular post has got "
523
+ "since it was installed"
524
+ msgstr ""
525
+
526
+ #: ../views/admin.php:576
527
+ msgid ""
528
+ "If set, WordPress Popular Posts will show who published each popular post on the list"
529
+ msgstr ""
530
+
531
+ #: ../views/admin.php:583
532
+ msgid ""
533
+ "If set, WordPress Popular Posts will display the date when each popular post on the "
534
+ "list was published"
535
+ msgstr ""
536
+
537
+ #: ../views/admin.php:590
538
+ msgid "Sets the date format"
539
+ msgstr ""
540
+
541
+ #: ../views/admin.php:597
542
+ msgid "If set, WordPress Popular Posts will display the category"
543
+ msgstr ""
544
+
545
+ #: ../views/admin.php:604
546
+ msgid "Sets the opening tag for the listing"
547
+ msgstr ""
548
+
549
+ #: ../views/admin.php:611
550
+ msgid "Sets the closing tag for the listing"
551
+ msgstr ""
552
+
553
+ #: ../views/admin.php:618
554
+ msgid "Sets the HTML structure of each post"
555
+ msgstr ""
556
+
557
+ #: ../views/admin.php:619
558
+ msgid "Text string, custom HTML"
559
+ msgstr ""
560
+
561
+ #: ../views/admin.php:619
562
+ msgid "Available Content Tags"
563
+ msgstr ""
564
+
565
+ #: ../views/admin.php:619
566
+ msgid "displays thumbnail linked to post/page"
567
+ msgstr ""
568
+
569
+ #: ../views/admin.php:619
570
+ msgid "displays thumbnail image without linking to post/page"
571
+ msgstr ""
572
+
573
+ #: ../views/admin.php:619
574
+ msgid "displays linked post/page title"
575
+ msgstr ""
576
+
577
+ #: ../views/admin.php:619
578
+ msgid "displays post/page excerpt, and requires excerpt_length to be greater than 0"
579
+ msgstr ""
580
+
581
+ #: ../views/admin.php:619
582
+ msgid "displays the default stats tags"
583
+ msgstr ""
584
+
585
+ #: ../views/admin.php:619
586
+ msgid "displays post/page current rating, requires WP-PostRatings installed and enabled"
587
+ msgstr ""
588
+
589
+ #: ../views/admin.php:619
590
+ msgid ""
591
+ "displays post/page current rating as an integer, requires WP-PostRatings installed and "
592
+ "enabled"
593
+ msgstr ""
594
+
595
+ #: ../views/admin.php:619
596
+ msgid "outputs the URL of the post/page"
597
+ msgstr ""
598
+
599
+ #: ../views/admin.php:619
600
+ msgid "displays post/page title, no link"
601
+ msgstr ""
602
+
603
+ #: ../views/admin.php:619
604
+ msgid "displays linked author name, requires stats_author=1"
605
+ msgstr ""
606
+
607
+ #: ../views/admin.php:619
608
+ msgid "displays linked category name, requires stats_category=1"
609
+ msgstr ""
610
+
611
+ #: ../views/admin.php:619
612
+ msgid "displays views count only, no text"
613
+ msgstr ""
614
+
615
+ #: ../views/admin.php:619
616
+ msgid "displays comments count only, no text, requires stats_comments=1"
617
+ msgstr ""
618
+
619
+ #: ../views/admin.php:619
620
+ msgid "displays post/page date, requires stats_date=1"
621
+ msgstr ""
622
+
623
+ #: ../views/admin.php:631
624
+ msgid "What does \"Title\" do?"
625
+ msgstr ""
626
+
627
+ #: ../views/admin.php:634
628
+ msgid ""
629
+ "It allows you to show a heading for your most popular posts listing. If left empty, no "
630
+ "heading will be displayed at all."
631
+ msgstr ""
632
+
633
+ #: ../views/admin.php:637
634
+ msgid "What is Time Range for?"
635
+ msgstr ""
636
+
637
+ #: ../views/admin.php:639
638
+ msgid ""
639
+ "It will tell WordPress Popular Posts to retrieve all posts with most views / comments "
640
+ "within the selected time range."
641
+ msgstr ""
642
+
643
+ #: ../views/admin.php:642
644
+ msgid "What is \"Sort post by\" for?"
645
+ msgstr ""
646
+
647
+ #: ../views/admin.php:644
648
+ msgid ""
649
+ "It allows you to decide whether to order your popular posts listing by total views, "
650
+ "comments, or average views per day."
651
+ msgstr ""
652
+
653
+ #: ../views/admin.php:647
654
+ msgid "What does \"Display post rating\" do?"
655
+ msgstr ""
656
+
657
+ #: ../views/admin.php:649
658
+ msgid ""
659
+ "If checked, WordPress Popular Posts will show how your readers are rating your most "
660
+ "popular posts. This feature requires having WP-PostRatings plugin installed and "
661
+ "enabled on your blog for it to work."
662
+ msgstr ""
663
+
664
+ #: ../views/admin.php:652
665
+ msgid "What does \"Shorten title\" do?"
666
+ msgstr ""
667
+
668
+ #: ../views/admin.php:654
669
+ msgid ""
670
+ "If checked, all posts titles will be shortened to \"n\" characters/words. A new "
671
+ "\"Shorten title to\" option will appear so you can set it to whatever you like."
672
+ msgstr ""
673
+
674
+ #: ../views/admin.php:657
675
+ msgid "What does \"Display post excerpt\" do?"
676
+ msgstr ""
677
+
678
+ #: ../views/admin.php:659
679
+ msgid ""
680
+ "If checked, WordPress Popular Posts will also include a small extract of your posts in "
681
+ "the list. Similarly to the previous option, you will be able to decide how long the "
682
+ "post excerpt should be."
683
+ msgstr ""
684
+
685
+ #: ../views/admin.php:662
686
+ msgid "What does \"Keep text format and links\" do?"
687
+ msgstr ""
688
+
689
+ #: ../views/admin.php:664
690
+ msgid ""
691
+ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular Posts will "
692
+ "keep the styling tags (eg. bold, italic, etc) that were found in the excerpt. "
693
+ "Hyperlinks will remain intact, too."
694
+ msgstr ""
695
+
696
+ #: ../views/admin.php:667
697
+ msgid "What is \"Post type\" for?"
698
+ msgstr ""
699
+
700
+ #: ../views/admin.php:669
701
+ msgid ""
702
+ "This filter allows you to decide which post types to show on the listing. By default, "
703
+ "it will retrieve only posts and pages (which should be fine for most cases)."
704
+ msgstr ""
705
+
706
+ #: ../views/admin.php:672
707
+ msgid "What is \"Category(ies) ID(s)\" for?"
708
+ msgstr ""
709
+
710
+ #: ../views/admin.php:674
711
+ msgid ""
712
+ "This filter allows you to select which categories should be included or excluded from "
713
+ "the listing. A negative sign in front of the category ID number will exclude posts "
714
+ "belonging to it from the list, for example. You can specify more than one ID with a "
715
+ "comma separated list."
716
+ msgstr ""
717
+
718
+ #: ../views/admin.php:677
719
+ msgid "What is \"Author(s) ID(s)\" for?"
720
+ msgstr ""
721
+
722
+ #: ../views/admin.php:679
723
+ msgid ""
724
+ "Just like the Category filter, this one lets you filter posts by author ID. You can "
725
+ "specify more than one ID with a comma separated list."
726
+ msgstr ""
727
+
728
+ #: ../views/admin.php:682
729
+ msgid "What does \"Display post thumbnail\" do?"
730
+ msgstr ""
731
+
732
+ #: ../views/admin.php:684
733
+ msgid ""
734
+ "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail of each "
735
+ "post. You can set up the source of the thumbnail via Settings - WordPress Popular "
736
+ "Posts - Tools."
737
+ msgstr ""
738
+
739
+ #: ../views/admin.php:687
740
+ msgid "What does \"Display comment count\" do?"
741
+ msgstr ""
742
+
743
+ #: ../views/admin.php:689
744
+ msgid ""
745
+ "If checked, WordPress Popular Posts will display how many comments each popular post "
746
+ "has got in the selected Time Range."
747
+ msgstr ""
748
+
749
+ #: ../views/admin.php:692
750
+ msgid "What does \"Display views\" do?"
751
+ msgstr ""
752
+
753
+ #: ../views/admin.php:694
754
+ msgid ""
755
+ "If checked, WordPress Popular Posts will show how many pageviews a single post has "
756
+ "gotten in the selected Time Range."
757
+ msgstr ""
758
+
759
+ #: ../views/admin.php:697
760
+ msgid "What does \"Display author\" do?"
761
+ msgstr ""
762
+
763
+ #: ../views/admin.php:699
764
+ msgid ""
765
+ "If checked, WordPress Popular Posts will display the name of the author of each entry "
766
+ "listed."
767
+ msgstr ""
768
+
769
+ #: ../views/admin.php:702
770
+ msgid "What does \"Display date\" do?"
771
+ msgstr ""
772
+
773
+ #: ../views/admin.php:704
774
+ msgid ""
775
+ "If checked, WordPress Popular Posts will display the date when each popular posts was "
776
+ "published."
777
+ msgstr ""
778
+
779
+ #: ../views/admin.php:707
780
+ msgid "What does \"Display category\" do?"
781
+ msgstr ""
782
+
783
+ #: ../views/admin.php:709
784
+ msgid "If checked, WordPress Popular Posts will display the category of each post."
785
+ msgstr ""
786
+
787
+ #: ../views/admin.php:712
788
+ msgid "What does \"Use custom HTML Markup\" do?"
789
+ msgstr ""
790
+
791
+ #: ../views/admin.php:714
792
+ msgid ""
793
+ "If checked, you will be able to customize the HTML markup of your popular posts "
794
+ "listing. For example, you can decide whether to wrap your posts in an unordered list, "
795
+ "an ordered list, a div, etc. If you know xHTML/CSS, this is for you!"
796
+ msgstr ""
797
+
798
+ #: ../views/admin.php:717
799
+ msgid "What are \"Content Tags\"?"
800
+ msgstr ""
801
+
802
+ #: ../views/admin.php:719
803
+ #, php-format
804
+ msgid ""
805
+ "Content Tags are codes to display a variety of items on your popular posts custom HTML "
806
+ "structure. For example, setting it to \"{title}: {summary}\" (without the quotes) "
807
+ "would display \"Post title: excerpt of the post here\". For more Content Tags, see the "
808
+ "<a href=\"%s\" target=\"_blank\">Parameters</a> section."
809
+ msgstr ""
810
+
811
+ #: ../views/admin.php:722
812
+ msgid "What are \"Template Tags\"?"
813
+ msgstr ""
814
+
815
+ #: ../views/admin.php:724
816
+ msgid ""
817
+ "Template Tags are simply php functions that allow you to perform certain actions. For "
818
+ "example, WordPress Popular Posts currently supports two different template tags: "
819
+ "wpp_get_mostpopular() and wpp_get_views()."
820
+ msgstr ""
821
+
822
+ #: ../views/admin.php:727
823
+ msgid "What are the template tags that WordPress Popular Posts supports?"
824
+ msgstr ""
825
+
826
+ #: ../views/admin.php:729
827
+ msgid "The following are the template tags supported by WordPress Popular Posts"
828
+ msgstr ""
829
+
830
+ #: ../views/admin.php:733
831
+ msgid "Template tag"
832
+ msgstr ""
833
+
834
+ #: ../views/admin.php:742
835
+ #, php-format
836
+ msgid ""
837
+ "Similar to the widget functionality, this tag retrieves the most popular posts on your "
838
+ "blog. This function also accepts <a href=\"%1$s\">parameters</a> so you can customize "
839
+ "your popular listing, but these are not required."
840
+ msgstr ""
841
+
842
+ #: ../views/admin.php:743
843
+ #, php-format
844
+ msgid ""
845
+ "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete list of "
846
+ "attributes."
847
+ msgstr ""
848
+
849
+ #: ../views/admin.php:748
850
+ msgid ""
851
+ "Displays the number of views of a single post. Post ID is required or it will return "
852
+ "false."
853
+ msgstr ""
854
+
855
+ #: ../views/admin.php:749
856
+ msgid "Post ID"
857
+ msgstr ""
858
+
859
+ #: ../views/admin.php:756
860
+ msgid "What are \"shortcodes\"?"
861
+ msgstr ""
862
+
863
+ #: ../views/admin.php:758
864
+ #, php-format
865
+ msgid ""
866
+ "Shortcodes are similar to BB Codes, these allow us to call a php function by simply "
867
+ "typing something like [shortcode]. With WordPress Popular Posts, the shortcode [wpp] "
868
+ "will let you insert a list of the most popular posts in posts content and pages too! "
869
+ "For more information about shortcodes, please visit the <a href=\"%s\" target=\"_blank"
870
+ "\">WordPress Shortcode API</a> page."
871
+ msgstr ""
872
+
873
+ #: ../views/admin.php:766
874
+ #, php-format
875
+ msgid "About WordPress Popular Posts %s"
876
+ msgstr ""
877
+
878
+ #: ../views/admin.php:767
879
+ msgid "This version includes the following changes"
880
+ msgstr ""
881
+
882
+ #: ../views/admin.php:797
883
+ msgid "Do you like this plugin?"
884
+ msgstr ""
885
+
886
+ #: ../views/admin.php:804
887
+ msgid ""
888
+ "Each donation motivates me to keep releasing free stuff for the WordPress community!"
889
+ msgstr ""
890
+
891
+ #: ../views/admin.php:805
892
+ #, php-format
893
+ msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
894
+ msgstr ""
895
+
896
+ #: ../views/admin.php:809
897
+ msgid "Need help?"
898
+ msgstr ""
899
+
900
+ #: ../views/admin.php:810
901
+ #, php-format
902
+ msgid ""
903
+ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions and "
904
+ "feedback."
905
+ msgstr ""
906
+
907
+ #: ../views/admin.php:811
908
+ msgid "Let's make this plugin even better!"
909
+ msgstr ""
910
+
911
+ #: ../views/form.php:2
912
+ msgid "Title"
913
+ msgstr ""
914
+
915
+ #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24 ../views/form.php:34
916
+ #: ../views/form.php:40 ../views/form.php:43 ../views/form.php:52 ../views/form.php:55
917
+ #: ../views/form.php:63 ../views/form.php:66 ../views/form.php:73 ../views/form.php:103
918
+ #: ../views/form.php:105 ../views/form.php:107 ../views/form.php:109
919
+ #: ../views/form.php:121 ../views/form.php:127
920
+ msgid "What is this?"
921
+ msgstr ""
922
+
923
+ #: ../views/form.php:7
924
+ msgid "Show up to"
925
+ msgstr ""
926
+
927
+ #: ../views/form.php:8
928
+ msgid "posts"
929
+ msgstr ""
930
+
931
+ #: ../views/form.php:12
932
+ msgid "Sort posts by"
933
+ msgstr ""
934
+
935
+ #: ../views/form.php:14
936
+ msgid "Comments"
937
+ msgstr ""
938
+
939
+ #: ../views/form.php:15
940
+ msgid "Total views"
941
+ msgstr ""
942
+
943
+ #: ../views/form.php:16
944
+ msgid "Avg. daily views"
945
+ msgstr ""
946
+
947
+ #: ../views/form.php:22
948
+ msgid "Filters"
949
+ msgstr ""
950
+
951
+ #: ../views/form.php:24
952
+ msgid "Time Range"
953
+ msgstr ""
954
+
955
+ #: ../views/form.php:34
956
+ msgid "Post type(s)"
957
+ msgstr ""
958
+
959
+ #: ../views/form.php:37
960
+ msgid "Post(s) ID(s) to exclude"
961
+ msgstr ""
962
+
963
+ #: ../views/form.php:40
964
+ msgid "Category(ies) ID(s)"
965
+ msgstr ""
966
+
967
+ #: ../views/form.php:43
968
+ msgid "Author(s) ID(s)"
969
+ msgstr ""
970
+
971
+ #: ../views/form.php:48
972
+ msgid "Posts settings"
973
+ msgstr ""
974
+
975
+ #: ../views/form.php:52
976
+ msgid "Display post rating"
977
+ msgstr ""
978
+
979
+ #: ../views/form.php:55
980
+ msgid "Shorten title"
981
+ msgstr ""
982
+
983
+ #: ../views/form.php:58
984
+ msgid "Shorten title to"
985
+ msgstr ""
986
+
987
+ #: ../views/form.php:59 ../views/form.php:69
988
+ msgid "characters"
989
+ msgstr ""
990
+
991
+ #: ../views/form.php:60 ../views/form.php:70
992
+ msgid "words"
993
+ msgstr ""
994
+
995
+ #: ../views/form.php:63
996
+ msgid "Display post excerpt"
997
+ msgstr ""
998
+
999
+ #: ../views/form.php:66
1000
+ msgid "Keep text format and links"
1001
+ msgstr ""
1002
+
1003
+ #: ../views/form.php:67
1004
+ msgid "Excerpt length"
1005
+ msgstr ""
1006
+
1007
+ #: ../views/form.php:73
1008
+ msgid "Display post thumbnail"
1009
+ msgstr ""
1010
+
1011
+ #: ../views/form.php:76
1012
+ msgid "Use predefined size"
1013
+ msgstr ""
1014
+
1015
+ #: ../views/form.php:90
1016
+ msgid "Set size manually"
1017
+ msgstr ""
1018
+
1019
+ #: ../views/form.php:92
1020
+ msgid "Width"
1021
+ msgstr ""
1022
+
1023
+ #: ../views/form.php:93 ../views/form.php:96
1024
+ msgid "px"
1025
+ msgstr ""
1026
+
1027
+ #: ../views/form.php:95
1028
+ msgid "Height"
1029
+ msgstr ""
1030
+
1031
+ #: ../views/form.php:101
1032
+ msgid "Stats Tag settings"
1033
+ msgstr ""
1034
+
1035
+ #: ../views/form.php:103
1036
+ msgid "Display comment count"
1037
+ msgstr ""
1038
+
1039
+ #: ../views/form.php:105
1040
+ msgid "Display views"
1041
+ msgstr ""
1042
+
1043
+ #: ../views/form.php:107
1044
+ msgid "Display author"
1045
+ msgstr ""
1046
+
1047
+ #: ../views/form.php:109
1048
+ msgid "Display date"
1049
+ msgstr ""
1050
+
1051
+ #: ../views/form.php:112
1052
+ msgid "Date Format"
1053
+ msgstr ""
1054
+
1055
+ #: ../views/form.php:114
1056
+ msgid "WordPress Date Format"
1057
+ msgstr ""
1058
+
1059
+ #: ../views/form.php:121
1060
+ msgid "Display category"
1061
+ msgstr ""
1062
+
1063
+ #: ../views/form.php:125
1064
+ msgid "HTML Markup settings"
1065
+ msgstr ""
1066
+
1067
+ #: ../views/form.php:127
1068
+ msgid "Use custom HTML Markup"
1069
+ msgstr ""
1070
+
1071
+ #: ../views/form.php:130
1072
+ msgid "Before / after title"
1073
+ msgstr ""
1074
+
1075
+ #: ../views/form.php:133
1076
+ msgid "Before / after Popular Posts"
1077
+ msgstr ""
1078
+
1079
+ #: ../views/form.php:136
1080
+ msgid "Post HTML Markup"
1081
+ msgstr ""
1082
+
1083
+ #: ../wordpress-popular-posts.php:293
1084
+ msgid "The most Popular Posts on your blog."
1085
+ msgstr ""
1086
+
1087
+ #: ../wordpress-popular-posts.php:476
1088
+ msgid ""
1089
+ "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing the <em>id</"
1090
+ "em> attribute on before_widget (see <a href=\"http://codex.wordpress.org/"
1091
+ "Function_Reference/register_sidebar\" target=\"_blank\" rel=\"nofollow"
1092
+ "\">register_sidebar</a> for more)."
1093
+ msgstr ""
1094
+
1095
+ #: ../wordpress-popular-posts.php:720
1096
+ msgid "Upload"
1097
+ msgstr ""
1098
+
1099
+ #: ../wordpress-popular-posts.php:1096
1100
+ #, php-format
1101
+ msgid ""
1102
+ "Your PHP installation is too old. WordPress Popular Posts requires at least PHP "
1103
+ "version %1$s to function correctly. Please contact your hosting provider and ask them "
1104
+ "to upgrade PHP to %1$s or higher."
1105
+ msgstr ""
1106
+
1107
+ #: ../wordpress-popular-posts.php:1103
1108
+ #, php-format
1109
+ msgid ""
1110
+ "Your WordPress version is too old. WordPress Popular Posts requires at least WordPress "
1111
+ "version %1$s to function correctly. Please update your blog via Dashboard &gt; Update."
1112
+ msgstr ""
1113
+
1114
+ #: ../wordpress-popular-posts.php:1128
1115
+ #, php-format
1116
+ msgid ""
1117
+ "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</strong>.</"
1118
+ "p></div>"
1119
+ msgstr ""
1120
+
1121
+ #: ../wordpress-popular-posts.php:1188
1122
+ msgid "Success! The cache table has been cleared!"
1123
+ msgstr ""
1124
+
1125
+ #: ../wordpress-popular-posts.php:1190
1126
+ msgid "Error: cache table does not exist."
1127
+ msgstr ""
1128
+
1129
+ #: ../wordpress-popular-posts.php:1197
1130
+ msgid "Success! All data have been cleared!"
1131
+ msgstr ""
1132
+
1133
+ #: ../wordpress-popular-posts.php:1199
1134
+ msgid "Error: one or both data tables are missing."
1135
+ msgstr ""
1136
+
1137
+ #: ../wordpress-popular-posts.php:1202 ../wordpress-popular-posts.php:1240
1138
+ msgid "Invalid action."
1139
+ msgstr ""
1140
+
1141
+ #: ../wordpress-popular-posts.php:1205 ../wordpress-popular-posts.php:1243
1142
+ msgid ""
1143
+ "Sorry, you do not have enough permissions to do this. Please contact the site "
1144
+ "administrator for support."
1145
+ msgstr ""
1146
+
1147
+ #: ../wordpress-popular-posts.php:1235
1148
+ msgid "Success! All files have been deleted!"
1149
+ msgstr ""
1150
+
1151
+ #: ../wordpress-popular-posts.php:1237
1152
+ msgid "The thumbnail cache is already empty!"
1153
+ msgstr ""
1154
+
1155
+ #: ../wordpress-popular-posts.php:1771
1156
+ msgid "Sorry. No data so far."
1157
+ msgstr ""
1158
+
1159
+ #: ../wordpress-popular-posts.php:2248
1160
+ #, php-format
1161
+ msgid "1 comment"
1162
+ msgid_plural "%s comments"
1163
+ msgstr[0] ""
1164
+ msgstr[1] ""
1165
+
1166
+ #: ../wordpress-popular-posts.php:2260
1167
+ #, php-format
1168
+ msgid "1 view per day"
1169
+ msgid_plural "%s views per day"
1170
+ msgstr[0] ""
1171
+ msgstr[1] ""
1172
+
1173
+ #: ../wordpress-popular-posts.php:2266
1174
+ #, php-format
1175
+ msgid "1 view"
1176
+ msgid_plural "%s views"
1177
+ msgstr[0] ""
1178
+ msgstr[1] ""
1179
+
1180
+ #: ../wordpress-popular-posts.php:2278
1181
+ #, php-format
1182
+ msgid "by %s"
1183
+ msgstr ""
1184
+
1185
+ #: ../wordpress-popular-posts.php:2284
1186
+ #, php-format
1187
+ msgid "posted on %s"
1188
+ msgstr ""
1189
+
1190
+ #: ../wordpress-popular-posts.php:2292
1191
+ #, php-format
1192
+ msgid "under %s"
1193
+ msgstr ""
lang/wordpress-popular-posts.pot CHANGED
@@ -1,1168 +1,1193 @@
1
- # Copyright (C) 2014 Wordpress Popular Posts
2
- # This file is distributed under the same license as the Wordpress Popular Posts package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Wordpress Popular Posts\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
7
- "POT-Creation-Date: 2014-09-23 16:52-0430\n"
8
- "PO-Revision-Date: 2014-09-23 16:53-0430\n"
9
- "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
10
- "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
11
- "Language: en\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 1.6.9\n"
17
- "X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;"
18
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
19
- "esc_html_x;_c;_nc;_n:1,2\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Poedit-SourceCharset: UTF-8\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-SearchPath-1: ..\n"
24
-
25
- #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
26
- #: ../views/admin.php:69
27
- msgid "Settings saved."
28
- msgstr ""
29
-
30
- #: ../views/admin.php:40
31
- msgid "Please provide the name of your custom field."
32
- msgstr ""
33
-
34
- #: ../views/admin.php:75
35
- msgid ""
36
- "Any changes made to WPP's default stylesheet will be lost after every plugin "
37
- "update. In order to prevent this from happening, please copy the wpp.css "
38
- "file (located at wp-content/plugins/wordpress-popular-posts/style) into your "
39
- "theme's directory"
40
- msgstr ""
41
-
42
- #: ../views/admin.php:90
43
- msgid ""
44
- "This operation will delete all entries from WordPress Popular Posts' cache "
45
- "table and cannot be undone."
46
- msgstr ""
47
-
48
- #: ../views/admin.php:90 ../views/admin.php:98 ../views/admin.php:106
49
- msgid "Do you want to continue?"
50
- msgstr ""
51
-
52
- #: ../views/admin.php:98
53
- msgid ""
54
- "This operation will delete all stored info from WordPress Popular Posts' "
55
- "data tables and cannot be undone."
56
- msgstr ""
57
-
58
- #: ../views/admin.php:106
59
- msgid "This operation will delete all cached thumbnails and cannot be undone."
60
- msgstr ""
61
-
62
- #: ../views/admin.php:123
63
- msgid "Stats"
64
- msgstr ""
65
-
66
- #: ../views/admin.php:124
67
- msgid "Tools"
68
- msgstr ""
69
-
70
- #: ../views/admin.php:125 ../views/admin.php:689
71
- msgid "Parameters"
72
- msgstr ""
73
-
74
- #: ../views/admin.php:126
75
- msgid "FAQ"
76
- msgstr ""
77
-
78
- #: ../views/admin.php:127
79
- msgid "About"
80
- msgstr ""
81
-
82
- #: ../views/admin.php:138
83
- msgid ""
84
- "Click on each tab to see what are the most popular entries on your blog in "
85
- "the last 24 hours, this week, last 30 days or all time since WordPress "
86
- "Popular Posts was installed."
87
- msgstr ""
88
-
89
- #: ../views/admin.php:144
90
- msgid "Order by comments"
91
- msgstr ""
92
-
93
- #: ../views/admin.php:145
94
- msgid "Order by views"
95
- msgstr ""
96
-
97
- #: ../views/admin.php:146
98
- msgid "Order by avg. daily views"
99
- msgstr ""
100
-
101
- #: ../views/admin.php:148
102
- msgid "Post type"
103
- msgstr ""
104
-
105
- #: ../views/admin.php:149
106
- msgid "Limit"
107
- msgstr ""
108
-
109
- #: ../views/admin.php:150 ../views/form.php:32
110
- msgid "Display only posts published within the selected Time Range"
111
- msgstr ""
112
-
113
- #: ../views/admin.php:152 ../views/admin.php:242 ../views/admin.php:308
114
- #: ../views/admin.php:345
115
- msgid "Apply"
116
- msgstr ""
117
-
118
- #: ../views/admin.php:158 ../views/form.php:26
119
- msgid "Last 24 hours"
120
- msgstr ""
121
-
122
- #: ../views/admin.php:159 ../views/form.php:27
123
- msgid "Last 7 days"
124
- msgstr ""
125
-
126
- #: ../views/admin.php:160 ../views/form.php:28
127
- msgid "Last 30 days"
128
- msgstr ""
129
-
130
- #: ../views/admin.php:161 ../views/form.php:29
131
- msgid "All-time"
132
- msgstr ""
133
-
134
- #: ../views/admin.php:183
135
- msgid "Thumbnails"
136
- msgstr ""
137
-
138
- #: ../views/admin.php:188
139
- msgid "Default thumbnail"
140
- msgstr ""
141
-
142
- #: ../views/admin.php:193
143
- msgid "Upload thumbnail"
144
- msgstr ""
145
-
146
- #: ../views/admin.php:195
147
- msgid ""
148
- "How-to: upload (or select) an image, set Size to Full and click on Upload. "
149
- "After it's done, hit on Apply to save changes"
150
- msgstr ""
151
-
152
- #: ../views/admin.php:199
153
- msgid "Pick image from"
154
- msgstr ""
155
-
156
- #: ../views/admin.php:202
157
- msgid "Featured image"
158
- msgstr ""
159
-
160
- #: ../views/admin.php:203
161
- msgid "First image on post"
162
- msgstr ""
163
-
164
- #: ../views/admin.php:204
165
- msgid "Custom field"
166
- msgstr ""
167
-
168
- #: ../views/admin.php:207
169
- msgid "Tell WordPress Popular Posts where it should get thumbnails from"
170
- msgstr ""
171
-
172
- #: ../views/admin.php:211
173
- msgid "Custom field name"
174
- msgstr ""
175
-
176
- #: ../views/admin.php:217
177
- msgid "Resize image from Custom field?"
178
- msgstr ""
179
-
180
- #: ../views/admin.php:220
181
- msgid "No, I will upload my own thumbnail"
182
- msgstr ""
183
-
184
- #: ../views/admin.php:221
185
- msgid "Yes"
186
- msgstr ""
187
-
188
- #: ../views/admin.php:232
189
- msgid "Empty image cache"
190
- msgstr ""
191
-
192
- #: ../views/admin.php:233
193
- msgid "Use this button to clear WPP's thumbnails cache"
194
- msgstr ""
195
-
196
- #: ../views/admin.php:251
197
- msgid "Data"
198
- msgstr ""
199
-
200
- #: ../views/admin.php:256
201
- msgid "Log views from"
202
- msgstr ""
203
-
204
- #: ../views/admin.php:259
205
- msgid "Visitors only"
206
- msgstr ""
207
-
208
- #: ../views/admin.php:260
209
- msgid "Logged-in users only"
210
- msgstr ""
211
-
212
- #: ../views/admin.php:261
213
- msgid "Everyone"
214
- msgstr ""
215
-
216
- #: ../views/admin.php:267
217
- msgid "Ajaxify widget"
218
- msgstr ""
219
-
220
- #: ../views/admin.php:270 ../views/admin.php:336
221
- msgid "Disabled"
222
- msgstr ""
223
-
224
- #: ../views/admin.php:271 ../views/admin.php:335
225
- msgid "Enabled"
226
- msgstr ""
227
-
228
- #: ../views/admin.php:275
229
- msgid ""
230
- "If you are using a caching plugin such as WP Super Cache, enabling this "
231
- "feature will keep the popular list from being cached by it"
232
- msgstr ""
233
-
234
- #: ../views/admin.php:279
235
- msgid "Listing refresh interval"
236
- msgstr ""
237
-
238
- #: ../views/admin.php:282
239
- msgid "Live"
240
- msgstr ""
241
-
242
- #: ../views/admin.php:283
243
- msgid "Custom interval"
244
- msgstr ""
245
-
246
- #: ../views/admin.php:287
247
- msgid ""
248
- "Sets how often the listing should be updated. For most sites the Live option "
249
- "should be fine, however if you are experiencing slowdowns or your blog gets "
250
- "a lot of visitors then you might want to change the refresh rate"
251
- msgstr ""
252
-
253
- #: ../views/admin.php:291
254
- msgid "Refresh list every"
255
- msgstr ""
256
-
257
- #: ../views/admin.php:295
258
- msgid "Hour(s)"
259
- msgstr ""
260
-
261
- #: ../views/admin.php:296
262
- msgid "Day(s)"
263
- msgstr ""
264
-
265
- #: ../views/admin.php:297
266
- msgid "Week(s)"
267
- msgstr ""
268
-
269
- #: ../views/admin.php:298
270
- msgid "Month(s)"
271
- msgstr ""
272
-
273
- #: ../views/admin.php:299
274
- msgid "Year(s)"
275
- msgstr ""
276
-
277
- #: ../views/admin.php:302
278
- msgid "Really? That long?"
279
- msgstr ""
280
-
281
- #: ../views/admin.php:317
282
- msgid "Miscellaneous"
283
- msgstr ""
284
-
285
- #: ../views/admin.php:322
286
- msgid "Open links in"
287
- msgstr ""
288
-
289
- #: ../views/admin.php:325
290
- msgid "Current window"
291
- msgstr ""
292
-
293
- #: ../views/admin.php:326
294
- msgid "New tab/window"
295
- msgstr ""
296
-
297
- #: ../views/admin.php:332
298
- msgid "Use plugin's stylesheet"
299
- msgstr ""
300
-
301
- #: ../views/admin.php:339
302
- msgid ""
303
- "By default, the plugin includes a stylesheet called wpp.css which you can "
304
- "use to style your popular posts listing. If you wish to use your own "
305
- "stylesheet or do not want it to have it included in the header section of "
306
- "your site, use this."
307
- msgstr ""
308
-
309
- #: ../views/admin.php:356
310
- msgid ""
311
- "WordPress Popular Posts maintains data in two separate tables: one for "
312
- "storing the most popular entries on a daily basis (from now on, \"cache\"), "
313
- "and another one to keep the All-time data (from now on, \"historical data\" "
314
- "or just \"data\"). If for some reason you need to clear the cache table, or "
315
- "even both historical and cache tables, please use the buttons below to do so."
316
- msgstr ""
317
-
318
- #: ../views/admin.php:357
319
- msgid "Empty cache"
320
- msgstr ""
321
-
322
- #: ../views/admin.php:357
323
- msgid "Use this button to manually clear entries from WPP cache only"
324
- msgstr ""
325
-
326
- #: ../views/admin.php:358
327
- msgid "Clear all data"
328
- msgstr ""
329
-
330
- #: ../views/admin.php:358
331
- msgid "Use this button to manually clear entries from all WPP data tables"
332
- msgstr ""
333
-
334
- #: ../views/admin.php:365
335
- #, php-format
336
- msgid ""
337
- "With the following parameters you can customize the popular posts list when "
338
- "using either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or "
339
- "the <a href=\"%2$s\">[wpp] shortcode</a>."
340
- msgstr ""
341
-
342
- #: ../views/admin.php:373
343
- msgid "Parameter"
344
- msgstr ""
345
-
346
- #: ../views/admin.php:374 ../views/admin.php:688
347
- msgid "What it does "
348
- msgstr ""
349
-
350
- #: ../views/admin.php:375
351
- msgid "Possible values"
352
- msgstr ""
353
-
354
- #: ../views/admin.php:376
355
- msgid "Defaults to"
356
- msgstr ""
357
-
358
- #: ../views/admin.php:377 ../views/admin.php:690
359
- msgid "Example"
360
- msgstr ""
361
-
362
- #: ../views/admin.php:383
363
- msgid "Sets a heading for the list"
364
- msgstr ""
365
-
366
- #: ../views/admin.php:384 ../views/admin.php:391 ../views/admin.php:398
367
- #: ../views/admin.php:433 ../views/admin.php:440 ../views/admin.php:447
368
- #: ../views/admin.php:454 ../views/admin.php:545 ../views/admin.php:559
369
- #: ../views/admin.php:566
370
- msgid "Text string"
371
- msgstr ""
372
-
373
- #: ../views/admin.php:385
374
- msgid "Popular Posts"
375
- msgstr ""
376
-
377
- #: ../views/admin.php:390
378
- msgid "Set the opening tag for the heading of the list"
379
- msgstr ""
380
-
381
- #: ../views/admin.php:397
382
- msgid "Set the closing tag for the heading of the list"
383
- msgstr ""
384
-
385
- #: ../views/admin.php:404
386
- msgid "Sets the maximum number of popular posts to be shown on the listing"
387
- msgstr ""
388
-
389
- #: ../views/admin.php:405 ../views/admin.php:461 ../views/admin.php:475
390
- #: ../views/admin.php:496 ../views/admin.php:503
391
- msgid "Positive integer"
392
- msgstr ""
393
-
394
- #: ../views/admin.php:411
395
- msgid ""
396
- "Tells WordPress Popular Posts to retrieve the most popular entries within "
397
- "the time range specified by you"
398
- msgstr ""
399
-
400
- #: ../views/admin.php:418
401
- msgid ""
402
- "Tells WordPress Popular Posts to retrieve the most popular entries published "
403
- "within the time range specified by you"
404
- msgstr ""
405
-
406
- #: ../views/admin.php:425
407
- msgid "Sets the sorting option of the popular posts"
408
- msgstr ""
409
-
410
- #: ../views/admin.php:426
411
- msgid "(for average views per day)"
412
- msgstr ""
413
-
414
- #: ../views/admin.php:432
415
- msgid "Defines the type of posts to show on the listing"
416
- msgstr ""
417
-
418
- #: ../views/admin.php:439
419
- msgid ""
420
- "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) "
421
- "form the listing."
422
- msgstr ""
423
-
424
- #: ../views/admin.php:441 ../views/admin.php:448 ../views/admin.php:455
425
- msgid "None"
426
- msgstr ""
427
-
428
- #: ../views/admin.php:446
429
- msgid ""
430
- "If set, WordPress Popular Posts will retrieve all entries that belong to the "
431
- "specified category(ies) ID(s). If a minus sign is used, the category(ies) "
432
- "will be excluded instead."
433
- msgstr ""
434
-
435
- #: ../views/admin.php:453
436
- msgid ""
437
- "If set, WordPress Popular Posts will retrieve all entries created by "
438
- "specified author(s) ID(s)."
439
- msgstr ""
440
-
441
- #: ../views/admin.php:460
442
- msgid ""
443
- "If set, WordPress Popular Posts will shorten each post title to \"n\" "
444
- "characters whenever possible"
445
- msgstr ""
446
-
447
- #: ../views/admin.php:467
448
- msgid ""
449
- "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" "
450
- "words instead of characters"
451
- msgstr ""
452
-
453
- #: ../views/admin.php:474
454
- msgid ""
455
- "If set, WordPress Popular Posts will build and include an excerpt of \"n\" "
456
- "characters long from the content of each post listed as popular"
457
- msgstr ""
458
-
459
- #: ../views/admin.php:481
460
- msgid ""
461
- "If set, WordPress Popular Posts will maintaing all styling tags (strong, "
462
- "italic, etc) and hyperlinks found in the excerpt"
463
- msgstr ""
464
-
465
- #: ../views/admin.php:488
466
- msgid ""
467
- "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words "
468
- "instead of characters"
469
- msgstr ""
470
-
471
- #: ../views/admin.php:495
472
- msgid ""
473
- "If set, and if your current server configuration allows it, you will be able "
474
- "to display thumbnails of your posts. This attribute sets the width for "
475
- "thumbnails"
476
- msgstr ""
477
-
478
- #: ../views/admin.php:502
479
- msgid ""
480
- "If set, and if your current server configuration allows it, you will be able "
481
- "to display thumbnails of your posts. This attribute sets the height for "
482
- "thumbnails"
483
- msgstr ""
484
-
485
- #: ../views/admin.php:509
486
- msgid ""
487
- "If set, and if the WP-PostRatings plugin is installed and enabled on your "
488
- "blog, WordPress Popular Posts will show how your visitors are rating your "
489
- "entries"
490
- msgstr ""
491
-
492
- #: ../views/admin.php:516
493
- msgid ""
494
- "If set, WordPress Popular Posts will show how many comments each popular "
495
- "post has got until now"
496
- msgstr ""
497
-
498
- #: ../views/admin.php:523
499
- msgid ""
500
- "If set, WordPress Popular Posts will show how many views each popular post "
501
- "has got since it was installed"
502
- msgstr ""
503
-
504
- #: ../views/admin.php:530
505
- msgid ""
506
- "If set, WordPress Popular Posts will show who published each popular post on "
507
- "the list"
508
- msgstr ""
509
-
510
- #: ../views/admin.php:537
511
- msgid ""
512
- "If set, WordPress Popular Posts will display the date when each popular post "
513
- "on the list was published"
514
- msgstr ""
515
-
516
- #: ../views/admin.php:544
517
- msgid "Sets the date format"
518
- msgstr ""
519
-
520
- #: ../views/admin.php:551
521
- msgid "If set, WordPress Popular Posts will display the category"
522
- msgstr ""
523
-
524
- #: ../views/admin.php:558
525
- msgid "Sets the opening tag for the listing"
526
- msgstr ""
527
-
528
- #: ../views/admin.php:565
529
- msgid "Sets the closing tag for the listing"
530
- msgstr ""
531
-
532
- #: ../views/admin.php:572
533
- msgid "Sets the HTML structure of each post"
534
- msgstr ""
535
-
536
- #: ../views/admin.php:573
537
- msgid "Text string, custom HTML"
538
- msgstr ""
539
-
540
- #: ../views/admin.php:573
541
- msgid "Available Content Tags"
542
- msgstr ""
543
-
544
- #: ../views/admin.php:573
545
- msgid "displays thumbnail linked to post/page"
546
- msgstr ""
547
-
548
- #: ../views/admin.php:573
549
- msgid "displays linked post/page title"
550
- msgstr ""
551
-
552
- #: ../views/admin.php:573
553
- msgid ""
554
- "displays post/page excerpt, and requires excerpt_length to be greater than 0"
555
- msgstr ""
556
-
557
- #: ../views/admin.php:573
558
- msgid "displays the default stats tags"
559
- msgstr ""
560
-
561
- #: ../views/admin.php:573
562
- msgid ""
563
- "displays post/page current rating, requires WP-PostRatings installed and "
564
- "enabled"
565
- msgstr ""
566
-
567
- #: ../views/admin.php:573
568
- msgid ""
569
- "displays post/page current rating as an integer, requires WP-PostRatings "
570
- "installed and enabled"
571
- msgstr ""
572
-
573
- #: ../views/admin.php:573
574
- msgid "outputs the URL of the post/page"
575
- msgstr ""
576
-
577
- #: ../views/admin.php:573
578
- msgid "displays post/page title, no link"
579
- msgstr ""
580
-
581
- #: ../views/admin.php:573
582
- msgid "displays linked author name, requires stats_author=1"
583
- msgstr ""
584
-
585
- #: ../views/admin.php:573
586
- msgid "displays linked category name, requires stats_category=1"
587
- msgstr ""
588
-
589
- #: ../views/admin.php:573
590
- msgid "displays views count only, no text"
591
- msgstr ""
592
-
593
- #: ../views/admin.php:573
594
- msgid "displays comments count only, no text, requires stats_comments=1"
595
- msgstr ""
596
-
597
- #: ../views/admin.php:585
598
- msgid "What does \"Title\" do?"
599
- msgstr ""
600
-
601
- #: ../views/admin.php:588
602
- msgid ""
603
- "It allows you to show a heading for your most popular posts listing. If left "
604
- "empty, no heading will be displayed at all."
605
- msgstr ""
606
-
607
- #: ../views/admin.php:591
608
- msgid "What is Time Range for?"
609
- msgstr ""
610
-
611
- #: ../views/admin.php:593
612
- msgid ""
613
- "It will tell WordPress Popular Posts to retrieve all posts with most views / "
614
- "comments within the selected time range."
615
- msgstr ""
616
-
617
- #: ../views/admin.php:596
618
- msgid "What is \"Sort post by\" for?"
619
- msgstr ""
620
-
621
- #: ../views/admin.php:598
622
- msgid ""
623
- "It allows you to decide whether to order your popular posts listing by total "
624
- "views, comments, or average views per day."
625
- msgstr ""
626
-
627
- #: ../views/admin.php:601
628
- msgid "What does \"Display post rating\" do?"
629
- msgstr ""
630
-
631
- #: ../views/admin.php:603
632
- msgid ""
633
- "If checked, WordPress Popular Posts will show how your readers are rating "
634
- "your most popular posts. This feature requires having WP-PostRatings plugin "
635
- "installed and enabled on your blog for it to work."
636
- msgstr ""
637
-
638
- #: ../views/admin.php:606
639
- msgid "What does \"Shorten title\" do?"
640
- msgstr ""
641
-
642
- #: ../views/admin.php:608
643
- msgid ""
644
- "If checked, all posts titles will be shortened to \"n\" characters/words. A "
645
- "new \"Shorten title to\" option will appear so you can set it to whatever "
646
- "you like."
647
- msgstr ""
648
-
649
- #: ../views/admin.php:611
650
- msgid "What does \"Display post excerpt\" do?"
651
- msgstr ""
652
-
653
- #: ../views/admin.php:613
654
- msgid ""
655
- "If checked, WordPress Popular Posts will also include a small extract of "
656
- "your posts in the list. Similarly to the previous option, you will be able "
657
- "to decide how long the post excerpt should be."
658
- msgstr ""
659
-
660
- #: ../views/admin.php:616
661
- msgid "What does \"Keep text format and links\" do?"
662
- msgstr ""
663
-
664
- #: ../views/admin.php:618
665
- msgid ""
666
- "If checked, and if the Post Excerpt feature is enabled, WordPress Popular "
667
- "Posts will keep the styling tags (eg. bold, italic, etc) that were found in "
668
- "the excerpt. Hyperlinks will remain intact, too."
669
- msgstr ""
670
-
671
- #: ../views/admin.php:621
672
- msgid "What is \"Post type\" for?"
673
- msgstr ""
674
-
675
- #: ../views/admin.php:623
676
- msgid ""
677
- "This filter allows you to decide which post types to show on the listing. By "
678
- "default, it will retrieve only posts and pages (which should be fine for "
679
- "most cases)."
680
- msgstr ""
681
-
682
- #: ../views/admin.php:626
683
- msgid "What is \"Category(ies) ID(s)\" for?"
684
- msgstr ""
685
-
686
- #: ../views/admin.php:628
687
- msgid ""
688
- "This filter allows you to select which categories should be included or "
689
- "excluded from the listing. A negative sign in front of the category ID "
690
- "number will exclude posts belonging to it from the list, for example. You "
691
- "can specify more than one ID with a comma separated list."
692
- msgstr ""
693
-
694
- #: ../views/admin.php:631
695
- msgid "What is \"Author(s) ID(s)\" for?"
696
- msgstr ""
697
-
698
- #: ../views/admin.php:633
699
- msgid ""
700
- "Just like the Category filter, this one lets you filter posts by author ID. "
701
- "You can specify more than one ID with a comma separated list."
702
- msgstr ""
703
-
704
- #: ../views/admin.php:636
705
- msgid "What does \"Display post thumbnail\" do?"
706
- msgstr ""
707
-
708
- #: ../views/admin.php:638
709
- msgid ""
710
- "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail "
711
- "of each post. You can set up the source of the thumbnail via Settings - "
712
- "WordPress Popular Posts - Tools."
713
- msgstr ""
714
-
715
- #: ../views/admin.php:641
716
- msgid "What does \"Display comment count\" do?"
717
- msgstr ""
718
-
719
- #: ../views/admin.php:643
720
- msgid ""
721
- "If checked, WordPress Popular Posts will display how many comments each "
722
- "popular post has got in the selected Time Range."
723
- msgstr ""
724
-
725
- #: ../views/admin.php:646
726
- msgid "What does \"Display views\" do?"
727
- msgstr ""
728
-
729
- #: ../views/admin.php:648
730
- msgid ""
731
- "If checked, WordPress Popular Posts will show how many pageviews a single "
732
- "post has gotten in the selected Time Range."
733
- msgstr ""
734
-
735
- #: ../views/admin.php:651
736
- msgid "What does \"Display author\" do?"
737
- msgstr ""
738
-
739
- #: ../views/admin.php:653
740
- msgid ""
741
- "If checked, WordPress Popular Posts will display the name of the author of "
742
- "each entry listed."
743
- msgstr ""
744
-
745
- #: ../views/admin.php:656
746
- msgid "What does \"Display date\" do?"
747
- msgstr ""
748
-
749
- #: ../views/admin.php:658
750
- msgid ""
751
- "If checked, WordPress Popular Posts will display the date when each popular "
752
- "posts was published."
753
- msgstr ""
754
-
755
- #: ../views/admin.php:661
756
- msgid "What does \"Display category\" do?"
757
- msgstr ""
758
-
759
- #: ../views/admin.php:663
760
- msgid ""
761
- "If checked, WordPress Popular Posts will display the category of each post."
762
- msgstr ""
763
-
764
- #: ../views/admin.php:666
765
- msgid "What does \"Use custom HTML Markup\" do?"
766
- msgstr ""
767
-
768
- #: ../views/admin.php:668
769
- msgid ""
770
- "If checked, you will be able to customize the HTML markup of your popular "
771
- "posts listing. For example, you can decide whether to wrap your posts in an "
772
- "unordered list, an ordered list, a div, etc. If you know xHTML/CSS, this is "
773
- "for you!"
774
- msgstr ""
775
-
776
- #: ../views/admin.php:671
777
- msgid "What are \"Content Tags\"?"
778
- msgstr ""
779
-
780
- #: ../views/admin.php:673
781
- #, php-format
782
- msgid ""
783
- "Content Tags are codes to display a variety of items on your popular posts "
784
- "custom HTML structure. For example, setting it to \"{title}: "
785
- "{summary}\" (without the quotes) would display \"Post title: excerpt of the "
786
- "post here\". For more Content Tags, see the <a href=\"%s\" target=\"_blank"
787
- "\">Parameters</a> section."
788
- msgstr ""
789
-
790
- #: ../views/admin.php:676
791
- msgid "What are \"Template Tags\"?"
792
- msgstr ""
793
-
794
- #: ../views/admin.php:678
795
- msgid ""
796
- "Template Tags are simply php functions that allow you to perform certain "
797
- "actions. For example, WordPress Popular Posts currently supports two "
798
- "different template tags: wpp_get_mostpopular() and wpp_get_views()."
799
- msgstr ""
800
-
801
- #: ../views/admin.php:681
802
- msgid "What are the template tags that WordPress Popular Posts supports?"
803
- msgstr ""
804
-
805
- #: ../views/admin.php:683
806
- msgid ""
807
- "The following are the template tags supported by WordPress Popular Posts"
808
- msgstr ""
809
-
810
- #: ../views/admin.php:687
811
- msgid "Template tag"
812
- msgstr ""
813
-
814
- #: ../views/admin.php:696
815
- #, php-format
816
- msgid ""
817
- "Similar to the widget functionality, this tag retrieves the most popular "
818
- "posts on your blog. This function also accepts <a href=\"%1$s\">parameters</"
819
- "a> so you can customize your popular listing, but these are not required."
820
- msgstr ""
821
-
822
- #: ../views/admin.php:697
823
- #, php-format
824
- msgid ""
825
- "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete "
826
- "list of attributes."
827
- msgstr ""
828
-
829
- #: ../views/admin.php:702
830
- msgid ""
831
- "Displays the number of views of a single post. Post ID is required or it "
832
- "will return false."
833
- msgstr ""
834
-
835
- #: ../views/admin.php:703
836
- msgid "Post ID"
837
- msgstr ""
838
-
839
- #: ../views/admin.php:710
840
- msgid "What are \"shortcodes\"?"
841
- msgstr ""
842
-
843
- #: ../views/admin.php:712
844
- #, php-format
845
- msgid ""
846
- "Shortcodes are similar to BB Codes, these allow us to call a php function by "
847
- "simply typing something like [shortcode]. With WordPress Popular Posts, the "
848
- "shortcode [wpp] will let you insert a list of the most popular posts in "
849
- "posts content and pages too! For more information about shortcodes, please "
850
- "visit the <a href=\"%s\" target=\"_blank\">WordPress Shortcode API</a> page."
851
- msgstr ""
852
-
853
- #: ../views/admin.php:721
854
- #, php-format
855
- msgid "About WordPress Popular Posts %s"
856
- msgstr ""
857
-
858
- #: ../views/admin.php:722
859
- msgid "This version includes the following changes"
860
- msgstr ""
861
-
862
- #: ../views/admin.php:741
863
- msgid "Do you like this plugin?"
864
- msgstr ""
865
-
866
- #: ../views/admin.php:748
867
- msgid ""
868
- "Each donation motivates me to keep releasing free stuff for the WordPress "
869
- "community!"
870
- msgstr ""
871
-
872
- #: ../views/admin.php:749
873
- #, php-format
874
- msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
875
- msgstr ""
876
-
877
- #: ../views/admin.php:753
878
- msgid "Need help?"
879
- msgstr ""
880
-
881
- #: ../views/admin.php:754
882
- #, php-format
883
- msgid ""
884
- "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions "
885
- "and feedback."
886
- msgstr ""
887
-
888
- #: ../views/admin.php:755
889
- msgid "Let's make this plugin even better!"
890
- msgstr ""
891
-
892
- #: ../views/form.php:2
893
- msgid "Title"
894
- msgstr ""
895
-
896
- #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24
897
- #: ../views/form.php:34 ../views/form.php:40 ../views/form.php:43
898
- #: ../views/form.php:52 ../views/form.php:55 ../views/form.php:63
899
- #: ../views/form.php:66 ../views/form.php:73 ../views/form.php:87
900
- #: ../views/form.php:89 ../views/form.php:91 ../views/form.php:93
901
- #: ../views/form.php:105 ../views/form.php:111
902
- msgid "What is this?"
903
- msgstr ""
904
-
905
- #: ../views/form.php:7
906
- msgid "Show up to"
907
- msgstr ""
908
-
909
- #: ../views/form.php:8
910
- msgid "posts"
911
- msgstr ""
912
-
913
- #: ../views/form.php:12
914
- msgid "Sort posts by"
915
- msgstr ""
916
-
917
- #: ../views/form.php:14
918
- msgid "Comments"
919
- msgstr ""
920
-
921
- #: ../views/form.php:15
922
- msgid "Total views"
923
- msgstr ""
924
-
925
- #: ../views/form.php:16
926
- msgid "Avg. daily views"
927
- msgstr ""
928
-
929
- #: ../views/form.php:22
930
- msgid "Filters"
931
- msgstr ""
932
-
933
- #: ../views/form.php:24
934
- msgid "Time Range"
935
- msgstr ""
936
-
937
- #: ../views/form.php:34
938
- msgid "Post type(s)"
939
- msgstr ""
940
-
941
- #: ../views/form.php:37
942
- msgid "Post(s) ID(s) to exclude"
943
- msgstr ""
944
-
945
- #: ../views/form.php:40
946
- msgid "Category(ies) ID(s)"
947
- msgstr ""
948
-
949
- #: ../views/form.php:43
950
- msgid "Author(s) ID(s)"
951
- msgstr ""
952
-
953
- #: ../views/form.php:48
954
- msgid "Posts settings"
955
- msgstr ""
956
-
957
- #: ../views/form.php:52
958
- msgid "Display post rating"
959
- msgstr ""
960
-
961
- #: ../views/form.php:55
962
- msgid "Shorten title"
963
- msgstr ""
964
-
965
- #: ../views/form.php:58
966
- msgid "Shorten title to"
967
- msgstr ""
968
-
969
- #: ../views/form.php:59 ../views/form.php:69
970
- msgid "characters"
971
- msgstr ""
972
-
973
- #: ../views/form.php:60 ../views/form.php:70
974
- msgid "words"
975
- msgstr ""
976
-
977
- #: ../views/form.php:63
978
- msgid "Display post excerpt"
979
- msgstr ""
980
-
981
- #: ../views/form.php:66
982
- msgid "Keep text format and links"
983
- msgstr ""
984
-
985
- #: ../views/form.php:67
986
- msgid "Excerpt length"
987
- msgstr ""
988
-
989
- #: ../views/form.php:73
990
- msgid "Display post thumbnail"
991
- msgstr ""
992
-
993
- #: ../views/form.php:76
994
- msgid "Width"
995
- msgstr ""
996
-
997
- #: ../views/form.php:77 ../views/form.php:80
998
- msgid "px"
999
- msgstr ""
1000
-
1001
- #: ../views/form.php:79
1002
- msgid "Height"
1003
- msgstr ""
1004
-
1005
- #: ../views/form.php:85
1006
- msgid "Stats Tag settings"
1007
- msgstr ""
1008
-
1009
- #: ../views/form.php:87
1010
- msgid "Display comment count"
1011
- msgstr ""
1012
-
1013
- #: ../views/form.php:89
1014
- msgid "Display views"
1015
- msgstr ""
1016
-
1017
- #: ../views/form.php:91
1018
- msgid "Display author"
1019
- msgstr ""
1020
-
1021
- #: ../views/form.php:93
1022
- msgid "Display date"
1023
- msgstr ""
1024
-
1025
- #: ../views/form.php:96
1026
- msgid "Date Format"
1027
- msgstr ""
1028
-
1029
- #: ../views/form.php:98
1030
- msgid "WordPress Date Format"
1031
- msgstr ""
1032
-
1033
- #: ../views/form.php:105
1034
- msgid "Display category"
1035
- msgstr ""
1036
-
1037
- #: ../views/form.php:109
1038
- msgid "HTML Markup settings"
1039
- msgstr ""
1040
-
1041
- #: ../views/form.php:111
1042
- msgid "Use custom HTML Markup"
1043
- msgstr ""
1044
-
1045
- #: ../views/form.php:114
1046
- msgid "Before / after title"
1047
- msgstr ""
1048
-
1049
- #: ../views/form.php:117
1050
- msgid "Before / after Popular Posts"
1051
- msgstr ""
1052
-
1053
- #: ../views/form.php:120
1054
- msgid "Post HTML Markup"
1055
- msgstr ""
1056
-
1057
- #: ../wordpress-popular-posts.php:276
1058
- msgid "The most Popular Posts on your blog."
1059
- msgstr ""
1060
-
1061
- #: ../wordpress-popular-posts.php:433
1062
- msgid ""
1063
- "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing "
1064
- "the <em>id</em> attribute on before_widget (see <a href=\"http://codex."
1065
- "wordpress.org/Function_Reference/register_sidebar\" target=\"_blank\" rel="
1066
- "\"nofollow\">register_sidebar</a> for more)."
1067
- msgstr ""
1068
-
1069
- #: ../wordpress-popular-posts.php:658
1070
- msgid "Upload"
1071
- msgstr ""
1072
-
1073
- #: ../wordpress-popular-posts.php:1032
1074
- #, php-format
1075
- msgid ""
1076
- "Your PHP installation is too old. WordPress Popular Posts requires at least "
1077
- "PHP version %1$s to function correctly. Please contact your hosting provider "
1078
- "and ask them to upgrade PHP to %1$s or higher."
1079
- msgstr ""
1080
-
1081
- #: ../wordpress-popular-posts.php:1039
1082
- #, php-format
1083
- msgid ""
1084
- "Your WordPress version is too old. WordPress Popular Posts requires at least "
1085
- "WordPress version %1$s to function correctly. Please update your blog via "
1086
- "Dashboard &gt; Update."
1087
- msgstr ""
1088
-
1089
- #: ../wordpress-popular-posts.php:1064
1090
- #, php-format
1091
- msgid ""
1092
- "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</"
1093
- "strong>.</p></div>"
1094
- msgstr ""
1095
-
1096
- #: ../wordpress-popular-posts.php:1124
1097
- msgid "Success! The cache table has been cleared!"
1098
- msgstr ""
1099
-
1100
- #: ../wordpress-popular-posts.php:1126
1101
- msgid "Error: cache table does not exist."
1102
- msgstr ""
1103
-
1104
- #: ../wordpress-popular-posts.php:1133
1105
- msgid "Success! All data have been cleared!"
1106
- msgstr ""
1107
-
1108
- #: ../wordpress-popular-posts.php:1135
1109
- msgid "Error: one or both data tables are missing."
1110
- msgstr ""
1111
-
1112
- #: ../wordpress-popular-posts.php:1138 ../wordpress-popular-posts.php:1176
1113
- msgid "Invalid action."
1114
- msgstr ""
1115
-
1116
- #: ../wordpress-popular-posts.php:1141 ../wordpress-popular-posts.php:1179
1117
- msgid ""
1118
- "Sorry, you do not have enough permissions to do this. Please contact the "
1119
- "site administrator for support."
1120
- msgstr ""
1121
-
1122
- #: ../wordpress-popular-posts.php:1171
1123
- msgid "Success! All files have been deleted!"
1124
- msgstr ""
1125
-
1126
- #: ../wordpress-popular-posts.php:1173
1127
- msgid "The thumbnail cache is already empty!"
1128
- msgstr ""
1129
-
1130
- #: ../wordpress-popular-posts.php:1696
1131
- msgid "Sorry. No data so far."
1132
- msgstr ""
1133
-
1134
- #: ../wordpress-popular-posts.php:2156
1135
- #, php-format
1136
- msgid "1 comment"
1137
- msgid_plural "%s comments"
1138
- msgstr[0] ""
1139
- msgstr[1] ""
1140
-
1141
- #: ../wordpress-popular-posts.php:2168
1142
- #, php-format
1143
- msgid "1 view per day"
1144
- msgid_plural "%s views per day"
1145
- msgstr[0] ""
1146
- msgstr[1] ""
1147
-
1148
- #: ../wordpress-popular-posts.php:2174
1149
- #, php-format
1150
- msgid "1 view"
1151
- msgid_plural "%s views"
1152
- msgstr[0] ""
1153
- msgstr[1] ""
1154
-
1155
- #: ../wordpress-popular-posts.php:2186
1156
- #, php-format
1157
- msgid "by %s"
1158
- msgstr ""
1159
-
1160
- #: ../wordpress-popular-posts.php:2192
1161
- #, php-format
1162
- msgid "posted on %s"
1163
- msgstr ""
1164
-
1165
- #: ../wordpress-popular-posts.php:2200
1166
- #, php-format
1167
- msgid "under %s"
1168
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 Wordpress Popular Posts
2
+ # This file is distributed under the same license as the Wordpress Popular Posts package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Wordpress Popular Posts\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-popular-posts\n"
7
+ "POT-Creation-Date: 2014-12-06 18:06-0430\n"
8
+ "PO-Revision-Date: 2014-12-06 18:06-0430\n"
9
+ "Last-Translator: Héctor Cabrera <hcabrerab@gmail.com>\n"
10
+ "Language-Team: Héctor Cabrera <hcabrerab@gmail.com>\n"
11
+ "Language: en\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Generator: Poedit 1.7.1\n"
17
+ "X-Poedit-KeywordsList: _e;__;__ngettext;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;"
18
+ "esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc;_n:1,2\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+
24
+ #: ../views/admin.php:25 ../views/admin.php:34 ../views/admin.php:48
25
+ #: ../views/admin.php:74
26
+ msgid "Settings saved."
27
+ msgstr ""
28
+
29
+ #: ../views/admin.php:40
30
+ msgid "Please provide the name of your custom field."
31
+ msgstr ""
32
+
33
+ #: ../views/admin.php:80
34
+ msgid ""
35
+ "Any changes made to WPP's default stylesheet will be lost after every plugin update. "
36
+ "In order to prevent this from happening, please copy the wpp.css file (located at wp-"
37
+ "content/plugins/wordpress-popular-posts/style) into your theme's directory"
38
+ msgstr ""
39
+
40
+ #: ../views/admin.php:95
41
+ msgid ""
42
+ "This operation will delete all entries from WordPress Popular Posts' cache table and "
43
+ "cannot be undone."
44
+ msgstr ""
45
+
46
+ #: ../views/admin.php:95 ../views/admin.php:103 ../views/admin.php:111
47
+ msgid "Do you want to continue?"
48
+ msgstr ""
49
+
50
+ #: ../views/admin.php:103
51
+ msgid ""
52
+ "This operation will delete all stored info from WordPress Popular Posts' data tables "
53
+ "and cannot be undone."
54
+ msgstr ""
55
+
56
+ #: ../views/admin.php:111
57
+ msgid "This operation will delete all cached thumbnails and cannot be undone."
58
+ msgstr ""
59
+
60
+ #: ../views/admin.php:145
61
+ msgid "Stats"
62
+ msgstr ""
63
+
64
+ #: ../views/admin.php:146
65
+ msgid "Tools"
66
+ msgstr ""
67
+
68
+ #: ../views/admin.php:147 ../views/admin.php:735
69
+ msgid "Parameters"
70
+ msgstr ""
71
+
72
+ #: ../views/admin.php:148
73
+ msgid "FAQ"
74
+ msgstr ""
75
+
76
+ #: ../views/admin.php:149
77
+ msgid "About"
78
+ msgstr ""
79
+
80
+ #: ../views/admin.php:160
81
+ msgid ""
82
+ "Click on each tab to see what are the most popular entries on your blog in the last 24 "
83
+ "hours, this week, last 30 days or all time since WordPress Popular Posts was installed."
84
+ msgstr ""
85
+
86
+ #: ../views/admin.php:166
87
+ msgid "Order by comments"
88
+ msgstr ""
89
+
90
+ #: ../views/admin.php:167
91
+ msgid "Order by views"
92
+ msgstr ""
93
+
94
+ #: ../views/admin.php:168
95
+ msgid "Order by avg. daily views"
96
+ msgstr ""
97
+
98
+ #: ../views/admin.php:170
99
+ msgid "Post type"
100
+ msgstr ""
101
+
102
+ #: ../views/admin.php:171
103
+ msgid "Limit"
104
+ msgstr ""
105
+
106
+ #: ../views/admin.php:173 ../views/admin.php:267 ../views/admin.php:354
107
+ #: ../views/admin.php:391
108
+ msgid "Apply"
109
+ msgstr ""
110
+
111
+ #: ../views/admin.php:176 ../views/form.php:32
112
+ msgid "Display only posts published within the selected Time Range"
113
+ msgstr ""
114
+
115
+ #: ../views/admin.php:183 ../views/form.php:26
116
+ msgid "Last 24 hours"
117
+ msgstr ""
118
+
119
+ #: ../views/admin.php:184 ../views/form.php:27
120
+ msgid "Last 7 days"
121
+ msgstr ""
122
+
123
+ #: ../views/admin.php:185 ../views/form.php:28
124
+ msgid "Last 30 days"
125
+ msgstr ""
126
+
127
+ #: ../views/admin.php:186 ../views/form.php:29
128
+ msgid "All-time"
129
+ msgstr ""
130
+
131
+ #: ../views/admin.php:208
132
+ msgid "Thumbnails"
133
+ msgstr ""
134
+
135
+ #: ../views/admin.php:213
136
+ msgid "Default thumbnail"
137
+ msgstr ""
138
+
139
+ #: ../views/admin.php:218
140
+ msgid "Upload thumbnail"
141
+ msgstr ""
142
+
143
+ #: ../views/admin.php:220
144
+ msgid ""
145
+ "How-to: upload (or select) an image, set Size to Full and click on Upload. After it's "
146
+ "done, hit on Apply to save changes"
147
+ msgstr ""
148
+
149
+ #: ../views/admin.php:224
150
+ msgid "Pick image from"
151
+ msgstr ""
152
+
153
+ #: ../views/admin.php:227
154
+ msgid "Featured image"
155
+ msgstr ""
156
+
157
+ #: ../views/admin.php:228
158
+ msgid "First image on post"
159
+ msgstr ""
160
+
161
+ #: ../views/admin.php:229
162
+ msgid "Custom field"
163
+ msgstr ""
164
+
165
+ #: ../views/admin.php:232
166
+ msgid "Tell WordPress Popular Posts where it should get thumbnails from"
167
+ msgstr ""
168
+
169
+ #: ../views/admin.php:236
170
+ msgid "Custom field name"
171
+ msgstr ""
172
+
173
+ #: ../views/admin.php:242
174
+ msgid "Resize image from Custom field?"
175
+ msgstr ""
176
+
177
+ #: ../views/admin.php:245
178
+ msgid "No, I will upload my own thumbnail"
179
+ msgstr ""
180
+
181
+ #: ../views/admin.php:246
182
+ msgid "Yes"
183
+ msgstr ""
184
+
185
+ #: ../views/admin.php:257
186
+ msgid "Empty image cache"
187
+ msgstr ""
188
+
189
+ #: ../views/admin.php:258
190
+ msgid "Use this button to clear WPP's thumbnails cache"
191
+ msgstr ""
192
+
193
+ #: ../views/admin.php:276
194
+ msgid "Data"
195
+ msgstr ""
196
+
197
+ #: ../views/admin.php:281
198
+ msgid "Log views from"
199
+ msgstr ""
200
+
201
+ #: ../views/admin.php:284
202
+ msgid "Visitors only"
203
+ msgstr ""
204
+
205
+ #: ../views/admin.php:285
206
+ msgid "Logged-in users only"
207
+ msgstr ""
208
+
209
+ #: ../views/admin.php:286
210
+ msgid "Everyone"
211
+ msgstr ""
212
+
213
+ #: ../views/admin.php:292
214
+ msgid "Ajaxify widget"
215
+ msgstr ""
216
+
217
+ #: ../views/admin.php:295 ../views/admin.php:335 ../views/admin.php:382
218
+ msgid "Disabled"
219
+ msgstr ""
220
+
221
+ #: ../views/admin.php:296 ../views/admin.php:336 ../views/admin.php:381
222
+ msgid "Enabled"
223
+ msgstr ""
224
+
225
+ #: ../views/admin.php:300
226
+ msgid ""
227
+ "If you are using a caching plugin such as WP Super Cache, enabling this feature will "
228
+ "keep the popular list from being cached by it"
229
+ msgstr ""
230
+
231
+ #: ../views/admin.php:304
232
+ msgid "WPP Cache Expiry Policy"
233
+ msgstr ""
234
+
235
+ #: ../views/admin.php:307
236
+ msgid "Never cache"
237
+ msgstr ""
238
+
239
+ #: ../views/admin.php:308
240
+ msgid "Enable caching"
241
+ msgstr ""
242
+
243
+ #: ../views/admin.php:312
244
+ msgid ""
245
+ "Sets WPP's cache expiration time. WPP can cache the popular list for a specified "
246
+ "amount of time. Recommended for large / high traffic sites"
247
+ msgstr ""
248
+
249
+ #: ../views/admin.php:316
250
+ msgid "Refresh cache every"
251
+ msgstr ""
252
+
253
+ #: ../views/admin.php:320
254
+ msgid "Minute(s)"
255
+ msgstr ""
256
+
257
+ #: ../views/admin.php:321
258
+ msgid "Hour(s)"
259
+ msgstr ""
260
+
261
+ #: ../views/admin.php:322
262
+ msgid "Day(s)"
263
+ msgstr ""
264
+
265
+ #: ../views/admin.php:323
266
+ msgid "Week(s)"
267
+ msgstr ""
268
+
269
+ #: ../views/admin.php:324
270
+ msgid "Month(s)"
271
+ msgstr ""
272
+
273
+ #: ../views/admin.php:325
274
+ msgid "Year(s)"
275
+ msgstr ""
276
+
277
+ #: ../views/admin.php:328
278
+ msgid "Really? That long?"
279
+ msgstr ""
280
+
281
+ #: ../views/admin.php:332
282
+ msgid "Data Sampling"
283
+ msgstr ""
284
+
285
+ #: ../views/admin.php:340
286
+ #, php-format
287
+ msgid ""
288
+ "By default, WordPress Popular Posts stores in database every single visit your site "
289
+ "receives. For small / medium sites this is generally OK, but on large / high traffic "
290
+ "sites the constant writing to the database may have an impact on performance. With "
291
+ "data sampling, WordPress Popular Posts will store only a subset of your traffic and "
292
+ "report on the tendencies detected in that sample set (for more on <em>data sampling</"
293
+ "em>, please <a href=\"%1$s\" target=\"_blank\">read here</a>)"
294
+ msgstr ""
295
+
296
+ #: ../views/admin.php:344
297
+ msgid "Sample Rate"
298
+ msgstr ""
299
+
300
+ #: ../views/admin.php:348
301
+ #, php-format
302
+ msgid ""
303
+ "A sampling rate of %d is recommended for large / high traffic sites. For lower traffic "
304
+ "sites, you should lower the value"
305
+ msgstr ""
306
+
307
+ #: ../views/admin.php:363
308
+ msgid "Miscellaneous"
309
+ msgstr ""
310
+
311
+ #: ../views/admin.php:368
312
+ msgid "Open links in"
313
+ msgstr ""
314
+
315
+ #: ../views/admin.php:371
316
+ msgid "Current window"
317
+ msgstr ""
318
+
319
+ #: ../views/admin.php:372
320
+ msgid "New tab/window"
321
+ msgstr ""
322
+
323
+ #: ../views/admin.php:378
324
+ msgid "Use plugin's stylesheet"
325
+ msgstr ""
326
+
327
+ #: ../views/admin.php:385
328
+ msgid ""
329
+ "By default, the plugin includes a stylesheet called wpp.css which you can use to style "
330
+ "your popular posts listing. If you wish to use your own stylesheet or do not want it "
331
+ "to have it included in the header section of your site, use this."
332
+ msgstr ""
333
+
334
+ #: ../views/admin.php:402
335
+ msgid ""
336
+ "WordPress Popular Posts maintains data in two separate tables: one for storing the "
337
+ "most popular entries on a daily basis (from now on, \"cache\"), and another one to "
338
+ "keep the All-time data (from now on, \"historical data\" or just \"data\"). If for "
339
+ "some reason you need to clear the cache table, or even both historical and cache "
340
+ "tables, please use the buttons below to do so."
341
+ msgstr ""
342
+
343
+ #: ../views/admin.php:403
344
+ msgid "Empty cache"
345
+ msgstr ""
346
+
347
+ #: ../views/admin.php:403
348
+ msgid "Use this button to manually clear entries from WPP cache only"
349
+ msgstr ""
350
+
351
+ #: ../views/admin.php:404
352
+ msgid "Clear all data"
353
+ msgstr ""
354
+
355
+ #: ../views/admin.php:404
356
+ msgid "Use this button to manually clear entries from all WPP data tables"
357
+ msgstr ""
358
+
359
+ #: ../views/admin.php:411
360
+ #, php-format
361
+ msgid ""
362
+ "With the following parameters you can customize the popular posts list when using "
363
+ "either the <a href=\"%1$s\">wpp_get_most_popular() template tag</a> or the <a href="
364
+ "\"%2$s\">[wpp] shortcode</a>."
365
+ msgstr ""
366
+
367
+ #: ../views/admin.php:419
368
+ msgid "Parameter"
369
+ msgstr ""
370
+
371
+ #: ../views/admin.php:420 ../views/admin.php:734
372
+ msgid "What it does "
373
+ msgstr ""
374
+
375
+ #: ../views/admin.php:421
376
+ msgid "Possible values"
377
+ msgstr ""
378
+
379
+ #: ../views/admin.php:422
380
+ msgid "Defaults to"
381
+ msgstr ""
382
+
383
+ #: ../views/admin.php:423 ../views/admin.php:736
384
+ msgid "Example"
385
+ msgstr ""
386
+
387
+ #: ../views/admin.php:429
388
+ msgid "Sets a heading for the list"
389
+ msgstr ""
390
+
391
+ #: ../views/admin.php:430 ../views/admin.php:437 ../views/admin.php:444
392
+ #: ../views/admin.php:479 ../views/admin.php:486 ../views/admin.php:493
393
+ #: ../views/admin.php:500 ../views/admin.php:591 ../views/admin.php:605
394
+ #: ../views/admin.php:612
395
+ msgid "Text string"
396
+ msgstr ""
397
+
398
+ #: ../views/admin.php:431
399
+ msgid "Popular Posts"
400
+ msgstr ""
401
+
402
+ #: ../views/admin.php:436
403
+ msgid "Set the opening tag for the heading of the list"
404
+ msgstr ""
405
+
406
+ #: ../views/admin.php:443
407
+ msgid "Set the closing tag for the heading of the list"
408
+ msgstr ""
409
+
410
+ #: ../views/admin.php:450
411
+ msgid "Sets the maximum number of popular posts to be shown on the listing"
412
+ msgstr ""
413
+
414
+ #: ../views/admin.php:451 ../views/admin.php:507 ../views/admin.php:521
415
+ #: ../views/admin.php:542 ../views/admin.php:549
416
+ msgid "Positive integer"
417
+ msgstr ""
418
+
419
+ #: ../views/admin.php:457
420
+ msgid ""
421
+ "Tells WordPress Popular Posts to retrieve the most popular entries within the time "
422
+ "range specified by you"
423
+ msgstr ""
424
+
425
+ #: ../views/admin.php:464
426
+ msgid ""
427
+ "Tells WordPress Popular Posts to retrieve the most popular entries published within "
428
+ "the time range specified by you"
429
+ msgstr ""
430
+
431
+ #: ../views/admin.php:471
432
+ msgid "Sets the sorting option of the popular posts"
433
+ msgstr ""
434
+
435
+ #: ../views/admin.php:472
436
+ msgid "(for average views per day)"
437
+ msgstr ""
438
+
439
+ #: ../views/admin.php:478
440
+ msgid "Defines the type of posts to show on the listing"
441
+ msgstr ""
442
+
443
+ #: ../views/admin.php:485
444
+ msgid ""
445
+ "If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the "
446
+ "listing."
447
+ msgstr ""
448
+
449
+ #: ../views/admin.php:487 ../views/admin.php:494 ../views/admin.php:501
450
+ msgid "None"
451
+ msgstr ""
452
+
453
+ #: ../views/admin.php:492
454
+ msgid ""
455
+ "If set, WordPress Popular Posts will retrieve all entries that belong to the specified "
456
+ "category(ies) ID(s). If a minus sign is used, the category(ies) will be excluded "
457
+ "instead."
458
+ msgstr ""
459
+
460
+ #: ../views/admin.php:499
461
+ msgid ""
462
+ "If set, WordPress Popular Posts will retrieve all entries created by specified "
463
+ "author(s) ID(s)."
464
+ msgstr ""
465
+
466
+ #: ../views/admin.php:506
467
+ msgid ""
468
+ "If set, WordPress Popular Posts will shorten each post title to \"n\" characters "
469
+ "whenever possible"
470
+ msgstr ""
471
+
472
+ #: ../views/admin.php:513
473
+ msgid ""
474
+ "If set to 1, WordPress Popular Posts will shorten each post title to \"n\" words "
475
+ "instead of characters"
476
+ msgstr ""
477
+
478
+ #: ../views/admin.php:520
479
+ msgid ""
480
+ "If set, WordPress Popular Posts will build and include an excerpt of \"n\" characters "
481
+ "long from the content of each post listed as popular"
482
+ msgstr ""
483
+
484
+ #: ../views/admin.php:527
485
+ msgid ""
486
+ "If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) "
487
+ "and hyperlinks found in the excerpt"
488
+ msgstr ""
489
+
490
+ #: ../views/admin.php:534
491
+ msgid ""
492
+ "If set to 1, WordPress Popular Posts will shorten the excerpt to \"n\" words instead "
493
+ "of characters"
494
+ msgstr ""
495
+
496
+ #: ../views/admin.php:541
497
+ msgid ""
498
+ "If set, and if your current server configuration allows it, you will be able to "
499
+ "display thumbnails of your posts. This attribute sets the width for thumbnails"
500
+ msgstr ""
501
+
502
+ #: ../views/admin.php:548
503
+ msgid ""
504
+ "If set, and if your current server configuration allows it, you will be able to "
505
+ "display thumbnails of your posts. This attribute sets the height for thumbnails"
506
+ msgstr ""
507
+
508
+ #: ../views/admin.php:555
509
+ msgid ""
510
+ "If set, and if the WP-PostRatings plugin is installed and enabled on your blog, "
511
+ "WordPress Popular Posts will show how your visitors are rating your entries"
512
+ msgstr ""
513
+
514
+ #: ../views/admin.php:562
515
+ msgid ""
516
+ "If set, WordPress Popular Posts will show how many comments each popular post has got "
517
+ "until now"
518
+ msgstr ""
519
+
520
+ #: ../views/admin.php:569
521
+ msgid ""
522
+ "If set, WordPress Popular Posts will show how many views each popular post has got "
523
+ "since it was installed"
524
+ msgstr ""
525
+
526
+ #: ../views/admin.php:576
527
+ msgid ""
528
+ "If set, WordPress Popular Posts will show who published each popular post on the list"
529
+ msgstr ""
530
+
531
+ #: ../views/admin.php:583
532
+ msgid ""
533
+ "If set, WordPress Popular Posts will display the date when each popular post on the "
534
+ "list was published"
535
+ msgstr ""
536
+
537
+ #: ../views/admin.php:590
538
+ msgid "Sets the date format"
539
+ msgstr ""
540
+
541
+ #: ../views/admin.php:597
542
+ msgid "If set, WordPress Popular Posts will display the category"
543
+ msgstr ""
544
+
545
+ #: ../views/admin.php:604
546
+ msgid "Sets the opening tag for the listing"
547
+ msgstr ""
548
+
549
+ #: ../views/admin.php:611
550
+ msgid "Sets the closing tag for the listing"
551
+ msgstr ""
552
+
553
+ #: ../views/admin.php:618
554
+ msgid "Sets the HTML structure of each post"
555
+ msgstr ""
556
+
557
+ #: ../views/admin.php:619
558
+ msgid "Text string, custom HTML"
559
+ msgstr ""
560
+
561
+ #: ../views/admin.php:619
562
+ msgid "Available Content Tags"
563
+ msgstr ""
564
+
565
+ #: ../views/admin.php:619
566
+ msgid "displays thumbnail linked to post/page"
567
+ msgstr ""
568
+
569
+ #: ../views/admin.php:619
570
+ msgid "displays thumbnail image without linking to post/page"
571
+ msgstr ""
572
+
573
+ #: ../views/admin.php:619
574
+ msgid "displays linked post/page title"
575
+ msgstr ""
576
+
577
+ #: ../views/admin.php:619
578
+ msgid "displays post/page excerpt, and requires excerpt_length to be greater than 0"
579
+ msgstr ""
580
+
581
+ #: ../views/admin.php:619
582
+ msgid "displays the default stats tags"
583
+ msgstr ""
584
+
585
+ #: ../views/admin.php:619
586
+ msgid "displays post/page current rating, requires WP-PostRatings installed and enabled"
587
+ msgstr ""
588
+
589
+ #: ../views/admin.php:619
590
+ msgid ""
591
+ "displays post/page current rating as an integer, requires WP-PostRatings installed and "
592
+ "enabled"
593
+ msgstr ""
594
+
595
+ #: ../views/admin.php:619
596
+ msgid "outputs the URL of the post/page"
597
+ msgstr ""
598
+
599
+ #: ../views/admin.php:619
600
+ msgid "displays post/page title, no link"
601
+ msgstr ""
602
+
603
+ #: ../views/admin.php:619
604
+ msgid "displays linked author name, requires stats_author=1"
605
+ msgstr ""
606
+
607
+ #: ../views/admin.php:619
608
+ msgid "displays linked category name, requires stats_category=1"
609
+ msgstr ""
610
+
611
+ #: ../views/admin.php:619
612
+ msgid "displays views count only, no text"
613
+ msgstr ""
614
+
615
+ #: ../views/admin.php:619
616
+ msgid "displays comments count only, no text, requires stats_comments=1"
617
+ msgstr ""
618
+
619
+ #: ../views/admin.php:619
620
+ msgid "displays post/page date, requires stats_date=1"
621
+ msgstr ""
622
+
623
+ #: ../views/admin.php:631
624
+ msgid "What does \"Title\" do?"
625
+ msgstr ""
626
+
627
+ #: ../views/admin.php:634
628
+ msgid ""
629
+ "It allows you to show a heading for your most popular posts listing. If left empty, no "
630
+ "heading will be displayed at all."
631
+ msgstr ""
632
+
633
+ #: ../views/admin.php:637
634
+ msgid "What is Time Range for?"
635
+ msgstr ""
636
+
637
+ #: ../views/admin.php:639
638
+ msgid ""
639
+ "It will tell WordPress Popular Posts to retrieve all posts with most views / comments "
640
+ "within the selected time range."
641
+ msgstr ""
642
+
643
+ #: ../views/admin.php:642
644
+ msgid "What is \"Sort post by\" for?"
645
+ msgstr ""
646
+
647
+ #: ../views/admin.php:644
648
+ msgid ""
649
+ "It allows you to decide whether to order your popular posts listing by total views, "
650
+ "comments, or average views per day."
651
+ msgstr ""
652
+
653
+ #: ../views/admin.php:647
654
+ msgid "What does \"Display post rating\" do?"
655
+ msgstr ""
656
+
657
+ #: ../views/admin.php:649
658
+ msgid ""
659
+ "If checked, WordPress Popular Posts will show how your readers are rating your most "
660
+ "popular posts. This feature requires having WP-PostRatings plugin installed and "
661
+ "enabled on your blog for it to work."
662
+ msgstr ""
663
+
664
+ #: ../views/admin.php:652
665
+ msgid "What does \"Shorten title\" do?"
666
+ msgstr ""
667
+
668
+ #: ../views/admin.php:654
669
+ msgid ""
670
+ "If checked, all posts titles will be shortened to \"n\" characters/words. A new "
671
+ "\"Shorten title to\" option will appear so you can set it to whatever you like."
672
+ msgstr ""
673
+
674
+ #: ../views/admin.php:657
675
+ msgid "What does \"Display post excerpt\" do?"
676
+ msgstr ""
677
+
678
+ #: ../views/admin.php:659
679
+ msgid ""
680
+ "If checked, WordPress Popular Posts will also include a small extract of your posts in "
681
+ "the list. Similarly to the previous option, you will be able to decide how long the "
682
+ "post excerpt should be."
683
+ msgstr ""
684
+
685
+ #: ../views/admin.php:662
686
+ msgid "What does \"Keep text format and links\" do?"
687
+ msgstr ""
688
+
689
+ #: ../views/admin.php:664
690
+ msgid ""
691
+ "If checked, and if the Post Excerpt feature is enabled, WordPress Popular Posts will "
692
+ "keep the styling tags (eg. bold, italic, etc) that were found in the excerpt. "
693
+ "Hyperlinks will remain intact, too."
694
+ msgstr ""
695
+
696
+ #: ../views/admin.php:667
697
+ msgid "What is \"Post type\" for?"
698
+ msgstr ""
699
+
700
+ #: ../views/admin.php:669
701
+ msgid ""
702
+ "This filter allows you to decide which post types to show on the listing. By default, "
703
+ "it will retrieve only posts and pages (which should be fine for most cases)."
704
+ msgstr ""
705
+
706
+ #: ../views/admin.php:672
707
+ msgid "What is \"Category(ies) ID(s)\" for?"
708
+ msgstr ""
709
+
710
+ #: ../views/admin.php:674
711
+ msgid ""
712
+ "This filter allows you to select which categories should be included or excluded from "
713
+ "the listing. A negative sign in front of the category ID number will exclude posts "
714
+ "belonging to it from the list, for example. You can specify more than one ID with a "
715
+ "comma separated list."
716
+ msgstr ""
717
+
718
+ #: ../views/admin.php:677
719
+ msgid "What is \"Author(s) ID(s)\" for?"
720
+ msgstr ""
721
+
722
+ #: ../views/admin.php:679
723
+ msgid ""
724
+ "Just like the Category filter, this one lets you filter posts by author ID. You can "
725
+ "specify more than one ID with a comma separated list."
726
+ msgstr ""
727
+
728
+ #: ../views/admin.php:682
729
+ msgid "What does \"Display post thumbnail\" do?"
730
+ msgstr ""
731
+
732
+ #: ../views/admin.php:684
733
+ msgid ""
734
+ "If checked, WordPress Popular Posts will attempt to retrieve the thumbnail of each "
735
+ "post. You can set up the source of the thumbnail via Settings - WordPress Popular "
736
+ "Posts - Tools."
737
+ msgstr ""
738
+
739
+ #: ../views/admin.php:687
740
+ msgid "What does \"Display comment count\" do?"
741
+ msgstr ""
742
+
743
+ #: ../views/admin.php:689
744
+ msgid ""
745
+ "If checked, WordPress Popular Posts will display how many comments each popular post "
746
+ "has got in the selected Time Range."
747
+ msgstr ""
748
+
749
+ #: ../views/admin.php:692
750
+ msgid "What does \"Display views\" do?"
751
+ msgstr ""
752
+
753
+ #: ../views/admin.php:694
754
+ msgid ""
755
+ "If checked, WordPress Popular Posts will show how many pageviews a single post has "
756
+ "gotten in the selected Time Range."
757
+ msgstr ""
758
+
759
+ #: ../views/admin.php:697
760
+ msgid "What does \"Display author\" do?"
761
+ msgstr ""
762
+
763
+ #: ../views/admin.php:699
764
+ msgid ""
765
+ "If checked, WordPress Popular Posts will display the name of the author of each entry "
766
+ "listed."
767
+ msgstr ""
768
+
769
+ #: ../views/admin.php:702
770
+ msgid "What does \"Display date\" do?"
771
+ msgstr ""
772
+
773
+ #: ../views/admin.php:704
774
+ msgid ""
775
+ "If checked, WordPress Popular Posts will display the date when each popular posts was "
776
+ "published."
777
+ msgstr ""
778
+
779
+ #: ../views/admin.php:707
780
+ msgid "What does \"Display category\" do?"
781
+ msgstr ""
782
+
783
+ #: ../views/admin.php:709
784
+ msgid "If checked, WordPress Popular Posts will display the category of each post."
785
+ msgstr ""
786
+
787
+ #: ../views/admin.php:712
788
+ msgid "What does \"Use custom HTML Markup\" do?"
789
+ msgstr ""
790
+
791
+ #: ../views/admin.php:714
792
+ msgid ""
793
+ "If checked, you will be able to customize the HTML markup of your popular posts "
794
+ "listing. For example, you can decide whether to wrap your posts in an unordered list, "
795
+ "an ordered list, a div, etc. If you know xHTML/CSS, this is for you!"
796
+ msgstr ""
797
+
798
+ #: ../views/admin.php:717
799
+ msgid "What are \"Content Tags\"?"
800
+ msgstr ""
801
+
802
+ #: ../views/admin.php:719
803
+ #, php-format
804
+ msgid ""
805
+ "Content Tags are codes to display a variety of items on your popular posts custom HTML "
806
+ "structure. For example, setting it to \"{title}: {summary}\" (without the quotes) "
807
+ "would display \"Post title: excerpt of the post here\". For more Content Tags, see the "
808
+ "<a href=\"%s\" target=\"_blank\">Parameters</a> section."
809
+ msgstr ""
810
+
811
+ #: ../views/admin.php:722
812
+ msgid "What are \"Template Tags\"?"
813
+ msgstr ""
814
+
815
+ #: ../views/admin.php:724
816
+ msgid ""
817
+ "Template Tags are simply php functions that allow you to perform certain actions. For "
818
+ "example, WordPress Popular Posts currently supports two different template tags: "
819
+ "wpp_get_mostpopular() and wpp_get_views()."
820
+ msgstr ""
821
+
822
+ #: ../views/admin.php:727
823
+ msgid "What are the template tags that WordPress Popular Posts supports?"
824
+ msgstr ""
825
+
826
+ #: ../views/admin.php:729
827
+ msgid "The following are the template tags supported by WordPress Popular Posts"
828
+ msgstr ""
829
+
830
+ #: ../views/admin.php:733
831
+ msgid "Template tag"
832
+ msgstr ""
833
+
834
+ #: ../views/admin.php:742
835
+ #, php-format
836
+ msgid ""
837
+ "Similar to the widget functionality, this tag retrieves the most popular posts on your "
838
+ "blog. This function also accepts <a href=\"%1$s\">parameters</a> so you can customize "
839
+ "your popular listing, but these are not required."
840
+ msgstr ""
841
+
842
+ #: ../views/admin.php:743
843
+ #, php-format
844
+ msgid ""
845
+ "Please refer to the <a href=\"%1$s\">Parameters section</a> for a complete list of "
846
+ "attributes."
847
+ msgstr ""
848
+
849
+ #: ../views/admin.php:748
850
+ msgid ""
851
+ "Displays the number of views of a single post. Post ID is required or it will return "
852
+ "false."
853
+ msgstr ""
854
+
855
+ #: ../views/admin.php:749
856
+ msgid "Post ID"
857
+ msgstr ""
858
+
859
+ #: ../views/admin.php:756
860
+ msgid "What are \"shortcodes\"?"
861
+ msgstr ""
862
+
863
+ #: ../views/admin.php:758
864
+ #, php-format
865
+ msgid ""
866
+ "Shortcodes are similar to BB Codes, these allow us to call a php function by simply "
867
+ "typing something like [shortcode]. With WordPress Popular Posts, the shortcode [wpp] "
868
+ "will let you insert a list of the most popular posts in posts content and pages too! "
869
+ "For more information about shortcodes, please visit the <a href=\"%s\" target=\"_blank"
870
+ "\">WordPress Shortcode API</a> page."
871
+ msgstr ""
872
+
873
+ #: ../views/admin.php:766
874
+ #, php-format
875
+ msgid "About WordPress Popular Posts %s"
876
+ msgstr ""
877
+
878
+ #: ../views/admin.php:767
879
+ msgid "This version includes the following changes"
880
+ msgstr ""
881
+
882
+ #: ../views/admin.php:797
883
+ msgid "Do you like this plugin?"
884
+ msgstr ""
885
+
886
+ #: ../views/admin.php:804
887
+ msgid ""
888
+ "Each donation motivates me to keep releasing free stuff for the WordPress community!"
889
+ msgstr ""
890
+
891
+ #: ../views/admin.php:805
892
+ #, php-format
893
+ msgid "You can <a href=\"%s\" target=\"_blank\">leave a review</a>, too!"
894
+ msgstr ""
895
+
896
+ #: ../views/admin.php:809
897
+ msgid "Need help?"
898
+ msgstr ""
899
+
900
+ #: ../views/admin.php:810
901
+ #, php-format
902
+ msgid ""
903
+ "Visit <a href=\"%s\" target=\"_blank\">the forum</a> for support, questions and "
904
+ "feedback."
905
+ msgstr ""
906
+
907
+ #: ../views/admin.php:811
908
+ msgid "Let's make this plugin even better!"
909
+ msgstr ""
910
+
911
+ #: ../views/form.php:2
912
+ msgid "Title"
913
+ msgstr ""
914
+
915
+ #: ../views/form.php:2 ../views/form.php:12 ../views/form.php:24 ../views/form.php:34
916
+ #: ../views/form.php:40 ../views/form.php:43 ../views/form.php:52 ../views/form.php:55
917
+ #: ../views/form.php:63 ../views/form.php:66 ../views/form.php:73 ../views/form.php:103
918
+ #: ../views/form.php:105 ../views/form.php:107 ../views/form.php:109
919
+ #: ../views/form.php:121 ../views/form.php:127
920
+ msgid "What is this?"
921
+ msgstr ""
922
+
923
+ #: ../views/form.php:7
924
+ msgid "Show up to"
925
+ msgstr ""
926
+
927
+ #: ../views/form.php:8
928
+ msgid "posts"
929
+ msgstr ""
930
+
931
+ #: ../views/form.php:12
932
+ msgid "Sort posts by"
933
+ msgstr ""
934
+
935
+ #: ../views/form.php:14
936
+ msgid "Comments"
937
+ msgstr ""
938
+
939
+ #: ../views/form.php:15
940
+ msgid "Total views"
941
+ msgstr ""
942
+
943
+ #: ../views/form.php:16
944
+ msgid "Avg. daily views"
945
+ msgstr ""
946
+
947
+ #: ../views/form.php:22
948
+ msgid "Filters"
949
+ msgstr ""
950
+
951
+ #: ../views/form.php:24
952
+ msgid "Time Range"
953
+ msgstr ""
954
+
955
+ #: ../views/form.php:34
956
+ msgid "Post type(s)"
957
+ msgstr ""
958
+
959
+ #: ../views/form.php:37
960
+ msgid "Post(s) ID(s) to exclude"
961
+ msgstr ""
962
+
963
+ #: ../views/form.php:40
964
+ msgid "Category(ies) ID(s)"
965
+ msgstr ""
966
+
967
+ #: ../views/form.php:43
968
+ msgid "Author(s) ID(s)"
969
+ msgstr ""
970
+
971
+ #: ../views/form.php:48
972
+ msgid "Posts settings"
973
+ msgstr ""
974
+
975
+ #: ../views/form.php:52
976
+ msgid "Display post rating"
977
+ msgstr ""
978
+
979
+ #: ../views/form.php:55
980
+ msgid "Shorten title"
981
+ msgstr ""
982
+
983
+ #: ../views/form.php:58
984
+ msgid "Shorten title to"
985
+ msgstr ""
986
+
987
+ #: ../views/form.php:59 ../views/form.php:69
988
+ msgid "characters"
989
+ msgstr ""
990
+
991
+ #: ../views/form.php:60 ../views/form.php:70
992
+ msgid "words"
993
+ msgstr ""
994
+
995
+ #: ../views/form.php:63
996
+ msgid "Display post excerpt"
997
+ msgstr ""
998
+
999
+ #: ../views/form.php:66
1000
+ msgid "Keep text format and links"
1001
+ msgstr ""
1002
+
1003
+ #: ../views/form.php:67
1004
+ msgid "Excerpt length"
1005
+ msgstr ""
1006
+
1007
+ #: ../views/form.php:73
1008
+ msgid "Display post thumbnail"
1009
+ msgstr ""
1010
+
1011
+ #: ../views/form.php:76
1012
+ msgid "Use predefined size"
1013
+ msgstr ""
1014
+
1015
+ #: ../views/form.php:90
1016
+ msgid "Set size manually"
1017
+ msgstr ""
1018
+
1019
+ #: ../views/form.php:92
1020
+ msgid "Width"
1021
+ msgstr ""
1022
+
1023
+ #: ../views/form.php:93 ../views/form.php:96
1024
+ msgid "px"
1025
+ msgstr ""
1026
+
1027
+ #: ../views/form.php:95
1028
+ msgid "Height"
1029
+ msgstr ""
1030
+
1031
+ #: ../views/form.php:101
1032
+ msgid "Stats Tag settings"
1033
+ msgstr ""
1034
+
1035
+ #: ../views/form.php:103
1036
+ msgid "Display comment count"
1037
+ msgstr ""
1038
+
1039
+ #: ../views/form.php:105
1040
+ msgid "Display views"
1041
+ msgstr ""
1042
+
1043
+ #: ../views/form.php:107
1044
+ msgid "Display author"
1045
+ msgstr ""
1046
+
1047
+ #: ../views/form.php:109
1048
+ msgid "Display date"
1049
+ msgstr ""
1050
+
1051
+ #: ../views/form.php:112
1052
+ msgid "Date Format"
1053
+ msgstr ""
1054
+
1055
+ #: ../views/form.php:114
1056
+ msgid "WordPress Date Format"
1057
+ msgstr ""
1058
+
1059
+ #: ../views/form.php:121
1060
+ msgid "Display category"
1061
+ msgstr ""
1062
+
1063
+ #: ../views/form.php:125
1064
+ msgid "HTML Markup settings"
1065
+ msgstr ""
1066
+
1067
+ #: ../views/form.php:127
1068
+ msgid "Use custom HTML Markup"
1069
+ msgstr ""
1070
+
1071
+ #: ../views/form.php:130
1072
+ msgid "Before / after title"
1073
+ msgstr ""
1074
+
1075
+ #: ../views/form.php:133
1076
+ msgid "Before / after Popular Posts"
1077
+ msgstr ""
1078
+
1079
+ #: ../views/form.php:136
1080
+ msgid "Post HTML Markup"
1081
+ msgstr ""
1082
+
1083
+ #: ../wordpress-popular-posts.php:293
1084
+ msgid "The most Popular Posts on your blog."
1085
+ msgstr ""
1086
+
1087
+ #: ../wordpress-popular-posts.php:476
1088
+ msgid ""
1089
+ "Error: cannot ajaxify WordPress Popular Posts on this theme. It's missing the <em>id</"
1090
+ "em> attribute on before_widget (see <a href=\"http://codex.wordpress.org/"
1091
+ "Function_Reference/register_sidebar\" target=\"_blank\" rel=\"nofollow"
1092
+ "\">register_sidebar</a> for more)."
1093
+ msgstr ""
1094
+
1095
+ #: ../wordpress-popular-posts.php:720
1096
+ msgid "Upload"
1097
+ msgstr ""
1098
+
1099
+ #: ../wordpress-popular-posts.php:1096
1100
+ #, php-format
1101
+ msgid ""
1102
+ "Your PHP installation is too old. WordPress Popular Posts requires at least PHP "
1103
+ "version %1$s to function correctly. Please contact your hosting provider and ask them "
1104
+ "to upgrade PHP to %1$s or higher."
1105
+ msgstr ""
1106
+
1107
+ #: ../wordpress-popular-posts.php:1103
1108
+ #, php-format
1109
+ msgid ""
1110
+ "Your WordPress version is too old. WordPress Popular Posts requires at least WordPress "
1111
+ "version %1$s to function correctly. Please update your blog via Dashboard &gt; Update."
1112
+ msgstr ""
1113
+
1114
+ #: ../wordpress-popular-posts.php:1128
1115
+ #, php-format
1116
+ msgid ""
1117
+ "<div class=\"error\"><p>%1$s</p><p><i>%2$s</i> has been <strong>deactivated</strong>.</"
1118
+ "p></div>"
1119
+ msgstr ""
1120
+
1121
+ #: ../wordpress-popular-posts.php:1188
1122
+ msgid "Success! The cache table has been cleared!"
1123
+ msgstr ""
1124
+
1125
+ #: ../wordpress-popular-posts.php:1190
1126
+ msgid "Error: cache table does not exist."
1127
+ msgstr ""
1128
+
1129
+ #: ../wordpress-popular-posts.php:1197
1130
+ msgid "Success! All data have been cleared!"
1131
+ msgstr ""
1132
+
1133
+ #: ../wordpress-popular-posts.php:1199
1134
+ msgid "Error: one or both data tables are missing."
1135
+ msgstr ""
1136
+
1137
+ #: ../wordpress-popular-posts.php:1202 ../wordpress-popular-posts.php:1240
1138
+ msgid "Invalid action."
1139
+ msgstr ""
1140
+
1141
+ #: ../wordpress-popular-posts.php:1205 ../wordpress-popular-posts.php:1243
1142
+ msgid ""
1143
+ "Sorry, you do not have enough permissions to do this. Please contact the site "
1144
+ "administrator for support."
1145
+ msgstr ""
1146
+
1147
+ #: ../wordpress-popular-posts.php:1235
1148
+ msgid "Success! All files have been deleted!"
1149
+ msgstr ""
1150
+
1151
+ #: ../wordpress-popular-posts.php:1237
1152
+ msgid "The thumbnail cache is already empty!"
1153
+ msgstr ""
1154
+
1155
+ #: ../wordpress-popular-posts.php:1771
1156
+ msgid "Sorry. No data so far."
1157
+ msgstr ""
1158
+
1159
+ #: ../wordpress-popular-posts.php:2248
1160
+ #, php-format
1161
+ msgid "1 comment"
1162
+ msgid_plural "%s comments"
1163
+ msgstr[0] ""
1164
+ msgstr[1] ""
1165
+
1166
+ #: ../wordpress-popular-posts.php:2260
1167
+ #, php-format
1168
+ msgid "1 view per day"
1169
+ msgid_plural "%s views per day"
1170
+ msgstr[0] ""
1171
+ msgstr[1] ""
1172
+
1173
+ #: ../wordpress-popular-posts.php:2266
1174
+ #, php-format
1175
+ msgid "1 view"
1176
+ msgid_plural "%s views"
1177
+ msgstr[0] ""
1178
+ msgstr[1] ""
1179
+
1180
+ #: ../wordpress-popular-posts.php:2278
1181
+ #, php-format
1182
+ msgid "by %s"
1183
+ msgstr ""
1184
+
1185
+ #: ../wordpress-popular-posts.php:2284
1186
+ #, php-format
1187
+ msgid "posted on %s"
1188
+ msgstr ""
1189
+
1190
+ #: ../wordpress-popular-posts.php:2292
1191
+ #, php-format
1192
+ msgid "under %s"
1193
+ msgstr ""
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: hcabrera
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hcabrerab%40gmail%2ecom&lc=GB&item_name=WordPress%20Popular%20Posts%20Plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG_global%2egif%3aNonHosted
4
  Tags: popular, posts, widget, popularity, top
5
  Requires at least: 3.8
6
- Tested up to: 4.0
7
- Stable tag: 3.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -152,6 +152,29 @@ For the time being, the [Support Forum](http://wordpress.org/support/plugin/word
152
  4. WordPress Popular Posts Stats panel.
153
 
154
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  = 3.1.1 =
156
  * Adds check for exif extension availability.
157
  * Rolls back check for user's default thumbnail.
@@ -401,9 +424,9 @@ For the time being, the [Support Forum](http://wordpress.org/support/plugin/word
401
 
402
  All translations are community made: people who are nice enough to share their translations with me so I can distribute them with the plugin. If you spot an error, or feel like helping improve a translation, please check the [FAQ section](http://wordpress.org/plugins/wordpress-popular-posts/faq/ "FAQ section") for instructions.
403
 
404
- * English.
405
- * Spanish.
406
- * German - 92% translated (8 fuzzy strings, 9 not translated).
407
 
408
  == Credits ==
409
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=hcabrerab%40gmail%2ecom&lc=GB&item_name=WordPress%20Popular%20Posts%20Plugin&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG_global%2egif%3aNonHosted
4
  Tags: popular, posts, widget, popularity, top
5
  Requires at least: 3.8
6
+ Tested up to: 4.0.1
7
+ Stable tag: 3.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
152
  4. WordPress Popular Posts Stats panel.
153
 
154
  == Changelog ==
155
+ = 3.2.0 =
156
+ * Adds check for jQuery.
157
+ * Fixes invalid parameter in htmlspecialchars().
158
+ * Switches AJAX update to POST method.
159
+ * Removes href attribute from link when popular post is viewed.
160
+ * Removes unnecesary ORDER BY clause in views/comments subquery.
161
+ * Fixes Javascript console not working under IE8 (thanks, @[raphaelsaunier](https://github.com/raphaelsaunier)!)
162
+ * Fixes WPML compatibility bug storing post IDs as 0.
163
+ * Removes wpp-upload.js since it was no longer in use.
164
+ * Fixes undefined default thumbnail image (thanks, Lea Cohen!)
165
+ * Fixes rating parameter returning false value.
166
+ * Adds Data Sampling (thanks, @[kurtpayne](https://github.com/kurtpayne)!)
167
+ * Minor query optimizations.
168
+ * Adds {date} (thanks, @[matsuoshi](https://github.com/matsuoshi)!) and {thumb_img} tags to custom html.
169
+ * Adds minute time option for caching.
170
+ * Adds wpp_data_sampling filter.
171
+ * Removes jQuery's DOM ready hook for AJAX views update.
172
+ * Adds back missing GROUP BY clause.
173
+ * Removes unnecesary HTML decoding for custom HTML (thanks, Lea Cohen!)
174
+ * Translates category name when WPML is detected.
175
+ * Adds list of available thumbnail sizes to the widget.
176
+ * Other minor bugfixes and improvements.
177
+
178
  = 3.1.1 =
179
  * Adds check for exif extension availability.
180
  * Rolls back check for user's default thumbnail.
424
 
425
  All translations are community made: people who are nice enough to share their translations with me so I can distribute them with the plugin. If you spot an error, or feel like helping improve a translation, please check the [FAQ section](http://wordpress.org/plugins/wordpress-popular-posts/faq/ "FAQ section") for instructions.
426
 
427
+ * English (supported by Hector Cabrera).
428
+ * Spanish (supported by Hector Cabrera).
429
+ * German - 87% translated.
430
 
431
  == Credits ==
432
 
style/admin.css CHANGED
@@ -4,6 +4,27 @@
4
  width:100%;
5
  }
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  /* Stats */
8
  #wpp-stats-tabs {
9
  padding:2px 0;
@@ -34,9 +55,9 @@
34
  }
35
 
36
  .wpp-stats ol li {
37
- overflow:hidden;
38
- margin:0 8px 10px 8px!important;
39
- padding:0 0 2px 0!important;
40
  font-size:12px;
41
  line-height:12px;
42
  color:#999;
@@ -44,25 +65,26 @@
44
  }
45
 
46
  .wpp-post-title {
47
- display:inline;
48
- float:left;
49
  font-weight:bold;
50
  }
51
 
52
  .post-stats {
53
- display:inline;
54
- float:right;
55
  font-size:0.9em!important;
56
- text-align:right;
57
  color:#999;
58
  }
59
 
60
  .wpp-stats-unique-item, .wpp-stats-last-item {
61
- margin:0!important;
62
- padding:0!important;
63
  border:none!important;
64
  }
65
 
 
 
66
  .wpp-stats p {
67
  margin:0;
68
  padding:0 8px;
4
  width:100%;
5
  }
6
 
7
+ .wpp_box {
8
+ overflow:hidden;
9
+ display:inline;
10
+ float:right;
11
+ margin:0 0 15px 0;
12
+ padding:10px;
13
+ width:230px;
14
+ background:#f9f9f9;
15
+ border: 1px solid #ccc;
16
+ }
17
+
18
+ #wpp_donate { margin-top:15px; }
19
+
20
+ #wpp_support { clear:right; }
21
+
22
+ .clear {
23
+ float:none;
24
+ clear:both;
25
+ width:100%;
26
+ }
27
+
28
  /* Stats */
29
  #wpp-stats-tabs {
30
  padding:2px 0;
55
  }
56
 
57
  .wpp-stats ol li {
58
+ /*overflow:hidden;*/
59
+ margin:0 8px 15px 30px;
60
+ padding:0;
61
  font-size:12px;
62
  line-height:12px;
63
  color:#999;
65
  }
66
 
67
  .wpp-post-title {
68
+ /*display:inline;
69
+ float:left;*/
70
  font-weight:bold;
71
  }
72
 
73
  .post-stats {
74
+ display:block;
75
+ padding:5px 0;
76
  font-size:0.9em!important;
77
+ text-align:left;
78
  color:#999;
79
  }
80
 
81
  .wpp-stats-unique-item, .wpp-stats-last-item {
82
+ margin-bottom:0!important;
 
83
  border:none!important;
84
  }
85
 
86
+ .wpp-stats-unique-item .post-stats, .wpp-stats-last-item .post-stats { padding-bottom:0; }
87
+
88
  .wpp-stats p {
89
  margin:0;
90
  padding:0 8px;
views/admin.php CHANGED
@@ -65,6 +65,11 @@ if ( isset($_POST['section']) ) {
65
  ? $_POST['cache_interval_value']
66
  : 1;
67
 
 
 
 
 
 
68
  update_site_option('wpp_settings_config', $this->user_settings);
69
  echo "<div class=\"updated\"><p><strong>" . __('Settings saved.', $this->plugin_slug ) . "</strong></p></div>";
70
  }
@@ -110,6 +115,23 @@ if (empty($wpp_rand)) {
110
  }
111
  }
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  </script>
114
 
115
  <div class="wrap">
@@ -147,12 +169,15 @@ if (empty($wpp_rand)) {
147
  </select>
148
  <label for="stats_type"><?php _e("Post type", $this->plugin_slug); ?>:</label> <input type="text" name="stats_type" value="<?php echo $this->user_settings['stats']['post_type']; ?>" size="15" />
149
  <label for="stats_limits"><?php _e("Limit", $this->plugin_slug); ?>:</label> <input type="text" name="stats_limit" value="<?php echo $this->user_settings['stats']['limit']; ?>" size="5" />
150
- &nbsp;&nbsp;&nbsp;<label for="stats_freshness"><input type="checkbox" class="checkbox" <?php echo ($this->user_settings['stats']['freshness']) ? 'checked="checked"' : ''; ?> id="stats_freshness" name="stats_freshness" /> <?php _e('Display only posts published within the selected Time Range', 'wordpress-popular-posts'); ?></label>&nbsp;&nbsp;&nbsp;&nbsp;
151
  <input type="hidden" name="section" value="stats" />
152
  <input type="submit" class="button-secondary action" value="<?php _e("Apply", $this->plugin_slug); ?>" name="" />
 
 
 
153
  </form>
154
  </div>
155
  </div>
 
156
  <br />
157
  <div id="wpp-stats-tabs">
158
  <a href="#" class="button-primary" rel="wpp-daily"><?php _e("Last 24 hours", $this->plugin_slug); ?></a>
@@ -162,16 +187,16 @@ if (empty($wpp_rand)) {
162
  </div>
163
  <div id="wpp-stats-canvas">
164
  <div class="wpp-stats wpp-stats-active" id="wpp-daily">
165
- <?php echo do_shortcode("[wpp range='daily' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li>{title} <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
166
  </div>
167
  <div class="wpp-stats" id="wpp-weekly">
168
- <?php echo do_shortcode("[wpp range='weekly' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li>{title} <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
169
  </div>
170
  <div class="wpp-stats" id="wpp-monthly">
171
- <?php echo do_shortcode("[wpp range='monthly' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li>{title} <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
172
  </div>
173
  <div class="wpp-stats" id="wpp-all">
174
- <?php echo do_shortcode("[wpp range='all' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li>{title} <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
175
  </div>
176
  </div>
177
  </div>
@@ -192,7 +217,7 @@ if (empty($wpp_rand)) {
192
  </div>
193
  <input id="upload_thumb_button" type="button" class="button" value="<?php _e( "Upload thumbnail", $this->plugin_slug ); ?>" />
194
  <input type="hidden" id="upload_thumb_src" name="upload_thumb_src" value="" />
195
- <p class="description"><?php _e("How-to: upload (or select) an image, set Size to Full and click on Upload. After it's done, hit on Apply to save changes", $this->plugin_slug); ?></p>
196
  </td>
197
  </tr>
198
  <tr valign="top">
@@ -204,7 +229,7 @@ if (empty($wpp_rand)) {
204
  <option <?php if ($this->user_settings['tools']['thumbnail']['source'] == "custom_field") {?>selected="selected"<?php } ?> value="custom_field"><?php _e("Custom field", $this->plugin_slug); ?></option>
205
  </select>
206
  <br />
207
- <p class="description"><?php _e("Tell WordPress Popular Posts where it should get thumbnails from", $this->plugin_slug); ?></p>
208
  </td>
209
  </tr>
210
  <tr valign="top" <?php if ($this->user_settings['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> id="row_custom_field">
@@ -230,7 +255,7 @@ if (empty($wpp_rand)) {
230
  <th scope="row"></th>
231
  <td>
232
  <input type="button" name="wpp-reset-cache" id="wpp-reset-cache" class="button-secondary" value="<?php _e("Empty image cache", $this->plugin_slug); ?>" onclick="confirm_clear_image_cache()" />
233
- <p class="description"><?php _e("Use this button to clear WPP's thumbnails cache", $this->plugin_slug); ?></p>
234
  </td>
235
  </tr>
236
  <?php
@@ -272,26 +297,27 @@ if (empty($wpp_rand)) {
272
  </select>
273
 
274
  <br />
275
- <p class="description"><?php _e("If you are using a caching plugin such as WP Super Cache, enabling this feature will keep the popular list from being cached by it", $this->plugin_slug); ?></p>
276
  </td>
277
  </tr>
278
  <tr valign="top">
279
- <th scope="row"><label for="cache"><?php _e("Listing refresh interval", $this->plugin_slug); ?>:</label></th>
280
  <td>
281
  <select name="cache" id="cache">
282
- <option <?php if ( !$this->user_settings['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Live", $this->plugin_slug); ?></option>
283
- <option <?php if ( $this->user_settings['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Custom interval", $this->plugin_slug); ?></option>
284
  </select>
285
 
286
  <br />
287
- <p class="description"><?php _e("Sets how often the listing should be updated. For most sites the Live option should be fine, however if you are experiencing slowdowns or your blog gets a lot of visitors then you might want to change the refresh rate", $this->plugin_slug); ?></p>
288
  </td>
289
  </tr>
290
  <tr valign="top" <?php if ( !$this->user_settings['tools']['cache']['active'] ) { ?>style="display:none;"<?php } ?> id="cache_refresh_interval">
291
- <th scope="row"><label for="cache_interval_value"><?php _e("Refresh list every", $this->plugin_slug); ?>:</label></th>
292
  <td>
293
  <input name="cache_interval_value" type="text" id="cache_interval_value" value="<?php echo ( isset($this->user_settings['tools']['cache']['interval']['value']) ) ? (int) $this->user_settings['tools']['cache']['interval']['value'] : 1; ?>" class="small-text">
294
  <select name="cache_interval_time" id="cache_interval_time">
 
295
  <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "hour") {?>selected="selected"<?php } ?> value="hour"><?php _e("Hour(s)", $this->plugin_slug); ?></option>
296
  <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "day") {?>selected="selected"<?php } ?> value="day"><?php _e("Day(s)", $this->plugin_slug); ?></option>
297
  <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "week") {?>selected="selected"<?php } ?> value="week"><?php _e("Week(s)", $this->plugin_slug); ?></option>
@@ -302,6 +328,26 @@ if (empty($wpp_rand)) {
302
  <p class="description" style="display:none;" id="cache_too_long"><?php _e("Really? That long?", $this->plugin_slug); ?></p>
303
  </td>
304
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  <tr valign="top">
306
  <td colspan="2">
307
  <input type="hidden" name="section" value="data" />
@@ -383,196 +429,196 @@ if (empty($wpp_rand)) {
383
  <td><?php _e('Sets a heading for the list', $this->plugin_slug); ?></td>
384
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
385
  <td><?php _e('Popular Posts', $this->plugin_slug); ?></td>
386
- <td>header="Popular Posts"</td>
387
  </tr>
388
  <tr class="alternate">
389
  <td><strong>header_start</strong></td>
390
  <td><?php _e('Set the opening tag for the heading of the list', $this->plugin_slug); ?></td>
391
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
392
  <td>&lt;h2&gt;</td>
393
- <td>header_start="&lt;h2&gt;"</td>
394
  </tr>
395
  <tr>
396
  <td><strong>header_end</strong></td>
397
  <td><?php _e('Set the closing tag for the heading of the list', $this->plugin_slug); ?></td>
398
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
399
  <td>&lt;/h2&gt;</td>
400
- <td>header_end="&lt;/h2&gt;"</td>
401
  </tr>
402
  <tr class="alternate">
403
  <td><strong>limit</strong></td>
404
  <td><?php _e('Sets the maximum number of popular posts to be shown on the listing', $this->plugin_slug); ?></td>
405
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
406
  <td>10</td>
407
- <td>limit=10</td>
408
  </tr>
409
  <tr>
410
  <td><strong>range</strong></td>
411
  <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries within the time range specified by you', $this->plugin_slug); ?></td>
412
  <td>"daily", "weekly", "monthly", "all"</td>
413
  <td>daily</td>
414
- <td>range="daily"</td>
415
  </tr>
416
  <tr class="alternate">
417
  <td><strong>freshness</strong></td>
418
  <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries published within the time range specified by you', $this->plugin_slug); ?></td>
419
  <td>1 (true), 0 (false)</td>
420
  <td>0</td>
421
- <td>freshness=1</td>
422
  </tr>
423
  <tr>
424
  <td><strong>order_by</strong></td>
425
  <td><?php _e('Sets the sorting option of the popular posts', $this->plugin_slug); ?></td>
426
  <td>"comments", "views", "avg" <?php _e('(for average views per day)', $this->plugin_slug); ?></td>
427
  <td>views</td>
428
- <td>order_by="comments"</td>
429
  </tr>
430
  <tr class="alternate">
431
  <td><strong>post_type</strong></td>
432
  <td><?php _e('Defines the type of posts to show on the listing', $this->plugin_slug); ?></td>
433
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
434
  <td>post,page</td>
435
- <td>post_type="post,page,your-custom-post-type"</td>
436
  </tr>
437
  <tr>
438
  <td><strong>pid</strong></td>
439
  <td><?php _e('If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the listing.', $this->plugin_slug); ?></td>
440
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
441
  <td><?php _e('None', $this->plugin_slug); ?></td>
442
- <td>pid="60,25,31"</td>
443
  </tr>
444
  <tr class="alternate">
445
  <td><strong>cat</strong></td>
446
  <td><?php _e('If set, WordPress Popular Posts will retrieve all entries that belong to the specified category(ies) ID(s). If a minus sign is used, the category(ies) will be excluded instead.', $this->plugin_slug); ?></td>
447
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
448
  <td><?php _e('None', $this->plugin_slug); ?></td>
449
- <td>cat="1,55,-74"</td>
450
  </tr>
451
  <tr>
452
  <td><strong>author</strong></td>
453
  <td><?php _e('If set, WordPress Popular Posts will retrieve all entries created by specified author(s) ID(s).', $this->plugin_slug); ?></td>
454
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
455
  <td><?php _e('None', $this->plugin_slug); ?></td>
456
- <td>author="75,8,120"</td>
457
  </tr>
458
  <tr class="alternate">
459
  <td><strong>title_length</strong></td>
460
  <td><?php _e('If set, WordPress Popular Posts will shorten each post title to "n" characters whenever possible', $this->plugin_slug); ?></td>
461
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
462
  <td>25</td>
463
- <td>title_length=25</td>
464
  </tr>
465
  <tr>
466
  <td><strong>title_by_words</strong></td>
467
  <td><?php _e('If set to 1, WordPress Popular Posts will shorten each post title to "n" words instead of characters', $this->plugin_slug); ?></td>
468
  <td>1 (true), (0) false</td>
469
  <td>0</td>
470
- <td>title_by_words=1</td>
471
  </tr>
472
  <tr class="alternate">
473
  <td><strong>excerpt_length</strong></td>
474
  <td><?php _e('If set, WordPress Popular Posts will build and include an excerpt of "n" characters long from the content of each post listed as popular', $this->plugin_slug); ?></td>
475
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
476
  <td>0</td>
477
- <td>excerpt_length=55</td>
478
  </tr>
479
  <tr>
480
  <td><strong>excerpt_format</strong></td>
481
  <td><?php _e('If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) and hyperlinks found in the excerpt', $this->plugin_slug); ?></td>
482
  <td>1 (true), (0) false</td>
483
  <td>0</td>
484
- <td>excerpt_format=1</td>
485
  </tr>
486
  <tr class="alternate">
487
  <td><strong>excerpt_by_words</strong></td>
488
  <td><?php _e('If set to 1, WordPress Popular Posts will shorten the excerpt to "n" words instead of characters', $this->plugin_slug); ?></td>
489
  <td>1 (true), (0) false</td>
490
  <td>0</td>
491
- <td>excerpt_by_words=1</td>
492
  </tr>
493
  <tr>
494
  <td><strong>thumbnail_width</strong></td>
495
  <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the width for thumbnails', $this->plugin_slug); ?></td>
496
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
497
  <td>15</td>
498
- <td>thumbnail_width=30</td>
499
  </tr>
500
  <tr class="alternate">
501
  <td><strong>thumbnail_height</strong></td>
502
  <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the height for thumbnails', $this->plugin_slug); ?></td>
503
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
504
  <td>15</td>
505
- <td>thumbnail_height=30</td>
506
  </tr>
507
  <tr>
508
  <td><strong>rating</strong></td>
509
  <td><?php _e('If set, and if the WP-PostRatings plugin is installed and enabled on your blog, WordPress Popular Posts will show how your visitors are rating your entries', $this->plugin_slug); ?></td>
510
  <td>1 (true), (0) false</td>
511
  <td>0</td>
512
- <td>rating=1</td>
513
  </tr>
514
  <tr class="alternate">
515
  <td><strong>stats_comments</strong></td>
516
  <td><?php _e('If set, WordPress Popular Posts will show how many comments each popular post has got until now', $this->plugin_slug); ?></td>
517
  <td>1 (true), 0 (false)</td>
518
  <td>1</td>
519
- <td>stats_comments=1</td>
520
  </tr>
521
  <tr>
522
  <td><strong>stats_views</strong></td>
523
  <td><?php _e('If set, WordPress Popular Posts will show how many views each popular post has got since it was installed', $this->plugin_slug); ?></td>
524
  <td>1 (true), (0) false</td>
525
  <td>0</td>
526
- <td>stats_views=1</td>
527
  </tr>
528
  <tr class="alternate">
529
  <td><strong>stats_author</strong></td>
530
  <td><?php _e('If set, WordPress Popular Posts will show who published each popular post on the list', $this->plugin_slug); ?></td>
531
  <td>1 (true), (0) false</td>
532
  <td>0</td>
533
- <td>stats_author=1</td>
534
  </tr>
535
  <tr>
536
  <td><strong>stats_date</strong></td>
537
  <td><?php _e('If set, WordPress Popular Posts will display the date when each popular post on the list was published', $this->plugin_slug); ?></td>
538
  <td>1 (true), (0) false</td>
539
  <td>0</td>
540
- <td>stats_date=1</td>
541
  </tr>
542
  <tr class="alternate">
543
  <td><strong>stats_date_format</strong></td>
544
  <td><?php _e('Sets the date format', $this->plugin_slug); ?></td>
545
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
546
  <td>0</td>
547
- <td>stats_date_format='F j, Y'</td>
548
  </tr>
549
  <tr>
550
  <td><strong>stats_category</strong></td>
551
  <td><?php _e('If set, WordPress Popular Posts will display the category', $this->plugin_slug); ?></td>
552
  <td>1 (true), (0) false</td>
553
  <td>0</td>
554
- <td>stats_category=1</td>
555
  </tr>
556
  <tr class="alternate">
557
  <td><strong>wpp_start</strong></td>
558
  <td><?php _e('Sets the opening tag for the listing', $this->plugin_slug); ?></td>
559
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
560
  <td>&lt;ul&gt;</td>
561
- <td>wpp_start="&lt;ul&gt;"</td>
562
  </tr>
563
  <tr>
564
  <td><strong>wpp_end</strong></td>
565
  <td><?php _e('Sets the closing tag for the listing', $this->plugin_slug); ?></td>
566
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
567
  <td>&lt;/ul&gt;</td>
568
- <td>wpp_end="&lt;/ul&gt;"</td>
569
  </tr>
570
  <tr class="alternate">
571
  <td><strong>post_html</strong></td>
572
  <td><?php _e('Sets the HTML structure of each post', $this->plugin_slug); ?></td>
573
- <td><?php _e('Text string, custom HTML', $this->plugin_slug); ?>.<br /><br /><strong><?php _e('Available Content Tags', $this->plugin_slug); ?>:</strong> <br /><em>{thumb}</em> (<?php _e('displays thumbnail linked to post/page', $this->plugin_slug); ?>)<br /> <em>{title}</em> (<?php _e('displays linked post/page title', $this->plugin_slug); ?>)<br /> <em>{summary}</em> (<?php _e('displays post/page excerpt, and requires excerpt_length to be greater than 0', $this->plugin_slug); ?>)<br /> <em>{stats}</em> (<?php _e('displays the default stats tags', $this->plugin_slug); ?>)<br /> <em>{rating}</em> (<?php _e('displays post/page current rating, requires WP-PostRatings installed and enabled', $this->plugin_slug); ?>)<br /> <em>{score}</em> (<?php _e('displays post/page current rating as an integer, requires WP-PostRatings installed and enabled', $this->plugin_slug); ?>)<br /> <em>{url}</em> (<?php _e('outputs the URL of the post/page', $this->plugin_slug); ?>)<br /> <em>{text_title}</em> (<?php _e('displays post/page title, no link', $this->plugin_slug); ?>)<br /> <em>{author}</em> (<?php _e('displays linked author name, requires stats_author=1', $this->plugin_slug); ?>)<br /> <em>{category}</em> (<?php _e('displays linked category name, requires stats_category=1', $this->plugin_slug); ?>)<br /> <em>{views}</em> (<?php _e('displays views count only, no text', $this->plugin_slug); ?>)<br /> <em>{comments}</em> (<?php _e('displays comments count only, no text, requires stats_comments=1', $this->plugin_slug); ?>)</td>
574
  <td>&lt;li&gt;{thumb} {title} {stats}&lt;/li&gt;</td>
575
- <td>post_html="&lt;li&gt;{thumb} &lt;a href='{url}'&gt;{text_title}&lt;/a&gt; &lt;/li&gt;"</td>
576
  </tr>
577
  </tbody>
578
  </table>
@@ -715,35 +761,54 @@ if (empty($wpp_rand)) {
715
  <!-- End faq -->
716
 
717
  <!-- Start about -->
718
- <div id="wpp_faq" class="wpp_boxes"<?php if ( "about" == $current ) {?> style="display:block;"<?php } ?>>
719
-
720
- <div style="float:left; width:800px;">
721
- <h3><?php echo sprintf( __('About WordPress Popular Posts %s', $this->plugin_slug), $this->version); ?></h3>
722
- <p><?php _e( 'This version includes the following changes', $this->plugin_slug ); ?>:</p>
723
- <ul>
724
- <li>Adds check for exif extension availability.</li>
725
- <li>Rolls back check for user's default thumbnail.</li>
726
- </ul>
727
- </div>
728
 
729
- <div style="display:inline; float:right; margin:15px 0 0 0; padding:10px; width:230px; background:#f9f9f9; border: 1px solid #ccc;">
730
- <h3 style="margin-top:0; text-align:center;"><?php _e('Do you like this plugin?', $this->plugin_slug); ?></h3>
731
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
732
- <input type="hidden" name="cmd" value="_s-xclick">
733
- <input type="hidden" name="hosted_button_id" value="RP9SK8KVQHRKS">
734
- <input type="image" src="//www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" style="display:block; margin:0 auto;">
735
- <img alt="" border="0" src="//www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
736
- </form>
737
- <p><?php _e( 'Each donation motivates me to keep releasing free stuff for the WordPress community!', $this->plugin_slug ); ?></p>
738
- <p><?php echo sprintf( __('You can <a href="%s" target="_blank">leave a review</a>, too!', $this->plugin_slug), 'http://wordpress.org/support/view/plugin-reviews/wordpress-popular-posts' ); ?></p>
739
- </div>
740
 
741
- <div style="display:inline; float:right; clear:right; margin:15px 0 0 0; padding:10px; width:230px; background:#f9f9f9; border: 1px solid #ccc;">
742
- <h3 style="margin-top:0; text-align:center;"><?php _e('Need help?', $this->plugin_slug); ?></h3>
743
- <p><?php echo sprintf( __('Visit <a href="%s" target="_blank">the forum</a> for support, questions and feedback.', $this->plugin_slug), 'http://wordpress.org/support/plugin/wordpress-popular-posts' ); ?></p>
744
- <p><?php _e('Let\'s make this plugin even better!', $this->plugin_slug); ?></p>
745
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
746
  </div>
747
  <!-- End about -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
748
 
749
  </div>
65
  ? $_POST['cache_interval_value']
66
  : 1;
67
 
68
+ $this->user_settings['tools']['sampling']['active'] = $_POST['sampling'];
69
+ $this->user_settings['tools']['sampling']['rate'] = ( isset($_POST['sample_rate']) && is_numeric($_POST['sample_rate']) && $_POST['sample_rate'] > 0 )
70
+ ? $_POST['sample_rate']
71
+ : 100;
72
+
73
  update_site_option('wpp_settings_config', $this->user_settings);
74
  echo "<div class=\"updated\"><p><strong>" . __('Settings saved.', $this->plugin_slug ) . "</strong></p></div>";
75
  }
115
  }
116
  }
117
 
118
+ jQuery(document).ready(function($){
119
+ <?php if ( "params" != $current ) : ?>
120
+ $('.wpp_boxes:visible').css({
121
+ display: 'inline',
122
+ float: 'left'
123
+ }).width( $('.wpp_boxes:visible').parent().width() - $('.wpp_box').outerWidth() - 15 );
124
+
125
+ $(window).on('resize', function(){
126
+ $('.wpp_boxes:visible').css({
127
+ display: 'inline',
128
+ float: 'left'
129
+ }).width( $('.wpp_boxes:visible').parent().width() - $('.wpp_box').outerWidth() - 15 );
130
+ });
131
+ <?php else: ?>
132
+ $('.wpp_box').hide();
133
+ <?php endif; ?>
134
+ });
135
  </script>
136
 
137
  <div class="wrap">
169
  </select>
170
  <label for="stats_type"><?php _e("Post type", $this->plugin_slug); ?>:</label> <input type="text" name="stats_type" value="<?php echo $this->user_settings['stats']['post_type']; ?>" size="15" />
171
  <label for="stats_limits"><?php _e("Limit", $this->plugin_slug); ?>:</label> <input type="text" name="stats_limit" value="<?php echo $this->user_settings['stats']['limit']; ?>" size="5" />
 
172
  <input type="hidden" name="section" value="stats" />
173
  <input type="submit" class="button-secondary action" value="<?php _e("Apply", $this->plugin_slug); ?>" name="" />
174
+
175
+ <div class="clear"></div>
176
+ <label for="stats_freshness"><input type="checkbox" class="checkbox" <?php echo ($this->user_settings['stats']['freshness']) ? 'checked="checked"' : ''; ?> id="stats_freshness" name="stats_freshness" /> <?php _e('Display only posts published within the selected Time Range', 'wordpress-popular-posts'); ?></label>
177
  </form>
178
  </div>
179
  </div>
180
+ <div class="clear"></div>
181
  <br />
182
  <div id="wpp-stats-tabs">
183
  <a href="#" class="button-primary" rel="wpp-daily"><?php _e("Last 24 hours", $this->plugin_slug); ?></a>
187
  </div>
188
  <div id="wpp-stats-canvas">
189
  <div class="wpp-stats wpp-stats-active" id="wpp-daily">
190
+ <?php echo do_shortcode("[wpp range='daily' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
191
  </div>
192
  <div class="wpp-stats" id="wpp-weekly">
193
+ <?php echo do_shortcode("[wpp range='weekly' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
194
  </div>
195
  <div class="wpp-stats" id="wpp-monthly">
196
+ <?php echo do_shortcode("[wpp range='monthly' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
197
  </div>
198
  <div class="wpp-stats" id="wpp-all">
199
+ <?php echo do_shortcode("[wpp range='all' post_type='".$this->user_settings['stats']['post_type']."' stats_comments=1 stats_views=1 order_by='".$this->user_settings['stats']['order_by']."' wpp_start='<ol>' wpp_end='</ol>' post_html='<li><a href=\"{url}\" target=\"_blank\" class=\"wpp-post-title\">{text_title}</a> <span class=\"post-stats\">{stats}</span></li>' limit=".$this->user_settings['stats']['limit']." freshness=" . $this->user_settings['stats']['freshness'] . "]"); ?>
200
  </div>
201
  </div>
202
  </div>
217
  </div>
218
  <input id="upload_thumb_button" type="button" class="button" value="<?php _e( "Upload thumbnail", $this->plugin_slug ); ?>" />
219
  <input type="hidden" id="upload_thumb_src" name="upload_thumb_src" value="" />
220
+ <p class="description"><?php _e("How-to: upload (or select) an image, set Size to Full and click on Upload. After it's done, hit on Apply to save changes", $this->plugin_slug); ?>.</p>
221
  </td>
222
  </tr>
223
  <tr valign="top">
229
  <option <?php if ($this->user_settings['tools']['thumbnail']['source'] == "custom_field") {?>selected="selected"<?php } ?> value="custom_field"><?php _e("Custom field", $this->plugin_slug); ?></option>
230
  </select>
231
  <br />
232
+ <p class="description"><?php _e("Tell WordPress Popular Posts where it should get thumbnails from", $this->plugin_slug); ?>.</p>
233
  </td>
234
  </tr>
235
  <tr valign="top" <?php if ($this->user_settings['tools']['thumbnail']['source'] != "custom_field") {?>style="display:none;"<?php } ?> id="row_custom_field">
255
  <th scope="row"></th>
256
  <td>
257
  <input type="button" name="wpp-reset-cache" id="wpp-reset-cache" class="button-secondary" value="<?php _e("Empty image cache", $this->plugin_slug); ?>" onclick="confirm_clear_image_cache()" />
258
+ <p class="description"><?php _e("Use this button to clear WPP's thumbnails cache", $this->plugin_slug); ?>.</p>
259
  </td>
260
  </tr>
261
  <?php
297
  </select>
298
 
299
  <br />
300
+ <p class="description"><?php _e("If you are using a caching plugin such as WP Super Cache, enabling this feature will keep the popular list from being cached by it", $this->plugin_slug); ?>.</p>
301
  </td>
302
  </tr>
303
  <tr valign="top">
304
+ <th scope="row"><label for="cache"><?php _e("WPP Cache Expiry Policy", $this->plugin_slug); ?>:</label></th>
305
  <td>
306
  <select name="cache" id="cache">
307
+ <option <?php if ( !$this->user_settings['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Never cache", $this->plugin_slug); ?></option>
308
+ <option <?php if ( $this->user_settings['tools']['cache']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Enable caching", $this->plugin_slug); ?></option>
309
  </select>
310
 
311
  <br />
312
+ <p class="description"><?php _e("Sets WPP's cache expiration time. WPP can cache the popular list for a specified amount of time. Recommended for large / high traffic sites", $this->plugin_slug); ?>.</p>
313
  </td>
314
  </tr>
315
  <tr valign="top" <?php if ( !$this->user_settings['tools']['cache']['active'] ) { ?>style="display:none;"<?php } ?> id="cache_refresh_interval">
316
+ <th scope="row"><label for="cache_interval_value"><?php _e("Refresh cache every", $this->plugin_slug); ?>:</label></th>
317
  <td>
318
  <input name="cache_interval_value" type="text" id="cache_interval_value" value="<?php echo ( isset($this->user_settings['tools']['cache']['interval']['value']) ) ? (int) $this->user_settings['tools']['cache']['interval']['value'] : 1; ?>" class="small-text">
319
  <select name="cache_interval_time" id="cache_interval_time">
320
+ <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "minute") {?>selected="selected"<?php } ?> value="minute"><?php _e("Minute(s)", $this->plugin_slug); ?></option>
321
  <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "hour") {?>selected="selected"<?php } ?> value="hour"><?php _e("Hour(s)", $this->plugin_slug); ?></option>
322
  <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "day") {?>selected="selected"<?php } ?> value="day"><?php _e("Day(s)", $this->plugin_slug); ?></option>
323
  <option <?php if ($this->user_settings['tools']['cache']['interval']['time'] == "week") {?>selected="selected"<?php } ?> value="week"><?php _e("Week(s)", $this->plugin_slug); ?></option>
328
  <p class="description" style="display:none;" id="cache_too_long"><?php _e("Really? That long?", $this->plugin_slug); ?></p>
329
  </td>
330
  </tr>
331
+ <tr valign="top">
332
+ <th scope="row"><label for="sampling"><?php _e("Data Sampling", $this->plugin_slug); ?>:</label></th>
333
+ <td>
334
+ <select name="sampling" id="sampling">
335
+ <option <?php if ( !$this->user_settings['tools']['sampling']['active'] ) { ?>selected="selected"<?php } ?> value="0"><?php _e("Disabled", $this->plugin_slug); ?></option>
336
+ <option <?php if ( $this->user_settings['tools']['sampling']['active'] ) { ?>selected="selected"<?php } ?> value="1"><?php _e("Enabled", $this->plugin_slug); ?></option>
337
+ </select>
338
+
339
+ <br />
340
+ <p class="description"><?php echo sprintf( __('By default, WordPress Popular Posts stores in database every single visit your site receives. For small / medium sites this is generally OK, but on large / high traffic sites the constant writing to the database may have an impact on performance. With data sampling, WordPress Popular Posts will store only a subset of your traffic and report on the tendencies detected in that sample set (for more on <em>data sampling</em>, please <a href="%1$s" target="_blank">read here</a>)', $this->plugin_slug), 'http://en.wikipedia.org/wiki/Sample_%28statistics%29' ); ?>.</p>
341
+ </td>
342
+ </tr>
343
+ <tr valign="top" <?php if ( !$this->user_settings['tools']['sampling']['active'] ) { ?>style="display:none;"<?php } ?>>
344
+ <th scope="row"><label for="sample_rate"><?php _e("Sample Rate", $this->plugin_slug); ?>:</label></th>
345
+ <td>
346
+ <input name="sample_rate" type="text" id="sample_rate" value="<?php echo ( isset($this->user_settings['tools']['sampling']['rate']) ) ? (int) $this->user_settings['tools']['sampling']['rate'] : 100; ?>" class="small-text">
347
+ <br />
348
+ <p class="description"><?php echo sprintf( __("A sampling rate of %d is recommended for large / high traffic sites. For lower traffic sites, you should lower the value", $this->plugin_slug), $this->default_user_settings['tools']['sampling']['rate'] ); ?>.</p>
349
+ </td>
350
+ </tr>
351
  <tr valign="top">
352
  <td colspan="2">
353
  <input type="hidden" name="section" value="data" />
429
  <td><?php _e('Sets a heading for the list', $this->plugin_slug); ?></td>
430
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
431
  <td><?php _e('Popular Posts', $this->plugin_slug); ?></td>
432
+ <td>&lt;?php wpp_get_mostpopular( 'header="Popular Posts"' ); ?&gt;</td>
433
  </tr>
434
  <tr class="alternate">
435
  <td><strong>header_start</strong></td>
436
  <td><?php _e('Set the opening tag for the heading of the list', $this->plugin_slug); ?></td>
437
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
438
  <td>&lt;h2&gt;</td>
439
+ <td>&lt;?php wpp_get_mostpopular( 'header_start="&lt;h2&gt;"&amp;header_end="&lt;/h2&gt;"' ); ?&gt;</td>
440
  </tr>
441
  <tr>
442
  <td><strong>header_end</strong></td>
443
  <td><?php _e('Set the closing tag for the heading of the list', $this->plugin_slug); ?></td>
444
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
445
  <td>&lt;/h2&gt;</td>
446
+ <td>&lt;?php wpp_get_mostpopular( 'header_start="&lt;h2&gt;"&amp;header_end="&lt;/h2&gt;"' ); ?&gt;</td>
447
  </tr>
448
  <tr class="alternate">
449
  <td><strong>limit</strong></td>
450
  <td><?php _e('Sets the maximum number of popular posts to be shown on the listing', $this->plugin_slug); ?></td>
451
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
452
  <td>10</td>
453
+ <td>&lt;?php wpp_get_mostpopular( 'limit=10' ); ?&gt;</td>
454
  </tr>
455
  <tr>
456
  <td><strong>range</strong></td>
457
  <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries within the time range specified by you', $this->plugin_slug); ?></td>
458
  <td>"daily", "weekly", "monthly", "all"</td>
459
  <td>daily</td>
460
+ <td>&lt;?php wpp_get_mostpopular( 'range="daily"' ); ?&gt;</td>
461
  </tr>
462
  <tr class="alternate">
463
  <td><strong>freshness</strong></td>
464
  <td><?php _e('Tells WordPress Popular Posts to retrieve the most popular entries published within the time range specified by you', $this->plugin_slug); ?></td>
465
  <td>1 (true), 0 (false)</td>
466
  <td>0</td>
467
+ <td>&lt;?php wpp_get_mostpopular( 'freshness=1' ); ?&gt;</td>
468
  </tr>
469
  <tr>
470
  <td><strong>order_by</strong></td>
471
  <td><?php _e('Sets the sorting option of the popular posts', $this->plugin_slug); ?></td>
472
  <td>"comments", "views", "avg" <?php _e('(for average views per day)', $this->plugin_slug); ?></td>
473
  <td>views</td>
474
+ <td>&lt;?php wpp_get_mostpopular( 'order_by="comments"' ); ?&gt;</td>
475
  </tr>
476
  <tr class="alternate">
477
  <td><strong>post_type</strong></td>
478
  <td><?php _e('Defines the type of posts to show on the listing', $this->plugin_slug); ?></td>
479
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
480
  <td>post,page</td>
481
+ <td>&lt;?php wpp_get_mostpopular( 'post_type="post,page,your-custom-post-type"' ); ?&gt;</td>
482
  </tr>
483
  <tr>
484
  <td><strong>pid</strong></td>
485
  <td><?php _e('If set, WordPress Popular Posts will exclude the specified post(s) ID(s) form the listing.', $this->plugin_slug); ?></td>
486
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
487
  <td><?php _e('None', $this->plugin_slug); ?></td>
488
+ <td>&lt;?php wpp_get_mostpopular( 'pid="60,25,31"' ); ?&gt;</td>
489
  </tr>
490
  <tr class="alternate">
491
  <td><strong>cat</strong></td>
492
  <td><?php _e('If set, WordPress Popular Posts will retrieve all entries that belong to the specified category(ies) ID(s). If a minus sign is used, the category(ies) will be excluded instead.', $this->plugin_slug); ?></td>
493
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
494
  <td><?php _e('None', $this->plugin_slug); ?></td>
495
+ <td>&lt;?php wpp_get_mostpopular( 'cat="1,55,-74"' ); ?&gt;</td>
496
  </tr>
497
  <tr>
498
  <td><strong>author</strong></td>
499
  <td><?php _e('If set, WordPress Popular Posts will retrieve all entries created by specified author(s) ID(s).', $this->plugin_slug); ?></td>
500
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
501
  <td><?php _e('None', $this->plugin_slug); ?></td>
502
+ <td>&lt;?php wpp_get_mostpopular( 'author="75,8,120"' ); ?&gt;</td>
503
  </tr>
504
  <tr class="alternate">
505
  <td><strong>title_length</strong></td>
506
  <td><?php _e('If set, WordPress Popular Posts will shorten each post title to "n" characters whenever possible', $this->plugin_slug); ?></td>
507
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
508
  <td>25</td>
509
+ <td>&lt;?php wpp_get_mostpopular( 'title_length=25' ); ?&gt;</td>
510
  </tr>
511
  <tr>
512
  <td><strong>title_by_words</strong></td>
513
  <td><?php _e('If set to 1, WordPress Popular Posts will shorten each post title to "n" words instead of characters', $this->plugin_slug); ?></td>
514
  <td>1 (true), (0) false</td>
515
  <td>0</td>
516
+ <td>&lt;?php wpp_get_mostpopular( 'title_by_words=1' ); ?&gt;</td>
517
  </tr>
518
  <tr class="alternate">
519
  <td><strong>excerpt_length</strong></td>
520
  <td><?php _e('If set, WordPress Popular Posts will build and include an excerpt of "n" characters long from the content of each post listed as popular', $this->plugin_slug); ?></td>
521
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
522
  <td>0</td>
523
+ <td>&lt;?php wpp_get_mostpopular( 'excerpt_length=55&amp;post_html="&lt;li&gt;{thumb} {title} {summary}&lt;/li&gt;"' ); ?&gt;</td>
524
  </tr>
525
  <tr>
526
  <td><strong>excerpt_format</strong></td>
527
  <td><?php _e('If set, WordPress Popular Posts will maintaing all styling tags (strong, italic, etc) and hyperlinks found in the excerpt', $this->plugin_slug); ?></td>
528
  <td>1 (true), (0) false</td>
529
  <td>0</td>
530
+ <td>&lt;?php wpp_get_mostpopular( 'excerpt_format=1&amp;excerpt_length=55&amp;post_html="&lt;li&gt;{thumb} {title} {summary}&lt;/li&gt;"' ); ?&gt;</td>
531
  </tr>
532
  <tr class="alternate">
533
  <td><strong>excerpt_by_words</strong></td>
534
  <td><?php _e('If set to 1, WordPress Popular Posts will shorten the excerpt to "n" words instead of characters', $this->plugin_slug); ?></td>
535
  <td>1 (true), (0) false</td>
536
  <td>0</td>
537
+ <td>&lt;?php wpp_get_mostpopular( 'excerpt_by_words=1&amp;excerpt_length=55&amp;post_html="&lt;li&gt;{thumb} {title} {summary}&lt;/li&gt;"' ); ?&gt;</td>
538
  </tr>
539
  <tr>
540
  <td><strong>thumbnail_width</strong></td>
541
  <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the width for thumbnails', $this->plugin_slug); ?></td>
542
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
543
  <td>15</td>
544
+ <td>&lt;?php wpp_get_mostpopular( 'thumbnail_width=30&amp;thumbnail_height=30' ); ?&gt;</td>
545
  </tr>
546
  <tr class="alternate">
547
  <td><strong>thumbnail_height</strong></td>
548
  <td><?php _e('If set, and if your current server configuration allows it, you will be able to display thumbnails of your posts. This attribute sets the height for thumbnails', $this->plugin_slug); ?></td>
549
  <td><?php _e('Positive integer', $this->plugin_slug); ?></td>
550
  <td>15</td>
551
+ <td>&lt;?php wpp_get_mostpopular( 'thumbnail_width=30&amp;thumbnail_height=30' ); ?&gt;</td>
552
  </tr>
553
  <tr>
554
  <td><strong>rating</strong></td>
555
  <td><?php _e('If set, and if the WP-PostRatings plugin is installed and enabled on your blog, WordPress Popular Posts will show how your visitors are rating your entries', $this->plugin_slug); ?></td>
556
  <td>1 (true), (0) false</td>
557
  <td>0</td>
558
+ <td>&lt;?php wpp_get_mostpopular( 'rating=1&amp;post_html="&lt;li&gt;{thumb} {title} {rating}&lt;/li&gt;"' ); ?&gt;</td>
559
  </tr>
560
  <tr class="alternate">
561
  <td><strong>stats_comments</strong></td>
562
  <td><?php _e('If set, WordPress Popular Posts will show how many comments each popular post has got until now', $this->plugin_slug); ?></td>
563
  <td>1 (true), 0 (false)</td>
564
  <td>1</td>
565
+ <td>&lt;?php wpp_get_mostpopular( 'stats_comments=1' ); ?&gt;</td>
566
  </tr>
567
  <tr>
568
  <td><strong>stats_views</strong></td>
569
  <td><?php _e('If set, WordPress Popular Posts will show how many views each popular post has got since it was installed', $this->plugin_slug); ?></td>
570
  <td>1 (true), (0) false</td>
571
  <td>0</td>
572
+ <td>&lt;?php wpp_get_mostpopular( 'stats_views=1' ); ?&gt;</td>
573
  </tr>
574
  <tr class="alternate">
575
  <td><strong>stats_author</strong></td>
576
  <td><?php _e('If set, WordPress Popular Posts will show who published each popular post on the list', $this->plugin_slug); ?></td>
577
  <td>1 (true), (0) false</td>
578
  <td>0</td>
579
+ <td>&lt;?php wpp_get_mostpopular( 'stats_author=1' ); ?&gt;</td>
580
  </tr>
581
  <tr>
582
  <td><strong>stats_date</strong></td>
583
  <td><?php _e('If set, WordPress Popular Posts will display the date when each popular post on the list was published', $this->plugin_slug); ?></td>
584
  <td>1 (true), (0) false</td>
585
  <td>0</td>
586
+ <td>&lt;?php wpp_get_mostpopular( 'stats_date=1' ); ?&gt;</td>
587
  </tr>
588
  <tr class="alternate">
589
  <td><strong>stats_date_format</strong></td>
590
  <td><?php _e('Sets the date format', $this->plugin_slug); ?></td>
591
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
592
  <td>0</td>
593
+ <td>&lt;?php wpp_get_mostpopular( 'stats_date_format="F j, Y"' ); ?&gt;</td>
594
  </tr>
595
  <tr>
596
  <td><strong>stats_category</strong></td>
597
  <td><?php _e('If set, WordPress Popular Posts will display the category', $this->plugin_slug); ?></td>
598
  <td>1 (true), (0) false</td>
599
  <td>0</td>
600
+ <td>&lt;?php wpp_get_mostpopular( 'stats_category=1' ); ?&gt;</td>
601
  </tr>
602
  <tr class="alternate">
603
  <td><strong>wpp_start</strong></td>
604
  <td><?php _e('Sets the opening tag for the listing', $this->plugin_slug); ?></td>
605
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
606
  <td>&lt;ul&gt;</td>
607
+ <td>&lt;?php wpp_get_mostpopular( 'wpp_start="&lt;ol&gt;"&amp;wpp_end="&lt;/ol&gt;"' ); ?&gt;</td>
608
  </tr>
609
  <tr>
610
  <td><strong>wpp_end</strong></td>
611
  <td><?php _e('Sets the closing tag for the listing', $this->plugin_slug); ?></td>
612
  <td><?php _e('Text string', $this->plugin_slug); ?></td>
613
  <td>&lt;/ul&gt;</td>
614
+ <td>&lt;?php wpp_get_mostpopular( 'wpp_start="&lt;ol&gt;"&amp;wpp_end="&lt;/ol&gt;"' ); ?&gt;</td>
615
  </tr>
616
  <tr class="alternate">
617
  <td><strong>post_html</strong></td>
618
  <td><?php _e('Sets the HTML structure of each post', $this->plugin_slug); ?></td>
619
+ <td><?php _e('Text string, custom HTML', $this->plugin_slug); ?>.<br /><br /><strong><?php _e('Available Content Tags', $this->plugin_slug); ?>:</strong> <br /><br /><em>{thumb}</em> (<?php _e('displays thumbnail linked to post/page', $this->plugin_slug); ?>)<br /><br /> <em>{thumb_img}</em> (<?php _e('displays thumbnail image without linking to post/page', $this->plugin_slug); ?>)<br /><br /> <em>{title}</em> (<?php _e('displays linked post/page title', $this->plugin_slug); ?>)<br /><br /> <em>{summary}</em> (<?php _e('displays post/page excerpt, and requires excerpt_length to be greater than 0', $this->plugin_slug); ?>)<br /><br /> <em>{stats}</em> (<?php _e('displays the default stats tags', $this->plugin_slug); ?>)<br /><br /> <em>{rating}</em> (<?php _e('displays post/page current rating, requires WP-PostRatings installed and enabled', $this->plugin_slug); ?>)<br /><br /> <em>{score}</em> (<?php _e('displays post/page current rating as an integer, requires WP-PostRatings installed and enabled', $this->plugin_slug); ?>)<br /><br /> <em>{url}</em> (<?php _e('outputs the URL of the post/page', $this->plugin_slug); ?>)<br /><br /> <em>{text_title}</em> (<?php _e('displays post/page title, no link', $this->plugin_slug); ?>)<br /><br /> <em>{author}</em> (<?php _e('displays linked author name, requires stats_author=1', $this->plugin_slug); ?>)<br /><br /> <em>{category}</em> (<?php _e('displays linked category name, requires stats_category=1', $this->plugin_slug); ?>)<br /><br /> <em>{views}</em> (<?php _e('displays views count only, no text', $this->plugin_slug); ?>)<br /><br /> <em>{comments}</em> (<?php _e('displays comments count only, no text, requires stats_comments=1', $this->plugin_slug); ?>)<br /><br /> <em>{date}</em> (<?php _e('displays post/page date, requires stats_date=1', $this->plugin_slug); ?>)</td>
620
  <td>&lt;li&gt;{thumb} {title} {stats}&lt;/li&gt;</td>
621
+ <td>&lt;?php wpp_get_mostpopular( 'post_html="&lt;li&gt;{thumb} &lt;a href=\'{url}\'&gt;{text_title}&lt;/a&gt;&lt;/li&gt;"' ); ?&gt;</td>
622
  </tr>
623
  </tbody>
624
  </table>
761
  <!-- End faq -->
762
 
763
  <!-- Start about -->
764
+ <div id="wpp_faq" class="wpp_boxes"<?php if ( "about" == $current ) {?> style="display:block;"<?php } ?>>
 
 
 
 
 
 
 
 
 
765
 
766
+ <h3><?php echo sprintf( __('About WordPress Popular Posts %s', $this->plugin_slug), $this->version); ?></h3>
767
+ <p><?php _e( 'This version includes the following changes', $this->plugin_slug ); ?>:</p>
 
 
 
 
 
 
 
 
 
768
 
769
+ <ul>
770
+ <li>Adds check for jQuery.</li>
771
+ <li>Fixes invalid parameter in htmlspecialchars().</li>
772
+ <li>Switches AJAX update to POST method.</li>
773
+ <li>Removes href attribute from link when popular post is viewed.</li>
774
+ <li>Removes unnecesary ORDER BY clause in views/comments subquery.</li>
775
+ <li>Fixes Javascript console not working under IE8 (thanks, <a href="https://github.com/raphaelsaunier" target="_blank">@raphaelsaunier</a>!)</li>
776
+ <li>Fixes WPML compatibility bug storing post IDs as 0.</li>
777
+ <li>Removes wpp-upload.js since it was no longer in use.</li>
778
+ <li>Fixes undefined default thumbnail image (thanks, Lea Cohen!)</li>
779
+ <li>Fixes rating parameter returning false value.</li>
780
+ <li>Adds <em>Data Sampling</em> (thanks, <a href="https://github.com/kurtpayne" target="_blank">@kurtpayne</a>!)</li>
781
+ <li>Minor query optimizations.</li>
782
+ <li>Adds <em>{date}</em> (thanks, <a href="https://github.com/matsuoshi" target="_blank">@matsuoshi</a>!) and <em>{thumb_img}</em> tags to custom html.</li>
783
+ <li>Adds minute time option for caching.</li>
784
+ <li>Adds wpp_data_sampling filter.</li>
785
+ <li>Removes jQuery's DOM ready hook for AJAX views update.</li>
786
+ <li>Adds back missing GROUP BY clause.</li>
787
+ <li>Removes unnecesary HTML decoding for custom HTML (thanks, Lea Cohen!)</li>
788
+ <li>Translates category name when WPML is detected.</li>
789
+ <li>Adds list of available thumbnail sizes to the widget.</li>
790
+ <li>Other minor bugfixes and improvements.</li>
791
+ </ul>
792
+
793
  </div>
794
  <!-- End about -->
795
+
796
+ <div id="wpp_donate" class="wpp_box" style="">
797
+ <h3 style="margin-top:0; text-align:center;"><?php _e('Do you like this plugin?', $this->plugin_slug); ?></h3>
798
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
799
+ <input type="hidden" name="cmd" value="_s-xclick">
800
+ <input type="hidden" name="hosted_button_id" value="RP9SK8KVQHRKS">
801
+ <input type="image" src="//www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" style="display:block; margin:0 auto;">
802
+ <img alt="" border="0" src="//www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
803
+ </form>
804
+ <p><?php _e( 'Each donation motivates me to keep releasing free stuff for the WordPress community!', $this->plugin_slug ); ?></p>
805
+ <p><?php echo sprintf( __('You can <a href="%s" target="_blank">leave a review</a>, too!', $this->plugin_slug), 'http://wordpress.org/support/view/plugin-reviews/wordpress-popular-posts' ); ?></p>
806
+ </div>
807
+
808
+ <div id="wpp_support" class="wpp_box" style="">
809
+ <h3 style="margin-top:0; text-align:center;"><?php _e('Need help?', $this->plugin_slug); ?></h3>
810
+ <p><?php echo sprintf( __('Visit <a href="%s" target="_blank">the forum</a> for support, questions and feedback.', $this->plugin_slug), 'http://wordpress.org/support/plugin/wordpress-popular-posts' ); ?></p>
811
+ <p><?php _e('Let\'s make this plugin even better!', $this->plugin_slug); ?></p>
812
+ </div>
813
 
814
  </div>
views/form.php CHANGED
@@ -73,8 +73,24 @@
73
  <input type="checkbox" class="checkbox" <?php echo ($instance['thumbnail']['active'] && $this->thumbnailing) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>"><?php _e('Display post thumbnail', 'wordpress-popular-posts'); ?></label> <small>[<a href="<?php echo admin_url('options-general.php?page=wordpress-popular-posts&tab=faq#display-thumb'); ?>" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>">?</a>]</small>
74
 
75
  <div style="display:<?php if ($instance['thumbnail']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  <label for="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>"><?php _e('Width', 'wordpress-popular-posts'); ?>:</label>
77
- <input id="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-width' ); ?>" value="<?php echo $instance['thumbnail']['width']; ?>" class="widefat" style="width:50px!important" <?php echo ($this->thumbnailing) ? '' : 'disabled="disabled"' ?> /> <?php _e('px', 'wordpress-popular-posts'); ?><br />
78
 
79
  <label for="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>"><?php _e('Height', 'wordpress-popular-posts'); ?>:</label>
80
  <input id="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-height' ); ?>" value="<?php echo $instance['thumbnail']['height']; ?>" class="widefat" style="width:50px!important" <?php echo ($this->thumbnailing) ? '' : 'disabled="disabled"' ?> /> <?php _e('px', 'wordpress-popular-posts'); ?>
73
  <input type="checkbox" class="checkbox" <?php echo ($instance['thumbnail']['active'] && $this->thumbnailing) ? 'checked="checked"' : ''; ?> id="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-active' ); ?>" /> <label for="<?php echo $this->get_field_id( 'thumbnail-active' ); ?>"><?php _e('Display post thumbnail', 'wordpress-popular-posts'); ?></label> <small>[<a href="<?php echo admin_url('options-general.php?page=wordpress-popular-posts&tab=faq#display-thumb'); ?>" title="<?php _e('What is this?', 'wordpress-popular-posts'); ?>">?</a>]</small>
74
 
75
  <div style="display:<?php if ($instance['thumbnail']['active']) : ?>block<?php else: ?>none<?php endif; ?>; width:90%; margin:10px 0; padding:3% 5%; background:#f5f5f5;">
76
+ <label><input type='radio' id='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' name='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' value='predefined' <?php echo ($instance['thumbnail']['build'] == 'predefined') ? 'checked="checked"' : ''; ?> /><?php _e('Use predefined size', 'wordpress-popular-posts'); ?></label><br />
77
+
78
+ <select id="<?php echo $this->get_field_id( 'thumbnail-size' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-size' ); ?>" class="widefat" style="margin:5px 0;">
79
+ <?php
80
+ $sizes = $this->__get_image_sizes();
81
+
82
+ foreach ( $sizes as $name => $attr ) :
83
+ echo '<option value="' . $name . '"' . ( ($instance['thumbnail']['build'] == 'predefined' && $attr['width'] == $instance['thumbnail']['width'] && $attr['height'] == $instance['thumbnail']['height'] ) ? ' selected="selected"' : '' ) . '>' . $name . ' (' . $attr['width'] . ' x ' . $attr['height'] . ( $attr['crop'] ? ', hard crop' : ', soft crop' ) . ')</option>';
84
+ endforeach;
85
+ ?>
86
+ </select>
87
+
88
+ <hr />
89
+
90
+ <label><input type='radio' id='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' name='<?php echo $this->get_field_name( 'thumbnail-size-source' ); ?>' value='manual' <?php echo ($instance['thumbnail']['build'] == 'manual') ? 'checked="checked"' : ''; ?> /><?php _e('Set size manually', 'wordpress-popular-posts'); ?></label><br />
91
+
92
  <label for="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>"><?php _e('Width', 'wordpress-popular-posts'); ?>:</label>
93
+ <input id="<?php echo $this->get_field_id( 'thumbnail-width' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-width' ); ?>" value="<?php echo $instance['thumbnail']['width']; ?>" class="widefat" style="margin:3px 0; width:50px!important" <?php echo ($this->thumbnailing) ? '' : 'disabled="disabled"' ?> /> <?php _e('px', 'wordpress-popular-posts'); ?><br />
94
 
95
  <label for="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>"><?php _e('Height', 'wordpress-popular-posts'); ?>:</label>
96
  <input id="<?php echo $this->get_field_id( 'thumbnail-height' ); ?>" name="<?php echo $this->get_field_name( 'thumbnail-height' ); ?>" value="<?php echo $instance['thumbnail']['height']; ?>" class="widefat" style="width:50px!important" <?php echo ($this->thumbnailing) ? '' : 'disabled="disabled"' ?> /> <?php _e('px', 'wordpress-popular-posts'); ?>
wordpress-popular-posts.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WordPress Popular Posts
4
  Plugin URI: http://wordpress.org/extend/plugins/wordpress-popular-posts
5
  Description: WordPress Popular Posts is a highly customizable widget that displays the most popular posts on your blog
6
- Version: 3.1.1
7
  Author: Hector Cabrera
8
  Author URI: http://cabrerahector.com
9
  Author Email: hcabrerab@gmail.com
@@ -61,7 +61,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
61
  * @since 1.3.0
62
  * @var string
63
  */
64
- private $version = '3.1.1';
65
 
66
  /**
67
  * Plugin identifier.
@@ -86,6 +86,14 @@ if ( !class_exists('WordpressPopularPosts') ) {
86
  * @var string
87
  */
88
  protected $plugin_screen_hook_suffix = NULL;
 
 
 
 
 
 
 
 
89
 
90
  /**
91
  * Plugin directory.
@@ -164,8 +172,10 @@ if ( !class_exists('WordpressPopularPosts') ) {
164
  ),
165
  'thumbnail' => array(
166
  'active' => false,
 
167
  'width' => 15,
168
- 'height' => 15
 
169
  ),
170
  'rating' => false,
171
  'stats_tag' => array(
@@ -224,6 +234,10 @@ if ( !class_exists('WordpressPopularPosts') ) {
224
  'time' => 'hour',
225
  'value' => 1
226
  )
 
 
 
 
227
  )
228
  )
229
  );
@@ -260,6 +274,9 @@ if ( !class_exists('WordpressPopularPosts') ) {
260
 
261
  // Upgrade check
262
  add_action( 'init', array( $this, 'upgrade_check' ) );
 
 
 
263
 
264
  // Hook fired when a new blog is activated on WP Multisite
265
  add_action( 'wpmu_new_blog', array( $this, 'activate_new_site' ) );
@@ -285,6 +302,9 @@ if ( !class_exists('WordpressPopularPosts') ) {
285
  } else {
286
  $this->user_settings = $this->__merge_array_r( $this->default_user_settings, $this->user_settings );
287
  }
 
 
 
288
 
289
  // Add the options page and menu item.
290
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
@@ -351,15 +371,38 @@ if ( !class_exists('WordpressPopularPosts') ) {
351
  remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head' );
352
  // Add the update hooks only if the logging conditions are met
353
  if ( (0 == $this->user_settings['tools']['log']['level'] && !is_user_logged_in()) || (1 == $this->user_settings['tools']['log']['level']) || (2 == $this->user_settings['tools']['log']['level'] && is_user_logged_in()) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  // Log views on page load via AJAX
355
- add_action( 'wp_head', array(&$this, 'print_ajax') );
 
 
 
 
 
 
 
 
 
 
356
 
357
- // Register views from everyone and/or connected users
358
- if ( 0 != $this->user_settings['tools']['log']['level'] )
359
- add_action( 'wp_ajax_update_views_ajax', array($this, 'update_views_ajax') );
360
- // Register views from everyone and/or visitors only
361
- if ( 2 != $this->user_settings['tools']['log']['level'] )
362
- add_action( 'wp_ajax_nopriv_update_views_ajax', array($this, 'update_views_ajax') );
363
  }
364
 
365
  // Add shortcode
@@ -411,7 +454,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
411
  ? 'custom'
412
  : 'regular';
413
 
414
- echo "\n". "<!-- WordPress Popular Posts Plugin v{$this->version} [W] [{$instance['range']}] [{$instance['order_by']}] [{$markup}] -->" . "\n";
415
 
416
  echo $before_widget . "\n";
417
 
@@ -435,14 +478,22 @@ if ( !class_exists('WordpressPopularPosts') ) {
435
  } else {
436
  ?>
437
  <script type="text/javascript">//<![CDATA[
438
- jQuery(document).ready(function(){
439
- jQuery.get('<?php echo admin_url('admin-ajax.php'); ?>', {
440
- action: 'wpp_get_popular',
441
- id: '<?php echo $this->number; ?>'
442
- }, function(data){
443
- jQuery('#<?php echo $widget_id; ?>').append(data);
 
 
 
 
444
  });
445
- });
 
 
 
 
446
  //]]></script>
447
  <?php
448
  }
@@ -507,10 +558,21 @@ if ( !class_exists('WordpressPopularPosts') ) {
507
  if ( $this->thumbnailing ) {
508
 
509
  $instance['thumbnail']['active'] = isset( $new_instance['thumbnail-active'] );
510
-
511
- if ($this->__is_numeric($new_instance['thumbnail-width']) && $this->__is_numeric($new_instance['thumbnail-height'])) {
512
- $instance['thumbnail']['width'] = $new_instance['thumbnail-width'];
513
- $instance['thumbnail']['height'] = $new_instance['thumbnail-height'];
 
 
 
 
 
 
 
 
 
 
 
514
  }
515
 
516
  }
@@ -684,8 +746,10 @@ if ( !class_exists('WordpressPopularPosts') ) {
684
  /**
685
  * Registers and enqueues widget-specific scripts.
686
  */
687
- public function register_widget_scripts() {
688
- wp_enqueue_script( 'jquery' );
 
 
689
  } // end register_widget_scripts
690
 
691
  /**
@@ -1190,11 +1254,11 @@ if ( !class_exists('WordpressPopularPosts') ) {
1190
  */
1191
  public function update_views_ajax(){
1192
 
1193
- if ( !wp_verify_nonce($_GET['token'], 'wpp-token') || !$this->__is_numeric($_GET['id']) )
1194
  die("WPP: Oops, invalid request!");
1195
 
1196
- $nonce = $_GET['token'];
1197
- $post_ID = $_GET['id'];
1198
 
1199
  $exec_time = 0;
1200
 
@@ -1220,24 +1284,32 @@ if ( !class_exists('WordpressPopularPosts') ) {
1220
  */
1221
  public function print_ajax(){
1222
 
1223
- if ( (is_single() || is_page()) && !is_front_page() && !is_preview() && !is_trackback() && !is_feed() && !is_robots() ) {
1224
-
1225
- global $post;
1226
- $nonce = wp_create_nonce('wpp-token');
1227
-
1228
  ?>
1229
  <!-- WordPress Popular Posts v<?php echo $this->version; ?> -->
1230
  <script type="text/javascript">//<![CDATA[
1231
- jQuery(document).ready(function(){
1232
- jQuery.get('<?php echo admin_url('admin-ajax.php'); ?>', {
1233
- action: 'update_views_ajax',
1234
- token: '<?php echo $nonce; ?>',
1235
- id: <?php echo $post->ID; ?>
1236
- }, function(response){
1237
- if ( console && console.log )
1238
- console.log(response);
1239
- });
1240
- });
 
 
 
 
 
 
 
 
 
 
 
 
1241
  //]]></script>
1242
  <!-- End WordPress Popular Posts v<?php echo $this->version; ?> -->
1243
  <?php
@@ -1286,30 +1358,33 @@ if ( !class_exists('WordpressPopularPosts') ) {
1286
  // WPML support, get original post/page ID
1287
  if ( defined('ICL_LANGUAGE_CODE') && function_exists('icl_object_id') ) {
1288
  global $sitepress;
1289
- $id = icl_object_id( $id, get_post_type( $id ), false, $sitepress->get_default_language() );
1290
  }
1291
 
1292
  $now = $this->__now();
1293
  $curdate = $this->__curdate();
 
 
 
1294
 
1295
  // Update all-time table
1296
  $result1 = $wpdb->query( $wpdb->prepare(
1297
  "INSERT INTO {$table}data
1298
  (postid, day, last_viewed, pageviews) VALUES (%d, %s, %s, %d)
1299
- ON DUPLICATE KEY UPDATE pageviews = pageviews + 1, last_viewed = '%3\$s';",
1300
  $id,
1301
  $now,
1302
  $now,
1303
- 1
1304
  ));
1305
 
1306
  // Update range (summary) table
1307
  $result2 = $wpdb->query( $wpdb->prepare(
1308
  "INSERT INTO {$table}summary
1309
  (postid, pageviews, view_date, last_viewed) VALUES (%d, %d, %s, %s)
1310
- ON DUPLICATE KEY UPDATE pageviews = pageviews + 1, last_viewed = '%4\$s';",
1311
  $id,
1312
- 1,
1313
  $curdate,
1314
  $now
1315
  ));
@@ -1364,10 +1439,6 @@ if ( !class_exists('WordpressPopularPosts') ) {
1364
  // * freshness - get posts published within the selected time range only
1365
  if ( $instance['freshness'] ) {
1366
  switch( $instance['range'] ){
1367
- case "yesterday":
1368
- $where .= " AND p.post_date > DATE_SUB('{$now}', INTERVAL 1 DAY) ";
1369
- break;
1370
-
1371
  case "daily":
1372
  $where .= " AND p.post_date > DATE_SUB('{$now}', INTERVAL 1 DAY) ";
1373
  break;
@@ -1529,21 +1600,20 @@ if ( !class_exists('WordpressPopularPosts') ) {
1529
  elseif ( "avg" == $instance['order_by'] ) {
1530
 
1531
  $fields .= ", ( v.pageviews/(IF ( DATEDIFF('{$now}', MIN(v.day)) > 0, DATEDIFF('{$now}', MIN(v.day)), 1) ) ) AS 'avg_views'";
 
1532
  $orderby = "ORDER BY avg_views DESC";
1533
 
1534
  }
1535
 
1536
  }
1537
 
 
 
1538
  } else { // CUSTOM RANGE
1539
 
1540
  $interval = "";
1541
 
1542
  switch( $instance['range'] ){
1543
- case "yesterday":
1544
- $interval = "1 DAY";
1545
- break;
1546
-
1547
  case "daily":
1548
  $interval = "1 DAY";
1549
  break;
@@ -1565,13 +1635,13 @@ if ( !class_exists('WordpressPopularPosts') ) {
1565
  if ( "comments" == $instance['order_by'] ) {
1566
 
1567
  $fields .= ", c.comment_count AS 'comment_count'";
1568
- $from = "(SELECT comment_post_ID AS 'id', COUNT(comment_post_ID) AS 'comment_count' FROM {$wpdb->comments} WHERE comment_date > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = 1 GROUP BY id ORDER BY comment_count DESC) c LEFT JOIN {$wpdb->posts} p ON c.id = p.ID";
1569
  $where .= " AND p.post_password = '' AND p.post_status = 'publish'";
1570
 
1571
  if ( $instance['stats_tag']['views'] ) { // get views, too
1572
 
1573
  $fields .= ", IFNULL(v.pageviews, 0) AS 'pageviews'";
1574
- $from .= " LEFT JOIN (SELECT postid, SUM(pageviews) AS pageviews FROM {$prefix}summary WHERE last_viewed > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid ORDER BY pageviews DESC) v ON p.ID = v.postid";
1575
 
1576
  }
1577
 
@@ -1579,7 +1649,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
1579
  // ordered by views / avg
1580
  else {
1581
 
1582
- $from = "(SELECT postid, IFNULL(SUM(pageviews), 0) AS pageviews FROM {$prefix}summary WHERE last_viewed > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid ORDER BY pageviews DESC) v LEFT JOIN {$wpdb->posts} p ON v.postid = p.ID";
1583
  $where .= " AND p.post_password = '' AND p.post_status = 'publish'";
1584
 
1585
  // ordered by views
@@ -1599,15 +1669,16 @@ if ( !class_exists('WordpressPopularPosts') ) {
1599
  if ( $instance['stats_tag']['comment_count'] ) {
1600
 
1601
  $fields .= ", IFNULL(c.comment_count, 0) AS 'comment_count'";
1602
- $from .= " LEFT JOIN (SELECT comment_post_ID AS 'id', COUNT(comment_post_ID) AS 'comment_count' FROM {$wpdb->comments} WHERE comment_date > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = 1 GROUP BY id ORDER BY comment_count DESC) c ON p.ID = c.id";
1603
 
1604
  }
1605
 
1606
  }
 
 
1607
 
1608
  }
1609
 
1610
- $query = "SELECT {$fields} FROM {$from} {$where} {$groupby} {$orderby} {$limit};";
1611
  $this->__debug( $query );
1612
 
1613
  $result = $wpdb->get_results($query);
@@ -1647,6 +1718,10 @@ if ( !class_exists('WordpressPopularPosts') ) {
1647
  $mostpopular = $this->_query_posts( $instance );
1648
 
1649
  switch($this->user_settings['tools']['cache']['interval']['time']){
 
 
 
 
1650
  case 'hour':
1651
  $time = 60 * 60;
1652
  break;
@@ -1756,6 +1831,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
1756
  $pageviews = $this->_get_pageviews($p, $instance);
1757
  $comments = $this->_get_comments($p, $instance);
1758
  $rating = $this->_get_rating($p, $instance);
 
1759
 
1760
  $_stats = join(' | ', $this->_get_stats($p, $instance));
1761
 
@@ -1764,28 +1840,30 @@ if ( !class_exists('WordpressPopularPosts') ) {
1764
  if ($instance['markup']['custom_html']) {
1765
 
1766
  $data = array(
1767
- 'title' => '<a href="'.$permalink.'" title="'. esc_attr($title) .'">'.$title_sub.'</a>',
1768
  'summary' => $excerpt,
1769
  'stats' => $_stats,
1770
- 'img' => $thumb,
 
1771
  'id' => $p->id,
1772
  'url' => $permalink,
1773
- 'text_title' => $title,
1774
  'category' => $post_cat,
1775
  'author' => '<a href="' . get_author_posts_url($p->uid) . '">' . $author . '</a>',
1776
  'views' => $pageviews,
1777
- 'comments' => $comments
 
1778
  );
1779
 
1780
- $content = htmlspecialchars_decode( $this->__format_content($instance['markup']['post-html'], $data, $instance['rating']), ENT_QUOTES ) . "\n";
1781
 
1782
  }
1783
  // build regular layout
1784
  else {
1785
  $content =
1786
  '<li>'
1787
- . $thumb
1788
- . '<a href="' . $permalink . '" title="' . esc_attr($title) . '" class="wpp-post-title" target="' . $this->user_settings['tools']['link']['target'] . '">' . $title_sub . '</a> '
1789
  . $excerpt . ' <span class="post-stats">' . $_stats . '</span> '
1790
  . $rating
1791
  . "</li>\n";
@@ -1937,10 +2015,11 @@ if ( !class_exists('WordpressPopularPosts') ) {
1937
 
1938
  $tbWidth = $instance['thumbnail']['width'];
1939
  $tbHeight = $instance['thumbnail']['height'];
 
1940
  $permalink = get_permalink($p->id);
1941
  $title = $this->_get_title($p, $instance);
1942
 
1943
- $thumb = '<a href="' . $permalink . '" title="' . esc_attr($title) . '" target="' . $this->user_settings['tools']['link']['target'] . '">';
1944
 
1945
  // get image from custom field
1946
  if ($this->user_settings['tools']['thumbnail']['source'] == "custom_field") {
@@ -1949,7 +2028,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
1949
  if ($path != '') {
1950
  // user has requested to resize cf image
1951
  if ( $this->user_settings['tools']['thumbnail']['resize'] ) {
1952
- $thumb .= $this->__get_img($p, null, $path, array($tbWidth, $tbHeight), $this->user_settings['tools']['thumbnail']['source'], $title);
1953
  }
1954
  // use original size
1955
  else {
@@ -1962,11 +2041,9 @@ if ( !class_exists('WordpressPopularPosts') ) {
1962
  }
1963
  // get image from post / Featured Image
1964
  else {
1965
- $thumb .= $this->__get_img($p, $p->id, null, array($tbWidth, $tbHeight), $this->user_settings['tools']['thumbnail']['source'], $title);
1966
  }
1967
 
1968
- $thumb .= "</a>";
1969
-
1970
  return $cache[$p->id] = $thumb;
1971
 
1972
  } // end _get_thumb
@@ -2119,10 +2196,22 @@ if ( !class_exists('WordpressPopularPosts') ) {
2119
  if ( $post_cat == "" && isset($cats[0]) && isset($cats[0]->slug) ) {
2120
  $post_cat = $cats[0];
2121
  }
2122
-
2123
- $post_cat = ( "" != $post_cat )
2124
- ? '<a href="' . get_category_link($post_cat->term_id) . '" class="cat-id-' . $post_cat->cat_ID . '">' . $post_cat->cat_name . '</a>'
2125
- : '';
 
 
 
 
 
 
 
 
 
 
 
 
2126
 
2127
  return $cache[$p->id] = $post_cat;
2128
 
@@ -2218,7 +2307,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2218
  * @param string source Image source
2219
  * @return string
2220
  */
2221
- private function __get_img($p, $id = null, $url = null, $dim = array(80, 80), $source = "featured", $title) {
2222
 
2223
  if ( (!$id || empty($id) || !$this->__is_numeric($id)) && (!$url || empty($url)) ) {
2224
  return $this->_render_image($this->default_thumbnail, $dim, 'wpp-thumbnail wpp_def_noID', $title);
@@ -2266,7 +2355,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2266
  return $this->_render_image( trailingslashit($this->uploads_dir['baseurl']) . $p->id . '-' . $dim[0] . 'x' . $dim[1] . '.' . $file_info['extension'], $dim, 'wpp-thumbnail wpp_cached_thumb wpp_' . $source, $title );
2267
  }
2268
 
2269
- return $this->__image_resize($p, $file_path, $dim, $source);
2270
 
2271
  } // end __get_img
2272
 
@@ -2280,7 +2369,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2280
  * @param string source Image source
2281
  * @return string
2282
  */
2283
- private function __image_resize($p, $path, $dimension, $source) {
2284
 
2285
  $image = wp_get_image_editor($path);
2286
 
@@ -2288,7 +2377,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2288
  if ( !is_wp_error($image) ) {
2289
  $file_info = pathinfo($path);
2290
 
2291
- $image->resize($dimension[0], $dimension[1], true);
2292
  $new_img = $image->save( trailingslashit($this->uploads_dir['basedir']) . $p->id . '-' . $dimension[0] . 'x' . $dimension[1] . '.' . $file_info['extension'] );
2293
 
2294
  if ( is_wp_error($new_img) ) {
@@ -2607,6 +2696,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2607
  * @var String $header_start
2608
  * @var String $header_end
2609
  * @var String $post_html
 
2610
  */
2611
  extract( shortcode_atts( array(
2612
  'header' => '',
@@ -2636,7 +2726,8 @@ if ( !class_exists('WordpressPopularPosts') ) {
2636
  'wpp_end' => '</ul>',
2637
  'header_start' => '<h2>',
2638
  'header_end' => '</h2>',
2639
- 'post_html' => ''
 
2640
  ),$atts));
2641
 
2642
  // possible values for "Time Range" and "Order by"
@@ -2669,7 +2760,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2669
  'width' => (!empty($thumbnail_width) && $this->__is_numeric($thumbnail_width) && $thumbnail_width > 0) ? $thumbnail_width : 0,
2670
  'height' => (!empty($thumbnail_height) && $this->__is_numeric($thumbnail_height) && $thumbnail_height > 0) ? $thumbnail_height : 0,
2671
  ),
2672
- 'rating' => empty($rating) || $rating = "false" ? false : true,
2673
  'stats_tag' => array(
2674
  'comment_count' => empty($stats_comments) ? false : $stats_comments,
2675
  'views' => empty($stats_views) ? false : $stats_views,
@@ -2690,7 +2781,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2690
  )
2691
  );
2692
 
2693
- $shortcode_content = "\n". "<!-- WordPress Popular Posts Plugin v". $this->version ." [SC] [".$shortcode_ops['range']."] [".$shortcode_ops['order_by']."] [custom] -->"."\n";
2694
 
2695
  // is there a title defined by user?
2696
  if (!empty($header) && !empty($header_start) && !empty($header_end)) {
@@ -2698,7 +2789,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2698
  }
2699
 
2700
  // print popular posts list
2701
- $shortcode_content .= $this->__get_popular_posts($shortcode_ops);
2702
  $shortcode_content .= "\n". "<!-- End WordPress Popular Posts Plugin v". $this->version ." -->"."\n";
2703
 
2704
  return $shortcode_content;
@@ -2720,7 +2811,7 @@ if ( !class_exists('WordpressPopularPosts') ) {
2720
  return false;
2721
 
2722
  $params = array();
2723
- $pattern = '/\{(excerpt|summary|stats|title|image|thumb|rating|score|url|text_title|author|category|views|comments)\}/i';
2724
  preg_match_all($pattern, $string, $matches);
2725
 
2726
  array_map('strtolower', $matches[0]);
@@ -2748,6 +2839,10 @@ if ( !class_exists('WordpressPopularPosts') ) {
2748
  if ( in_array("{thumb}", $matches[0]) ) {
2749
  $string = str_replace( "{thumb}", $data['img'], $string );
2750
  }
 
 
 
 
2751
 
2752
  // WP-PostRatings check
2753
  if ( $rating ) {
@@ -2786,6 +2881,10 @@ if ( !class_exists('WordpressPopularPosts') ) {
2786
  $string = str_replace( "{comments}", $data['comments'], $string );
2787
  }
2788
 
 
 
 
 
2789
  return $string;
2790
 
2791
  } // end __format_content
@@ -2823,6 +2922,70 @@ if ( !class_exists('WordpressPopularPosts') ) {
2823
  /* Helper functions
2824
  /*--------------------------------------------------*/
2825
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2826
  /**
2827
  * Checks for valid number
2828
  *
@@ -3045,13 +3208,13 @@ function wpp_get_mostpopular($args = NULL) {
3045
  if( is_array( $args ) ){
3046
  $atts = '';
3047
  foreach( $args as $key => $arg ){
3048
- $atts .= ' ' . $key . '="' . htmlspecialchars($arg, ENT_QUOTES, false) . '"';
3049
  }
3050
  } else {
3051
  $atts = trim( str_replace( "&", " ", $args ) );
3052
  }
3053
 
3054
- $shortcode .= ' ' . $atts . ']';
3055
  }
3056
 
3057
  echo do_shortcode( $shortcode );
3
  Plugin Name: WordPress Popular Posts
4
  Plugin URI: http://wordpress.org/extend/plugins/wordpress-popular-posts
5
  Description: WordPress Popular Posts is a highly customizable widget that displays the most popular posts on your blog
6
+ Version: 3.2.0
7
  Author: Hector Cabrera
8
  Author URI: http://cabrerahector.com
9
  Author Email: hcabrerab@gmail.com
61
  * @since 1.3.0
62
  * @var string
63
  */
64
+ private $version = '3.2.0';
65
 
66
  /**
67
  * Plugin identifier.
86
  * @var string
87
  */
88
  protected $plugin_screen_hook_suffix = NULL;
89
+
90
+ /**
91
+ * Flag for singular pages.
92
+ *
93
+ * @since 3.1.2
94
+ * @var int
95
+ */
96
+ private $current_post_id = 0;
97
 
98
  /**
99
  * Plugin directory.
172
  ),
173
  'thumbnail' => array(
174
  'active' => false,
175
+ 'build' => 'manual',
176
  'width' => 15,
177
+ 'height' => 15,
178
+ 'crop' => true
179
  ),
180
  'rating' => false,
181
  'stats_tag' => array(
234
  'time' => 'hour',
235
  'value' => 1
236
  )
237
+ ),
238
+ 'sampling' => array(
239
+ 'active' => false,
240
+ 'rate' => 100
241
  )
242
  )
243
  );
274
 
275
  // Upgrade check
276
  add_action( 'init', array( $this, 'upgrade_check' ) );
277
+
278
+ // Check location on template redirect
279
+ add_action( 'template_redirect', array( $this, 'is_single' ) );
280
 
281
  // Hook fired when a new blog is activated on WP Multisite
282
  add_action( 'wpmu_new_blog', array( $this, 'activate_new_site' ) );
302
  } else {
303
  $this->user_settings = $this->__merge_array_r( $this->default_user_settings, $this->user_settings );
304
  }
305
+
306
+ // Allow WP themers / coders to override data sampling status (active/inactive)
307
+ $this->user_settings['tools']['sampling']['active'] = apply_filters( 'wpp_data_sampling', $this->user_settings['tools']['sampling']['active'] );
308
 
309
  // Add the options page and menu item.
310
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
371
  remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head' );
372
  // Add the update hooks only if the logging conditions are met
373
  if ( (0 == $this->user_settings['tools']['log']['level'] && !is_user_logged_in()) || (1 == $this->user_settings['tools']['log']['level']) || (2 == $this->user_settings['tools']['log']['level'] && is_user_logged_in()) ) {
374
+
375
+ $update_views = true;
376
+
377
+ if ( $this->user_settings['tools']['sampling']['active'] ) {
378
+ $update_views = false;
379
+
380
+ /*
381
+ * Data sampling algorithm
382
+ * Borrowed from http://stackoverflow.com/a/4762559
383
+ *
384
+ * @link http://stackoverflow.com/questions/4762527/what-is-the-best-way-to-count-page-views-in-php-mysql/4762559#comment21730393_4762559, http://stackoverflow.com/questions/4762527/what-is-the-best-way-to-count-page-views-in-php-mysql/4762559#comment26582397_4762559, http://stackoverflow.com/a/6005550
385
+ *
386
+ */
387
+
388
+ if ( 1 == mt_rand(1, $this->user_settings['tools']['sampling']['rate']) ) {
389
+ $update_views = true;
390
+ }
391
+ }
392
+
393
  // Log views on page load via AJAX
394
+ if ( $update_views ) {
395
+ add_action( 'wp_head', array(&$this, 'print_ajax') );
396
+
397
+ // Register views from everyone and/or connected users
398
+ if ( 0 != $this->user_settings['tools']['log']['level'] )
399
+ add_action( 'wp_ajax_update_views_ajax', array($this, 'update_views_ajax') );
400
+ // Register views from everyone and/or visitors only
401
+ if ( 2 != $this->user_settings['tools']['log']['level'] )
402
+ add_action( 'wp_ajax_nopriv_update_views_ajax', array($this, 'update_views_ajax') );
403
+
404
+ }
405
 
 
 
 
 
 
 
406
  }
407
 
408
  // Add shortcode
454
  ? 'custom'
455
  : 'regular';
456
 
457
+ echo "\n". "<!-- WordPress Popular Posts Plugin v{$this->version} [W] [{$instance['range']}] [{$instance['order_by']}] [{$markup}]" . ( !empty($instance['pid']) ? " [PID]" : "" ) . ( !empty($instance['cat']) ? " [CAT]" : "" ) . ( !empty($instance['author']) ? " [UID]" : "" ) . " -->" . "\n";
458
 
459
  echo $before_widget . "\n";
460
 
478
  } else {
479
  ?>
480
  <script type="text/javascript">//<![CDATA[
481
+ // jQuery is available, so proceed
482
+ if ( window.jQuery ) {
483
+
484
+ jQuery(document).ready(function($){
485
+ $.get('<?php echo admin_url('admin-ajax.php'); ?>', {
486
+ action: 'wpp_get_popular',
487
+ id: '<?php echo $this->number; ?>'
488
+ }, function(data){
489
+ $('#<?php echo $widget_id; ?>').append(data);
490
+ });
491
  });
492
+
493
+ } else { // jQuery is not defined
494
+ if ( window.console && window.console.log )
495
+ window.console.log('WordPress Popular Posts: jQuery is not defined!');
496
+ }
497
  //]]></script>
498
  <?php
499
  }
558
  if ( $this->thumbnailing ) {
559
 
560
  $instance['thumbnail']['active'] = isset( $new_instance['thumbnail-active'] );
561
+ $instance['thumbnail']['build'] = $new_instance['thumbnail-size-source'];
562
+
563
+ // Use predefined thumbnail sizes
564
+ if ( 'predefined' == $new_instance['thumbnail-size-source'] ) {
565
+ $size = $this->__get_image_sizes( $new_instance['thumbnail-size'] );
566
+ $instance['thumbnail']['width'] = $size['width'];
567
+ $instance['thumbnail']['height'] = $size['height'];
568
+ $instance['thumbnail']['crop'] = $size['crop'];
569
+ } // Set thumbnail size manually
570
+ else {
571
+ if ($this->__is_numeric($new_instance['thumbnail-width']) && $this->__is_numeric($new_instance['thumbnail-height'])) {
572
+ $instance['thumbnail']['width'] = $new_instance['thumbnail-width'];
573
+ $instance['thumbnail']['height'] = $new_instance['thumbnail-height'];
574
+ $instance['thumbnail']['crop'] = true;
575
+ }
576
  }
577
 
578
  }
746
  /**
747
  * Registers and enqueues widget-specific scripts.
748
  */
749
+ public function register_widget_scripts() {
750
+ // We need jQuery in the front-end only when ajaxifying the widget
751
+ if ( $this->user_settings['tools']['ajax'] )
752
+ wp_enqueue_script( 'jquery' );
753
  } // end register_widget_scripts
754
 
755
  /**
1254
  */
1255
  public function update_views_ajax(){
1256
 
1257
+ if ( !wp_verify_nonce($_POST['token'], 'wpp-token') || !$this->__is_numeric($_POST['id']) )
1258
  die("WPP: Oops, invalid request!");
1259
 
1260
+ $nonce = $_POST['token'];
1261
+ $post_ID = $_POST['id'];
1262
 
1263
  $exec_time = 0;
1264
 
1284
  */
1285
  public function print_ajax(){
1286
 
1287
+ if ( $this->current_post_id ) {
 
 
 
 
1288
  ?>
1289
  <!-- WordPress Popular Posts v<?php echo $this->version; ?> -->
1290
  <script type="text/javascript">//<![CDATA[
1291
+
1292
+ // Create XMLHttpRequest object and set variables
1293
+ var xhr = ( window.XMLHttpRequest )
1294
+ ? new XMLHttpRequest()
1295
+ : new ActiveXObject( "Microsoft.XMLHTTP" ),
1296
+ url = '<?php echo admin_url('admin-ajax.php'); ?>',
1297
+ params = 'action=update_views_ajax&token=<?php echo wp_create_nonce('wpp-token') ?>&id=<?php echo $this->current_post_id; ?>';
1298
+ // Set request method and target URL
1299
+ xhr.open( "POST", url, true );
1300
+ // Set request header
1301
+ xhr.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" );
1302
+ // Hook into onreadystatechange
1303
+ xhr.onreadystatechange = function() {
1304
+ if ( 4 == xhr.readyState && 200 == xhr.status ) {
1305
+ if ( window.console && window.console.log ) {
1306
+ window.console.log( xhr.responseText );
1307
+ }
1308
+ }
1309
+ }
1310
+ // Send request
1311
+ xhr.send( params );
1312
+
1313
  //]]></script>
1314
  <!-- End WordPress Popular Posts v<?php echo $this->version; ?> -->
1315
  <?php
1358
  // WPML support, get original post/page ID
1359
  if ( defined('ICL_LANGUAGE_CODE') && function_exists('icl_object_id') ) {
1360
  global $sitepress;
1361
+ $id = icl_object_id( $id, get_post_type( $id ), true, $sitepress->get_default_language() );
1362
  }
1363
 
1364
  $now = $this->__now();
1365
  $curdate = $this->__curdate();
1366
+ $views = ( $this->user_settings['tools']['sampling']['active'] )
1367
+ ? $this->user_settings['tools']['sampling']['rate']
1368
+ : 1;
1369
 
1370
  // Update all-time table
1371
  $result1 = $wpdb->query( $wpdb->prepare(
1372
  "INSERT INTO {$table}data
1373
  (postid, day, last_viewed, pageviews) VALUES (%d, %s, %s, %d)
1374
+ ON DUPLICATE KEY UPDATE pageviews = pageviews + %4\$d, last_viewed = '%3\$s';",
1375
  $id,
1376
  $now,
1377
  $now,
1378
+ $views
1379
  ));
1380
 
1381
  // Update range (summary) table
1382
  $result2 = $wpdb->query( $wpdb->prepare(
1383
  "INSERT INTO {$table}summary
1384
  (postid, pageviews, view_date, last_viewed) VALUES (%d, %d, %s, %s)
1385
+ ON DUPLICATE KEY UPDATE pageviews = pageviews + %2\$d, last_viewed = '%4\$s';",
1386
  $id,
1387
+ $views,
1388
  $curdate,
1389
  $now
1390
  ));
1439
  // * freshness - get posts published within the selected time range only
1440
  if ( $instance['freshness'] ) {
1441
  switch( $instance['range'] ){
 
 
 
 
1442
  case "daily":
1443
  $where .= " AND p.post_date > DATE_SUB('{$now}', INTERVAL 1 DAY) ";
1444
  break;
1600
  elseif ( "avg" == $instance['order_by'] ) {
1601
 
1602
  $fields .= ", ( v.pageviews/(IF ( DATEDIFF('{$now}', MIN(v.day)) > 0, DATEDIFF('{$now}', MIN(v.day)), 1) ) ) AS 'avg_views'";
1603
+ $groupby = "GROUP BY v.postid";
1604
  $orderby = "ORDER BY avg_views DESC";
1605
 
1606
  }
1607
 
1608
  }
1609
 
1610
+ $query = "SELECT {$fields} FROM {$from} {$where} {$groupby} {$orderby} {$limit};";
1611
+
1612
  } else { // CUSTOM RANGE
1613
 
1614
  $interval = "";
1615
 
1616
  switch( $instance['range'] ){
 
 
 
 
1617
  case "daily":
1618
  $interval = "1 DAY";
1619
  break;
1635
  if ( "comments" == $instance['order_by'] ) {
1636
 
1637
  $fields .= ", c.comment_count AS 'comment_count'";
1638
+ $from = "(SELECT comment_post_ID AS 'id', COUNT(comment_post_ID) AS 'comment_count' FROM {$wpdb->comments} WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = 1 GROUP BY id ORDER BY comment_count DESC {$limit}) c LEFT JOIN {$wpdb->posts} p ON c.id = p.ID";
1639
  $where .= " AND p.post_password = '' AND p.post_status = 'publish'";
1640
 
1641
  if ( $instance['stats_tag']['views'] ) { // get views, too
1642
 
1643
  $fields .= ", IFNULL(v.pageviews, 0) AS 'pageviews'";
1644
+ $from .= " LEFT JOIN (SELECT postid, SUM(pageviews) AS pageviews FROM {$prefix}summary WHERE last_viewed > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid) v ON p.ID = v.postid";
1645
 
1646
  }
1647
 
1649
  // ordered by views / avg
1650
  else {
1651
 
1652
+ $from = "(SELECT postid, IFNULL(SUM(pageviews), 0) AS pageviews FROM {$prefix}summary WHERE last_viewed > DATE_SUB('{$now}', INTERVAL {$interval}) GROUP BY postid ORDER BY pageviews DESC {$limit}) v LEFT JOIN {$wpdb->posts} p ON v.postid = p.ID";
1653
  $where .= " AND p.post_password = '' AND p.post_status = 'publish'";
1654
 
1655
  // ordered by views
1669
  if ( $instance['stats_tag']['comment_count'] ) {
1670
 
1671
  $fields .= ", IFNULL(c.comment_count, 0) AS 'comment_count'";
1672
+ $from .= " LEFT JOIN (SELECT comment_post_ID AS 'id', COUNT(comment_post_ID) AS 'comment_count' FROM {$wpdb->comments} WHERE comment_date_gmt > DATE_SUB('{$now}', INTERVAL {$interval}) AND comment_approved = 1 GROUP BY id) c ON p.ID = c.id";
1673
 
1674
  }
1675
 
1676
  }
1677
+
1678
+ $query = "SELECT {$fields} FROM {$from} {$where} {$groupby} {$orderby};";
1679
 
1680
  }
1681
 
 
1682
  $this->__debug( $query );
1683
 
1684
  $result = $wpdb->get_results($query);
1718
  $mostpopular = $this->_query_posts( $instance );
1719
 
1720
  switch($this->user_settings['tools']['cache']['interval']['time']){
1721
+ case 'minute':
1722
+ $time = 60;
1723
+ break;
1724
+
1725
  case 'hour':
1726
  $time = 60 * 60;
1727
  break;
1831
  $pageviews = $this->_get_pageviews($p, $instance);
1832
  $comments = $this->_get_comments($p, $instance);
1833
  $rating = $this->_get_rating($p, $instance);
1834
+ $date = $this->_get_date($p, $instance);
1835
 
1836
  $_stats = join(' | ', $this->_get_stats($p, $instance));
1837
 
1840
  if ($instance['markup']['custom_html']) {
1841
 
1842
  $data = array(
1843
+ 'title' => '<a href="'.$permalink.'" title="'. esc_attr($title) .'" class="wpp-post-title" target="' . $this->user_settings['tools']['link']['target'] . '">'.$title_sub.'</a>',
1844
  'summary' => $excerpt,
1845
  'stats' => $_stats,
1846
+ 'img' => '<a href="'.$permalink.'" title="'. esc_attr($title) .'" target="' . $this->user_settings['tools']['link']['target'] . '">' . $thumb . '</a>',
1847
+ 'img_no_link' => $thumb,
1848
  'id' => $p->id,
1849
  'url' => $permalink,
1850
+ 'text_title' => esc_attr($title),
1851
  'category' => $post_cat,
1852
  'author' => '<a href="' . get_author_posts_url($p->uid) . '">' . $author . '</a>',
1853
  'views' => $pageviews,
1854
+ 'comments' => $comments,
1855
+ 'date' => $date
1856
  );
1857
 
1858
+ $content = $this->__format_content( htmlspecialchars_decode($instance['markup']['post-html'], ENT_QUOTES ), $data, $instance['rating'] ). "\n";
1859
 
1860
  }
1861
  // build regular layout
1862
  else {
1863
  $content =
1864
  '<li>'
1865
+ . '<a ' . ( ( $this->current_post_id == $p->id ) ? '' : 'href="' . $permalink . '"' ) . ' title="' . esc_attr($title) . '" target="' . $this->user_settings['tools']['link']['target'] . '">' . $thumb . '</a> '
1866
+ . '<a ' . ( ( $this->current_post_id == $p->id ) ? '' : 'href="' . $permalink . '"' ) . ' title="' . esc_attr($title) . '" class="wpp-post-title" target="' . $this->user_settings['tools']['link']['target'] . '">' . $title_sub . '</a> '
1867
  . $excerpt . ' <span class="post-stats">' . $_stats . '</span> '
1868
  . $rating
1869
  . "</li>\n";
2015
 
2016
  $tbWidth = $instance['thumbnail']['width'];
2017
  $tbHeight = $instance['thumbnail']['height'];
2018
+ $crop = $instance['thumbnail']['crop'];
2019
  $permalink = get_permalink($p->id);
2020
  $title = $this->_get_title($p, $instance);
2021
 
2022
+ $thumb = '';
2023
 
2024
  // get image from custom field
2025
  if ($this->user_settings['tools']['thumbnail']['source'] == "custom_field") {
2028
  if ($path != '') {
2029
  // user has requested to resize cf image
2030
  if ( $this->user_settings['tools']['thumbnail']['resize'] ) {
2031
+ $thumb .= $this->__get_img($p, null, $path, array($tbWidth, $tbHeight), $crop, $this->user_settings['tools']['thumbnail']['source'], $title);
2032
  }
2033
  // use original size
2034
  else {
2041
  }
2042
  // get image from post / Featured Image
2043
  else {
2044
+ $thumb .= $this->__get_img($p, $p->id, null, array($tbWidth, $tbHeight), $crop, $this->user_settings['tools']['thumbnail']['source'], $title);
2045
  }
2046
 
 
 
2047
  return $cache[$p->id] = $thumb;
2048
 
2049
  } // end _get_thumb
2196
  if ( $post_cat == "" && isset($cats[0]) && isset($cats[0]->slug) ) {
2197
  $post_cat = $cats[0];
2198
  }
2199
+
2200
+ // Build category tag
2201
+ if ( "" != $post_cat ) {
2202
+
2203
+ $category_id = $post_cat->term_id;
2204
+ $category_name = $post_cat->cat_name;
2205
+
2206
+ // WPML support, based on Serhat Evren's suggestion - see http://wordpress.org/support/topic/wpml-trick#post-5452607
2207
+ if ( defined('ICL_LANGUAGE_CODE') && function_exists('icl_object_id') ) {
2208
+ $category_id = icl_object_id( $category_id, 'category', true, ICL_LANGUAGE_CODE );
2209
+ $category_name = get_the_category_by_ID( $category_id );
2210
+ }
2211
+
2212
+ $post_cat = '<a href="' . get_category_link( $category_id ) . '" class="cat-id-' . $category_id . '">' . $category_name . '</a>';
2213
+
2214
+ }
2215
 
2216
  return $cache[$p->id] = $post_cat;
2217
 
2307
  * @param string source Image source
2308
  * @return string
2309
  */
2310
+ private function __get_img($p, $id = null, $url = null, $dim = array(80, 80), $crop = true, $source = "featured", $title) {
2311
 
2312
  if ( (!$id || empty($id) || !$this->__is_numeric($id)) && (!$url || empty($url)) ) {
2313
  return $this->_render_image($this->default_thumbnail, $dim, 'wpp-thumbnail wpp_def_noID', $title);
2355
  return $this->_render_image( trailingslashit($this->uploads_dir['baseurl']) . $p->id . '-' . $dim[0] . 'x' . $dim[1] . '.' . $file_info['extension'], $dim, 'wpp-thumbnail wpp_cached_thumb wpp_' . $source, $title );
2356
  }
2357
 
2358
+ return $this->__image_resize($p, $file_path, $dim, $crop, $source);
2359
 
2360
  } // end __get_img
2361
 
2369
  * @param string source Image source
2370
  * @return string
2371
  */
2372
+ private function __image_resize($p, $path, $dimension, $crop, $source) {
2373
 
2374
  $image = wp_get_image_editor($path);
2375
 
2377
  if ( !is_wp_error($image) ) {
2378
  $file_info = pathinfo($path);
2379
 
2380
+ $image->resize($dimension[0], $dimension[1], $crop);
2381
  $new_img = $image->save( trailingslashit($this->uploads_dir['basedir']) . $p->id . '-' . $dimension[0] . 'x' . $dimension[1] . '.' . $file_info['extension'] );
2382
 
2383
  if ( is_wp_error($new_img) ) {
2696
  * @var String $header_start
2697
  * @var String $header_end
2698
  * @var String $post_html
2699
+ * @var Bool $php
2700
  */
2701
  extract( shortcode_atts( array(
2702
  'header' => '',
2726
  'wpp_end' => '</ul>',
2727
  'header_start' => '<h2>',
2728
  'header_end' => '</h2>',
2729
+ 'post_html' => '',
2730
+ 'php' => false
2731
  ),$atts));
2732
 
2733
  // possible values for "Time Range" and "Order by"
2760
  'width' => (!empty($thumbnail_width) && $this->__is_numeric($thumbnail_width) && $thumbnail_width > 0) ? $thumbnail_width : 0,
2761
  'height' => (!empty($thumbnail_height) && $this->__is_numeric($thumbnail_height) && $thumbnail_height > 0) ? $thumbnail_height : 0,
2762
  ),
2763
+ 'rating' => empty($rating) ? false : $rating,
2764
  'stats_tag' => array(
2765
  'comment_count' => empty($stats_comments) ? false : $stats_comments,
2766
  'views' => empty($stats_views) ? false : $stats_views,
2781
  )
2782
  );
2783
 
2784
+ $shortcode_content = "\n". "<!-- WordPress Popular Posts Plugin v". $this->version ." [" . ( $php ? "PHP" : "SC" ) . "] [".$shortcode_ops['range']."] [".$shortcode_ops['order_by']."] [custom]" . ( !empty($shortcode_ops['pid']) ? " [PID]" : "" ) . ( !empty($shortcode_ops['cat']) ? " [CAT]" : "" ) . ( !empty($shortcode_ops['author']) ? " [UID]" : "" ) . " -->"."\n";
2785
 
2786
  // is there a title defined by user?
2787
  if (!empty($header) && !empty($header_start) && !empty($header_end)) {
2789
  }
2790
 
2791
  // print popular posts list
2792
+ $shortcode_content .= ( $php ) ? $this->__get_popular_posts($shortcode_ops) : htmlspecialchars_decode( $this->__get_popular_posts($shortcode_ops), ENT_QUOTES ); // WP's editor converts shortcode parameters into entities
2793
  $shortcode_content .= "\n". "<!-- End WordPress Popular Posts Plugin v". $this->version ." -->"."\n";
2794
 
2795
  return $shortcode_content;
2811
  return false;
2812
 
2813
  $params = array();
2814
+ $pattern = '/\{(excerpt|summary|stats|title|image|thumb|thumb_img|rating|score|url|text_title|author|category|views|comments|date)\}/i';
2815
  preg_match_all($pattern, $string, $matches);
2816
 
2817
  array_map('strtolower', $matches[0]);
2839
  if ( in_array("{thumb}", $matches[0]) ) {
2840
  $string = str_replace( "{thumb}", $data['img'], $string );
2841
  }
2842
+
2843
+ if ( in_array("{thumb_img}", $matches[0]) ) {
2844
+ $string = str_replace( "{thumb_img}", $data['img_no_link'], $string );
2845
+ }
2846
 
2847
  // WP-PostRatings check
2848
  if ( $rating ) {
2881
  $string = str_replace( "{comments}", $data['comments'], $string );
2882
  }
2883
 
2884
+ if ( in_array("{date}", $matches[0]) ) {
2885
+ $string = str_replace( "{date}", $data['date'], $string );
2886
+ }
2887
+
2888
  return $string;
2889
 
2890
  } // end __format_content
2922
  /* Helper functions
2923
  /*--------------------------------------------------*/
2924
 
2925
+ /**
2926
+ * Gets list of available thumbnails sizes
2927
+ *
2928
+ * @since 3.2.0
2929
+ * @link http://codex.wordpress.org/Function_Reference/get_intermediate_image_sizes
2930
+ * @param string $size
2931
+ * @return array|bool
2932
+ */
2933
+ private function __get_image_sizes( $size = '' ) {
2934
+
2935
+ global $_wp_additional_image_sizes;
2936
+
2937
+ $sizes = array();
2938
+ $get_intermediate_image_sizes = get_intermediate_image_sizes();
2939
+
2940
+ // Create the full array with sizes and crop info
2941
+ foreach( $get_intermediate_image_sizes as $_size ) {
2942
+
2943
+ if ( in_array( $_size, array( 'thumbnail', 'medium', 'large' ) ) ) {
2944
+
2945
+ $sizes[ $_size ]['width'] = get_option( $_size . '_size_w' );
2946
+ $sizes[ $_size ]['height'] = get_option( $_size . '_size_h' );
2947
+ $sizes[ $_size ]['crop'] = (bool) get_option( $_size . '_crop' );
2948
+
2949
+ } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
2950
+
2951
+ $sizes[ $_size ] = array(
2952
+ 'width' => $_wp_additional_image_sizes[ $_size ]['width'],
2953
+ 'height' => $_wp_additional_image_sizes[ $_size ]['height'],
2954
+ 'crop' => $_wp_additional_image_sizes[ $_size ]['crop']
2955
+ );
2956
+
2957
+ }
2958
+
2959
+ }
2960
+
2961
+ // Get only 1 size if found
2962
+ if ( $size ) {
2963
+
2964
+ if( isset( $sizes[ $size ] ) ) {
2965
+ return $sizes[ $size ];
2966
+ } else {
2967
+ return false;
2968
+ }
2969
+
2970
+ }
2971
+
2972
+ return $sizes;
2973
+ }
2974
+
2975
+ /**
2976
+ * Gets post/page ID if current page is singular
2977
+ *
2978
+ * @since 3.1.2
2979
+ */
2980
+ public function is_single() {
2981
+ if ( (is_single() || is_page()) && !is_front_page() && !is_preview() && !is_trackback() && !is_feed() && !is_robots() ) {
2982
+ global $post;
2983
+ $this->current_post_id = ( is_object($post) ) ? $post->ID : 0;
2984
+ } else {
2985
+ $this->current_post_id = 0;
2986
+ }
2987
+ } // end is_single
2988
+
2989
  /**
2990
  * Checks for valid number
2991
  *
3208
  if( is_array( $args ) ){
3209
  $atts = '';
3210
  foreach( $args as $key => $arg ){
3211
+ $atts .= ' ' . $key . '="' . htmlspecialchars($arg, ENT_QUOTES, $encoding = ini_get("default_charset"), false) . '"';
3212
  }
3213
  } else {
3214
  $atts = trim( str_replace( "&", " ", $args ) );
3215
  }
3216
 
3217
+ $shortcode .= ' ' . $atts . ' php=true]';
3218
  }
3219
 
3220
  echo do_shortcode( $shortcode );