Top 10 – Popular posts plugin for WordPress - Version 1.9.8.5

Version Description

Author display name is used now, cleaner pagination, new function to get the post count only. Refer to the changelog for more details

=

Download this release

Release Info

Developer Ajay
Plugin Icon 128x128 Top 10 – Popular posts plugin for WordPress
Version 1.9.8.5
Comparing to
See all releases

Code changes from version 1.9.8.4 to 1.9.8.5

admin.inc.php CHANGED
@@ -3,8 +3,6 @@
3
  * Admin Page *
4
  *********************************************************************/
5
  if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
6
- //if (!defined('ALD_TPTN_DIR')) define('ALD_TPTN_DIR', dirname(__FILE__));
7
- //if (!defined('TPTN_LOCAL_NAME')) define('TPTN_LOCAL_NAME', 'tptn');
8
 
9
  /**
10
  * Plugin settings.
@@ -59,7 +57,7 @@ function tptn_options() {
59
  $tptn_settings['after_list'] = $_POST['after_list'];
60
  $tptn_settings['before_list_item'] = $_POST['before_list_item'];
61
  $tptn_settings['after_list_item'] = $_POST['after_list_item'];
62
- $tptn_settings['thumb_meta'] = $_POST['thumb_meta'];
63
  $tptn_settings['thumb_default'] = $_POST['thumb_default'];
64
  $tptn_settings['thumb_html'] = $_POST['thumb_html'];
65
  $tptn_settings['thumb_height'] = intval($_POST['thumb_height']);
@@ -383,19 +381,34 @@ function tptn_options() {
383
  </td>
384
  </tr>
385
  <tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
386
- <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></td>
 
 
 
387
  </tr>
388
  <tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
389
- <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_meta'])); ?>"> <br /><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></td>
 
 
 
390
  </tr>
391
  <tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',TPTN_LOCAL_NAME); ?></label></th>
392
- <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings['scan_images']) echo 'checked="checked"' ?> /> <br /><?php _e('This could slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></td>
 
 
 
393
  </tr>
394
  <tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
395
- <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings['thumb_default_show']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></td>
 
 
 
396
  </tr>
397
  <tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
398
- <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_default'])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></td>
 
 
 
399
  </tr>
400
  </table>
401
  </div>
@@ -407,7 +420,7 @@ function tptn_options() {
407
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
408
  </tr>
409
  <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($tptn_settings['custom_CSS']); ?></textarea>
410
- <p class="description"><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></em></p>
411
  </td>
412
  </tr>
413
  </table>
@@ -849,12 +862,22 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
849
  $output .= "</a>\n";
850
  }
851
 
 
852
  for ($i=1; $i <= $pages; $i++) // loop through each page and give link to it.
853
  {
 
 
 
 
 
 
 
 
 
 
854
  $ppage = $limit*($i - 1);
855
  if ($ppage == $page){
856
- $output .= "<b>$i</b>\n";
857
- } // If current page don't give link, just text.
858
  else{
859
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$ppage&daily=$daily&limit=$limit\">$i</a> \n";
860
  }
3
  * Admin Page *
4
  *********************************************************************/
5
  if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
 
 
6
 
7
  /**
8
  * Plugin settings.
57
  $tptn_settings['after_list'] = $_POST['after_list'];
58
  $tptn_settings['before_list_item'] = $_POST['before_list_item'];
59
  $tptn_settings['after_list_item'] = $_POST['after_list_item'];
60
+ $tptn_settings['thumb_meta'] = (''==$_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta']);
61
  $tptn_settings['thumb_default'] = $_POST['thumb_default'];
62
  $tptn_settings['thumb_html'] = $_POST['thumb_html'];
63
  $tptn_settings['thumb_height'] = intval($_POST['thumb_height']);
381
  </td>
382
  </tr>
383
  <tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
384
+ <td>
385
+ <input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings['thumb_timthumb']) echo 'checked="checked"' ?> />
386
+ <p class="description"><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></p>
387
+ </td>
388
  </tr>
389
  <tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
390
+ <td>
391
+ <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_meta'])); ?>">
392
+ <p class="description"><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></p>
393
+ </td>
394
  </tr>
395
  <tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',TPTN_LOCAL_NAME); ?></label></th>
396
+ <td>
397
+ <input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings['scan_images']) echo 'checked="checked"' ?> />
398
+ <p class="description"><?php _e('This could slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></p>
399
+ </td>
400
  </tr>
401
  <tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
402
+ <td>
403
+ <input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings['thumb_default_show']) echo 'checked="checked"' ?> />
404
+ <p class="description"><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></p>
405
+ </td>
406
  </tr>
407
  <tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
408
+ <td>
409
+ <input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_default'])); ?>" style="width:500px">
410
+ <p class="description"><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></p>
411
+ </td>
412
  </tr>
413
  </table>
414
  </div>
420
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
421
  </tr>
422
  <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($tptn_settings['custom_CSS']); ?></textarea>
423
+ <p class="description"><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></p>
424
  </td>
425
  </tr>
426
  </table>
862
  $output .= "</a>\n";
863
  }
864
 
865
+ $pagination_range = 4;
866
  for ($i=1; $i <= $pages; $i++) // loop through each page and give link to it.
867
  {
868
+ if($i >= $current+$pagination_range && $i <$pages){
869
+ if($i == $current+$pagination_range){
870
+ $output .= '&hellip;&nbsp;';
871
+ }
872
+ continue;
873
+ }
874
+ if($i < $current-$pagination_range+1 && $i <$pages){
875
+ continue;
876
+ }
877
+
878
  $ppage = $limit*($i - 1);
879
  if ($ppage == $page){
880
+ $output .= ("<span class='current'>$i</span>\n");} // If current page don't give link, just text.
 
881
  else{
882
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$ppage&daily=$daily&limit=$limit\">$i</a> \n";
883
  }
languages/tptn-az_AZ.mo CHANGED
Binary file
languages/tptn-az_AZ.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
@@ -15,131 +15,131 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "10 populyar yazı statisticasını pozmaq"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Populyar postların miqdarının nümayişi:"
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
77
 
78
- #: admin.inc.php:200
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:211
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:215
87
  msgid "Exclude Categories: "
88
  msgstr ""
89
 
90
- #: admin.inc.php:230
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
- #: admin.inc.php:235
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
101
 
102
- #: admin.inc.php:237
103
  msgid "Posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:238
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Səhifə"
110
 
111
- #: admin.inc.php:239
112
  msgid "Home page"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
- #: admin.inc.php:241
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
- #: admin.inc.php:242
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
- #: admin.inc.php:243
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
- #: admin.inc.php:244
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
- #: admin.inc.php:247
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
- #: admin.inc.php:249
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
@@ -147,35 +147,35 @@ msgid ""
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
- #: admin.inc.php:252
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
- #: admin.inc.php:254
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
159
  "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
160
 
161
- #: admin.inc.php:257
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
164
 
165
- #: admin.inc.php:260
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
169
 
170
- #: admin.inc.php:263
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
- #: admin.inc.php:266
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
- #: admin.inc.php:268
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -184,16 +184,16 @@ msgstr ""
184
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
185
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
186
 
187
- #: admin.inc.php:275
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Plaginin kökləmələri:"
191
 
192
- #: admin.inc.php:278
193
  msgid "Format to display the count in: "
194
  msgstr "Miqdarı göstərən format:"
195
 
196
- #: admin.inc.php:280
197
  #, fuzzy
198
  msgid ""
199
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -205,138 +205,138 @@ msgstr ""
205
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
206
  "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
207
 
208
- #: admin.inc.php:283
209
  msgid "Title of popular posts: "
210
  msgstr "Populyar yazılarının başlığı:"
211
 
212
- #: admin.inc.php:286
213
  msgid "Title of daily popular posts: "
214
  msgstr "Gündəlik populyual yazılışların başlığı:"
215
 
216
- #: admin.inc.php:289
217
  msgid "When there are no posts, what should be shown?"
218
  msgstr ""
219
 
220
- #: admin.inc.php:293
221
  msgid "Blank Output"
222
  msgstr ""
223
 
224
- #: admin.inc.php:297
225
  msgid "Display:"
226
  msgstr ""
227
 
228
- #: admin.inc.php:301
229
  msgid "Show post excerpt in list?"
230
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
231
 
232
- #: admin.inc.php:304
233
  msgid "Length of excerpt (in words): "
234
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
235
 
236
- #: admin.inc.php:307
237
  #, fuzzy
238
  msgid "Show post author in list?"
239
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
240
 
241
- #: admin.inc.php:310
242
  #, fuzzy
243
  msgid "Show post date in list?"
244
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
245
 
246
- #: admin.inc.php:313
247
  msgid "Limit post title length (in characters)"
248
  msgstr ""
249
 
250
- #: admin.inc.php:316
251
  msgid "Display number of page views in popular lists?"
252
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
253
 
254
- #: admin.inc.php:319
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
- #: admin.inc.php:322
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
- #: admin.inc.php:325
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
- #: admin.inc.php:328
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
- #: admin.inc.php:331
271
  msgid "Customize the output:"
272
  msgstr "Suiyahı formasının kökləmələri:"
273
 
274
- #: admin.inc.php:333
275
  msgid "HTML to display before the list of posts: "
276
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
277
 
278
- #: admin.inc.php:336
279
  msgid "HTML to display before each list item: "
280
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
281
 
282
- #: admin.inc.php:339
283
  msgid "HTML to display after each list item: "
284
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
285
 
286
- #: admin.inc.php:342
287
  msgid "HTML to display after the list of posts: "
288
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
289
 
290
- #: admin.inc.php:345
291
  msgid "Post thumbnail options:"
292
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
293
 
294
- #: admin.inc.php:347
295
  msgid "Location of post thumbnail:"
296
  msgstr ""
297
 
298
- #: admin.inc.php:351
299
  #, fuzzy
300
  msgid "Display thumbnails inline with posts, before title"
301
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
302
 
303
- #: admin.inc.php:355
304
  #, fuzzy
305
  msgid "Display thumbnails inline with posts, after title"
306
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
307
 
308
- #: admin.inc.php:359
309
  msgid "Display only thumbnails, no text"
310
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
311
 
312
- #: admin.inc.php:363
313
  msgid "Do not display thumbnails, only text."
314
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
315
 
316
- #: admin.inc.php:367
317
  msgid "Width of the thumbnail: "
318
  msgstr ""
319
 
320
- #: admin.inc.php:370
321
  msgid "Height of the thumbnail: "
322
  msgstr ""
323
 
324
- #: admin.inc.php:373
325
  msgid "Style attributes / Width and Height HTML attributes:"
326
  msgstr ""
327
 
328
- #: admin.inc.php:377
329
  msgid ""
330
  "Style attributes are used for width and height. <code>style=\"max-width:"
331
  msgstr ""
332
 
333
- #: admin.inc.php:381
334
  msgid ""
335
  "HTML width and height attributes are used for width and height. <code>width="
336
  "\""
337
  msgstr ""
338
 
339
- #: admin.inc.php:385
340
  msgid "Use timthumb to generate thumbnails? "
341
  msgstr ""
342
 
@@ -346,18 +346,18 @@ msgid ""
346
  "\">timthumb</a> will be used to generate thumbnails"
347
  msgstr ""
348
 
349
- #: admin.inc.php:388
350
  #, fuzzy
351
  msgid "Post thumbnail meta field name: "
352
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
353
 
354
- #: admin.inc.php:389
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
- #: admin.inc.php:391
361
  #, fuzzy
362
  msgid ""
363
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -367,7 +367,7 @@ msgstr ""
367
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
368
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
369
 
370
- #: admin.inc.php:392
371
  #, fuzzy
372
  msgid ""
373
  "This could slow down the loading of your page if the first image in the "
@@ -377,21 +377,21 @@ msgstr ""
377
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
378
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
379
 
380
- #: admin.inc.php:394
381
  msgid "Use default thumbnail? "
382
  msgstr ""
383
 
384
- #: admin.inc.php:395
385
  msgid ""
386
  "If checked, when no thumbnail is found, show a default one from the URL "
387
  "below. If not checked and no thumbnail is found, no image will be shown."
388
  msgstr ""
389
 
390
- #: admin.inc.php:397
391
  msgid "Default thumbnail: "
392
  msgstr ""
393
 
394
- #: admin.inc.php:398
395
  #, fuzzy
396
  msgid ""
397
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -402,98 +402,98 @@ msgstr ""
402
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
403
  "onda standard şəkil çıxarılacaq:"
404
 
405
- #: admin.inc.php:404
406
  msgid "Custom Styles"
407
  msgstr ""
408
 
409
- #: admin.inc.php:407
410
  msgid "Custom CSS to add to header:"
411
  msgstr ""
412
 
413
- #: admin.inc.php:410
414
  msgid ""
415
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
416
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
417
  "available CSS classes to style."
418
  msgstr ""
419
 
420
- #: admin.inc.php:417
421
  msgid "Maintenance"
422
  msgstr ""
423
 
424
- #: admin.inc.php:421
425
  msgid ""
426
  "Over time the Daily Top 10 database grows in size, which reduces the "
427
  "performance of the plugin. Cleaning the database at regular intervals could "
428
  "improve performance, especially on high traffic blogs."
429
  msgstr ""
430
 
431
- #: admin.inc.php:422
432
  msgid ""
433
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
434
  "everytime the job is rescheduled (i.e. you change the settings below). This "
435
  "causes the daily posts table to reset."
436
  msgstr ""
437
 
438
- #: admin.inc.php:425
439
  msgid "Enable scheduled maintenance of daily tables:"
440
  msgstr ""
441
 
442
- #: admin.inc.php:429
443
  msgid "Time to run maintenance"
444
  msgstr ""
445
 
446
- #: admin.inc.php:432
447
  msgid "How often should the maintenance be run:"
448
  msgstr ""
449
 
450
- #: admin.inc.php:436
451
  msgid "Daily"
452
  msgstr ""
453
 
454
- #: admin.inc.php:440
455
  msgid "Weekly"
456
  msgstr ""
457
 
458
- #: admin.inc.php:444
459
  msgid "Fortnightly"
460
  msgstr ""
461
 
462
- #: admin.inc.php:448
463
  msgid "Monthly"
464
  msgstr ""
465
 
466
- #: admin.inc.php:457
467
  msgid "The cron job has been scheduled. Maintenance will run "
468
  msgstr ""
469
 
470
- #: admin.inc.php:462
471
  msgid "The cron job is missing. Please resave this page to add the job"
472
  msgstr ""
473
 
474
- #: admin.inc.php:467
475
  msgid "Maintenance is turned off"
476
  msgstr ""
477
 
478
- #: admin.inc.php:475
479
  #, fuzzy
480
  msgid "Save Options"
481
  msgstr "Opsiyalar:"
482
 
483
- #: admin.inc.php:476
484
  #, fuzzy
485
  msgid "Default Options"
486
  msgstr "Plaginin kökləmələri:"
487
 
488
- #: admin.inc.php:476
489
  msgid "Do you want to set options to Default?"
490
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
491
 
492
- #: admin.inc.php:480
493
  msgid "Reset count"
494
  msgstr "Statistikanı sbros etmək"
495
 
496
- #: admin.inc.php:483
497
  msgid ""
498
  "This cannot be reversed. Make sure that your database has been backed up "
499
  "before proceeding"
@@ -501,257 +501,257 @@ msgstr ""
501
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
502
  "ki, Sizin məlumat bazasının kopiyası var!"
503
 
504
- #: admin.inc.php:486
505
  #, fuzzy
506
  msgid "Reset Popular Posts"
507
  msgstr "Populyar yazılar"
508
 
509
- #: admin.inc.php:486
510
  msgid "Are you sure you want to reset the popular posts?"
511
  msgstr ""
512
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
513
 
514
- #: admin.inc.php:487
515
  #, fuzzy
516
  msgid "Reset Daily Popular Posts"
517
  msgstr "Gündəlik Populyar Yazılar"
518
 
519
- #: admin.inc.php:487
520
  msgid "Are you sure you want to reset the daily popular posts?"
521
  msgstr ""
522
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
523
  "istəyirsiniz?"
524
 
525
- #: admin.inc.php:488
526
  msgid "Clear duplicates"
527
  msgstr ""
528
 
529
- #: admin.inc.php:488
530
  msgid "This will delete the duplicate entries in the tables. Proceed?"
531
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
532
 
533
- #: admin.inc.php:531 admin.inc.php:906
534
  msgid "Popular Posts"
535
  msgstr "Populyar yazılar"
536
 
537
- #: admin.inc.php:531 admin.inc.php:618
538
  msgid "Daily Popular Posts"
539
  msgstr "Gündəlik Populyar Yazılar"
540
 
541
- #: admin.inc.php:559
542
  msgid "Support the development"
543
  msgstr "İnkişafı dəstək vermək"
544
 
545
- #: admin.inc.php:567
546
  msgid "Enter amount in USD: "
547
  msgstr "Miiqdarı USD ilə daxil et:"
548
 
549
- #: admin.inc.php:571
550
  msgid "Send your donation to the author of"
551
  msgstr "Müəlifə ianə göndərin "
552
 
553
- #: admin.inc.php:577
554
  msgid "Follow us"
555
  msgstr ""
556
 
557
- #: admin.inc.php:583
558
  #, fuzzy
559
  msgid "Quick Links"
560
  msgstr "Faydalı istenadlar"
561
 
562
- #: admin.inc.php:585
563
  #, fuzzy
564
  msgid "Top 10 plugin page"
565
  msgstr "plaginin səhifəsi"
566
 
567
- #: admin.inc.php:586
568
  msgid "Other plugins"
569
  msgstr "Digər plaginlər"
570
 
571
- #: admin.inc.php:587
572
  msgid "Ajay's blog"
573
  msgstr "Ajay-in blogu"
574
 
575
- #: admin.inc.php:588 top-10.php:1094
576
  msgid "Support"
577
  msgstr "Dəstək"
578
 
579
- #: admin.inc.php:592
580
  msgid "Recent developments"
581
  msgstr "Son inkişaflar"
582
 
583
- #: admin.inc.php:609 admin.inc.php:612
584
  #, fuzzy
585
  msgid "Top 10 Settings"
586
  msgstr "Kökləmələr"
587
 
588
- #: admin.inc.php:609
589
  msgid "Top 10"
590
  msgstr "Top 10 yazılar"
591
 
592
- #: admin.inc.php:615
593
  #, fuzzy
594
  msgid "Overall Popular Posts"
595
  msgstr "Bütün Populyar Yazılara Baxmaq"
596
 
597
- #: admin.inc.php:786
598
  msgid "Results"
599
  msgstr "Nəticələr"
600
 
601
- #: admin.inc.php:788 admin.inc.php:794
602
  msgid "of"
603
  msgstr "-dən "
604
 
605
- #: admin.inc.php:792
606
  msgid "Page"
607
  msgstr "Səhifə"
608
 
609
- #: admin.inc.php:806
610
  msgid "View Daily Popular Posts"
611
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
612
 
613
- #: admin.inc.php:809 admin.inc.php:822
614
  msgid "Results per-page:"
615
  msgstr "Səhifə üzrə nəticələr:"
616
 
617
- #: admin.inc.php:819
618
  msgid "View Overall Popular Posts"
619
  msgstr "Bütün Populyar Yazılara Baxmaq"
620
 
621
- #: admin.inc.php:848
622
  msgid "Previous"
623
  msgstr "Əvvəlki"
624
 
625
- #: admin.inc.php:866
626
  msgid "Next"
627
  msgstr "Sonrakı"
628
 
629
- #: admin.inc.php:907
630
  msgid "Daily Popular"
631
  msgstr "Gündəlik Populyar"
632
 
633
- #: admin.inc.php:923
634
  #, fuzzy
635
  msgid "Total Views"
636
  msgstr "Ümümi/ Bu günkü baxış"
637
 
638
- #: admin.inc.php:924
639
  #, fuzzy
640
  msgid "Today's Views"
641
  msgstr "Ümümi/ Bu günkü baxış"
642
 
643
- #: top-10.php:366
644
- msgid " Posted by "
645
  msgstr ""
646
 
647
- #: top-10.php:448
648
  msgid "Display the posts popular this week"
649
  msgstr ""
650
 
651
- #: top-10.php:449
652
  #, fuzzy
653
  msgid "Popular Posts [Top 10]"
654
  msgstr "Populyar yazılar"
655
 
656
- #: top-10.php:466
657
  msgid "Title"
658
  msgstr ""
659
 
660
- #: top-10.php:471
661
  msgid "No. of posts"
662
  msgstr ""
663
 
664
- #: top-10.php:476
665
  msgid "Overall"
666
  msgstr ""
667
 
668
- #: top-10.php:477
669
  msgid "Custom time period (Enter below)"
670
  msgstr ""
671
 
672
- #: top-10.php:482
673
  msgid "Range in number of days (applies only to custom option above)"
674
  msgstr ""
675
 
676
- #: top-10.php:487
677
  #, fuzzy
678
  msgid " Show excerpt?"
679
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
680
 
681
- #: top-10.php:492
682
  msgid " Show author?"
683
  msgstr ""
684
 
685
- #: top-10.php:497
686
  #, fuzzy
687
  msgid " Show date?"
688
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
689
 
690
- #: top-10.php:501
691
  #, fuzzy
692
  msgid "Thumbnail options"
693
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
694
 
695
- #: top-10.php:503
696
  #, fuzzy
697
  msgid "Thumbnails inline, before title"
698
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
699
 
700
- #: top-10.php:504
701
  #, fuzzy
702
  msgid "Thumbnails inline, after title"
703
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
704
 
705
- #: top-10.php:505
706
  #, fuzzy
707
  msgid "Only thumbnails, no text"
708
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
709
 
710
- #: top-10.php:506
711
  #, fuzzy
712
  msgid "No thumbnails, only text."
713
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
714
 
715
- #: top-10.php:511
716
  #, fuzzy
717
  msgid "Thumbnail height"
718
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
719
 
720
- #: top-10.php:516
721
  #, fuzzy
722
  msgid "Thumbnail width"
723
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
724
 
725
- #: top-10.php:617
726
  msgid "<h3>Popular Posts</h3>"
727
  msgstr "<h3>Populyar yazılar</h3>"
728
 
729
- #: top-10.php:618
730
  msgid "<h3>Daily Popular</h3>"
731
  msgstr "<h3>Gündəlik Populyar</h3>"
732
 
733
- #: top-10.php:619
734
  #, fuzzy
735
  msgid "No top posts yet"
736
  msgstr "10 populyar yazı statisticasını pozmaq"
737
 
738
- #: top-10.php:1060
739
  msgid "Once Weekly"
740
  msgstr ""
741
 
742
- #: top-10.php:1061
743
  msgid "Once Fortnightly"
744
  msgstr ""
745
 
746
- #: top-10.php:1062
747
  msgid "Once Monthly"
748
  msgstr ""
749
 
750
- #: top-10.php:1082
751
  msgid "Settings"
752
  msgstr "Kökləmələr"
753
 
754
- #: top-10.php:1095
755
  msgid "Donate"
756
  msgstr "İanə etmək"
757
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "10 populyar yazı statisticasını pozmaq"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Populyar postların miqdarının nümayişi:"
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
77
 
78
+ #: admin.inc.php:198
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:209
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
+ #: admin.inc.php:213
87
  msgid "Exclude Categories: "
88
  msgstr ""
89
 
90
+ #: admin.inc.php:228
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:233
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
101
 
102
+ #: admin.inc.php:235
103
  msgid "Posts"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:236
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Səhifə"
110
 
111
+ #: admin.inc.php:237
112
  msgid "Home page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:238
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:239
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:240
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:241
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:242
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:245
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:247
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:250
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:252
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
159
  "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
160
 
161
+ #: admin.inc.php:255
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
164
 
165
+ #: admin.inc.php:258
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
169
 
170
+ #: admin.inc.php:261
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:264
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:266
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
184
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
185
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
186
 
187
+ #: admin.inc.php:273
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Plaginin kökləmələri:"
191
 
192
+ #: admin.inc.php:276
193
  msgid "Format to display the count in: "
194
  msgstr "Miqdarı göstərən format:"
195
 
196
+ #: admin.inc.php:278
197
  #, fuzzy
198
  msgid ""
199
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
205
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
206
  "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
207
 
208
+ #: admin.inc.php:281
209
  msgid "Title of popular posts: "
210
  msgstr "Populyar yazılarının başlığı:"
211
 
212
+ #: admin.inc.php:284
213
  msgid "Title of daily popular posts: "
214
  msgstr "Gündəlik populyual yazılışların başlığı:"
215
 
216
+ #: admin.inc.php:287
217
  msgid "When there are no posts, what should be shown?"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:291
221
  msgid "Blank Output"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:295
225
  msgid "Display:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:299
229
  msgid "Show post excerpt in list?"
230
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
231
 
232
+ #: admin.inc.php:302
233
  msgid "Length of excerpt (in words): "
234
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
235
 
236
+ #: admin.inc.php:305
237
  #, fuzzy
238
  msgid "Show post author in list?"
239
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
240
 
241
+ #: admin.inc.php:308
242
  #, fuzzy
243
  msgid "Show post date in list?"
244
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
245
 
246
+ #: admin.inc.php:311
247
  msgid "Limit post title length (in characters)"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:314
251
  msgid "Display number of page views in popular lists?"
252
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
253
 
254
+ #: admin.inc.php:317
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:320
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:323
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:326
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
+ #: admin.inc.php:329
271
  msgid "Customize the output:"
272
  msgstr "Suiyahı formasının kökləmələri:"
273
 
274
+ #: admin.inc.php:331
275
  msgid "HTML to display before the list of posts: "
276
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
277
 
278
+ #: admin.inc.php:334
279
  msgid "HTML to display before each list item: "
280
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
281
 
282
+ #: admin.inc.php:337
283
  msgid "HTML to display after each list item: "
284
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
285
 
286
+ #: admin.inc.php:340
287
  msgid "HTML to display after the list of posts: "
288
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
289
 
290
+ #: admin.inc.php:343
291
  msgid "Post thumbnail options:"
292
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
293
 
294
+ #: admin.inc.php:345
295
  msgid "Location of post thumbnail:"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:349
299
  #, fuzzy
300
  msgid "Display thumbnails inline with posts, before title"
301
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
302
 
303
+ #: admin.inc.php:353
304
  #, fuzzy
305
  msgid "Display thumbnails inline with posts, after title"
306
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
307
 
308
+ #: admin.inc.php:357
309
  msgid "Display only thumbnails, no text"
310
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
311
 
312
+ #: admin.inc.php:361
313
  msgid "Do not display thumbnails, only text."
314
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
315
 
316
+ #: admin.inc.php:365
317
  msgid "Width of the thumbnail: "
318
  msgstr ""
319
 
320
+ #: admin.inc.php:368
321
  msgid "Height of the thumbnail: "
322
  msgstr ""
323
 
324
+ #: admin.inc.php:371
325
  msgid "Style attributes / Width and Height HTML attributes:"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:375
329
  msgid ""
330
  "Style attributes are used for width and height. <code>style=\"max-width:"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:379
334
  msgid ""
335
  "HTML width and height attributes are used for width and height. <code>width="
336
  "\""
337
  msgstr ""
338
 
339
+ #: admin.inc.php:383
340
  msgid "Use timthumb to generate thumbnails? "
341
  msgstr ""
342
 
346
  "\">timthumb</a> will be used to generate thumbnails"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:389
350
  #, fuzzy
351
  msgid "Post thumbnail meta field name: "
352
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
353
 
354
+ #: admin.inc.php:392
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:395
361
  #, fuzzy
362
  msgid ""
363
  "If the postmeta is not set, then should the plugin extract the first image "
367
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
368
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
369
 
370
+ #: admin.inc.php:398
371
  #, fuzzy
372
  msgid ""
373
  "This could slow down the loading of your page if the first image in the "
377
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
378
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
379
 
380
+ #: admin.inc.php:401
381
  msgid "Use default thumbnail? "
382
  msgstr ""
383
 
384
+ #: admin.inc.php:404
385
  msgid ""
386
  "If checked, when no thumbnail is found, show a default one from the URL "
387
  "below. If not checked and no thumbnail is found, no image will be shown."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:407
391
  msgid "Default thumbnail: "
392
  msgstr ""
393
 
394
+ #: admin.inc.php:410
395
  #, fuzzy
396
  msgid ""
397
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
402
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
403
  "onda standard şəkil çıxarılacaq:"
404
 
405
+ #: admin.inc.php:417
406
  msgid "Custom Styles"
407
  msgstr ""
408
 
409
+ #: admin.inc.php:420
410
  msgid "Custom CSS to add to header:"
411
  msgstr ""
412
 
413
+ #: admin.inc.php:423
414
  msgid ""
415
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
416
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
417
  "available CSS classes to style."
418
  msgstr ""
419
 
420
+ #: admin.inc.php:430
421
  msgid "Maintenance"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:434
425
  msgid ""
426
  "Over time the Daily Top 10 database grows in size, which reduces the "
427
  "performance of the plugin. Cleaning the database at regular intervals could "
428
  "improve performance, especially on high traffic blogs."
429
  msgstr ""
430
 
431
+ #: admin.inc.php:435
432
  msgid ""
433
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
434
  "everytime the job is rescheduled (i.e. you change the settings below). This "
435
  "causes the daily posts table to reset."
436
  msgstr ""
437
 
438
+ #: admin.inc.php:438
439
  msgid "Enable scheduled maintenance of daily tables:"
440
  msgstr ""
441
 
442
+ #: admin.inc.php:442
443
  msgid "Time to run maintenance"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:445
447
  msgid "How often should the maintenance be run:"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:449
451
  msgid "Daily"
452
  msgstr ""
453
 
454
+ #: admin.inc.php:453
455
  msgid "Weekly"
456
  msgstr ""
457
 
458
+ #: admin.inc.php:457
459
  msgid "Fortnightly"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:461
463
  msgid "Monthly"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:470
467
  msgid "The cron job has been scheduled. Maintenance will run "
468
  msgstr ""
469
 
470
+ #: admin.inc.php:475
471
  msgid "The cron job is missing. Please resave this page to add the job"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:480
475
  msgid "Maintenance is turned off"
476
  msgstr ""
477
 
478
+ #: admin.inc.php:488
479
  #, fuzzy
480
  msgid "Save Options"
481
  msgstr "Opsiyalar:"
482
 
483
+ #: admin.inc.php:489
484
  #, fuzzy
485
  msgid "Default Options"
486
  msgstr "Plaginin kökləmələri:"
487
 
488
+ #: admin.inc.php:489
489
  msgid "Do you want to set options to Default?"
490
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
491
 
492
+ #: admin.inc.php:493
493
  msgid "Reset count"
494
  msgstr "Statistikanı sbros etmək"
495
 
496
+ #: admin.inc.php:496
497
  msgid ""
498
  "This cannot be reversed. Make sure that your database has been backed up "
499
  "before proceeding"
501
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
502
  "ki, Sizin məlumat bazasının kopiyası var!"
503
 
504
+ #: admin.inc.php:499
505
  #, fuzzy
506
  msgid "Reset Popular Posts"
507
  msgstr "Populyar yazılar"
508
 
509
+ #: admin.inc.php:499
510
  msgid "Are you sure you want to reset the popular posts?"
511
  msgstr ""
512
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
513
 
514
+ #: admin.inc.php:500
515
  #, fuzzy
516
  msgid "Reset Daily Popular Posts"
517
  msgstr "Gündəlik Populyar Yazılar"
518
 
519
+ #: admin.inc.php:500
520
  msgid "Are you sure you want to reset the daily popular posts?"
521
  msgstr ""
522
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
523
  "istəyirsiniz?"
524
 
525
+ #: admin.inc.php:501
526
  msgid "Clear duplicates"
527
  msgstr ""
528
 
529
+ #: admin.inc.php:501
530
  msgid "This will delete the duplicate entries in the tables. Proceed?"
531
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
532
 
533
+ #: admin.inc.php:544 admin.inc.php:929
534
  msgid "Popular Posts"
535
  msgstr "Populyar yazılar"
536
 
537
+ #: admin.inc.php:544 admin.inc.php:631
538
  msgid "Daily Popular Posts"
539
  msgstr "Gündəlik Populyar Yazılar"
540
 
541
+ #: admin.inc.php:572
542
  msgid "Support the development"
543
  msgstr "İnkişafı dəstək vermək"
544
 
545
+ #: admin.inc.php:580
546
  msgid "Enter amount in USD: "
547
  msgstr "Miiqdarı USD ilə daxil et:"
548
 
549
+ #: admin.inc.php:584
550
  msgid "Send your donation to the author of"
551
  msgstr "Müəlifə ianə göndərin "
552
 
553
+ #: admin.inc.php:590
554
  msgid "Follow us"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:596
558
  #, fuzzy
559
  msgid "Quick Links"
560
  msgstr "Faydalı istenadlar"
561
 
562
+ #: admin.inc.php:598
563
  #, fuzzy
564
  msgid "Top 10 plugin page"
565
  msgstr "plaginin səhifəsi"
566
 
567
+ #: admin.inc.php:599
568
  msgid "Other plugins"
569
  msgstr "Digər plaginlər"
570
 
571
+ #: admin.inc.php:600
572
  msgid "Ajay's blog"
573
  msgstr "Ajay-in blogu"
574
 
575
+ #: admin.inc.php:601 top-10.php:1147
576
  msgid "Support"
577
  msgstr "Dəstək"
578
 
579
+ #: admin.inc.php:605
580
  msgid "Recent developments"
581
  msgstr "Son inkişaflar"
582
 
583
+ #: admin.inc.php:622 admin.inc.php:625
584
  #, fuzzy
585
  msgid "Top 10 Settings"
586
  msgstr "Kökləmələr"
587
 
588
+ #: admin.inc.php:622
589
  msgid "Top 10"
590
  msgstr "Top 10 yazılar"
591
 
592
+ #: admin.inc.php:628
593
  #, fuzzy
594
  msgid "Overall Popular Posts"
595
  msgstr "Bütün Populyar Yazılara Baxmaq"
596
 
597
+ #: admin.inc.php:799
598
  msgid "Results"
599
  msgstr "Nəticələr"
600
 
601
+ #: admin.inc.php:801 admin.inc.php:807
602
  msgid "of"
603
  msgstr "-dən "
604
 
605
+ #: admin.inc.php:805
606
  msgid "Page"
607
  msgstr "Səhifə"
608
 
609
+ #: admin.inc.php:819
610
  msgid "View Daily Popular Posts"
611
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
612
 
613
+ #: admin.inc.php:822 admin.inc.php:835
614
  msgid "Results per-page:"
615
  msgstr "Səhifə üzrə nəticələr:"
616
 
617
+ #: admin.inc.php:832
618
  msgid "View Overall Popular Posts"
619
  msgstr "Bütün Populyar Yazılara Baxmaq"
620
 
621
+ #: admin.inc.php:861
622
  msgid "Previous"
623
  msgstr "Əvvəlki"
624
 
625
+ #: admin.inc.php:889
626
  msgid "Next"
627
  msgstr "Sonrakı"
628
 
629
+ #: admin.inc.php:930
630
  msgid "Daily Popular"
631
  msgstr "Gündəlik Populyar"
632
 
633
+ #: admin.inc.php:946
634
  #, fuzzy
635
  msgid "Total Views"
636
  msgstr "Ümümi/ Bu günkü baxış"
637
 
638
+ #: admin.inc.php:947
639
  #, fuzzy
640
  msgid "Today's Views"
641
  msgstr "Ümümi/ Bu günkü baxış"
642
 
643
+ #: top-10.php:415
644
+ msgid " by "
645
  msgstr ""
646
 
647
+ #: top-10.php:501
648
  msgid "Display the posts popular this week"
649
  msgstr ""
650
 
651
+ #: top-10.php:502
652
  #, fuzzy
653
  msgid "Popular Posts [Top 10]"
654
  msgstr "Populyar yazılar"
655
 
656
+ #: top-10.php:519
657
  msgid "Title"
658
  msgstr ""
659
 
660
+ #: top-10.php:524
661
  msgid "No. of posts"
662
  msgstr ""
663
 
664
+ #: top-10.php:529
665
  msgid "Overall"
666
  msgstr ""
667
 
668
+ #: top-10.php:530
669
  msgid "Custom time period (Enter below)"
670
  msgstr ""
671
 
672
+ #: top-10.php:535
673
  msgid "Range in number of days (applies only to custom option above)"
674
  msgstr ""
675
 
676
+ #: top-10.php:540
677
  #, fuzzy
678
  msgid " Show excerpt?"
679
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
680
 
681
+ #: top-10.php:545
682
  msgid " Show author?"
683
  msgstr ""
684
 
685
+ #: top-10.php:550
686
  #, fuzzy
687
  msgid " Show date?"
688
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
689
 
690
+ #: top-10.php:554
691
  #, fuzzy
692
  msgid "Thumbnail options"
693
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
694
 
695
+ #: top-10.php:556
696
  #, fuzzy
697
  msgid "Thumbnails inline, before title"
698
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
699
 
700
+ #: top-10.php:557
701
  #, fuzzy
702
  msgid "Thumbnails inline, after title"
703
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
704
 
705
+ #: top-10.php:558
706
  #, fuzzy
707
  msgid "Only thumbnails, no text"
708
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
709
 
710
+ #: top-10.php:559
711
  #, fuzzy
712
  msgid "No thumbnails, only text."
713
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
714
 
715
+ #: top-10.php:564
716
  #, fuzzy
717
  msgid "Thumbnail height"
718
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
719
 
720
+ #: top-10.php:569
721
  #, fuzzy
722
  msgid "Thumbnail width"
723
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
724
 
725
+ #: top-10.php:670
726
  msgid "<h3>Popular Posts</h3>"
727
  msgstr "<h3>Populyar yazılar</h3>"
728
 
729
+ #: top-10.php:671
730
  msgid "<h3>Daily Popular</h3>"
731
  msgstr "<h3>Gündəlik Populyar</h3>"
732
 
733
+ #: top-10.php:672
734
  #, fuzzy
735
  msgid "No top posts yet"
736
  msgstr "10 populyar yazı statisticasını pozmaq"
737
 
738
+ #: top-10.php:1113
739
  msgid "Once Weekly"
740
  msgstr ""
741
 
742
+ #: top-10.php:1114
743
  msgid "Once Fortnightly"
744
  msgstr ""
745
 
746
+ #: top-10.php:1115
747
  msgid "Once Monthly"
748
  msgstr ""
749
 
750
+ #: top-10.php:1135
751
  msgid "Settings"
752
  msgstr "Kökləmələr"
753
 
754
+ #: top-10.php:1148
755
  msgid "Donate"
756
  msgstr "İanə etmək"
757
 
languages/tptn-be_BY.mo CHANGED
Binary file
languages/tptn-be_BY.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
@@ -15,132 +15,132 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Налады захаваны."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Налады скінуты."
33
 
34
- #: admin.inc.php:139
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Загаловак блока Папулярных запісаў:"
38
 
39
- #: admin.inc.php:145
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Загаловак блока Папулярных сёння запісаў:"
43
 
44
- #: admin.inc.php:152
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
- #: admin.inc.php:173
49
  msgid "General options"
50
  msgstr ""
51
 
52
- #: admin.inc.php:177
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
- #: admin.inc.php:182
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:187
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:189
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
- #: admin.inc.php:193
72
  msgid "Number of popular posts to display: "
73
  msgstr "Колькасць Папулярных запісаў у спісе:"
74
 
75
- #: admin.inc.php:197
76
  msgid "Daily Popular should contain views of how many days? "
77
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
78
 
79
- #: admin.inc.php:200
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
- #: admin.inc.php:211
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
- #: admin.inc.php:215
88
  msgid "Exclude Categories: "
89
  msgstr ""
90
 
91
- #: admin.inc.php:230
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
- #: admin.inc.php:235
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
102
 
103
- #: admin.inc.php:237
104
  msgid "Posts"
105
  msgstr ""
106
 
107
- #: admin.inc.php:238
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Старонка"
111
 
112
- #: admin.inc.php:239
113
  msgid "Home page"
114
  msgstr ""
115
 
116
- #: admin.inc.php:240
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
- #: admin.inc.php:241
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
- #: admin.inc.php:242
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
- #: admin.inc.php:243
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
- #: admin.inc.php:244
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
- #: admin.inc.php:247
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
- #: admin.inc.php:249
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
@@ -148,35 +148,35 @@ msgid ""
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
- #: admin.inc.php:252
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
- #: admin.inc.php:254
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
159
  "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
160
  "і гэта можа павялічыць час загрузкі старонак"
161
 
162
- #: admin.inc.php:257
163
  msgid "Track visits of authors on their own posts?"
164
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
165
 
166
- #: admin.inc.php:260
167
  #, fuzzy
168
  msgid "Track visits of admins?"
169
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
170
 
171
- #: admin.inc.php:263
172
  msgid "Display page views on Posts > All Posts in Admin"
173
  msgstr ""
174
 
175
- #: admin.inc.php:266
176
  msgid "Link to Top 10 plugin page"
177
  msgstr ""
178
 
179
- #: admin.inc.php:268
180
  #, fuzzy
181
  msgid ""
182
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -185,16 +185,16 @@ msgstr ""
185
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
186
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
187
 
188
- #: admin.inc.php:275
189
  #, fuzzy
190
  msgid "Output Options"
191
  msgstr "Налады ўбудовы:"
192
 
193
- #: admin.inc.php:278
194
  msgid "Format to display the count in: "
195
  msgstr "Фармат адлюстравання колькасці праглядаў:"
196
 
197
- #: admin.inc.php:280
198
  #, fuzzy
199
  msgid ""
200
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -206,138 +206,138 @@ msgstr ""
206
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
207
  "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
208
 
209
- #: admin.inc.php:283
210
  msgid "Title of popular posts: "
211
  msgstr "Загаловак блока Папулярных запісаў:"
212
 
213
- #: admin.inc.php:286
214
  msgid "Title of daily popular posts: "
215
  msgstr "Загаловак блока Папулярных сёння запісаў:"
216
 
217
- #: admin.inc.php:289
218
  msgid "When there are no posts, what should be shown?"
219
  msgstr ""
220
 
221
- #: admin.inc.php:293
222
  msgid "Blank Output"
223
  msgstr ""
224
 
225
- #: admin.inc.php:297
226
  msgid "Display:"
227
  msgstr ""
228
 
229
- #: admin.inc.php:301
230
  msgid "Show post excerpt in list?"
231
  msgstr ""
232
 
233
- #: admin.inc.php:304
234
  msgid "Length of excerpt (in words): "
235
  msgstr ""
236
 
237
- #: admin.inc.php:307
238
  msgid "Show post author in list?"
239
  msgstr ""
240
 
241
- #: admin.inc.php:310
242
  msgid "Show post date in list?"
243
  msgstr ""
244
 
245
- #: admin.inc.php:313
246
  msgid "Limit post title length (in characters)"
247
  msgstr ""
248
 
249
- #: admin.inc.php:316
250
  msgid "Display number of page views in popular lists?"
251
  msgstr ""
252
  "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
253
 
254
- #: admin.inc.php:319
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
- #: admin.inc.php:322
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
- #: admin.inc.php:325
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
- #: admin.inc.php:328
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
- #: admin.inc.php:331
271
  msgid "Customize the output:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:333
275
  msgid "HTML to display before the list of posts: "
276
  msgstr ""
277
 
278
- #: admin.inc.php:336
279
  msgid "HTML to display before each list item: "
280
  msgstr ""
281
 
282
- #: admin.inc.php:339
283
  #, fuzzy
284
  msgid "HTML to display after each list item: "
285
  msgstr "Фармат адлюстравання колькасці праглядаў:"
286
 
287
- #: admin.inc.php:342
288
  msgid "HTML to display after the list of posts: "
289
  msgstr ""
290
 
291
- #: admin.inc.php:345
292
  msgid "Post thumbnail options:"
293
  msgstr ""
294
 
295
- #: admin.inc.php:347
296
  msgid "Location of post thumbnail:"
297
  msgstr ""
298
 
299
- #: admin.inc.php:351
300
  #, fuzzy
301
  msgid "Display thumbnails inline with posts, before title"
302
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
303
 
304
- #: admin.inc.php:355
305
  #, fuzzy
306
  msgid "Display thumbnails inline with posts, after title"
307
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
308
 
309
- #: admin.inc.php:359
310
  msgid "Display only thumbnails, no text"
311
  msgstr ""
312
 
313
- #: admin.inc.php:363
314
  msgid "Do not display thumbnails, only text."
315
  msgstr ""
316
 
317
- #: admin.inc.php:367
318
  msgid "Width of the thumbnail: "
319
  msgstr ""
320
 
321
- #: admin.inc.php:370
322
  msgid "Height of the thumbnail: "
323
  msgstr ""
324
 
325
- #: admin.inc.php:373
326
  msgid "Style attributes / Width and Height HTML attributes:"
327
  msgstr ""
328
 
329
- #: admin.inc.php:377
330
  msgid ""
331
  "Style attributes are used for width and height. <code>style=\"max-width:"
332
  msgstr ""
333
 
334
- #: admin.inc.php:381
335
  msgid ""
336
  "HTML width and height attributes are used for width and height. <code>width="
337
  "\""
338
  msgstr ""
339
 
340
- #: admin.inc.php:385
341
  msgid "Use timthumb to generate thumbnails? "
342
  msgstr ""
343
 
@@ -347,386 +347,386 @@ msgid ""
347
  "\">timthumb</a> will be used to generate thumbnails"
348
  msgstr ""
349
 
350
- #: admin.inc.php:388
351
  msgid "Post thumbnail meta field name: "
352
  msgstr ""
353
 
354
- #: admin.inc.php:389
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
- #: admin.inc.php:391
361
  msgid ""
362
  "If the postmeta is not set, then should the plugin extract the first image "
363
  "from the post?"
364
  msgstr ""
365
 
366
- #: admin.inc.php:392
367
  msgid ""
368
  "This could slow down the loading of your page if the first image in the "
369
  "related posts is large in file-size"
370
  msgstr ""
371
 
372
- #: admin.inc.php:394
373
  msgid "Use default thumbnail? "
374
  msgstr ""
375
 
376
- #: admin.inc.php:395
377
  msgid ""
378
  "If checked, when no thumbnail is found, show a default one from the URL "
379
  "below. If not checked and no thumbnail is found, no image will be shown."
380
  msgstr ""
381
 
382
- #: admin.inc.php:397
383
  msgid "Default thumbnail: "
384
  msgstr ""
385
 
386
- #: admin.inc.php:398
387
  msgid ""
388
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
389
  "then it will check the meta field. If this is not available, then it will "
390
  "show the default image as specified above"
391
  msgstr ""
392
 
393
- #: admin.inc.php:404
394
  msgid "Custom Styles"
395
  msgstr ""
396
 
397
- #: admin.inc.php:407
398
  msgid "Custom CSS to add to header:"
399
  msgstr ""
400
 
401
- #: admin.inc.php:410
402
  msgid ""
403
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
404
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
405
  "available CSS classes to style."
406
  msgstr ""
407
 
408
- #: admin.inc.php:417
409
  msgid "Maintenance"
410
  msgstr ""
411
 
412
- #: admin.inc.php:421
413
  msgid ""
414
  "Over time the Daily Top 10 database grows in size, which reduces the "
415
  "performance of the plugin. Cleaning the database at regular intervals could "
416
  "improve performance, especially on high traffic blogs."
417
  msgstr ""
418
 
419
- #: admin.inc.php:422
420
  msgid ""
421
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
422
  "everytime the job is rescheduled (i.e. you change the settings below). This "
423
  "causes the daily posts table to reset."
424
  msgstr ""
425
 
426
- #: admin.inc.php:425
427
  msgid "Enable scheduled maintenance of daily tables:"
428
  msgstr ""
429
 
430
- #: admin.inc.php:429
431
  msgid "Time to run maintenance"
432
  msgstr ""
433
 
434
- #: admin.inc.php:432
435
  msgid "How often should the maintenance be run:"
436
  msgstr ""
437
 
438
- #: admin.inc.php:436
439
  msgid "Daily"
440
  msgstr ""
441
 
442
- #: admin.inc.php:440
443
  msgid "Weekly"
444
  msgstr ""
445
 
446
- #: admin.inc.php:444
447
  msgid "Fortnightly"
448
  msgstr ""
449
 
450
- #: admin.inc.php:448
451
  msgid "Monthly"
452
  msgstr ""
453
 
454
- #: admin.inc.php:457
455
  msgid "The cron job has been scheduled. Maintenance will run "
456
  msgstr ""
457
 
458
- #: admin.inc.php:462
459
  msgid "The cron job is missing. Please resave this page to add the job"
460
  msgstr ""
461
 
462
- #: admin.inc.php:467
463
  msgid "Maintenance is turned off"
464
  msgstr ""
465
 
466
- #: admin.inc.php:475
467
  #, fuzzy
468
  msgid "Save Options"
469
  msgstr "Налады ўбудовы:"
470
 
471
- #: admin.inc.php:476
472
  #, fuzzy
473
  msgid "Default Options"
474
  msgstr "Налады ўбудовы:"
475
 
476
- #: admin.inc.php:476
477
  msgid "Do you want to set options to Default?"
478
  msgstr "Скінуць налады ўбудовы?"
479
 
480
- #: admin.inc.php:480
481
  msgid "Reset count"
482
  msgstr ""
483
 
484
- #: admin.inc.php:483
485
  msgid ""
486
  "This cannot be reversed. Make sure that your database has been backed up "
487
  "before proceeding"
488
  msgstr ""
489
 
490
- #: admin.inc.php:486
491
  #, fuzzy
492
  msgid "Reset Popular Posts"
493
  msgstr "Папулярныя запісы"
494
 
495
- #: admin.inc.php:486
496
  msgid "Are you sure you want to reset the popular posts?"
497
  msgstr ""
498
 
499
- #: admin.inc.php:487
500
  #, fuzzy
501
  msgid "Reset Daily Popular Posts"
502
  msgstr "Папулярныя сёння запісы"
503
 
504
- #: admin.inc.php:487
505
  msgid "Are you sure you want to reset the daily popular posts?"
506
  msgstr ""
507
 
508
- #: admin.inc.php:488
509
  msgid "Clear duplicates"
510
  msgstr ""
511
 
512
- #: admin.inc.php:488
513
  msgid "This will delete the duplicate entries in the tables. Proceed?"
514
  msgstr ""
515
 
516
- #: admin.inc.php:531 admin.inc.php:906
517
  msgid "Popular Posts"
518
  msgstr "Папулярныя запісы"
519
 
520
- #: admin.inc.php:531 admin.inc.php:618
521
  msgid "Daily Popular Posts"
522
  msgstr "Папулярныя сёння запісы"
523
 
524
- #: admin.inc.php:559
525
  #, fuzzy
526
  msgid "Support the development"
527
  msgstr "Падтрымаеце стваральніка ўбудовы"
528
 
529
- #: admin.inc.php:567
530
  msgid "Enter amount in USD: "
531
  msgstr ""
532
 
533
- #: admin.inc.php:571
534
  msgid "Send your donation to the author of"
535
  msgstr ""
536
 
537
- #: admin.inc.php:577
538
  msgid "Follow us"
539
  msgstr ""
540
 
541
- #: admin.inc.php:583
542
  msgid "Quick Links"
543
  msgstr ""
544
 
545
- #: admin.inc.php:585
546
  msgid "Top 10 plugin page"
547
  msgstr ""
548
 
549
- #: admin.inc.php:586
550
  msgid "Other plugins"
551
  msgstr ""
552
 
553
- #: admin.inc.php:587
554
  msgid "Ajay's blog"
555
  msgstr ""
556
 
557
- #: admin.inc.php:588 top-10.php:1094
558
  msgid "Support"
559
  msgstr ""
560
 
561
- #: admin.inc.php:592
562
  msgid "Recent developments"
563
  msgstr ""
564
 
565
- #: admin.inc.php:609 admin.inc.php:612
566
  #, fuzzy
567
  msgid "Top 10 Settings"
568
  msgstr "Топ 10 запісаў"
569
 
570
- #: admin.inc.php:609
571
  msgid "Top 10"
572
  msgstr "Топ 10 запісаў"
573
 
574
- #: admin.inc.php:615
575
  #, fuzzy
576
  msgid "Overall Popular Posts"
577
  msgstr "Паглядзець усе Папулярныя запісы"
578
 
579
- #: admin.inc.php:786
580
  msgid "Results"
581
  msgstr "Вынікі"
582
 
583
- #: admin.inc.php:788 admin.inc.php:794
584
  msgid "of"
585
  msgstr "з"
586
 
587
- #: admin.inc.php:792
588
  msgid "Page"
589
  msgstr "Старонка"
590
 
591
- #: admin.inc.php:806
592
  msgid "View Daily Popular Posts"
593
  msgstr "Паглядзець усе Папулярныя сёння запісы"
594
 
595
- #: admin.inc.php:809 admin.inc.php:822
596
  msgid "Results per-page:"
597
  msgstr "Вынікаў на старонку:"
598
 
599
- #: admin.inc.php:819
600
  msgid "View Overall Popular Posts"
601
  msgstr "Паглядзець усе Папулярныя запісы"
602
 
603
- #: admin.inc.php:848
604
  msgid "Previous"
605
  msgstr "Папярэдняя старонка"
606
 
607
- #: admin.inc.php:866
608
  msgid "Next"
609
  msgstr "Наступная старонка"
610
 
611
- #: admin.inc.php:907
612
  msgid "Daily Popular"
613
  msgstr "Папулярныя сёння запісы"
614
 
615
- #: admin.inc.php:923
616
  #, fuzzy
617
  msgid "Total Views"
618
  msgstr "Усяго / Сёння праглядаў"
619
 
620
- #: admin.inc.php:924
621
  #, fuzzy
622
  msgid "Today's Views"
623
  msgstr "Усяго / Сёння праглядаў"
624
 
625
- #: top-10.php:366
626
- msgid " Posted by "
627
  msgstr ""
628
 
629
- #: top-10.php:448
630
  msgid "Display the posts popular this week"
631
  msgstr ""
632
 
633
- #: top-10.php:449
634
  #, fuzzy
635
  msgid "Popular Posts [Top 10]"
636
  msgstr "Папулярныя запісы"
637
 
638
- #: top-10.php:466
639
  msgid "Title"
640
  msgstr ""
641
 
642
- #: top-10.php:471
643
  msgid "No. of posts"
644
  msgstr ""
645
 
646
- #: top-10.php:476
647
  msgid "Overall"
648
  msgstr ""
649
 
650
- #: top-10.php:477
651
  msgid "Custom time period (Enter below)"
652
  msgstr ""
653
 
654
- #: top-10.php:482
655
  msgid "Range in number of days (applies only to custom option above)"
656
  msgstr ""
657
 
658
- #: top-10.php:487
659
  msgid " Show excerpt?"
660
  msgstr ""
661
 
662
- #: top-10.php:492
663
  msgid " Show author?"
664
  msgstr ""
665
 
666
- #: top-10.php:497
667
  msgid " Show date?"
668
  msgstr ""
669
 
670
- #: top-10.php:501
671
  msgid "Thumbnail options"
672
  msgstr ""
673
 
674
- #: top-10.php:503
675
  #, fuzzy
676
  msgid "Thumbnails inline, before title"
677
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
678
 
679
- #: top-10.php:504
680
  #, fuzzy
681
  msgid "Thumbnails inline, after title"
682
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
683
 
684
- #: top-10.php:505
685
  msgid "Only thumbnails, no text"
686
  msgstr ""
687
 
688
- #: top-10.php:506
689
  msgid "No thumbnails, only text."
690
  msgstr ""
691
 
692
- #: top-10.php:511
693
  msgid "Thumbnail height"
694
  msgstr ""
695
 
696
- #: top-10.php:516
697
  msgid "Thumbnail width"
698
  msgstr ""
699
 
700
- #: top-10.php:617
701
  msgid "<h3>Popular Posts</h3>"
702
  msgstr "<h3>Папулярныя запісы</h3>"
703
 
704
- #: top-10.php:618
705
  msgid "<h3>Daily Popular</h3>"
706
  msgstr "<h3>Папулярныя сёння запісы</h3>"
707
 
708
- #: top-10.php:619
709
  #, fuzzy
710
  msgid "No top posts yet"
711
  msgstr "Загаловак блока Папулярных запісаў:"
712
 
713
- #: top-10.php:1060
714
  msgid "Once Weekly"
715
  msgstr ""
716
 
717
- #: top-10.php:1061
718
  msgid "Once Fortnightly"
719
  msgstr ""
720
 
721
- #: top-10.php:1062
722
  msgid "Once Monthly"
723
  msgstr ""
724
 
725
- #: top-10.php:1082
726
  msgid "Settings"
727
  msgstr ""
728
 
729
- #: top-10.php:1095
730
  msgid "Donate"
731
  msgstr ""
732
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Налады захаваны."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Налады скінуты."
33
 
34
+ #: admin.inc.php:137
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Загаловак блока Папулярных запісаў:"
38
 
39
+ #: admin.inc.php:143
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Загаловак блока Папулярных сёння запісаў:"
43
 
44
+ #: admin.inc.php:150
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:171
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:175
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
+ #: admin.inc.php:180
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:185
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
+ #: admin.inc.php:187
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
+ #: admin.inc.php:191
72
  msgid "Number of popular posts to display: "
73
  msgstr "Колькасць Папулярных запісаў у спісе:"
74
 
75
+ #: admin.inc.php:195
76
  msgid "Daily Popular should contain views of how many days? "
77
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
78
 
79
+ #: admin.inc.php:198
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:209
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
+ #: admin.inc.php:213
88
  msgid "Exclude Categories: "
89
  msgstr ""
90
 
91
+ #: admin.inc.php:228
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:233
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
102
 
103
+ #: admin.inc.php:235
104
  msgid "Posts"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:236
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Старонка"
111
 
112
+ #: admin.inc.php:237
113
  msgid "Home page"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:238
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:239
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:240
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:241
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:242
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:245
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:247
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
+ #: admin.inc.php:250
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:252
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
159
  "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
160
  "і гэта можа павялічыць час загрузкі старонак"
161
 
162
+ #: admin.inc.php:255
163
  msgid "Track visits of authors on their own posts?"
164
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
165
 
166
+ #: admin.inc.php:258
167
  #, fuzzy
168
  msgid "Track visits of admins?"
169
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
170
 
171
+ #: admin.inc.php:261
172
  msgid "Display page views on Posts > All Posts in Admin"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:264
176
  msgid "Link to Top 10 plugin page"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:266
180
  #, fuzzy
181
  msgid ""
182
  "A link to the plugin is added as an extra list item to the list of popular "
185
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
186
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
187
 
188
+ #: admin.inc.php:273
189
  #, fuzzy
190
  msgid "Output Options"
191
  msgstr "Налады ўбудовы:"
192
 
193
+ #: admin.inc.php:276
194
  msgid "Format to display the count in: "
195
  msgstr "Фармат адлюстравання колькасці праглядаў:"
196
 
197
+ #: admin.inc.php:278
198
  #, fuzzy
199
  msgid ""
200
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
206
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
207
  "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
208
 
209
+ #: admin.inc.php:281
210
  msgid "Title of popular posts: "
211
  msgstr "Загаловак блока Папулярных запісаў:"
212
 
213
+ #: admin.inc.php:284
214
  msgid "Title of daily popular posts: "
215
  msgstr "Загаловак блока Папулярных сёння запісаў:"
216
 
217
+ #: admin.inc.php:287
218
  msgid "When there are no posts, what should be shown?"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:291
222
  msgid "Blank Output"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:295
226
  msgid "Display:"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:299
230
  msgid "Show post excerpt in list?"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:302
234
  msgid "Length of excerpt (in words): "
235
  msgstr ""
236
 
237
+ #: admin.inc.php:305
238
  msgid "Show post author in list?"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:308
242
  msgid "Show post date in list?"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:311
246
  msgid "Limit post title length (in characters)"
247
  msgstr ""
248
 
249
+ #: admin.inc.php:314
250
  msgid "Display number of page views in popular lists?"
251
  msgstr ""
252
  "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
253
 
254
+ #: admin.inc.php:317
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:320
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:323
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:326
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
+ #: admin.inc.php:329
271
  msgid "Customize the output:"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:331
275
  msgid "HTML to display before the list of posts: "
276
  msgstr ""
277
 
278
+ #: admin.inc.php:334
279
  msgid "HTML to display before each list item: "
280
  msgstr ""
281
 
282
+ #: admin.inc.php:337
283
  #, fuzzy
284
  msgid "HTML to display after each list item: "
285
  msgstr "Фармат адлюстравання колькасці праглядаў:"
286
 
287
+ #: admin.inc.php:340
288
  msgid "HTML to display after the list of posts: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:343
292
  msgid "Post thumbnail options:"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:345
296
  msgid "Location of post thumbnail:"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:349
300
  #, fuzzy
301
  msgid "Display thumbnails inline with posts, before title"
302
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
303
 
304
+ #: admin.inc.php:353
305
  #, fuzzy
306
  msgid "Display thumbnails inline with posts, after title"
307
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
308
 
309
+ #: admin.inc.php:357
310
  msgid "Display only thumbnails, no text"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:361
314
  msgid "Do not display thumbnails, only text."
315
  msgstr ""
316
 
317
+ #: admin.inc.php:365
318
  msgid "Width of the thumbnail: "
319
  msgstr ""
320
 
321
+ #: admin.inc.php:368
322
  msgid "Height of the thumbnail: "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:371
326
  msgid "Style attributes / Width and Height HTML attributes:"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:375
330
  msgid ""
331
  "Style attributes are used for width and height. <code>style=\"max-width:"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:379
335
  msgid ""
336
  "HTML width and height attributes are used for width and height. <code>width="
337
  "\""
338
  msgstr ""
339
 
340
+ #: admin.inc.php:383
341
  msgid "Use timthumb to generate thumbnails? "
342
  msgstr ""
343
 
347
  "\">timthumb</a> will be used to generate thumbnails"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:389
351
  msgid "Post thumbnail meta field name: "
352
  msgstr ""
353
 
354
+ #: admin.inc.php:392
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:395
361
  msgid ""
362
  "If the postmeta is not set, then should the plugin extract the first image "
363
  "from the post?"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:398
367
  msgid ""
368
  "This could slow down the loading of your page if the first image in the "
369
  "related posts is large in file-size"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:401
373
  msgid "Use default thumbnail? "
374
  msgstr ""
375
 
376
+ #: admin.inc.php:404
377
  msgid ""
378
  "If checked, when no thumbnail is found, show a default one from the URL "
379
  "below. If not checked and no thumbnail is found, no image will be shown."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:407
383
  msgid "Default thumbnail: "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:410
387
  msgid ""
388
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
389
  "then it will check the meta field. If this is not available, then it will "
390
  "show the default image as specified above"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:417
394
  msgid "Custom Styles"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:420
398
  msgid "Custom CSS to add to header:"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:423
402
  msgid ""
403
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
404
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
405
  "available CSS classes to style."
406
  msgstr ""
407
 
408
+ #: admin.inc.php:430
409
  msgid "Maintenance"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:434
413
  msgid ""
414
  "Over time the Daily Top 10 database grows in size, which reduces the "
415
  "performance of the plugin. Cleaning the database at regular intervals could "
416
  "improve performance, especially on high traffic blogs."
417
  msgstr ""
418
 
419
+ #: admin.inc.php:435
420
  msgid ""
421
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
422
  "everytime the job is rescheduled (i.e. you change the settings below). This "
423
  "causes the daily posts table to reset."
424
  msgstr ""
425
 
426
+ #: admin.inc.php:438
427
  msgid "Enable scheduled maintenance of daily tables:"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:442
431
  msgid "Time to run maintenance"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:445
435
  msgid "How often should the maintenance be run:"
436
  msgstr ""
437
 
438
+ #: admin.inc.php:449
439
  msgid "Daily"
440
  msgstr ""
441
 
442
+ #: admin.inc.php:453
443
  msgid "Weekly"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:457
447
  msgid "Fortnightly"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:461
451
  msgid "Monthly"
452
  msgstr ""
453
 
454
+ #: admin.inc.php:470
455
  msgid "The cron job has been scheduled. Maintenance will run "
456
  msgstr ""
457
 
458
+ #: admin.inc.php:475
459
  msgid "The cron job is missing. Please resave this page to add the job"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:480
463
  msgid "Maintenance is turned off"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:488
467
  #, fuzzy
468
  msgid "Save Options"
469
  msgstr "Налады ўбудовы:"
470
 
471
+ #: admin.inc.php:489
472
  #, fuzzy
473
  msgid "Default Options"
474
  msgstr "Налады ўбудовы:"
475
 
476
+ #: admin.inc.php:489
477
  msgid "Do you want to set options to Default?"
478
  msgstr "Скінуць налады ўбудовы?"
479
 
480
+ #: admin.inc.php:493
481
  msgid "Reset count"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:496
485
  msgid ""
486
  "This cannot be reversed. Make sure that your database has been backed up "
487
  "before proceeding"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:499
491
  #, fuzzy
492
  msgid "Reset Popular Posts"
493
  msgstr "Папулярныя запісы"
494
 
495
+ #: admin.inc.php:499
496
  msgid "Are you sure you want to reset the popular posts?"
497
  msgstr ""
498
 
499
+ #: admin.inc.php:500
500
  #, fuzzy
501
  msgid "Reset Daily Popular Posts"
502
  msgstr "Папулярныя сёння запісы"
503
 
504
+ #: admin.inc.php:500
505
  msgid "Are you sure you want to reset the daily popular posts?"
506
  msgstr ""
507
 
508
+ #: admin.inc.php:501
509
  msgid "Clear duplicates"
510
  msgstr ""
511
 
512
+ #: admin.inc.php:501
513
  msgid "This will delete the duplicate entries in the tables. Proceed?"
514
  msgstr ""
515
 
516
+ #: admin.inc.php:544 admin.inc.php:929
517
  msgid "Popular Posts"
518
  msgstr "Папулярныя запісы"
519
 
520
+ #: admin.inc.php:544 admin.inc.php:631
521
  msgid "Daily Popular Posts"
522
  msgstr "Папулярныя сёння запісы"
523
 
524
+ #: admin.inc.php:572
525
  #, fuzzy
526
  msgid "Support the development"
527
  msgstr "Падтрымаеце стваральніка ўбудовы"
528
 
529
+ #: admin.inc.php:580
530
  msgid "Enter amount in USD: "
531
  msgstr ""
532
 
533
+ #: admin.inc.php:584
534
  msgid "Send your donation to the author of"
535
  msgstr ""
536
 
537
+ #: admin.inc.php:590
538
  msgid "Follow us"
539
  msgstr ""
540
 
541
+ #: admin.inc.php:596
542
  msgid "Quick Links"
543
  msgstr ""
544
 
545
+ #: admin.inc.php:598
546
  msgid "Top 10 plugin page"
547
  msgstr ""
548
 
549
+ #: admin.inc.php:599
550
  msgid "Other plugins"
551
  msgstr ""
552
 
553
+ #: admin.inc.php:600
554
  msgid "Ajay's blog"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:601 top-10.php:1147
558
  msgid "Support"
559
  msgstr ""
560
 
561
+ #: admin.inc.php:605
562
  msgid "Recent developments"
563
  msgstr ""
564
 
565
+ #: admin.inc.php:622 admin.inc.php:625
566
  #, fuzzy
567
  msgid "Top 10 Settings"
568
  msgstr "Топ 10 запісаў"
569
 
570
+ #: admin.inc.php:622
571
  msgid "Top 10"
572
  msgstr "Топ 10 запісаў"
573
 
574
+ #: admin.inc.php:628
575
  #, fuzzy
576
  msgid "Overall Popular Posts"
577
  msgstr "Паглядзець усе Папулярныя запісы"
578
 
579
+ #: admin.inc.php:799
580
  msgid "Results"
581
  msgstr "Вынікі"
582
 
583
+ #: admin.inc.php:801 admin.inc.php:807
584
  msgid "of"
585
  msgstr "з"
586
 
587
+ #: admin.inc.php:805
588
  msgid "Page"
589
  msgstr "Старонка"
590
 
591
+ #: admin.inc.php:819
592
  msgid "View Daily Popular Posts"
593
  msgstr "Паглядзець усе Папулярныя сёння запісы"
594
 
595
+ #: admin.inc.php:822 admin.inc.php:835
596
  msgid "Results per-page:"
597
  msgstr "Вынікаў на старонку:"
598
 
599
+ #: admin.inc.php:832
600
  msgid "View Overall Popular Posts"
601
  msgstr "Паглядзець усе Папулярныя запісы"
602
 
603
+ #: admin.inc.php:861
604
  msgid "Previous"
605
  msgstr "Папярэдняя старонка"
606
 
607
+ #: admin.inc.php:889
608
  msgid "Next"
609
  msgstr "Наступная старонка"
610
 
611
+ #: admin.inc.php:930
612
  msgid "Daily Popular"
613
  msgstr "Папулярныя сёння запісы"
614
 
615
+ #: admin.inc.php:946
616
  #, fuzzy
617
  msgid "Total Views"
618
  msgstr "Усяго / Сёння праглядаў"
619
 
620
+ #: admin.inc.php:947
621
  #, fuzzy
622
  msgid "Today's Views"
623
  msgstr "Усяго / Сёння праглядаў"
624
 
625
+ #: top-10.php:415
626
+ msgid " by "
627
  msgstr ""
628
 
629
+ #: top-10.php:501
630
  msgid "Display the posts popular this week"
631
  msgstr ""
632
 
633
+ #: top-10.php:502
634
  #, fuzzy
635
  msgid "Popular Posts [Top 10]"
636
  msgstr "Папулярныя запісы"
637
 
638
+ #: top-10.php:519
639
  msgid "Title"
640
  msgstr ""
641
 
642
+ #: top-10.php:524
643
  msgid "No. of posts"
644
  msgstr ""
645
 
646
+ #: top-10.php:529
647
  msgid "Overall"
648
  msgstr ""
649
 
650
+ #: top-10.php:530
651
  msgid "Custom time period (Enter below)"
652
  msgstr ""
653
 
654
+ #: top-10.php:535
655
  msgid "Range in number of days (applies only to custom option above)"
656
  msgstr ""
657
 
658
+ #: top-10.php:540
659
  msgid " Show excerpt?"
660
  msgstr ""
661
 
662
+ #: top-10.php:545
663
  msgid " Show author?"
664
  msgstr ""
665
 
666
+ #: top-10.php:550
667
  msgid " Show date?"
668
  msgstr ""
669
 
670
+ #: top-10.php:554
671
  msgid "Thumbnail options"
672
  msgstr ""
673
 
674
+ #: top-10.php:556
675
  #, fuzzy
676
  msgid "Thumbnails inline, before title"
677
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
678
 
679
+ #: top-10.php:557
680
  #, fuzzy
681
  msgid "Thumbnails inline, after title"
682
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
683
 
684
+ #: top-10.php:558
685
  msgid "Only thumbnails, no text"
686
  msgstr ""
687
 
688
+ #: top-10.php:559
689
  msgid "No thumbnails, only text."
690
  msgstr ""
691
 
692
+ #: top-10.php:564
693
  msgid "Thumbnail height"
694
  msgstr ""
695
 
696
+ #: top-10.php:569
697
  msgid "Thumbnail width"
698
  msgstr ""
699
 
700
+ #: top-10.php:670
701
  msgid "<h3>Popular Posts</h3>"
702
  msgstr "<h3>Папулярныя запісы</h3>"
703
 
704
+ #: top-10.php:671
705
  msgid "<h3>Daily Popular</h3>"
706
  msgstr "<h3>Папулярныя сёння запісы</h3>"
707
 
708
+ #: top-10.php:672
709
  #, fuzzy
710
  msgid "No top posts yet"
711
  msgstr "Загаловак блока Папулярных запісаў:"
712
 
713
+ #: top-10.php:1113
714
  msgid "Once Weekly"
715
  msgstr ""
716
 
717
+ #: top-10.php:1114
718
  msgid "Once Fortnightly"
719
  msgstr ""
720
 
721
+ #: top-10.php:1115
722
  msgid "Once Monthly"
723
  msgstr ""
724
 
725
+ #: top-10.php:1135
726
  msgid "Settings"
727
  msgstr ""
728
 
729
+ #: top-10.php:1148
730
  msgid "Donate"
731
  msgstr ""
732
 
languages/tptn-en_US.mo CHANGED
Binary file
languages/tptn-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,128 +15,128 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr ""
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
 
77
- #: admin.inc.php:200
78
  msgid "Post types to include in results (including custom post types)"
79
  msgstr ""
80
 
81
- #: admin.inc.php:211
82
  msgid "List of post or page IDs to exclude from the results: "
83
  msgstr ""
84
 
85
- #: admin.inc.php:215
86
  msgid "Exclude Categories: "
87
  msgstr ""
88
 
89
- #: admin.inc.php:230
90
  msgid ""
91
  "Comma separated list of category slugs. The field above has an autocomplete "
92
  "so simply start typing in the starting letters and it will prompt you with "
93
  "options"
94
  msgstr ""
95
 
96
- #: admin.inc.php:235
97
  msgid "Display number of views on:"
98
  msgstr ""
99
 
100
- #: admin.inc.php:237
101
  msgid "Posts"
102
  msgstr ""
103
 
104
- #: admin.inc.php:238
105
  msgid "Pages"
106
  msgstr ""
107
 
108
- #: admin.inc.php:239
109
  msgid "Home page"
110
  msgstr ""
111
 
112
- #: admin.inc.php:240
113
  msgid "Feeds"
114
  msgstr ""
115
 
116
- #: admin.inc.php:241
117
  msgid "Category archives"
118
  msgstr ""
119
 
120
- #: admin.inc.php:242
121
  msgid "Tag archives"
122
  msgstr ""
123
 
124
- #: admin.inc.php:243
125
  msgid "Other archives"
126
  msgstr ""
127
 
128
- #: admin.inc.php:244
129
  msgid ""
130
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
131
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
132
  "you want it displayed"
133
  msgstr ""
134
 
135
- #: admin.inc.php:247
136
  msgid "Always display latest post count"
137
  msgstr ""
138
 
139
- #: admin.inc.php:249
140
  msgid ""
141
  "This option uses JavaScript and will increase your page load time. Turn this "
142
  "off if you are not using caching plugins or are OK with displaying older "
@@ -144,45 +144,45 @@ msgid ""
144
  "the options set there, but options will need to be set on this screen."
145
  msgstr ""
146
 
147
- #: admin.inc.php:252
148
  msgid "Always display latest post count in the daily lists"
149
  msgstr ""
150
 
151
- #: admin.inc.php:254
152
  msgid "This option uses JavaScript and will increase your page load time"
153
  msgstr ""
154
 
155
- #: admin.inc.php:257
156
  msgid "Track visits of authors on their own posts?"
157
  msgstr ""
158
 
159
- #: admin.inc.php:260
160
  msgid "Track visits of admins?"
161
  msgstr ""
162
 
163
- #: admin.inc.php:263
164
  msgid "Display page views on Posts > All Posts in Admin"
165
  msgstr ""
166
 
167
- #: admin.inc.php:266
168
  msgid "Link to Top 10 plugin page"
169
  msgstr ""
170
 
171
- #: admin.inc.php:268
172
  msgid ""
173
  "A link to the plugin is added as an extra list item to the list of popular "
174
  "posts"
175
  msgstr ""
176
 
177
- #: admin.inc.php:275
178
  msgid "Output Options"
179
  msgstr ""
180
 
181
- #: admin.inc.php:278
182
  msgid "Format to display the count in: "
183
  msgstr ""
184
 
185
- #: admin.inc.php:280
186
  msgid ""
187
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
188
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -190,134 +190,134 @@ msgid ""
190
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
191
  msgstr ""
192
 
193
- #: admin.inc.php:283
194
  msgid "Title of popular posts: "
195
  msgstr ""
196
 
197
- #: admin.inc.php:286
198
  msgid "Title of daily popular posts: "
199
  msgstr ""
200
 
201
- #: admin.inc.php:289
202
  msgid "When there are no posts, what should be shown?"
203
  msgstr ""
204
 
205
- #: admin.inc.php:293
206
  msgid "Blank Output"
207
  msgstr ""
208
 
209
- #: admin.inc.php:297
210
  msgid "Display:"
211
  msgstr ""
212
 
213
- #: admin.inc.php:301
214
  msgid "Show post excerpt in list?"
215
  msgstr ""
216
 
217
- #: admin.inc.php:304
218
  msgid "Length of excerpt (in words): "
219
  msgstr ""
220
 
221
- #: admin.inc.php:307
222
  msgid "Show post author in list?"
223
  msgstr ""
224
 
225
- #: admin.inc.php:310
226
  msgid "Show post date in list?"
227
  msgstr ""
228
 
229
- #: admin.inc.php:313
230
  msgid "Limit post title length (in characters)"
231
  msgstr ""
232
 
233
- #: admin.inc.php:316
234
  msgid "Display number of page views in popular lists?"
235
  msgstr ""
236
 
237
- #: admin.inc.php:319
238
  msgid "Open links in new window"
239
  msgstr ""
240
 
241
- #: admin.inc.php:322
242
  msgid "Add nofollow attribute to links in the list"
243
  msgstr ""
244
 
245
- #: admin.inc.php:325
246
  msgid "Exclude display of related posts on these posts / pages"
247
  msgstr ""
248
 
249
- #: admin.inc.php:328
250
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
251
  msgstr ""
252
 
253
- #: admin.inc.php:331
254
  msgid "Customize the output:"
255
  msgstr ""
256
 
257
- #: admin.inc.php:333
258
  msgid "HTML to display before the list of posts: "
259
  msgstr ""
260
 
261
- #: admin.inc.php:336
262
  msgid "HTML to display before each list item: "
263
  msgstr ""
264
 
265
- #: admin.inc.php:339
266
  msgid "HTML to display after each list item: "
267
  msgstr ""
268
 
269
- #: admin.inc.php:342
270
  msgid "HTML to display after the list of posts: "
271
  msgstr ""
272
 
273
- #: admin.inc.php:345
274
  msgid "Post thumbnail options:"
275
  msgstr ""
276
 
277
- #: admin.inc.php:347
278
  msgid "Location of post thumbnail:"
279
  msgstr ""
280
 
281
- #: admin.inc.php:351
282
  msgid "Display thumbnails inline with posts, before title"
283
  msgstr ""
284
 
285
- #: admin.inc.php:355
286
  msgid "Display thumbnails inline with posts, after title"
287
  msgstr ""
288
 
289
- #: admin.inc.php:359
290
  msgid "Display only thumbnails, no text"
291
  msgstr ""
292
 
293
- #: admin.inc.php:363
294
  msgid "Do not display thumbnails, only text."
295
  msgstr ""
296
 
297
- #: admin.inc.php:367
298
  msgid "Width of the thumbnail: "
299
  msgstr ""
300
 
301
- #: admin.inc.php:370
302
  msgid "Height of the thumbnail: "
303
  msgstr ""
304
 
305
- #: admin.inc.php:373
306
  msgid "Style attributes / Width and Height HTML attributes:"
307
  msgstr ""
308
 
309
- #: admin.inc.php:377
310
  msgid ""
311
  "Style attributes are used for width and height. <code>style=\"max-width:"
312
  msgstr ""
313
 
314
- #: admin.inc.php:381
315
  msgid ""
316
  "HTML width and height attributes are used for width and height. <code>width="
317
  "\""
318
  msgstr ""
319
 
320
- #: admin.inc.php:385
321
  msgid "Use timthumb to generate thumbnails? "
322
  msgstr ""
323
 
@@ -327,372 +327,372 @@ msgid ""
327
  "\">timthumb</a> will be used to generate thumbnails"
328
  msgstr ""
329
 
330
- #: admin.inc.php:388
331
  msgid "Post thumbnail meta field name: "
332
  msgstr ""
333
 
334
- #: admin.inc.php:389
335
  msgid ""
336
  "The value of this field should contain the image source and is set in the "
337
  "<em>Add New Post</em> screen"
338
  msgstr ""
339
 
340
- #: admin.inc.php:391
341
  msgid ""
342
  "If the postmeta is not set, then should the plugin extract the first image "
343
  "from the post?"
344
  msgstr ""
345
 
346
- #: admin.inc.php:392
347
  msgid ""
348
  "This could slow down the loading of your page if the first image in the "
349
  "related posts is large in file-size"
350
  msgstr ""
351
 
352
- #: admin.inc.php:394
353
  msgid "Use default thumbnail? "
354
  msgstr ""
355
 
356
- #: admin.inc.php:395
357
  msgid ""
358
  "If checked, when no thumbnail is found, show a default one from the URL "
359
  "below. If not checked and no thumbnail is found, no image will be shown."
360
  msgstr ""
361
 
362
- #: admin.inc.php:397
363
  msgid "Default thumbnail: "
364
  msgstr ""
365
 
366
- #: admin.inc.php:398
367
  msgid ""
368
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
369
  "then it will check the meta field. If this is not available, then it will "
370
  "show the default image as specified above"
371
  msgstr ""
372
 
373
- #: admin.inc.php:404
374
  msgid "Custom Styles"
375
  msgstr ""
376
 
377
- #: admin.inc.php:407
378
  msgid "Custom CSS to add to header:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:410
382
  msgid ""
383
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
384
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
385
  "available CSS classes to style."
386
  msgstr ""
387
 
388
- #: admin.inc.php:417
389
  msgid "Maintenance"
390
  msgstr ""
391
 
392
- #: admin.inc.php:421
393
  msgid ""
394
  "Over time the Daily Top 10 database grows in size, which reduces the "
395
  "performance of the plugin. Cleaning the database at regular intervals could "
396
  "improve performance, especially on high traffic blogs."
397
  msgstr ""
398
 
399
- #: admin.inc.php:422
400
  msgid ""
401
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
402
  "everytime the job is rescheduled (i.e. you change the settings below). This "
403
  "causes the daily posts table to reset."
404
  msgstr ""
405
 
406
- #: admin.inc.php:425
407
  msgid "Enable scheduled maintenance of daily tables:"
408
  msgstr ""
409
 
410
- #: admin.inc.php:429
411
  msgid "Time to run maintenance"
412
  msgstr ""
413
 
414
- #: admin.inc.php:432
415
  msgid "How often should the maintenance be run:"
416
  msgstr ""
417
 
418
- #: admin.inc.php:436
419
  msgid "Daily"
420
  msgstr ""
421
 
422
- #: admin.inc.php:440
423
  msgid "Weekly"
424
  msgstr ""
425
 
426
- #: admin.inc.php:444
427
  msgid "Fortnightly"
428
  msgstr ""
429
 
430
- #: admin.inc.php:448
431
  msgid "Monthly"
432
  msgstr ""
433
 
434
- #: admin.inc.php:457
435
  msgid "The cron job has been scheduled. Maintenance will run "
436
  msgstr ""
437
 
438
- #: admin.inc.php:462
439
  msgid "The cron job is missing. Please resave this page to add the job"
440
  msgstr ""
441
 
442
- #: admin.inc.php:467
443
  msgid "Maintenance is turned off"
444
  msgstr ""
445
 
446
- #: admin.inc.php:475
447
  msgid "Save Options"
448
  msgstr ""
449
 
450
- #: admin.inc.php:476
451
  msgid "Default Options"
452
  msgstr ""
453
 
454
- #: admin.inc.php:476
455
  msgid "Do you want to set options to Default?"
456
  msgstr ""
457
 
458
- #: admin.inc.php:480
459
  msgid "Reset count"
460
  msgstr ""
461
 
462
- #: admin.inc.php:483
463
  msgid ""
464
  "This cannot be reversed. Make sure that your database has been backed up "
465
  "before proceeding"
466
  msgstr ""
467
 
468
- #: admin.inc.php:486
469
  msgid "Reset Popular Posts"
470
  msgstr ""
471
 
472
- #: admin.inc.php:486
473
  msgid "Are you sure you want to reset the popular posts?"
474
  msgstr ""
475
 
476
- #: admin.inc.php:487
477
  msgid "Reset Daily Popular Posts"
478
  msgstr ""
479
 
480
- #: admin.inc.php:487
481
  msgid "Are you sure you want to reset the daily popular posts?"
482
  msgstr ""
483
 
484
- #: admin.inc.php:488
485
  msgid "Clear duplicates"
486
  msgstr ""
487
 
488
- #: admin.inc.php:488
489
  msgid "This will delete the duplicate entries in the tables. Proceed?"
490
  msgstr ""
491
 
492
- #: admin.inc.php:531 admin.inc.php:906
493
  msgid "Popular Posts"
494
  msgstr ""
495
 
496
- #: admin.inc.php:531 admin.inc.php:618
497
  msgid "Daily Popular Posts"
498
  msgstr ""
499
 
500
- #: admin.inc.php:559
501
  msgid "Support the development"
502
  msgstr ""
503
 
504
- #: admin.inc.php:567
505
  msgid "Enter amount in USD: "
506
  msgstr ""
507
 
508
- #: admin.inc.php:571
509
  msgid "Send your donation to the author of"
510
  msgstr ""
511
 
512
- #: admin.inc.php:577
513
  msgid "Follow us"
514
  msgstr ""
515
 
516
- #: admin.inc.php:583
517
  msgid "Quick Links"
518
  msgstr ""
519
 
520
- #: admin.inc.php:585
521
  msgid "Top 10 plugin page"
522
  msgstr ""
523
 
524
- #: admin.inc.php:586
525
  msgid "Other plugins"
526
  msgstr ""
527
 
528
- #: admin.inc.php:587
529
  msgid "Ajay's blog"
530
  msgstr ""
531
 
532
- #: admin.inc.php:588 top-10.php:1094
533
  msgid "Support"
534
  msgstr ""
535
 
536
- #: admin.inc.php:592
537
  msgid "Recent developments"
538
  msgstr ""
539
 
540
- #: admin.inc.php:609 admin.inc.php:612
541
  msgid "Top 10 Settings"
542
  msgstr ""
543
 
544
- #: admin.inc.php:609
545
  msgid "Top 10"
546
  msgstr ""
547
 
548
- #: admin.inc.php:615
549
  msgid "Overall Popular Posts"
550
  msgstr ""
551
 
552
- #: admin.inc.php:786
553
  msgid "Results"
554
  msgstr ""
555
 
556
- #: admin.inc.php:788 admin.inc.php:794
557
  msgid "of"
558
  msgstr ""
559
 
560
- #: admin.inc.php:792
561
  msgid "Page"
562
  msgstr ""
563
 
564
- #: admin.inc.php:806
565
  msgid "View Daily Popular Posts"
566
  msgstr ""
567
 
568
- #: admin.inc.php:809 admin.inc.php:822
569
  msgid "Results per-page:"
570
  msgstr ""
571
 
572
- #: admin.inc.php:819
573
  msgid "View Overall Popular Posts"
574
  msgstr ""
575
 
576
- #: admin.inc.php:848
577
  msgid "Previous"
578
  msgstr ""
579
 
580
- #: admin.inc.php:866
581
  msgid "Next"
582
  msgstr ""
583
 
584
- #: admin.inc.php:907
585
  msgid "Daily Popular"
586
  msgstr ""
587
 
588
- #: admin.inc.php:923
589
  msgid "Total Views"
590
  msgstr ""
591
 
592
- #: admin.inc.php:924
593
  msgid "Today's Views"
594
  msgstr ""
595
 
596
- #: top-10.php:366
597
- msgid " Posted by "
598
  msgstr ""
599
 
600
- #: top-10.php:448
601
  msgid "Display the posts popular this week"
602
  msgstr ""
603
 
604
- #: top-10.php:449
605
  msgid "Popular Posts [Top 10]"
606
  msgstr ""
607
 
608
- #: top-10.php:466
609
  msgid "Title"
610
  msgstr ""
611
 
612
- #: top-10.php:471
613
  msgid "No. of posts"
614
  msgstr ""
615
 
616
- #: top-10.php:476
617
  msgid "Overall"
618
  msgstr ""
619
 
620
- #: top-10.php:477
621
  msgid "Custom time period (Enter below)"
622
  msgstr ""
623
 
624
- #: top-10.php:482
625
  msgid "Range in number of days (applies only to custom option above)"
626
  msgstr ""
627
 
628
- #: top-10.php:487
629
  msgid " Show excerpt?"
630
  msgstr ""
631
 
632
- #: top-10.php:492
633
  msgid " Show author?"
634
  msgstr ""
635
 
636
- #: top-10.php:497
637
  msgid " Show date?"
638
  msgstr ""
639
 
640
- #: top-10.php:501
641
  msgid "Thumbnail options"
642
  msgstr ""
643
 
644
- #: top-10.php:503
645
  msgid "Thumbnails inline, before title"
646
  msgstr ""
647
 
648
- #: top-10.php:504
649
  msgid "Thumbnails inline, after title"
650
  msgstr ""
651
 
652
- #: top-10.php:505
653
  msgid "Only thumbnails, no text"
654
  msgstr ""
655
 
656
- #: top-10.php:506
657
  msgid "No thumbnails, only text."
658
  msgstr ""
659
 
660
- #: top-10.php:511
661
  msgid "Thumbnail height"
662
  msgstr ""
663
 
664
- #: top-10.php:516
665
  msgid "Thumbnail width"
666
  msgstr ""
667
 
668
- #: top-10.php:617
669
  msgid "<h3>Popular Posts</h3>"
670
  msgstr ""
671
 
672
- #: top-10.php:618
673
  msgid "<h3>Daily Popular</h3>"
674
  msgstr ""
675
 
676
- #: top-10.php:619
677
  msgid "No top posts yet"
678
  msgstr ""
679
 
680
- #: top-10.php:1060
681
  msgid "Once Weekly"
682
  msgstr ""
683
 
684
- #: top-10.php:1061
685
  msgid "Once Fortnightly"
686
  msgstr ""
687
 
688
- #: top-10.php:1062
689
  msgid "Once Monthly"
690
  msgstr ""
691
 
692
- #: top-10.php:1082
693
  msgid "Settings"
694
  msgstr ""
695
 
696
- #: top-10.php:1095
697
  msgid "Donate"
698
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr ""
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
 
77
+ #: admin.inc.php:198
78
  msgid "Post types to include in results (including custom post types)"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:209
82
  msgid "List of post or page IDs to exclude from the results: "
83
  msgstr ""
84
 
85
+ #: admin.inc.php:213
86
  msgid "Exclude Categories: "
87
  msgstr ""
88
 
89
+ #: admin.inc.php:228
90
  msgid ""
91
  "Comma separated list of category slugs. The field above has an autocomplete "
92
  "so simply start typing in the starting letters and it will prompt you with "
93
  "options"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:233
97
  msgid "Display number of views on:"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:235
101
  msgid "Posts"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:236
105
  msgid "Pages"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:237
109
  msgid "Home page"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:238
113
  msgid "Feeds"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:239
117
  msgid "Category archives"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:240
121
  msgid "Tag archives"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:241
125
  msgid "Other archives"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:242
129
  msgid ""
130
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
131
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
132
  "you want it displayed"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:245
136
  msgid "Always display latest post count"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:247
140
  msgid ""
141
  "This option uses JavaScript and will increase your page load time. Turn this "
142
  "off if you are not using caching plugins or are OK with displaying older "
144
  "the options set there, but options will need to be set on this screen."
145
  msgstr ""
146
 
147
+ #: admin.inc.php:250
148
  msgid "Always display latest post count in the daily lists"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:252
152
  msgid "This option uses JavaScript and will increase your page load time"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:255
156
  msgid "Track visits of authors on their own posts?"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:258
160
  msgid "Track visits of admins?"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:261
164
  msgid "Display page views on Posts > All Posts in Admin"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:264
168
  msgid "Link to Top 10 plugin page"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:266
172
  msgid ""
173
  "A link to the plugin is added as an extra list item to the list of popular "
174
  "posts"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:273
178
  msgid "Output Options"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:276
182
  msgid "Format to display the count in: "
183
  msgstr ""
184
 
185
+ #: admin.inc.php:278
186
  msgid ""
187
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
188
  "%</code> to display the daily count and <code>%overallcount%</code> to "
190
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:281
194
  msgid "Title of popular posts: "
195
  msgstr ""
196
 
197
+ #: admin.inc.php:284
198
  msgid "Title of daily popular posts: "
199
  msgstr ""
200
 
201
+ #: admin.inc.php:287
202
  msgid "When there are no posts, what should be shown?"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:291
206
  msgid "Blank Output"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:295
210
  msgid "Display:"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:299
214
  msgid "Show post excerpt in list?"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:302
218
  msgid "Length of excerpt (in words): "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:305
222
  msgid "Show post author in list?"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:308
226
  msgid "Show post date in list?"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:311
230
  msgid "Limit post title length (in characters)"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:314
234
  msgid "Display number of page views in popular lists?"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:317
238
  msgid "Open links in new window"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:320
242
  msgid "Add nofollow attribute to links in the list"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:323
246
  msgid "Exclude display of related posts on these posts / pages"
247
  msgstr ""
248
 
249
+ #: admin.inc.php:326
250
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
251
  msgstr ""
252
 
253
+ #: admin.inc.php:329
254
  msgid "Customize the output:"
255
  msgstr ""
256
 
257
+ #: admin.inc.php:331
258
  msgid "HTML to display before the list of posts: "
259
  msgstr ""
260
 
261
+ #: admin.inc.php:334
262
  msgid "HTML to display before each list item: "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:337
266
  msgid "HTML to display after each list item: "
267
  msgstr ""
268
 
269
+ #: admin.inc.php:340
270
  msgid "HTML to display after the list of posts: "
271
  msgstr ""
272
 
273
+ #: admin.inc.php:343
274
  msgid "Post thumbnail options:"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:345
278
  msgid "Location of post thumbnail:"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:349
282
  msgid "Display thumbnails inline with posts, before title"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:353
286
  msgid "Display thumbnails inline with posts, after title"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:357
290
  msgid "Display only thumbnails, no text"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:361
294
  msgid "Do not display thumbnails, only text."
295
  msgstr ""
296
 
297
+ #: admin.inc.php:365
298
  msgid "Width of the thumbnail: "
299
  msgstr ""
300
 
301
+ #: admin.inc.php:368
302
  msgid "Height of the thumbnail: "
303
  msgstr ""
304
 
305
+ #: admin.inc.php:371
306
  msgid "Style attributes / Width and Height HTML attributes:"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:375
310
  msgid ""
311
  "Style attributes are used for width and height. <code>style=\"max-width:"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:379
315
  msgid ""
316
  "HTML width and height attributes are used for width and height. <code>width="
317
  "\""
318
  msgstr ""
319
 
320
+ #: admin.inc.php:383
321
  msgid "Use timthumb to generate thumbnails? "
322
  msgstr ""
323
 
327
  "\">timthumb</a> will be used to generate thumbnails"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:389
331
  msgid "Post thumbnail meta field name: "
332
  msgstr ""
333
 
334
+ #: admin.inc.php:392
335
  msgid ""
336
  "The value of this field should contain the image source and is set in the "
337
  "<em>Add New Post</em> screen"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:395
341
  msgid ""
342
  "If the postmeta is not set, then should the plugin extract the first image "
343
  "from the post?"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:398
347
  msgid ""
348
  "This could slow down the loading of your page if the first image in the "
349
  "related posts is large in file-size"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:401
353
  msgid "Use default thumbnail? "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:404
357
  msgid ""
358
  "If checked, when no thumbnail is found, show a default one from the URL "
359
  "below. If not checked and no thumbnail is found, no image will be shown."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:407
363
  msgid "Default thumbnail: "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:410
367
  msgid ""
368
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
369
  "then it will check the meta field. If this is not available, then it will "
370
  "show the default image as specified above"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:417
374
  msgid "Custom Styles"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:420
378
  msgid "Custom CSS to add to header:"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:423
382
  msgid ""
383
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
384
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
385
  "available CSS classes to style."
386
  msgstr ""
387
 
388
+ #: admin.inc.php:430
389
  msgid "Maintenance"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:434
393
  msgid ""
394
  "Over time the Daily Top 10 database grows in size, which reduces the "
395
  "performance of the plugin. Cleaning the database at regular intervals could "
396
  "improve performance, especially on high traffic blogs."
397
  msgstr ""
398
 
399
+ #: admin.inc.php:435
400
  msgid ""
401
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
402
  "everytime the job is rescheduled (i.e. you change the settings below). This "
403
  "causes the daily posts table to reset."
404
  msgstr ""
405
 
406
+ #: admin.inc.php:438
407
  msgid "Enable scheduled maintenance of daily tables:"
408
  msgstr ""
409
 
410
+ #: admin.inc.php:442
411
  msgid "Time to run maintenance"
412
  msgstr ""
413
 
414
+ #: admin.inc.php:445
415
  msgid "How often should the maintenance be run:"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:449
419
  msgid "Daily"
420
  msgstr ""
421
 
422
+ #: admin.inc.php:453
423
  msgid "Weekly"
424
  msgstr ""
425
 
426
+ #: admin.inc.php:457
427
  msgid "Fortnightly"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:461
431
  msgid "Monthly"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:470
435
  msgid "The cron job has been scheduled. Maintenance will run "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:475
439
  msgid "The cron job is missing. Please resave this page to add the job"
440
  msgstr ""
441
 
442
+ #: admin.inc.php:480
443
  msgid "Maintenance is turned off"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:488
447
  msgid "Save Options"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:489
451
  msgid "Default Options"
452
  msgstr ""
453
 
454
+ #: admin.inc.php:489
455
  msgid "Do you want to set options to Default?"
456
  msgstr ""
457
 
458
+ #: admin.inc.php:493
459
  msgid "Reset count"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:496
463
  msgid ""
464
  "This cannot be reversed. Make sure that your database has been backed up "
465
  "before proceeding"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:499
469
  msgid "Reset Popular Posts"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:499
473
  msgid "Are you sure you want to reset the popular posts?"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:500
477
  msgid "Reset Daily Popular Posts"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:500
481
  msgid "Are you sure you want to reset the daily popular posts?"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:501
485
  msgid "Clear duplicates"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:501
489
  msgid "This will delete the duplicate entries in the tables. Proceed?"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:544 admin.inc.php:929
493
  msgid "Popular Posts"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:544 admin.inc.php:631
497
  msgid "Daily Popular Posts"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:572
501
  msgid "Support the development"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:580
505
  msgid "Enter amount in USD: "
506
  msgstr ""
507
 
508
+ #: admin.inc.php:584
509
  msgid "Send your donation to the author of"
510
  msgstr ""
511
 
512
+ #: admin.inc.php:590
513
  msgid "Follow us"
514
  msgstr ""
515
 
516
+ #: admin.inc.php:596
517
  msgid "Quick Links"
518
  msgstr ""
519
 
520
+ #: admin.inc.php:598
521
  msgid "Top 10 plugin page"
522
  msgstr ""
523
 
524
+ #: admin.inc.php:599
525
  msgid "Other plugins"
526
  msgstr ""
527
 
528
+ #: admin.inc.php:600
529
  msgid "Ajay's blog"
530
  msgstr ""
531
 
532
+ #: admin.inc.php:601 top-10.php:1147
533
  msgid "Support"
534
  msgstr ""
535
 
536
+ #: admin.inc.php:605
537
  msgid "Recent developments"
538
  msgstr ""
539
 
540
+ #: admin.inc.php:622 admin.inc.php:625
541
  msgid "Top 10 Settings"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:622
545
  msgid "Top 10"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:628
549
  msgid "Overall Popular Posts"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:799
553
  msgid "Results"
554
  msgstr ""
555
 
556
+ #: admin.inc.php:801 admin.inc.php:807
557
  msgid "of"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:805
561
  msgid "Page"
562
  msgstr ""
563
 
564
+ #: admin.inc.php:819
565
  msgid "View Daily Popular Posts"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:822 admin.inc.php:835
569
  msgid "Results per-page:"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:832
573
  msgid "View Overall Popular Posts"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:861
577
  msgid "Previous"
578
  msgstr ""
579
 
580
+ #: admin.inc.php:889
581
  msgid "Next"
582
  msgstr ""
583
 
584
+ #: admin.inc.php:930
585
  msgid "Daily Popular"
586
  msgstr ""
587
 
588
+ #: admin.inc.php:946
589
  msgid "Total Views"
590
  msgstr ""
591
 
592
+ #: admin.inc.php:947
593
  msgid "Today's Views"
594
  msgstr ""
595
 
596
+ #: top-10.php:415
597
+ msgid " by "
598
  msgstr ""
599
 
600
+ #: top-10.php:501
601
  msgid "Display the posts popular this week"
602
  msgstr ""
603
 
604
+ #: top-10.php:502
605
  msgid "Popular Posts [Top 10]"
606
  msgstr ""
607
 
608
+ #: top-10.php:519
609
  msgid "Title"
610
  msgstr ""
611
 
612
+ #: top-10.php:524
613
  msgid "No. of posts"
614
  msgstr ""
615
 
616
+ #: top-10.php:529
617
  msgid "Overall"
618
  msgstr ""
619
 
620
+ #: top-10.php:530
621
  msgid "Custom time period (Enter below)"
622
  msgstr ""
623
 
624
+ #: top-10.php:535
625
  msgid "Range in number of days (applies only to custom option above)"
626
  msgstr ""
627
 
628
+ #: top-10.php:540
629
  msgid " Show excerpt?"
630
  msgstr ""
631
 
632
+ #: top-10.php:545
633
  msgid " Show author?"
634
  msgstr ""
635
 
636
+ #: top-10.php:550
637
  msgid " Show date?"
638
  msgstr ""
639
 
640
+ #: top-10.php:554
641
  msgid "Thumbnail options"
642
  msgstr ""
643
 
644
+ #: top-10.php:556
645
  msgid "Thumbnails inline, before title"
646
  msgstr ""
647
 
648
+ #: top-10.php:557
649
  msgid "Thumbnails inline, after title"
650
  msgstr ""
651
 
652
+ #: top-10.php:558
653
  msgid "Only thumbnails, no text"
654
  msgstr ""
655
 
656
+ #: top-10.php:559
657
  msgid "No thumbnails, only text."
658
  msgstr ""
659
 
660
+ #: top-10.php:564
661
  msgid "Thumbnail height"
662
  msgstr ""
663
 
664
+ #: top-10.php:569
665
  msgid "Thumbnail width"
666
  msgstr ""
667
 
668
+ #: top-10.php:670
669
  msgid "<h3>Popular Posts</h3>"
670
  msgstr ""
671
 
672
+ #: top-10.php:671
673
  msgid "<h3>Daily Popular</h3>"
674
  msgstr ""
675
 
676
+ #: top-10.php:672
677
  msgid "No top posts yet"
678
  msgstr ""
679
 
680
+ #: top-10.php:1113
681
  msgid "Once Weekly"
682
  msgstr ""
683
 
684
+ #: top-10.php:1114
685
  msgid "Once Fortnightly"
686
  msgstr ""
687
 
688
+ #: top-10.php:1115
689
  msgid "Once Monthly"
690
  msgstr ""
691
 
692
+ #: top-10.php:1135
693
  msgid "Settings"
694
  msgstr ""
695
 
696
+ #: top-10.php:1148
697
  msgid "Donate"
698
  msgstr ""
languages/tptn-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,128 +15,128 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr ""
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
 
77
- #: admin.inc.php:200
78
  msgid "Post types to include in results (including custom post types)"
79
  msgstr ""
80
 
81
- #: admin.inc.php:211
82
  msgid "List of post or page IDs to exclude from the results: "
83
  msgstr ""
84
 
85
- #: admin.inc.php:215
86
  msgid "Exclude Categories: "
87
  msgstr ""
88
 
89
- #: admin.inc.php:230
90
  msgid ""
91
  "Comma separated list of category slugs. The field above has an autocomplete "
92
  "so simply start typing in the starting letters and it will prompt you with "
93
  "options"
94
  msgstr ""
95
 
96
- #: admin.inc.php:235
97
  msgid "Display number of views on:"
98
  msgstr ""
99
 
100
- #: admin.inc.php:237
101
  msgid "Posts"
102
  msgstr ""
103
 
104
- #: admin.inc.php:238
105
  msgid "Pages"
106
  msgstr ""
107
 
108
- #: admin.inc.php:239
109
  msgid "Home page"
110
  msgstr ""
111
 
112
- #: admin.inc.php:240
113
  msgid "Feeds"
114
  msgstr ""
115
 
116
- #: admin.inc.php:241
117
  msgid "Category archives"
118
  msgstr ""
119
 
120
- #: admin.inc.php:242
121
  msgid "Tag archives"
122
  msgstr ""
123
 
124
- #: admin.inc.php:243
125
  msgid "Other archives"
126
  msgstr ""
127
 
128
- #: admin.inc.php:244
129
  msgid ""
130
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
131
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
132
  "you want it displayed"
133
  msgstr ""
134
 
135
- #: admin.inc.php:247
136
  msgid "Always display latest post count"
137
  msgstr ""
138
 
139
- #: admin.inc.php:249
140
  msgid ""
141
  "This option uses JavaScript and will increase your page load time. Turn this "
142
  "off if you are not using caching plugins or are OK with displaying older "
@@ -144,45 +144,45 @@ msgid ""
144
  "the options set there, but options will need to be set on this screen."
145
  msgstr ""
146
 
147
- #: admin.inc.php:252
148
  msgid "Always display latest post count in the daily lists"
149
  msgstr ""
150
 
151
- #: admin.inc.php:254
152
  msgid "This option uses JavaScript and will increase your page load time"
153
  msgstr ""
154
 
155
- #: admin.inc.php:257
156
  msgid "Track visits of authors on their own posts?"
157
  msgstr ""
158
 
159
- #: admin.inc.php:260
160
  msgid "Track visits of admins?"
161
  msgstr ""
162
 
163
- #: admin.inc.php:263
164
  msgid "Display page views on Posts > All Posts in Admin"
165
  msgstr ""
166
 
167
- #: admin.inc.php:266
168
  msgid "Link to Top 10 plugin page"
169
  msgstr ""
170
 
171
- #: admin.inc.php:268
172
  msgid ""
173
  "A link to the plugin is added as an extra list item to the list of popular "
174
  "posts"
175
  msgstr ""
176
 
177
- #: admin.inc.php:275
178
  msgid "Output Options"
179
  msgstr ""
180
 
181
- #: admin.inc.php:278
182
  msgid "Format to display the count in: "
183
  msgstr ""
184
 
185
- #: admin.inc.php:280
186
  msgid ""
187
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
188
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -190,134 +190,134 @@ msgid ""
190
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
191
  msgstr ""
192
 
193
- #: admin.inc.php:283
194
  msgid "Title of popular posts: "
195
  msgstr ""
196
 
197
- #: admin.inc.php:286
198
  msgid "Title of daily popular posts: "
199
  msgstr ""
200
 
201
- #: admin.inc.php:289
202
  msgid "When there are no posts, what should be shown?"
203
  msgstr ""
204
 
205
- #: admin.inc.php:293
206
  msgid "Blank Output"
207
  msgstr ""
208
 
209
- #: admin.inc.php:297
210
  msgid "Display:"
211
  msgstr ""
212
 
213
- #: admin.inc.php:301
214
  msgid "Show post excerpt in list?"
215
  msgstr ""
216
 
217
- #: admin.inc.php:304
218
  msgid "Length of excerpt (in words): "
219
  msgstr ""
220
 
221
- #: admin.inc.php:307
222
  msgid "Show post author in list?"
223
  msgstr ""
224
 
225
- #: admin.inc.php:310
226
  msgid "Show post date in list?"
227
  msgstr ""
228
 
229
- #: admin.inc.php:313
230
  msgid "Limit post title length (in characters)"
231
  msgstr ""
232
 
233
- #: admin.inc.php:316
234
  msgid "Display number of page views in popular lists?"
235
  msgstr ""
236
 
237
- #: admin.inc.php:319
238
  msgid "Open links in new window"
239
  msgstr ""
240
 
241
- #: admin.inc.php:322
242
  msgid "Add nofollow attribute to links in the list"
243
  msgstr ""
244
 
245
- #: admin.inc.php:325
246
  msgid "Exclude display of related posts on these posts / pages"
247
  msgstr ""
248
 
249
- #: admin.inc.php:328
250
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
251
  msgstr ""
252
 
253
- #: admin.inc.php:331
254
  msgid "Customize the output:"
255
  msgstr ""
256
 
257
- #: admin.inc.php:333
258
  msgid "HTML to display before the list of posts: "
259
  msgstr ""
260
 
261
- #: admin.inc.php:336
262
  msgid "HTML to display before each list item: "
263
  msgstr ""
264
 
265
- #: admin.inc.php:339
266
  msgid "HTML to display after each list item: "
267
  msgstr ""
268
 
269
- #: admin.inc.php:342
270
  msgid "HTML to display after the list of posts: "
271
  msgstr ""
272
 
273
- #: admin.inc.php:345
274
  msgid "Post thumbnail options:"
275
  msgstr ""
276
 
277
- #: admin.inc.php:347
278
  msgid "Location of post thumbnail:"
279
  msgstr ""
280
 
281
- #: admin.inc.php:351
282
  msgid "Display thumbnails inline with posts, before title"
283
  msgstr ""
284
 
285
- #: admin.inc.php:355
286
  msgid "Display thumbnails inline with posts, after title"
287
  msgstr ""
288
 
289
- #: admin.inc.php:359
290
  msgid "Display only thumbnails, no text"
291
  msgstr ""
292
 
293
- #: admin.inc.php:363
294
  msgid "Do not display thumbnails, only text."
295
  msgstr ""
296
 
297
- #: admin.inc.php:367
298
  msgid "Width of the thumbnail: "
299
  msgstr ""
300
 
301
- #: admin.inc.php:370
302
  msgid "Height of the thumbnail: "
303
  msgstr ""
304
 
305
- #: admin.inc.php:373
306
  msgid "Style attributes / Width and Height HTML attributes:"
307
  msgstr ""
308
 
309
- #: admin.inc.php:377
310
  msgid ""
311
  "Style attributes are used for width and height. <code>style=\"max-width:"
312
  msgstr ""
313
 
314
- #: admin.inc.php:381
315
  msgid ""
316
  "HTML width and height attributes are used for width and height. <code>width="
317
  "\""
318
  msgstr ""
319
 
320
- #: admin.inc.php:385
321
  msgid "Use timthumb to generate thumbnails? "
322
  msgstr ""
323
 
@@ -327,372 +327,372 @@ msgid ""
327
  "\">timthumb</a> will be used to generate thumbnails"
328
  msgstr ""
329
 
330
- #: admin.inc.php:388
331
  msgid "Post thumbnail meta field name: "
332
  msgstr ""
333
 
334
- #: admin.inc.php:389
335
  msgid ""
336
  "The value of this field should contain the image source and is set in the "
337
  "<em>Add New Post</em> screen"
338
  msgstr ""
339
 
340
- #: admin.inc.php:391
341
  msgid ""
342
  "If the postmeta is not set, then should the plugin extract the first image "
343
  "from the post?"
344
  msgstr ""
345
 
346
- #: admin.inc.php:392
347
  msgid ""
348
  "This could slow down the loading of your page if the first image in the "
349
  "related posts is large in file-size"
350
  msgstr ""
351
 
352
- #: admin.inc.php:394
353
  msgid "Use default thumbnail? "
354
  msgstr ""
355
 
356
- #: admin.inc.php:395
357
  msgid ""
358
  "If checked, when no thumbnail is found, show a default one from the URL "
359
  "below. If not checked and no thumbnail is found, no image will be shown."
360
  msgstr ""
361
 
362
- #: admin.inc.php:397
363
  msgid "Default thumbnail: "
364
  msgstr ""
365
 
366
- #: admin.inc.php:398
367
  msgid ""
368
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
369
  "then it will check the meta field. If this is not available, then it will "
370
  "show the default image as specified above"
371
  msgstr ""
372
 
373
- #: admin.inc.php:404
374
  msgid "Custom Styles"
375
  msgstr ""
376
 
377
- #: admin.inc.php:407
378
  msgid "Custom CSS to add to header:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:410
382
  msgid ""
383
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
384
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
385
  "available CSS classes to style."
386
  msgstr ""
387
 
388
- #: admin.inc.php:417
389
  msgid "Maintenance"
390
  msgstr ""
391
 
392
- #: admin.inc.php:421
393
  msgid ""
394
  "Over time the Daily Top 10 database grows in size, which reduces the "
395
  "performance of the plugin. Cleaning the database at regular intervals could "
396
  "improve performance, especially on high traffic blogs."
397
  msgstr ""
398
 
399
- #: admin.inc.php:422
400
  msgid ""
401
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
402
  "everytime the job is rescheduled (i.e. you change the settings below). This "
403
  "causes the daily posts table to reset."
404
  msgstr ""
405
 
406
- #: admin.inc.php:425
407
  msgid "Enable scheduled maintenance of daily tables:"
408
  msgstr ""
409
 
410
- #: admin.inc.php:429
411
  msgid "Time to run maintenance"
412
  msgstr ""
413
 
414
- #: admin.inc.php:432
415
  msgid "How often should the maintenance be run:"
416
  msgstr ""
417
 
418
- #: admin.inc.php:436
419
  msgid "Daily"
420
  msgstr ""
421
 
422
- #: admin.inc.php:440
423
  msgid "Weekly"
424
  msgstr ""
425
 
426
- #: admin.inc.php:444
427
  msgid "Fortnightly"
428
  msgstr ""
429
 
430
- #: admin.inc.php:448
431
  msgid "Monthly"
432
  msgstr ""
433
 
434
- #: admin.inc.php:457
435
  msgid "The cron job has been scheduled. Maintenance will run "
436
  msgstr ""
437
 
438
- #: admin.inc.php:462
439
  msgid "The cron job is missing. Please resave this page to add the job"
440
  msgstr ""
441
 
442
- #: admin.inc.php:467
443
  msgid "Maintenance is turned off"
444
  msgstr ""
445
 
446
- #: admin.inc.php:475
447
  msgid "Save Options"
448
  msgstr ""
449
 
450
- #: admin.inc.php:476
451
  msgid "Default Options"
452
  msgstr ""
453
 
454
- #: admin.inc.php:476
455
  msgid "Do you want to set options to Default?"
456
  msgstr ""
457
 
458
- #: admin.inc.php:480
459
  msgid "Reset count"
460
  msgstr ""
461
 
462
- #: admin.inc.php:483
463
  msgid ""
464
  "This cannot be reversed. Make sure that your database has been backed up "
465
  "before proceeding"
466
  msgstr ""
467
 
468
- #: admin.inc.php:486
469
  msgid "Reset Popular Posts"
470
  msgstr ""
471
 
472
- #: admin.inc.php:486
473
  msgid "Are you sure you want to reset the popular posts?"
474
  msgstr ""
475
 
476
- #: admin.inc.php:487
477
  msgid "Reset Daily Popular Posts"
478
  msgstr ""
479
 
480
- #: admin.inc.php:487
481
  msgid "Are you sure you want to reset the daily popular posts?"
482
  msgstr ""
483
 
484
- #: admin.inc.php:488
485
  msgid "Clear duplicates"
486
  msgstr ""
487
 
488
- #: admin.inc.php:488
489
  msgid "This will delete the duplicate entries in the tables. Proceed?"
490
  msgstr ""
491
 
492
- #: admin.inc.php:531 admin.inc.php:906
493
  msgid "Popular Posts"
494
  msgstr ""
495
 
496
- #: admin.inc.php:531 admin.inc.php:618
497
  msgid "Daily Popular Posts"
498
  msgstr ""
499
 
500
- #: admin.inc.php:559
501
  msgid "Support the development"
502
  msgstr ""
503
 
504
- #: admin.inc.php:567
505
  msgid "Enter amount in USD: "
506
  msgstr ""
507
 
508
- #: admin.inc.php:571
509
  msgid "Send your donation to the author of"
510
  msgstr ""
511
 
512
- #: admin.inc.php:577
513
  msgid "Follow us"
514
  msgstr ""
515
 
516
- #: admin.inc.php:583
517
  msgid "Quick Links"
518
  msgstr ""
519
 
520
- #: admin.inc.php:585
521
  msgid "Top 10 plugin page"
522
  msgstr ""
523
 
524
- #: admin.inc.php:586
525
  msgid "Other plugins"
526
  msgstr ""
527
 
528
- #: admin.inc.php:587
529
  msgid "Ajay's blog"
530
  msgstr ""
531
 
532
- #: admin.inc.php:588 top-10.php:1094
533
  msgid "Support"
534
  msgstr ""
535
 
536
- #: admin.inc.php:592
537
  msgid "Recent developments"
538
  msgstr ""
539
 
540
- #: admin.inc.php:609 admin.inc.php:612
541
  msgid "Top 10 Settings"
542
  msgstr ""
543
 
544
- #: admin.inc.php:609
545
  msgid "Top 10"
546
  msgstr ""
547
 
548
- #: admin.inc.php:615
549
  msgid "Overall Popular Posts"
550
  msgstr ""
551
 
552
- #: admin.inc.php:786
553
  msgid "Results"
554
  msgstr ""
555
 
556
- #: admin.inc.php:788 admin.inc.php:794
557
  msgid "of"
558
  msgstr ""
559
 
560
- #: admin.inc.php:792
561
  msgid "Page"
562
  msgstr ""
563
 
564
- #: admin.inc.php:806
565
  msgid "View Daily Popular Posts"
566
  msgstr ""
567
 
568
- #: admin.inc.php:809 admin.inc.php:822
569
  msgid "Results per-page:"
570
  msgstr ""
571
 
572
- #: admin.inc.php:819
573
  msgid "View Overall Popular Posts"
574
  msgstr ""
575
 
576
- #: admin.inc.php:848
577
  msgid "Previous"
578
  msgstr ""
579
 
580
- #: admin.inc.php:866
581
  msgid "Next"
582
  msgstr ""
583
 
584
- #: admin.inc.php:907
585
  msgid "Daily Popular"
586
  msgstr ""
587
 
588
- #: admin.inc.php:923
589
  msgid "Total Views"
590
  msgstr ""
591
 
592
- #: admin.inc.php:924
593
  msgid "Today's Views"
594
  msgstr ""
595
 
596
- #: top-10.php:366
597
- msgid " Posted by "
598
  msgstr ""
599
 
600
- #: top-10.php:448
601
  msgid "Display the posts popular this week"
602
  msgstr ""
603
 
604
- #: top-10.php:449
605
  msgid "Popular Posts [Top 10]"
606
  msgstr ""
607
 
608
- #: top-10.php:466
609
  msgid "Title"
610
  msgstr ""
611
 
612
- #: top-10.php:471
613
  msgid "No. of posts"
614
  msgstr ""
615
 
616
- #: top-10.php:476
617
  msgid "Overall"
618
  msgstr ""
619
 
620
- #: top-10.php:477
621
  msgid "Custom time period (Enter below)"
622
  msgstr ""
623
 
624
- #: top-10.php:482
625
  msgid "Range in number of days (applies only to custom option above)"
626
  msgstr ""
627
 
628
- #: top-10.php:487
629
  msgid " Show excerpt?"
630
  msgstr ""
631
 
632
- #: top-10.php:492
633
  msgid " Show author?"
634
  msgstr ""
635
 
636
- #: top-10.php:497
637
  msgid " Show date?"
638
  msgstr ""
639
 
640
- #: top-10.php:501
641
  msgid "Thumbnail options"
642
  msgstr ""
643
 
644
- #: top-10.php:503
645
  msgid "Thumbnails inline, before title"
646
  msgstr ""
647
 
648
- #: top-10.php:504
649
  msgid "Thumbnails inline, after title"
650
  msgstr ""
651
 
652
- #: top-10.php:505
653
  msgid "Only thumbnails, no text"
654
  msgstr ""
655
 
656
- #: top-10.php:506
657
  msgid "No thumbnails, only text."
658
  msgstr ""
659
 
660
- #: top-10.php:511
661
  msgid "Thumbnail height"
662
  msgstr ""
663
 
664
- #: top-10.php:516
665
  msgid "Thumbnail width"
666
  msgstr ""
667
 
668
- #: top-10.php:617
669
  msgid "<h3>Popular Posts</h3>"
670
  msgstr ""
671
 
672
- #: top-10.php:618
673
  msgid "<h3>Daily Popular</h3>"
674
  msgstr ""
675
 
676
- #: top-10.php:619
677
  msgid "No top posts yet"
678
  msgstr ""
679
 
680
- #: top-10.php:1060
681
  msgid "Once Weekly"
682
  msgstr ""
683
 
684
- #: top-10.php:1061
685
  msgid "Once Fortnightly"
686
  msgstr ""
687
 
688
- #: top-10.php:1062
689
  msgid "Once Monthly"
690
  msgstr ""
691
 
692
- #: top-10.php:1082
693
  msgid "Settings"
694
  msgstr ""
695
 
696
- #: top-10.php:1095
697
  msgid "Donate"
698
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:05-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr ""
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
 
77
+ #: admin.inc.php:198
78
  msgid "Post types to include in results (including custom post types)"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:209
82
  msgid "List of post or page IDs to exclude from the results: "
83
  msgstr ""
84
 
85
+ #: admin.inc.php:213
86
  msgid "Exclude Categories: "
87
  msgstr ""
88
 
89
+ #: admin.inc.php:228
90
  msgid ""
91
  "Comma separated list of category slugs. The field above has an autocomplete "
92
  "so simply start typing in the starting letters and it will prompt you with "
93
  "options"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:233
97
  msgid "Display number of views on:"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:235
101
  msgid "Posts"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:236
105
  msgid "Pages"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:237
109
  msgid "Home page"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:238
113
  msgid "Feeds"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:239
117
  msgid "Category archives"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:240
121
  msgid "Tag archives"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:241
125
  msgid "Other archives"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:242
129
  msgid ""
130
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
131
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
132
  "you want it displayed"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:245
136
  msgid "Always display latest post count"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:247
140
  msgid ""
141
  "This option uses JavaScript and will increase your page load time. Turn this "
142
  "off if you are not using caching plugins or are OK with displaying older "
144
  "the options set there, but options will need to be set on this screen."
145
  msgstr ""
146
 
147
+ #: admin.inc.php:250
148
  msgid "Always display latest post count in the daily lists"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:252
152
  msgid "This option uses JavaScript and will increase your page load time"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:255
156
  msgid "Track visits of authors on their own posts?"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:258
160
  msgid "Track visits of admins?"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:261
164
  msgid "Display page views on Posts > All Posts in Admin"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:264
168
  msgid "Link to Top 10 plugin page"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:266
172
  msgid ""
173
  "A link to the plugin is added as an extra list item to the list of popular "
174
  "posts"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:273
178
  msgid "Output Options"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:276
182
  msgid "Format to display the count in: "
183
  msgstr ""
184
 
185
+ #: admin.inc.php:278
186
  msgid ""
187
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
188
  "%</code> to display the daily count and <code>%overallcount%</code> to "
190
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:281
194
  msgid "Title of popular posts: "
195
  msgstr ""
196
 
197
+ #: admin.inc.php:284
198
  msgid "Title of daily popular posts: "
199
  msgstr ""
200
 
201
+ #: admin.inc.php:287
202
  msgid "When there are no posts, what should be shown?"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:291
206
  msgid "Blank Output"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:295
210
  msgid "Display:"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:299
214
  msgid "Show post excerpt in list?"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:302
218
  msgid "Length of excerpt (in words): "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:305
222
  msgid "Show post author in list?"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:308
226
  msgid "Show post date in list?"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:311
230
  msgid "Limit post title length (in characters)"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:314
234
  msgid "Display number of page views in popular lists?"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:317
238
  msgid "Open links in new window"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:320
242
  msgid "Add nofollow attribute to links in the list"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:323
246
  msgid "Exclude display of related posts on these posts / pages"
247
  msgstr ""
248
 
249
+ #: admin.inc.php:326
250
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
251
  msgstr ""
252
 
253
+ #: admin.inc.php:329
254
  msgid "Customize the output:"
255
  msgstr ""
256
 
257
+ #: admin.inc.php:331
258
  msgid "HTML to display before the list of posts: "
259
  msgstr ""
260
 
261
+ #: admin.inc.php:334
262
  msgid "HTML to display before each list item: "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:337
266
  msgid "HTML to display after each list item: "
267
  msgstr ""
268
 
269
+ #: admin.inc.php:340
270
  msgid "HTML to display after the list of posts: "
271
  msgstr ""
272
 
273
+ #: admin.inc.php:343
274
  msgid "Post thumbnail options:"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:345
278
  msgid "Location of post thumbnail:"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:349
282
  msgid "Display thumbnails inline with posts, before title"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:353
286
  msgid "Display thumbnails inline with posts, after title"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:357
290
  msgid "Display only thumbnails, no text"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:361
294
  msgid "Do not display thumbnails, only text."
295
  msgstr ""
296
 
297
+ #: admin.inc.php:365
298
  msgid "Width of the thumbnail: "
299
  msgstr ""
300
 
301
+ #: admin.inc.php:368
302
  msgid "Height of the thumbnail: "
303
  msgstr ""
304
 
305
+ #: admin.inc.php:371
306
  msgid "Style attributes / Width and Height HTML attributes:"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:375
310
  msgid ""
311
  "Style attributes are used for width and height. <code>style=\"max-width:"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:379
315
  msgid ""
316
  "HTML width and height attributes are used for width and height. <code>width="
317
  "\""
318
  msgstr ""
319
 
320
+ #: admin.inc.php:383
321
  msgid "Use timthumb to generate thumbnails? "
322
  msgstr ""
323
 
327
  "\">timthumb</a> will be used to generate thumbnails"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:389
331
  msgid "Post thumbnail meta field name: "
332
  msgstr ""
333
 
334
+ #: admin.inc.php:392
335
  msgid ""
336
  "The value of this field should contain the image source and is set in the "
337
  "<em>Add New Post</em> screen"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:395
341
  msgid ""
342
  "If the postmeta is not set, then should the plugin extract the first image "
343
  "from the post?"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:398
347
  msgid ""
348
  "This could slow down the loading of your page if the first image in the "
349
  "related posts is large in file-size"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:401
353
  msgid "Use default thumbnail? "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:404
357
  msgid ""
358
  "If checked, when no thumbnail is found, show a default one from the URL "
359
  "below. If not checked and no thumbnail is found, no image will be shown."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:407
363
  msgid "Default thumbnail: "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:410
367
  msgid ""
368
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
369
  "then it will check the meta field. If this is not available, then it will "
370
  "show the default image as specified above"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:417
374
  msgid "Custom Styles"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:420
378
  msgid "Custom CSS to add to header:"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:423
382
  msgid ""
383
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
384
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
385
  "available CSS classes to style."
386
  msgstr ""
387
 
388
+ #: admin.inc.php:430
389
  msgid "Maintenance"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:434
393
  msgid ""
394
  "Over time the Daily Top 10 database grows in size, which reduces the "
395
  "performance of the plugin. Cleaning the database at regular intervals could "
396
  "improve performance, especially on high traffic blogs."
397
  msgstr ""
398
 
399
+ #: admin.inc.php:435
400
  msgid ""
401
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
402
  "everytime the job is rescheduled (i.e. you change the settings below). This "
403
  "causes the daily posts table to reset."
404
  msgstr ""
405
 
406
+ #: admin.inc.php:438
407
  msgid "Enable scheduled maintenance of daily tables:"
408
  msgstr ""
409
 
410
+ #: admin.inc.php:442
411
  msgid "Time to run maintenance"
412
  msgstr ""
413
 
414
+ #: admin.inc.php:445
415
  msgid "How often should the maintenance be run:"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:449
419
  msgid "Daily"
420
  msgstr ""
421
 
422
+ #: admin.inc.php:453
423
  msgid "Weekly"
424
  msgstr ""
425
 
426
+ #: admin.inc.php:457
427
  msgid "Fortnightly"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:461
431
  msgid "Monthly"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:470
435
  msgid "The cron job has been scheduled. Maintenance will run "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:475
439
  msgid "The cron job is missing. Please resave this page to add the job"
440
  msgstr ""
441
 
442
+ #: admin.inc.php:480
443
  msgid "Maintenance is turned off"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:488
447
  msgid "Save Options"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:489
451
  msgid "Default Options"
452
  msgstr ""
453
 
454
+ #: admin.inc.php:489
455
  msgid "Do you want to set options to Default?"
456
  msgstr ""
457
 
458
+ #: admin.inc.php:493
459
  msgid "Reset count"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:496
463
  msgid ""
464
  "This cannot be reversed. Make sure that your database has been backed up "
465
  "before proceeding"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:499
469
  msgid "Reset Popular Posts"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:499
473
  msgid "Are you sure you want to reset the popular posts?"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:500
477
  msgid "Reset Daily Popular Posts"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:500
481
  msgid "Are you sure you want to reset the daily popular posts?"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:501
485
  msgid "Clear duplicates"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:501
489
  msgid "This will delete the duplicate entries in the tables. Proceed?"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:544 admin.inc.php:929
493
  msgid "Popular Posts"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:544 admin.inc.php:631
497
  msgid "Daily Popular Posts"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:572
501
  msgid "Support the development"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:580
505
  msgid "Enter amount in USD: "
506
  msgstr ""
507
 
508
+ #: admin.inc.php:584
509
  msgid "Send your donation to the author of"
510
  msgstr ""
511
 
512
+ #: admin.inc.php:590
513
  msgid "Follow us"
514
  msgstr ""
515
 
516
+ #: admin.inc.php:596
517
  msgid "Quick Links"
518
  msgstr ""
519
 
520
+ #: admin.inc.php:598
521
  msgid "Top 10 plugin page"
522
  msgstr ""
523
 
524
+ #: admin.inc.php:599
525
  msgid "Other plugins"
526
  msgstr ""
527
 
528
+ #: admin.inc.php:600
529
  msgid "Ajay's blog"
530
  msgstr ""
531
 
532
+ #: admin.inc.php:601 top-10.php:1147
533
  msgid "Support"
534
  msgstr ""
535
 
536
+ #: admin.inc.php:605
537
  msgid "Recent developments"
538
  msgstr ""
539
 
540
+ #: admin.inc.php:622 admin.inc.php:625
541
  msgid "Top 10 Settings"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:622
545
  msgid "Top 10"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:628
549
  msgid "Overall Popular Posts"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:799
553
  msgid "Results"
554
  msgstr ""
555
 
556
+ #: admin.inc.php:801 admin.inc.php:807
557
  msgid "of"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:805
561
  msgid "Page"
562
  msgstr ""
563
 
564
+ #: admin.inc.php:819
565
  msgid "View Daily Popular Posts"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:822 admin.inc.php:835
569
  msgid "Results per-page:"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:832
573
  msgid "View Overall Popular Posts"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:861
577
  msgid "Previous"
578
  msgstr ""
579
 
580
+ #: admin.inc.php:889
581
  msgid "Next"
582
  msgstr ""
583
 
584
+ #: admin.inc.php:930
585
  msgid "Daily Popular"
586
  msgstr ""
587
 
588
+ #: admin.inc.php:946
589
  msgid "Total Views"
590
  msgstr ""
591
 
592
+ #: admin.inc.php:947
593
  msgid "Today's Views"
594
  msgstr ""
595
 
596
+ #: top-10.php:415
597
+ msgid " by "
598
  msgstr ""
599
 
600
+ #: top-10.php:501
601
  msgid "Display the posts popular this week"
602
  msgstr ""
603
 
604
+ #: top-10.php:502
605
  msgid "Popular Posts [Top 10]"
606
  msgstr ""
607
 
608
+ #: top-10.php:519
609
  msgid "Title"
610
  msgstr ""
611
 
612
+ #: top-10.php:524
613
  msgid "No. of posts"
614
  msgstr ""
615
 
616
+ #: top-10.php:529
617
  msgid "Overall"
618
  msgstr ""
619
 
620
+ #: top-10.php:530
621
  msgid "Custom time period (Enter below)"
622
  msgstr ""
623
 
624
+ #: top-10.php:535
625
  msgid "Range in number of days (applies only to custom option above)"
626
  msgstr ""
627
 
628
+ #: top-10.php:540
629
  msgid " Show excerpt?"
630
  msgstr ""
631
 
632
+ #: top-10.php:545
633
  msgid " Show author?"
634
  msgstr ""
635
 
636
+ #: top-10.php:550
637
  msgid " Show date?"
638
  msgstr ""
639
 
640
+ #: top-10.php:554
641
  msgid "Thumbnail options"
642
  msgstr ""
643
 
644
+ #: top-10.php:556
645
  msgid "Thumbnails inline, before title"
646
  msgstr ""
647
 
648
+ #: top-10.php:557
649
  msgid "Thumbnails inline, after title"
650
  msgstr ""
651
 
652
+ #: top-10.php:558
653
  msgid "Only thumbnails, no text"
654
  msgstr ""
655
 
656
+ #: top-10.php:559
657
  msgid "No thumbnails, only text."
658
  msgstr ""
659
 
660
+ #: top-10.php:564
661
  msgid "Thumbnail height"
662
  msgstr ""
663
 
664
+ #: top-10.php:569
665
  msgid "Thumbnail width"
666
  msgstr ""
667
 
668
+ #: top-10.php:670
669
  msgid "<h3>Popular Posts</h3>"
670
  msgstr ""
671
 
672
+ #: top-10.php:671
673
  msgid "<h3>Daily Popular</h3>"
674
  msgstr ""
675
 
676
+ #: top-10.php:672
677
  msgid "No top posts yet"
678
  msgstr ""
679
 
680
+ #: top-10.php:1113
681
  msgid "Once Weekly"
682
  msgstr ""
683
 
684
+ #: top-10.php:1114
685
  msgid "Once Fortnightly"
686
  msgstr ""
687
 
688
+ #: top-10.php:1115
689
  msgid "Once Monthly"
690
  msgstr ""
691
 
692
+ #: top-10.php:1135
693
  msgid "Settings"
694
  msgstr ""
695
 
696
+ #: top-10.php:1148
697
  msgid "Donate"
698
  msgstr ""
languages/tptn-es_ES.mo CHANGED
Binary file
languages/tptn-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,131 +15,131 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Configuraciones guardadas con éxito"
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Los parametros se configuran de manera predeterminada"
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Reiniciar el Top de los 10 posts más populares"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Mostrar el número de posts más populares"
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Los post diarios más populares deben contener el número de visitas al día"
77
 
78
- #: admin.inc.php:200
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:211
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:215
87
  msgid "Exclude Categories: "
88
  msgstr "Excluir las Categorías"
89
 
90
- #: admin.inc.php:230
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
- #: admin.inc.php:235
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
101
 
102
- #: admin.inc.php:237
103
  msgid "Posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:238
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "La página"
110
 
111
- #: admin.inc.php:239
112
  msgid "Home page"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
- #: admin.inc.php:241
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
- #: admin.inc.php:242
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
- #: admin.inc.php:243
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
- #: admin.inc.php:244
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
- #: admin.inc.php:247
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
- #: admin.inc.php:249
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
@@ -147,35 +147,35 @@ msgid ""
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
- #: admin.inc.php:252
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
- #: admin.inc.php:254
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
159
  "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
160
 
161
- #: admin.inc.php:257
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
164
 
165
- #: admin.inc.php:260
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
169
 
170
- #: admin.inc.php:263
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
- #: admin.inc.php:266
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
- #: admin.inc.php:268
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -185,16 +185,16 @@ msgstr ""
185
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
186
  "agradeceríamos al hacerlo!"
187
 
188
- #: admin.inc.php:275
189
  #, fuzzy
190
  msgid "Output Options"
191
  msgstr "Los Parámetros Resultantes"
192
 
193
- #: admin.inc.php:278
194
  msgid "Format to display the count in: "
195
  msgstr "El formato de visualización de la cuenta: "
196
 
197
- #: admin.inc.php:280
198
  #, fuzzy
199
  msgid ""
200
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -206,137 +206,137 @@ msgstr ""
206
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
207
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
208
 
209
- #: admin.inc.php:283
210
  msgid "Title of popular posts: "
211
  msgstr "El título de los posts más populares"
212
 
213
- #: admin.inc.php:286
214
  msgid "Title of daily popular posts: "
215
  msgstr "El título de los posts diarios más populares"
216
 
217
- #: admin.inc.php:289
218
  msgid "When there are no posts, what should be shown?"
219
  msgstr ""
220
 
221
- #: admin.inc.php:293
222
  msgid "Blank Output"
223
  msgstr ""
224
 
225
- #: admin.inc.php:297
226
  msgid "Display:"
227
  msgstr ""
228
 
229
- #: admin.inc.php:301
230
  msgid "Show post excerpt in list?"
231
  msgstr "¿Mostrar un fragmento del post en la lista?"
232
 
233
- #: admin.inc.php:304
234
  msgid "Length of excerpt (in words): "
235
  msgstr "La longitud del fragmento(en palabras):"
236
 
237
- #: admin.inc.php:307
238
  #, fuzzy
239
  msgid "Show post author in list?"
240
  msgstr "¿Mostrar un fragmento del post en la lista?"
241
 
242
- #: admin.inc.php:310
243
  #, fuzzy
244
  msgid "Show post date in list?"
245
  msgstr "¿Mostrar un fragmento del post en la lista?"
246
 
247
- #: admin.inc.php:313
248
  msgid "Limit post title length (in characters)"
249
  msgstr ""
250
 
251
- #: admin.inc.php:316
252
  msgid "Display number of page views in popular lists?"
253
  msgstr ""
254
  "¿Mostrar el número de visitas de la página en las listas más populares?"
255
 
256
- #: admin.inc.php:319
257
  msgid "Open links in new window"
258
  msgstr ""
259
 
260
- #: admin.inc.php:322
261
  msgid "Add nofollow attribute to links in the list"
262
  msgstr ""
263
 
264
- #: admin.inc.php:325
265
  msgid "Exclude display of related posts on these posts / pages"
266
  msgstr ""
267
 
268
- #: admin.inc.php:328
269
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
270
  msgstr ""
271
 
272
- #: admin.inc.php:331
273
  msgid "Customize the output:"
274
  msgstr "Personalizar el resultado:"
275
 
276
- #: admin.inc.php:333
277
  msgid "HTML to display before the list of posts: "
278
  msgstr "HTML mostrar antes de la lista de posts:"
279
 
280
- #: admin.inc.php:336
281
  msgid "HTML to display before each list item: "
282
  msgstr "HTML mostrar ante cada elemento de la lista:"
283
 
284
- #: admin.inc.php:339
285
  msgid "HTML to display after each list item: "
286
  msgstr "HTML mostrar después de cada elemento de la lista:"
287
 
288
- #: admin.inc.php:342
289
  msgid "HTML to display after the list of posts: "
290
  msgstr "HTML mostrar después de la lista de posts:"
291
 
292
- #: admin.inc.php:345
293
  msgid "Post thumbnail options:"
294
  msgstr "Los parámetros del thumbnail:"
295
 
296
- #: admin.inc.php:347
297
  msgid "Location of post thumbnail:"
298
  msgstr ""
299
 
300
- #: admin.inc.php:351
301
  msgid "Display thumbnails inline with posts, before title"
302
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
303
 
304
- #: admin.inc.php:355
305
  msgid "Display thumbnails inline with posts, after title"
306
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
307
 
308
- #: admin.inc.php:359
309
  msgid "Display only thumbnails, no text"
310
  msgstr "Mostrar solamente thumbnails, no el texto"
311
 
312
- #: admin.inc.php:363
313
  msgid "Do not display thumbnails, only text."
314
  msgstr "No mostrar thumbnails, sólo el texto"
315
 
316
- #: admin.inc.php:367
317
  msgid "Width of the thumbnail: "
318
  msgstr ""
319
 
320
- #: admin.inc.php:370
321
  msgid "Height of the thumbnail: "
322
  msgstr ""
323
 
324
- #: admin.inc.php:373
325
  msgid "Style attributes / Width and Height HTML attributes:"
326
  msgstr ""
327
 
328
- #: admin.inc.php:377
329
  msgid ""
330
  "Style attributes are used for width and height. <code>style=\"max-width:"
331
  msgstr ""
332
 
333
- #: admin.inc.php:381
334
  msgid ""
335
  "HTML width and height attributes are used for width and height. <code>width="
336
  "\""
337
  msgstr ""
338
 
339
- #: admin.inc.php:385
340
  msgid "Use timthumb to generate thumbnails? "
341
  msgstr ""
342
 
@@ -346,18 +346,18 @@ msgid ""
346
  "\">timthumb</a> will be used to generate thumbnails"
347
  msgstr ""
348
 
349
- #: admin.inc.php:388
350
  #, fuzzy
351
  msgid "Post thumbnail meta field name: "
352
  msgstr "Los parámetros del thumbnail:"
353
 
354
- #: admin.inc.php:389
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
- #: admin.inc.php:391
361
  #, fuzzy
362
  msgid ""
363
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -368,7 +368,7 @@ msgstr ""
368
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
369
  "tamaño de archivo "
370
 
371
- #: admin.inc.php:392
372
  #, fuzzy
373
  msgid ""
374
  "This could slow down the loading of your page if the first image in the "
@@ -379,11 +379,11 @@ msgstr ""
379
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
380
  "tamaño de archivo "
381
 
382
- #: admin.inc.php:394
383
  msgid "Use default thumbnail? "
384
  msgstr ""
385
 
386
- #: admin.inc.php:395
387
  msgid ""
388
  "If checked, when no thumbnail is found, show a default one from the URL "
389
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -393,109 +393,109 @@ msgstr ""
393
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
394
  "hay que mostrarla."
395
 
396
- #: admin.inc.php:397
397
  msgid "Default thumbnail: "
398
  msgstr ""
399
 
400
- #: admin.inc.php:398
401
  msgid ""
402
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
403
  "then it will check the meta field. If this is not available, then it will "
404
  "show the default image as specified above"
405
  msgstr ""
406
 
407
- #: admin.inc.php:404
408
  msgid "Custom Styles"
409
  msgstr ""
410
 
411
- #: admin.inc.php:407
412
  msgid "Custom CSS to add to header:"
413
  msgstr ""
414
 
415
- #: admin.inc.php:410
416
  msgid ""
417
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
418
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
419
  "available CSS classes to style."
420
  msgstr ""
421
 
422
- #: admin.inc.php:417
423
  msgid "Maintenance"
424
  msgstr ""
425
 
426
- #: admin.inc.php:421
427
  msgid ""
428
  "Over time the Daily Top 10 database grows in size, which reduces the "
429
  "performance of the plugin. Cleaning the database at regular intervals could "
430
  "improve performance, especially on high traffic blogs."
431
  msgstr ""
432
 
433
- #: admin.inc.php:422
434
  msgid ""
435
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
436
  "everytime the job is rescheduled (i.e. you change the settings below). This "
437
  "causes the daily posts table to reset."
438
  msgstr ""
439
 
440
- #: admin.inc.php:425
441
  msgid "Enable scheduled maintenance of daily tables:"
442
  msgstr ""
443
 
444
- #: admin.inc.php:429
445
  msgid "Time to run maintenance"
446
  msgstr ""
447
 
448
- #: admin.inc.php:432
449
  msgid "How often should the maintenance be run:"
450
  msgstr ""
451
 
452
- #: admin.inc.php:436
453
  msgid "Daily"
454
  msgstr ""
455
 
456
- #: admin.inc.php:440
457
  msgid "Weekly"
458
  msgstr ""
459
 
460
- #: admin.inc.php:444
461
  msgid "Fortnightly"
462
  msgstr ""
463
 
464
- #: admin.inc.php:448
465
  msgid "Monthly"
466
  msgstr ""
467
 
468
- #: admin.inc.php:457
469
  msgid "The cron job has been scheduled. Maintenance will run "
470
  msgstr ""
471
 
472
- #: admin.inc.php:462
473
  msgid "The cron job is missing. Please resave this page to add the job"
474
  msgstr ""
475
 
476
- #: admin.inc.php:467
477
  msgid "Maintenance is turned off"
478
  msgstr ""
479
 
480
- #: admin.inc.php:475
481
  #, fuzzy
482
  msgid "Save Options"
483
  msgstr "Los parametros"
484
 
485
- #: admin.inc.php:476
486
  #, fuzzy
487
  msgid "Default Options"
488
  msgstr "Los Parámetros Resultantes"
489
 
490
- #: admin.inc.php:476
491
  msgid "Do you want to set options to Default?"
492
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
493
 
494
- #: admin.inc.php:480
495
  msgid "Reset count"
496
  msgstr "Reiniciar los ajustes"
497
 
498
- #: admin.inc.php:483
499
  msgid ""
500
  "This cannot be reversed. Make sure that your database has been backed up "
501
  "before proceeding"
@@ -503,255 +503,255 @@ msgstr ""
503
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
504
  "sido creada una copia de seguridad para su base de datos."
505
 
506
- #: admin.inc.php:486
507
  #, fuzzy
508
  msgid "Reset Popular Posts"
509
  msgstr "Los posts más populares"
510
 
511
- #: admin.inc.php:486
512
  msgid "Are you sure you want to reset the popular posts?"
513
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
514
 
515
- #: admin.inc.php:487
516
  #, fuzzy
517
  msgid "Reset Daily Popular Posts"
518
  msgstr "Los posts diarios más populares"
519
 
520
- #: admin.inc.php:487
521
  msgid "Are you sure you want to reset the daily popular posts?"
522
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
523
 
524
- #: admin.inc.php:488
525
  msgid "Clear duplicates"
526
  msgstr ""
527
 
528
- #: admin.inc.php:488
529
  msgid "This will delete the duplicate entries in the tables. Proceed?"
530
  msgstr ""
531
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
532
 
533
- #: admin.inc.php:531 admin.inc.php:906
534
  msgid "Popular Posts"
535
  msgstr "Los posts más populares"
536
 
537
- #: admin.inc.php:531 admin.inc.php:618
538
  msgid "Daily Popular Posts"
539
  msgstr "Los posts diarios más populares"
540
 
541
- #: admin.inc.php:559
542
  msgid "Support the development"
543
  msgstr "Apoyar al elaborador"
544
 
545
- #: admin.inc.php:567
546
  msgid "Enter amount in USD: "
547
  msgstr "Ingresar las cifras en USD"
548
 
549
- #: admin.inc.php:571
550
  msgid "Send your donation to the author of"
551
  msgstr "Enviar su subvención al autor"
552
 
553
- #: admin.inc.php:577
554
  msgid "Follow us"
555
  msgstr ""
556
 
557
- #: admin.inc.php:583
558
  #, fuzzy
559
  msgid "Quick Links"
560
  msgstr "Enlaces rápidos"
561
 
562
- #: admin.inc.php:585
563
  #, fuzzy
564
  msgid "Top 10 plugin page"
565
  msgstr "página plugin"
566
 
567
- #: admin.inc.php:586
568
  msgid "Other plugins"
569
  msgstr "Otros plugins"
570
 
571
- #: admin.inc.php:587
572
  msgid "Ajay's blog"
573
  msgstr "Blog de Ajay"
574
 
575
- #: admin.inc.php:588 top-10.php:1094
576
  msgid "Support"
577
  msgstr "Apoyo"
578
 
579
- #: admin.inc.php:592
580
  msgid "Recent developments"
581
  msgstr "Evolución reciente"
582
 
583
- #: admin.inc.php:609 admin.inc.php:612
584
  #, fuzzy
585
  msgid "Top 10 Settings"
586
  msgstr "Los ajustes"
587
 
588
- #: admin.inc.php:609
589
  msgid "Top 10"
590
  msgstr "Тоp 10"
591
 
592
- #: admin.inc.php:615
593
  #, fuzzy
594
  msgid "Overall Popular Posts"
595
  msgstr "Ver los posts más populares"
596
 
597
- #: admin.inc.php:786
598
  msgid "Results"
599
  msgstr "Resultados"
600
 
601
- #: admin.inc.php:788 admin.inc.php:794
602
  msgid "of"
603
  msgstr "de, a "
604
 
605
- #: admin.inc.php:792
606
  msgid "Page"
607
  msgstr "La página"
608
 
609
- #: admin.inc.php:806
610
  msgid "View Daily Popular Posts"
611
  msgstr "Ver los posts diarios más populares"
612
 
613
- #: admin.inc.php:809 admin.inc.php:822
614
  msgid "Results per-page:"
615
  msgstr "Los resultados por página:"
616
 
617
- #: admin.inc.php:819
618
  msgid "View Overall Popular Posts"
619
  msgstr "Ver los posts más populares"
620
 
621
- #: admin.inc.php:848
622
  msgid "Previous"
623
  msgstr "Precedentes"
624
 
625
- #: admin.inc.php:866
626
  msgid "Next"
627
  msgstr "Siguientes"
628
 
629
- #: admin.inc.php:907
630
  msgid "Daily Popular"
631
  msgstr "Diario Populares"
632
 
633
- #: admin.inc.php:923
634
  #, fuzzy
635
  msgid "Total Views"
636
  msgstr "Total/Visitas de hoy"
637
 
638
- #: admin.inc.php:924
639
  #, fuzzy
640
  msgid "Today's Views"
641
  msgstr "Total/Visitas de hoy"
642
 
643
- #: top-10.php:366
644
- msgid " Posted by "
645
  msgstr ""
646
 
647
- #: top-10.php:448
648
  msgid "Display the posts popular this week"
649
  msgstr "Mostrar los posts populares de esta semana"
650
 
651
- #: top-10.php:449
652
  #, fuzzy
653
  msgid "Popular Posts [Top 10]"
654
  msgstr "Los posts más populares"
655
 
656
- #: top-10.php:466
657
  msgid "Title"
658
  msgstr ""
659
 
660
- #: top-10.php:471
661
  msgid "No. of posts"
662
  msgstr ""
663
 
664
- #: top-10.php:476
665
  msgid "Overall"
666
  msgstr ""
667
 
668
- #: top-10.php:477
669
  msgid "Custom time period (Enter below)"
670
  msgstr ""
671
 
672
- #: top-10.php:482
673
  msgid "Range in number of days (applies only to custom option above)"
674
  msgstr ""
675
 
676
- #: top-10.php:487
677
  #, fuzzy
678
  msgid " Show excerpt?"
679
  msgstr "¿Mostrar un fragmento del post en la lista?"
680
 
681
- #: top-10.php:492
682
  msgid " Show author?"
683
  msgstr ""
684
 
685
- #: top-10.php:497
686
  #, fuzzy
687
  msgid " Show date?"
688
  msgstr "¿Mostrar un fragmento del post en la lista?"
689
 
690
- #: top-10.php:501
691
  #, fuzzy
692
  msgid "Thumbnail options"
693
  msgstr "Los parámetros del thumbnail:"
694
 
695
- #: top-10.php:503
696
  #, fuzzy
697
  msgid "Thumbnails inline, before title"
698
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
699
 
700
- #: top-10.php:504
701
  #, fuzzy
702
  msgid "Thumbnails inline, after title"
703
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
704
 
705
- #: top-10.php:505
706
  #, fuzzy
707
  msgid "Only thumbnails, no text"
708
  msgstr "Mostrar solamente thumbnails, no el texto"
709
 
710
- #: top-10.php:506
711
  #, fuzzy
712
  msgid "No thumbnails, only text."
713
  msgstr "No mostrar thumbnails, sólo el texto"
714
 
715
- #: top-10.php:511
716
  #, fuzzy
717
  msgid "Thumbnail height"
718
  msgstr "Los parámetros del thumbnail:"
719
 
720
- #: top-10.php:516
721
  #, fuzzy
722
  msgid "Thumbnail width"
723
  msgstr "Los parámetros del thumbnail:"
724
 
725
- #: top-10.php:617
726
  msgid "<h3>Popular Posts</h3>"
727
  msgstr "Los posts populares"
728
 
729
- #: top-10.php:618
730
  msgid "<h3>Daily Popular</h3>"
731
  msgstr "Diario Populares"
732
 
733
- #: top-10.php:619
734
  #, fuzzy
735
  msgid "No top posts yet"
736
  msgstr "Reiniciar el Top de los 10 posts más populares"
737
 
738
- #: top-10.php:1060
739
  msgid "Once Weekly"
740
  msgstr ""
741
 
742
- #: top-10.php:1061
743
  msgid "Once Fortnightly"
744
  msgstr ""
745
 
746
- #: top-10.php:1062
747
  msgid "Once Monthly"
748
  msgstr ""
749
 
750
- #: top-10.php:1082
751
  msgid "Settings"
752
  msgstr "Los ajustes"
753
 
754
- #: top-10.php:1095
755
  msgid "Donate"
756
  msgstr "Subvencionar"
757
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Configuraciones guardadas con éxito"
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Los parametros se configuran de manera predeterminada"
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Reiniciar el Top de los 10 posts más populares"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Mostrar el número de posts más populares"
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Los post diarios más populares deben contener el número de visitas al día"
77
 
78
+ #: admin.inc.php:198
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:209
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
+ #: admin.inc.php:213
87
  msgid "Exclude Categories: "
88
  msgstr "Excluir las Categorías"
89
 
90
+ #: admin.inc.php:228
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:233
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
101
 
102
+ #: admin.inc.php:235
103
  msgid "Posts"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:236
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "La página"
110
 
111
+ #: admin.inc.php:237
112
  msgid "Home page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:238
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:239
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:240
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:241
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:242
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:245
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:247
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:250
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:252
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
159
  "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
160
 
161
+ #: admin.inc.php:255
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
164
 
165
+ #: admin.inc.php:258
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
169
 
170
+ #: admin.inc.php:261
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:264
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:266
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
185
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
186
  "agradeceríamos al hacerlo!"
187
 
188
+ #: admin.inc.php:273
189
  #, fuzzy
190
  msgid "Output Options"
191
  msgstr "Los Parámetros Resultantes"
192
 
193
+ #: admin.inc.php:276
194
  msgid "Format to display the count in: "
195
  msgstr "El formato de visualización de la cuenta: "
196
 
197
+ #: admin.inc.php:278
198
  #, fuzzy
199
  msgid ""
200
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
206
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
207
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
208
 
209
+ #: admin.inc.php:281
210
  msgid "Title of popular posts: "
211
  msgstr "El título de los posts más populares"
212
 
213
+ #: admin.inc.php:284
214
  msgid "Title of daily popular posts: "
215
  msgstr "El título de los posts diarios más populares"
216
 
217
+ #: admin.inc.php:287
218
  msgid "When there are no posts, what should be shown?"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:291
222
  msgid "Blank Output"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:295
226
  msgid "Display:"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:299
230
  msgid "Show post excerpt in list?"
231
  msgstr "¿Mostrar un fragmento del post en la lista?"
232
 
233
+ #: admin.inc.php:302
234
  msgid "Length of excerpt (in words): "
235
  msgstr "La longitud del fragmento(en palabras):"
236
 
237
+ #: admin.inc.php:305
238
  #, fuzzy
239
  msgid "Show post author in list?"
240
  msgstr "¿Mostrar un fragmento del post en la lista?"
241
 
242
+ #: admin.inc.php:308
243
  #, fuzzy
244
  msgid "Show post date in list?"
245
  msgstr "¿Mostrar un fragmento del post en la lista?"
246
 
247
+ #: admin.inc.php:311
248
  msgid "Limit post title length (in characters)"
249
  msgstr ""
250
 
251
+ #: admin.inc.php:314
252
  msgid "Display number of page views in popular lists?"
253
  msgstr ""
254
  "¿Mostrar el número de visitas de la página en las listas más populares?"
255
 
256
+ #: admin.inc.php:317
257
  msgid "Open links in new window"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:320
261
  msgid "Add nofollow attribute to links in the list"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:323
265
  msgid "Exclude display of related posts on these posts / pages"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:326
269
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:329
273
  msgid "Customize the output:"
274
  msgstr "Personalizar el resultado:"
275
 
276
+ #: admin.inc.php:331
277
  msgid "HTML to display before the list of posts: "
278
  msgstr "HTML mostrar antes de la lista de posts:"
279
 
280
+ #: admin.inc.php:334
281
  msgid "HTML to display before each list item: "
282
  msgstr "HTML mostrar ante cada elemento de la lista:"
283
 
284
+ #: admin.inc.php:337
285
  msgid "HTML to display after each list item: "
286
  msgstr "HTML mostrar después de cada elemento de la lista:"
287
 
288
+ #: admin.inc.php:340
289
  msgid "HTML to display after the list of posts: "
290
  msgstr "HTML mostrar después de la lista de posts:"
291
 
292
+ #: admin.inc.php:343
293
  msgid "Post thumbnail options:"
294
  msgstr "Los parámetros del thumbnail:"
295
 
296
+ #: admin.inc.php:345
297
  msgid "Location of post thumbnail:"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:349
301
  msgid "Display thumbnails inline with posts, before title"
302
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
303
 
304
+ #: admin.inc.php:353
305
  msgid "Display thumbnails inline with posts, after title"
306
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
307
 
308
+ #: admin.inc.php:357
309
  msgid "Display only thumbnails, no text"
310
  msgstr "Mostrar solamente thumbnails, no el texto"
311
 
312
+ #: admin.inc.php:361
313
  msgid "Do not display thumbnails, only text."
314
  msgstr "No mostrar thumbnails, sólo el texto"
315
 
316
+ #: admin.inc.php:365
317
  msgid "Width of the thumbnail: "
318
  msgstr ""
319
 
320
+ #: admin.inc.php:368
321
  msgid "Height of the thumbnail: "
322
  msgstr ""
323
 
324
+ #: admin.inc.php:371
325
  msgid "Style attributes / Width and Height HTML attributes:"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:375
329
  msgid ""
330
  "Style attributes are used for width and height. <code>style=\"max-width:"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:379
334
  msgid ""
335
  "HTML width and height attributes are used for width and height. <code>width="
336
  "\""
337
  msgstr ""
338
 
339
+ #: admin.inc.php:383
340
  msgid "Use timthumb to generate thumbnails? "
341
  msgstr ""
342
 
346
  "\">timthumb</a> will be used to generate thumbnails"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:389
350
  #, fuzzy
351
  msgid "Post thumbnail meta field name: "
352
  msgstr "Los parámetros del thumbnail:"
353
 
354
+ #: admin.inc.php:392
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:395
361
  #, fuzzy
362
  msgid ""
363
  "If the postmeta is not set, then should the plugin extract the first image "
368
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
369
  "tamaño de archivo "
370
 
371
+ #: admin.inc.php:398
372
  #, fuzzy
373
  msgid ""
374
  "This could slow down the loading of your page if the first image in the "
379
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
380
  "tamaño de archivo "
381
 
382
+ #: admin.inc.php:401
383
  msgid "Use default thumbnail? "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:404
387
  msgid ""
388
  "If checked, when no thumbnail is found, show a default one from the URL "
389
  "below. If not checked and no thumbnail is found, no image will be shown."
393
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
394
  "hay que mostrarla."
395
 
396
+ #: admin.inc.php:407
397
  msgid "Default thumbnail: "
398
  msgstr ""
399
 
400
+ #: admin.inc.php:410
401
  msgid ""
402
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
403
  "then it will check the meta field. If this is not available, then it will "
404
  "show the default image as specified above"
405
  msgstr ""
406
 
407
+ #: admin.inc.php:417
408
  msgid "Custom Styles"
409
  msgstr ""
410
 
411
+ #: admin.inc.php:420
412
  msgid "Custom CSS to add to header:"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:423
416
  msgid ""
417
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
418
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
419
  "available CSS classes to style."
420
  msgstr ""
421
 
422
+ #: admin.inc.php:430
423
  msgid "Maintenance"
424
  msgstr ""
425
 
426
+ #: admin.inc.php:434
427
  msgid ""
428
  "Over time the Daily Top 10 database grows in size, which reduces the "
429
  "performance of the plugin. Cleaning the database at regular intervals could "
430
  "improve performance, especially on high traffic blogs."
431
  msgstr ""
432
 
433
+ #: admin.inc.php:435
434
  msgid ""
435
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
436
  "everytime the job is rescheduled (i.e. you change the settings below). This "
437
  "causes the daily posts table to reset."
438
  msgstr ""
439
 
440
+ #: admin.inc.php:438
441
  msgid "Enable scheduled maintenance of daily tables:"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:442
445
  msgid "Time to run maintenance"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:445
449
  msgid "How often should the maintenance be run:"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:449
453
  msgid "Daily"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:453
457
  msgid "Weekly"
458
  msgstr ""
459
 
460
+ #: admin.inc.php:457
461
  msgid "Fortnightly"
462
  msgstr ""
463
 
464
+ #: admin.inc.php:461
465
  msgid "Monthly"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:470
469
  msgid "The cron job has been scheduled. Maintenance will run "
470
  msgstr ""
471
 
472
+ #: admin.inc.php:475
473
  msgid "The cron job is missing. Please resave this page to add the job"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:480
477
  msgid "Maintenance is turned off"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:488
481
  #, fuzzy
482
  msgid "Save Options"
483
  msgstr "Los parametros"
484
 
485
+ #: admin.inc.php:489
486
  #, fuzzy
487
  msgid "Default Options"
488
  msgstr "Los Parámetros Resultantes"
489
 
490
+ #: admin.inc.php:489
491
  msgid "Do you want to set options to Default?"
492
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
493
 
494
+ #: admin.inc.php:493
495
  msgid "Reset count"
496
  msgstr "Reiniciar los ajustes"
497
 
498
+ #: admin.inc.php:496
499
  msgid ""
500
  "This cannot be reversed. Make sure that your database has been backed up "
501
  "before proceeding"
503
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
504
  "sido creada una copia de seguridad para su base de datos."
505
 
506
+ #: admin.inc.php:499
507
  #, fuzzy
508
  msgid "Reset Popular Posts"
509
  msgstr "Los posts más populares"
510
 
511
+ #: admin.inc.php:499
512
  msgid "Are you sure you want to reset the popular posts?"
513
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
514
 
515
+ #: admin.inc.php:500
516
  #, fuzzy
517
  msgid "Reset Daily Popular Posts"
518
  msgstr "Los posts diarios más populares"
519
 
520
+ #: admin.inc.php:500
521
  msgid "Are you sure you want to reset the daily popular posts?"
522
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
523
 
524
+ #: admin.inc.php:501
525
  msgid "Clear duplicates"
526
  msgstr ""
527
 
528
+ #: admin.inc.php:501
529
  msgid "This will delete the duplicate entries in the tables. Proceed?"
530
  msgstr ""
531
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
532
 
533
+ #: admin.inc.php:544 admin.inc.php:929
534
  msgid "Popular Posts"
535
  msgstr "Los posts más populares"
536
 
537
+ #: admin.inc.php:544 admin.inc.php:631
538
  msgid "Daily Popular Posts"
539
  msgstr "Los posts diarios más populares"
540
 
541
+ #: admin.inc.php:572
542
  msgid "Support the development"
543
  msgstr "Apoyar al elaborador"
544
 
545
+ #: admin.inc.php:580
546
  msgid "Enter amount in USD: "
547
  msgstr "Ingresar las cifras en USD"
548
 
549
+ #: admin.inc.php:584
550
  msgid "Send your donation to the author of"
551
  msgstr "Enviar su subvención al autor"
552
 
553
+ #: admin.inc.php:590
554
  msgid "Follow us"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:596
558
  #, fuzzy
559
  msgid "Quick Links"
560
  msgstr "Enlaces rápidos"
561
 
562
+ #: admin.inc.php:598
563
  #, fuzzy
564
  msgid "Top 10 plugin page"
565
  msgstr "página plugin"
566
 
567
+ #: admin.inc.php:599
568
  msgid "Other plugins"
569
  msgstr "Otros plugins"
570
 
571
+ #: admin.inc.php:600
572
  msgid "Ajay's blog"
573
  msgstr "Blog de Ajay"
574
 
575
+ #: admin.inc.php:601 top-10.php:1147
576
  msgid "Support"
577
  msgstr "Apoyo"
578
 
579
+ #: admin.inc.php:605
580
  msgid "Recent developments"
581
  msgstr "Evolución reciente"
582
 
583
+ #: admin.inc.php:622 admin.inc.php:625
584
  #, fuzzy
585
  msgid "Top 10 Settings"
586
  msgstr "Los ajustes"
587
 
588
+ #: admin.inc.php:622
589
  msgid "Top 10"
590
  msgstr "Тоp 10"
591
 
592
+ #: admin.inc.php:628
593
  #, fuzzy
594
  msgid "Overall Popular Posts"
595
  msgstr "Ver los posts más populares"
596
 
597
+ #: admin.inc.php:799
598
  msgid "Results"
599
  msgstr "Resultados"
600
 
601
+ #: admin.inc.php:801 admin.inc.php:807
602
  msgid "of"
603
  msgstr "de, a "
604
 
605
+ #: admin.inc.php:805
606
  msgid "Page"
607
  msgstr "La página"
608
 
609
+ #: admin.inc.php:819
610
  msgid "View Daily Popular Posts"
611
  msgstr "Ver los posts diarios más populares"
612
 
613
+ #: admin.inc.php:822 admin.inc.php:835
614
  msgid "Results per-page:"
615
  msgstr "Los resultados por página:"
616
 
617
+ #: admin.inc.php:832
618
  msgid "View Overall Popular Posts"
619
  msgstr "Ver los posts más populares"
620
 
621
+ #: admin.inc.php:861
622
  msgid "Previous"
623
  msgstr "Precedentes"
624
 
625
+ #: admin.inc.php:889
626
  msgid "Next"
627
  msgstr "Siguientes"
628
 
629
+ #: admin.inc.php:930
630
  msgid "Daily Popular"
631
  msgstr "Diario Populares"
632
 
633
+ #: admin.inc.php:946
634
  #, fuzzy
635
  msgid "Total Views"
636
  msgstr "Total/Visitas de hoy"
637
 
638
+ #: admin.inc.php:947
639
  #, fuzzy
640
  msgid "Today's Views"
641
  msgstr "Total/Visitas de hoy"
642
 
643
+ #: top-10.php:415
644
+ msgid " by "
645
  msgstr ""
646
 
647
+ #: top-10.php:501
648
  msgid "Display the posts popular this week"
649
  msgstr "Mostrar los posts populares de esta semana"
650
 
651
+ #: top-10.php:502
652
  #, fuzzy
653
  msgid "Popular Posts [Top 10]"
654
  msgstr "Los posts más populares"
655
 
656
+ #: top-10.php:519
657
  msgid "Title"
658
  msgstr ""
659
 
660
+ #: top-10.php:524
661
  msgid "No. of posts"
662
  msgstr ""
663
 
664
+ #: top-10.php:529
665
  msgid "Overall"
666
  msgstr ""
667
 
668
+ #: top-10.php:530
669
  msgid "Custom time period (Enter below)"
670
  msgstr ""
671
 
672
+ #: top-10.php:535
673
  msgid "Range in number of days (applies only to custom option above)"
674
  msgstr ""
675
 
676
+ #: top-10.php:540
677
  #, fuzzy
678
  msgid " Show excerpt?"
679
  msgstr "¿Mostrar un fragmento del post en la lista?"
680
 
681
+ #: top-10.php:545
682
  msgid " Show author?"
683
  msgstr ""
684
 
685
+ #: top-10.php:550
686
  #, fuzzy
687
  msgid " Show date?"
688
  msgstr "¿Mostrar un fragmento del post en la lista?"
689
 
690
+ #: top-10.php:554
691
  #, fuzzy
692
  msgid "Thumbnail options"
693
  msgstr "Los parámetros del thumbnail:"
694
 
695
+ #: top-10.php:556
696
  #, fuzzy
697
  msgid "Thumbnails inline, before title"
698
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
699
 
700
+ #: top-10.php:557
701
  #, fuzzy
702
  msgid "Thumbnails inline, after title"
703
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
704
 
705
+ #: top-10.php:558
706
  #, fuzzy
707
  msgid "Only thumbnails, no text"
708
  msgstr "Mostrar solamente thumbnails, no el texto"
709
 
710
+ #: top-10.php:559
711
  #, fuzzy
712
  msgid "No thumbnails, only text."
713
  msgstr "No mostrar thumbnails, sólo el texto"
714
 
715
+ #: top-10.php:564
716
  #, fuzzy
717
  msgid "Thumbnail height"
718
  msgstr "Los parámetros del thumbnail:"
719
 
720
+ #: top-10.php:569
721
  #, fuzzy
722
  msgid "Thumbnail width"
723
  msgstr "Los parámetros del thumbnail:"
724
 
725
+ #: top-10.php:670
726
  msgid "<h3>Popular Posts</h3>"
727
  msgstr "Los posts populares"
728
 
729
+ #: top-10.php:671
730
  msgid "<h3>Daily Popular</h3>"
731
  msgstr "Diario Populares"
732
 
733
+ #: top-10.php:672
734
  #, fuzzy
735
  msgid "No top posts yet"
736
  msgstr "Reiniciar el Top de los 10 posts más populares"
737
 
738
+ #: top-10.php:1113
739
  msgid "Once Weekly"
740
  msgstr ""
741
 
742
+ #: top-10.php:1114
743
  msgid "Once Fortnightly"
744
  msgstr ""
745
 
746
+ #: top-10.php:1115
747
  msgid "Once Monthly"
748
  msgstr ""
749
 
750
+ #: top-10.php:1135
751
  msgid "Settings"
752
  msgstr "Los ajustes"
753
 
754
+ #: top-10.php:1148
755
  msgid "Donate"
756
  msgstr "Subvencionar"
757
 
languages/tptn-fr_FR.mo CHANGED
Binary file
languages/tptn-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,131 +15,131 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Les options sont sauvegardées avec succès"
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Options par défaut sont définies"
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Le nombre de populaires sur le forum"
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
77
 
78
- #: admin.inc.php:200
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:211
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:215
87
  msgid "Exclude Categories: "
88
  msgstr "Exclure les catégories:"
89
 
90
- #: admin.inc.php:230
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
- #: admin.inc.php:235
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Afficher le nombre des visionnages du message?"
101
 
102
- #: admin.inc.php:237
103
  msgid "Posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:238
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Page"
110
 
111
- #: admin.inc.php:239
112
  msgid "Home page"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
- #: admin.inc.php:241
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
- #: admin.inc.php:242
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
- #: admin.inc.php:243
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
- #: admin.inc.php:244
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
- #: admin.inc.php:247
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
- #: admin.inc.php:249
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
@@ -147,11 +147,11 @@ msgid ""
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
- #: admin.inc.php:252
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
- #: admin.inc.php:254
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
@@ -159,24 +159,24 @@ msgstr ""
159
  "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
160
  "la page"
161
 
162
- #: admin.inc.php:257
163
  msgid "Track visits of authors on their own posts?"
164
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
165
 
166
- #: admin.inc.php:260
167
  #, fuzzy
168
  msgid "Track visits of admins?"
169
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
170
 
171
- #: admin.inc.php:263
172
  msgid "Display page views on Posts > All Posts in Admin"
173
  msgstr ""
174
 
175
- #: admin.inc.php:266
176
  msgid "Link to Top 10 plugin page"
177
  msgstr ""
178
 
179
- #: admin.inc.php:268
180
  #, fuzzy
181
  msgid ""
182
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -186,16 +186,16 @@ msgstr ""
186
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
187
  "mais nous vous y remercions!"
188
 
189
- #: admin.inc.php:275
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "Paramètres de sortie"
193
 
194
- #: admin.inc.php:278
195
  msgid "Format to display the count in: "
196
  msgstr "Format d’affichage de la quantité en:"
197
 
198
- #: admin.inc.php:280
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -208,137 +208,137 @@ msgstr ""
208
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
209
  "123 times, 23 visits today)</code>"
210
 
211
- #: admin.inc.php:283
212
  msgid "Title of popular posts: "
213
  msgstr "Les en-têtes des messages populaires"
214
 
215
- #: admin.inc.php:286
216
  msgid "Title of daily popular posts: "
217
  msgstr "Les en-têtes des messages populaires journaliers"
218
 
219
- #: admin.inc.php:289
220
  msgid "When there are no posts, what should be shown?"
221
  msgstr ""
222
 
223
- #: admin.inc.php:293
224
  msgid "Blank Output"
225
  msgstr ""
226
 
227
- #: admin.inc.php:297
228
  msgid "Display:"
229
  msgstr ""
230
 
231
- #: admin.inc.php:301
232
  msgid "Show post excerpt in list?"
233
  msgstr "Afficher le fragment du message dans la liste?"
234
 
235
- #: admin.inc.php:304
236
  msgid "Length of excerpt (in words): "
237
  msgstr "Longueur du fragment (mots):"
238
 
239
- #: admin.inc.php:307
240
  #, fuzzy
241
  msgid "Show post author in list?"
242
  msgstr "Afficher le fragment du message dans la liste?"
243
 
244
- #: admin.inc.php:310
245
  #, fuzzy
246
  msgid "Show post date in list?"
247
  msgstr "Afficher le fragment du message dans la liste?"
248
 
249
- #: admin.inc.php:313
250
  msgid "Limit post title length (in characters)"
251
  msgstr ""
252
 
253
- #: admin.inc.php:316
254
  msgid "Display number of page views in popular lists?"
255
  msgstr ""
256
  "Afficher le nombre des visionnages des pages dans les listes de popularité?"
257
 
258
- #: admin.inc.php:319
259
  msgid "Open links in new window"
260
  msgstr ""
261
 
262
- #: admin.inc.php:322
263
  msgid "Add nofollow attribute to links in the list"
264
  msgstr ""
265
 
266
- #: admin.inc.php:325
267
  msgid "Exclude display of related posts on these posts / pages"
268
  msgstr ""
269
 
270
- #: admin.inc.php:328
271
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
272
  msgstr ""
273
 
274
- #: admin.inc.php:331
275
  msgid "Customize the output:"
276
  msgstr "Paramétrer la sortie:"
277
 
278
- #: admin.inc.php:333
279
  msgid "HTML to display before the list of posts: "
280
  msgstr "HTML d'affichage avant la liste des messages:"
281
 
282
- #: admin.inc.php:336
283
  msgid "HTML to display before each list item: "
284
  msgstr "HTML d'affichage avant chaque élément de la liste:"
285
 
286
- #: admin.inc.php:339
287
  msgid "HTML to display after each list item: "
288
  msgstr "HTML d'affichage après chaque élément de la liste:"
289
 
290
- #: admin.inc.php:342
291
  msgid "HTML to display after the list of posts: "
292
  msgstr "HTML d'affichage après la liste des messages:"
293
 
294
- #: admin.inc.php:345
295
  msgid "Post thumbnail options:"
296
  msgstr "Options thumbnail des messages:"
297
 
298
- #: admin.inc.php:347
299
  msgid "Location of post thumbnail:"
300
  msgstr ""
301
 
302
- #: admin.inc.php:351
303
  msgid "Display thumbnails inline with posts, before title"
304
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
305
 
306
- #: admin.inc.php:355
307
  msgid "Display thumbnails inline with posts, after title"
308
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
309
 
310
- #: admin.inc.php:359
311
  msgid "Display only thumbnails, no text"
312
  msgstr "Afficher uniquement le thumbnail, sans le texte"
313
 
314
- #: admin.inc.php:363
315
  msgid "Do not display thumbnails, only text."
316
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
317
 
318
- #: admin.inc.php:367
319
  msgid "Width of the thumbnail: "
320
  msgstr ""
321
 
322
- #: admin.inc.php:370
323
  msgid "Height of the thumbnail: "
324
  msgstr ""
325
 
326
- #: admin.inc.php:373
327
  msgid "Style attributes / Width and Height HTML attributes:"
328
  msgstr ""
329
 
330
- #: admin.inc.php:377
331
  msgid ""
332
  "Style attributes are used for width and height. <code>style=\"max-width:"
333
  msgstr ""
334
 
335
- #: admin.inc.php:381
336
  msgid ""
337
  "HTML width and height attributes are used for width and height. <code>width="
338
  "\""
339
  msgstr ""
340
 
341
- #: admin.inc.php:385
342
  msgid "Use timthumb to generate thumbnails? "
343
  msgstr ""
344
 
@@ -348,18 +348,18 @@ msgid ""
348
  "\">timthumb</a> will be used to generate thumbnails"
349
  msgstr ""
350
 
351
- #: admin.inc.php:388
352
  #, fuzzy
353
  msgid "Post thumbnail meta field name: "
354
  msgstr "Options thumbnail des messages:"
355
 
356
- #: admin.inc.php:389
357
  msgid ""
358
  "The value of this field should contain the image source and is set in the "
359
  "<em>Add New Post</em> screen"
360
  msgstr ""
361
 
362
- #: admin.inc.php:391
363
  #, fuzzy
364
  msgid ""
365
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -370,7 +370,7 @@ msgstr ""
370
  "première image de la résolution correspondante du fichier est de taille "
371
  "supérieure"
372
 
373
- #: admin.inc.php:392
374
  #, fuzzy
375
  msgid ""
376
  "This could slow down the loading of your page if the first image in the "
@@ -381,11 +381,11 @@ msgstr ""
381
  "première image de la résolution correspondante du fichier est de taille "
382
  "supérieure"
383
 
384
- #: admin.inc.php:394
385
  msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
- #: admin.inc.php:395
389
  msgid ""
390
  "If checked, when no thumbnail is found, show a default one from the URL "
391
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -394,109 +394,109 @@ msgstr ""
394
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
395
  "été retrouvé, ne pas afficher l'image."
396
 
397
- #: admin.inc.php:397
398
  msgid "Default thumbnail: "
399
  msgstr ""
400
 
401
- #: admin.inc.php:398
402
  msgid ""
403
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
404
  "then it will check the meta field. If this is not available, then it will "
405
  "show the default image as specified above"
406
  msgstr ""
407
 
408
- #: admin.inc.php:404
409
  msgid "Custom Styles"
410
  msgstr ""
411
 
412
- #: admin.inc.php:407
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
- #: admin.inc.php:410
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
420
  "available CSS classes to style."
421
  msgstr ""
422
 
423
- #: admin.inc.php:417
424
  msgid "Maintenance"
425
  msgstr ""
426
 
427
- #: admin.inc.php:421
428
  msgid ""
429
  "Over time the Daily Top 10 database grows in size, which reduces the "
430
  "performance of the plugin. Cleaning the database at regular intervals could "
431
  "improve performance, especially on high traffic blogs."
432
  msgstr ""
433
 
434
- #: admin.inc.php:422
435
  msgid ""
436
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
437
  "everytime the job is rescheduled (i.e. you change the settings below). This "
438
  "causes the daily posts table to reset."
439
  msgstr ""
440
 
441
- #: admin.inc.php:425
442
  msgid "Enable scheduled maintenance of daily tables:"
443
  msgstr ""
444
 
445
- #: admin.inc.php:429
446
  msgid "Time to run maintenance"
447
  msgstr ""
448
 
449
- #: admin.inc.php:432
450
  msgid "How often should the maintenance be run:"
451
  msgstr ""
452
 
453
- #: admin.inc.php:436
454
  msgid "Daily"
455
  msgstr ""
456
 
457
- #: admin.inc.php:440
458
  msgid "Weekly"
459
  msgstr ""
460
 
461
- #: admin.inc.php:444
462
  msgid "Fortnightly"
463
  msgstr ""
464
 
465
- #: admin.inc.php:448
466
  msgid "Monthly"
467
  msgstr ""
468
 
469
- #: admin.inc.php:457
470
  msgid "The cron job has been scheduled. Maintenance will run "
471
  msgstr ""
472
 
473
- #: admin.inc.php:462
474
  msgid "The cron job is missing. Please resave this page to add the job"
475
  msgstr ""
476
 
477
- #: admin.inc.php:467
478
  msgid "Maintenance is turned off"
479
  msgstr ""
480
 
481
- #: admin.inc.php:475
482
  #, fuzzy
483
  msgid "Save Options"
484
  msgstr "Options:"
485
 
486
- #: admin.inc.php:476
487
  #, fuzzy
488
  msgid "Default Options"
489
  msgstr "Paramètres de sortie"
490
 
491
- #: admin.inc.php:476
492
  msgid "Do you want to set options to Default?"
493
  msgstr "Définir les paramètres par défaut?"
494
 
495
- #: admin.inc.php:480
496
  msgid "Reset count"
497
  msgstr "Réinitialiser le compteur"
498
 
499
- #: admin.inc.php:483
500
  msgid ""
501
  "This cannot be reversed. Make sure that your database has been backed up "
502
  "before proceeding"
@@ -504,255 +504,255 @@ msgstr ""
504
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
505
  "sauvegardée avant de poursuivre."
506
 
507
- #: admin.inc.php:486
508
  #, fuzzy
509
  msgid "Reset Popular Posts"
510
  msgstr "Postes populaires"
511
 
512
- #: admin.inc.php:486
513
  msgid "Are you sure you want to reset the popular posts?"
514
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
515
 
516
- #: admin.inc.php:487
517
  #, fuzzy
518
  msgid "Reset Daily Popular Posts"
519
  msgstr "Postes populaires journaliers"
520
 
521
- #: admin.inc.php:487
522
  msgid "Are you sure you want to reset the daily popular posts?"
523
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
524
 
525
- #: admin.inc.php:488
526
  msgid "Clear duplicates"
527
  msgstr ""
528
 
529
- #: admin.inc.php:488
530
  msgid "This will delete the duplicate entries in the tables. Proceed?"
531
  msgstr ""
532
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
533
 
534
- #: admin.inc.php:531 admin.inc.php:906
535
  msgid "Popular Posts"
536
  msgstr "Postes populaires"
537
 
538
- #: admin.inc.php:531 admin.inc.php:618
539
  msgid "Daily Popular Posts"
540
  msgstr "Postes populaires journaliers"
541
 
542
- #: admin.inc.php:559
543
  msgid "Support the development"
544
  msgstr "Soutenir le projet"
545
 
546
- #: admin.inc.php:567
547
  msgid "Enter amount in USD: "
548
  msgstr "Saisir le montant en dollars US"
549
 
550
- #: admin.inc.php:571
551
  msgid "Send your donation to the author of"
552
  msgstr "Envoyer sa dotation à l'auteur"
553
 
554
- #: admin.inc.php:577
555
  msgid "Follow us"
556
  msgstr ""
557
 
558
- #: admin.inc.php:583
559
  #, fuzzy
560
  msgid "Quick Links"
561
  msgstr "Liens rapides"
562
 
563
- #: admin.inc.php:585
564
  #, fuzzy
565
  msgid "Top 10 plugin page"
566
  msgstr "Page de plugin"
567
 
568
- #: admin.inc.php:586
569
  msgid "Other plugins"
570
  msgstr "Autres plugins"
571
 
572
- #: admin.inc.php:587
573
  msgid "Ajay's blog"
574
  msgstr "Blog Ajay"
575
 
576
- #: admin.inc.php:588 top-10.php:1094
577
  msgid "Support"
578
  msgstr "Service d'assistance"
579
 
580
- #: admin.inc.php:592
581
  msgid "Recent developments"
582
  msgstr "Les derniers projets"
583
 
584
- #: admin.inc.php:609 admin.inc.php:612
585
  #, fuzzy
586
  msgid "Top 10 Settings"
587
  msgstr "Paramètres"
588
 
589
- #: admin.inc.php:609
590
  msgid "Top 10"
591
  msgstr "Тоp 10"
592
 
593
- #: admin.inc.php:615
594
  #, fuzzy
595
  msgid "Overall Popular Posts"
596
  msgstr "Voir tous les postes populaires"
597
 
598
- #: admin.inc.php:786
599
  msgid "Results"
600
  msgstr "Résultats"
601
 
602
- #: admin.inc.php:788 admin.inc.php:794
603
  msgid "of"
604
  msgstr "de, du, de la, des"
605
 
606
- #: admin.inc.php:792
607
  msgid "Page"
608
  msgstr "Page"
609
 
610
- #: admin.inc.php:806
611
  msgid "View Daily Popular Posts"
612
  msgstr "Voir les postes populaires journaliers"
613
 
614
- #: admin.inc.php:809 admin.inc.php:822
615
  msgid "Results per-page:"
616
  msgstr "Résultats par page:"
617
 
618
- #: admin.inc.php:819
619
  msgid "View Overall Popular Posts"
620
  msgstr "Voir tous les postes populaires"
621
 
622
- #: admin.inc.php:848
623
  msgid "Previous"
624
  msgstr "Précédente"
625
 
626
- #: admin.inc.php:866
627
  msgid "Next"
628
  msgstr "Suivante"
629
 
630
- #: admin.inc.php:907
631
  msgid "Daily Popular"
632
  msgstr "Populaires journaliers"
633
 
634
- #: admin.inc.php:923
635
  #, fuzzy
636
  msgid "Total Views"
637
  msgstr "Total/aujourd'hui visionnages"
638
 
639
- #: admin.inc.php:924
640
  #, fuzzy
641
  msgid "Today's Views"
642
  msgstr "Total/aujourd'hui visionnages"
643
 
644
- #: top-10.php:366
645
- msgid " Posted by "
646
  msgstr ""
647
 
648
- #: top-10.php:448
649
  msgid "Display the posts popular this week"
650
  msgstr "Afficher les postes populaires de la semaine"
651
 
652
- #: top-10.php:449
653
  #, fuzzy
654
  msgid "Popular Posts [Top 10]"
655
  msgstr "Postes populaires"
656
 
657
- #: top-10.php:466
658
  msgid "Title"
659
  msgstr ""
660
 
661
- #: top-10.php:471
662
  msgid "No. of posts"
663
  msgstr ""
664
 
665
- #: top-10.php:476
666
  msgid "Overall"
667
  msgstr ""
668
 
669
- #: top-10.php:477
670
  msgid "Custom time period (Enter below)"
671
  msgstr ""
672
 
673
- #: top-10.php:482
674
  msgid "Range in number of days (applies only to custom option above)"
675
  msgstr ""
676
 
677
- #: top-10.php:487
678
  #, fuzzy
679
  msgid " Show excerpt?"
680
  msgstr "Afficher le fragment du message dans la liste?"
681
 
682
- #: top-10.php:492
683
  msgid " Show author?"
684
  msgstr ""
685
 
686
- #: top-10.php:497
687
  #, fuzzy
688
  msgid " Show date?"
689
  msgstr "Afficher le fragment du message dans la liste?"
690
 
691
- #: top-10.php:501
692
  #, fuzzy
693
  msgid "Thumbnail options"
694
  msgstr "Options thumbnail des messages:"
695
 
696
- #: top-10.php:503
697
  #, fuzzy
698
  msgid "Thumbnails inline, before title"
699
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
700
 
701
- #: top-10.php:504
702
  #, fuzzy
703
  msgid "Thumbnails inline, after title"
704
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
705
 
706
- #: top-10.php:505
707
  #, fuzzy
708
  msgid "Only thumbnails, no text"
709
  msgstr "Afficher uniquement le thumbnail, sans le texte"
710
 
711
- #: top-10.php:506
712
  #, fuzzy
713
  msgid "No thumbnails, only text."
714
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
715
 
716
- #: top-10.php:511
717
  #, fuzzy
718
  msgid "Thumbnail height"
719
  msgstr "Options thumbnail des messages:"
720
 
721
- #: top-10.php:516
722
  #, fuzzy
723
  msgid "Thumbnail width"
724
  msgstr "Options thumbnail des messages:"
725
 
726
- #: top-10.php:617
727
  msgid "<h3>Popular Posts</h3>"
728
  msgstr "<h3>Postes populaires</h3>"
729
 
730
- #: top-10.php:618
731
  msgid "<h3>Daily Popular</h3>"
732
  msgstr "<h3>Populaires Journaliers</h3>"
733
 
734
- #: top-10.php:619
735
  #, fuzzy
736
  msgid "No top posts yet"
737
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
738
 
739
- #: top-10.php:1060
740
  msgid "Once Weekly"
741
  msgstr ""
742
 
743
- #: top-10.php:1061
744
  msgid "Once Fortnightly"
745
  msgstr ""
746
 
747
- #: top-10.php:1062
748
  msgid "Once Monthly"
749
  msgstr ""
750
 
751
- #: top-10.php:1082
752
  msgid "Settings"
753
  msgstr "Paramètres"
754
 
755
- #: top-10.php:1095
756
  msgid "Donate"
757
  msgstr "Conribuer"
758
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Les options sont sauvegardées avec succès"
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Options par défaut sont définies"
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Le nombre de populaires sur le forum"
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
77
 
78
+ #: admin.inc.php:198
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:209
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
+ #: admin.inc.php:213
87
  msgid "Exclude Categories: "
88
  msgstr "Exclure les catégories:"
89
 
90
+ #: admin.inc.php:228
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:233
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Afficher le nombre des visionnages du message?"
101
 
102
+ #: admin.inc.php:235
103
  msgid "Posts"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:236
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Page"
110
 
111
+ #: admin.inc.php:237
112
  msgid "Home page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:238
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:239
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:240
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:241
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:242
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:245
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:247
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:250
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:252
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
159
  "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
160
  "la page"
161
 
162
+ #: admin.inc.php:255
163
  msgid "Track visits of authors on their own posts?"
164
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
165
 
166
+ #: admin.inc.php:258
167
  #, fuzzy
168
  msgid "Track visits of admins?"
169
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
170
 
171
+ #: admin.inc.php:261
172
  msgid "Display page views on Posts > All Posts in Admin"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:264
176
  msgid "Link to Top 10 plugin page"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:266
180
  #, fuzzy
181
  msgid ""
182
  "A link to the plugin is added as an extra list item to the list of popular "
186
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
187
  "mais nous vous y remercions!"
188
 
189
+ #: admin.inc.php:273
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "Paramètres de sortie"
193
 
194
+ #: admin.inc.php:276
195
  msgid "Format to display the count in: "
196
  msgstr "Format d’affichage de la quantité en:"
197
 
198
+ #: admin.inc.php:278
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
208
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
209
  "123 times, 23 visits today)</code>"
210
 
211
+ #: admin.inc.php:281
212
  msgid "Title of popular posts: "
213
  msgstr "Les en-têtes des messages populaires"
214
 
215
+ #: admin.inc.php:284
216
  msgid "Title of daily popular posts: "
217
  msgstr "Les en-têtes des messages populaires journaliers"
218
 
219
+ #: admin.inc.php:287
220
  msgid "When there are no posts, what should be shown?"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  msgid "Blank Output"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:295
228
  msgid "Display:"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:299
232
  msgid "Show post excerpt in list?"
233
  msgstr "Afficher le fragment du message dans la liste?"
234
 
235
+ #: admin.inc.php:302
236
  msgid "Length of excerpt (in words): "
237
  msgstr "Longueur du fragment (mots):"
238
 
239
+ #: admin.inc.php:305
240
  #, fuzzy
241
  msgid "Show post author in list?"
242
  msgstr "Afficher le fragment du message dans la liste?"
243
 
244
+ #: admin.inc.php:308
245
  #, fuzzy
246
  msgid "Show post date in list?"
247
  msgstr "Afficher le fragment du message dans la liste?"
248
 
249
+ #: admin.inc.php:311
250
  msgid "Limit post title length (in characters)"
251
  msgstr ""
252
 
253
+ #: admin.inc.php:314
254
  msgid "Display number of page views in popular lists?"
255
  msgstr ""
256
  "Afficher le nombre des visionnages des pages dans les listes de popularité?"
257
 
258
+ #: admin.inc.php:317
259
  msgid "Open links in new window"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:320
263
  msgid "Add nofollow attribute to links in the list"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:323
267
  msgid "Exclude display of related posts on these posts / pages"
268
  msgstr ""
269
 
270
+ #: admin.inc.php:326
271
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:329
275
  msgid "Customize the output:"
276
  msgstr "Paramétrer la sortie:"
277
 
278
+ #: admin.inc.php:331
279
  msgid "HTML to display before the list of posts: "
280
  msgstr "HTML d'affichage avant la liste des messages:"
281
 
282
+ #: admin.inc.php:334
283
  msgid "HTML to display before each list item: "
284
  msgstr "HTML d'affichage avant chaque élément de la liste:"
285
 
286
+ #: admin.inc.php:337
287
  msgid "HTML to display after each list item: "
288
  msgstr "HTML d'affichage après chaque élément de la liste:"
289
 
290
+ #: admin.inc.php:340
291
  msgid "HTML to display after the list of posts: "
292
  msgstr "HTML d'affichage après la liste des messages:"
293
 
294
+ #: admin.inc.php:343
295
  msgid "Post thumbnail options:"
296
  msgstr "Options thumbnail des messages:"
297
 
298
+ #: admin.inc.php:345
299
  msgid "Location of post thumbnail:"
300
  msgstr ""
301
 
302
+ #: admin.inc.php:349
303
  msgid "Display thumbnails inline with posts, before title"
304
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
305
 
306
+ #: admin.inc.php:353
307
  msgid "Display thumbnails inline with posts, after title"
308
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
309
 
310
+ #: admin.inc.php:357
311
  msgid "Display only thumbnails, no text"
312
  msgstr "Afficher uniquement le thumbnail, sans le texte"
313
 
314
+ #: admin.inc.php:361
315
  msgid "Do not display thumbnails, only text."
316
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
317
 
318
+ #: admin.inc.php:365
319
  msgid "Width of the thumbnail: "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:368
323
  msgid "Height of the thumbnail: "
324
  msgstr ""
325
 
326
+ #: admin.inc.php:371
327
  msgid "Style attributes / Width and Height HTML attributes:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:375
331
  msgid ""
332
  "Style attributes are used for width and height. <code>style=\"max-width:"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:379
336
  msgid ""
337
  "HTML width and height attributes are used for width and height. <code>width="
338
  "\""
339
  msgstr ""
340
 
341
+ #: admin.inc.php:383
342
  msgid "Use timthumb to generate thumbnails? "
343
  msgstr ""
344
 
348
  "\">timthumb</a> will be used to generate thumbnails"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:389
352
  #, fuzzy
353
  msgid "Post thumbnail meta field name: "
354
  msgstr "Options thumbnail des messages:"
355
 
356
+ #: admin.inc.php:392
357
  msgid ""
358
  "The value of this field should contain the image source and is set in the "
359
  "<em>Add New Post</em> screen"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:395
363
  #, fuzzy
364
  msgid ""
365
  "If the postmeta is not set, then should the plugin extract the first image "
370
  "première image de la résolution correspondante du fichier est de taille "
371
  "supérieure"
372
 
373
+ #: admin.inc.php:398
374
  #, fuzzy
375
  msgid ""
376
  "This could slow down the loading of your page if the first image in the "
381
  "première image de la résolution correspondante du fichier est de taille "
382
  "supérieure"
383
 
384
+ #: admin.inc.php:401
385
  msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
+ #: admin.inc.php:404
389
  msgid ""
390
  "If checked, when no thumbnail is found, show a default one from the URL "
391
  "below. If not checked and no thumbnail is found, no image will be shown."
394
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
395
  "été retrouvé, ne pas afficher l'image."
396
 
397
+ #: admin.inc.php:407
398
  msgid "Default thumbnail: "
399
  msgstr ""
400
 
401
+ #: admin.inc.php:410
402
  msgid ""
403
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
404
  "then it will check the meta field. If this is not available, then it will "
405
  "show the default image as specified above"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:417
409
  msgid "Custom Styles"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:420
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:423
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
420
  "available CSS classes to style."
421
  msgstr ""
422
 
423
+ #: admin.inc.php:430
424
  msgid "Maintenance"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:434
428
  msgid ""
429
  "Over time the Daily Top 10 database grows in size, which reduces the "
430
  "performance of the plugin. Cleaning the database at regular intervals could "
431
  "improve performance, especially on high traffic blogs."
432
  msgstr ""
433
 
434
+ #: admin.inc.php:435
435
  msgid ""
436
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
437
  "everytime the job is rescheduled (i.e. you change the settings below). This "
438
  "causes the daily posts table to reset."
439
  msgstr ""
440
 
441
+ #: admin.inc.php:438
442
  msgid "Enable scheduled maintenance of daily tables:"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:442
446
  msgid "Time to run maintenance"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:445
450
  msgid "How often should the maintenance be run:"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:449
454
  msgid "Daily"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:453
458
  msgid "Weekly"
459
  msgstr ""
460
 
461
+ #: admin.inc.php:457
462
  msgid "Fortnightly"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:461
466
  msgid "Monthly"
467
  msgstr ""
468
 
469
+ #: admin.inc.php:470
470
  msgid "The cron job has been scheduled. Maintenance will run "
471
  msgstr ""
472
 
473
+ #: admin.inc.php:475
474
  msgid "The cron job is missing. Please resave this page to add the job"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:480
478
  msgid "Maintenance is turned off"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:488
482
  #, fuzzy
483
  msgid "Save Options"
484
  msgstr "Options:"
485
 
486
+ #: admin.inc.php:489
487
  #, fuzzy
488
  msgid "Default Options"
489
  msgstr "Paramètres de sortie"
490
 
491
+ #: admin.inc.php:489
492
  msgid "Do you want to set options to Default?"
493
  msgstr "Définir les paramètres par défaut?"
494
 
495
+ #: admin.inc.php:493
496
  msgid "Reset count"
497
  msgstr "Réinitialiser le compteur"
498
 
499
+ #: admin.inc.php:496
500
  msgid ""
501
  "This cannot be reversed. Make sure that your database has been backed up "
502
  "before proceeding"
504
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
505
  "sauvegardée avant de poursuivre."
506
 
507
+ #: admin.inc.php:499
508
  #, fuzzy
509
  msgid "Reset Popular Posts"
510
  msgstr "Postes populaires"
511
 
512
+ #: admin.inc.php:499
513
  msgid "Are you sure you want to reset the popular posts?"
514
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
515
 
516
+ #: admin.inc.php:500
517
  #, fuzzy
518
  msgid "Reset Daily Popular Posts"
519
  msgstr "Postes populaires journaliers"
520
 
521
+ #: admin.inc.php:500
522
  msgid "Are you sure you want to reset the daily popular posts?"
523
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
524
 
525
+ #: admin.inc.php:501
526
  msgid "Clear duplicates"
527
  msgstr ""
528
 
529
+ #: admin.inc.php:501
530
  msgid "This will delete the duplicate entries in the tables. Proceed?"
531
  msgstr ""
532
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
533
 
534
+ #: admin.inc.php:544 admin.inc.php:929
535
  msgid "Popular Posts"
536
  msgstr "Postes populaires"
537
 
538
+ #: admin.inc.php:544 admin.inc.php:631
539
  msgid "Daily Popular Posts"
540
  msgstr "Postes populaires journaliers"
541
 
542
+ #: admin.inc.php:572
543
  msgid "Support the development"
544
  msgstr "Soutenir le projet"
545
 
546
+ #: admin.inc.php:580
547
  msgid "Enter amount in USD: "
548
  msgstr "Saisir le montant en dollars US"
549
 
550
+ #: admin.inc.php:584
551
  msgid "Send your donation to the author of"
552
  msgstr "Envoyer sa dotation à l'auteur"
553
 
554
+ #: admin.inc.php:590
555
  msgid "Follow us"
556
  msgstr ""
557
 
558
+ #: admin.inc.php:596
559
  #, fuzzy
560
  msgid "Quick Links"
561
  msgstr "Liens rapides"
562
 
563
+ #: admin.inc.php:598
564
  #, fuzzy
565
  msgid "Top 10 plugin page"
566
  msgstr "Page de plugin"
567
 
568
+ #: admin.inc.php:599
569
  msgid "Other plugins"
570
  msgstr "Autres plugins"
571
 
572
+ #: admin.inc.php:600
573
  msgid "Ajay's blog"
574
  msgstr "Blog Ajay"
575
 
576
+ #: admin.inc.php:601 top-10.php:1147
577
  msgid "Support"
578
  msgstr "Service d'assistance"
579
 
580
+ #: admin.inc.php:605
581
  msgid "Recent developments"
582
  msgstr "Les derniers projets"
583
 
584
+ #: admin.inc.php:622 admin.inc.php:625
585
  #, fuzzy
586
  msgid "Top 10 Settings"
587
  msgstr "Paramètres"
588
 
589
+ #: admin.inc.php:622
590
  msgid "Top 10"
591
  msgstr "Тоp 10"
592
 
593
+ #: admin.inc.php:628
594
  #, fuzzy
595
  msgid "Overall Popular Posts"
596
  msgstr "Voir tous les postes populaires"
597
 
598
+ #: admin.inc.php:799
599
  msgid "Results"
600
  msgstr "Résultats"
601
 
602
+ #: admin.inc.php:801 admin.inc.php:807
603
  msgid "of"
604
  msgstr "de, du, de la, des"
605
 
606
+ #: admin.inc.php:805
607
  msgid "Page"
608
  msgstr "Page"
609
 
610
+ #: admin.inc.php:819
611
  msgid "View Daily Popular Posts"
612
  msgstr "Voir les postes populaires journaliers"
613
 
614
+ #: admin.inc.php:822 admin.inc.php:835
615
  msgid "Results per-page:"
616
  msgstr "Résultats par page:"
617
 
618
+ #: admin.inc.php:832
619
  msgid "View Overall Popular Posts"
620
  msgstr "Voir tous les postes populaires"
621
 
622
+ #: admin.inc.php:861
623
  msgid "Previous"
624
  msgstr "Précédente"
625
 
626
+ #: admin.inc.php:889
627
  msgid "Next"
628
  msgstr "Suivante"
629
 
630
+ #: admin.inc.php:930
631
  msgid "Daily Popular"
632
  msgstr "Populaires journaliers"
633
 
634
+ #: admin.inc.php:946
635
  #, fuzzy
636
  msgid "Total Views"
637
  msgstr "Total/aujourd'hui visionnages"
638
 
639
+ #: admin.inc.php:947
640
  #, fuzzy
641
  msgid "Today's Views"
642
  msgstr "Total/aujourd'hui visionnages"
643
 
644
+ #: top-10.php:415
645
+ msgid " by "
646
  msgstr ""
647
 
648
+ #: top-10.php:501
649
  msgid "Display the posts popular this week"
650
  msgstr "Afficher les postes populaires de la semaine"
651
 
652
+ #: top-10.php:502
653
  #, fuzzy
654
  msgid "Popular Posts [Top 10]"
655
  msgstr "Postes populaires"
656
 
657
+ #: top-10.php:519
658
  msgid "Title"
659
  msgstr ""
660
 
661
+ #: top-10.php:524
662
  msgid "No. of posts"
663
  msgstr ""
664
 
665
+ #: top-10.php:529
666
  msgid "Overall"
667
  msgstr ""
668
 
669
+ #: top-10.php:530
670
  msgid "Custom time period (Enter below)"
671
  msgstr ""
672
 
673
+ #: top-10.php:535
674
  msgid "Range in number of days (applies only to custom option above)"
675
  msgstr ""
676
 
677
+ #: top-10.php:540
678
  #, fuzzy
679
  msgid " Show excerpt?"
680
  msgstr "Afficher le fragment du message dans la liste?"
681
 
682
+ #: top-10.php:545
683
  msgid " Show author?"
684
  msgstr ""
685
 
686
+ #: top-10.php:550
687
  #, fuzzy
688
  msgid " Show date?"
689
  msgstr "Afficher le fragment du message dans la liste?"
690
 
691
+ #: top-10.php:554
692
  #, fuzzy
693
  msgid "Thumbnail options"
694
  msgstr "Options thumbnail des messages:"
695
 
696
+ #: top-10.php:556
697
  #, fuzzy
698
  msgid "Thumbnails inline, before title"
699
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
700
 
701
+ #: top-10.php:557
702
  #, fuzzy
703
  msgid "Thumbnails inline, after title"
704
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
705
 
706
+ #: top-10.php:558
707
  #, fuzzy
708
  msgid "Only thumbnails, no text"
709
  msgstr "Afficher uniquement le thumbnail, sans le texte"
710
 
711
+ #: top-10.php:559
712
  #, fuzzy
713
  msgid "No thumbnails, only text."
714
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
715
 
716
+ #: top-10.php:564
717
  #, fuzzy
718
  msgid "Thumbnail height"
719
  msgstr "Options thumbnail des messages:"
720
 
721
+ #: top-10.php:569
722
  #, fuzzy
723
  msgid "Thumbnail width"
724
  msgstr "Options thumbnail des messages:"
725
 
726
+ #: top-10.php:670
727
  msgid "<h3>Popular Posts</h3>"
728
  msgstr "<h3>Postes populaires</h3>"
729
 
730
+ #: top-10.php:671
731
  msgid "<h3>Daily Popular</h3>"
732
  msgstr "<h3>Populaires Journaliers</h3>"
733
 
734
+ #: top-10.php:672
735
  #, fuzzy
736
  msgid "No top posts yet"
737
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
738
 
739
+ #: top-10.php:1113
740
  msgid "Once Weekly"
741
  msgstr ""
742
 
743
+ #: top-10.php:1114
744
  msgid "Once Fortnightly"
745
  msgstr ""
746
 
747
+ #: top-10.php:1115
748
  msgid "Once Monthly"
749
  msgstr ""
750
 
751
+ #: top-10.php:1135
752
  msgid "Settings"
753
  msgstr "Paramètres"
754
 
755
+ #: top-10.php:1148
756
  msgid "Donate"
757
  msgstr "Conribuer"
758
 
languages/tptn-ga_IR.mo CHANGED
Binary file
languages/tptn-ga_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
@@ -15,132 +15,132 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Roghanna shábháil go rathúil."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Roghanna leagtha chun Réamhshocrú."
33
 
34
- #: admin.inc.php:139
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Teideal an post tóir:"
38
 
39
- #: admin.inc.php:145
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Teideal ar tóir an bpost:"
43
 
44
- #: admin.inc.php:152
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
- #: admin.inc.php:173
49
  msgid "General options"
50
  msgstr ""
51
 
52
- #: admin.inc.php:177
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
- #: admin.inc.php:182
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:187
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:189
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
- #: admin.inc.php:193
72
  msgid "Number of popular posts to display: "
73
  msgstr "An líon post tóir a thaispeáint:"
74
 
75
- #: admin.inc.php:197
76
  msgid "Daily Popular should contain views of how many days? "
77
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
78
 
79
- #: admin.inc.php:200
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
- #: admin.inc.php:211
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
- #: admin.inc.php:215
88
  msgid "Exclude Categories: "
89
  msgstr ""
90
 
91
- #: admin.inc.php:230
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
- #: admin.inc.php:235
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
102
 
103
- #: admin.inc.php:237
104
  msgid "Posts"
105
  msgstr ""
106
 
107
- #: admin.inc.php:238
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Leathanach"
111
 
112
- #: admin.inc.php:239
113
  msgid "Home page"
114
  msgstr ""
115
 
116
- #: admin.inc.php:240
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
- #: admin.inc.php:241
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
- #: admin.inc.php:242
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
- #: admin.inc.php:243
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
- #: admin.inc.php:244
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
- #: admin.inc.php:247
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
- #: admin.inc.php:249
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
@@ -148,11 +148,11 @@ msgid ""
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
- #: admin.inc.php:252
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
- #: admin.inc.php:254
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
@@ -160,24 +160,24 @@ msgstr ""
160
  "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
161
  "luchtú leathanach"
162
 
163
- #: admin.inc.php:257
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
166
 
167
- #: admin.inc.php:260
168
  #, fuzzy
169
  msgid "Track visits of admins?"
170
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
171
 
172
- #: admin.inc.php:263
173
  msgid "Display page views on Posts > All Posts in Admin"
174
  msgstr ""
175
 
176
- #: admin.inc.php:266
177
  msgid "Link to Top 10 plugin page"
178
  msgstr ""
179
 
180
- #: admin.inc.php:268
181
  #, fuzzy
182
  msgid ""
183
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -186,16 +186,16 @@ msgstr ""
186
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
187
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
188
 
189
- #: admin.inc.php:275
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "roghanna"
193
 
194
- #: admin.inc.php:278
195
  msgid "Format to display the count in: "
196
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
197
 
198
- #: admin.inc.php:280
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -208,142 +208,142 @@ msgstr ""
208
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
209
  "123 amanna, 23 cuairt inniu) </ cód>"
210
 
211
- #: admin.inc.php:283
212
  msgid "Title of popular posts: "
213
  msgstr "Teideal an post tóir:"
214
 
215
- #: admin.inc.php:286
216
  msgid "Title of daily popular posts: "
217
  msgstr "Teideal ar tóir an bpost:"
218
 
219
- #: admin.inc.php:289
220
  msgid "When there are no posts, what should be shown?"
221
  msgstr ""
222
 
223
- #: admin.inc.php:293
224
  msgid "Blank Output"
225
  msgstr ""
226
 
227
- #: admin.inc.php:297
228
  msgid "Display:"
229
  msgstr ""
230
 
231
- #: admin.inc.php:301
232
  msgid "Show post excerpt in list?"
233
  msgstr ""
234
 
235
- #: admin.inc.php:304
236
  msgid "Length of excerpt (in words): "
237
  msgstr ""
238
 
239
- #: admin.inc.php:307
240
  msgid "Show post author in list?"
241
  msgstr ""
242
 
243
- #: admin.inc.php:310
244
  msgid "Show post date in list?"
245
  msgstr ""
246
 
247
- #: admin.inc.php:313
248
  msgid "Limit post title length (in characters)"
249
  msgstr ""
250
 
251
- #: admin.inc.php:316
252
  msgid "Display number of page views in popular lists?"
253
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
254
 
255
- #: admin.inc.php:319
256
  msgid "Open links in new window"
257
  msgstr ""
258
 
259
- #: admin.inc.php:322
260
  msgid "Add nofollow attribute to links in the list"
261
  msgstr ""
262
 
263
- #: admin.inc.php:325
264
  msgid "Exclude display of related posts on these posts / pages"
265
  msgstr ""
266
 
267
- #: admin.inc.php:328
268
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
269
  msgstr ""
270
 
271
- #: admin.inc.php:331
272
  msgid "Customize the output:"
273
  msgstr ""
274
 
275
- #: admin.inc.php:333
276
  #, fuzzy
277
  msgid "HTML to display before the list of posts: "
278
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
279
 
280
- #: admin.inc.php:336
281
  #, fuzzy
282
  msgid "HTML to display before each list item: "
283
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
284
 
285
- #: admin.inc.php:339
286
  #, fuzzy
287
  msgid "HTML to display after each list item: "
288
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
289
 
290
- #: admin.inc.php:342
291
  #, fuzzy
292
  msgid "HTML to display after the list of posts: "
293
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
294
 
295
- #: admin.inc.php:345
296
  msgid "Post thumbnail options:"
297
  msgstr ""
298
 
299
- #: admin.inc.php:347
300
  msgid "Location of post thumbnail:"
301
  msgstr ""
302
 
303
- #: admin.inc.php:351
304
  #, fuzzy
305
  msgid "Display thumbnails inline with posts, before title"
306
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
307
 
308
- #: admin.inc.php:355
309
  #, fuzzy
310
  msgid "Display thumbnails inline with posts, after title"
311
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
312
 
313
- #: admin.inc.php:359
314
  #, fuzzy
315
  msgid "Display only thumbnails, no text"
316
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
317
 
318
- #: admin.inc.php:363
319
  #, fuzzy
320
  msgid "Do not display thumbnails, only text."
321
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
322
 
323
- #: admin.inc.php:367
324
  msgid "Width of the thumbnail: "
325
  msgstr ""
326
 
327
- #: admin.inc.php:370
328
  msgid "Height of the thumbnail: "
329
  msgstr ""
330
 
331
- #: admin.inc.php:373
332
  msgid "Style attributes / Width and Height HTML attributes:"
333
  msgstr ""
334
 
335
- #: admin.inc.php:377
336
  msgid ""
337
  "Style attributes are used for width and height. <code>style=\"max-width:"
338
  msgstr ""
339
 
340
- #: admin.inc.php:381
341
  msgid ""
342
  "HTML width and height attributes are used for width and height. <code>width="
343
  "\""
344
  msgstr ""
345
 
346
- #: admin.inc.php:385
347
  msgid "Use timthumb to generate thumbnails? "
348
  msgstr ""
349
 
@@ -353,389 +353,389 @@ msgid ""
353
  "\">timthumb</a> will be used to generate thumbnails"
354
  msgstr ""
355
 
356
- #: admin.inc.php:388
357
  msgid "Post thumbnail meta field name: "
358
  msgstr ""
359
 
360
- #: admin.inc.php:389
361
  msgid ""
362
  "The value of this field should contain the image source and is set in the "
363
  "<em>Add New Post</em> screen"
364
  msgstr ""
365
 
366
- #: admin.inc.php:391
367
  msgid ""
368
  "If the postmeta is not set, then should the plugin extract the first image "
369
  "from the post?"
370
  msgstr ""
371
 
372
- #: admin.inc.php:392
373
  msgid ""
374
  "This could slow down the loading of your page if the first image in the "
375
  "related posts is large in file-size"
376
  msgstr ""
377
 
378
- #: admin.inc.php:394
379
  msgid "Use default thumbnail? "
380
  msgstr ""
381
 
382
- #: admin.inc.php:395
383
  msgid ""
384
  "If checked, when no thumbnail is found, show a default one from the URL "
385
  "below. If not checked and no thumbnail is found, no image will be shown."
386
  msgstr ""
387
 
388
- #: admin.inc.php:397
389
  msgid "Default thumbnail: "
390
  msgstr ""
391
 
392
- #: admin.inc.php:398
393
  msgid ""
394
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
395
  "then it will check the meta field. If this is not available, then it will "
396
  "show the default image as specified above"
397
  msgstr ""
398
 
399
- #: admin.inc.php:404
400
  msgid "Custom Styles"
401
  msgstr ""
402
 
403
- #: admin.inc.php:407
404
  msgid "Custom CSS to add to header:"
405
  msgstr ""
406
 
407
- #: admin.inc.php:410
408
  msgid ""
409
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
410
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
411
  "available CSS classes to style."
412
  msgstr ""
413
 
414
- #: admin.inc.php:417
415
  msgid "Maintenance"
416
  msgstr ""
417
 
418
- #: admin.inc.php:421
419
  msgid ""
420
  "Over time the Daily Top 10 database grows in size, which reduces the "
421
  "performance of the plugin. Cleaning the database at regular intervals could "
422
  "improve performance, especially on high traffic blogs."
423
  msgstr ""
424
 
425
- #: admin.inc.php:422
426
  msgid ""
427
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
428
  "everytime the job is rescheduled (i.e. you change the settings below). This "
429
  "causes the daily posts table to reset."
430
  msgstr ""
431
 
432
- #: admin.inc.php:425
433
  msgid "Enable scheduled maintenance of daily tables:"
434
  msgstr ""
435
 
436
- #: admin.inc.php:429
437
  msgid "Time to run maintenance"
438
  msgstr ""
439
 
440
- #: admin.inc.php:432
441
  msgid "How often should the maintenance be run:"
442
  msgstr ""
443
 
444
- #: admin.inc.php:436
445
  msgid "Daily"
446
  msgstr ""
447
 
448
- #: admin.inc.php:440
449
  msgid "Weekly"
450
  msgstr ""
451
 
452
- #: admin.inc.php:444
453
  msgid "Fortnightly"
454
  msgstr ""
455
 
456
- #: admin.inc.php:448
457
  msgid "Monthly"
458
  msgstr ""
459
 
460
- #: admin.inc.php:457
461
  msgid "The cron job has been scheduled. Maintenance will run "
462
  msgstr ""
463
 
464
- #: admin.inc.php:462
465
  msgid "The cron job is missing. Please resave this page to add the job"
466
  msgstr ""
467
 
468
- #: admin.inc.php:467
469
  msgid "Maintenance is turned off"
470
  msgstr ""
471
 
472
- #: admin.inc.php:475
473
  #, fuzzy
474
  msgid "Save Options"
475
  msgstr "roghanna"
476
 
477
- #: admin.inc.php:476
478
  #, fuzzy
479
  msgid "Default Options"
480
  msgstr "roghanna"
481
 
482
- #: admin.inc.php:476
483
  msgid "Do you want to set options to Default?"
484
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
485
 
486
- #: admin.inc.php:480
487
  msgid "Reset count"
488
  msgstr ""
489
 
490
- #: admin.inc.php:483
491
  msgid ""
492
  "This cannot be reversed. Make sure that your database has been backed up "
493
  "before proceeding"
494
  msgstr ""
495
 
496
- #: admin.inc.php:486
497
  #, fuzzy
498
  msgid "Reset Popular Posts"
499
  msgstr "Poist Coitianta"
500
 
501
- #: admin.inc.php:486
502
  msgid "Are you sure you want to reset the popular posts?"
503
  msgstr ""
504
 
505
- #: admin.inc.php:487
506
  #, fuzzy
507
  msgid "Reset Daily Popular Posts"
508
  msgstr "Poist Coitianta Laethúil"
509
 
510
- #: admin.inc.php:487
511
  msgid "Are you sure you want to reset the daily popular posts?"
512
  msgstr ""
513
 
514
- #: admin.inc.php:488
515
  msgid "Clear duplicates"
516
  msgstr ""
517
 
518
- #: admin.inc.php:488
519
  msgid "This will delete the duplicate entries in the tables. Proceed?"
520
  msgstr ""
521
 
522
- #: admin.inc.php:531 admin.inc.php:906
523
  msgid "Popular Posts"
524
  msgstr "Poist Coitianta"
525
 
526
- #: admin.inc.php:531 admin.inc.php:618
527
  msgid "Daily Popular Posts"
528
  msgstr "Poist Coitianta Laethúil"
529
 
530
- #: admin.inc.php:559
531
  #, fuzzy
532
  msgid "Support the development"
533
  msgstr "Tacú le Forbairt"
534
 
535
- #: admin.inc.php:567
536
  msgid "Enter amount in USD: "
537
  msgstr ""
538
 
539
- #: admin.inc.php:571
540
  msgid "Send your donation to the author of"
541
  msgstr ""
542
 
543
- #: admin.inc.php:577
544
  msgid "Follow us"
545
  msgstr ""
546
 
547
- #: admin.inc.php:583
548
  msgid "Quick Links"
549
  msgstr ""
550
 
551
- #: admin.inc.php:585
552
  msgid "Top 10 plugin page"
553
  msgstr ""
554
 
555
- #: admin.inc.php:586
556
  msgid "Other plugins"
557
  msgstr ""
558
 
559
- #: admin.inc.php:587
560
  msgid "Ajay's blog"
561
  msgstr ""
562
 
563
- #: admin.inc.php:588 top-10.php:1094
564
  msgid "Support"
565
  msgstr ""
566
 
567
- #: admin.inc.php:592
568
  #, fuzzy
569
  msgid "Recent developments"
570
  msgstr "Tacú le Forbairt"
571
 
572
- #: admin.inc.php:609 admin.inc.php:612
573
  #, fuzzy
574
  msgid "Top 10 Settings"
575
  msgstr "Top 10"
576
 
577
- #: admin.inc.php:609
578
  msgid "Top 10"
579
  msgstr "Top 10"
580
 
581
- #: admin.inc.php:615
582
  #, fuzzy
583
  msgid "Overall Popular Posts"
584
  msgstr "Féach ar Poist Coitianta Foriomlán"
585
 
586
- #: admin.inc.php:786
587
  msgid "Results"
588
  msgstr "torthaí"
589
 
590
- #: admin.inc.php:788 admin.inc.php:794
591
  msgid "of"
592
  msgstr "de"
593
 
594
- #: admin.inc.php:792
595
  msgid "Page"
596
  msgstr "Leathanach"
597
 
598
- #: admin.inc.php:806
599
  msgid "View Daily Popular Posts"
600
  msgstr "Féach ar Poist sa lá Coitianta"
601
 
602
- #: admin.inc.php:809 admin.inc.php:822
603
  msgid "Results per-page:"
604
  msgstr "Torthaí in aghaidh an-leathanach:"
605
 
606
- #: admin.inc.php:819
607
  msgid "View Overall Popular Posts"
608
  msgstr "Féach ar Poist Coitianta Foriomlán"
609
 
610
- #: admin.inc.php:848
611
  msgid "Previous"
612
  msgstr "roimhe Seo"
613
 
614
- #: admin.inc.php:866
615
  msgid "Next"
616
  msgstr "Ar Aghaidh"
617
 
618
- #: admin.inc.php:907
619
  msgid "Daily Popular"
620
  msgstr "laethúil Coitianta"
621
 
622
- #: admin.inc.php:923
623
  #, fuzzy
624
  msgid "Total Views"
625
  msgstr "laethúil Coitianta"
626
 
627
- #: admin.inc.php:924
628
  #, fuzzy
629
  msgid "Today's Views"
630
  msgstr "laethúil Coitianta"
631
 
632
- #: top-10.php:366
633
- msgid " Posted by "
634
  msgstr ""
635
 
636
- #: top-10.php:448
637
  msgid "Display the posts popular this week"
638
  msgstr ""
639
 
640
- #: top-10.php:449
641
  #, fuzzy
642
  msgid "Popular Posts [Top 10]"
643
  msgstr "Poist Coitianta"
644
 
645
- #: top-10.php:466
646
  msgid "Title"
647
  msgstr ""
648
 
649
- #: top-10.php:471
650
  msgid "No. of posts"
651
  msgstr ""
652
 
653
- #: top-10.php:476
654
  msgid "Overall"
655
  msgstr ""
656
 
657
- #: top-10.php:477
658
  msgid "Custom time period (Enter below)"
659
  msgstr ""
660
 
661
- #: top-10.php:482
662
  msgid "Range in number of days (applies only to custom option above)"
663
  msgstr ""
664
 
665
- #: top-10.php:487
666
  msgid " Show excerpt?"
667
  msgstr ""
668
 
669
- #: top-10.php:492
670
  msgid " Show author?"
671
  msgstr ""
672
 
673
- #: top-10.php:497
674
  msgid " Show date?"
675
  msgstr ""
676
 
677
- #: top-10.php:501
678
  msgid "Thumbnail options"
679
  msgstr ""
680
 
681
- #: top-10.php:503
682
  #, fuzzy
683
  msgid "Thumbnails inline, before title"
684
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
685
 
686
- #: top-10.php:504
687
  #, fuzzy
688
  msgid "Thumbnails inline, after title"
689
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
690
 
691
- #: top-10.php:505
692
  #, fuzzy
693
  msgid "Only thumbnails, no text"
694
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
695
 
696
- #: top-10.php:506
697
  #, fuzzy
698
  msgid "No thumbnails, only text."
699
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
700
 
701
- #: top-10.php:511
702
  msgid "Thumbnail height"
703
  msgstr ""
704
 
705
- #: top-10.php:516
706
  msgid "Thumbnail width"
707
  msgstr ""
708
 
709
- #: top-10.php:617
710
  msgid "<h3>Popular Posts</h3>"
711
  msgstr "<h3>Poist Coitianta </ h3>"
712
 
713
- #: top-10.php:618
714
  msgid "<h3>Daily Popular</h3>"
715
  msgstr "<h3> laethúil Coitianta </ h3>"
716
 
717
- #: top-10.php:619
718
  #, fuzzy
719
  msgid "No top posts yet"
720
  msgstr "Teideal an post tóir:"
721
 
722
- #: top-10.php:1060
723
  msgid "Once Weekly"
724
  msgstr ""
725
 
726
- #: top-10.php:1061
727
  msgid "Once Fortnightly"
728
  msgstr ""
729
 
730
- #: top-10.php:1062
731
  msgid "Once Monthly"
732
  msgstr ""
733
 
734
- #: top-10.php:1082
735
  msgid "Settings"
736
  msgstr ""
737
 
738
- #: top-10.php:1095
739
  msgid "Donate"
740
  msgstr ""
741
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Roghanna shábháil go rathúil."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Roghanna leagtha chun Réamhshocrú."
33
 
34
+ #: admin.inc.php:137
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Teideal an post tóir:"
38
 
39
+ #: admin.inc.php:143
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Teideal ar tóir an bpost:"
43
 
44
+ #: admin.inc.php:150
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:171
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:175
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
+ #: admin.inc.php:180
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:185
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
+ #: admin.inc.php:187
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
+ #: admin.inc.php:191
72
  msgid "Number of popular posts to display: "
73
  msgstr "An líon post tóir a thaispeáint:"
74
 
75
+ #: admin.inc.php:195
76
  msgid "Daily Popular should contain views of how many days? "
77
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
78
 
79
+ #: admin.inc.php:198
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:209
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
+ #: admin.inc.php:213
88
  msgid "Exclude Categories: "
89
  msgstr ""
90
 
91
+ #: admin.inc.php:228
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:233
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
102
 
103
+ #: admin.inc.php:235
104
  msgid "Posts"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:236
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Leathanach"
111
 
112
+ #: admin.inc.php:237
113
  msgid "Home page"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:238
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:239
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:240
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:241
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:242
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:245
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:247
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
+ #: admin.inc.php:250
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:252
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
160
  "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
161
  "luchtú leathanach"
162
 
163
+ #: admin.inc.php:255
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
166
 
167
+ #: admin.inc.php:258
168
  #, fuzzy
169
  msgid "Track visits of admins?"
170
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
171
 
172
+ #: admin.inc.php:261
173
  msgid "Display page views on Posts > All Posts in Admin"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:264
177
  msgid "Link to Top 10 plugin page"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid ""
183
  "A link to the plugin is added as an extra list item to the list of popular "
186
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
187
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
188
 
189
+ #: admin.inc.php:273
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "roghanna"
193
 
194
+ #: admin.inc.php:276
195
  msgid "Format to display the count in: "
196
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
197
 
198
+ #: admin.inc.php:278
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
208
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
209
  "123 amanna, 23 cuairt inniu) </ cód>"
210
 
211
+ #: admin.inc.php:281
212
  msgid "Title of popular posts: "
213
  msgstr "Teideal an post tóir:"
214
 
215
+ #: admin.inc.php:284
216
  msgid "Title of daily popular posts: "
217
  msgstr "Teideal ar tóir an bpost:"
218
 
219
+ #: admin.inc.php:287
220
  msgid "When there are no posts, what should be shown?"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  msgid "Blank Output"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:295
228
  msgid "Display:"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:299
232
  msgid "Show post excerpt in list?"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:302
236
  msgid "Length of excerpt (in words): "
237
  msgstr ""
238
 
239
+ #: admin.inc.php:305
240
  msgid "Show post author in list?"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:308
244
  msgid "Show post date in list?"
245
  msgstr ""
246
 
247
+ #: admin.inc.php:311
248
  msgid "Limit post title length (in characters)"
249
  msgstr ""
250
 
251
+ #: admin.inc.php:314
252
  msgid "Display number of page views in popular lists?"
253
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
254
 
255
+ #: admin.inc.php:317
256
  msgid "Open links in new window"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:320
260
  msgid "Add nofollow attribute to links in the list"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:323
264
  msgid "Exclude display of related posts on these posts / pages"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:326
268
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:329
272
  msgid "Customize the output:"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:331
276
  #, fuzzy
277
  msgid "HTML to display before the list of posts: "
278
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
279
 
280
+ #: admin.inc.php:334
281
  #, fuzzy
282
  msgid "HTML to display before each list item: "
283
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
284
 
285
+ #: admin.inc.php:337
286
  #, fuzzy
287
  msgid "HTML to display after each list item: "
288
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
289
 
290
+ #: admin.inc.php:340
291
  #, fuzzy
292
  msgid "HTML to display after the list of posts: "
293
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
294
 
295
+ #: admin.inc.php:343
296
  msgid "Post thumbnail options:"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:345
300
  msgid "Location of post thumbnail:"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:349
304
  #, fuzzy
305
  msgid "Display thumbnails inline with posts, before title"
306
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
307
 
308
+ #: admin.inc.php:353
309
  #, fuzzy
310
  msgid "Display thumbnails inline with posts, after title"
311
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
312
 
313
+ #: admin.inc.php:357
314
  #, fuzzy
315
  msgid "Display only thumbnails, no text"
316
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
317
 
318
+ #: admin.inc.php:361
319
  #, fuzzy
320
  msgid "Do not display thumbnails, only text."
321
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
322
 
323
+ #: admin.inc.php:365
324
  msgid "Width of the thumbnail: "
325
  msgstr ""
326
 
327
+ #: admin.inc.php:368
328
  msgid "Height of the thumbnail: "
329
  msgstr ""
330
 
331
+ #: admin.inc.php:371
332
  msgid "Style attributes / Width and Height HTML attributes:"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:375
336
  msgid ""
337
  "Style attributes are used for width and height. <code>style=\"max-width:"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:379
341
  msgid ""
342
  "HTML width and height attributes are used for width and height. <code>width="
343
  "\""
344
  msgstr ""
345
 
346
+ #: admin.inc.php:383
347
  msgid "Use timthumb to generate thumbnails? "
348
  msgstr ""
349
 
353
  "\">timthumb</a> will be used to generate thumbnails"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:389
357
  msgid "Post thumbnail meta field name: "
358
  msgstr ""
359
 
360
+ #: admin.inc.php:392
361
  msgid ""
362
  "The value of this field should contain the image source and is set in the "
363
  "<em>Add New Post</em> screen"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:395
367
  msgid ""
368
  "If the postmeta is not set, then should the plugin extract the first image "
369
  "from the post?"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:398
373
  msgid ""
374
  "This could slow down the loading of your page if the first image in the "
375
  "related posts is large in file-size"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:401
379
  msgid "Use default thumbnail? "
380
  msgstr ""
381
 
382
+ #: admin.inc.php:404
383
  msgid ""
384
  "If checked, when no thumbnail is found, show a default one from the URL "
385
  "below. If not checked and no thumbnail is found, no image will be shown."
386
  msgstr ""
387
 
388
+ #: admin.inc.php:407
389
  msgid "Default thumbnail: "
390
  msgstr ""
391
 
392
+ #: admin.inc.php:410
393
  msgid ""
394
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
395
  "then it will check the meta field. If this is not available, then it will "
396
  "show the default image as specified above"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:417
400
  msgid "Custom Styles"
401
  msgstr ""
402
 
403
+ #: admin.inc.php:420
404
  msgid "Custom CSS to add to header:"
405
  msgstr ""
406
 
407
+ #: admin.inc.php:423
408
  msgid ""
409
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
410
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
411
  "available CSS classes to style."
412
  msgstr ""
413
 
414
+ #: admin.inc.php:430
415
  msgid "Maintenance"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:434
419
  msgid ""
420
  "Over time the Daily Top 10 database grows in size, which reduces the "
421
  "performance of the plugin. Cleaning the database at regular intervals could "
422
  "improve performance, especially on high traffic blogs."
423
  msgstr ""
424
 
425
+ #: admin.inc.php:435
426
  msgid ""
427
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
428
  "everytime the job is rescheduled (i.e. you change the settings below). This "
429
  "causes the daily posts table to reset."
430
  msgstr ""
431
 
432
+ #: admin.inc.php:438
433
  msgid "Enable scheduled maintenance of daily tables:"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:442
437
  msgid "Time to run maintenance"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:445
441
  msgid "How often should the maintenance be run:"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:449
445
  msgid "Daily"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:453
449
  msgid "Weekly"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:457
453
  msgid "Fortnightly"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:461
457
  msgid "Monthly"
458
  msgstr ""
459
 
460
+ #: admin.inc.php:470
461
  msgid "The cron job has been scheduled. Maintenance will run "
462
  msgstr ""
463
 
464
+ #: admin.inc.php:475
465
  msgid "The cron job is missing. Please resave this page to add the job"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:480
469
  msgid "Maintenance is turned off"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:488
473
  #, fuzzy
474
  msgid "Save Options"
475
  msgstr "roghanna"
476
 
477
+ #: admin.inc.php:489
478
  #, fuzzy
479
  msgid "Default Options"
480
  msgstr "roghanna"
481
 
482
+ #: admin.inc.php:489
483
  msgid "Do you want to set options to Default?"
484
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
485
 
486
+ #: admin.inc.php:493
487
  msgid "Reset count"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:496
491
  msgid ""
492
  "This cannot be reversed. Make sure that your database has been backed up "
493
  "before proceeding"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:499
497
  #, fuzzy
498
  msgid "Reset Popular Posts"
499
  msgstr "Poist Coitianta"
500
 
501
+ #: admin.inc.php:499
502
  msgid "Are you sure you want to reset the popular posts?"
503
  msgstr ""
504
 
505
+ #: admin.inc.php:500
506
  #, fuzzy
507
  msgid "Reset Daily Popular Posts"
508
  msgstr "Poist Coitianta Laethúil"
509
 
510
+ #: admin.inc.php:500
511
  msgid "Are you sure you want to reset the daily popular posts?"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:501
515
  msgid "Clear duplicates"
516
  msgstr ""
517
 
518
+ #: admin.inc.php:501
519
  msgid "This will delete the duplicate entries in the tables. Proceed?"
520
  msgstr ""
521
 
522
+ #: admin.inc.php:544 admin.inc.php:929
523
  msgid "Popular Posts"
524
  msgstr "Poist Coitianta"
525
 
526
+ #: admin.inc.php:544 admin.inc.php:631
527
  msgid "Daily Popular Posts"
528
  msgstr "Poist Coitianta Laethúil"
529
 
530
+ #: admin.inc.php:572
531
  #, fuzzy
532
  msgid "Support the development"
533
  msgstr "Tacú le Forbairt"
534
 
535
+ #: admin.inc.php:580
536
  msgid "Enter amount in USD: "
537
  msgstr ""
538
 
539
+ #: admin.inc.php:584
540
  msgid "Send your donation to the author of"
541
  msgstr ""
542
 
543
+ #: admin.inc.php:590
544
  msgid "Follow us"
545
  msgstr ""
546
 
547
+ #: admin.inc.php:596
548
  msgid "Quick Links"
549
  msgstr ""
550
 
551
+ #: admin.inc.php:598
552
  msgid "Top 10 plugin page"
553
  msgstr ""
554
 
555
+ #: admin.inc.php:599
556
  msgid "Other plugins"
557
  msgstr ""
558
 
559
+ #: admin.inc.php:600
560
  msgid "Ajay's blog"
561
  msgstr ""
562
 
563
+ #: admin.inc.php:601 top-10.php:1147
564
  msgid "Support"
565
  msgstr ""
566
 
567
+ #: admin.inc.php:605
568
  #, fuzzy
569
  msgid "Recent developments"
570
  msgstr "Tacú le Forbairt"
571
 
572
+ #: admin.inc.php:622 admin.inc.php:625
573
  #, fuzzy
574
  msgid "Top 10 Settings"
575
  msgstr "Top 10"
576
 
577
+ #: admin.inc.php:622
578
  msgid "Top 10"
579
  msgstr "Top 10"
580
 
581
+ #: admin.inc.php:628
582
  #, fuzzy
583
  msgid "Overall Popular Posts"
584
  msgstr "Féach ar Poist Coitianta Foriomlán"
585
 
586
+ #: admin.inc.php:799
587
  msgid "Results"
588
  msgstr "torthaí"
589
 
590
+ #: admin.inc.php:801 admin.inc.php:807
591
  msgid "of"
592
  msgstr "de"
593
 
594
+ #: admin.inc.php:805
595
  msgid "Page"
596
  msgstr "Leathanach"
597
 
598
+ #: admin.inc.php:819
599
  msgid "View Daily Popular Posts"
600
  msgstr "Féach ar Poist sa lá Coitianta"
601
 
602
+ #: admin.inc.php:822 admin.inc.php:835
603
  msgid "Results per-page:"
604
  msgstr "Torthaí in aghaidh an-leathanach:"
605
 
606
+ #: admin.inc.php:832
607
  msgid "View Overall Popular Posts"
608
  msgstr "Féach ar Poist Coitianta Foriomlán"
609
 
610
+ #: admin.inc.php:861
611
  msgid "Previous"
612
  msgstr "roimhe Seo"
613
 
614
+ #: admin.inc.php:889
615
  msgid "Next"
616
  msgstr "Ar Aghaidh"
617
 
618
+ #: admin.inc.php:930
619
  msgid "Daily Popular"
620
  msgstr "laethúil Coitianta"
621
 
622
+ #: admin.inc.php:946
623
  #, fuzzy
624
  msgid "Total Views"
625
  msgstr "laethúil Coitianta"
626
 
627
+ #: admin.inc.php:947
628
  #, fuzzy
629
  msgid "Today's Views"
630
  msgstr "laethúil Coitianta"
631
 
632
+ #: top-10.php:415
633
+ msgid " by "
634
  msgstr ""
635
 
636
+ #: top-10.php:501
637
  msgid "Display the posts popular this week"
638
  msgstr ""
639
 
640
+ #: top-10.php:502
641
  #, fuzzy
642
  msgid "Popular Posts [Top 10]"
643
  msgstr "Poist Coitianta"
644
 
645
+ #: top-10.php:519
646
  msgid "Title"
647
  msgstr ""
648
 
649
+ #: top-10.php:524
650
  msgid "No. of posts"
651
  msgstr ""
652
 
653
+ #: top-10.php:529
654
  msgid "Overall"
655
  msgstr ""
656
 
657
+ #: top-10.php:530
658
  msgid "Custom time period (Enter below)"
659
  msgstr ""
660
 
661
+ #: top-10.php:535
662
  msgid "Range in number of days (applies only to custom option above)"
663
  msgstr ""
664
 
665
+ #: top-10.php:540
666
  msgid " Show excerpt?"
667
  msgstr ""
668
 
669
+ #: top-10.php:545
670
  msgid " Show author?"
671
  msgstr ""
672
 
673
+ #: top-10.php:550
674
  msgid " Show date?"
675
  msgstr ""
676
 
677
+ #: top-10.php:554
678
  msgid "Thumbnail options"
679
  msgstr ""
680
 
681
+ #: top-10.php:556
682
  #, fuzzy
683
  msgid "Thumbnails inline, before title"
684
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
685
 
686
+ #: top-10.php:557
687
  #, fuzzy
688
  msgid "Thumbnails inline, after title"
689
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
690
 
691
+ #: top-10.php:558
692
  #, fuzzy
693
  msgid "Only thumbnails, no text"
694
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
695
 
696
+ #: top-10.php:559
697
  #, fuzzy
698
  msgid "No thumbnails, only text."
699
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
700
 
701
+ #: top-10.php:564
702
  msgid "Thumbnail height"
703
  msgstr ""
704
 
705
+ #: top-10.php:569
706
  msgid "Thumbnail width"
707
  msgstr ""
708
 
709
+ #: top-10.php:670
710
  msgid "<h3>Popular Posts</h3>"
711
  msgstr "<h3>Poist Coitianta </ h3>"
712
 
713
+ #: top-10.php:671
714
  msgid "<h3>Daily Popular</h3>"
715
  msgstr "<h3> laethúil Coitianta </ h3>"
716
 
717
+ #: top-10.php:672
718
  #, fuzzy
719
  msgid "No top posts yet"
720
  msgstr "Teideal an post tóir:"
721
 
722
+ #: top-10.php:1113
723
  msgid "Once Weekly"
724
  msgstr ""
725
 
726
+ #: top-10.php:1114
727
  msgid "Once Fortnightly"
728
  msgstr ""
729
 
730
+ #: top-10.php:1115
731
  msgid "Once Monthly"
732
  msgstr ""
733
 
734
+ #: top-10.php:1135
735
  msgid "Settings"
736
  msgstr ""
737
 
738
+ #: top-10.php:1148
739
  msgid "Donate"
740
  msgstr ""
741
 
languages/tptn-hi_IN.mo CHANGED
Binary file
languages/tptn-hi_IN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
@@ -16,132 +16,132 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin.inc.php:103
20
  msgid "Scheduled maintenance enabled / modified"
21
  msgstr ""
22
 
23
- #: admin.inc.php:107
24
  msgid "Scheduled maintenance disabled"
25
  msgstr ""
26
 
27
- #: admin.inc.php:124
28
  msgid "Options saved successfully."
29
  msgstr "विकल्प सफलतापूर्वक बचाया."
30
 
31
- #: admin.inc.php:133
32
  msgid "Options set to Default."
33
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
34
 
35
- #: admin.inc.php:139
36
  #, fuzzy
37
  msgid "Top 10 popular posts reset"
38
  msgstr "लोकप्रिय पदों का शीर्षक:"
39
 
40
- #: admin.inc.php:145
41
  #, fuzzy
42
  msgid "Top 10 daily popular posts reset"
43
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
44
 
45
- #: admin.inc.php:152
46
  msgid "Duplicate rows cleaned from tables"
47
  msgstr ""
48
 
49
- #: admin.inc.php:173
50
  msgid "General options"
51
  msgstr ""
52
 
53
- #: admin.inc.php:177
54
  msgid "Enable Overall stats"
55
  msgstr ""
56
 
57
- #: admin.inc.php:182
58
  msgid "Enable Daily stats"
59
  msgstr ""
60
 
61
- #: admin.inc.php:187
62
  msgid "W3 Total Cache fix:"
63
  msgstr ""
64
 
65
- #: admin.inc.php:189
66
  msgid ""
67
  "This will try to prevent W3 Total Cache from caching the addcount script of "
68
  "the plugin. Try toggling this option in case you find that our posts are not "
69
  "tracked."
70
  msgstr ""
71
 
72
- #: admin.inc.php:193
73
  msgid "Number of popular posts to display: "
74
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
75
 
76
- #: admin.inc.php:197
77
  msgid "Daily Popular should contain views of how many days? "
78
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
79
 
80
- #: admin.inc.php:200
81
  msgid "Post types to include in results (including custom post types)"
82
  msgstr ""
83
 
84
- #: admin.inc.php:211
85
  msgid "List of post or page IDs to exclude from the results: "
86
  msgstr ""
87
 
88
- #: admin.inc.php:215
89
  msgid "Exclude Categories: "
90
  msgstr ""
91
 
92
- #: admin.inc.php:230
93
  msgid ""
94
  "Comma separated list of category slugs. The field above has an autocomplete "
95
  "so simply start typing in the starting letters and it will prompt you with "
96
  "options"
97
  msgstr ""
98
 
99
- #: admin.inc.php:235
100
  #, fuzzy
101
  msgid "Display number of views on:"
102
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
103
 
104
- #: admin.inc.php:237
105
  msgid "Posts"
106
  msgstr ""
107
 
108
- #: admin.inc.php:238
109
  #, fuzzy
110
  msgid "Pages"
111
  msgstr "पृष्ठ"
112
 
113
- #: admin.inc.php:239
114
  msgid "Home page"
115
  msgstr ""
116
 
117
- #: admin.inc.php:240
118
  msgid "Feeds"
119
  msgstr ""
120
 
121
- #: admin.inc.php:241
122
  msgid "Category archives"
123
  msgstr ""
124
 
125
- #: admin.inc.php:242
126
  msgid "Tag archives"
127
  msgstr ""
128
 
129
- #: admin.inc.php:243
130
  msgid "Other archives"
131
  msgstr ""
132
 
133
- #: admin.inc.php:244
134
  msgid ""
135
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
136
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
137
  "you want it displayed"
138
  msgstr ""
139
 
140
- #: admin.inc.php:247
141
  msgid "Always display latest post count"
142
  msgstr ""
143
 
144
- #: admin.inc.php:249
145
  msgid ""
146
  "This option uses JavaScript and will increase your page load time. Turn this "
147
  "off if you are not using caching plugins or are OK with displaying older "
@@ -149,35 +149,35 @@ msgid ""
149
  "the options set there, but options will need to be set on this screen."
150
  msgstr ""
151
 
152
- #: admin.inc.php:252
153
  msgid "Always display latest post count in the daily lists"
154
  msgstr ""
155
 
156
- #: admin.inc.php:254
157
  #, fuzzy
158
  msgid "This option uses JavaScript and will increase your page load time"
159
  msgstr ""
160
  "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
161
  "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
162
 
163
- #: admin.inc.php:257
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
166
 
167
- #: admin.inc.php:260
168
  #, fuzzy
169
  msgid "Track visits of admins?"
170
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
171
 
172
- #: admin.inc.php:263
173
  msgid "Display page views on Posts > All Posts in Admin"
174
  msgstr ""
175
 
176
- #: admin.inc.php:266
177
  msgid "Link to Top 10 plugin page"
178
  msgstr ""
179
 
180
- #: admin.inc.php:268
181
  #, fuzzy
182
  msgid ""
183
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -186,16 +186,16 @@ msgstr ""
186
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
187
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
188
 
189
- #: admin.inc.php:275
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "विकल्प हैं:"
193
 
194
- #: admin.inc.php:278
195
  msgid "Format to display the count in: "
196
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
197
 
198
- #: admin.inc.php:280
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -207,137 +207,137 @@ msgstr ""
207
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
208
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
209
 
210
- #: admin.inc.php:283
211
  msgid "Title of popular posts: "
212
  msgstr "लोकप्रिय पदों का शीर्षक:"
213
 
214
- #: admin.inc.php:286
215
  msgid "Title of daily popular posts: "
216
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
217
 
218
- #: admin.inc.php:289
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
- #: admin.inc.php:293
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
- #: admin.inc.php:297
227
  msgid "Display:"
228
  msgstr ""
229
 
230
- #: admin.inc.php:301
231
  msgid "Show post excerpt in list?"
232
  msgstr ""
233
 
234
- #: admin.inc.php:304
235
  msgid "Length of excerpt (in words): "
236
  msgstr ""
237
 
238
- #: admin.inc.php:307
239
  msgid "Show post author in list?"
240
  msgstr ""
241
 
242
- #: admin.inc.php:310
243
  msgid "Show post date in list?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:313
247
  msgid "Limit post title length (in characters)"
248
  msgstr ""
249
 
250
- #: admin.inc.php:316
251
  msgid "Display number of page views in popular lists?"
252
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
253
 
254
- #: admin.inc.php:319
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
- #: admin.inc.php:322
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
- #: admin.inc.php:325
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
- #: admin.inc.php:328
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
- #: admin.inc.php:331
271
  msgid "Customize the output:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:333
275
  msgid "HTML to display before the list of posts: "
276
  msgstr ""
277
 
278
- #: admin.inc.php:336
279
  msgid "HTML to display before each list item: "
280
  msgstr ""
281
 
282
- #: admin.inc.php:339
283
  #, fuzzy
284
  msgid "HTML to display after each list item: "
285
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
286
 
287
- #: admin.inc.php:342
288
  msgid "HTML to display after the list of posts: "
289
  msgstr ""
290
 
291
- #: admin.inc.php:345
292
  msgid "Post thumbnail options:"
293
  msgstr ""
294
 
295
- #: admin.inc.php:347
296
  msgid "Location of post thumbnail:"
297
  msgstr ""
298
 
299
- #: admin.inc.php:351
300
  #, fuzzy
301
  msgid "Display thumbnails inline with posts, before title"
302
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
303
 
304
- #: admin.inc.php:355
305
  #, fuzzy
306
  msgid "Display thumbnails inline with posts, after title"
307
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
308
 
309
- #: admin.inc.php:359
310
  msgid "Display only thumbnails, no text"
311
  msgstr ""
312
 
313
- #: admin.inc.php:363
314
  msgid "Do not display thumbnails, only text."
315
  msgstr ""
316
 
317
- #: admin.inc.php:367
318
  msgid "Width of the thumbnail: "
319
  msgstr ""
320
 
321
- #: admin.inc.php:370
322
  msgid "Height of the thumbnail: "
323
  msgstr ""
324
 
325
- #: admin.inc.php:373
326
  msgid "Style attributes / Width and Height HTML attributes:"
327
  msgstr ""
328
 
329
- #: admin.inc.php:377
330
  msgid ""
331
  "Style attributes are used for width and height. <code>style=\"max-width:"
332
  msgstr ""
333
 
334
- #: admin.inc.php:381
335
  msgid ""
336
  "HTML width and height attributes are used for width and height. <code>width="
337
  "\""
338
  msgstr ""
339
 
340
- #: admin.inc.php:385
341
  msgid "Use timthumb to generate thumbnails? "
342
  msgstr ""
343
 
@@ -347,386 +347,386 @@ msgid ""
347
  "\">timthumb</a> will be used to generate thumbnails"
348
  msgstr ""
349
 
350
- #: admin.inc.php:388
351
  msgid "Post thumbnail meta field name: "
352
  msgstr ""
353
 
354
- #: admin.inc.php:389
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
- #: admin.inc.php:391
361
  msgid ""
362
  "If the postmeta is not set, then should the plugin extract the first image "
363
  "from the post?"
364
  msgstr ""
365
 
366
- #: admin.inc.php:392
367
  msgid ""
368
  "This could slow down the loading of your page if the first image in the "
369
  "related posts is large in file-size"
370
  msgstr ""
371
 
372
- #: admin.inc.php:394
373
  msgid "Use default thumbnail? "
374
  msgstr ""
375
 
376
- #: admin.inc.php:395
377
  msgid ""
378
  "If checked, when no thumbnail is found, show a default one from the URL "
379
  "below. If not checked and no thumbnail is found, no image will be shown."
380
  msgstr ""
381
 
382
- #: admin.inc.php:397
383
  msgid "Default thumbnail: "
384
  msgstr ""
385
 
386
- #: admin.inc.php:398
387
  msgid ""
388
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
389
  "then it will check the meta field. If this is not available, then it will "
390
  "show the default image as specified above"
391
  msgstr ""
392
 
393
- #: admin.inc.php:404
394
  msgid "Custom Styles"
395
  msgstr ""
396
 
397
- #: admin.inc.php:407
398
  msgid "Custom CSS to add to header:"
399
  msgstr ""
400
 
401
- #: admin.inc.php:410
402
  msgid ""
403
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
404
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
405
  "available CSS classes to style."
406
  msgstr ""
407
 
408
- #: admin.inc.php:417
409
  msgid "Maintenance"
410
  msgstr ""
411
 
412
- #: admin.inc.php:421
413
  msgid ""
414
  "Over time the Daily Top 10 database grows in size, which reduces the "
415
  "performance of the plugin. Cleaning the database at regular intervals could "
416
  "improve performance, especially on high traffic blogs."
417
  msgstr ""
418
 
419
- #: admin.inc.php:422
420
  msgid ""
421
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
422
  "everytime the job is rescheduled (i.e. you change the settings below). This "
423
  "causes the daily posts table to reset."
424
  msgstr ""
425
 
426
- #: admin.inc.php:425
427
  msgid "Enable scheduled maintenance of daily tables:"
428
  msgstr ""
429
 
430
- #: admin.inc.php:429
431
  msgid "Time to run maintenance"
432
  msgstr ""
433
 
434
- #: admin.inc.php:432
435
  msgid "How often should the maintenance be run:"
436
  msgstr ""
437
 
438
- #: admin.inc.php:436
439
  msgid "Daily"
440
  msgstr ""
441
 
442
- #: admin.inc.php:440
443
  msgid "Weekly"
444
  msgstr ""
445
 
446
- #: admin.inc.php:444
447
  msgid "Fortnightly"
448
  msgstr ""
449
 
450
- #: admin.inc.php:448
451
  msgid "Monthly"
452
  msgstr ""
453
 
454
- #: admin.inc.php:457
455
  msgid "The cron job has been scheduled. Maintenance will run "
456
  msgstr ""
457
 
458
- #: admin.inc.php:462
459
  msgid "The cron job is missing. Please resave this page to add the job"
460
  msgstr ""
461
 
462
- #: admin.inc.php:467
463
  msgid "Maintenance is turned off"
464
  msgstr ""
465
 
466
- #: admin.inc.php:475
467
  #, fuzzy
468
  msgid "Save Options"
469
  msgstr "विकल्प हैं:"
470
 
471
- #: admin.inc.php:476
472
  #, fuzzy
473
  msgid "Default Options"
474
  msgstr "विकल्प हैं:"
475
 
476
- #: admin.inc.php:476
477
  msgid "Do you want to set options to Default?"
478
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
479
 
480
- #: admin.inc.php:480
481
  msgid "Reset count"
482
  msgstr ""
483
 
484
- #: admin.inc.php:483
485
  msgid ""
486
  "This cannot be reversed. Make sure that your database has been backed up "
487
  "before proceeding"
488
  msgstr ""
489
 
490
- #: admin.inc.php:486
491
  #, fuzzy
492
  msgid "Reset Popular Posts"
493
  msgstr "लोकप्रिय पोस्ट्स "
494
 
495
- #: admin.inc.php:486
496
  msgid "Are you sure you want to reset the popular posts?"
497
  msgstr ""
498
 
499
- #: admin.inc.php:487
500
  #, fuzzy
501
  msgid "Reset Daily Popular Posts"
502
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
503
 
504
- #: admin.inc.php:487
505
  msgid "Are you sure you want to reset the daily popular posts?"
506
  msgstr ""
507
 
508
- #: admin.inc.php:488
509
  msgid "Clear duplicates"
510
  msgstr ""
511
 
512
- #: admin.inc.php:488
513
  msgid "This will delete the duplicate entries in the tables. Proceed?"
514
  msgstr ""
515
 
516
- #: admin.inc.php:531 admin.inc.php:906
517
  msgid "Popular Posts"
518
  msgstr "लोकप्रिय पोस्ट्स "
519
 
520
- #: admin.inc.php:531 admin.inc.php:618
521
  msgid "Daily Popular Posts"
522
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
523
 
524
- #: admin.inc.php:559
525
  #, fuzzy
526
  msgid "Support the development"
527
  msgstr "समर्थन विकास"
528
 
529
- #: admin.inc.php:567
530
  msgid "Enter amount in USD: "
531
  msgstr ""
532
 
533
- #: admin.inc.php:571
534
  msgid "Send your donation to the author of"
535
  msgstr ""
536
 
537
- #: admin.inc.php:577
538
  msgid "Follow us"
539
  msgstr ""
540
 
541
- #: admin.inc.php:583
542
  msgid "Quick Links"
543
  msgstr ""
544
 
545
- #: admin.inc.php:585
546
  msgid "Top 10 plugin page"
547
  msgstr ""
548
 
549
- #: admin.inc.php:586
550
  msgid "Other plugins"
551
  msgstr ""
552
 
553
- #: admin.inc.php:587
554
  msgid "Ajay's blog"
555
  msgstr ""
556
 
557
- #: admin.inc.php:588 top-10.php:1094
558
  msgid "Support"
559
  msgstr ""
560
 
561
- #: admin.inc.php:592
562
  msgid "Recent developments"
563
  msgstr ""
564
 
565
- #: admin.inc.php:609 admin.inc.php:612
566
  #, fuzzy
567
  msgid "Top 10 Settings"
568
  msgstr "शीर्ष 10"
569
 
570
- #: admin.inc.php:609
571
  msgid "Top 10"
572
  msgstr "शीर्ष 10"
573
 
574
- #: admin.inc.php:615
575
  #, fuzzy
576
  msgid "Overall Popular Posts"
577
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
578
 
579
- #: admin.inc.php:786
580
  msgid "Results"
581
  msgstr "परिणाम"
582
 
583
- #: admin.inc.php:788 admin.inc.php:794
584
  msgid "of"
585
  msgstr "का"
586
 
587
- #: admin.inc.php:792
588
  msgid "Page"
589
  msgstr "पृष्ठ"
590
 
591
- #: admin.inc.php:806
592
  msgid "View Daily Popular Posts"
593
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
594
 
595
- #: admin.inc.php:809 admin.inc.php:822
596
  msgid "Results per-page:"
597
  msgstr "प्रति परिणाम पृष्ठ:"
598
 
599
- #: admin.inc.php:819
600
  msgid "View Overall Popular Posts"
601
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
602
 
603
- #: admin.inc.php:848
604
  msgid "Previous"
605
  msgstr "पिछला"
606
 
607
- #: admin.inc.php:866
608
  msgid "Next"
609
  msgstr "अगला"
610
 
611
- #: admin.inc.php:907
612
  msgid "Daily Popular"
613
  msgstr "दैनिक लोकप्रिय"
614
 
615
- #: admin.inc.php:923
616
  #, fuzzy
617
  msgid "Total Views"
618
  msgstr "कुल / आज दर्शाव"
619
 
620
- #: admin.inc.php:924
621
  #, fuzzy
622
  msgid "Today's Views"
623
  msgstr "कुल / आज दर्शाव"
624
 
625
- #: top-10.php:366
626
- msgid " Posted by "
627
  msgstr ""
628
 
629
- #: top-10.php:448
630
  msgid "Display the posts popular this week"
631
  msgstr ""
632
 
633
- #: top-10.php:449
634
  #, fuzzy
635
  msgid "Popular Posts [Top 10]"
636
  msgstr "लोकप्रिय पोस्ट्स "
637
 
638
- #: top-10.php:466
639
  msgid "Title"
640
  msgstr ""
641
 
642
- #: top-10.php:471
643
  msgid "No. of posts"
644
  msgstr ""
645
 
646
- #: top-10.php:476
647
  msgid "Overall"
648
  msgstr ""
649
 
650
- #: top-10.php:477
651
  msgid "Custom time period (Enter below)"
652
  msgstr ""
653
 
654
- #: top-10.php:482
655
  msgid "Range in number of days (applies only to custom option above)"
656
  msgstr ""
657
 
658
- #: top-10.php:487
659
  msgid " Show excerpt?"
660
  msgstr ""
661
 
662
- #: top-10.php:492
663
  msgid " Show author?"
664
  msgstr ""
665
 
666
- #: top-10.php:497
667
  msgid " Show date?"
668
  msgstr ""
669
 
670
- #: top-10.php:501
671
  msgid "Thumbnail options"
672
  msgstr ""
673
 
674
- #: top-10.php:503
675
  #, fuzzy
676
  msgid "Thumbnails inline, before title"
677
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
678
 
679
- #: top-10.php:504
680
  #, fuzzy
681
  msgid "Thumbnails inline, after title"
682
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
683
 
684
- #: top-10.php:505
685
  msgid "Only thumbnails, no text"
686
  msgstr ""
687
 
688
- #: top-10.php:506
689
  msgid "No thumbnails, only text."
690
  msgstr ""
691
 
692
- #: top-10.php:511
693
  msgid "Thumbnail height"
694
  msgstr ""
695
 
696
- #: top-10.php:516
697
  msgid "Thumbnail width"
698
  msgstr ""
699
 
700
- #: top-10.php:617
701
  msgid "<h3>Popular Posts</h3>"
702
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
703
 
704
- #: top-10.php:618
705
  msgid "<h3>Daily Popular</h3>"
706
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
707
 
708
- #: top-10.php:619
709
  #, fuzzy
710
  msgid "No top posts yet"
711
  msgstr "लोकप्रिय पदों का शीर्षक:"
712
 
713
- #: top-10.php:1060
714
  msgid "Once Weekly"
715
  msgstr ""
716
 
717
- #: top-10.php:1061
718
  msgid "Once Fortnightly"
719
  msgstr ""
720
 
721
- #: top-10.php:1062
722
  msgid "Once Monthly"
723
  msgstr ""
724
 
725
- #: top-10.php:1082
726
  msgid "Settings"
727
  msgstr ""
728
 
729
- #: top-10.php:1095
730
  msgid "Donate"
731
  msgstr ""
732
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
16
  "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:101
20
  msgid "Scheduled maintenance enabled / modified"
21
  msgstr ""
22
 
23
+ #: admin.inc.php:105
24
  msgid "Scheduled maintenance disabled"
25
  msgstr ""
26
 
27
+ #: admin.inc.php:122
28
  msgid "Options saved successfully."
29
  msgstr "विकल्प सफलतापूर्वक बचाया."
30
 
31
+ #: admin.inc.php:131
32
  msgid "Options set to Default."
33
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
34
 
35
+ #: admin.inc.php:137
36
  #, fuzzy
37
  msgid "Top 10 popular posts reset"
38
  msgstr "लोकप्रिय पदों का शीर्षक:"
39
 
40
+ #: admin.inc.php:143
41
  #, fuzzy
42
  msgid "Top 10 daily popular posts reset"
43
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
44
 
45
+ #: admin.inc.php:150
46
  msgid "Duplicate rows cleaned from tables"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:171
50
  msgid "General options"
51
  msgstr ""
52
 
53
+ #: admin.inc.php:175
54
  msgid "Enable Overall stats"
55
  msgstr ""
56
 
57
+ #: admin.inc.php:180
58
  msgid "Enable Daily stats"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:185
62
  msgid "W3 Total Cache fix:"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:187
66
  msgid ""
67
  "This will try to prevent W3 Total Cache from caching the addcount script of "
68
  "the plugin. Try toggling this option in case you find that our posts are not "
69
  "tracked."
70
  msgstr ""
71
 
72
+ #: admin.inc.php:191
73
  msgid "Number of popular posts to display: "
74
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
75
 
76
+ #: admin.inc.php:195
77
  msgid "Daily Popular should contain views of how many days? "
78
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
79
 
80
+ #: admin.inc.php:198
81
  msgid "Post types to include in results (including custom post types)"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:209
85
  msgid "List of post or page IDs to exclude from the results: "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:213
89
  msgid "Exclude Categories: "
90
  msgstr ""
91
 
92
+ #: admin.inc.php:228
93
  msgid ""
94
  "Comma separated list of category slugs. The field above has an autocomplete "
95
  "so simply start typing in the starting letters and it will prompt you with "
96
  "options"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:233
100
  #, fuzzy
101
  msgid "Display number of views on:"
102
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
103
 
104
+ #: admin.inc.php:235
105
  msgid "Posts"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:236
109
  #, fuzzy
110
  msgid "Pages"
111
  msgstr "पृष्ठ"
112
 
113
+ #: admin.inc.php:237
114
  msgid "Home page"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:238
118
  msgid "Feeds"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:239
122
  msgid "Category archives"
123
  msgstr ""
124
 
125
+ #: admin.inc.php:240
126
  msgid "Tag archives"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:241
130
  msgid "Other archives"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:242
134
  msgid ""
135
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
136
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
137
  "you want it displayed"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:245
141
  msgid "Always display latest post count"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:247
145
  msgid ""
146
  "This option uses JavaScript and will increase your page load time. Turn this "
147
  "off if you are not using caching plugins or are OK with displaying older "
149
  "the options set there, but options will need to be set on this screen."
150
  msgstr ""
151
 
152
+ #: admin.inc.php:250
153
  msgid "Always display latest post count in the daily lists"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:252
157
  #, fuzzy
158
  msgid "This option uses JavaScript and will increase your page load time"
159
  msgstr ""
160
  "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
161
  "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
162
 
163
+ #: admin.inc.php:255
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
166
 
167
+ #: admin.inc.php:258
168
  #, fuzzy
169
  msgid "Track visits of admins?"
170
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
171
 
172
+ #: admin.inc.php:261
173
  msgid "Display page views on Posts > All Posts in Admin"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:264
177
  msgid "Link to Top 10 plugin page"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid ""
183
  "A link to the plugin is added as an extra list item to the list of popular "
186
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
187
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
188
 
189
+ #: admin.inc.php:273
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "विकल्प हैं:"
193
 
194
+ #: admin.inc.php:276
195
  msgid "Format to display the count in: "
196
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
197
 
198
+ #: admin.inc.php:278
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
207
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
208
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
209
 
210
+ #: admin.inc.php:281
211
  msgid "Title of popular posts: "
212
  msgstr "लोकप्रिय पदों का शीर्षक:"
213
 
214
+ #: admin.inc.php:284
215
  msgid "Title of daily popular posts: "
216
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
217
 
218
+ #: admin.inc.php:287
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:291
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:295
227
  msgid "Display:"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:299
231
  msgid "Show post excerpt in list?"
232
  msgstr ""
233
 
234
+ #: admin.inc.php:302
235
  msgid "Length of excerpt (in words): "
236
  msgstr ""
237
 
238
+ #: admin.inc.php:305
239
  msgid "Show post author in list?"
240
  msgstr ""
241
 
242
+ #: admin.inc.php:308
243
  msgid "Show post date in list?"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:311
247
  msgid "Limit post title length (in characters)"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:314
251
  msgid "Display number of page views in popular lists?"
252
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
253
 
254
+ #: admin.inc.php:317
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:320
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:323
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:326
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
+ #: admin.inc.php:329
271
  msgid "Customize the output:"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:331
275
  msgid "HTML to display before the list of posts: "
276
  msgstr ""
277
 
278
+ #: admin.inc.php:334
279
  msgid "HTML to display before each list item: "
280
  msgstr ""
281
 
282
+ #: admin.inc.php:337
283
  #, fuzzy
284
  msgid "HTML to display after each list item: "
285
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
286
 
287
+ #: admin.inc.php:340
288
  msgid "HTML to display after the list of posts: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:343
292
  msgid "Post thumbnail options:"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:345
296
  msgid "Location of post thumbnail:"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:349
300
  #, fuzzy
301
  msgid "Display thumbnails inline with posts, before title"
302
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
303
 
304
+ #: admin.inc.php:353
305
  #, fuzzy
306
  msgid "Display thumbnails inline with posts, after title"
307
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
308
 
309
+ #: admin.inc.php:357
310
  msgid "Display only thumbnails, no text"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:361
314
  msgid "Do not display thumbnails, only text."
315
  msgstr ""
316
 
317
+ #: admin.inc.php:365
318
  msgid "Width of the thumbnail: "
319
  msgstr ""
320
 
321
+ #: admin.inc.php:368
322
  msgid "Height of the thumbnail: "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:371
326
  msgid "Style attributes / Width and Height HTML attributes:"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:375
330
  msgid ""
331
  "Style attributes are used for width and height. <code>style=\"max-width:"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:379
335
  msgid ""
336
  "HTML width and height attributes are used for width and height. <code>width="
337
  "\""
338
  msgstr ""
339
 
340
+ #: admin.inc.php:383
341
  msgid "Use timthumb to generate thumbnails? "
342
  msgstr ""
343
 
347
  "\">timthumb</a> will be used to generate thumbnails"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:389
351
  msgid "Post thumbnail meta field name: "
352
  msgstr ""
353
 
354
+ #: admin.inc.php:392
355
  msgid ""
356
  "The value of this field should contain the image source and is set in the "
357
  "<em>Add New Post</em> screen"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:395
361
  msgid ""
362
  "If the postmeta is not set, then should the plugin extract the first image "
363
  "from the post?"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:398
367
  msgid ""
368
  "This could slow down the loading of your page if the first image in the "
369
  "related posts is large in file-size"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:401
373
  msgid "Use default thumbnail? "
374
  msgstr ""
375
 
376
+ #: admin.inc.php:404
377
  msgid ""
378
  "If checked, when no thumbnail is found, show a default one from the URL "
379
  "below. If not checked and no thumbnail is found, no image will be shown."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:407
383
  msgid "Default thumbnail: "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:410
387
  msgid ""
388
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
389
  "then it will check the meta field. If this is not available, then it will "
390
  "show the default image as specified above"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:417
394
  msgid "Custom Styles"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:420
398
  msgid "Custom CSS to add to header:"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:423
402
  msgid ""
403
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
404
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
405
  "available CSS classes to style."
406
  msgstr ""
407
 
408
+ #: admin.inc.php:430
409
  msgid "Maintenance"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:434
413
  msgid ""
414
  "Over time the Daily Top 10 database grows in size, which reduces the "
415
  "performance of the plugin. Cleaning the database at regular intervals could "
416
  "improve performance, especially on high traffic blogs."
417
  msgstr ""
418
 
419
+ #: admin.inc.php:435
420
  msgid ""
421
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
422
  "everytime the job is rescheduled (i.e. you change the settings below). This "
423
  "causes the daily posts table to reset."
424
  msgstr ""
425
 
426
+ #: admin.inc.php:438
427
  msgid "Enable scheduled maintenance of daily tables:"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:442
431
  msgid "Time to run maintenance"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:445
435
  msgid "How often should the maintenance be run:"
436
  msgstr ""
437
 
438
+ #: admin.inc.php:449
439
  msgid "Daily"
440
  msgstr ""
441
 
442
+ #: admin.inc.php:453
443
  msgid "Weekly"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:457
447
  msgid "Fortnightly"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:461
451
  msgid "Monthly"
452
  msgstr ""
453
 
454
+ #: admin.inc.php:470
455
  msgid "The cron job has been scheduled. Maintenance will run "
456
  msgstr ""
457
 
458
+ #: admin.inc.php:475
459
  msgid "The cron job is missing. Please resave this page to add the job"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:480
463
  msgid "Maintenance is turned off"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:488
467
  #, fuzzy
468
  msgid "Save Options"
469
  msgstr "विकल्प हैं:"
470
 
471
+ #: admin.inc.php:489
472
  #, fuzzy
473
  msgid "Default Options"
474
  msgstr "विकल्प हैं:"
475
 
476
+ #: admin.inc.php:489
477
  msgid "Do you want to set options to Default?"
478
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
479
 
480
+ #: admin.inc.php:493
481
  msgid "Reset count"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:496
485
  msgid ""
486
  "This cannot be reversed. Make sure that your database has been backed up "
487
  "before proceeding"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:499
491
  #, fuzzy
492
  msgid "Reset Popular Posts"
493
  msgstr "लोकप्रिय पोस्ट्स "
494
 
495
+ #: admin.inc.php:499
496
  msgid "Are you sure you want to reset the popular posts?"
497
  msgstr ""
498
 
499
+ #: admin.inc.php:500
500
  #, fuzzy
501
  msgid "Reset Daily Popular Posts"
502
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
503
 
504
+ #: admin.inc.php:500
505
  msgid "Are you sure you want to reset the daily popular posts?"
506
  msgstr ""
507
 
508
+ #: admin.inc.php:501
509
  msgid "Clear duplicates"
510
  msgstr ""
511
 
512
+ #: admin.inc.php:501
513
  msgid "This will delete the duplicate entries in the tables. Proceed?"
514
  msgstr ""
515
 
516
+ #: admin.inc.php:544 admin.inc.php:929
517
  msgid "Popular Posts"
518
  msgstr "लोकप्रिय पोस्ट्स "
519
 
520
+ #: admin.inc.php:544 admin.inc.php:631
521
  msgid "Daily Popular Posts"
522
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
523
 
524
+ #: admin.inc.php:572
525
  #, fuzzy
526
  msgid "Support the development"
527
  msgstr "समर्थन विकास"
528
 
529
+ #: admin.inc.php:580
530
  msgid "Enter amount in USD: "
531
  msgstr ""
532
 
533
+ #: admin.inc.php:584
534
  msgid "Send your donation to the author of"
535
  msgstr ""
536
 
537
+ #: admin.inc.php:590
538
  msgid "Follow us"
539
  msgstr ""
540
 
541
+ #: admin.inc.php:596
542
  msgid "Quick Links"
543
  msgstr ""
544
 
545
+ #: admin.inc.php:598
546
  msgid "Top 10 plugin page"
547
  msgstr ""
548
 
549
+ #: admin.inc.php:599
550
  msgid "Other plugins"
551
  msgstr ""
552
 
553
+ #: admin.inc.php:600
554
  msgid "Ajay's blog"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:601 top-10.php:1147
558
  msgid "Support"
559
  msgstr ""
560
 
561
+ #: admin.inc.php:605
562
  msgid "Recent developments"
563
  msgstr ""
564
 
565
+ #: admin.inc.php:622 admin.inc.php:625
566
  #, fuzzy
567
  msgid "Top 10 Settings"
568
  msgstr "शीर्ष 10"
569
 
570
+ #: admin.inc.php:622
571
  msgid "Top 10"
572
  msgstr "शीर्ष 10"
573
 
574
+ #: admin.inc.php:628
575
  #, fuzzy
576
  msgid "Overall Popular Posts"
577
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
578
 
579
+ #: admin.inc.php:799
580
  msgid "Results"
581
  msgstr "परिणाम"
582
 
583
+ #: admin.inc.php:801 admin.inc.php:807
584
  msgid "of"
585
  msgstr "का"
586
 
587
+ #: admin.inc.php:805
588
  msgid "Page"
589
  msgstr "पृष्ठ"
590
 
591
+ #: admin.inc.php:819
592
  msgid "View Daily Popular Posts"
593
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
594
 
595
+ #: admin.inc.php:822 admin.inc.php:835
596
  msgid "Results per-page:"
597
  msgstr "प्रति परिणाम पृष्ठ:"
598
 
599
+ #: admin.inc.php:832
600
  msgid "View Overall Popular Posts"
601
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
602
 
603
+ #: admin.inc.php:861
604
  msgid "Previous"
605
  msgstr "पिछला"
606
 
607
+ #: admin.inc.php:889
608
  msgid "Next"
609
  msgstr "अगला"
610
 
611
+ #: admin.inc.php:930
612
  msgid "Daily Popular"
613
  msgstr "दैनिक लोकप्रिय"
614
 
615
+ #: admin.inc.php:946
616
  #, fuzzy
617
  msgid "Total Views"
618
  msgstr "कुल / आज दर्शाव"
619
 
620
+ #: admin.inc.php:947
621
  #, fuzzy
622
  msgid "Today's Views"
623
  msgstr "कुल / आज दर्शाव"
624
 
625
+ #: top-10.php:415
626
+ msgid " by "
627
  msgstr ""
628
 
629
+ #: top-10.php:501
630
  msgid "Display the posts popular this week"
631
  msgstr ""
632
 
633
+ #: top-10.php:502
634
  #, fuzzy
635
  msgid "Popular Posts [Top 10]"
636
  msgstr "लोकप्रिय पोस्ट्स "
637
 
638
+ #: top-10.php:519
639
  msgid "Title"
640
  msgstr ""
641
 
642
+ #: top-10.php:524
643
  msgid "No. of posts"
644
  msgstr ""
645
 
646
+ #: top-10.php:529
647
  msgid "Overall"
648
  msgstr ""
649
 
650
+ #: top-10.php:530
651
  msgid "Custom time period (Enter below)"
652
  msgstr ""
653
 
654
+ #: top-10.php:535
655
  msgid "Range in number of days (applies only to custom option above)"
656
  msgstr ""
657
 
658
+ #: top-10.php:540
659
  msgid " Show excerpt?"
660
  msgstr ""
661
 
662
+ #: top-10.php:545
663
  msgid " Show author?"
664
  msgstr ""
665
 
666
+ #: top-10.php:550
667
  msgid " Show date?"
668
  msgstr ""
669
 
670
+ #: top-10.php:554
671
  msgid "Thumbnail options"
672
  msgstr ""
673
 
674
+ #: top-10.php:556
675
  #, fuzzy
676
  msgid "Thumbnails inline, before title"
677
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
678
 
679
+ #: top-10.php:557
680
  #, fuzzy
681
  msgid "Thumbnails inline, after title"
682
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
683
 
684
+ #: top-10.php:558
685
  msgid "Only thumbnails, no text"
686
  msgstr ""
687
 
688
+ #: top-10.php:559
689
  msgid "No thumbnails, only text."
690
  msgstr ""
691
 
692
+ #: top-10.php:564
693
  msgid "Thumbnail height"
694
  msgstr ""
695
 
696
+ #: top-10.php:569
697
  msgid "Thumbnail width"
698
  msgstr ""
699
 
700
+ #: top-10.php:670
701
  msgid "<h3>Popular Posts</h3>"
702
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
703
 
704
+ #: top-10.php:671
705
  msgid "<h3>Daily Popular</h3>"
706
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
707
 
708
+ #: top-10.php:672
709
  #, fuzzy
710
  msgid "No top posts yet"
711
  msgstr "लोकप्रिय पदों का शीर्षक:"
712
 
713
+ #: top-10.php:1113
714
  msgid "Once Weekly"
715
  msgstr ""
716
 
717
+ #: top-10.php:1114
718
  msgid "Once Fortnightly"
719
  msgstr ""
720
 
721
+ #: top-10.php:1115
722
  msgid "Once Monthly"
723
  msgstr ""
724
 
725
+ #: top-10.php:1135
726
  msgid "Settings"
727
  msgstr ""
728
 
729
+ #: top-10.php:1148
730
  msgid "Donate"
731
  msgstr ""
732
 
languages/tptn-it_IT.mo CHANGED
Binary file
languages/tptn-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
@@ -15,132 +15,132 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Le opzioni sono state salvate con successo."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Opzioni impostate alle predefinite."
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Ripristino 10 articoli più popolari"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Ripristino 10 articoli più popolari del giorno"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Numero degli articoli più popolari da mostrare:"
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Quanti giorni desideri siano considerati per il computo delle "
77
  "visualizzazioni per articoli più popolari del giorno?"
78
 
79
- #: admin.inc.php:200
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
- #: admin.inc.php:211
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
- #: admin.inc.php:215
88
  msgid "Exclude Categories: "
89
  msgstr "Escludi categorie:"
90
 
91
- #: admin.inc.php:230
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
- #: admin.inc.php:235
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
102
 
103
- #: admin.inc.php:237
104
  msgid "Posts"
105
  msgstr ""
106
 
107
- #: admin.inc.php:238
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Pagina"
111
 
112
- #: admin.inc.php:239
113
  msgid "Home page"
114
  msgstr ""
115
 
116
- #: admin.inc.php:240
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
- #: admin.inc.php:241
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
- #: admin.inc.php:242
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
- #: admin.inc.php:243
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
- #: admin.inc.php:244
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
- #: admin.inc.php:247
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
- #: admin.inc.php:249
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
@@ -148,11 +148,11 @@ msgid ""
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
- #: admin.inc.php:252
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
- #: admin.inc.php:254
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
@@ -160,28 +160,28 @@ msgstr ""
160
  "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
161
  "potrà fare aumentare i tempi di caricamento della stessa pagina"
162
 
163
- #: admin.inc.php:257
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr ""
166
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
167
  "del sito?"
168
 
169
- #: admin.inc.php:260
170
  #, fuzzy
171
  msgid "Track visits of admins?"
172
  msgstr ""
173
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
174
  "del sito?"
175
 
176
- #: admin.inc.php:263
177
  msgid "Display page views on Posts > All Posts in Admin"
178
  msgstr ""
179
 
180
- #: admin.inc.php:266
181
  msgid "Link to Top 10 plugin page"
182
  msgstr ""
183
 
184
- #: admin.inc.php:268
185
  #, fuzzy
186
  msgid ""
187
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -191,16 +191,16 @@ msgstr ""
191
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
192
  "opzione!"
193
 
194
- #: admin.inc.php:275
195
  #, fuzzy
196
  msgid "Output Options"
197
  msgstr "Opzioni output:"
198
 
199
- #: admin.inc.php:278
200
  msgid "Format to display the count in: "
201
  msgstr "Formato per il conteggio:"
202
 
203
- #: admin.inc.php:280
204
  #, fuzzy
205
  msgid ""
206
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -213,138 +213,138 @@ msgstr ""
213
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
214
  "123 volte, 23 visite odierne)</code>"
215
 
216
- #: admin.inc.php:283
217
  msgid "Title of popular posts: "
218
  msgstr "Titolo per gli articoli più popolari:"
219
 
220
- #: admin.inc.php:286
221
  msgid "Title of daily popular posts: "
222
  msgstr "Titolo per gli articoli più popolari del giorno:"
223
 
224
- #: admin.inc.php:289
225
  msgid "When there are no posts, what should be shown?"
226
  msgstr ""
227
 
228
- #: admin.inc.php:293
229
  msgid "Blank Output"
230
  msgstr ""
231
 
232
- #: admin.inc.php:297
233
  msgid "Display:"
234
  msgstr ""
235
 
236
- #: admin.inc.php:301
237
  msgid "Show post excerpt in list?"
238
  msgstr "Desideri mostrare gli estratti?"
239
 
240
- #: admin.inc.php:304
241
  msgid "Length of excerpt (in words): "
242
  msgstr "Lunghezza estratto (in parole):"
243
 
244
- #: admin.inc.php:307
245
  #, fuzzy
246
  msgid "Show post author in list?"
247
  msgstr "Desideri mostrare gli estratti?"
248
 
249
- #: admin.inc.php:310
250
  #, fuzzy
251
  msgid "Show post date in list?"
252
  msgstr "Desideri mostrare gli estratti?"
253
 
254
- #: admin.inc.php:313
255
  msgid "Limit post title length (in characters)"
256
  msgstr ""
257
 
258
- #: admin.inc.php:316
259
  msgid "Display number of page views in popular lists?"
260
  msgstr ""
261
  "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
262
  "più popolari?"
263
 
264
- #: admin.inc.php:319
265
  msgid "Open links in new window"
266
  msgstr ""
267
 
268
- #: admin.inc.php:322
269
  msgid "Add nofollow attribute to links in the list"
270
  msgstr ""
271
 
272
- #: admin.inc.php:325
273
  msgid "Exclude display of related posts on these posts / pages"
274
  msgstr ""
275
 
276
- #: admin.inc.php:328
277
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
278
  msgstr ""
279
 
280
- #: admin.inc.php:331
281
  msgid "Customize the output:"
282
  msgstr "Personalizzazione output:"
283
 
284
- #: admin.inc.php:333
285
  msgid "HTML to display before the list of posts: "
286
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
287
 
288
- #: admin.inc.php:336
289
  msgid "HTML to display before each list item: "
290
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
291
 
292
- #: admin.inc.php:339
293
  msgid "HTML to display after each list item: "
294
  msgstr "HTML da mostrare dopo ogni lista:"
295
 
296
- #: admin.inc.php:342
297
  msgid "HTML to display after the list of posts: "
298
  msgstr "HTML da mostrare dopo la lista degli articoli:"
299
 
300
- #: admin.inc.php:345
301
  msgid "Post thumbnail options:"
302
  msgstr "Opzioni miniature articolo:"
303
 
304
- #: admin.inc.php:347
305
  msgid "Location of post thumbnail:"
306
  msgstr ""
307
 
308
- #: admin.inc.php:351
309
  msgid "Display thumbnails inline with posts, before title"
310
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
311
 
312
- #: admin.inc.php:355
313
  msgid "Display thumbnails inline with posts, after title"
314
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
315
 
316
- #: admin.inc.php:359
317
  msgid "Display only thumbnails, no text"
318
  msgstr "Mostra le sole miniature, nessun testo"
319
 
320
- #: admin.inc.php:363
321
  msgid "Do not display thumbnails, only text."
322
  msgstr "Non mostrare le miniature, solo testo."
323
 
324
- #: admin.inc.php:367
325
  msgid "Width of the thumbnail: "
326
  msgstr ""
327
 
328
- #: admin.inc.php:370
329
  msgid "Height of the thumbnail: "
330
  msgstr ""
331
 
332
- #: admin.inc.php:373
333
  msgid "Style attributes / Width and Height HTML attributes:"
334
  msgstr ""
335
 
336
- #: admin.inc.php:377
337
  msgid ""
338
  "Style attributes are used for width and height. <code>style=\"max-width:"
339
  msgstr ""
340
 
341
- #: admin.inc.php:381
342
  msgid ""
343
  "HTML width and height attributes are used for width and height. <code>width="
344
  "\""
345
  msgstr ""
346
 
347
- #: admin.inc.php:385
348
  msgid "Use timthumb to generate thumbnails? "
349
  msgstr ""
350
 
@@ -354,18 +354,18 @@ msgid ""
354
  "\">timthumb</a> will be used to generate thumbnails"
355
  msgstr ""
356
 
357
- #: admin.inc.php:388
358
  #, fuzzy
359
  msgid "Post thumbnail meta field name: "
360
  msgstr "Opzioni miniature articolo:"
361
 
362
- #: admin.inc.php:389
363
  msgid ""
364
  "The value of this field should contain the image source and is set in the "
365
  "<em>Add New Post</em> screen"
366
  msgstr ""
367
 
368
- #: admin.inc.php:391
369
  #, fuzzy
370
  msgid ""
371
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -376,7 +376,7 @@ msgstr ""
376
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
377
  "dimensioni"
378
 
379
- #: admin.inc.php:392
380
  #, fuzzy
381
  msgid ""
382
  "This could slow down the loading of your page if the first image in the "
@@ -387,11 +387,11 @@ msgstr ""
387
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
388
  "dimensioni"
389
 
390
- #: admin.inc.php:394
391
  msgid "Use default thumbnail? "
392
  msgstr ""
393
 
394
- #: admin.inc.php:395
395
  msgid ""
396
  "If checked, when no thumbnail is found, show a default one from the URL "
397
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -399,11 +399,11 @@ msgstr ""
399
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
400
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
401
 
402
- #: admin.inc.php:397
403
  msgid "Default thumbnail: "
404
  msgstr ""
405
 
406
- #: admin.inc.php:398
407
  #, fuzzy
408
  msgid ""
409
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -415,98 +415,98 @@ msgstr ""
415
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
416
  "specificato qui sotto:"
417
 
418
- #: admin.inc.php:404
419
  msgid "Custom Styles"
420
  msgstr ""
421
 
422
- #: admin.inc.php:407
423
  msgid "Custom CSS to add to header:"
424
  msgstr ""
425
 
426
- #: admin.inc.php:410
427
  msgid ""
428
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
429
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
430
  "available CSS classes to style."
431
  msgstr ""
432
 
433
- #: admin.inc.php:417
434
  msgid "Maintenance"
435
  msgstr ""
436
 
437
- #: admin.inc.php:421
438
  msgid ""
439
  "Over time the Daily Top 10 database grows in size, which reduces the "
440
  "performance of the plugin. Cleaning the database at regular intervals could "
441
  "improve performance, especially on high traffic blogs."
442
  msgstr ""
443
 
444
- #: admin.inc.php:422
445
  msgid ""
446
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
447
  "everytime the job is rescheduled (i.e. you change the settings below). This "
448
  "causes the daily posts table to reset."
449
  msgstr ""
450
 
451
- #: admin.inc.php:425
452
  msgid "Enable scheduled maintenance of daily tables:"
453
  msgstr ""
454
 
455
- #: admin.inc.php:429
456
  msgid "Time to run maintenance"
457
  msgstr ""
458
 
459
- #: admin.inc.php:432
460
  msgid "How often should the maintenance be run:"
461
  msgstr ""
462
 
463
- #: admin.inc.php:436
464
  msgid "Daily"
465
  msgstr ""
466
 
467
- #: admin.inc.php:440
468
  msgid "Weekly"
469
  msgstr ""
470
 
471
- #: admin.inc.php:444
472
  msgid "Fortnightly"
473
  msgstr ""
474
 
475
- #: admin.inc.php:448
476
  msgid "Monthly"
477
  msgstr ""
478
 
479
- #: admin.inc.php:457
480
  msgid "The cron job has been scheduled. Maintenance will run "
481
  msgstr ""
482
 
483
- #: admin.inc.php:462
484
  msgid "The cron job is missing. Please resave this page to add the job"
485
  msgstr ""
486
 
487
- #: admin.inc.php:467
488
  msgid "Maintenance is turned off"
489
  msgstr ""
490
 
491
- #: admin.inc.php:475
492
  #, fuzzy
493
  msgid "Save Options"
494
  msgstr "Opzioni:"
495
 
496
- #: admin.inc.php:476
497
  #, fuzzy
498
  msgid "Default Options"
499
  msgstr "Opzioni output:"
500
 
501
- #: admin.inc.php:476
502
  msgid "Do you want to set options to Default?"
503
  msgstr "Desideri ripristinare alle predefinite?"
504
 
505
- #: admin.inc.php:480
506
  msgid "Reset count"
507
  msgstr "Ripristino conteggio"
508
 
509
- #: admin.inc.php:483
510
  msgid ""
511
  "This cannot be reversed. Make sure that your database has been backed up "
512
  "before proceeding"
@@ -514,254 +514,254 @@ msgstr ""
514
  "Questa operazione non é reversibile. Effettua il backup del database prima "
515
  "di procedere"
516
 
517
- #: admin.inc.php:486
518
  #, fuzzy
519
  msgid "Reset Popular Posts"
520
  msgstr "Gli articoli più popolari"
521
 
522
- #: admin.inc.php:486
523
  msgid "Are you sure you want to reset the popular posts?"
524
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
525
 
526
- #: admin.inc.php:487
527
  #, fuzzy
528
  msgid "Reset Daily Popular Posts"
529
  msgstr "Gli articoli più popolari di oggi"
530
 
531
- #: admin.inc.php:487
532
  msgid "Are you sure you want to reset the daily popular posts?"
533
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
534
 
535
- #: admin.inc.php:488
536
  msgid "Clear duplicates"
537
  msgstr ""
538
 
539
- #: admin.inc.php:488
540
  msgid "This will delete the duplicate entries in the tables. Proceed?"
541
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
542
 
543
- #: admin.inc.php:531 admin.inc.php:906
544
  msgid "Popular Posts"
545
  msgstr "Gli articoli più popolari"
546
 
547
- #: admin.inc.php:531 admin.inc.php:618
548
  msgid "Daily Popular Posts"
549
  msgstr "Gli articoli più popolari di oggi"
550
 
551
- #: admin.inc.php:559
552
  msgid "Support the development"
553
  msgstr "Sostieni lo sviluppo"
554
 
555
- #: admin.inc.php:567
556
  msgid "Enter amount in USD: "
557
  msgstr "Inserisci la cifra in USD: "
558
 
559
- #: admin.inc.php:571
560
  msgid "Send your donation to the author of"
561
  msgstr "Invia la tua donazione all'autore di"
562
 
563
- #: admin.inc.php:577
564
  msgid "Follow us"
565
  msgstr ""
566
 
567
- #: admin.inc.php:583
568
  #, fuzzy
569
  msgid "Quick Links"
570
  msgstr "Collegamenti veloci"
571
 
572
- #: admin.inc.php:585
573
  #, fuzzy
574
  msgid "Top 10 plugin page"
575
  msgstr "pagina plugin"
576
 
577
- #: admin.inc.php:586
578
  msgid "Other plugins"
579
  msgstr "Altri plugin"
580
 
581
- #: admin.inc.php:587
582
  msgid "Ajay's blog"
583
  msgstr "Il blog di Ajay"
584
 
585
- #: admin.inc.php:588 top-10.php:1094
586
  msgid "Support"
587
  msgstr "Supporto"
588
 
589
- #: admin.inc.php:592
590
  msgid "Recent developments"
591
  msgstr "Sviluppi recenti"
592
 
593
- #: admin.inc.php:609 admin.inc.php:612
594
  #, fuzzy
595
  msgid "Top 10 Settings"
596
  msgstr "Impostazioni"
597
 
598
- #: admin.inc.php:609
599
  msgid "Top 10"
600
  msgstr "Top 10"
601
 
602
- #: admin.inc.php:615
603
  #, fuzzy
604
  msgid "Overall Popular Posts"
605
  msgstr "Visualizza panoramica articoli più popolari"
606
 
607
- #: admin.inc.php:786
608
  msgid "Results"
609
  msgstr "Risultati"
610
 
611
- #: admin.inc.php:788 admin.inc.php:794
612
  msgid "of"
613
  msgstr "di"
614
 
615
- #: admin.inc.php:792
616
  msgid "Page"
617
  msgstr "Pagina"
618
 
619
- #: admin.inc.php:806
620
  msgid "View Daily Popular Posts"
621
  msgstr "Visualizza gli articoli più letti di oggi"
622
 
623
- #: admin.inc.php:809 admin.inc.php:822
624
  msgid "Results per-page:"
625
  msgstr "Risultati per pagina:"
626
 
627
- #: admin.inc.php:819
628
  msgid "View Overall Popular Posts"
629
  msgstr "Visualizza panoramica articoli più popolari"
630
 
631
- #: admin.inc.php:848
632
  msgid "Previous"
633
  msgstr "Precedente"
634
 
635
- #: admin.inc.php:866
636
  msgid "Next"
637
  msgstr "Successiva"
638
 
639
- #: admin.inc.php:907
640
  msgid "Daily Popular"
641
  msgstr "I più letti di oggi"
642
 
643
- #: admin.inc.php:923
644
  #, fuzzy
645
  msgid "Total Views"
646
  msgstr "Totale / Visualizzazioni odierne"
647
 
648
- #: admin.inc.php:924
649
  #, fuzzy
650
  msgid "Today's Views"
651
  msgstr "Totale / Visualizzazioni odierne"
652
 
653
- #: top-10.php:366
654
- msgid " Posted by "
655
  msgstr ""
656
 
657
- #: top-10.php:448
658
  msgid "Display the posts popular this week"
659
  msgstr "Mostra articoli più popolari settimana in corso"
660
 
661
- #: top-10.php:449
662
  #, fuzzy
663
  msgid "Popular Posts [Top 10]"
664
  msgstr "Gli articoli più popolari"
665
 
666
- #: top-10.php:466
667
  msgid "Title"
668
  msgstr ""
669
 
670
- #: top-10.php:471
671
  msgid "No. of posts"
672
  msgstr ""
673
 
674
- #: top-10.php:476
675
  msgid "Overall"
676
  msgstr ""
677
 
678
- #: top-10.php:477
679
  msgid "Custom time period (Enter below)"
680
  msgstr ""
681
 
682
- #: top-10.php:482
683
  msgid "Range in number of days (applies only to custom option above)"
684
  msgstr ""
685
 
686
- #: top-10.php:487
687
  #, fuzzy
688
  msgid " Show excerpt?"
689
  msgstr "Desideri mostrare gli estratti?"
690
 
691
- #: top-10.php:492
692
  msgid " Show author?"
693
  msgstr ""
694
 
695
- #: top-10.php:497
696
  #, fuzzy
697
  msgid " Show date?"
698
  msgstr "Desideri mostrare gli estratti?"
699
 
700
- #: top-10.php:501
701
  #, fuzzy
702
  msgid "Thumbnail options"
703
  msgstr "Opzioni miniature articolo:"
704
 
705
- #: top-10.php:503
706
  #, fuzzy
707
  msgid "Thumbnails inline, before title"
708
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
709
 
710
- #: top-10.php:504
711
  #, fuzzy
712
  msgid "Thumbnails inline, after title"
713
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
714
 
715
- #: top-10.php:505
716
  #, fuzzy
717
  msgid "Only thumbnails, no text"
718
  msgstr "Mostra le sole miniature, nessun testo"
719
 
720
- #: top-10.php:506
721
  #, fuzzy
722
  msgid "No thumbnails, only text."
723
  msgstr "Non mostrare le miniature, solo testo."
724
 
725
- #: top-10.php:511
726
  #, fuzzy
727
  msgid "Thumbnail height"
728
  msgstr "Opzioni miniature articolo:"
729
 
730
- #: top-10.php:516
731
  #, fuzzy
732
  msgid "Thumbnail width"
733
  msgstr "Opzioni miniature articolo:"
734
 
735
- #: top-10.php:617
736
  msgid "<h3>Popular Posts</h3>"
737
  msgstr "<h3>Articoli più letti</h3>"
738
 
739
- #: top-10.php:618
740
  msgid "<h3>Daily Popular</h3>"
741
  msgstr "<h3>I più letti di oggi</h3>"
742
 
743
- #: top-10.php:619
744
  #, fuzzy
745
  msgid "No top posts yet"
746
  msgstr "Ripristino 10 articoli più popolari"
747
 
748
- #: top-10.php:1060
749
  msgid "Once Weekly"
750
  msgstr ""
751
 
752
- #: top-10.php:1061
753
  msgid "Once Fortnightly"
754
  msgstr ""
755
 
756
- #: top-10.php:1062
757
  msgid "Once Monthly"
758
  msgstr ""
759
 
760
- #: top-10.php:1082
761
  msgid "Settings"
762
  msgstr "Impostazioni"
763
 
764
- #: top-10.php:1095
765
  msgid "Donate"
766
  msgstr "Donazione"
767
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Le opzioni sono state salvate con successo."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Opzioni impostate alle predefinite."
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Ripristino 10 articoli più popolari"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Ripristino 10 articoli più popolari del giorno"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Numero degli articoli più popolari da mostrare:"
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "Quanti giorni desideri siano considerati per il computo delle "
77
  "visualizzazioni per articoli più popolari del giorno?"
78
 
79
+ #: admin.inc.php:198
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:209
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
+ #: admin.inc.php:213
88
  msgid "Exclude Categories: "
89
  msgstr "Escludi categorie:"
90
 
91
+ #: admin.inc.php:228
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:233
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
102
 
103
+ #: admin.inc.php:235
104
  msgid "Posts"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:236
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Pagina"
111
 
112
+ #: admin.inc.php:237
113
  msgid "Home page"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:238
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:239
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:240
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:241
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:242
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:245
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:247
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
+ #: admin.inc.php:250
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:252
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
160
  "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
161
  "potrà fare aumentare i tempi di caricamento della stessa pagina"
162
 
163
+ #: admin.inc.php:255
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr ""
166
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
167
  "del sito?"
168
 
169
+ #: admin.inc.php:258
170
  #, fuzzy
171
  msgid "Track visits of admins?"
172
  msgstr ""
173
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
174
  "del sito?"
175
 
176
+ #: admin.inc.php:261
177
  msgid "Display page views on Posts > All Posts in Admin"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:264
181
  msgid "Link to Top 10 plugin page"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:266
185
  #, fuzzy
186
  msgid ""
187
  "A link to the plugin is added as an extra list item to the list of popular "
191
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
192
  "opzione!"
193
 
194
+ #: admin.inc.php:273
195
  #, fuzzy
196
  msgid "Output Options"
197
  msgstr "Opzioni output:"
198
 
199
+ #: admin.inc.php:276
200
  msgid "Format to display the count in: "
201
  msgstr "Formato per il conteggio:"
202
 
203
+ #: admin.inc.php:278
204
  #, fuzzy
205
  msgid ""
206
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
213
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
214
  "123 volte, 23 visite odierne)</code>"
215
 
216
+ #: admin.inc.php:281
217
  msgid "Title of popular posts: "
218
  msgstr "Titolo per gli articoli più popolari:"
219
 
220
+ #: admin.inc.php:284
221
  msgid "Title of daily popular posts: "
222
  msgstr "Titolo per gli articoli più popolari del giorno:"
223
 
224
+ #: admin.inc.php:287
225
  msgid "When there are no posts, what should be shown?"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:291
229
  msgid "Blank Output"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:295
233
  msgid "Display:"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:299
237
  msgid "Show post excerpt in list?"
238
  msgstr "Desideri mostrare gli estratti?"
239
 
240
+ #: admin.inc.php:302
241
  msgid "Length of excerpt (in words): "
242
  msgstr "Lunghezza estratto (in parole):"
243
 
244
+ #: admin.inc.php:305
245
  #, fuzzy
246
  msgid "Show post author in list?"
247
  msgstr "Desideri mostrare gli estratti?"
248
 
249
+ #: admin.inc.php:308
250
  #, fuzzy
251
  msgid "Show post date in list?"
252
  msgstr "Desideri mostrare gli estratti?"
253
 
254
+ #: admin.inc.php:311
255
  msgid "Limit post title length (in characters)"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:314
259
  msgid "Display number of page views in popular lists?"
260
  msgstr ""
261
  "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
262
  "più popolari?"
263
 
264
+ #: admin.inc.php:317
265
  msgid "Open links in new window"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:320
269
  msgid "Add nofollow attribute to links in the list"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:323
273
  msgid "Exclude display of related posts on these posts / pages"
274
  msgstr ""
275
 
276
+ #: admin.inc.php:326
277
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:329
281
  msgid "Customize the output:"
282
  msgstr "Personalizzazione output:"
283
 
284
+ #: admin.inc.php:331
285
  msgid "HTML to display before the list of posts: "
286
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
287
 
288
+ #: admin.inc.php:334
289
  msgid "HTML to display before each list item: "
290
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
291
 
292
+ #: admin.inc.php:337
293
  msgid "HTML to display after each list item: "
294
  msgstr "HTML da mostrare dopo ogni lista:"
295
 
296
+ #: admin.inc.php:340
297
  msgid "HTML to display after the list of posts: "
298
  msgstr "HTML da mostrare dopo la lista degli articoli:"
299
 
300
+ #: admin.inc.php:343
301
  msgid "Post thumbnail options:"
302
  msgstr "Opzioni miniature articolo:"
303
 
304
+ #: admin.inc.php:345
305
  msgid "Location of post thumbnail:"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:349
309
  msgid "Display thumbnails inline with posts, before title"
310
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
311
 
312
+ #: admin.inc.php:353
313
  msgid "Display thumbnails inline with posts, after title"
314
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
315
 
316
+ #: admin.inc.php:357
317
  msgid "Display only thumbnails, no text"
318
  msgstr "Mostra le sole miniature, nessun testo"
319
 
320
+ #: admin.inc.php:361
321
  msgid "Do not display thumbnails, only text."
322
  msgstr "Non mostrare le miniature, solo testo."
323
 
324
+ #: admin.inc.php:365
325
  msgid "Width of the thumbnail: "
326
  msgstr ""
327
 
328
+ #: admin.inc.php:368
329
  msgid "Height of the thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:371
333
  msgid "Style attributes / Width and Height HTML attributes:"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:375
337
  msgid ""
338
  "Style attributes are used for width and height. <code>style=\"max-width:"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:379
342
  msgid ""
343
  "HTML width and height attributes are used for width and height. <code>width="
344
  "\""
345
  msgstr ""
346
 
347
+ #: admin.inc.php:383
348
  msgid "Use timthumb to generate thumbnails? "
349
  msgstr ""
350
 
354
  "\">timthumb</a> will be used to generate thumbnails"
355
  msgstr ""
356
 
357
+ #: admin.inc.php:389
358
  #, fuzzy
359
  msgid "Post thumbnail meta field name: "
360
  msgstr "Opzioni miniature articolo:"
361
 
362
+ #: admin.inc.php:392
363
  msgid ""
364
  "The value of this field should contain the image source and is set in the "
365
  "<em>Add New Post</em> screen"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:395
369
  #, fuzzy
370
  msgid ""
371
  "If the postmeta is not set, then should the plugin extract the first image "
376
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
377
  "dimensioni"
378
 
379
+ #: admin.inc.php:398
380
  #, fuzzy
381
  msgid ""
382
  "This could slow down the loading of your page if the first image in the "
387
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
388
  "dimensioni"
389
 
390
+ #: admin.inc.php:401
391
  msgid "Use default thumbnail? "
392
  msgstr ""
393
 
394
+ #: admin.inc.php:404
395
  msgid ""
396
  "If checked, when no thumbnail is found, show a default one from the URL "
397
  "below. If not checked and no thumbnail is found, no image will be shown."
399
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
400
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
401
 
402
+ #: admin.inc.php:407
403
  msgid "Default thumbnail: "
404
  msgstr ""
405
 
406
+ #: admin.inc.php:410
407
  #, fuzzy
408
  msgid ""
409
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
415
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
416
  "specificato qui sotto:"
417
 
418
+ #: admin.inc.php:417
419
  msgid "Custom Styles"
420
  msgstr ""
421
 
422
+ #: admin.inc.php:420
423
  msgid "Custom CSS to add to header:"
424
  msgstr ""
425
 
426
+ #: admin.inc.php:423
427
  msgid ""
428
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
429
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
430
  "available CSS classes to style."
431
  msgstr ""
432
 
433
+ #: admin.inc.php:430
434
  msgid "Maintenance"
435
  msgstr ""
436
 
437
+ #: admin.inc.php:434
438
  msgid ""
439
  "Over time the Daily Top 10 database grows in size, which reduces the "
440
  "performance of the plugin. Cleaning the database at regular intervals could "
441
  "improve performance, especially on high traffic blogs."
442
  msgstr ""
443
 
444
+ #: admin.inc.php:435
445
  msgid ""
446
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
447
  "everytime the job is rescheduled (i.e. you change the settings below). This "
448
  "causes the daily posts table to reset."
449
  msgstr ""
450
 
451
+ #: admin.inc.php:438
452
  msgid "Enable scheduled maintenance of daily tables:"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:442
456
  msgid "Time to run maintenance"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:445
460
  msgid "How often should the maintenance be run:"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:449
464
  msgid "Daily"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:453
468
  msgid "Weekly"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:457
472
  msgid "Fortnightly"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:461
476
  msgid "Monthly"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:470
480
  msgid "The cron job has been scheduled. Maintenance will run "
481
  msgstr ""
482
 
483
+ #: admin.inc.php:475
484
  msgid "The cron job is missing. Please resave this page to add the job"
485
  msgstr ""
486
 
487
+ #: admin.inc.php:480
488
  msgid "Maintenance is turned off"
489
  msgstr ""
490
 
491
+ #: admin.inc.php:488
492
  #, fuzzy
493
  msgid "Save Options"
494
  msgstr "Opzioni:"
495
 
496
+ #: admin.inc.php:489
497
  #, fuzzy
498
  msgid "Default Options"
499
  msgstr "Opzioni output:"
500
 
501
+ #: admin.inc.php:489
502
  msgid "Do you want to set options to Default?"
503
  msgstr "Desideri ripristinare alle predefinite?"
504
 
505
+ #: admin.inc.php:493
506
  msgid "Reset count"
507
  msgstr "Ripristino conteggio"
508
 
509
+ #: admin.inc.php:496
510
  msgid ""
511
  "This cannot be reversed. Make sure that your database has been backed up "
512
  "before proceeding"
514
  "Questa operazione non é reversibile. Effettua il backup del database prima "
515
  "di procedere"
516
 
517
+ #: admin.inc.php:499
518
  #, fuzzy
519
  msgid "Reset Popular Posts"
520
  msgstr "Gli articoli più popolari"
521
 
522
+ #: admin.inc.php:499
523
  msgid "Are you sure you want to reset the popular posts?"
524
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
525
 
526
+ #: admin.inc.php:500
527
  #, fuzzy
528
  msgid "Reset Daily Popular Posts"
529
  msgstr "Gli articoli più popolari di oggi"
530
 
531
+ #: admin.inc.php:500
532
  msgid "Are you sure you want to reset the daily popular posts?"
533
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
534
 
535
+ #: admin.inc.php:501
536
  msgid "Clear duplicates"
537
  msgstr ""
538
 
539
+ #: admin.inc.php:501
540
  msgid "This will delete the duplicate entries in the tables. Proceed?"
541
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
542
 
543
+ #: admin.inc.php:544 admin.inc.php:929
544
  msgid "Popular Posts"
545
  msgstr "Gli articoli più popolari"
546
 
547
+ #: admin.inc.php:544 admin.inc.php:631
548
  msgid "Daily Popular Posts"
549
  msgstr "Gli articoli più popolari di oggi"
550
 
551
+ #: admin.inc.php:572
552
  msgid "Support the development"
553
  msgstr "Sostieni lo sviluppo"
554
 
555
+ #: admin.inc.php:580
556
  msgid "Enter amount in USD: "
557
  msgstr "Inserisci la cifra in USD: "
558
 
559
+ #: admin.inc.php:584
560
  msgid "Send your donation to the author of"
561
  msgstr "Invia la tua donazione all'autore di"
562
 
563
+ #: admin.inc.php:590
564
  msgid "Follow us"
565
  msgstr ""
566
 
567
+ #: admin.inc.php:596
568
  #, fuzzy
569
  msgid "Quick Links"
570
  msgstr "Collegamenti veloci"
571
 
572
+ #: admin.inc.php:598
573
  #, fuzzy
574
  msgid "Top 10 plugin page"
575
  msgstr "pagina plugin"
576
 
577
+ #: admin.inc.php:599
578
  msgid "Other plugins"
579
  msgstr "Altri plugin"
580
 
581
+ #: admin.inc.php:600
582
  msgid "Ajay's blog"
583
  msgstr "Il blog di Ajay"
584
 
585
+ #: admin.inc.php:601 top-10.php:1147
586
  msgid "Support"
587
  msgstr "Supporto"
588
 
589
+ #: admin.inc.php:605
590
  msgid "Recent developments"
591
  msgstr "Sviluppi recenti"
592
 
593
+ #: admin.inc.php:622 admin.inc.php:625
594
  #, fuzzy
595
  msgid "Top 10 Settings"
596
  msgstr "Impostazioni"
597
 
598
+ #: admin.inc.php:622
599
  msgid "Top 10"
600
  msgstr "Top 10"
601
 
602
+ #: admin.inc.php:628
603
  #, fuzzy
604
  msgid "Overall Popular Posts"
605
  msgstr "Visualizza panoramica articoli più popolari"
606
 
607
+ #: admin.inc.php:799
608
  msgid "Results"
609
  msgstr "Risultati"
610
 
611
+ #: admin.inc.php:801 admin.inc.php:807
612
  msgid "of"
613
  msgstr "di"
614
 
615
+ #: admin.inc.php:805
616
  msgid "Page"
617
  msgstr "Pagina"
618
 
619
+ #: admin.inc.php:819
620
  msgid "View Daily Popular Posts"
621
  msgstr "Visualizza gli articoli più letti di oggi"
622
 
623
+ #: admin.inc.php:822 admin.inc.php:835
624
  msgid "Results per-page:"
625
  msgstr "Risultati per pagina:"
626
 
627
+ #: admin.inc.php:832
628
  msgid "View Overall Popular Posts"
629
  msgstr "Visualizza panoramica articoli più popolari"
630
 
631
+ #: admin.inc.php:861
632
  msgid "Previous"
633
  msgstr "Precedente"
634
 
635
+ #: admin.inc.php:889
636
  msgid "Next"
637
  msgstr "Successiva"
638
 
639
+ #: admin.inc.php:930
640
  msgid "Daily Popular"
641
  msgstr "I più letti di oggi"
642
 
643
+ #: admin.inc.php:946
644
  #, fuzzy
645
  msgid "Total Views"
646
  msgstr "Totale / Visualizzazioni odierne"
647
 
648
+ #: admin.inc.php:947
649
  #, fuzzy
650
  msgid "Today's Views"
651
  msgstr "Totale / Visualizzazioni odierne"
652
 
653
+ #: top-10.php:415
654
+ msgid " by "
655
  msgstr ""
656
 
657
+ #: top-10.php:501
658
  msgid "Display the posts popular this week"
659
  msgstr "Mostra articoli più popolari settimana in corso"
660
 
661
+ #: top-10.php:502
662
  #, fuzzy
663
  msgid "Popular Posts [Top 10]"
664
  msgstr "Gli articoli più popolari"
665
 
666
+ #: top-10.php:519
667
  msgid "Title"
668
  msgstr ""
669
 
670
+ #: top-10.php:524
671
  msgid "No. of posts"
672
  msgstr ""
673
 
674
+ #: top-10.php:529
675
  msgid "Overall"
676
  msgstr ""
677
 
678
+ #: top-10.php:530
679
  msgid "Custom time period (Enter below)"
680
  msgstr ""
681
 
682
+ #: top-10.php:535
683
  msgid "Range in number of days (applies only to custom option above)"
684
  msgstr ""
685
 
686
+ #: top-10.php:540
687
  #, fuzzy
688
  msgid " Show excerpt?"
689
  msgstr "Desideri mostrare gli estratti?"
690
 
691
+ #: top-10.php:545
692
  msgid " Show author?"
693
  msgstr ""
694
 
695
+ #: top-10.php:550
696
  #, fuzzy
697
  msgid " Show date?"
698
  msgstr "Desideri mostrare gli estratti?"
699
 
700
+ #: top-10.php:554
701
  #, fuzzy
702
  msgid "Thumbnail options"
703
  msgstr "Opzioni miniature articolo:"
704
 
705
+ #: top-10.php:556
706
  #, fuzzy
707
  msgid "Thumbnails inline, before title"
708
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
709
 
710
+ #: top-10.php:557
711
  #, fuzzy
712
  msgid "Thumbnails inline, after title"
713
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
714
 
715
+ #: top-10.php:558
716
  #, fuzzy
717
  msgid "Only thumbnails, no text"
718
  msgstr "Mostra le sole miniature, nessun testo"
719
 
720
+ #: top-10.php:559
721
  #, fuzzy
722
  msgid "No thumbnails, only text."
723
  msgstr "Non mostrare le miniature, solo testo."
724
 
725
+ #: top-10.php:564
726
  #, fuzzy
727
  msgid "Thumbnail height"
728
  msgstr "Opzioni miniature articolo:"
729
 
730
+ #: top-10.php:569
731
  #, fuzzy
732
  msgid "Thumbnail width"
733
  msgstr "Opzioni miniature articolo:"
734
 
735
+ #: top-10.php:670
736
  msgid "<h3>Popular Posts</h3>"
737
  msgstr "<h3>Articoli più letti</h3>"
738
 
739
+ #: top-10.php:671
740
  msgid "<h3>Daily Popular</h3>"
741
  msgstr "<h3>I più letti di oggi</h3>"
742
 
743
+ #: top-10.php:672
744
  #, fuzzy
745
  msgid "No top posts yet"
746
  msgstr "Ripristino 10 articoli più popolari"
747
 
748
+ #: top-10.php:1113
749
  msgid "Once Weekly"
750
  msgstr ""
751
 
752
+ #: top-10.php:1114
753
  msgid "Once Fortnightly"
754
  msgstr ""
755
 
756
+ #: top-10.php:1115
757
  msgid "Once Monthly"
758
  msgstr ""
759
 
760
+ #: top-10.php:1135
761
  msgid "Settings"
762
  msgstr "Impostazioni"
763
 
764
+ #: top-10.php:1148
765
  msgid "Donate"
766
  msgstr "Donazione"
767
 
languages/tptn-nl_NL.mo CHANGED
Binary file
languages/tptn-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
@@ -17,130 +17,130 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:103
21
  msgid "Scheduled maintenance enabled / modified"
22
  msgstr ""
23
 
24
- #: admin.inc.php:107
25
  msgid "Scheduled maintenance disabled"
26
  msgstr ""
27
 
28
- #: admin.inc.php:124
29
  msgid "Options saved successfully."
30
  msgstr "Opties succesvol opgeslagen."
31
 
32
- #: admin.inc.php:133
33
  msgid "Options set to Default."
34
  msgstr "Opties ingesteld op Standaard."
35
 
36
- #: admin.inc.php:139
37
  msgid "Top 10 popular posts reset"
38
  msgstr "Reset Top 10 populaire berichten"
39
 
40
- #: admin.inc.php:145
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Reset Top 10 dagelijkse populaire berichten"
43
 
44
- #: admin.inc.php:152
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
- #: admin.inc.php:173
49
  msgid "General options"
50
  msgstr ""
51
 
52
- #: admin.inc.php:177
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
- #: admin.inc.php:182
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:187
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:189
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
- #: admin.inc.php:193
72
  msgid "Number of popular posts to display: "
73
  msgstr "Aantal populaire berichten om weer te geven:"
74
 
75
- #: admin.inc.php:197
76
  msgid "Daily Popular should contain views of how many days? "
77
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
78
 
79
- #: admin.inc.php:200
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
- #: admin.inc.php:211
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
- #: admin.inc.php:215
88
  msgid "Exclude Categories: "
89
  msgstr ""
90
 
91
- #: admin.inc.php:230
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
- #: admin.inc.php:235
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Geef het aantal berichtweergaves weer?"
102
 
103
- #: admin.inc.php:237
104
  msgid "Posts"
105
  msgstr ""
106
 
107
- #: admin.inc.php:238
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Pagina"
111
 
112
- #: admin.inc.php:239
113
  msgid "Home page"
114
  msgstr ""
115
 
116
- #: admin.inc.php:240
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
- #: admin.inc.php:241
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
- #: admin.inc.php:242
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
- #: admin.inc.php:243
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
- #: admin.inc.php:244
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
- #: admin.inc.php:247
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
- #: admin.inc.php:249
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
@@ -148,35 +148,35 @@ msgid ""
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
- #: admin.inc.php:252
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
- #: admin.inc.php:254
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
159
  "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
160
  "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
161
 
162
- #: admin.inc.php:257
163
  msgid "Track visits of authors on their own posts?"
164
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
165
 
166
- #: admin.inc.php:260
167
  #, fuzzy
168
  msgid "Track visits of admins?"
169
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
170
 
171
- #: admin.inc.php:263
172
  msgid "Display page views on Posts > All Posts in Admin"
173
  msgstr ""
174
 
175
- #: admin.inc.php:266
176
  msgid "Link to Top 10 plugin page"
177
  msgstr ""
178
 
179
- #: admin.inc.php:268
180
  #, fuzzy
181
  msgid ""
182
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -186,16 +186,16 @@ msgstr ""
186
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
187
  "gewaardeerd!"
188
 
189
- #: admin.inc.php:275
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "Output Opties:"
193
 
194
- #: admin.inc.php:278
195
  msgid "Format to display the count in: "
196
  msgstr "Formaat om de optelling te laten zien:"
197
 
198
- #: admin.inc.php:280
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -207,138 +207,138 @@ msgstr ""
207
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
208
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
209
 
210
- #: admin.inc.php:283
211
  msgid "Title of popular posts: "
212
  msgstr "Titel van populaire berichten:"
213
 
214
- #: admin.inc.php:286
215
  msgid "Title of daily popular posts: "
216
  msgstr "Titel van dagelijkse populaire berichten:"
217
 
218
- #: admin.inc.php:289
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
- #: admin.inc.php:293
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
- #: admin.inc.php:297
227
  msgid "Display:"
228
  msgstr ""
229
 
230
- #: admin.inc.php:301
231
  msgid "Show post excerpt in list?"
232
  msgstr "Laat bericht samenvatting zien in lijst?"
233
 
234
- #: admin.inc.php:304
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Lengte van de samenvatting (in woorden):"
237
 
238
- #: admin.inc.php:307
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Laat bericht samenvatting zien in lijst?"
242
 
243
- #: admin.inc.php:310
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Laat bericht samenvatting zien in lijst?"
247
 
248
- #: admin.inc.php:313
249
  msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
- #: admin.inc.php:316
253
  msgid "Display number of page views in popular lists?"
254
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
255
 
256
- #: admin.inc.php:319
257
  msgid "Open links in new window"
258
  msgstr ""
259
 
260
- #: admin.inc.php:322
261
  msgid "Add nofollow attribute to links in the list"
262
  msgstr ""
263
 
264
- #: admin.inc.php:325
265
  msgid "Exclude display of related posts on these posts / pages"
266
  msgstr ""
267
 
268
- #: admin.inc.php:328
269
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
270
  msgstr ""
271
 
272
- #: admin.inc.php:331
273
  msgid "Customize the output:"
274
  msgstr "Aanpassen van de output:"
275
 
276
- #: admin.inc.php:333
277
  msgid "HTML to display before the list of posts: "
278
  msgstr "Te weergeven HTML voor de lijst met berichten:"
279
 
280
- #: admin.inc.php:336
281
  msgid "HTML to display before each list item: "
282
  msgstr "Te weergeven HTML voor elk lijst item:"
283
 
284
- #: admin.inc.php:339
285
  msgid "HTML to display after each list item: "
286
  msgstr "Te weergeven HTML na elk lijst item:"
287
 
288
- #: admin.inc.php:342
289
  msgid "HTML to display after the list of posts: "
290
  msgstr "Te weergeven HTML na de lijst met berichten:"
291
 
292
- #: admin.inc.php:345
293
  msgid "Post thumbnail options:"
294
  msgstr "Bericht miniatuurafbeelding opties:"
295
 
296
- #: admin.inc.php:347
297
  msgid "Location of post thumbnail:"
298
  msgstr ""
299
 
300
- #: admin.inc.php:351
301
  #, fuzzy
302
  msgid "Display thumbnails inline with posts, before title"
303
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
304
 
305
- #: admin.inc.php:355
306
  #, fuzzy
307
  msgid "Display thumbnails inline with posts, after title"
308
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
309
 
310
- #: admin.inc.php:359
311
  msgid "Display only thumbnails, no text"
312
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
313
 
314
- #: admin.inc.php:363
315
  msgid "Do not display thumbnails, only text."
316
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
317
 
318
- #: admin.inc.php:367
319
  msgid "Width of the thumbnail: "
320
  msgstr ""
321
 
322
- #: admin.inc.php:370
323
  msgid "Height of the thumbnail: "
324
  msgstr ""
325
 
326
- #: admin.inc.php:373
327
  msgid "Style attributes / Width and Height HTML attributes:"
328
  msgstr ""
329
 
330
- #: admin.inc.php:377
331
  msgid ""
332
  "Style attributes are used for width and height. <code>style=\"max-width:"
333
  msgstr ""
334
 
335
- #: admin.inc.php:381
336
  msgid ""
337
  "HTML width and height attributes are used for width and height. <code>width="
338
  "\""
339
  msgstr ""
340
 
341
- #: admin.inc.php:385
342
  msgid "Use timthumb to generate thumbnails? "
343
  msgstr ""
344
 
@@ -348,18 +348,18 @@ msgid ""
348
  "\">timthumb</a> will be used to generate thumbnails"
349
  msgstr ""
350
 
351
- #: admin.inc.php:388
352
  #, fuzzy
353
  msgid "Post thumbnail meta field name: "
354
  msgstr "Bericht miniatuurafbeelding opties:"
355
 
356
- #: admin.inc.php:389
357
  msgid ""
358
  "The value of this field should contain the image source and is set in the "
359
  "<em>Add New Post</em> screen"
360
  msgstr ""
361
 
362
- #: admin.inc.php:391
363
  #, fuzzy
364
  msgid ""
365
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -370,7 +370,7 @@ msgstr ""
370
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
371
  "qua bestandsgrootte"
372
 
373
- #: admin.inc.php:392
374
  #, fuzzy
375
  msgid ""
376
  "This could slow down the loading of your page if the first image in the "
@@ -381,21 +381,21 @@ msgstr ""
381
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
382
  "qua bestandsgrootte"
383
 
384
- #: admin.inc.php:394
385
  msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
- #: admin.inc.php:395
389
  msgid ""
390
  "If checked, when no thumbnail is found, show a default one from the URL "
391
  "below. If not checked and no thumbnail is found, no image will be shown."
392
  msgstr ""
393
 
394
- #: admin.inc.php:397
395
  msgid "Default thumbnail: "
396
  msgstr ""
397
 
398
- #: admin.inc.php:398
399
  #, fuzzy
400
  msgid ""
401
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -407,98 +407,98 @@ msgstr ""
407
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
408
  "standaard afbeelding zoals hieronder aangegeven:"
409
 
410
- #: admin.inc.php:404
411
  msgid "Custom Styles"
412
  msgstr ""
413
 
414
- #: admin.inc.php:407
415
  msgid "Custom CSS to add to header:"
416
  msgstr ""
417
 
418
- #: admin.inc.php:410
419
  msgid ""
420
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
421
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
422
  "available CSS classes to style."
423
  msgstr ""
424
 
425
- #: admin.inc.php:417
426
  msgid "Maintenance"
427
  msgstr ""
428
 
429
- #: admin.inc.php:421
430
  msgid ""
431
  "Over time the Daily Top 10 database grows in size, which reduces the "
432
  "performance of the plugin. Cleaning the database at regular intervals could "
433
  "improve performance, especially on high traffic blogs."
434
  msgstr ""
435
 
436
- #: admin.inc.php:422
437
  msgid ""
438
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
439
  "everytime the job is rescheduled (i.e. you change the settings below). This "
440
  "causes the daily posts table to reset."
441
  msgstr ""
442
 
443
- #: admin.inc.php:425
444
  msgid "Enable scheduled maintenance of daily tables:"
445
  msgstr ""
446
 
447
- #: admin.inc.php:429
448
  msgid "Time to run maintenance"
449
  msgstr ""
450
 
451
- #: admin.inc.php:432
452
  msgid "How often should the maintenance be run:"
453
  msgstr ""
454
 
455
- #: admin.inc.php:436
456
  msgid "Daily"
457
  msgstr ""
458
 
459
- #: admin.inc.php:440
460
  msgid "Weekly"
461
  msgstr ""
462
 
463
- #: admin.inc.php:444
464
  msgid "Fortnightly"
465
  msgstr ""
466
 
467
- #: admin.inc.php:448
468
  msgid "Monthly"
469
  msgstr ""
470
 
471
- #: admin.inc.php:457
472
  msgid "The cron job has been scheduled. Maintenance will run "
473
  msgstr ""
474
 
475
- #: admin.inc.php:462
476
  msgid "The cron job is missing. Please resave this page to add the job"
477
  msgstr ""
478
 
479
- #: admin.inc.php:467
480
  msgid "Maintenance is turned off"
481
  msgstr ""
482
 
483
- #: admin.inc.php:475
484
  #, fuzzy
485
  msgid "Save Options"
486
  msgstr "Opties:"
487
 
488
- #: admin.inc.php:476
489
  #, fuzzy
490
  msgid "Default Options"
491
  msgstr "Output Opties:"
492
 
493
- #: admin.inc.php:476
494
  msgid "Do you want to set options to Default?"
495
  msgstr "Wil je de opties terugzetten naar standaard?"
496
 
497
- #: admin.inc.php:480
498
  msgid "Reset count"
499
  msgstr "Reset telling"
500
 
501
- #: admin.inc.php:483
502
  msgid ""
503
  "This cannot be reversed. Make sure that your database has been backed up "
504
  "before proceeding"
@@ -506,255 +506,255 @@ msgstr ""
506
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
507
  "database gemaakt hebt voordat je verder gaat"
508
 
509
- #: admin.inc.php:486
510
  #, fuzzy
511
  msgid "Reset Popular Posts"
512
  msgstr "Populaire Berichten"
513
 
514
- #: admin.inc.php:486
515
  msgid "Are you sure you want to reset the popular posts?"
516
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
517
 
518
- #: admin.inc.php:487
519
  #, fuzzy
520
  msgid "Reset Daily Popular Posts"
521
  msgstr "Dagelijkse Populaire Berichten"
522
 
523
- #: admin.inc.php:487
524
  msgid "Are you sure you want to reset the daily popular posts?"
525
  msgstr ""
526
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
527
 
528
- #: admin.inc.php:488
529
  msgid "Clear duplicates"
530
  msgstr ""
531
 
532
- #: admin.inc.php:488
533
  msgid "This will delete the duplicate entries in the tables. Proceed?"
534
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
535
 
536
- #: admin.inc.php:531 admin.inc.php:906
537
  msgid "Popular Posts"
538
  msgstr "Populaire Berichten"
539
 
540
- #: admin.inc.php:531 admin.inc.php:618
541
  msgid "Daily Popular Posts"
542
  msgstr "Dagelijkse Populaire Berichten"
543
 
544
- #: admin.inc.php:559
545
  msgid "Support the development"
546
  msgstr "Ondersteun de ontwikkeling"
547
 
548
- #: admin.inc.php:567
549
  msgid "Enter amount in USD: "
550
  msgstr "Voer het bedrag in in USD:"
551
 
552
- #: admin.inc.php:571
553
  msgid "Send your donation to the author of"
554
  msgstr "Zend je donatie naar de auteur van "
555
 
556
- #: admin.inc.php:577
557
  msgid "Follow us"
558
  msgstr ""
559
 
560
- #: admin.inc.php:583
561
  #, fuzzy
562
  msgid "Quick Links"
563
  msgstr "Quick links"
564
 
565
- #: admin.inc.php:585
566
  #, fuzzy
567
  msgid "Top 10 plugin page"
568
  msgstr "plugin pagina"
569
 
570
- #: admin.inc.php:586
571
  msgid "Other plugins"
572
  msgstr "Andere plugins"
573
 
574
- #: admin.inc.php:587
575
  msgid "Ajay's blog"
576
  msgstr "De blog van Ajay"
577
 
578
- #: admin.inc.php:588 top-10.php:1094
579
  msgid "Support"
580
  msgstr "Ondersteuning"
581
 
582
- #: admin.inc.php:592
583
  msgid "Recent developments"
584
  msgstr "Recente ontwikkelingen"
585
 
586
- #: admin.inc.php:609 admin.inc.php:612
587
  #, fuzzy
588
  msgid "Top 10 Settings"
589
  msgstr "Instellingen"
590
 
591
- #: admin.inc.php:609
592
  msgid "Top 10"
593
  msgstr "Top 10"
594
 
595
- #: admin.inc.php:615
596
  #, fuzzy
597
  msgid "Overall Popular Posts"
598
  msgstr "Bekijk het Totaal Populaire Berichten"
599
 
600
- #: admin.inc.php:786
601
  msgid "Results"
602
  msgstr "Resultaten"
603
 
604
- #: admin.inc.php:788 admin.inc.php:794
605
  msgid "of"
606
  msgstr "van"
607
 
608
- #: admin.inc.php:792
609
  msgid "Page"
610
  msgstr "Pagina"
611
 
612
- #: admin.inc.php:806
613
  msgid "View Daily Popular Posts"
614
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
615
 
616
- #: admin.inc.php:809 admin.inc.php:822
617
  msgid "Results per-page:"
618
  msgstr "Resultaten per pagina:"
619
 
620
- #: admin.inc.php:819
621
  msgid "View Overall Popular Posts"
622
  msgstr "Bekijk het Totaal Populaire Berichten"
623
 
624
- #: admin.inc.php:848
625
  msgid "Previous"
626
  msgstr "Vorige"
627
 
628
- #: admin.inc.php:866
629
  msgid "Next"
630
  msgstr "Volgende"
631
 
632
- #: admin.inc.php:907
633
  msgid "Daily Popular"
634
  msgstr "Dagelijks Populair"
635
 
636
- #: admin.inc.php:923
637
  #, fuzzy
638
  msgid "Total Views"
639
  msgstr "Totale Weergaves / Weergaves van Vandaag"
640
 
641
- #: admin.inc.php:924
642
  #, fuzzy
643
  msgid "Today's Views"
644
  msgstr "Totale Weergaves / Weergaves van Vandaag"
645
 
646
- #: top-10.php:366
647
- msgid " Posted by "
648
  msgstr ""
649
 
650
- #: top-10.php:448
651
  msgid "Display the posts popular this week"
652
  msgstr ""
653
 
654
- #: top-10.php:449
655
  #, fuzzy
656
  msgid "Popular Posts [Top 10]"
657
  msgstr "Populaire Berichten"
658
 
659
- #: top-10.php:466
660
  msgid "Title"
661
  msgstr ""
662
 
663
- #: top-10.php:471
664
  msgid "No. of posts"
665
  msgstr ""
666
 
667
- #: top-10.php:476
668
  msgid "Overall"
669
  msgstr ""
670
 
671
- #: top-10.php:477
672
  msgid "Custom time period (Enter below)"
673
  msgstr ""
674
 
675
- #: top-10.php:482
676
  msgid "Range in number of days (applies only to custom option above)"
677
  msgstr ""
678
 
679
- #: top-10.php:487
680
  #, fuzzy
681
  msgid " Show excerpt?"
682
  msgstr "Laat bericht samenvatting zien in lijst?"
683
 
684
- #: top-10.php:492
685
  msgid " Show author?"
686
  msgstr ""
687
 
688
- #: top-10.php:497
689
  #, fuzzy
690
  msgid " Show date?"
691
  msgstr "Laat bericht samenvatting zien in lijst?"
692
 
693
- #: top-10.php:501
694
  #, fuzzy
695
  msgid "Thumbnail options"
696
  msgstr "Bericht miniatuurafbeelding opties:"
697
 
698
- #: top-10.php:503
699
  #, fuzzy
700
  msgid "Thumbnails inline, before title"
701
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
702
 
703
- #: top-10.php:504
704
  #, fuzzy
705
  msgid "Thumbnails inline, after title"
706
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
707
 
708
- #: top-10.php:505
709
  #, fuzzy
710
  msgid "Only thumbnails, no text"
711
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
712
 
713
- #: top-10.php:506
714
  #, fuzzy
715
  msgid "No thumbnails, only text."
716
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
717
 
718
- #: top-10.php:511
719
  #, fuzzy
720
  msgid "Thumbnail height"
721
  msgstr "Bericht miniatuurafbeelding opties:"
722
 
723
- #: top-10.php:516
724
  #, fuzzy
725
  msgid "Thumbnail width"
726
  msgstr "Bericht miniatuurafbeelding opties:"
727
 
728
- #: top-10.php:617
729
  msgid "<h3>Popular Posts</h3>"
730
  msgstr "<h3>Populaire Berichten</h3>"
731
 
732
- #: top-10.php:618
733
  msgid "<h3>Daily Popular</h3>"
734
  msgstr "<h3>Dagelijks Populair</h3>"
735
 
736
- #: top-10.php:619
737
  #, fuzzy
738
  msgid "No top posts yet"
739
  msgstr "Reset Top 10 populaire berichten"
740
 
741
- #: top-10.php:1060
742
  msgid "Once Weekly"
743
  msgstr ""
744
 
745
- #: top-10.php:1061
746
  msgid "Once Fortnightly"
747
  msgstr ""
748
 
749
- #: top-10.php:1062
750
  msgid "Once Monthly"
751
  msgstr ""
752
 
753
- #: top-10.php:1082
754
  msgid "Settings"
755
  msgstr "Instellingen"
756
 
757
- #: top-10.php:1095
758
  msgid "Donate"
759
  msgstr "Doneer"
760
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:101
21
  msgid "Scheduled maintenance enabled / modified"
22
  msgstr ""
23
 
24
+ #: admin.inc.php:105
25
  msgid "Scheduled maintenance disabled"
26
  msgstr ""
27
 
28
+ #: admin.inc.php:122
29
  msgid "Options saved successfully."
30
  msgstr "Opties succesvol opgeslagen."
31
 
32
+ #: admin.inc.php:131
33
  msgid "Options set to Default."
34
  msgstr "Opties ingesteld op Standaard."
35
 
36
+ #: admin.inc.php:137
37
  msgid "Top 10 popular posts reset"
38
  msgstr "Reset Top 10 populaire berichten"
39
 
40
+ #: admin.inc.php:143
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Reset Top 10 dagelijkse populaire berichten"
43
 
44
+ #: admin.inc.php:150
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:171
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:175
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
+ #: admin.inc.php:180
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:185
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
+ #: admin.inc.php:187
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
+ #: admin.inc.php:191
72
  msgid "Number of popular posts to display: "
73
  msgstr "Aantal populaire berichten om weer te geven:"
74
 
75
+ #: admin.inc.php:195
76
  msgid "Daily Popular should contain views of how many days? "
77
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
78
 
79
+ #: admin.inc.php:198
80
  msgid "Post types to include in results (including custom post types)"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:209
84
  msgid "List of post or page IDs to exclude from the results: "
85
  msgstr ""
86
 
87
+ #: admin.inc.php:213
88
  msgid "Exclude Categories: "
89
  msgstr ""
90
 
91
+ #: admin.inc.php:228
92
  msgid ""
93
  "Comma separated list of category slugs. The field above has an autocomplete "
94
  "so simply start typing in the starting letters and it will prompt you with "
95
  "options"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:233
99
  #, fuzzy
100
  msgid "Display number of views on:"
101
  msgstr "Geef het aantal berichtweergaves weer?"
102
 
103
+ #: admin.inc.php:235
104
  msgid "Posts"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:236
108
  #, fuzzy
109
  msgid "Pages"
110
  msgstr "Pagina"
111
 
112
+ #: admin.inc.php:237
113
  msgid "Home page"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:238
117
  msgid "Feeds"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:239
121
  msgid "Category archives"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:240
125
  msgid "Tag archives"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:241
129
  msgid "Other archives"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:242
133
  msgid ""
134
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
135
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
136
  "you want it displayed"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:245
140
  msgid "Always display latest post count"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:247
144
  msgid ""
145
  "This option uses JavaScript and will increase your page load time. Turn this "
146
  "off if you are not using caching plugins or are OK with displaying older "
148
  "the options set there, but options will need to be set on this screen."
149
  msgstr ""
150
 
151
+ #: admin.inc.php:250
152
  msgid "Always display latest post count in the daily lists"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:252
156
  #, fuzzy
157
  msgid "This option uses JavaScript and will increase your page load time"
158
  msgstr ""
159
  "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
160
  "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
161
 
162
+ #: admin.inc.php:255
163
  msgid "Track visits of authors on their own posts?"
164
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
165
 
166
+ #: admin.inc.php:258
167
  #, fuzzy
168
  msgid "Track visits of admins?"
169
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
170
 
171
+ #: admin.inc.php:261
172
  msgid "Display page views on Posts > All Posts in Admin"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:264
176
  msgid "Link to Top 10 plugin page"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:266
180
  #, fuzzy
181
  msgid ""
182
  "A link to the plugin is added as an extra list item to the list of popular "
186
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
187
  "gewaardeerd!"
188
 
189
+ #: admin.inc.php:273
190
  #, fuzzy
191
  msgid "Output Options"
192
  msgstr "Output Opties:"
193
 
194
+ #: admin.inc.php:276
195
  msgid "Format to display the count in: "
196
  msgstr "Formaat om de optelling te laten zien:"
197
 
198
+ #: admin.inc.php:278
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
207
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
208
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
209
 
210
+ #: admin.inc.php:281
211
  msgid "Title of popular posts: "
212
  msgstr "Titel van populaire berichten:"
213
 
214
+ #: admin.inc.php:284
215
  msgid "Title of daily popular posts: "
216
  msgstr "Titel van dagelijkse populaire berichten:"
217
 
218
+ #: admin.inc.php:287
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:291
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:295
227
  msgid "Display:"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:299
231
  msgid "Show post excerpt in list?"
232
  msgstr "Laat bericht samenvatting zien in lijst?"
233
 
234
+ #: admin.inc.php:302
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Lengte van de samenvatting (in woorden):"
237
 
238
+ #: admin.inc.php:305
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Laat bericht samenvatting zien in lijst?"
242
 
243
+ #: admin.inc.php:308
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Laat bericht samenvatting zien in lijst?"
247
 
248
+ #: admin.inc.php:311
249
  msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:314
253
  msgid "Display number of page views in popular lists?"
254
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
255
 
256
+ #: admin.inc.php:317
257
  msgid "Open links in new window"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:320
261
  msgid "Add nofollow attribute to links in the list"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:323
265
  msgid "Exclude display of related posts on these posts / pages"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:326
269
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:329
273
  msgid "Customize the output:"
274
  msgstr "Aanpassen van de output:"
275
 
276
+ #: admin.inc.php:331
277
  msgid "HTML to display before the list of posts: "
278
  msgstr "Te weergeven HTML voor de lijst met berichten:"
279
 
280
+ #: admin.inc.php:334
281
  msgid "HTML to display before each list item: "
282
  msgstr "Te weergeven HTML voor elk lijst item:"
283
 
284
+ #: admin.inc.php:337
285
  msgid "HTML to display after each list item: "
286
  msgstr "Te weergeven HTML na elk lijst item:"
287
 
288
+ #: admin.inc.php:340
289
  msgid "HTML to display after the list of posts: "
290
  msgstr "Te weergeven HTML na de lijst met berichten:"
291
 
292
+ #: admin.inc.php:343
293
  msgid "Post thumbnail options:"
294
  msgstr "Bericht miniatuurafbeelding opties:"
295
 
296
+ #: admin.inc.php:345
297
  msgid "Location of post thumbnail:"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:349
301
  #, fuzzy
302
  msgid "Display thumbnails inline with posts, before title"
303
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
304
 
305
+ #: admin.inc.php:353
306
  #, fuzzy
307
  msgid "Display thumbnails inline with posts, after title"
308
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
309
 
310
+ #: admin.inc.php:357
311
  msgid "Display only thumbnails, no text"
312
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
313
 
314
+ #: admin.inc.php:361
315
  msgid "Do not display thumbnails, only text."
316
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
317
 
318
+ #: admin.inc.php:365
319
  msgid "Width of the thumbnail: "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:368
323
  msgid "Height of the thumbnail: "
324
  msgstr ""
325
 
326
+ #: admin.inc.php:371
327
  msgid "Style attributes / Width and Height HTML attributes:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:375
331
  msgid ""
332
  "Style attributes are used for width and height. <code>style=\"max-width:"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:379
336
  msgid ""
337
  "HTML width and height attributes are used for width and height. <code>width="
338
  "\""
339
  msgstr ""
340
 
341
+ #: admin.inc.php:383
342
  msgid "Use timthumb to generate thumbnails? "
343
  msgstr ""
344
 
348
  "\">timthumb</a> will be used to generate thumbnails"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:389
352
  #, fuzzy
353
  msgid "Post thumbnail meta field name: "
354
  msgstr "Bericht miniatuurafbeelding opties:"
355
 
356
+ #: admin.inc.php:392
357
  msgid ""
358
  "The value of this field should contain the image source and is set in the "
359
  "<em>Add New Post</em> screen"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:395
363
  #, fuzzy
364
  msgid ""
365
  "If the postmeta is not set, then should the plugin extract the first image "
370
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
371
  "qua bestandsgrootte"
372
 
373
+ #: admin.inc.php:398
374
  #, fuzzy
375
  msgid ""
376
  "This could slow down the loading of your page if the first image in the "
381
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
382
  "qua bestandsgrootte"
383
 
384
+ #: admin.inc.php:401
385
  msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
+ #: admin.inc.php:404
389
  msgid ""
390
  "If checked, when no thumbnail is found, show a default one from the URL "
391
  "below. If not checked and no thumbnail is found, no image will be shown."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:407
395
  msgid "Default thumbnail: "
396
  msgstr ""
397
 
398
+ #: admin.inc.php:410
399
  #, fuzzy
400
  msgid ""
401
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
407
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
408
  "standaard afbeelding zoals hieronder aangegeven:"
409
 
410
+ #: admin.inc.php:417
411
  msgid "Custom Styles"
412
  msgstr ""
413
 
414
+ #: admin.inc.php:420
415
  msgid "Custom CSS to add to header:"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:423
419
  msgid ""
420
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
421
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
422
  "available CSS classes to style."
423
  msgstr ""
424
 
425
+ #: admin.inc.php:430
426
  msgid "Maintenance"
427
  msgstr ""
428
 
429
+ #: admin.inc.php:434
430
  msgid ""
431
  "Over time the Daily Top 10 database grows in size, which reduces the "
432
  "performance of the plugin. Cleaning the database at regular intervals could "
433
  "improve performance, especially on high traffic blogs."
434
  msgstr ""
435
 
436
+ #: admin.inc.php:435
437
  msgid ""
438
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
439
  "everytime the job is rescheduled (i.e. you change the settings below). This "
440
  "causes the daily posts table to reset."
441
  msgstr ""
442
 
443
+ #: admin.inc.php:438
444
  msgid "Enable scheduled maintenance of daily tables:"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:442
448
  msgid "Time to run maintenance"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:445
452
  msgid "How often should the maintenance be run:"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:449
456
  msgid "Daily"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:453
460
  msgid "Weekly"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:457
464
  msgid "Fortnightly"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:461
468
  msgid "Monthly"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:470
472
  msgid "The cron job has been scheduled. Maintenance will run "
473
  msgstr ""
474
 
475
+ #: admin.inc.php:475
476
  msgid "The cron job is missing. Please resave this page to add the job"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:480
480
  msgid "Maintenance is turned off"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:488
484
  #, fuzzy
485
  msgid "Save Options"
486
  msgstr "Opties:"
487
 
488
+ #: admin.inc.php:489
489
  #, fuzzy
490
  msgid "Default Options"
491
  msgstr "Output Opties:"
492
 
493
+ #: admin.inc.php:489
494
  msgid "Do you want to set options to Default?"
495
  msgstr "Wil je de opties terugzetten naar standaard?"
496
 
497
+ #: admin.inc.php:493
498
  msgid "Reset count"
499
  msgstr "Reset telling"
500
 
501
+ #: admin.inc.php:496
502
  msgid ""
503
  "This cannot be reversed. Make sure that your database has been backed up "
504
  "before proceeding"
506
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
507
  "database gemaakt hebt voordat je verder gaat"
508
 
509
+ #: admin.inc.php:499
510
  #, fuzzy
511
  msgid "Reset Popular Posts"
512
  msgstr "Populaire Berichten"
513
 
514
+ #: admin.inc.php:499
515
  msgid "Are you sure you want to reset the popular posts?"
516
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
517
 
518
+ #: admin.inc.php:500
519
  #, fuzzy
520
  msgid "Reset Daily Popular Posts"
521
  msgstr "Dagelijkse Populaire Berichten"
522
 
523
+ #: admin.inc.php:500
524
  msgid "Are you sure you want to reset the daily popular posts?"
525
  msgstr ""
526
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
527
 
528
+ #: admin.inc.php:501
529
  msgid "Clear duplicates"
530
  msgstr ""
531
 
532
+ #: admin.inc.php:501
533
  msgid "This will delete the duplicate entries in the tables. Proceed?"
534
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
535
 
536
+ #: admin.inc.php:544 admin.inc.php:929
537
  msgid "Popular Posts"
538
  msgstr "Populaire Berichten"
539
 
540
+ #: admin.inc.php:544 admin.inc.php:631
541
  msgid "Daily Popular Posts"
542
  msgstr "Dagelijkse Populaire Berichten"
543
 
544
+ #: admin.inc.php:572
545
  msgid "Support the development"
546
  msgstr "Ondersteun de ontwikkeling"
547
 
548
+ #: admin.inc.php:580
549
  msgid "Enter amount in USD: "
550
  msgstr "Voer het bedrag in in USD:"
551
 
552
+ #: admin.inc.php:584
553
  msgid "Send your donation to the author of"
554
  msgstr "Zend je donatie naar de auteur van "
555
 
556
+ #: admin.inc.php:590
557
  msgid "Follow us"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:596
561
  #, fuzzy
562
  msgid "Quick Links"
563
  msgstr "Quick links"
564
 
565
+ #: admin.inc.php:598
566
  #, fuzzy
567
  msgid "Top 10 plugin page"
568
  msgstr "plugin pagina"
569
 
570
+ #: admin.inc.php:599
571
  msgid "Other plugins"
572
  msgstr "Andere plugins"
573
 
574
+ #: admin.inc.php:600
575
  msgid "Ajay's blog"
576
  msgstr "De blog van Ajay"
577
 
578
+ #: admin.inc.php:601 top-10.php:1147
579
  msgid "Support"
580
  msgstr "Ondersteuning"
581
 
582
+ #: admin.inc.php:605
583
  msgid "Recent developments"
584
  msgstr "Recente ontwikkelingen"
585
 
586
+ #: admin.inc.php:622 admin.inc.php:625
587
  #, fuzzy
588
  msgid "Top 10 Settings"
589
  msgstr "Instellingen"
590
 
591
+ #: admin.inc.php:622
592
  msgid "Top 10"
593
  msgstr "Top 10"
594
 
595
+ #: admin.inc.php:628
596
  #, fuzzy
597
  msgid "Overall Popular Posts"
598
  msgstr "Bekijk het Totaal Populaire Berichten"
599
 
600
+ #: admin.inc.php:799
601
  msgid "Results"
602
  msgstr "Resultaten"
603
 
604
+ #: admin.inc.php:801 admin.inc.php:807
605
  msgid "of"
606
  msgstr "van"
607
 
608
+ #: admin.inc.php:805
609
  msgid "Page"
610
  msgstr "Pagina"
611
 
612
+ #: admin.inc.php:819
613
  msgid "View Daily Popular Posts"
614
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
615
 
616
+ #: admin.inc.php:822 admin.inc.php:835
617
  msgid "Results per-page:"
618
  msgstr "Resultaten per pagina:"
619
 
620
+ #: admin.inc.php:832
621
  msgid "View Overall Popular Posts"
622
  msgstr "Bekijk het Totaal Populaire Berichten"
623
 
624
+ #: admin.inc.php:861
625
  msgid "Previous"
626
  msgstr "Vorige"
627
 
628
+ #: admin.inc.php:889
629
  msgid "Next"
630
  msgstr "Volgende"
631
 
632
+ #: admin.inc.php:930
633
  msgid "Daily Popular"
634
  msgstr "Dagelijks Populair"
635
 
636
+ #: admin.inc.php:946
637
  #, fuzzy
638
  msgid "Total Views"
639
  msgstr "Totale Weergaves / Weergaves van Vandaag"
640
 
641
+ #: admin.inc.php:947
642
  #, fuzzy
643
  msgid "Today's Views"
644
  msgstr "Totale Weergaves / Weergaves van Vandaag"
645
 
646
+ #: top-10.php:415
647
+ msgid " by "
648
  msgstr ""
649
 
650
+ #: top-10.php:501
651
  msgid "Display the posts popular this week"
652
  msgstr ""
653
 
654
+ #: top-10.php:502
655
  #, fuzzy
656
  msgid "Popular Posts [Top 10]"
657
  msgstr "Populaire Berichten"
658
 
659
+ #: top-10.php:519
660
  msgid "Title"
661
  msgstr ""
662
 
663
+ #: top-10.php:524
664
  msgid "No. of posts"
665
  msgstr ""
666
 
667
+ #: top-10.php:529
668
  msgid "Overall"
669
  msgstr ""
670
 
671
+ #: top-10.php:530
672
  msgid "Custom time period (Enter below)"
673
  msgstr ""
674
 
675
+ #: top-10.php:535
676
  msgid "Range in number of days (applies only to custom option above)"
677
  msgstr ""
678
 
679
+ #: top-10.php:540
680
  #, fuzzy
681
  msgid " Show excerpt?"
682
  msgstr "Laat bericht samenvatting zien in lijst?"
683
 
684
+ #: top-10.php:545
685
  msgid " Show author?"
686
  msgstr ""
687
 
688
+ #: top-10.php:550
689
  #, fuzzy
690
  msgid " Show date?"
691
  msgstr "Laat bericht samenvatting zien in lijst?"
692
 
693
+ #: top-10.php:554
694
  #, fuzzy
695
  msgid "Thumbnail options"
696
  msgstr "Bericht miniatuurafbeelding opties:"
697
 
698
+ #: top-10.php:556
699
  #, fuzzy
700
  msgid "Thumbnails inline, before title"
701
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
702
 
703
+ #: top-10.php:557
704
  #, fuzzy
705
  msgid "Thumbnails inline, after title"
706
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
707
 
708
+ #: top-10.php:558
709
  #, fuzzy
710
  msgid "Only thumbnails, no text"
711
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
712
 
713
+ #: top-10.php:559
714
  #, fuzzy
715
  msgid "No thumbnails, only text."
716
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
717
 
718
+ #: top-10.php:564
719
  #, fuzzy
720
  msgid "Thumbnail height"
721
  msgstr "Bericht miniatuurafbeelding opties:"
722
 
723
+ #: top-10.php:569
724
  #, fuzzy
725
  msgid "Thumbnail width"
726
  msgstr "Bericht miniatuurafbeelding opties:"
727
 
728
+ #: top-10.php:670
729
  msgid "<h3>Popular Posts</h3>"
730
  msgstr "<h3>Populaire Berichten</h3>"
731
 
732
+ #: top-10.php:671
733
  msgid "<h3>Daily Popular</h3>"
734
  msgstr "<h3>Dagelijks Populair</h3>"
735
 
736
+ #: top-10.php:672
737
  #, fuzzy
738
  msgid "No top posts yet"
739
  msgstr "Reset Top 10 populaire berichten"
740
 
741
+ #: top-10.php:1113
742
  msgid "Once Weekly"
743
  msgstr ""
744
 
745
+ #: top-10.php:1114
746
  msgid "Once Fortnightly"
747
  msgstr ""
748
 
749
+ #: top-10.php:1115
750
  msgid "Once Monthly"
751
  msgstr ""
752
 
753
+ #: top-10.php:1135
754
  msgid "Settings"
755
  msgstr "Instellingen"
756
 
757
+ #: top-10.php:1148
758
  msgid "Donate"
759
  msgstr "Doneer"
760
 
languages/tptn-ro_RO.mo CHANGED
Binary file
languages/tptn-ro_RO.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
@@ -15,130 +15,130 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Opţiuni salvat cu succes."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Opţiunile setate la valorile implicite."
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Top 10 populare posturi Resetare"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Top 10 posturi populare daily Reiniţializare"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Numărul de posturi populare pentru a afişa: "
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
76
 
77
- #: admin.inc.php:200
78
  msgid "Post types to include in results (including custom post types)"
79
  msgstr ""
80
 
81
- #: admin.inc.php:211
82
  msgid "List of post or page IDs to exclude from the results: "
83
  msgstr ""
84
 
85
- #: admin.inc.php:215
86
  msgid "Exclude Categories: "
87
  msgstr "Excludeţi categorii: "
88
 
89
- #: admin.inc.php:230
90
  msgid ""
91
  "Comma separated list of category slugs. The field above has an autocomplete "
92
  "so simply start typing in the starting letters and it will prompt you with "
93
  "options"
94
  msgstr ""
95
 
96
- #: admin.inc.php:235
97
  #, fuzzy
98
  msgid "Display number of views on:"
99
  msgstr "Afişează numărul de vizualizări pe posturi?"
100
 
101
- #: admin.inc.php:237
102
  msgid "Posts"
103
  msgstr ""
104
 
105
- #: admin.inc.php:238
106
  #, fuzzy
107
  msgid "Pages"
108
  msgstr "Pagină"
109
 
110
- #: admin.inc.php:239
111
  msgid "Home page"
112
  msgstr ""
113
 
114
- #: admin.inc.php:240
115
  msgid "Feeds"
116
  msgstr ""
117
 
118
- #: admin.inc.php:241
119
  msgid "Category archives"
120
  msgstr ""
121
 
122
- #: admin.inc.php:242
123
  msgid "Tag archives"
124
  msgstr ""
125
 
126
- #: admin.inc.php:243
127
  msgid "Other archives"
128
  msgstr ""
129
 
130
- #: admin.inc.php:244
131
  msgid ""
132
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
133
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
134
  "you want it displayed"
135
  msgstr ""
136
 
137
- #: admin.inc.php:247
138
  msgid "Always display latest post count"
139
  msgstr ""
140
 
141
- #: admin.inc.php:249
142
  msgid ""
143
  "This option uses JavaScript and will increase your page load time. Turn this "
144
  "off if you are not using caching plugins or are OK with displaying older "
@@ -146,11 +146,11 @@ msgid ""
146
  "the options set there, but options will need to be set on this screen."
147
  msgstr ""
148
 
149
- #: admin.inc.php:252
150
  msgid "Always display latest post count in the daily lists"
151
  msgstr ""
152
 
153
- #: admin.inc.php:254
154
  #, fuzzy
155
  msgid "This option uses JavaScript and will increase your page load time"
156
  msgstr ""
@@ -158,24 +158,24 @@ msgstr ""
158
  "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
159
  "pagină"
160
 
161
- #: admin.inc.php:257
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Track vizite de autori pe posturile lor proprii?"
164
 
165
- #: admin.inc.php:260
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Track vizite de autori pe posturile lor proprii?"
169
 
170
- #: admin.inc.php:263
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
- #: admin.inc.php:266
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
- #: admin.inc.php:268
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -184,16 +184,16 @@ msgstr ""
184
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
185
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
186
 
187
- #: admin.inc.php:275
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Opţiuni de ieşire:"
191
 
192
- #: admin.inc.php:278
193
  msgid "Format to display the count in: "
194
  msgstr "Format pentru a afişa numărul în: "
195
 
196
- #: admin.inc.php:280
197
  #, fuzzy
198
  msgid ""
199
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -205,136 +205,136 @@ msgstr ""
205
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
206
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
207
 
208
- #: admin.inc.php:283
209
  msgid "Title of popular posts: "
210
  msgstr "Titlul de posturi populare: "
211
 
212
- #: admin.inc.php:286
213
  msgid "Title of daily popular posts: "
214
  msgstr "Titlul de zi cu zi de posturi populare: "
215
 
216
- #: admin.inc.php:289
217
  msgid "When there are no posts, what should be shown?"
218
  msgstr ""
219
 
220
- #: admin.inc.php:293
221
  msgid "Blank Output"
222
  msgstr ""
223
 
224
- #: admin.inc.php:297
225
  msgid "Display:"
226
  msgstr ""
227
 
228
- #: admin.inc.php:301
229
  msgid "Show post excerpt in list?"
230
  msgstr "Afişează post extras din lista?"
231
 
232
- #: admin.inc.php:304
233
  msgid "Length of excerpt (in words): "
234
  msgstr "Lungimea extras (în cuvinte): "
235
 
236
- #: admin.inc.php:307
237
  #, fuzzy
238
  msgid "Show post author in list?"
239
  msgstr "Afişează post extras din lista?"
240
 
241
- #: admin.inc.php:310
242
  #, fuzzy
243
  msgid "Show post date in list?"
244
  msgstr "Afişează post extras din lista?"
245
 
246
- #: admin.inc.php:313
247
  msgid "Limit post title length (in characters)"
248
  msgstr ""
249
 
250
- #: admin.inc.php:316
251
  msgid "Display number of page views in popular lists?"
252
  msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
253
 
254
- #: admin.inc.php:319
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
- #: admin.inc.php:322
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
- #: admin.inc.php:325
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
- #: admin.inc.php:328
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
- #: admin.inc.php:331
271
  msgid "Customize the output:"
272
  msgstr "Personaliza ieşire:"
273
 
274
- #: admin.inc.php:333
275
  msgid "HTML to display before the list of posts: "
276
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
277
 
278
- #: admin.inc.php:336
279
  msgid "HTML to display before each list item: "
280
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
281
 
282
- #: admin.inc.php:339
283
  msgid "HTML to display after each list item: "
284
  msgstr "HTML pentru a afişa după fiecare element din listă: "
285
 
286
- #: admin.inc.php:342
287
  msgid "HTML to display after the list of posts: "
288
  msgstr "HTML pentru a afişa după lista de posturi: "
289
 
290
- #: admin.inc.php:345
291
  msgid "Post thumbnail options:"
292
  msgstr "Post Opţiuni pictograme:"
293
 
294
- #: admin.inc.php:347
295
  msgid "Location of post thumbnail:"
296
  msgstr ""
297
 
298
- #: admin.inc.php:351
299
  msgid "Display thumbnails inline with posts, before title"
300
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
301
 
302
- #: admin.inc.php:355
303
  msgid "Display thumbnails inline with posts, after title"
304
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
305
 
306
- #: admin.inc.php:359
307
  msgid "Display only thumbnails, no text"
308
  msgstr "Afişa numai miniaturi, nici un text"
309
 
310
- #: admin.inc.php:363
311
  msgid "Do not display thumbnails, only text."
312
  msgstr "Nu se afişează miniaturi, numai textul."
313
 
314
- #: admin.inc.php:367
315
  msgid "Width of the thumbnail: "
316
  msgstr ""
317
 
318
- #: admin.inc.php:370
319
  msgid "Height of the thumbnail: "
320
  msgstr ""
321
 
322
- #: admin.inc.php:373
323
  msgid "Style attributes / Width and Height HTML attributes:"
324
  msgstr ""
325
 
326
- #: admin.inc.php:377
327
  msgid ""
328
  "Style attributes are used for width and height. <code>style=\"max-width:"
329
  msgstr ""
330
 
331
- #: admin.inc.php:381
332
  msgid ""
333
  "HTML width and height attributes are used for width and height. <code>width="
334
  "\""
335
  msgstr ""
336
 
337
- #: admin.inc.php:385
338
  msgid "Use timthumb to generate thumbnails? "
339
  msgstr ""
340
 
@@ -344,18 +344,18 @@ msgid ""
344
  "\">timthumb</a> will be used to generate thumbnails"
345
  msgstr ""
346
 
347
- #: admin.inc.php:388
348
  #, fuzzy
349
  msgid "Post thumbnail meta field name: "
350
  msgstr "Post Opţiuni pictograme:"
351
 
352
- #: admin.inc.php:389
353
  msgid ""
354
  "The value of this field should contain the image source and is set in the "
355
  "<em>Add New Post</em> screen"
356
  msgstr ""
357
 
358
- #: admin.inc.php:391
359
  #, fuzzy
360
  msgid ""
361
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -366,7 +366,7 @@ msgstr ""
366
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
367
  "fişier"
368
 
369
- #: admin.inc.php:392
370
  #, fuzzy
371
  msgid ""
372
  "This could slow down the loading of your page if the first image in the "
@@ -377,11 +377,11 @@ msgstr ""
377
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
378
  "fişier"
379
 
380
- #: admin.inc.php:394
381
  msgid "Use default thumbnail? "
382
  msgstr ""
383
 
384
- #: admin.inc.php:395
385
  msgid ""
386
  "If checked, when no thumbnail is found, show a default one from the URL "
387
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -390,109 +390,109 @@ msgstr ""
390
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
391
  "thumbnail, imaginea nu va fi indicat."
392
 
393
- #: admin.inc.php:397
394
  msgid "Default thumbnail: "
395
  msgstr ""
396
 
397
- #: admin.inc.php:398
398
  msgid ""
399
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
400
  "then it will check the meta field. If this is not available, then it will "
401
  "show the default image as specified above"
402
  msgstr ""
403
 
404
- #: admin.inc.php:404
405
  msgid "Custom Styles"
406
  msgstr ""
407
 
408
- #: admin.inc.php:407
409
  msgid "Custom CSS to add to header:"
410
  msgstr ""
411
 
412
- #: admin.inc.php:410
413
  msgid ""
414
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
415
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
416
  "available CSS classes to style."
417
  msgstr ""
418
 
419
- #: admin.inc.php:417
420
  msgid "Maintenance"
421
  msgstr ""
422
 
423
- #: admin.inc.php:421
424
  msgid ""
425
  "Over time the Daily Top 10 database grows in size, which reduces the "
426
  "performance of the plugin. Cleaning the database at regular intervals could "
427
  "improve performance, especially on high traffic blogs."
428
  msgstr ""
429
 
430
- #: admin.inc.php:422
431
  msgid ""
432
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
433
  "everytime the job is rescheduled (i.e. you change the settings below). This "
434
  "causes the daily posts table to reset."
435
  msgstr ""
436
 
437
- #: admin.inc.php:425
438
  msgid "Enable scheduled maintenance of daily tables:"
439
  msgstr ""
440
 
441
- #: admin.inc.php:429
442
  msgid "Time to run maintenance"
443
  msgstr ""
444
 
445
- #: admin.inc.php:432
446
  msgid "How often should the maintenance be run:"
447
  msgstr ""
448
 
449
- #: admin.inc.php:436
450
  msgid "Daily"
451
  msgstr ""
452
 
453
- #: admin.inc.php:440
454
  msgid "Weekly"
455
  msgstr ""
456
 
457
- #: admin.inc.php:444
458
  msgid "Fortnightly"
459
  msgstr ""
460
 
461
- #: admin.inc.php:448
462
  msgid "Monthly"
463
  msgstr ""
464
 
465
- #: admin.inc.php:457
466
  msgid "The cron job has been scheduled. Maintenance will run "
467
  msgstr ""
468
 
469
- #: admin.inc.php:462
470
  msgid "The cron job is missing. Please resave this page to add the job"
471
  msgstr ""
472
 
473
- #: admin.inc.php:467
474
  msgid "Maintenance is turned off"
475
  msgstr ""
476
 
477
- #: admin.inc.php:475
478
  #, fuzzy
479
  msgid "Save Options"
480
  msgstr "Opţiuni:"
481
 
482
- #: admin.inc.php:476
483
  #, fuzzy
484
  msgid "Default Options"
485
  msgstr "Opţiuni de ieşire:"
486
 
487
- #: admin.inc.php:476
488
  msgid "Do you want to set options to Default?"
489
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
490
 
491
- #: admin.inc.php:480
492
  msgid "Reset count"
493
  msgstr "Reiniţializare count"
494
 
495
- #: admin.inc.php:483
496
  msgid ""
497
  "This cannot be reversed. Make sure that your database has been backed up "
498
  "before proceeding"
@@ -500,254 +500,254 @@ msgstr ""
500
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
501
  "înainte de a continua"
502
 
503
- #: admin.inc.php:486
504
  #, fuzzy
505
  msgid "Reset Popular Posts"
506
  msgstr "Posturi populare"
507
 
508
- #: admin.inc.php:486
509
  msgid "Are you sure you want to reset the popular posts?"
510
  msgstr "Sigur reiniţializaţi posturi populare?"
511
 
512
- #: admin.inc.php:487
513
  #, fuzzy
514
  msgid "Reset Daily Popular Posts"
515
  msgstr "Posturi populare de zi cu zi"
516
 
517
- #: admin.inc.php:487
518
  msgid "Are you sure you want to reset the daily popular posts?"
519
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
520
 
521
- #: admin.inc.php:488
522
  msgid "Clear duplicates"
523
  msgstr ""
524
 
525
- #: admin.inc.php:488
526
  msgid "This will delete the duplicate entries in the tables. Proceed?"
527
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
528
 
529
- #: admin.inc.php:531 admin.inc.php:906
530
  msgid "Popular Posts"
531
  msgstr "Posturi populare"
532
 
533
- #: admin.inc.php:531 admin.inc.php:618
534
  msgid "Daily Popular Posts"
535
  msgstr "Posturi populare de zi cu zi"
536
 
537
- #: admin.inc.php:559
538
  msgid "Support the development"
539
  msgstr "Sprijinirea dezvoltării"
540
 
541
- #: admin.inc.php:567
542
  msgid "Enter amount in USD: "
543
  msgstr "Introduceţi valoarea în USD: "
544
 
545
- #: admin.inc.php:571
546
  msgid "Send your donation to the author of"
547
  msgstr "Trimite donatie autorului"
548
 
549
- #: admin.inc.php:577
550
  msgid "Follow us"
551
  msgstr ""
552
 
553
- #: admin.inc.php:583
554
  #, fuzzy
555
  msgid "Quick Links"
556
  msgstr "Legături rapide pentru"
557
 
558
- #: admin.inc.php:585
559
  #, fuzzy
560
  msgid "Top 10 plugin page"
561
  msgstr "plug-in pagina"
562
 
563
- #: admin.inc.php:586
564
  msgid "Other plugins"
565
  msgstr "Alte plugin-uri"
566
 
567
- #: admin.inc.php:587
568
  msgid "Ajay's blog"
569
  msgstr "Ajay's blog"
570
 
571
- #: admin.inc.php:588 top-10.php:1094
572
  msgid "Support"
573
  msgstr "Suport"
574
 
575
- #: admin.inc.php:592
576
  msgid "Recent developments"
577
  msgstr "Evoluţiile recente"
578
 
579
- #: admin.inc.php:609 admin.inc.php:612
580
  #, fuzzy
581
  msgid "Top 10 Settings"
582
  msgstr "Setări"
583
 
584
- #: admin.inc.php:609
585
  msgid "Top 10"
586
  msgstr "Top 10"
587
 
588
- #: admin.inc.php:615
589
  #, fuzzy
590
  msgid "Overall Popular Posts"
591
  msgstr "Vedere de ansamblu posturi populare"
592
 
593
- #: admin.inc.php:786
594
  msgid "Results"
595
  msgstr "Rezultatele"
596
 
597
- #: admin.inc.php:788 admin.inc.php:794
598
  msgid "of"
599
  msgstr "de"
600
 
601
- #: admin.inc.php:792
602
  msgid "Page"
603
  msgstr "Pagină"
604
 
605
- #: admin.inc.php:806
606
  msgid "View Daily Popular Posts"
607
  msgstr "Vizualizare zi posturi populare"
608
 
609
- #: admin.inc.php:809 admin.inc.php:822
610
  msgid "Results per-page:"
611
  msgstr "Rezultate pe pagină:"
612
 
613
- #: admin.inc.php:819
614
  msgid "View Overall Popular Posts"
615
  msgstr "Vedere de ansamblu posturi populare"
616
 
617
- #: admin.inc.php:848
618
  msgid "Previous"
619
  msgstr "Anterioară"
620
 
621
- #: admin.inc.php:866
622
  msgid "Next"
623
  msgstr "Următorul"
624
 
625
- #: admin.inc.php:907
626
  msgid "Daily Popular"
627
  msgstr "Daily populare"
628
 
629
- #: admin.inc.php:923
630
  #, fuzzy
631
  msgid "Total Views"
632
  msgstr "Total / astăzi lui vizitări"
633
 
634
- #: admin.inc.php:924
635
  #, fuzzy
636
  msgid "Today's Views"
637
  msgstr "Total / astăzi lui vizitări"
638
 
639
- #: top-10.php:366
640
- msgid " Posted by "
641
  msgstr ""
642
 
643
- #: top-10.php:448
644
  msgid "Display the posts popular this week"
645
  msgstr "Afişa posturi populare în această săptămână"
646
 
647
- #: top-10.php:449
648
  #, fuzzy
649
  msgid "Popular Posts [Top 10]"
650
  msgstr "Posturi populare"
651
 
652
- #: top-10.php:466
653
  msgid "Title"
654
  msgstr ""
655
 
656
- #: top-10.php:471
657
  msgid "No. of posts"
658
  msgstr ""
659
 
660
- #: top-10.php:476
661
  msgid "Overall"
662
  msgstr ""
663
 
664
- #: top-10.php:477
665
  msgid "Custom time period (Enter below)"
666
  msgstr ""
667
 
668
- #: top-10.php:482
669
  msgid "Range in number of days (applies only to custom option above)"
670
  msgstr ""
671
 
672
- #: top-10.php:487
673
  #, fuzzy
674
  msgid " Show excerpt?"
675
  msgstr "Afişează post extras din lista?"
676
 
677
- #: top-10.php:492
678
  msgid " Show author?"
679
  msgstr ""
680
 
681
- #: top-10.php:497
682
  #, fuzzy
683
  msgid " Show date?"
684
  msgstr "Afişează post extras din lista?"
685
 
686
- #: top-10.php:501
687
  #, fuzzy
688
  msgid "Thumbnail options"
689
  msgstr "Post Opţiuni pictograme:"
690
 
691
- #: top-10.php:503
692
  #, fuzzy
693
  msgid "Thumbnails inline, before title"
694
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
695
 
696
- #: top-10.php:504
697
  #, fuzzy
698
  msgid "Thumbnails inline, after title"
699
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
700
 
701
- #: top-10.php:505
702
  #, fuzzy
703
  msgid "Only thumbnails, no text"
704
  msgstr "Afişa numai miniaturi, nici un text"
705
 
706
- #: top-10.php:506
707
  #, fuzzy
708
  msgid "No thumbnails, only text."
709
  msgstr "Nu se afişează miniaturi, numai textul."
710
 
711
- #: top-10.php:511
712
  #, fuzzy
713
  msgid "Thumbnail height"
714
  msgstr "Post Opţiuni pictograme:"
715
 
716
- #: top-10.php:516
717
  #, fuzzy
718
  msgid "Thumbnail width"
719
  msgstr "Post Opţiuni pictograme:"
720
 
721
- #: top-10.php:617
722
  msgid "<h3>Popular Posts</h3>"
723
  msgstr "<h3>Posturi populare</h3>"
724
 
725
- #: top-10.php:618
726
  msgid "<h3>Daily Popular</h3>"
727
  msgstr "<h3>Daily populare</h3>"
728
 
729
- #: top-10.php:619
730
  #, fuzzy
731
  msgid "No top posts yet"
732
  msgstr "Top 10 populare posturi Resetare"
733
 
734
- #: top-10.php:1060
735
  msgid "Once Weekly"
736
  msgstr ""
737
 
738
- #: top-10.php:1061
739
  msgid "Once Fortnightly"
740
  msgstr ""
741
 
742
- #: top-10.php:1062
743
  msgid "Once Monthly"
744
  msgstr ""
745
 
746
- #: top-10.php:1082
747
  msgid "Settings"
748
  msgstr "Setări"
749
 
750
- #: top-10.php:1095
751
  msgid "Donate"
752
  msgstr "Dona"
753
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Opţiuni salvat cu succes."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Opţiunile setate la valorile implicite."
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Top 10 populare posturi Resetare"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Top 10 posturi populare daily Reiniţializare"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Numărul de posturi populare pentru a afişa: "
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
76
 
77
+ #: admin.inc.php:198
78
  msgid "Post types to include in results (including custom post types)"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:209
82
  msgid "List of post or page IDs to exclude from the results: "
83
  msgstr ""
84
 
85
+ #: admin.inc.php:213
86
  msgid "Exclude Categories: "
87
  msgstr "Excludeţi categorii: "
88
 
89
+ #: admin.inc.php:228
90
  msgid ""
91
  "Comma separated list of category slugs. The field above has an autocomplete "
92
  "so simply start typing in the starting letters and it will prompt you with "
93
  "options"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:233
97
  #, fuzzy
98
  msgid "Display number of views on:"
99
  msgstr "Afişează numărul de vizualizări pe posturi?"
100
 
101
+ #: admin.inc.php:235
102
  msgid "Posts"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:236
106
  #, fuzzy
107
  msgid "Pages"
108
  msgstr "Pagină"
109
 
110
+ #: admin.inc.php:237
111
  msgid "Home page"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:238
115
  msgid "Feeds"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:239
119
  msgid "Category archives"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:240
123
  msgid "Tag archives"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:241
127
  msgid "Other archives"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:242
131
  msgid ""
132
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
133
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
134
  "you want it displayed"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:245
138
  msgid "Always display latest post count"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:247
142
  msgid ""
143
  "This option uses JavaScript and will increase your page load time. Turn this "
144
  "off if you are not using caching plugins or are OK with displaying older "
146
  "the options set there, but options will need to be set on this screen."
147
  msgstr ""
148
 
149
+ #: admin.inc.php:250
150
  msgid "Always display latest post count in the daily lists"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:252
154
  #, fuzzy
155
  msgid "This option uses JavaScript and will increase your page load time"
156
  msgstr ""
158
  "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
159
  "pagină"
160
 
161
+ #: admin.inc.php:255
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Track vizite de autori pe posturile lor proprii?"
164
 
165
+ #: admin.inc.php:258
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Track vizite de autori pe posturile lor proprii?"
169
 
170
+ #: admin.inc.php:261
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:264
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:266
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
184
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
185
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
186
 
187
+ #: admin.inc.php:273
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Opţiuni de ieşire:"
191
 
192
+ #: admin.inc.php:276
193
  msgid "Format to display the count in: "
194
  msgstr "Format pentru a afişa numărul în: "
195
 
196
+ #: admin.inc.php:278
197
  #, fuzzy
198
  msgid ""
199
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
205
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
206
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
207
 
208
+ #: admin.inc.php:281
209
  msgid "Title of popular posts: "
210
  msgstr "Titlul de posturi populare: "
211
 
212
+ #: admin.inc.php:284
213
  msgid "Title of daily popular posts: "
214
  msgstr "Titlul de zi cu zi de posturi populare: "
215
 
216
+ #: admin.inc.php:287
217
  msgid "When there are no posts, what should be shown?"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:291
221
  msgid "Blank Output"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:295
225
  msgid "Display:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:299
229
  msgid "Show post excerpt in list?"
230
  msgstr "Afişează post extras din lista?"
231
 
232
+ #: admin.inc.php:302
233
  msgid "Length of excerpt (in words): "
234
  msgstr "Lungimea extras (în cuvinte): "
235
 
236
+ #: admin.inc.php:305
237
  #, fuzzy
238
  msgid "Show post author in list?"
239
  msgstr "Afişează post extras din lista?"
240
 
241
+ #: admin.inc.php:308
242
  #, fuzzy
243
  msgid "Show post date in list?"
244
  msgstr "Afişează post extras din lista?"
245
 
246
+ #: admin.inc.php:311
247
  msgid "Limit post title length (in characters)"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:314
251
  msgid "Display number of page views in popular lists?"
252
  msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
253
 
254
+ #: admin.inc.php:317
255
  msgid "Open links in new window"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:320
259
  msgid "Add nofollow attribute to links in the list"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:323
263
  msgid "Exclude display of related posts on these posts / pages"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:326
267
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
268
  msgstr ""
269
 
270
+ #: admin.inc.php:329
271
  msgid "Customize the output:"
272
  msgstr "Personaliza ieşire:"
273
 
274
+ #: admin.inc.php:331
275
  msgid "HTML to display before the list of posts: "
276
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
277
 
278
+ #: admin.inc.php:334
279
  msgid "HTML to display before each list item: "
280
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
281
 
282
+ #: admin.inc.php:337
283
  msgid "HTML to display after each list item: "
284
  msgstr "HTML pentru a afişa după fiecare element din listă: "
285
 
286
+ #: admin.inc.php:340
287
  msgid "HTML to display after the list of posts: "
288
  msgstr "HTML pentru a afişa după lista de posturi: "
289
 
290
+ #: admin.inc.php:343
291
  msgid "Post thumbnail options:"
292
  msgstr "Post Opţiuni pictograme:"
293
 
294
+ #: admin.inc.php:345
295
  msgid "Location of post thumbnail:"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:349
299
  msgid "Display thumbnails inline with posts, before title"
300
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
301
 
302
+ #: admin.inc.php:353
303
  msgid "Display thumbnails inline with posts, after title"
304
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
305
 
306
+ #: admin.inc.php:357
307
  msgid "Display only thumbnails, no text"
308
  msgstr "Afişa numai miniaturi, nici un text"
309
 
310
+ #: admin.inc.php:361
311
  msgid "Do not display thumbnails, only text."
312
  msgstr "Nu se afişează miniaturi, numai textul."
313
 
314
+ #: admin.inc.php:365
315
  msgid "Width of the thumbnail: "
316
  msgstr ""
317
 
318
+ #: admin.inc.php:368
319
  msgid "Height of the thumbnail: "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:371
323
  msgid "Style attributes / Width and Height HTML attributes:"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:375
327
  msgid ""
328
  "Style attributes are used for width and height. <code>style=\"max-width:"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:379
332
  msgid ""
333
  "HTML width and height attributes are used for width and height. <code>width="
334
  "\""
335
  msgstr ""
336
 
337
+ #: admin.inc.php:383
338
  msgid "Use timthumb to generate thumbnails? "
339
  msgstr ""
340
 
344
  "\">timthumb</a> will be used to generate thumbnails"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:389
348
  #, fuzzy
349
  msgid "Post thumbnail meta field name: "
350
  msgstr "Post Opţiuni pictograme:"
351
 
352
+ #: admin.inc.php:392
353
  msgid ""
354
  "The value of this field should contain the image source and is set in the "
355
  "<em>Add New Post</em> screen"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:395
359
  #, fuzzy
360
  msgid ""
361
  "If the postmeta is not set, then should the plugin extract the first image "
366
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
367
  "fişier"
368
 
369
+ #: admin.inc.php:398
370
  #, fuzzy
371
  msgid ""
372
  "This could slow down the loading of your page if the first image in the "
377
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
378
  "fişier"
379
 
380
+ #: admin.inc.php:401
381
  msgid "Use default thumbnail? "
382
  msgstr ""
383
 
384
+ #: admin.inc.php:404
385
  msgid ""
386
  "If checked, when no thumbnail is found, show a default one from the URL "
387
  "below. If not checked and no thumbnail is found, no image will be shown."
390
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
391
  "thumbnail, imaginea nu va fi indicat."
392
 
393
+ #: admin.inc.php:407
394
  msgid "Default thumbnail: "
395
  msgstr ""
396
 
397
+ #: admin.inc.php:410
398
  msgid ""
399
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
400
  "then it will check the meta field. If this is not available, then it will "
401
  "show the default image as specified above"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:417
405
  msgid "Custom Styles"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:420
409
  msgid "Custom CSS to add to header:"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:423
413
  msgid ""
414
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
415
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
416
  "available CSS classes to style."
417
  msgstr ""
418
 
419
+ #: admin.inc.php:430
420
  msgid "Maintenance"
421
  msgstr ""
422
 
423
+ #: admin.inc.php:434
424
  msgid ""
425
  "Over time the Daily Top 10 database grows in size, which reduces the "
426
  "performance of the plugin. Cleaning the database at regular intervals could "
427
  "improve performance, especially on high traffic blogs."
428
  msgstr ""
429
 
430
+ #: admin.inc.php:435
431
  msgid ""
432
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
433
  "everytime the job is rescheduled (i.e. you change the settings below). This "
434
  "causes the daily posts table to reset."
435
  msgstr ""
436
 
437
+ #: admin.inc.php:438
438
  msgid "Enable scheduled maintenance of daily tables:"
439
  msgstr ""
440
 
441
+ #: admin.inc.php:442
442
  msgid "Time to run maintenance"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:445
446
  msgid "How often should the maintenance be run:"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:449
450
  msgid "Daily"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:453
454
  msgid "Weekly"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:457
458
  msgid "Fortnightly"
459
  msgstr ""
460
 
461
+ #: admin.inc.php:461
462
  msgid "Monthly"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:470
466
  msgid "The cron job has been scheduled. Maintenance will run "
467
  msgstr ""
468
 
469
+ #: admin.inc.php:475
470
  msgid "The cron job is missing. Please resave this page to add the job"
471
  msgstr ""
472
 
473
+ #: admin.inc.php:480
474
  msgid "Maintenance is turned off"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:488
478
  #, fuzzy
479
  msgid "Save Options"
480
  msgstr "Opţiuni:"
481
 
482
+ #: admin.inc.php:489
483
  #, fuzzy
484
  msgid "Default Options"
485
  msgstr "Opţiuni de ieşire:"
486
 
487
+ #: admin.inc.php:489
488
  msgid "Do you want to set options to Default?"
489
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
490
 
491
+ #: admin.inc.php:493
492
  msgid "Reset count"
493
  msgstr "Reiniţializare count"
494
 
495
+ #: admin.inc.php:496
496
  msgid ""
497
  "This cannot be reversed. Make sure that your database has been backed up "
498
  "before proceeding"
500
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
501
  "înainte de a continua"
502
 
503
+ #: admin.inc.php:499
504
  #, fuzzy
505
  msgid "Reset Popular Posts"
506
  msgstr "Posturi populare"
507
 
508
+ #: admin.inc.php:499
509
  msgid "Are you sure you want to reset the popular posts?"
510
  msgstr "Sigur reiniţializaţi posturi populare?"
511
 
512
+ #: admin.inc.php:500
513
  #, fuzzy
514
  msgid "Reset Daily Popular Posts"
515
  msgstr "Posturi populare de zi cu zi"
516
 
517
+ #: admin.inc.php:500
518
  msgid "Are you sure you want to reset the daily popular posts?"
519
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
520
 
521
+ #: admin.inc.php:501
522
  msgid "Clear duplicates"
523
  msgstr ""
524
 
525
+ #: admin.inc.php:501
526
  msgid "This will delete the duplicate entries in the tables. Proceed?"
527
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
528
 
529
+ #: admin.inc.php:544 admin.inc.php:929
530
  msgid "Popular Posts"
531
  msgstr "Posturi populare"
532
 
533
+ #: admin.inc.php:544 admin.inc.php:631
534
  msgid "Daily Popular Posts"
535
  msgstr "Posturi populare de zi cu zi"
536
 
537
+ #: admin.inc.php:572
538
  msgid "Support the development"
539
  msgstr "Sprijinirea dezvoltării"
540
 
541
+ #: admin.inc.php:580
542
  msgid "Enter amount in USD: "
543
  msgstr "Introduceţi valoarea în USD: "
544
 
545
+ #: admin.inc.php:584
546
  msgid "Send your donation to the author of"
547
  msgstr "Trimite donatie autorului"
548
 
549
+ #: admin.inc.php:590
550
  msgid "Follow us"
551
  msgstr ""
552
 
553
+ #: admin.inc.php:596
554
  #, fuzzy
555
  msgid "Quick Links"
556
  msgstr "Legături rapide pentru"
557
 
558
+ #: admin.inc.php:598
559
  #, fuzzy
560
  msgid "Top 10 plugin page"
561
  msgstr "plug-in pagina"
562
 
563
+ #: admin.inc.php:599
564
  msgid "Other plugins"
565
  msgstr "Alte plugin-uri"
566
 
567
+ #: admin.inc.php:600
568
  msgid "Ajay's blog"
569
  msgstr "Ajay's blog"
570
 
571
+ #: admin.inc.php:601 top-10.php:1147
572
  msgid "Support"
573
  msgstr "Suport"
574
 
575
+ #: admin.inc.php:605
576
  msgid "Recent developments"
577
  msgstr "Evoluţiile recente"
578
 
579
+ #: admin.inc.php:622 admin.inc.php:625
580
  #, fuzzy
581
  msgid "Top 10 Settings"
582
  msgstr "Setări"
583
 
584
+ #: admin.inc.php:622
585
  msgid "Top 10"
586
  msgstr "Top 10"
587
 
588
+ #: admin.inc.php:628
589
  #, fuzzy
590
  msgid "Overall Popular Posts"
591
  msgstr "Vedere de ansamblu posturi populare"
592
 
593
+ #: admin.inc.php:799
594
  msgid "Results"
595
  msgstr "Rezultatele"
596
 
597
+ #: admin.inc.php:801 admin.inc.php:807
598
  msgid "of"
599
  msgstr "de"
600
 
601
+ #: admin.inc.php:805
602
  msgid "Page"
603
  msgstr "Pagină"
604
 
605
+ #: admin.inc.php:819
606
  msgid "View Daily Popular Posts"
607
  msgstr "Vizualizare zi posturi populare"
608
 
609
+ #: admin.inc.php:822 admin.inc.php:835
610
  msgid "Results per-page:"
611
  msgstr "Rezultate pe pagină:"
612
 
613
+ #: admin.inc.php:832
614
  msgid "View Overall Popular Posts"
615
  msgstr "Vedere de ansamblu posturi populare"
616
 
617
+ #: admin.inc.php:861
618
  msgid "Previous"
619
  msgstr "Anterioară"
620
 
621
+ #: admin.inc.php:889
622
  msgid "Next"
623
  msgstr "Următorul"
624
 
625
+ #: admin.inc.php:930
626
  msgid "Daily Popular"
627
  msgstr "Daily populare"
628
 
629
+ #: admin.inc.php:946
630
  #, fuzzy
631
  msgid "Total Views"
632
  msgstr "Total / astăzi lui vizitări"
633
 
634
+ #: admin.inc.php:947
635
  #, fuzzy
636
  msgid "Today's Views"
637
  msgstr "Total / astăzi lui vizitări"
638
 
639
+ #: top-10.php:415
640
+ msgid " by "
641
  msgstr ""
642
 
643
+ #: top-10.php:501
644
  msgid "Display the posts popular this week"
645
  msgstr "Afişa posturi populare în această săptămână"
646
 
647
+ #: top-10.php:502
648
  #, fuzzy
649
  msgid "Popular Posts [Top 10]"
650
  msgstr "Posturi populare"
651
 
652
+ #: top-10.php:519
653
  msgid "Title"
654
  msgstr ""
655
 
656
+ #: top-10.php:524
657
  msgid "No. of posts"
658
  msgstr ""
659
 
660
+ #: top-10.php:529
661
  msgid "Overall"
662
  msgstr ""
663
 
664
+ #: top-10.php:530
665
  msgid "Custom time period (Enter below)"
666
  msgstr ""
667
 
668
+ #: top-10.php:535
669
  msgid "Range in number of days (applies only to custom option above)"
670
  msgstr ""
671
 
672
+ #: top-10.php:540
673
  #, fuzzy
674
  msgid " Show excerpt?"
675
  msgstr "Afişează post extras din lista?"
676
 
677
+ #: top-10.php:545
678
  msgid " Show author?"
679
  msgstr ""
680
 
681
+ #: top-10.php:550
682
  #, fuzzy
683
  msgid " Show date?"
684
  msgstr "Afişează post extras din lista?"
685
 
686
+ #: top-10.php:554
687
  #, fuzzy
688
  msgid "Thumbnail options"
689
  msgstr "Post Opţiuni pictograme:"
690
 
691
+ #: top-10.php:556
692
  #, fuzzy
693
  msgid "Thumbnails inline, before title"
694
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
695
 
696
+ #: top-10.php:557
697
  #, fuzzy
698
  msgid "Thumbnails inline, after title"
699
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
700
 
701
+ #: top-10.php:558
702
  #, fuzzy
703
  msgid "Only thumbnails, no text"
704
  msgstr "Afişa numai miniaturi, nici un text"
705
 
706
+ #: top-10.php:559
707
  #, fuzzy
708
  msgid "No thumbnails, only text."
709
  msgstr "Nu se afişează miniaturi, numai textul."
710
 
711
+ #: top-10.php:564
712
  #, fuzzy
713
  msgid "Thumbnail height"
714
  msgstr "Post Opţiuni pictograme:"
715
 
716
+ #: top-10.php:569
717
  #, fuzzy
718
  msgid "Thumbnail width"
719
  msgstr "Post Opţiuni pictograme:"
720
 
721
+ #: top-10.php:670
722
  msgid "<h3>Popular Posts</h3>"
723
  msgstr "<h3>Posturi populare</h3>"
724
 
725
+ #: top-10.php:671
726
  msgid "<h3>Daily Popular</h3>"
727
  msgstr "<h3>Daily populare</h3>"
728
 
729
+ #: top-10.php:672
730
  #, fuzzy
731
  msgid "No top posts yet"
732
  msgstr "Top 10 populare posturi Resetare"
733
 
734
+ #: top-10.php:1113
735
  msgid "Once Weekly"
736
  msgstr ""
737
 
738
+ #: top-10.php:1114
739
  msgid "Once Fortnightly"
740
  msgstr ""
741
 
742
+ #: top-10.php:1115
743
  msgid "Once Monthly"
744
  msgstr ""
745
 
746
+ #: top-10.php:1135
747
  msgid "Settings"
748
  msgstr "Setări"
749
 
750
+ #: top-10.php:1148
751
  msgid "Donate"
752
  msgstr "Dona"
753
 
languages/tptn-ru_RU.mo CHANGED
Binary file
languages/tptn-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
@@ -15,131 +15,131 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Настройки сохранены."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Настройки сброшены."
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Сбросить статистику популярных записей"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Сбросить статистику популярных записей за сегодня"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Количество Популярных записей в списке:"
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
77
 
78
- #: admin.inc.php:200
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:211
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:215
87
  msgid "Exclude Categories: "
88
  msgstr "Исключить рубрики:"
89
 
90
- #: admin.inc.php:230
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
- #: admin.inc.php:235
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
101
 
102
- #: admin.inc.php:237
103
  msgid "Posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:238
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Страница"
110
 
111
- #: admin.inc.php:239
112
  msgid "Home page"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
- #: admin.inc.php:241
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
- #: admin.inc.php:242
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
- #: admin.inc.php:243
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
- #: admin.inc.php:244
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
- #: admin.inc.php:247
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
- #: admin.inc.php:249
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
@@ -147,35 +147,35 @@ msgid ""
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
- #: admin.inc.php:252
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
- #: admin.inc.php:254
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
159
  "и это может увеличить время загрузки страниц"
160
 
161
- #: admin.inc.php:257
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
164
 
165
- #: admin.inc.php:260
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
169
 
170
- #: admin.inc.php:263
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
- #: admin.inc.php:266
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
- #: admin.inc.php:268
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -184,18 +184,18 @@ msgstr ""
184
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
185
  "бы очень благодарен Вам, если Вы ее все же оставите!"
186
 
187
- #: admin.inc.php:275
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Настройки плагина:"
191
 
192
- #: admin.inc.php:278
193
  msgid "Format to display the count in: "
194
  msgstr ""
195
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
196
  "день, за все время для записей/страниц:"
197
 
198
- #: admin.inc.php:280
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -207,137 +207,137 @@ msgstr ""
207
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
208
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
209
 
210
- #: admin.inc.php:283
211
  msgid "Title of popular posts: "
212
  msgstr "Заголовок списка Популярных записей:"
213
 
214
- #: admin.inc.php:286
215
  msgid "Title of daily popular posts: "
216
  msgstr "Заголовок списка Популярных сегодня записей:"
217
 
218
- #: admin.inc.php:289
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
- #: admin.inc.php:293
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
- #: admin.inc.php:297
227
  msgid "Display:"
228
  msgstr ""
229
 
230
- #: admin.inc.php:301
231
  msgid "Show post excerpt in list?"
232
  msgstr "Показывать текст записи в списке?"
233
 
234
- #: admin.inc.php:304
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Длина выводимого текста (в словах):"
237
 
238
- #: admin.inc.php:307
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Показывать текст записи в списке?"
242
 
243
- #: admin.inc.php:310
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Показывать текст записи в списке?"
247
 
248
- #: admin.inc.php:313
249
  msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
- #: admin.inc.php:316
253
  msgid "Display number of page views in popular lists?"
254
  msgstr ""
255
  "Показывать количество просмотров записей/страниц в списке Популярных записей?"
256
 
257
- #: admin.inc.php:319
258
  msgid "Open links in new window"
259
  msgstr ""
260
 
261
- #: admin.inc.php:322
262
  msgid "Add nofollow attribute to links in the list"
263
  msgstr ""
264
 
265
- #: admin.inc.php:325
266
  msgid "Exclude display of related posts on these posts / pages"
267
  msgstr ""
268
 
269
- #: admin.inc.php:328
270
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
271
  msgstr ""
272
 
273
- #: admin.inc.php:331
274
  msgid "Customize the output:"
275
  msgstr "Настройки оформления списка:"
276
 
277
- #: admin.inc.php:333
278
  msgid "HTML to display before the list of posts: "
279
  msgstr "HTML-тег, используемый перед списком:"
280
 
281
- #: admin.inc.php:336
282
  msgid "HTML to display before each list item: "
283
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
284
 
285
- #: admin.inc.php:339
286
  msgid "HTML to display after each list item: "
287
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
288
 
289
- #: admin.inc.php:342
290
  msgid "HTML to display after the list of posts: "
291
  msgstr "HTML-тег, используемый после списка:"
292
 
293
- #: admin.inc.php:345
294
  msgid "Post thumbnail options:"
295
  msgstr "Настройки превью к записям:"
296
 
297
- #: admin.inc.php:347
298
  msgid "Location of post thumbnail:"
299
  msgstr ""
300
 
301
- #: admin.inc.php:351
302
  msgid "Display thumbnails inline with posts, before title"
303
  msgstr "Отображать превью к записи сразу перед заголовком"
304
 
305
- #: admin.inc.php:355
306
  msgid "Display thumbnails inline with posts, after title"
307
  msgstr "Отображать превью к записи сразу после заголовка"
308
 
309
- #: admin.inc.php:359
310
  msgid "Display only thumbnails, no text"
311
  msgstr "Отображать только превью, без текста"
312
 
313
- #: admin.inc.php:363
314
  msgid "Do not display thumbnails, only text."
315
  msgstr "Отображать только текст, без превью"
316
 
317
- #: admin.inc.php:367
318
  msgid "Width of the thumbnail: "
319
  msgstr ""
320
 
321
- #: admin.inc.php:370
322
  msgid "Height of the thumbnail: "
323
  msgstr ""
324
 
325
- #: admin.inc.php:373
326
  msgid "Style attributes / Width and Height HTML attributes:"
327
  msgstr ""
328
 
329
- #: admin.inc.php:377
330
  msgid ""
331
  "Style attributes are used for width and height. <code>style=\"max-width:"
332
  msgstr ""
333
 
334
- #: admin.inc.php:381
335
  msgid ""
336
  "HTML width and height attributes are used for width and height. <code>width="
337
  "\""
338
  msgstr ""
339
 
340
- #: admin.inc.php:385
341
  msgid "Use timthumb to generate thumbnails? "
342
  msgstr ""
343
 
@@ -347,18 +347,18 @@ msgid ""
347
  "\">timthumb</a> will be used to generate thumbnails"
348
  msgstr ""
349
 
350
- #: admin.inc.php:388
351
  #, fuzzy
352
  msgid "Post thumbnail meta field name: "
353
  msgstr "Настройки превью к записям:"
354
 
355
- #: admin.inc.php:389
356
  msgid ""
357
  "The value of this field should contain the image source and is set in the "
358
  "<em>Add New Post</em> screen"
359
  msgstr ""
360
 
361
- #: admin.inc.php:391
362
  #, fuzzy
363
  msgid ""
364
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -368,7 +368,7 @@ msgstr ""
368
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
369
  "как будет создаваться уменьшенная копия изображения"
370
 
371
- #: admin.inc.php:392
372
  #, fuzzy
373
  msgid ""
374
  "This could slow down the loading of your page if the first image in the "
@@ -378,11 +378,11 @@ msgstr ""
378
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
379
  "как будет создаваться уменьшенная копия изображения"
380
 
381
- #: admin.inc.php:394
382
  msgid "Use default thumbnail? "
383
  msgstr ""
384
 
385
- #: admin.inc.php:395
386
  msgid ""
387
  "If checked, when no thumbnail is found, show a default one from the URL "
388
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -391,11 +391,11 @@ msgstr ""
391
  "добавлено стандартное изображение. Если превью задано к записи - будет "
392
  "отображаться только оно."
393
 
394
- #: admin.inc.php:397
395
  msgid "Default thumbnail: "
396
  msgstr ""
397
 
398
- #: admin.inc.php:398
399
  #, fuzzy
400
  msgid ""
401
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -406,98 +406,98 @@ msgstr ""
406
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
407
  "выводиться картинка по-умолчанию:"
408
 
409
- #: admin.inc.php:404
410
  msgid "Custom Styles"
411
  msgstr ""
412
 
413
- #: admin.inc.php:407
414
  msgid "Custom CSS to add to header:"
415
  msgstr ""
416
 
417
- #: admin.inc.php:410
418
  msgid ""
419
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
420
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
421
  "available CSS classes to style."
422
  msgstr ""
423
 
424
- #: admin.inc.php:417
425
  msgid "Maintenance"
426
  msgstr ""
427
 
428
- #: admin.inc.php:421
429
  msgid ""
430
  "Over time the Daily Top 10 database grows in size, which reduces the "
431
  "performance of the plugin. Cleaning the database at regular intervals could "
432
  "improve performance, especially on high traffic blogs."
433
  msgstr ""
434
 
435
- #: admin.inc.php:422
436
  msgid ""
437
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
438
  "everytime the job is rescheduled (i.e. you change the settings below). This "
439
  "causes the daily posts table to reset."
440
  msgstr ""
441
 
442
- #: admin.inc.php:425
443
  msgid "Enable scheduled maintenance of daily tables:"
444
  msgstr ""
445
 
446
- #: admin.inc.php:429
447
  msgid "Time to run maintenance"
448
  msgstr ""
449
 
450
- #: admin.inc.php:432
451
  msgid "How often should the maintenance be run:"
452
  msgstr ""
453
 
454
- #: admin.inc.php:436
455
  msgid "Daily"
456
  msgstr ""
457
 
458
- #: admin.inc.php:440
459
  msgid "Weekly"
460
  msgstr ""
461
 
462
- #: admin.inc.php:444
463
  msgid "Fortnightly"
464
  msgstr ""
465
 
466
- #: admin.inc.php:448
467
  msgid "Monthly"
468
  msgstr ""
469
 
470
- #: admin.inc.php:457
471
  msgid "The cron job has been scheduled. Maintenance will run "
472
  msgstr ""
473
 
474
- #: admin.inc.php:462
475
  msgid "The cron job is missing. Please resave this page to add the job"
476
  msgstr ""
477
 
478
- #: admin.inc.php:467
479
  msgid "Maintenance is turned off"
480
  msgstr ""
481
 
482
- #: admin.inc.php:475
483
  #, fuzzy
484
  msgid "Save Options"
485
  msgstr "Настройки плагина:"
486
 
487
- #: admin.inc.php:476
488
  #, fuzzy
489
  msgid "Default Options"
490
  msgstr "Настройки плагина:"
491
 
492
- #: admin.inc.php:476
493
  msgid "Do you want to set options to Default?"
494
  msgstr "Сбросить настройки плагина?"
495
 
496
- #: admin.inc.php:480
497
  msgid "Reset count"
498
  msgstr "Сбросить статистику"
499
 
500
- #: admin.inc.php:483
501
  msgid ""
502
  "This cannot be reversed. Make sure that your database has been backed up "
503
  "before proceeding"
@@ -505,256 +505,256 @@ msgstr ""
505
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
506
  "убедитесь, что у вас есть копия вашей базы данных!"
507
 
508
- #: admin.inc.php:486
509
  #, fuzzy
510
  msgid "Reset Popular Posts"
511
  msgstr "Популярные записи"
512
 
513
- #: admin.inc.php:486
514
  msgid "Are you sure you want to reset the popular posts?"
515
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
516
 
517
- #: admin.inc.php:487
518
  #, fuzzy
519
  msgid "Reset Daily Popular Posts"
520
  msgstr "Популярные сегодня записи"
521
 
522
- #: admin.inc.php:487
523
  msgid "Are you sure you want to reset the daily popular posts?"
524
  msgstr ""
525
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
526
 
527
- #: admin.inc.php:488
528
  msgid "Clear duplicates"
529
  msgstr ""
530
 
531
- #: admin.inc.php:488
532
  msgid "This will delete the duplicate entries in the tables. Proceed?"
533
  msgstr ""
534
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
535
 
536
- #: admin.inc.php:531 admin.inc.php:906
537
  msgid "Popular Posts"
538
  msgstr "Популярные записи"
539
 
540
- #: admin.inc.php:531 admin.inc.php:618
541
  msgid "Daily Popular Posts"
542
  msgstr "Популярные сегодня записи"
543
 
544
- #: admin.inc.php:559
545
  msgid "Support the development"
546
  msgstr "Поддержать автора плагина"
547
 
548
- #: admin.inc.php:567
549
  msgid "Enter amount in USD: "
550
  msgstr "Сколько вы готовы пожертвовать (в USD):"
551
 
552
- #: admin.inc.php:571
553
  msgid "Send your donation to the author of"
554
  msgstr "Отправьте пожертвование автору"
555
 
556
- #: admin.inc.php:577
557
  msgid "Follow us"
558
  msgstr ""
559
 
560
- #: admin.inc.php:583
561
  #, fuzzy
562
  msgid "Quick Links"
563
  msgstr "Полезные ссылки"
564
 
565
- #: admin.inc.php:585
566
  #, fuzzy
567
  msgid "Top 10 plugin page"
568
  msgstr "страница плагина"
569
 
570
- #: admin.inc.php:586
571
  msgid "Other plugins"
572
  msgstr "Другие плагины автора"
573
 
574
- #: admin.inc.php:587
575
  msgid "Ajay's blog"
576
  msgstr "Блог Ajay"
577
 
578
- #: admin.inc.php:588 top-10.php:1094
579
  msgid "Support"
580
  msgstr "Поддержка (англ.)"
581
 
582
- #: admin.inc.php:592
583
  msgid "Recent developments"
584
  msgstr "Последние разработки"
585
 
586
- #: admin.inc.php:609 admin.inc.php:612
587
  #, fuzzy
588
  msgid "Top 10 Settings"
589
  msgstr "Настроки плагина"
590
 
591
- #: admin.inc.php:609
592
  msgid "Top 10"
593
  msgstr "Топ 10 записей"
594
 
595
- #: admin.inc.php:615
596
  #, fuzzy
597
  msgid "Overall Popular Posts"
598
  msgstr "Посмотреть все Популярные записи"
599
 
600
- #: admin.inc.php:786
601
  msgid "Results"
602
  msgstr "Результаты"
603
 
604
- #: admin.inc.php:788 admin.inc.php:794
605
  msgid "of"
606
  msgstr "из"
607
 
608
- #: admin.inc.php:792
609
  msgid "Page"
610
  msgstr "Страница"
611
 
612
- #: admin.inc.php:806
613
  msgid "View Daily Popular Posts"
614
  msgstr "Посмотреть все Популярные сегодня записи"
615
 
616
- #: admin.inc.php:809 admin.inc.php:822
617
  msgid "Results per-page:"
618
  msgstr "Результатов на страницу:"
619
 
620
- #: admin.inc.php:819
621
  msgid "View Overall Popular Posts"
622
  msgstr "Посмотреть все Популярные записи"
623
 
624
- #: admin.inc.php:848
625
  msgid "Previous"
626
  msgstr "Предыдущая страница"
627
 
628
- #: admin.inc.php:866
629
  msgid "Next"
630
  msgstr "Следующая страница"
631
 
632
- #: admin.inc.php:907
633
  msgid "Daily Popular"
634
  msgstr "Популярные сегодня записи"
635
 
636
- #: admin.inc.php:923
637
  #, fuzzy
638
  msgid "Total Views"
639
  msgstr "Всего/Сегодня"
640
 
641
- #: admin.inc.php:924
642
  #, fuzzy
643
  msgid "Today's Views"
644
  msgstr "Всего/Сегодня"
645
 
646
- #: top-10.php:366
647
- msgid " Posted by "
648
  msgstr ""
649
 
650
- #: top-10.php:448
651
  msgid "Display the posts popular this week"
652
  msgstr "Отображать списки популярных записей за неделю"
653
 
654
- #: top-10.php:449
655
  #, fuzzy
656
  msgid "Popular Posts [Top 10]"
657
  msgstr "Популярные записи"
658
 
659
- #: top-10.php:466
660
  msgid "Title"
661
  msgstr ""
662
 
663
- #: top-10.php:471
664
  msgid "No. of posts"
665
  msgstr ""
666
 
667
- #: top-10.php:476
668
  msgid "Overall"
669
  msgstr ""
670
 
671
- #: top-10.php:477
672
  msgid "Custom time period (Enter below)"
673
  msgstr ""
674
 
675
- #: top-10.php:482
676
  msgid "Range in number of days (applies only to custom option above)"
677
  msgstr ""
678
 
679
- #: top-10.php:487
680
  #, fuzzy
681
  msgid " Show excerpt?"
682
  msgstr "Показывать текст записи в списке?"
683
 
684
- #: top-10.php:492
685
  msgid " Show author?"
686
  msgstr ""
687
 
688
- #: top-10.php:497
689
  #, fuzzy
690
  msgid " Show date?"
691
  msgstr "Показывать текст записи в списке?"
692
 
693
- #: top-10.php:501
694
  #, fuzzy
695
  msgid "Thumbnail options"
696
  msgstr "Настройки превью к записям:"
697
 
698
- #: top-10.php:503
699
  #, fuzzy
700
  msgid "Thumbnails inline, before title"
701
  msgstr "Отображать превью к записи сразу перед заголовком"
702
 
703
- #: top-10.php:504
704
  #, fuzzy
705
  msgid "Thumbnails inline, after title"
706
  msgstr "Отображать превью к записи сразу после заголовка"
707
 
708
- #: top-10.php:505
709
  #, fuzzy
710
  msgid "Only thumbnails, no text"
711
  msgstr "Отображать только превью, без текста"
712
 
713
- #: top-10.php:506
714
  #, fuzzy
715
  msgid "No thumbnails, only text."
716
  msgstr "Отображать только текст, без превью"
717
 
718
- #: top-10.php:511
719
  #, fuzzy
720
  msgid "Thumbnail height"
721
  msgstr "Настройки превью к записям:"
722
 
723
- #: top-10.php:516
724
  #, fuzzy
725
  msgid "Thumbnail width"
726
  msgstr "Настройки превью к записям:"
727
 
728
- #: top-10.php:617
729
  msgid "<h3>Popular Posts</h3>"
730
  msgstr "<h3>Популярные записи</h3>"
731
 
732
- #: top-10.php:618
733
  msgid "<h3>Daily Popular</h3>"
734
  msgstr "<h3>Популярные сегодня записи</h3>"
735
 
736
- #: top-10.php:619
737
  #, fuzzy
738
  msgid "No top posts yet"
739
  msgstr "Сбросить статистику популярных записей"
740
 
741
- #: top-10.php:1060
742
  msgid "Once Weekly"
743
  msgstr ""
744
 
745
- #: top-10.php:1061
746
  msgid "Once Fortnightly"
747
  msgstr ""
748
 
749
- #: top-10.php:1062
750
  msgid "Once Monthly"
751
  msgstr ""
752
 
753
- #: top-10.php:1082
754
  msgid "Settings"
755
  msgstr "Настроки плагина"
756
 
757
- #: top-10.php:1095
758
  msgid "Donate"
759
  msgstr "Сделать пожертвование"
760
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Настройки сохранены."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Настройки сброшены."
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Сбросить статистику популярных записей"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Сбросить статистику популярных записей за сегодня"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Количество Популярных записей в списке:"
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
77
 
78
+ #: admin.inc.php:198
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:209
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
+ #: admin.inc.php:213
87
  msgid "Exclude Categories: "
88
  msgstr "Исключить рубрики:"
89
 
90
+ #: admin.inc.php:228
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:233
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
101
 
102
+ #: admin.inc.php:235
103
  msgid "Posts"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:236
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Страница"
110
 
111
+ #: admin.inc.php:237
112
  msgid "Home page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:238
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:239
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:240
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:241
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:242
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:245
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:247
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:250
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:252
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
159
  "и это может увеличить время загрузки страниц"
160
 
161
+ #: admin.inc.php:255
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
164
 
165
+ #: admin.inc.php:258
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
169
 
170
+ #: admin.inc.php:261
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:264
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:266
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
184
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
185
  "бы очень благодарен Вам, если Вы ее все же оставите!"
186
 
187
+ #: admin.inc.php:273
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Настройки плагина:"
191
 
192
+ #: admin.inc.php:276
193
  msgid "Format to display the count in: "
194
  msgstr ""
195
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
196
  "день, за все время для записей/страниц:"
197
 
198
+ #: admin.inc.php:278
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
207
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
208
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
209
 
210
+ #: admin.inc.php:281
211
  msgid "Title of popular posts: "
212
  msgstr "Заголовок списка Популярных записей:"
213
 
214
+ #: admin.inc.php:284
215
  msgid "Title of daily popular posts: "
216
  msgstr "Заголовок списка Популярных сегодня записей:"
217
 
218
+ #: admin.inc.php:287
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:291
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:295
227
  msgid "Display:"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:299
231
  msgid "Show post excerpt in list?"
232
  msgstr "Показывать текст записи в списке?"
233
 
234
+ #: admin.inc.php:302
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Длина выводимого текста (в словах):"
237
 
238
+ #: admin.inc.php:305
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Показывать текст записи в списке?"
242
 
243
+ #: admin.inc.php:308
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Показывать текст записи в списке?"
247
 
248
+ #: admin.inc.php:311
249
  msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:314
253
  msgid "Display number of page views in popular lists?"
254
  msgstr ""
255
  "Показывать количество просмотров записей/страниц в списке Популярных записей?"
256
 
257
+ #: admin.inc.php:317
258
  msgid "Open links in new window"
259
  msgstr ""
260
 
261
+ #: admin.inc.php:320
262
  msgid "Add nofollow attribute to links in the list"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:323
266
  msgid "Exclude display of related posts on these posts / pages"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:326
270
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
271
  msgstr ""
272
 
273
+ #: admin.inc.php:329
274
  msgid "Customize the output:"
275
  msgstr "Настройки оформления списка:"
276
 
277
+ #: admin.inc.php:331
278
  msgid "HTML to display before the list of posts: "
279
  msgstr "HTML-тег, используемый перед списком:"
280
 
281
+ #: admin.inc.php:334
282
  msgid "HTML to display before each list item: "
283
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
284
 
285
+ #: admin.inc.php:337
286
  msgid "HTML to display after each list item: "
287
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
288
 
289
+ #: admin.inc.php:340
290
  msgid "HTML to display after the list of posts: "
291
  msgstr "HTML-тег, используемый после списка:"
292
 
293
+ #: admin.inc.php:343
294
  msgid "Post thumbnail options:"
295
  msgstr "Настройки превью к записям:"
296
 
297
+ #: admin.inc.php:345
298
  msgid "Location of post thumbnail:"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:349
302
  msgid "Display thumbnails inline with posts, before title"
303
  msgstr "Отображать превью к записи сразу перед заголовком"
304
 
305
+ #: admin.inc.php:353
306
  msgid "Display thumbnails inline with posts, after title"
307
  msgstr "Отображать превью к записи сразу после заголовка"
308
 
309
+ #: admin.inc.php:357
310
  msgid "Display only thumbnails, no text"
311
  msgstr "Отображать только превью, без текста"
312
 
313
+ #: admin.inc.php:361
314
  msgid "Do not display thumbnails, only text."
315
  msgstr "Отображать только текст, без превью"
316
 
317
+ #: admin.inc.php:365
318
  msgid "Width of the thumbnail: "
319
  msgstr ""
320
 
321
+ #: admin.inc.php:368
322
  msgid "Height of the thumbnail: "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:371
326
  msgid "Style attributes / Width and Height HTML attributes:"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:375
330
  msgid ""
331
  "Style attributes are used for width and height. <code>style=\"max-width:"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:379
335
  msgid ""
336
  "HTML width and height attributes are used for width and height. <code>width="
337
  "\""
338
  msgstr ""
339
 
340
+ #: admin.inc.php:383
341
  msgid "Use timthumb to generate thumbnails? "
342
  msgstr ""
343
 
347
  "\">timthumb</a> will be used to generate thumbnails"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:389
351
  #, fuzzy
352
  msgid "Post thumbnail meta field name: "
353
  msgstr "Настройки превью к записям:"
354
 
355
+ #: admin.inc.php:392
356
  msgid ""
357
  "The value of this field should contain the image source and is set in the "
358
  "<em>Add New Post</em> screen"
359
  msgstr ""
360
 
361
+ #: admin.inc.php:395
362
  #, fuzzy
363
  msgid ""
364
  "If the postmeta is not set, then should the plugin extract the first image "
368
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
369
  "как будет создаваться уменьшенная копия изображения"
370
 
371
+ #: admin.inc.php:398
372
  #, fuzzy
373
  msgid ""
374
  "This could slow down the loading of your page if the first image in the "
378
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
379
  "как будет создаваться уменьшенная копия изображения"
380
 
381
+ #: admin.inc.php:401
382
  msgid "Use default thumbnail? "
383
  msgstr ""
384
 
385
+ #: admin.inc.php:404
386
  msgid ""
387
  "If checked, when no thumbnail is found, show a default one from the URL "
388
  "below. If not checked and no thumbnail is found, no image will be shown."
391
  "добавлено стандартное изображение. Если превью задано к записи - будет "
392
  "отображаться только оно."
393
 
394
+ #: admin.inc.php:407
395
  msgid "Default thumbnail: "
396
  msgstr ""
397
 
398
+ #: admin.inc.php:410
399
  #, fuzzy
400
  msgid ""
401
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
406
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
407
  "выводиться картинка по-умолчанию:"
408
 
409
+ #: admin.inc.php:417
410
  msgid "Custom Styles"
411
  msgstr ""
412
 
413
+ #: admin.inc.php:420
414
  msgid "Custom CSS to add to header:"
415
  msgstr ""
416
 
417
+ #: admin.inc.php:423
418
  msgid ""
419
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
420
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
421
  "available CSS classes to style."
422
  msgstr ""
423
 
424
+ #: admin.inc.php:430
425
  msgid "Maintenance"
426
  msgstr ""
427
 
428
+ #: admin.inc.php:434
429
  msgid ""
430
  "Over time the Daily Top 10 database grows in size, which reduces the "
431
  "performance of the plugin. Cleaning the database at regular intervals could "
432
  "improve performance, especially on high traffic blogs."
433
  msgstr ""
434
 
435
+ #: admin.inc.php:435
436
  msgid ""
437
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
438
  "everytime the job is rescheduled (i.e. you change the settings below). This "
439
  "causes the daily posts table to reset."
440
  msgstr ""
441
 
442
+ #: admin.inc.php:438
443
  msgid "Enable scheduled maintenance of daily tables:"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:442
447
  msgid "Time to run maintenance"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:445
451
  msgid "How often should the maintenance be run:"
452
  msgstr ""
453
 
454
+ #: admin.inc.php:449
455
  msgid "Daily"
456
  msgstr ""
457
 
458
+ #: admin.inc.php:453
459
  msgid "Weekly"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:457
463
  msgid "Fortnightly"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:461
467
  msgid "Monthly"
468
  msgstr ""
469
 
470
+ #: admin.inc.php:470
471
  msgid "The cron job has been scheduled. Maintenance will run "
472
  msgstr ""
473
 
474
+ #: admin.inc.php:475
475
  msgid "The cron job is missing. Please resave this page to add the job"
476
  msgstr ""
477
 
478
+ #: admin.inc.php:480
479
  msgid "Maintenance is turned off"
480
  msgstr ""
481
 
482
+ #: admin.inc.php:488
483
  #, fuzzy
484
  msgid "Save Options"
485
  msgstr "Настройки плагина:"
486
 
487
+ #: admin.inc.php:489
488
  #, fuzzy
489
  msgid "Default Options"
490
  msgstr "Настройки плагина:"
491
 
492
+ #: admin.inc.php:489
493
  msgid "Do you want to set options to Default?"
494
  msgstr "Сбросить настройки плагина?"
495
 
496
+ #: admin.inc.php:493
497
  msgid "Reset count"
498
  msgstr "Сбросить статистику"
499
 
500
+ #: admin.inc.php:496
501
  msgid ""
502
  "This cannot be reversed. Make sure that your database has been backed up "
503
  "before proceeding"
505
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
506
  "убедитесь, что у вас есть копия вашей базы данных!"
507
 
508
+ #: admin.inc.php:499
509
  #, fuzzy
510
  msgid "Reset Popular Posts"
511
  msgstr "Популярные записи"
512
 
513
+ #: admin.inc.php:499
514
  msgid "Are you sure you want to reset the popular posts?"
515
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
516
 
517
+ #: admin.inc.php:500
518
  #, fuzzy
519
  msgid "Reset Daily Popular Posts"
520
  msgstr "Популярные сегодня записи"
521
 
522
+ #: admin.inc.php:500
523
  msgid "Are you sure you want to reset the daily popular posts?"
524
  msgstr ""
525
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
526
 
527
+ #: admin.inc.php:501
528
  msgid "Clear duplicates"
529
  msgstr ""
530
 
531
+ #: admin.inc.php:501
532
  msgid "This will delete the duplicate entries in the tables. Proceed?"
533
  msgstr ""
534
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
535
 
536
+ #: admin.inc.php:544 admin.inc.php:929
537
  msgid "Popular Posts"
538
  msgstr "Популярные записи"
539
 
540
+ #: admin.inc.php:544 admin.inc.php:631
541
  msgid "Daily Popular Posts"
542
  msgstr "Популярные сегодня записи"
543
 
544
+ #: admin.inc.php:572
545
  msgid "Support the development"
546
  msgstr "Поддержать автора плагина"
547
 
548
+ #: admin.inc.php:580
549
  msgid "Enter amount in USD: "
550
  msgstr "Сколько вы готовы пожертвовать (в USD):"
551
 
552
+ #: admin.inc.php:584
553
  msgid "Send your donation to the author of"
554
  msgstr "Отправьте пожертвование автору"
555
 
556
+ #: admin.inc.php:590
557
  msgid "Follow us"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:596
561
  #, fuzzy
562
  msgid "Quick Links"
563
  msgstr "Полезные ссылки"
564
 
565
+ #: admin.inc.php:598
566
  #, fuzzy
567
  msgid "Top 10 plugin page"
568
  msgstr "страница плагина"
569
 
570
+ #: admin.inc.php:599
571
  msgid "Other plugins"
572
  msgstr "Другие плагины автора"
573
 
574
+ #: admin.inc.php:600
575
  msgid "Ajay's blog"
576
  msgstr "Блог Ajay"
577
 
578
+ #: admin.inc.php:601 top-10.php:1147
579
  msgid "Support"
580
  msgstr "Поддержка (англ.)"
581
 
582
+ #: admin.inc.php:605
583
  msgid "Recent developments"
584
  msgstr "Последние разработки"
585
 
586
+ #: admin.inc.php:622 admin.inc.php:625
587
  #, fuzzy
588
  msgid "Top 10 Settings"
589
  msgstr "Настроки плагина"
590
 
591
+ #: admin.inc.php:622
592
  msgid "Top 10"
593
  msgstr "Топ 10 записей"
594
 
595
+ #: admin.inc.php:628
596
  #, fuzzy
597
  msgid "Overall Popular Posts"
598
  msgstr "Посмотреть все Популярные записи"
599
 
600
+ #: admin.inc.php:799
601
  msgid "Results"
602
  msgstr "Результаты"
603
 
604
+ #: admin.inc.php:801 admin.inc.php:807
605
  msgid "of"
606
  msgstr "из"
607
 
608
+ #: admin.inc.php:805
609
  msgid "Page"
610
  msgstr "Страница"
611
 
612
+ #: admin.inc.php:819
613
  msgid "View Daily Popular Posts"
614
  msgstr "Посмотреть все Популярные сегодня записи"
615
 
616
+ #: admin.inc.php:822 admin.inc.php:835
617
  msgid "Results per-page:"
618
  msgstr "Результатов на страницу:"
619
 
620
+ #: admin.inc.php:832
621
  msgid "View Overall Popular Posts"
622
  msgstr "Посмотреть все Популярные записи"
623
 
624
+ #: admin.inc.php:861
625
  msgid "Previous"
626
  msgstr "Предыдущая страница"
627
 
628
+ #: admin.inc.php:889
629
  msgid "Next"
630
  msgstr "Следующая страница"
631
 
632
+ #: admin.inc.php:930
633
  msgid "Daily Popular"
634
  msgstr "Популярные сегодня записи"
635
 
636
+ #: admin.inc.php:946
637
  #, fuzzy
638
  msgid "Total Views"
639
  msgstr "Всего/Сегодня"
640
 
641
+ #: admin.inc.php:947
642
  #, fuzzy
643
  msgid "Today's Views"
644
  msgstr "Всего/Сегодня"
645
 
646
+ #: top-10.php:415
647
+ msgid " by "
648
  msgstr ""
649
 
650
+ #: top-10.php:501
651
  msgid "Display the posts popular this week"
652
  msgstr "Отображать списки популярных записей за неделю"
653
 
654
+ #: top-10.php:502
655
  #, fuzzy
656
  msgid "Popular Posts [Top 10]"
657
  msgstr "Популярные записи"
658
 
659
+ #: top-10.php:519
660
  msgid "Title"
661
  msgstr ""
662
 
663
+ #: top-10.php:524
664
  msgid "No. of posts"
665
  msgstr ""
666
 
667
+ #: top-10.php:529
668
  msgid "Overall"
669
  msgstr ""
670
 
671
+ #: top-10.php:530
672
  msgid "Custom time period (Enter below)"
673
  msgstr ""
674
 
675
+ #: top-10.php:535
676
  msgid "Range in number of days (applies only to custom option above)"
677
  msgstr ""
678
 
679
+ #: top-10.php:540
680
  #, fuzzy
681
  msgid " Show excerpt?"
682
  msgstr "Показывать текст записи в списке?"
683
 
684
+ #: top-10.php:545
685
  msgid " Show author?"
686
  msgstr ""
687
 
688
+ #: top-10.php:550
689
  #, fuzzy
690
  msgid " Show date?"
691
  msgstr "Показывать текст записи в списке?"
692
 
693
+ #: top-10.php:554
694
  #, fuzzy
695
  msgid "Thumbnail options"
696
  msgstr "Настройки превью к записям:"
697
 
698
+ #: top-10.php:556
699
  #, fuzzy
700
  msgid "Thumbnails inline, before title"
701
  msgstr "Отображать превью к записи сразу перед заголовком"
702
 
703
+ #: top-10.php:557
704
  #, fuzzy
705
  msgid "Thumbnails inline, after title"
706
  msgstr "Отображать превью к записи сразу после заголовка"
707
 
708
+ #: top-10.php:558
709
  #, fuzzy
710
  msgid "Only thumbnails, no text"
711
  msgstr "Отображать только превью, без текста"
712
 
713
+ #: top-10.php:559
714
  #, fuzzy
715
  msgid "No thumbnails, only text."
716
  msgstr "Отображать только текст, без превью"
717
 
718
+ #: top-10.php:564
719
  #, fuzzy
720
  msgid "Thumbnail height"
721
  msgstr "Настройки превью к записям:"
722
 
723
+ #: top-10.php:569
724
  #, fuzzy
725
  msgid "Thumbnail width"
726
  msgstr "Настройки превью к записям:"
727
 
728
+ #: top-10.php:670
729
  msgid "<h3>Popular Posts</h3>"
730
  msgstr "<h3>Популярные записи</h3>"
731
 
732
+ #: top-10.php:671
733
  msgid "<h3>Daily Popular</h3>"
734
  msgstr "<h3>Популярные сегодня записи</h3>"
735
 
736
+ #: top-10.php:672
737
  #, fuzzy
738
  msgid "No top posts yet"
739
  msgstr "Сбросить статистику популярных записей"
740
 
741
+ #: top-10.php:1113
742
  msgid "Once Weekly"
743
  msgstr ""
744
 
745
+ #: top-10.php:1114
746
  msgid "Once Fortnightly"
747
  msgstr ""
748
 
749
+ #: top-10.php:1115
750
  msgid "Once Monthly"
751
  msgstr ""
752
 
753
+ #: top-10.php:1135
754
  msgid "Settings"
755
  msgstr "Настроки плагина"
756
 
757
+ #: top-10.php:1148
758
  msgid "Donate"
759
  msgstr "Сделать пожертвование"
760
 
languages/tptn-sr_RS.mo ADDED
Binary file
languages/tptn-sr_RS.po ADDED
@@ -0,0 +1,837 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Top 10\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:06-0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
+ "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
9
+ "Language: en\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-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: admin.inc.php:101
19
+ msgid "Scheduled maintenance enabled / modified"
20
+ msgstr "Raspored održavanja omogućen modifikovan"
21
+
22
+ #: admin.inc.php:105
23
+ msgid "Scheduled maintenance disabled"
24
+ msgstr "Raspoed održavanja onemogućen"
25
+
26
+ #: admin.inc.php:122
27
+ msgid "Options saved successfully."
28
+ msgstr "Opcije uspešno sašuvane"
29
+
30
+ #: admin.inc.php:131
31
+ msgid "Options set to Default."
32
+ msgstr "Opcije podešene po Default-u."
33
+
34
+ #: admin.inc.php:137
35
+ msgid "Top 10 popular posts reset"
36
+ msgstr "Resetuj Top 10 popularnih postova"
37
+
38
+ #: admin.inc.php:143
39
+ msgid "Top 10 daily popular posts reset"
40
+ msgstr "Resetuj Top 10 dnevnih popularnih postova"
41
+
42
+ #: admin.inc.php:150
43
+ msgid "Duplicate rows cleaned from tables"
44
+ msgstr "Umnoži redove očišćene sa tabela"
45
+
46
+ #: admin.inc.php:171
47
+ msgid "General options"
48
+ msgstr "Opšta pitanja"
49
+
50
+ #: admin.inc.php:175
51
+ msgid "Enable Overall stats"
52
+ msgstr "Omogući statistiku svega"
53
+
54
+ #: admin.inc.php:180
55
+ msgid "Enable Daily stats"
56
+ msgstr "Omogući dnevne statistike"
57
+
58
+ #: admin.inc.php:185
59
+ msgid "W3 Total Cache fix:"
60
+ msgstr "W3 Total Cache fix:"
61
+
62
+ #: admin.inc.php:187
63
+ msgid ""
64
+ "This will try to prevent W3 Total Cache from caching the addcount script of "
65
+ "the plugin. Try toggling this option in case you find that our posts are not "
66
+ "tracked."
67
+ msgstr ""
68
+ "Ovo će pokušati da spreči W3 Total Cache od cachinga addcount scripta "
69
+ "plugina. Pokušajte da toglujete ovu opciju u slučaju da otkrijete da naši "
70
+ "postovi nisu praćeni."
71
+
72
+ #: admin.inc.php:191
73
+ msgid "Number of popular posts to display: "
74
+ msgstr "Broj popularnih postova za prikaz."
75
+
76
+ #: admin.inc.php:195
77
+ msgid "Daily Popular should contain views of how many days? "
78
+ msgstr "Dnevni popularni bi trebali da sadrže preglede od koliko dana?"
79
+
80
+ #: admin.inc.php:198
81
+ msgid "Post types to include in results (including custom post types)"
82
+ msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
83
+
84
+ #: admin.inc.php:209
85
+ msgid "List of post or page IDs to exclude from the results: "
86
+ msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
87
+
88
+ #: admin.inc.php:213
89
+ msgid "Exclude Categories: "
90
+ msgstr "Isključene kategorije"
91
+
92
+ #: admin.inc.php:228
93
+ msgid ""
94
+ "Comma separated list of category slugs. The field above has an autocomplete "
95
+ "so simply start typing in the starting letters and it will prompt you with "
96
+ "options"
97
+ msgstr ""
98
+ "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
99
+ "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
100
+
101
+ #: admin.inc.php:233
102
+ #, fuzzy
103
+ msgid "Display number of views on:"
104
+ msgstr "Afficher le nombre des visionnages du message?"
105
+
106
+ #: admin.inc.php:235
107
+ msgid "Posts"
108
+ msgstr "Postovi"
109
+
110
+ #: admin.inc.php:236
111
+ #, fuzzy
112
+ msgid "Pages"
113
+ msgstr "Page"
114
+
115
+ #: admin.inc.php:237
116
+ msgid "Home page"
117
+ msgstr "Početna stranica"
118
+
119
+ #: admin.inc.php:238
120
+ msgid "Feeds"
121
+ msgstr "Feeds"
122
+
123
+ #: admin.inc.php:239
124
+ msgid "Category archives"
125
+ msgstr "Kategorija arhiva"
126
+
127
+ #: admin.inc.php:240
128
+ msgid "Tag archives"
129
+ msgstr "Tag arhiva"
130
+
131
+ #: admin.inc.php:241
132
+ msgid "Other archives"
133
+ msgstr "Druge arhive"
134
+
135
+ #: admin.inc.php:242
136
+ msgid ""
137
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
138
+ "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
139
+ "you want it displayed"
140
+ msgstr ""
141
+ "Ako odlučite da onemogućite ovo, molim vas dodajte <code>&lt;?php if"
142
+ "(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
143
+ "template fajlu gde želite da bude prikazano. "
144
+
145
+ #: admin.inc.php:245
146
+ msgid "Always display latest post count"
147
+ msgstr "Uvek prikaži posldenje brojanje posta"
148
+
149
+ #: admin.inc.php:247
150
+ msgid ""
151
+ "This option uses JavaScript and will increase your page load time. Turn this "
152
+ "off if you are not using caching plugins or are OK with displaying older "
153
+ "cached counts. When you enable this option, the daily widget will not use "
154
+ "the options set there, but options will need to be set on this screen."
155
+ msgstr ""
156
+ "Ovu opciju koristi JavaScript i povećaće vreme ušitavanje vaše stranice. "
157
+ "Ugasite ovo ako ne koristite caching pluginove ili se slažete sa "
158
+ "prikazivanjem starijih cache brojanja. Kada omogućite ovu opciju, dnevni "
159
+ "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
160
+ "se podese na ovom ekranu."
161
+
162
+ #: admin.inc.php:250
163
+ msgid "Always display latest post count in the daily lists"
164
+ msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
165
+
166
+ #: admin.inc.php:252
167
+ #, fuzzy
168
+ msgid "This option uses JavaScript and will increase your page load time"
169
+ msgstr ""
170
+ "Rendre la liste des postes journaliers dynamiques? Cette option fait appel à "
171
+ "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
172
+ "la page"
173
+
174
+ #: admin.inc.php:255
175
+ msgid "Track visits of authors on their own posts?"
176
+ msgstr ""
177
+ "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
178
+ "posete autora na njihovim postovima?"
179
+
180
+ #: admin.inc.php:258
181
+ #, fuzzy
182
+ msgid "Track visits of admins?"
183
+ msgstr "Suivre les visites des auteurs de leurs propres messages?"
184
+
185
+ #: admin.inc.php:261
186
+ msgid "Display page views on Posts > All Posts in Admin"
187
+ msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
188
+
189
+ #: admin.inc.php:264
190
+ msgid "Link to Top 10 plugin page"
191
+ msgstr "Povežite se na Top 10 plugin stranicu"
192
+
193
+ #: admin.inc.php:266
194
+ #, fuzzy
195
+ msgid ""
196
+ "A link to the plugin is added as an extra list item to the list of popular "
197
+ "posts"
198
+ msgstr ""
199
+ "Le lien vers le plugin en qualité d'élément complémentaire de la liste dans "
200
+ "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
201
+ "mais nous vous y remercions!"
202
+
203
+ #: admin.inc.php:273
204
+ #, fuzzy
205
+ msgid "Output Options"
206
+ msgstr "Paramètres de sortie"
207
+
208
+ #: admin.inc.php:276
209
+ msgid "Format to display the count in: "
210
+ msgstr "Format za prikaz brojanja u:"
211
+
212
+ #: admin.inc.php:278
213
+ #, fuzzy
214
+ msgid ""
215
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
216
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
217
+ "display the overall count across all posts on the blog. e.g. the default "
218
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
219
+ msgstr ""
220
+ "Appliquer <code>%totalcount%</code> pour l'affichage de la quantité totale, "
221
+ "et code>%dailycount%</code> pour l'affichage des quantités journalières "
222
+ "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
223
+ "123 times, 23 visits today)</code>"
224
+
225
+ #: admin.inc.php:281
226
+ msgid "Title of popular posts: "
227
+ msgstr "Naslov popularnih postova:"
228
+
229
+ #: admin.inc.php:284
230
+ msgid "Title of daily popular posts: "
231
+ msgstr "Naslov popularnih dnevnih postova:"
232
+
233
+ #: admin.inc.php:287
234
+ msgid "When there are no posts, what should be shown?"
235
+ msgstr "Kada nema postova šta da prikažemo?"
236
+
237
+ #: admin.inc.php:291
238
+ msgid "Blank Output"
239
+ msgstr "Prazan izlaz"
240
+
241
+ #: admin.inc.php:295
242
+ msgid "Display:"
243
+ msgstr "Prikaz:"
244
+
245
+ #: admin.inc.php:299
246
+ msgid "Show post excerpt in list?"
247
+ msgstr "Pokaži post izvoda na listi?"
248
+
249
+ #: admin.inc.php:302
250
+ msgid "Length of excerpt (in words): "
251
+ msgstr "Dužina izvoda (u rečima):"
252
+
253
+ #: admin.inc.php:305
254
+ #, fuzzy
255
+ msgid "Show post author in list?"
256
+ msgstr "Afficher le fragment du message dans la liste?"
257
+
258
+ #: admin.inc.php:308
259
+ #, fuzzy
260
+ msgid "Show post date in list?"
261
+ msgstr "Afficher le fragment du message dans la liste?"
262
+
263
+ #: admin.inc.php:311
264
+ msgid "Limit post title length (in characters)"
265
+ msgstr "Limit dužine postova naslova (u karakterima)"
266
+
267
+ #: admin.inc.php:314
268
+ msgid "Display number of page views in popular lists?"
269
+ msgstr "Prikaži broj pregleda stranica u popularnim listama?"
270
+
271
+ #: admin.inc.php:317
272
+ msgid "Open links in new window"
273
+ msgstr "Otvori linkove u novim prozorima"
274
+
275
+ #: admin.inc.php:320
276
+ msgid "Add nofollow attribute to links in the list"
277
+ msgstr "Dodaj nofollow atribut linkovima u listi"
278
+
279
+ #: admin.inc.php:323
280
+ msgid "Exclude display of related posts on these posts / pages"
281
+ msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
282
+
283
+ #: admin.inc.php:326
284
+ msgid "Enter comma separated list of IDs. e.g. 188,320,500"
285
+ msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
286
+
287
+ #: admin.inc.php:329
288
+ msgid "Customize the output:"
289
+ msgstr "Sredite output:"
290
+
291
+ #: admin.inc.php:331
292
+ msgid "HTML to display before the list of posts: "
293
+ msgstr "HTML tza prikaz pre liste postova:"
294
+
295
+ #: admin.inc.php:334
296
+ msgid "HTML to display before each list item: "
297
+ msgstr "HTML za prikaz svake stavke sa liste:"
298
+
299
+ #: admin.inc.php:337
300
+ msgid "HTML to display after each list item: "
301
+ msgstr "HTML tza prikaz posle svake stavke sa liste:"
302
+
303
+ #: admin.inc.php:340
304
+ msgid "HTML to display after the list of posts: "
305
+ msgstr "HTML za prikaz posle liste postova:"
306
+
307
+ #: admin.inc.php:343
308
+ msgid "Post thumbnail options:"
309
+ msgstr "Post thumbnail opcije:"
310
+
311
+ #: admin.inc.php:345
312
+ msgid "Location of post thumbnail:"
313
+ msgstr "Lokacija posta thumbnaila:"
314
+
315
+ #: admin.inc.php:349
316
+ msgid "Display thumbnails inline with posts, before title"
317
+ msgstr "Prikaži thumbnails inline sa postovima pre naslova"
318
+
319
+ #: admin.inc.php:353
320
+ msgid "Display thumbnails inline with posts, after title"
321
+ msgstr "Prikaži thumbnails inline sa postovima posle naslova"
322
+
323
+ #: admin.inc.php:357
324
+ msgid "Display only thumbnails, no text"
325
+ msgstr "Prikaži samo thumbnails, bez teksta"
326
+
327
+ #: admin.inc.php:361
328
+ msgid "Do not display thumbnails, only text."
329
+ msgstr "Ne prikazujte thumbnails, samo tekst"
330
+
331
+ #: admin.inc.php:365
332
+ msgid "Width of the thumbnail: "
333
+ msgstr "Širina thumbnaila:"
334
+
335
+ #: admin.inc.php:368
336
+ msgid "Height of the thumbnail: "
337
+ msgstr "Visina thumbnaila:"
338
+
339
+ #: admin.inc.php:371
340
+ msgid "Style attributes / Width and Height HTML attributes:"
341
+ msgstr "Stil atributa /širina i visina HTML atributa:"
342
+
343
+ #: admin.inc.php:375
344
+ msgid ""
345
+ "Style attributes are used for width and height. <code>style=\"max-width:"
346
+ msgstr ""
347
+ "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
348
+
349
+ #: admin.inc.php:379
350
+ msgid ""
351
+ "HTML width and height attributes are used for width and height. <code>width="
352
+ "\""
353
+ msgstr ""
354
+ "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
355
+
356
+ #: admin.inc.php:383
357
+ msgid "Use timthumb to generate thumbnails? "
358
+ msgstr "Upotreba timthumb za generisanja thumbnails?"
359
+
360
+ #: admin.inc.php:386
361
+ msgid ""
362
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
363
+ "\">timthumb</a> will be used to generate thumbnails"
364
+ msgstr ""
365
+ "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
366
+ "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
367
+
368
+ #: admin.inc.php:389
369
+ #, fuzzy
370
+ msgid "Post thumbnail meta field name: "
371
+ msgstr "Options thumbnail des messages:"
372
+
373
+ #: admin.inc.php:392
374
+ msgid ""
375
+ "The value of this field should contain the image source and is set in the "
376
+ "<em>Add New Post</em> screen"
377
+ msgstr ""
378
+ "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
379
+ "<em>Add New Post</em> ekranu"
380
+
381
+ #: admin.inc.php:395
382
+ #, fuzzy
383
+ msgid ""
384
+ "If the postmeta is not set, then should the plugin extract the first image "
385
+ "from the post?"
386
+ msgstr ""
387
+ "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première "
388
+ "image du poste. Cela pourrait ralentir le chargement de votre poste, si la "
389
+ "première image de la résolution correspondante du fichier est de taille "
390
+ "supérieure"
391
+
392
+ #: admin.inc.php:398
393
+ #, fuzzy
394
+ msgid ""
395
+ "This could slow down the loading of your page if the first image in the "
396
+ "related posts is large in file-size"
397
+ msgstr ""
398
+ "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première "
399
+ "image du poste. Cela pourrait ralentir le chargement de votre poste, si la "
400
+ "première image de la résolution correspondante du fichier est de taille "
401
+ "supérieure"
402
+
403
+ #: admin.inc.php:401
404
+ msgid "Use default thumbnail? "
405
+ msgstr "Koristite default thumbnail?"
406
+
407
+ #: admin.inc.php:404
408
+ msgid ""
409
+ "If checked, when no thumbnail is found, show a default one from the URL "
410
+ "below. If not checked and no thumbnail is found, no image will be shown."
411
+ msgstr ""
412
+ "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
413
+ "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
414
+
415
+ #: admin.inc.php:407
416
+ msgid "Default thumbnail: "
417
+ msgstr "Default thumbnail:"
418
+
419
+ #: admin.inc.php:410
420
+ msgid ""
421
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
422
+ "then it will check the meta field. If this is not available, then it will "
423
+ "show the default image as specified above"
424
+ msgstr ""
425
+ "Plugin će prvo probveriti da li post sadrži thumbnail. Ako ne sadrži onda će "
426
+ "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
427
+ "sliku kao što je odredjeno iznad"
428
+
429
+ #: admin.inc.php:417
430
+ msgid "Custom Styles"
431
+ msgstr "Custom stilovi"
432
+
433
+ #: admin.inc.php:420
434
+ msgid "Custom CSS to add to header:"
435
+ msgstr "Custom CSS je dodat header-u"
436
+
437
+ #: admin.inc.php:423
438
+ msgid ""
439
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
440
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
441
+ "available CSS classes to style."
442
+ msgstr ""
443
+ "Nemojte uključivati <code>style</code> tagove. Proverite <a href=\"http://"
444
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
445
+ "dostupne CSS klase za stilizovanje."
446
+
447
+ #: admin.inc.php:430
448
+ msgid "Maintenance"
449
+ msgstr "Održavanje"
450
+
451
+ #: admin.inc.php:434
452
+ msgid ""
453
+ "Over time the Daily Top 10 database grows in size, which reduces the "
454
+ "performance of the plugin. Cleaning the database at regular intervals could "
455
+ "improve performance, especially on high traffic blogs."
456
+ msgstr ""
457
+ "Vremenom Dailz Top 10 baza podataka će se povećati, što smanjuje performanse "
458
+ "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
459
+ "performanse naročito na blogovima sa velikim saobraćajem."
460
+
461
+ #: admin.inc.php:435
462
+ msgid ""
463
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
464
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
465
+ "causes the daily posts table to reset."
466
+ msgstr ""
467
+ "Beleška: Kada je omogućen raspored održavanja, WordPress će pokrenuti "
468
+ "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
469
+ "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
470
+
471
+ #: admin.inc.php:438
472
+ msgid "Enable scheduled maintenance of daily tables:"
473
+ msgstr "Omogući raspored održavanja u dnevnim tabelama"
474
+
475
+ #: admin.inc.php:442
476
+ msgid "Time to run maintenance"
477
+ msgstr "Pokrenuti održavanje"
478
+
479
+ #: admin.inc.php:445
480
+ msgid "How often should the maintenance be run:"
481
+ msgstr "Održavanje ne treba često da se pokreće"
482
+
483
+ #: admin.inc.php:449
484
+ msgid "Daily"
485
+ msgstr "Dnevno"
486
+
487
+ #: admin.inc.php:453
488
+ msgid "Weekly"
489
+ msgstr "Nedeljno"
490
+
491
+ #: admin.inc.php:457
492
+ msgid "Fortnightly"
493
+ msgstr "Na dve nedelje"
494
+
495
+ #: admin.inc.php:461
496
+ msgid "Monthly"
497
+ msgstr "Mesečno"
498
+
499
+ #: admin.inc.php:470
500
+ msgid "The cron job has been scheduled. Maintenance will run "
501
+ msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
502
+
503
+ #: admin.inc.php:475
504
+ msgid "The cron job is missing. Please resave this page to add the job"
505
+ msgstr ""
506
+ "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
507
+ "dodali posao"
508
+
509
+ #: admin.inc.php:480
510
+ msgid "Maintenance is turned off"
511
+ msgstr "Održavanje je ugašeno"
512
+
513
+ #: admin.inc.php:488
514
+ #, fuzzy
515
+ msgid "Save Options"
516
+ msgstr "Options:"
517
+
518
+ #: admin.inc.php:489
519
+ #, fuzzy
520
+ msgid "Default Options"
521
+ msgstr "Paramètres de sortie"
522
+
523
+ #: admin.inc.php:489
524
+ msgid "Do you want to set options to Default?"
525
+ msgstr "Da li želite da postavite opcije na Default?"
526
+
527
+ #: admin.inc.php:493
528
+ msgid "Reset count"
529
+ msgstr "Resetuj brojanje"
530
+
531
+ #: admin.inc.php:496
532
+ msgid ""
533
+ "This cannot be reversed. Make sure that your database has been backed up "
534
+ "before proceeding"
535
+ msgstr ""
536
+ "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
537
+ "back up-u pre nego što nastavite"
538
+
539
+ #: admin.inc.php:499
540
+ #, fuzzy
541
+ msgid "Reset Popular Posts"
542
+ msgstr "Postes populaires"
543
+
544
+ #: admin.inc.php:499
545
+ msgid "Are you sure you want to reset the popular posts?"
546
+ msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
547
+
548
+ #: admin.inc.php:500
549
+ #, fuzzy
550
+ msgid "Reset Daily Popular Posts"
551
+ msgstr "Postes populaires journaliers"
552
+
553
+ #: admin.inc.php:500
554
+ msgid "Are you sure you want to reset the daily popular posts?"
555
+ msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
556
+
557
+ #: admin.inc.php:501
558
+ msgid "Clear duplicates"
559
+ msgstr "Obrišite duplikate"
560
+
561
+ #: admin.inc.php:501
562
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
563
+ msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
564
+
565
+ #: admin.inc.php:544 admin.inc.php:929
566
+ msgid "Popular Posts"
567
+ msgstr "Popularni postovi"
568
+
569
+ #: admin.inc.php:544 admin.inc.php:631
570
+ msgid "Daily Popular Posts"
571
+ msgstr "Dnevni popularni postovi"
572
+
573
+ #: admin.inc.php:572
574
+ msgid "Support the development"
575
+ msgstr "Podrška razvoju"
576
+
577
+ #: admin.inc.php:580
578
+ msgid "Enter amount in USD: "
579
+ msgstr "Unesite veličinu u USD:"
580
+
581
+ #: admin.inc.php:584
582
+ msgid "Send your donation to the author of"
583
+ msgstr "Pošalji vašu donaciju autoru"
584
+
585
+ #: admin.inc.php:590
586
+ msgid "Follow us"
587
+ msgstr "Pratite nas"
588
+
589
+ #: admin.inc.php:596
590
+ #, fuzzy
591
+ msgid "Quick Links"
592
+ msgstr "Liens rapides"
593
+
594
+ #: admin.inc.php:598
595
+ #, fuzzy
596
+ msgid "Top 10 plugin page"
597
+ msgstr "Page de plugin"
598
+
599
+ #: admin.inc.php:599
600
+ msgid "Other plugins"
601
+ msgstr "Brzi linkovi"
602
+
603
+ #: admin.inc.php:600
604
+ msgid "Ajay's blog"
605
+ msgstr "Ajayov blog"
606
+
607
+ #: admin.inc.php:601 top-10.php:1147
608
+ msgid "Support"
609
+ msgstr "Podrška"
610
+
611
+ #: admin.inc.php:605
612
+ msgid "Recent developments"
613
+ msgstr "Trenutni razvoj"
614
+
615
+ #: admin.inc.php:622 admin.inc.php:625
616
+ #, fuzzy
617
+ msgid "Top 10 Settings"
618
+ msgstr "Paramètres"
619
+
620
+ #: admin.inc.php:622
621
+ msgid "Top 10"
622
+ msgstr "Top 10"
623
+
624
+ #: admin.inc.php:628
625
+ #, fuzzy
626
+ msgid "Overall Popular Posts"
627
+ msgstr "Voir tous les postes populaires"
628
+
629
+ #: admin.inc.php:799
630
+ msgid "Results"
631
+ msgstr "rezultati"
632
+
633
+ #: admin.inc.php:801 admin.inc.php:807
634
+ msgid "of"
635
+ msgstr "od"
636
+
637
+ #: admin.inc.php:805
638
+ msgid "Page"
639
+ msgstr "Stranice"
640
+
641
+ #: admin.inc.php:819
642
+ msgid "View Daily Popular Posts"
643
+ msgstr "Pregledaj dnevne popularne postove"
644
+
645
+ #: admin.inc.php:822 admin.inc.php:835
646
+ msgid "Results per-page:"
647
+ msgstr "Rezultat po stranici:"
648
+
649
+ #: admin.inc.php:832
650
+ msgid "View Overall Popular Posts"
651
+ msgstr "Pregledaj sve popularne postove"
652
+
653
+ #: admin.inc.php:861
654
+ msgid "Previous"
655
+ msgstr "Prethodni"
656
+
657
+ #: admin.inc.php:889
658
+ msgid "Next"
659
+ msgstr "Sledeći"
660
+
661
+ #: admin.inc.php:930
662
+ msgid "Daily Popular"
663
+ msgstr "Dnevno popularno"
664
+
665
+ #: admin.inc.php:946
666
+ #, fuzzy
667
+ msgid "Total Views"
668
+ msgstr "Total/aujourd'hui visionnages"
669
+
670
+ #: admin.inc.php:947
671
+ #, fuzzy
672
+ msgid "Today's Views"
673
+ msgstr "Total/aujourd'hui visionnages"
674
+
675
+ #: top-10.php:415
676
+ msgid " by "
677
+ msgstr ""
678
+
679
+ #: top-10.php:501
680
+ msgid "Display the posts popular this week"
681
+ msgstr "Prikazati postove popularne ove nedelje"
682
+
683
+ #: top-10.php:502
684
+ #, fuzzy
685
+ msgid "Popular Posts [Top 10]"
686
+ msgstr "Postes populaires"
687
+
688
+ #: top-10.php:519
689
+ msgid "Title"
690
+ msgstr "Naslov"
691
+
692
+ #: top-10.php:524
693
+ msgid "No. of posts"
694
+ msgstr "Broj postova"
695
+
696
+ #: top-10.php:529
697
+ msgid "Overall"
698
+ msgstr "Sve ukupno"
699
+
700
+ #: top-10.php:530
701
+ msgid "Custom time period (Enter below)"
702
+ msgstr "Vremenski period (unesite ispod)"
703
+
704
+ #: top-10.php:535
705
+ msgid "Range in number of days (applies only to custom option above)"
706
+ msgstr "Raspon dana (odnosi se samo na iznad)"
707
+
708
+ #: top-10.php:540
709
+ #, fuzzy
710
+ msgid " Show excerpt?"
711
+ msgstr "Afficher le fragment du message dans la liste?"
712
+
713
+ #: top-10.php:545
714
+ msgid " Show author?"
715
+ msgstr "Prikaži autora?"
716
+
717
+ #: top-10.php:550
718
+ #, fuzzy
719
+ msgid " Show date?"
720
+ msgstr "Afficher le fragment du message dans la liste?"
721
+
722
+ #: top-10.php:554
723
+ #, fuzzy
724
+ msgid "Thumbnail options"
725
+ msgstr "Options thumbnail des messages:"
726
+
727
+ #: top-10.php:556
728
+ #, fuzzy
729
+ msgid "Thumbnails inline, before title"
730
+ msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
731
+
732
+ #: top-10.php:557
733
+ #, fuzzy
734
+ msgid "Thumbnails inline, after title"
735
+ msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
736
+
737
+ #: top-10.php:558
738
+ #, fuzzy
739
+ msgid "Only thumbnails, no text"
740
+ msgstr "Afficher uniquement le thumbnail, sans le texte"
741
+
742
+ #: top-10.php:559
743
+ #, fuzzy
744
+ msgid "No thumbnails, only text."
745
+ msgstr "Ne pas afficher le thumbnail, uniquement le texte"
746
+
747
+ #: top-10.php:564
748
+ #, fuzzy
749
+ msgid "Thumbnail height"
750
+ msgstr "Options thumbnail des messages:"
751
+
752
+ #: top-10.php:569
753
+ #, fuzzy
754
+ msgid "Thumbnail width"
755
+ msgstr "Options thumbnail des messages:"
756
+
757
+ #: top-10.php:670
758
+ msgid "<h3>Popular Posts</h3>"
759
+ msgstr "<h3>Popularni Postovi</h3>"
760
+
761
+ #: top-10.php:671
762
+ msgid "<h3>Daily Popular</h3>"
763
+ msgstr "<h3>Dnevni popularni</h3>"
764
+
765
+ #: top-10.php:672
766
+ #, fuzzy
767
+ msgid "No top posts yet"
768
+ msgstr "Annuler le top 10 des enregistrements les plus populaires"
769
+
770
+ #: top-10.php:1113
771
+ msgid "Once Weekly"
772
+ msgstr "Jednom nedeljno"
773
+
774
+ #: top-10.php:1114
775
+ msgid "Once Fortnightly"
776
+ msgstr "Jednom u dve nedelje"
777
+
778
+ #: top-10.php:1115
779
+ msgid "Once Monthly"
780
+ msgstr "Jednom mesečno"
781
+
782
+ #: top-10.php:1135
783
+ msgid "Settings"
784
+ msgstr "Postavke"
785
+
786
+ #: top-10.php:1148
787
+ msgid "Donate"
788
+ msgstr "Donirajte"
789
+
790
+ #~ msgid " Posted by "
791
+ #~ msgstr "Postovano od strane"
792
+
793
+ #, fuzzy
794
+ #~ msgid "Exclude Pages?"
795
+ #~ msgstr "Exclure les catégories:"
796
+
797
+ #~ msgid ""
798
+ #~ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
799
+ #~ "continue to be counted."
800
+ #~ msgstr ""
801
+ #~ "Éliminer d'affichage les pages du message populaire? Le nombre des "
802
+ #~ "visionnage des pages qui seront toujours prises en compte."
803
+
804
+ #~ msgid "Follow @ajaydsouza on Twitter"
805
+ #~ msgstr "Follow @ajaydsouza sur Twitter"
806
+
807
+ #~ msgid "Tables cleaned of duplicate rows"
808
+ #~ msgstr "Supprimer les lignes répétitives du tableau"
809
+
810
+ #~ msgid "Display number of views on pages?"
811
+ #~ msgstr "Afficher le nombre des visionnages sur les pages?"
812
+
813
+ #~ msgid ""
814
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
815
+ #~ "added with the count"
816
+ #~ msgstr ""
817
+ #~ "Afficher les visionnages des pages dans le rédacteur de messages / pages "
818
+ #~ "de WP-Admin? Une colonne supplémentaire avec graphe est rajoutée"
819
+
820
+ #~ msgid ""
821
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
822
+ #~ msgstr "Afficher meta field thumbnail, doit pointer sur l'image initiale:"
823
+
824
+ #~ msgid "Thumbnail dimensions:"
825
+ #~ msgstr "Dimension thumbnail:"
826
+
827
+ #~ msgid "Max width: "
828
+ #~ msgstr "Largeur maximale:"
829
+
830
+ #~ msgid "Max height: "
831
+ #~ msgstr "Hauteur maximale:"
832
+
833
+ #~ msgid "Top 10 "
834
+ #~ msgstr "Тоp 10"
835
+
836
+ #~ msgid "Display the posts popular today"
837
+ #~ msgstr "Afficher les postes populaires aujourd'hui"
languages/tptn-ua_UA.mo CHANGED
Binary file
languages/tptn-ua_UA.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-14 13:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
@@ -15,131 +15,131 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:103
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
- #: admin.inc.php:107
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Options saved successfully."
28
  msgstr "Установки збережені."
29
 
30
- #: admin.inc.php:133
31
  msgid "Options set to Default."
32
  msgstr "Установки скинуті."
33
 
34
- #: admin.inc.php:139
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Скинути статистику найпопулярніших записів"
37
 
38
- #: admin.inc.php:145
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
41
 
42
- #: admin.inc.php:152
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
- #: admin.inc.php:173
47
  msgid "General options"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:182
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:187
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:189
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid "Number of popular posts to display: "
71
  msgstr "Кількість Популярних записів у списку:"
72
 
73
- #: admin.inc.php:197
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
77
 
78
- #: admin.inc.php:200
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:211
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:215
87
  msgid "Exclude Categories: "
88
  msgstr "Виключити Категорії:"
89
 
90
- #: admin.inc.php:230
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
- #: admin.inc.php:235
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Показувати кількість переглядів запису?"
101
 
102
- #: admin.inc.php:237
103
  msgid "Posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:238
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Сторінка"
110
 
111
- #: admin.inc.php:239
112
  msgid "Home page"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
- #: admin.inc.php:241
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
- #: admin.inc.php:242
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
- #: admin.inc.php:243
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
- #: admin.inc.php:244
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
- #: admin.inc.php:247
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
- #: admin.inc.php:249
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
@@ -147,35 +147,35 @@ msgid ""
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
- #: admin.inc.php:252
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
- #: admin.inc.php:254
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
159
  "і це може збільшити час завантаження сторінок"
160
 
161
- #: admin.inc.php:257
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
164
 
165
- #: admin.inc.php:260
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
169
 
170
- #: admin.inc.php:263
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
- #: admin.inc.php:266
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
- #: admin.inc.php:268
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -184,18 +184,18 @@ msgstr ""
184
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
185
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
186
 
187
- #: admin.inc.php:275
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Установки плагіна:"
191
 
192
- #: admin.inc.php:278
193
  msgid "Format to display the count in: "
194
  msgstr ""
195
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
196
  "за день, за весь час для записів/сторінок:"
197
 
198
- #: admin.inc.php:280
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -207,139 +207,139 @@ msgstr ""
207
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
208
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
209
 
210
- #: admin.inc.php:283
211
  msgid "Title of popular posts: "
212
  msgstr "Заголовок списку Популярних записів:"
213
 
214
- #: admin.inc.php:286
215
  msgid "Title of daily popular posts: "
216
  msgstr "Заголовок списку Популярних сьогодні записів:"
217
 
218
- #: admin.inc.php:289
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
- #: admin.inc.php:293
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
- #: admin.inc.php:297
227
  msgid "Display:"
228
  msgstr ""
229
 
230
- #: admin.inc.php:301
231
  msgid "Show post excerpt in list?"
232
  msgstr "Показувати текст запису в списку?"
233
 
234
- #: admin.inc.php:304
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Довжина виведеного тексту (в словах):"
237
 
238
- #: admin.inc.php:307
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Показувати текст запису в списку?"
242
 
243
- #: admin.inc.php:310
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Показувати текст запису в списку?"
247
 
248
- #: admin.inc.php:313
249
  msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
- #: admin.inc.php:316
253
  msgid "Display number of page views in popular lists?"
254
  msgstr ""
255
  "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
256
 
257
- #: admin.inc.php:319
258
  msgid "Open links in new window"
259
  msgstr ""
260
 
261
- #: admin.inc.php:322
262
  msgid "Add nofollow attribute to links in the list"
263
  msgstr ""
264
 
265
- #: admin.inc.php:325
266
  msgid "Exclude display of related posts on these posts / pages"
267
  msgstr ""
268
 
269
- #: admin.inc.php:328
270
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
271
  msgstr ""
272
 
273
- #: admin.inc.php:331
274
  msgid "Customize the output:"
275
  msgstr "Установки оформлення списку:"
276
 
277
- #: admin.inc.php:333
278
  msgid "HTML to display before the list of posts: "
279
  msgstr "HTML-тег, який використовується перед списком:"
280
 
281
- #: admin.inc.php:336
282
  msgid "HTML to display before each list item: "
283
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
284
 
285
- #: admin.inc.php:339
286
  msgid "HTML to display after each list item: "
287
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
288
 
289
- #: admin.inc.php:342
290
  msgid "HTML to display after the list of posts: "
291
  msgstr "HTML-тег, який використовується після списку:"
292
 
293
- #: admin.inc.php:345
294
  msgid "Post thumbnail options:"
295
  msgstr "Установки превью до записів:"
296
 
297
- #: admin.inc.php:347
298
  msgid "Location of post thumbnail:"
299
  msgstr ""
300
 
301
- #: admin.inc.php:351
302
  #, fuzzy
303
  msgid "Display thumbnails inline with posts, before title"
304
  msgstr "Відображати і превью, і текст"
305
 
306
- #: admin.inc.php:355
307
  #, fuzzy
308
  msgid "Display thumbnails inline with posts, after title"
309
  msgstr "Відображати і превью, і текст"
310
 
311
- #: admin.inc.php:359
312
  msgid "Display only thumbnails, no text"
313
  msgstr "Показувати тільки превью, без тексту"
314
 
315
- #: admin.inc.php:363
316
  msgid "Do not display thumbnails, only text."
317
  msgstr "Показувати лише текст, без превью"
318
 
319
- #: admin.inc.php:367
320
  msgid "Width of the thumbnail: "
321
  msgstr ""
322
 
323
- #: admin.inc.php:370
324
  msgid "Height of the thumbnail: "
325
  msgstr ""
326
 
327
- #: admin.inc.php:373
328
  msgid "Style attributes / Width and Height HTML attributes:"
329
  msgstr ""
330
 
331
- #: admin.inc.php:377
332
  msgid ""
333
  "Style attributes are used for width and height. <code>style=\"max-width:"
334
  msgstr ""
335
 
336
- #: admin.inc.php:381
337
  msgid ""
338
  "HTML width and height attributes are used for width and height. <code>width="
339
  "\""
340
  msgstr ""
341
 
342
- #: admin.inc.php:385
343
  msgid "Use timthumb to generate thumbnails? "
344
  msgstr ""
345
 
@@ -349,18 +349,18 @@ msgid ""
349
  "\">timthumb</a> will be used to generate thumbnails"
350
  msgstr ""
351
 
352
- #: admin.inc.php:388
353
  #, fuzzy
354
  msgid "Post thumbnail meta field name: "
355
  msgstr "Установки превью до записів:"
356
 
357
- #: admin.inc.php:389
358
  msgid ""
359
  "The value of this field should contain the image source and is set in the "
360
  "<em>Add New Post</em> screen"
361
  msgstr ""
362
 
363
- #: admin.inc.php:391
364
  #, fuzzy
365
  msgid ""
366
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -370,7 +370,7 @@ msgstr ""
370
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
371
  "так як буде створюватися зменшена копія зображення"
372
 
373
- #: admin.inc.php:392
374
  #, fuzzy
375
  msgid ""
376
  "This could slow down the loading of your page if the first image in the "
@@ -380,21 +380,21 @@ msgstr ""
380
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
381
  "так як буде створюватися зменшена копія зображення"
382
 
383
- #: admin.inc.php:394
384
  msgid "Use default thumbnail? "
385
  msgstr ""
386
 
387
- #: admin.inc.php:395
388
  msgid ""
389
  "If checked, when no thumbnail is found, show a default one from the URL "
390
  "below. If not checked and no thumbnail is found, no image will be shown."
391
  msgstr ""
392
 
393
- #: admin.inc.php:397
394
  msgid "Default thumbnail: "
395
  msgstr ""
396
 
397
- #: admin.inc.php:398
398
  #, fuzzy
399
  msgid ""
400
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -405,98 +405,98 @@ msgstr ""
405
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
406
  "замовчунням:"
407
 
408
- #: admin.inc.php:404
409
  msgid "Custom Styles"
410
  msgstr ""
411
 
412
- #: admin.inc.php:407
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
- #: admin.inc.php:410
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
420
  "available CSS classes to style."
421
  msgstr ""
422
 
423
- #: admin.inc.php:417
424
  msgid "Maintenance"
425
  msgstr ""
426
 
427
- #: admin.inc.php:421
428
  msgid ""
429
  "Over time the Daily Top 10 database grows in size, which reduces the "
430
  "performance of the plugin. Cleaning the database at regular intervals could "
431
  "improve performance, especially on high traffic blogs."
432
  msgstr ""
433
 
434
- #: admin.inc.php:422
435
  msgid ""
436
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
437
  "everytime the job is rescheduled (i.e. you change the settings below). This "
438
  "causes the daily posts table to reset."
439
  msgstr ""
440
 
441
- #: admin.inc.php:425
442
  msgid "Enable scheduled maintenance of daily tables:"
443
  msgstr ""
444
 
445
- #: admin.inc.php:429
446
  msgid "Time to run maintenance"
447
  msgstr ""
448
 
449
- #: admin.inc.php:432
450
  msgid "How often should the maintenance be run:"
451
  msgstr ""
452
 
453
- #: admin.inc.php:436
454
  msgid "Daily"
455
  msgstr ""
456
 
457
- #: admin.inc.php:440
458
  msgid "Weekly"
459
  msgstr ""
460
 
461
- #: admin.inc.php:444
462
  msgid "Fortnightly"
463
  msgstr ""
464
 
465
- #: admin.inc.php:448
466
  msgid "Monthly"
467
  msgstr ""
468
 
469
- #: admin.inc.php:457
470
  msgid "The cron job has been scheduled. Maintenance will run "
471
  msgstr ""
472
 
473
- #: admin.inc.php:462
474
  msgid "The cron job is missing. Please resave this page to add the job"
475
  msgstr ""
476
 
477
- #: admin.inc.php:467
478
  msgid "Maintenance is turned off"
479
  msgstr ""
480
 
481
- #: admin.inc.php:475
482
  #, fuzzy
483
  msgid "Save Options"
484
  msgstr "Установки плагіна:"
485
 
486
- #: admin.inc.php:476
487
  #, fuzzy
488
  msgid "Default Options"
489
  msgstr "Установки плагіна:"
490
 
491
- #: admin.inc.php:476
492
  msgid "Do you want to set options to Default?"
493
  msgstr "Скинути налаштування плагіна?"
494
 
495
- #: admin.inc.php:480
496
  msgid "Reset count"
497
  msgstr "Скинути статистику"
498
 
499
- #: admin.inc.php:483
500
  msgid ""
501
  "This cannot be reversed. Make sure that your database has been backed up "
502
  "before proceeding"
@@ -504,255 +504,255 @@ msgstr ""
504
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
505
  "переконайтесь, що у вас є копія вашої бази даних!"
506
 
507
- #: admin.inc.php:486
508
  #, fuzzy
509
  msgid "Reset Popular Posts"
510
  msgstr "Популярні записи"
511
 
512
- #: admin.inc.php:486
513
  msgid "Are you sure you want to reset the popular posts?"
514
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
515
 
516
- #: admin.inc.php:487
517
  #, fuzzy
518
  msgid "Reset Daily Popular Posts"
519
  msgstr "Популярні сьогодні записи"
520
 
521
- #: admin.inc.php:487
522
  msgid "Are you sure you want to reset the daily popular posts?"
523
  msgstr ""
524
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
525
 
526
- #: admin.inc.php:488
527
  msgid "Clear duplicates"
528
  msgstr ""
529
 
530
- #: admin.inc.php:488
531
  msgid "This will delete the duplicate entries in the tables. Proceed?"
532
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
533
 
534
- #: admin.inc.php:531 admin.inc.php:906
535
  msgid "Popular Posts"
536
  msgstr "Популярні записи"
537
 
538
- #: admin.inc.php:531 admin.inc.php:618
539
  msgid "Daily Popular Posts"
540
  msgstr "Популярні сьогодні записи"
541
 
542
- #: admin.inc.php:559
543
  msgid "Support the development"
544
  msgstr "Підтримати автора плагіна"
545
 
546
- #: admin.inc.php:567
547
  msgid "Enter amount in USD: "
548
  msgstr "Скільки ви готові пожертвувати (в USD):"
549
 
550
- #: admin.inc.php:571
551
  msgid "Send your donation to the author of"
552
  msgstr "Відправте пожертву автору"
553
 
554
- #: admin.inc.php:577
555
  msgid "Follow us"
556
  msgstr ""
557
 
558
- #: admin.inc.php:583
559
  #, fuzzy
560
  msgid "Quick Links"
561
  msgstr "Корисні посилання"
562
 
563
- #: admin.inc.php:585
564
  #, fuzzy
565
  msgid "Top 10 plugin page"
566
  msgstr "Сторінка плагіна"
567
 
568
- #: admin.inc.php:586
569
  msgid "Other plugins"
570
  msgstr "Інші плагіни автора"
571
 
572
- #: admin.inc.php:587
573
  msgid "Ajay's blog"
574
  msgstr "Блог Ajay"
575
 
576
- #: admin.inc.php:588 top-10.php:1094
577
  msgid "Support"
578
  msgstr "Підтримка (англ.)"
579
 
580
- #: admin.inc.php:592
581
  msgid "Recent developments"
582
  msgstr "Останні розробки"
583
 
584
- #: admin.inc.php:609 admin.inc.php:612
585
  #, fuzzy
586
  msgid "Top 10 Settings"
587
  msgstr "Налаштування плагіна"
588
 
589
- #: admin.inc.php:609
590
  msgid "Top 10"
591
  msgstr "Топ 10 записів"
592
 
593
- #: admin.inc.php:615
594
  #, fuzzy
595
  msgid "Overall Popular Posts"
596
  msgstr "Подивитися всі Популярні записи"
597
 
598
- #: admin.inc.php:786
599
  msgid "Results"
600
  msgstr "Результати"
601
 
602
- #: admin.inc.php:788 admin.inc.php:794
603
  msgid "of"
604
  msgstr "з"
605
 
606
- #: admin.inc.php:792
607
  msgid "Page"
608
  msgstr "Сторінка"
609
 
610
- #: admin.inc.php:806
611
  msgid "View Daily Popular Posts"
612
  msgstr "Подивитися всі Популярні сьогодні записи"
613
 
614
- #: admin.inc.php:809 admin.inc.php:822
615
  msgid "Results per-page:"
616
  msgstr "Результатів на сторінку:"
617
 
618
- #: admin.inc.php:819
619
  msgid "View Overall Popular Posts"
620
  msgstr "Подивитися всі Популярні записи"
621
 
622
- #: admin.inc.php:848
623
  msgid "Previous"
624
  msgstr "Попередня сторінка"
625
 
626
- #: admin.inc.php:866
627
  msgid "Next"
628
  msgstr "Наступна сторінка"
629
 
630
- #: admin.inc.php:907
631
  msgid "Daily Popular"
632
  msgstr "Популярні сьогодні записи"
633
 
634
- #: admin.inc.php:923
635
  #, fuzzy
636
  msgid "Total Views"
637
  msgstr "Всього/Сьогодні"
638
 
639
- #: admin.inc.php:924
640
  #, fuzzy
641
  msgid "Today's Views"
642
  msgstr "Всього/Сьогодні"
643
 
644
- #: top-10.php:366
645
- msgid " Posted by "
646
  msgstr ""
647
 
648
- #: top-10.php:448
649
  msgid "Display the posts popular this week"
650
  msgstr ""
651
 
652
- #: top-10.php:449
653
  #, fuzzy
654
  msgid "Popular Posts [Top 10]"
655
  msgstr "Популярні записи"
656
 
657
- #: top-10.php:466
658
  msgid "Title"
659
  msgstr ""
660
 
661
- #: top-10.php:471
662
  msgid "No. of posts"
663
  msgstr ""
664
 
665
- #: top-10.php:476
666
  msgid "Overall"
667
  msgstr ""
668
 
669
- #: top-10.php:477
670
  msgid "Custom time period (Enter below)"
671
  msgstr ""
672
 
673
- #: top-10.php:482
674
  msgid "Range in number of days (applies only to custom option above)"
675
  msgstr ""
676
 
677
- #: top-10.php:487
678
  #, fuzzy
679
  msgid " Show excerpt?"
680
  msgstr "Показувати текст запису в списку?"
681
 
682
- #: top-10.php:492
683
  msgid " Show author?"
684
  msgstr ""
685
 
686
- #: top-10.php:497
687
  #, fuzzy
688
  msgid " Show date?"
689
  msgstr "Показувати текст запису в списку?"
690
 
691
- #: top-10.php:501
692
  #, fuzzy
693
  msgid "Thumbnail options"
694
  msgstr "Установки превью до записів:"
695
 
696
- #: top-10.php:503
697
  #, fuzzy
698
  msgid "Thumbnails inline, before title"
699
  msgstr "Відображати і превью, і текст"
700
 
701
- #: top-10.php:504
702
  #, fuzzy
703
  msgid "Thumbnails inline, after title"
704
  msgstr "Відображати і превью, і текст"
705
 
706
- #: top-10.php:505
707
  #, fuzzy
708
  msgid "Only thumbnails, no text"
709
  msgstr "Показувати тільки превью, без тексту"
710
 
711
- #: top-10.php:506
712
  #, fuzzy
713
  msgid "No thumbnails, only text."
714
  msgstr "Показувати лише текст, без превью"
715
 
716
- #: top-10.php:511
717
  #, fuzzy
718
  msgid "Thumbnail height"
719
  msgstr "Установки превью до записів:"
720
 
721
- #: top-10.php:516
722
  #, fuzzy
723
  msgid "Thumbnail width"
724
  msgstr "Установки превью до записів:"
725
 
726
- #: top-10.php:617
727
  msgid "<h3>Popular Posts</h3>"
728
  msgstr "<h3>Популярні записи</h3>"
729
 
730
- #: top-10.php:618
731
  msgid "<h3>Daily Popular</h3>"
732
  msgstr "<h3>Популярні сьогодні записи</h3>"
733
 
734
- #: top-10.php:619
735
  #, fuzzy
736
  msgid "No top posts yet"
737
  msgstr "Скинути статистику найпопулярніших записів"
738
 
739
- #: top-10.php:1060
740
  msgid "Once Weekly"
741
  msgstr ""
742
 
743
- #: top-10.php:1061
744
  msgid "Once Fortnightly"
745
  msgstr ""
746
 
747
- #: top-10.php:1062
748
  msgid "Once Monthly"
749
  msgstr ""
750
 
751
- #: top-10.php:1082
752
  msgid "Settings"
753
  msgstr "Налаштування плагіна"
754
 
755
- #: top-10.php:1095
756
  msgid "Donate"
757
  msgstr "Зробити внесок"
758
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-26 22:07-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:101
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:105
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:122
27
  msgid "Options saved successfully."
28
  msgstr "Установки збережені."
29
 
30
+ #: admin.inc.php:131
31
  msgid "Options set to Default."
32
  msgstr "Установки скинуті."
33
 
34
+ #: admin.inc.php:137
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Скинути статистику найпопулярніших записів"
37
 
38
+ #: admin.inc.php:143
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
41
 
42
+ #: admin.inc.php:150
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:171
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:175
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:180
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:185
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:187
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
+ #: admin.inc.php:191
70
  msgid "Number of popular posts to display: "
71
  msgstr "Кількість Популярних записів у списку:"
72
 
73
+ #: admin.inc.php:195
74
  msgid "Daily Popular should contain views of how many days? "
75
  msgstr ""
76
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
77
 
78
+ #: admin.inc.php:198
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:209
83
  msgid "List of post or page IDs to exclude from the results: "
84
  msgstr ""
85
 
86
+ #: admin.inc.php:213
87
  msgid "Exclude Categories: "
88
  msgstr "Виключити Категорії:"
89
 
90
+ #: admin.inc.php:228
91
  msgid ""
92
  "Comma separated list of category slugs. The field above has an autocomplete "
93
  "so simply start typing in the starting letters and it will prompt you with "
94
  "options"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:233
98
  #, fuzzy
99
  msgid "Display number of views on:"
100
  msgstr "Показувати кількість переглядів запису?"
101
 
102
+ #: admin.inc.php:235
103
  msgid "Posts"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:236
107
  #, fuzzy
108
  msgid "Pages"
109
  msgstr "Сторінка"
110
 
111
+ #: admin.inc.php:237
112
  msgid "Home page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:238
116
  msgid "Feeds"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:239
120
  msgid "Category archives"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:240
124
  msgid "Tag archives"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:241
128
  msgid "Other archives"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:242
132
  msgid ""
133
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
134
  "('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your template file where "
135
  "you want it displayed"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:245
139
  msgid "Always display latest post count"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:247
143
  msgid ""
144
  "This option uses JavaScript and will increase your page load time. Turn this "
145
  "off if you are not using caching plugins or are OK with displaying older "
147
  "the options set there, but options will need to be set on this screen."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:250
151
  msgid "Always display latest post count in the daily lists"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:252
155
  #, fuzzy
156
  msgid "This option uses JavaScript and will increase your page load time"
157
  msgstr ""
158
  "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
159
  "і це може збільшити час завантаження сторінок"
160
 
161
+ #: admin.inc.php:255
162
  msgid "Track visits of authors on their own posts?"
163
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
164
 
165
+ #: admin.inc.php:258
166
  #, fuzzy
167
  msgid "Track visits of admins?"
168
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
169
 
170
+ #: admin.inc.php:261
171
  msgid "Display page views on Posts > All Posts in Admin"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:264
175
  msgid "Link to Top 10 plugin page"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:266
179
  #, fuzzy
180
  msgid ""
181
  "A link to the plugin is added as an extra list item to the list of popular "
184
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
185
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
186
 
187
+ #: admin.inc.php:273
188
  #, fuzzy
189
  msgid "Output Options"
190
  msgstr "Установки плагіна:"
191
 
192
+ #: admin.inc.php:276
193
  msgid "Format to display the count in: "
194
  msgstr ""
195
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
196
  "за день, за весь час для записів/сторінок:"
197
 
198
+ #: admin.inc.php:278
199
  #, fuzzy
200
  msgid ""
201
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
207
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
208
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
209
 
210
+ #: admin.inc.php:281
211
  msgid "Title of popular posts: "
212
  msgstr "Заголовок списку Популярних записів:"
213
 
214
+ #: admin.inc.php:284
215
  msgid "Title of daily popular posts: "
216
  msgstr "Заголовок списку Популярних сьогодні записів:"
217
 
218
+ #: admin.inc.php:287
219
  msgid "When there are no posts, what should be shown?"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:291
223
  msgid "Blank Output"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:295
227
  msgid "Display:"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:299
231
  msgid "Show post excerpt in list?"
232
  msgstr "Показувати текст запису в списку?"
233
 
234
+ #: admin.inc.php:302
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Довжина виведеного тексту (в словах):"
237
 
238
+ #: admin.inc.php:305
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Показувати текст запису в списку?"
242
 
243
+ #: admin.inc.php:308
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Показувати текст запису в списку?"
247
 
248
+ #: admin.inc.php:311
249
  msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:314
253
  msgid "Display number of page views in popular lists?"
254
  msgstr ""
255
  "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
256
 
257
+ #: admin.inc.php:317
258
  msgid "Open links in new window"
259
  msgstr ""
260
 
261
+ #: admin.inc.php:320
262
  msgid "Add nofollow attribute to links in the list"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:323
266
  msgid "Exclude display of related posts on these posts / pages"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:326
270
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
271
  msgstr ""
272
 
273
+ #: admin.inc.php:329
274
  msgid "Customize the output:"
275
  msgstr "Установки оформлення списку:"
276
 
277
+ #: admin.inc.php:331
278
  msgid "HTML to display before the list of posts: "
279
  msgstr "HTML-тег, який використовується перед списком:"
280
 
281
+ #: admin.inc.php:334
282
  msgid "HTML to display before each list item: "
283
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
284
 
285
+ #: admin.inc.php:337
286
  msgid "HTML to display after each list item: "
287
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
288
 
289
+ #: admin.inc.php:340
290
  msgid "HTML to display after the list of posts: "
291
  msgstr "HTML-тег, який використовується після списку:"
292
 
293
+ #: admin.inc.php:343
294
  msgid "Post thumbnail options:"
295
  msgstr "Установки превью до записів:"
296
 
297
+ #: admin.inc.php:345
298
  msgid "Location of post thumbnail:"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:349
302
  #, fuzzy
303
  msgid "Display thumbnails inline with posts, before title"
304
  msgstr "Відображати і превью, і текст"
305
 
306
+ #: admin.inc.php:353
307
  #, fuzzy
308
  msgid "Display thumbnails inline with posts, after title"
309
  msgstr "Відображати і превью, і текст"
310
 
311
+ #: admin.inc.php:357
312
  msgid "Display only thumbnails, no text"
313
  msgstr "Показувати тільки превью, без тексту"
314
 
315
+ #: admin.inc.php:361
316
  msgid "Do not display thumbnails, only text."
317
  msgstr "Показувати лише текст, без превью"
318
 
319
+ #: admin.inc.php:365
320
  msgid "Width of the thumbnail: "
321
  msgstr ""
322
 
323
+ #: admin.inc.php:368
324
  msgid "Height of the thumbnail: "
325
  msgstr ""
326
 
327
+ #: admin.inc.php:371
328
  msgid "Style attributes / Width and Height HTML attributes:"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:375
332
  msgid ""
333
  "Style attributes are used for width and height. <code>style=\"max-width:"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:379
337
  msgid ""
338
  "HTML width and height attributes are used for width and height. <code>width="
339
  "\""
340
  msgstr ""
341
 
342
+ #: admin.inc.php:383
343
  msgid "Use timthumb to generate thumbnails? "
344
  msgstr ""
345
 
349
  "\">timthumb</a> will be used to generate thumbnails"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:389
353
  #, fuzzy
354
  msgid "Post thumbnail meta field name: "
355
  msgstr "Установки превью до записів:"
356
 
357
+ #: admin.inc.php:392
358
  msgid ""
359
  "The value of this field should contain the image source and is set in the "
360
  "<em>Add New Post</em> screen"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:395
364
  #, fuzzy
365
  msgid ""
366
  "If the postmeta is not set, then should the plugin extract the first image "
370
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
371
  "так як буде створюватися зменшена копія зображення"
372
 
373
+ #: admin.inc.php:398
374
  #, fuzzy
375
  msgid ""
376
  "This could slow down the loading of your page if the first image in the "
380
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
381
  "так як буде створюватися зменшена копія зображення"
382
 
383
+ #: admin.inc.php:401
384
  msgid "Use default thumbnail? "
385
  msgstr ""
386
 
387
+ #: admin.inc.php:404
388
  msgid ""
389
  "If checked, when no thumbnail is found, show a default one from the URL "
390
  "below. If not checked and no thumbnail is found, no image will be shown."
391
  msgstr ""
392
 
393
+ #: admin.inc.php:407
394
  msgid "Default thumbnail: "
395
  msgstr ""
396
 
397
+ #: admin.inc.php:410
398
  #, fuzzy
399
  msgid ""
400
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
405
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
406
  "замовчунням:"
407
 
408
+ #: admin.inc.php:417
409
  msgid "Custom Styles"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:420
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:423
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
420
  "available CSS classes to style."
421
  msgstr ""
422
 
423
+ #: admin.inc.php:430
424
  msgid "Maintenance"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:434
428
  msgid ""
429
  "Over time the Daily Top 10 database grows in size, which reduces the "
430
  "performance of the plugin. Cleaning the database at regular intervals could "
431
  "improve performance, especially on high traffic blogs."
432
  msgstr ""
433
 
434
+ #: admin.inc.php:435
435
  msgid ""
436
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
437
  "everytime the job is rescheduled (i.e. you change the settings below). This "
438
  "causes the daily posts table to reset."
439
  msgstr ""
440
 
441
+ #: admin.inc.php:438
442
  msgid "Enable scheduled maintenance of daily tables:"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:442
446
  msgid "Time to run maintenance"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:445
450
  msgid "How often should the maintenance be run:"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:449
454
  msgid "Daily"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:453
458
  msgid "Weekly"
459
  msgstr ""
460
 
461
+ #: admin.inc.php:457
462
  msgid "Fortnightly"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:461
466
  msgid "Monthly"
467
  msgstr ""
468
 
469
+ #: admin.inc.php:470
470
  msgid "The cron job has been scheduled. Maintenance will run "
471
  msgstr ""
472
 
473
+ #: admin.inc.php:475
474
  msgid "The cron job is missing. Please resave this page to add the job"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:480
478
  msgid "Maintenance is turned off"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:488
482
  #, fuzzy
483
  msgid "Save Options"
484
  msgstr "Установки плагіна:"
485
 
486
+ #: admin.inc.php:489
487
  #, fuzzy
488
  msgid "Default Options"
489
  msgstr "Установки плагіна:"
490
 
491
+ #: admin.inc.php:489
492
  msgid "Do you want to set options to Default?"
493
  msgstr "Скинути налаштування плагіна?"
494
 
495
+ #: admin.inc.php:493
496
  msgid "Reset count"
497
  msgstr "Скинути статистику"
498
 
499
+ #: admin.inc.php:496
500
  msgid ""
501
  "This cannot be reversed. Make sure that your database has been backed up "
502
  "before proceeding"
504
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
505
  "переконайтесь, що у вас є копія вашої бази даних!"
506
 
507
+ #: admin.inc.php:499
508
  #, fuzzy
509
  msgid "Reset Popular Posts"
510
  msgstr "Популярні записи"
511
 
512
+ #: admin.inc.php:499
513
  msgid "Are you sure you want to reset the popular posts?"
514
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
515
 
516
+ #: admin.inc.php:500
517
  #, fuzzy
518
  msgid "Reset Daily Popular Posts"
519
  msgstr "Популярні сьогодні записи"
520
 
521
+ #: admin.inc.php:500
522
  msgid "Are you sure you want to reset the daily popular posts?"
523
  msgstr ""
524
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
525
 
526
+ #: admin.inc.php:501
527
  msgid "Clear duplicates"
528
  msgstr ""
529
 
530
+ #: admin.inc.php:501
531
  msgid "This will delete the duplicate entries in the tables. Proceed?"
532
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
533
 
534
+ #: admin.inc.php:544 admin.inc.php:929
535
  msgid "Popular Posts"
536
  msgstr "Популярні записи"
537
 
538
+ #: admin.inc.php:544 admin.inc.php:631
539
  msgid "Daily Popular Posts"
540
  msgstr "Популярні сьогодні записи"
541
 
542
+ #: admin.inc.php:572
543
  msgid "Support the development"
544
  msgstr "Підтримати автора плагіна"
545
 
546
+ #: admin.inc.php:580
547
  msgid "Enter amount in USD: "
548
  msgstr "Скільки ви готові пожертвувати (в USD):"
549
 
550
+ #: admin.inc.php:584
551
  msgid "Send your donation to the author of"
552
  msgstr "Відправте пожертву автору"
553
 
554
+ #: admin.inc.php:590
555
  msgid "Follow us"
556
  msgstr ""
557
 
558
+ #: admin.inc.php:596
559
  #, fuzzy
560
  msgid "Quick Links"
561
  msgstr "Корисні посилання"
562
 
563
+ #: admin.inc.php:598
564
  #, fuzzy
565
  msgid "Top 10 plugin page"
566
  msgstr "Сторінка плагіна"
567
 
568
+ #: admin.inc.php:599
569
  msgid "Other plugins"
570
  msgstr "Інші плагіни автора"
571
 
572
+ #: admin.inc.php:600
573
  msgid "Ajay's blog"
574
  msgstr "Блог Ajay"
575
 
576
+ #: admin.inc.php:601 top-10.php:1147
577
  msgid "Support"
578
  msgstr "Підтримка (англ.)"
579
 
580
+ #: admin.inc.php:605
581
  msgid "Recent developments"
582
  msgstr "Останні розробки"
583
 
584
+ #: admin.inc.php:622 admin.inc.php:625
585
  #, fuzzy
586
  msgid "Top 10 Settings"
587
  msgstr "Налаштування плагіна"
588
 
589
+ #: admin.inc.php:622
590
  msgid "Top 10"
591
  msgstr "Топ 10 записів"
592
 
593
+ #: admin.inc.php:628
594
  #, fuzzy
595
  msgid "Overall Popular Posts"
596
  msgstr "Подивитися всі Популярні записи"
597
 
598
+ #: admin.inc.php:799
599
  msgid "Results"
600
  msgstr "Результати"
601
 
602
+ #: admin.inc.php:801 admin.inc.php:807
603
  msgid "of"
604
  msgstr "з"
605
 
606
+ #: admin.inc.php:805
607
  msgid "Page"
608
  msgstr "Сторінка"
609
 
610
+ #: admin.inc.php:819
611
  msgid "View Daily Popular Posts"
612
  msgstr "Подивитися всі Популярні сьогодні записи"
613
 
614
+ #: admin.inc.php:822 admin.inc.php:835
615
  msgid "Results per-page:"
616
  msgstr "Результатів на сторінку:"
617
 
618
+ #: admin.inc.php:832
619
  msgid "View Overall Popular Posts"
620
  msgstr "Подивитися всі Популярні записи"
621
 
622
+ #: admin.inc.php:861
623
  msgid "Previous"
624
  msgstr "Попередня сторінка"
625
 
626
+ #: admin.inc.php:889
627
  msgid "Next"
628
  msgstr "Наступна сторінка"
629
 
630
+ #: admin.inc.php:930
631
  msgid "Daily Popular"
632
  msgstr "Популярні сьогодні записи"
633
 
634
+ #: admin.inc.php:946
635
  #, fuzzy
636
  msgid "Total Views"
637
  msgstr "Всього/Сьогодні"
638
 
639
+ #: admin.inc.php:947
640
  #, fuzzy
641
  msgid "Today's Views"
642
  msgstr "Всього/Сьогодні"
643
 
644
+ #: top-10.php:415
645
+ msgid " by "
646
  msgstr ""
647
 
648
+ #: top-10.php:501
649
  msgid "Display the posts popular this week"
650
  msgstr ""
651
 
652
+ #: top-10.php:502
653
  #, fuzzy
654
  msgid "Popular Posts [Top 10]"
655
  msgstr "Популярні записи"
656
 
657
+ #: top-10.php:519
658
  msgid "Title"
659
  msgstr ""
660
 
661
+ #: top-10.php:524
662
  msgid "No. of posts"
663
  msgstr ""
664
 
665
+ #: top-10.php:529
666
  msgid "Overall"
667
  msgstr ""
668
 
669
+ #: top-10.php:530
670
  msgid "Custom time period (Enter below)"
671
  msgstr ""
672
 
673
+ #: top-10.php:535
674
  msgid "Range in number of days (applies only to custom option above)"
675
  msgstr ""
676
 
677
+ #: top-10.php:540
678
  #, fuzzy
679
  msgid " Show excerpt?"
680
  msgstr "Показувати текст запису в списку?"
681
 
682
+ #: top-10.php:545
683
  msgid " Show author?"
684
  msgstr ""
685
 
686
+ #: top-10.php:550
687
  #, fuzzy
688
  msgid " Show date?"
689
  msgstr "Показувати текст запису в списку?"
690
 
691
+ #: top-10.php:554
692
  #, fuzzy
693
  msgid "Thumbnail options"
694
  msgstr "Установки превью до записів:"
695
 
696
+ #: top-10.php:556
697
  #, fuzzy
698
  msgid "Thumbnails inline, before title"
699
  msgstr "Відображати і превью, і текст"
700
 
701
+ #: top-10.php:557
702
  #, fuzzy
703
  msgid "Thumbnails inline, after title"
704
  msgstr "Відображати і превью, і текст"
705
 
706
+ #: top-10.php:558
707
  #, fuzzy
708
  msgid "Only thumbnails, no text"
709
  msgstr "Показувати тільки превью, без тексту"
710
 
711
+ #: top-10.php:559
712
  #, fuzzy
713
  msgid "No thumbnails, only text."
714
  msgstr "Показувати лише текст, без превью"
715
 
716
+ #: top-10.php:564
717
  #, fuzzy
718
  msgid "Thumbnail height"
719
  msgstr "Установки превью до записів:"
720
 
721
+ #: top-10.php:569
722
  #, fuzzy
723
  msgid "Thumbnail width"
724
  msgstr "Установки превью до записів:"
725
 
726
+ #: top-10.php:670
727
  msgid "<h3>Popular Posts</h3>"
728
  msgstr "<h3>Популярні записи</h3>"
729
 
730
+ #: top-10.php:671
731
  msgid "<h3>Daily Popular</h3>"
732
  msgstr "<h3>Популярні сьогодні записи</h3>"
733
 
734
+ #: top-10.php:672
735
  #, fuzzy
736
  msgid "No top posts yet"
737
  msgstr "Скинути статистику найпопулярніших записів"
738
 
739
+ #: top-10.php:1113
740
  msgid "Once Weekly"
741
  msgstr ""
742
 
743
+ #: top-10.php:1114
744
  msgid "Once Fortnightly"
745
  msgstr ""
746
 
747
+ #: top-10.php:1115
748
  msgid "Once Monthly"
749
  msgstr ""
750
 
751
+ #: top-10.php:1135
752
  msgid "Settings"
753
  msgstr "Налаштування плагіна"
754
 
755
+ #: top-10.php:1148
756
  msgid "Donate"
757
  msgstr "Зробити внесок"
758
 
readme.txt CHANGED
@@ -46,13 +46,21 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
46
 
47
  == Upgrade Notice ==
48
 
49
- = 1.9.8.4 =
50
- Fixed PHP notice errors on Admin pages
51
-
52
 
53
  == Changelog ==
54
 
55
- = 1.9.8.3 =
 
 
 
 
 
 
 
 
56
  * Fixed PHP notices on Admin pages
57
 
58
  = 1.9.8.3 =
@@ -309,22 +317,3 @@ Replace `{$cpt}` by the slug of your custom post type. E.g. to make the columns
309
  `
310
  add_filter( 'manage_edit-projects_sortable_columns', 'tptn_column_register_sortable' );
311
  `
312
-
313
-
314
- == Wishlist ==
315
-
316
- Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
317
-
318
- * Select random posts if there are no similar posts
319
- * Top posts by comments
320
- * Smart tracking of hits, i.e. no update on page reload of same visitors within a certain time period
321
- * Shortcode support
322
- * Exclude display on select categories and tags
323
- * Exclude display on select posts
324
- * Multi-site support
325
- * Ready-made styles
326
- * Upload your own default thumbnail
327
-
328
-
329
- If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/top-10">posting in this forum</a>.
330
-
46
 
47
  == Upgrade Notice ==
48
 
49
+ = 1.9.8.5 =
50
+ Author display name is used now, cleaner pagination, new function to get the post count only.
51
+ Refer to the changelog for more details
52
 
53
  == Changelog ==
54
 
55
+ = 1.9.8.5 =
56
+ * Modified: Including the author in the list will now use the Display Name which is set under “Display name publicly as” in the User Profile page
57
+ * Fixed: If the Thumbnail meta field is omitted under Output Options, the plugin will automatically revert to its default value i.e. "post-image"
58
+ * Modified: Cleaner pagination when viewing the Top posts in the Admin section
59
+ * New: Function `get_tptn_post_count_only` to get just the post count. Use it by passing the Post ID and the type of count (total, daily or overall): `get_tptn_post_count_only($id = FALSE, $count = 'total')`
60
+ * New: Class `tptn_after_thumb` that wraps around all items of the list after the post thumbnail. This allows you to cleanly style all items to float to the right of the thumbnail
61
+ * Modified: Updated timthumb
62
+
63
+ = 1.9.8.4 =
64
  * Fixed PHP notices on Admin pages
65
 
66
  = 1.9.8.3 =
317
  `
318
  add_filter( 'manage_edit-projects_sortable_columns', 'tptn_column_register_sortable' );
319
  `
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
timthumb/timthumb.php CHANGED
@@ -20,14 +20,14 @@
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
- define ('VERSION', '2.8.11'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
  if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
  if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
  if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
-
31
  //Image fetching and caching
32
  if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
  if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
@@ -47,17 +47,23 @@ if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000
47
  if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
 
49
  //Image size and defaults
50
- if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
- if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
- if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
- if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
- if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
- if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
- if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
- if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
- if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
- if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
 
 
60
 
 
 
 
 
61
 
62
  //Image compression is enabled if either of these point to valid paths
63
 
@@ -224,7 +230,7 @@ class timthumb {
224
  // nothing to worry about! :)
225
  $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
226
  header('Content-Type: image/gif');
227
- header('Content-Length: ' . sizeof($imgData));
228
  header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
229
  header("Pragma: no-cache");
230
  header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
@@ -420,13 +426,16 @@ class timthumb {
420
  }
421
  protected function serveErrors(){
422
  header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
 
 
 
423
  $html = '<ul>';
424
  foreach($this->errors as $err){
425
  $html .= '<li>' . htmlentities($err) . '</li>';
426
  }
427
  $html .= '</ul>';
428
  echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
429
- echo '<br />Query String : ' . htmlentities ($_SERVER['QUERY_STRING']);
430
  echo '<br />TimThumb version : ' . VERSION . '</pre>';
431
  }
432
  protected function serveInternalImage(){
@@ -532,8 +541,8 @@ class timthumb {
532
 
533
  // set default width and height if neither are set already
534
  if ($new_width == 0 && $new_height == 0) {
535
- $new_width = 100;
536
- $new_height = 100;
537
  }
538
 
539
  // ensure size limits can not be abused
@@ -859,7 +868,11 @@ class timthumb {
859
  return $this->realpath($file);
860
  }
861
  return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
862
- } //Do not go past this point without docRoot set
 
 
 
 
863
 
864
  //Try src under docRoot
865
  if(file_exists ($this->docRoot . '/' . $src)) {
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
+ define ('VERSION', '2.8.13'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
  if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
  if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
  if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
+ if(! defined('DISPLAY_ERROR_MESSAGES') ) define ('DISPLAY_ERROR_MESSAGES', true); // Display error messages. Set to false to turn off errors (good for production websites)
31
  //Image fetching and caching
32
  if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
  if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
47
  if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
 
49
  //Image size and defaults
50
+ if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
+ if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
+ if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
+ if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
+ if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
+ if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
+ if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
+ if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
+ if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
+ if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
60
+ if(! defined('DEFAULT_WIDTH') ) define ('DEFAULT_WIDTH', 100); // Default thumbnail width. Allows overrid in timthumb-config.php
61
+ if(! defined('DEFAULT_HEIGHT') ) define ('DEFAULT_HEIGHT', 100); // Default thumbnail height. Allows overrid in timthumb-config.php
62
 
63
+ /**
64
+ * Additional Parameters:
65
+ * LOCAL_FILE_BASE_DIRECTORY = Override the DOCUMENT_ROOT. This is best used in timthumb-config.php
66
+ */
67
 
68
  //Image compression is enabled if either of these point to valid paths
69
 
230
  // nothing to worry about! :)
231
  $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
232
  header('Content-Type: image/gif');
233
+ header('Content-Length: ' . strlen($imgData));
234
  header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
235
  header("Pragma: no-cache");
236
  header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
426
  }
427
  protected function serveErrors(){
428
  header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
429
+ if ( ! DISPLAY_ERROR_MESSAGES ) {
430
+ return;
431
+ }
432
  $html = '<ul>';
433
  foreach($this->errors as $err){
434
  $html .= '<li>' . htmlentities($err) . '</li>';
435
  }
436
  $html .= '</ul>';
437
  echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
438
+ echo '<br />Query String : ' . htmlentities( $_SERVER['QUERY_STRING'], ENT_QUOTES );
439
  echo '<br />TimThumb version : ' . VERSION . '</pre>';
440
  }
441
  protected function serveInternalImage(){
541
 
542
  // set default width and height if neither are set already
543
  if ($new_width == 0 && $new_height == 0) {
544
+ $new_width = (int) DEFAULT_WIDTH;
545
+ $new_height = (int) DEFAULT_HEIGHT;
546
  }
547
 
548
  // ensure size limits can not be abused
868
  return $this->realpath($file);
869
  }
870
  return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
871
+ } else if ( ! is_dir( $this->docRoot ) ) {
872
+ $this->error("Server path does not exist. Ensure variable \$_SERVER['DOCUMENT_ROOT'] is set correctly");
873
+ }
874
+
875
+ //Do not go past this point without docRoot set
876
 
877
  //Try src under docRoot
878
  if(file_exists ($this->docRoot . '/' . $src)) {
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.9.8.4
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
@@ -77,13 +77,13 @@ function tptn_add_viewed_count($content) {
77
  $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'"></script>';
78
  }
79
  }
80
-
81
- return $content.$output."<!-- Inside INCLUDE -->";
82
  } else {
83
- return $content."<!-- Outside INCLUDE -->";
84
  }
85
  } else {
86
- return $content."<!-- Ouside Singular -->";
87
  }
88
  }
89
  add_filter('the_content','tptn_add_viewed_count');
@@ -232,12 +232,52 @@ function get_tptn_post_count($id) {
232
  }
233
 
234
 
235
- return $count_disp_form;
236
  } else {
237
  return 0;
238
  }
239
  }
240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
 
242
  /**
243
  * Function to return popular posts.
@@ -255,6 +295,7 @@ function tptn_pop_posts( $args ) {
255
  'daily' => FALSE,
256
  'echo' => FALSE,
257
  'strict_limit' => FALSE,
 
258
  );
259
  $defaults = array_merge($defaults, tptn_read_options());
260
 
@@ -311,6 +352,8 @@ function tptn_pop_posts( $args ) {
311
  $sql .= "ORDER BY sumCount DESC LIMIT $limit";
312
  }
313
  $results = $wpdb->get_results($sql);
 
 
314
  $counter = 0;
315
 
316
  $output = '';
@@ -333,8 +376,9 @@ function tptn_pop_posts( $args ) {
333
  $output .= $before_list;
334
  foreach ($results as $result) {
335
  $sumcount = $result->sumCount;
336
- $result = get_post($result->ID); // Let's get the Post using the ID
337
- $categorys = get_the_category($result->ID); //Fetch categories of the plugin
 
338
  $p_in_c = false; // Variable to check if post exists in a particular category
339
 
340
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
@@ -347,23 +391,28 @@ function tptn_pop_posts( $args ) {
347
  if (!$p_in_c) {
348
  $output .= $before_list_item;
349
 
350
- $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
351
  if ($post_thumb_op=='after') {
 
352
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
 
353
  }
354
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
 
355
  $output .= tptn_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$thumb_meta.'&thumb_html='.$thumb_html.'&thumb_default='.$thumb_default.'&thumb_default_show='.$thumb_default_show.'&thumb_timthumb='.$thumb_timthumb.'&scan_images='.$scan_images.'&class=tptn_thumb&filter=tptn_postimage');
 
356
  }
357
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
 
 
358
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
 
359
  }
360
- $output .= '</a>'; // Close the link
361
  if ($show_author) {
362
  $author_info = get_userdata($result->post_author);
363
- $author_name = ucwords(trim(stripslashes($author_info->user_nicename)));
364
  $author_link = get_author_posts_url( $author_info->ID );
365
 
366
- $output .= '<span class="tptn_author"> '.__(' Posted by ', TPTN_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
367
  }
368
  if ($show_date) {
369
  $output .= '<span class="tptn_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
@@ -373,6 +422,10 @@ function tptn_pop_posts( $args ) {
373
  }
374
  if ($disp_list_count) $output .= ' <span class="tptn_list_count">('.number_format_i18n($sumcount).')</span>';
375
 
 
 
 
 
376
  $output .= $after_list_item;
377
  $counter++;
378
  }
@@ -385,7 +438,7 @@ function tptn_pop_posts( $args ) {
385
  }
386
  $output .= '</div>';
387
 
388
- return $output;
389
  }
390
 
391
 
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9.8.5
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
77
  $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'"></script>';
78
  }
79
  }
80
+ $output = apply_filters('tptn_viewed_count',$output);
81
+ return $content.$output;
82
  } else {
83
+ return $content;
84
  }
85
  } else {
86
+ return $content;
87
  }
88
  }
89
  add_filter('the_content','tptn_add_viewed_count');
232
  }
233
 
234
 
235
+ return apply_filters('tptn_post_count',$count_disp_form);
236
  } else {
237
  return 0;
238
  }
239
  }
240
 
241
+ /**
242
+ * Returns the post count.
243
+ *
244
+ * @access public
245
+ * @param mixed $id (default: FALSE) Post ID
246
+ * @param string $count (default: 'total') Which count to return. total, daily or overall
247
+ * @return void
248
+ */
249
+ function get_tptn_post_count_only($id = FALSE, $count = 'total') {
250
+ global $wpdb;
251
+
252
+ $table_name = $wpdb->prefix . "top_ten";
253
+ $table_name_daily = $wpdb->prefix . "top_ten_daily";
254
+ global $tptn_settings;
255
+
256
+ if($id > 0) {
257
+ switch ($count) {
258
+ case 'total':
259
+ $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
260
+ $cntaccess = number_format_i18n((($resultscount) ? $resultscount->cntaccess : 1));
261
+ break;
262
+ case 'daily':
263
+ $daily_range = $tptn_settings['daily_range']-1;
264
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
265
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
266
+ $current_date = date ( 'Y-m-j' , $current_date );
267
+
268
+ $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM ".$table_name_daily." WHERE postnumber = ".$id." AND dp_date >= '".$current_date."' GROUP BY postnumber ");
269
+ $cntaccess = number_format_i18n((($resultscount) ? $resultscount->sumCount : 1));
270
+ break;
271
+ case 'overall':
272
+ $resultscount = $wpdb->get_row("SELECT SUM(cntaccess) as sumCount FROM ".$table_name);
273
+ $cntaccess = number_format_i18n((($resultscount) ? $resultscount->sumCount : 1));
274
+ break;
275
+ }
276
+ return apply_filters('tptn_post_count_only',$cntaccess);
277
+ } else {
278
+ return 0;
279
+ }
280
+ }
281
 
282
  /**
283
  * Function to return popular posts.
295
  'daily' => FALSE,
296
  'echo' => FALSE,
297
  'strict_limit' => FALSE,
298
+ 'posts_only' => FALSE,
299
  );
300
  $defaults = array_merge($defaults, tptn_read_options());
301
 
352
  $sql .= "ORDER BY sumCount DESC LIMIT $limit";
353
  }
354
  $results = $wpdb->get_results($sql);
355
+ if($posts_only) return apply_filters('tptn_pop_posts_array',$results); // Return the array of posts only if the variable is set
356
+
357
  $counter = 0;
358
 
359
  $output = '';
376
  $output .= $before_list;
377
  foreach ($results as $result) {
378
  $sumcount = $result->sumCount;
379
+ $result = get_post(apply_filters('tptn_post_id',$result->ID)); // Let's get the Post using the ID
380
+
381
+ $categorys = get_the_category(apply_filters('tptn_post_cat_id',$result->ID)); //Fetch categories of the plugin
382
  $p_in_c = false; // Variable to check if post exists in a particular category
383
 
384
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
391
  if (!$p_in_c) {
392
  $output .= $before_list_item;
393
 
 
394
  if ($post_thumb_op=='after') {
395
+ $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
396
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
397
+ $output .= '</a>'; // Close the link
398
  }
399
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
400
+ $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
401
  $output .= tptn_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$thumb_meta.'&thumb_html='.$thumb_html.'&thumb_default='.$thumb_default.'&thumb_default_show='.$thumb_default_show.'&thumb_timthumb='.$thumb_timthumb.'&scan_images='.$scan_images.'&class=tptn_thumb&filter=tptn_postimage');
402
+ $output .= '</a>'; // Close the link
403
  }
404
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
405
+ $output .= '<span class="tptn_after_thumb">';
406
+ $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
407
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
408
+ $output .= '</a>'; // Close the link
409
  }
 
410
  if ($show_author) {
411
  $author_info = get_userdata($result->post_author);
412
+ $author_name = ucwords(trim(stripslashes($author_info->display_name)));
413
  $author_link = get_author_posts_url( $author_info->ID );
414
 
415
+ $output .= '<span class="tptn_author"> '.__(' by ', TPTN_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
416
  }
417
  if ($show_date) {
418
  $output .= '<span class="tptn_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
422
  }
423
  if ($disp_list_count) $output .= ' <span class="tptn_list_count">('.number_format_i18n($sumcount).')</span>';
424
 
425
+ if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
426
+ $output .= '</span>';
427
+ }
428
+
429
  $output .= $after_list_item;
430
  $counter++;
431
  }
438
  }
439
  $output .= '</div>';
440
 
441
+ return apply_filters('tptn_pop_posts',$output);
442
  }
443
 
444