Top 10 – Popular posts plugin for WordPress - Version 1.9.1

Version Description

  • Fixed: Plugin will now only reschedule the cron job if there any settings are changed related to it.
  • Modified: If timthumb is disabled, WordPress post thumbnails are no longer resized using timthumb.
  • Modified: Extra check for post featured thumbnails to ensure that the src is not missed.

=

Download this release

Release Info

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

Code changes from version 1.9 to 1.9.1

admin.inc.php CHANGED
@@ -59,15 +59,18 @@ function tptn_options() {
59
  $tptn_settings[exclude_categories] = substr($exclude_categories, 0, -2);
60
 
61
  // Cron maintenance functions
62
- $tptn_settings[cron_hour] = intval($_POST['cron_hour']);
63
- $tptn_settings[cron_min] = intval($_POST['cron_min']);
64
- $tptn_settings[cron_recurrence] = $_POST['cron_recurrence'];
65
- if ($_POST['cron_on']) {
66
  $tptn_settings[cron_on] = true;
 
 
 
 
67
  tptn_enable_run($tptn_settings[cron_hour], $tptn_settings[cron_min], $tptn_settings[cron_recurrence]);
68
- } else {
 
69
  $tptn_settings[cron_on] = false;
70
  tptn_disable_run();
 
71
  }
72
 
73
  update_option('ald_tptn_settings', $tptn_settings);
@@ -263,7 +266,7 @@ function tptn_options() {
263
  <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(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>
264
  </tr>
265
  <tr style="vertical-align: top;"><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>
266
- <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings[scan_images]) echo 'checked="checked"' ?> /> <br /><?php _e('This can slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></td>
267
  </tr>
268
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
269
  <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>
@@ -289,9 +292,14 @@ function tptn_options() {
289
  <?php _e('Maintenance',TPTN_LOCAL_NAME); ?>
290
  </h3>
291
  <table class="form-table">
 
 
 
 
 
292
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_on"><?php _e('Enable scheduled maintenance of daily tables:',TPTN_LOCAL_NAME); ?></label></th>
293
  <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings[cron_on]) echo 'checked="checked"' ?> />
294
- <br /><?php _e('Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs',TPTN_LOCAL_NAME); ?>
295
  </td>
296
  </tr>
297
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
59
  $tptn_settings[exclude_categories] = substr($exclude_categories, 0, -2);
60
 
61
  // Cron maintenance functions
62
+ if ( ($_POST['cron_on']) && ( ($tptn_settings[cron_on]==false) || (intval($_POST['cron_hour'])!=$tptn_settings[cron_hour]) || (intval($_POST['cron_min'])!=$tptn_settings[cron_min]) || ($_POST['cron_recurrence']!=$tptn_settings[cron_recurrence]) ) ) {
 
 
 
63
  $tptn_settings[cron_on] = true;
64
+ $tptn_settings[cron_hour] = intval($_POST['cron_hour']);
65
+ $tptn_settings[cron_min] = intval($_POST['cron_min']);
66
+ $tptn_settings[cron_recurrence] = $_POST['cron_recurrence'];
67
+
68
  tptn_enable_run($tptn_settings[cron_hour], $tptn_settings[cron_min], $tptn_settings[cron_recurrence]);
69
+ echo '<div id="message" class="updated fade"><p>' . __('Scheduled maintenance enabled / modified',TPTN_LOCAL_NAME) .'</p></div>';
70
+ } elseif ($_POST['cron_on']==false) {
71
  $tptn_settings[cron_on] = false;
72
  tptn_disable_run();
73
+ echo '<div id="message" class="updated fade"><p>'. __('Scheduled maintenance disabled',TPTN_LOCAL_NAME) .'</p></div>';
74
  }
75
 
76
  update_option('ald_tptn_settings', $tptn_settings);
266
  <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(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>
267
  </tr>
268
  <tr style="vertical-align: top;"><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>
269
+ <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>
270
  </tr>
271
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
272
  <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>
292
  <?php _e('Maintenance',TPTN_LOCAL_NAME); ?>
293
  </h3>
294
  <table class="form-table">
295
+ <tr style="vertical-align: top; "><th scope="row" colspan="2">
296
+ <?php _e('Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs.',TPTN_LOCAL_NAME); ?>
297
+ <em><?php _e('Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below). This causes the daily posts table to reset.',TPTN_LOCAL_NAME); ?></em>
298
+ </th>
299
+ </tr>
300
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_on"><?php _e('Enable scheduled maintenance of daily tables:',TPTN_LOCAL_NAME); ?></label></th>
301
  <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings[cron_on]) echo 'checked="checked"' ?> />
302
+ <br />
303
  </td>
304
  </tr>
305
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
ald-framework.inc.php CHANGED
@@ -34,9 +34,9 @@ if (!function_exists(ald_get_the_post_thumbnail)) { function ald_get_the_post_th
34
  $output = '';
35
  $title = get_the_title($postid);
36
 
37
- if (function_exists('has_post_thumbnail') && has_post_thumbnail($result->ID)) {
38
  $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
39
- $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height );
40
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
41
 
42
  // $output .= get_the_post_thumbnail($result->ID, array($thumb_width,$thumb_height), array('title' => $title,'alt' => $title, 'class' => $class, 'border' => '0'));
34
  $output = '';
35
  $title = get_the_title($postid);
36
 
37
+ if (function_exists('has_post_thumbnail') && ( (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!='') || (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!= false) ) ) {
38
  $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
39
+ $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb );
40
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
41
 
42
  // $output .= get_the_post_thumbnail($result->ID, array($thumb_width,$thumb_height), array('title' => $title,'alt' => $title, 'class' => $class, 'border' => '0'));
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: 2012-08-12 16:54-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"
@@ -14,40 +14,48 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "10 populyar yazı statisticasını pozmaq"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Populyar postların miqdarının nümayişi:"
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
49
 
50
- #: admin.inc.php:133
51
  msgid ""
52
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
  "continue to be counted."
@@ -55,37 +63,37 @@ msgstr ""
55
  "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı "
56
  "saymaqda davam etdiriləcək."
57
 
58
- #: admin.inc.php:136
59
  msgid "Exclude Categories: "
60
  msgstr ""
61
 
62
- #: admin.inc.php:154
63
  #, fuzzy
64
  msgid "Display number of views on:"
65
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
66
 
67
- #: admin.inc.php:155
68
  msgid "Posts"
69
  msgstr ""
70
 
71
- #: admin.inc.php:156
72
  #, fuzzy
73
  msgid "Pages"
74
  msgstr "Səhifə"
75
 
76
- #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
79
 
80
- #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
83
 
84
- #: admin.inc.php:167
85
  msgid "Force daily posts' list to be dynamic?"
86
  msgstr ""
87
 
88
- #: admin.inc.php:169
89
  #, fuzzy
90
  msgid ""
91
  "This option uses JavaScript to load the post and can increase your page load "
@@ -94,15 +102,15 @@ msgstr ""
94
  "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
95
  "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
96
 
97
- #: admin.inc.php:172
98
  msgid "Display page views on Posts > All Posts in Admin"
99
  msgstr ""
100
 
101
- #: admin.inc.php:176
102
  msgid "Link to Top 10 plugin page"
103
  msgstr ""
104
 
105
- #: admin.inc.php:178
106
  #, fuzzy
107
  msgid ""
108
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -111,16 +119,16 @@ msgstr ""
111
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
112
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
113
 
114
- #: admin.inc.php:185
115
  #, fuzzy
116
  msgid "Output Options"
117
  msgstr "Plaginin kökləmələri:"
118
 
119
- #: admin.inc.php:188
120
  msgid "Format to display the count in: "
121
  msgstr "Miqdarı göstərən format:"
122
 
123
- #: admin.inc.php:191
124
  #, fuzzy
125
  msgid ""
126
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -132,110 +140,110 @@ msgstr ""
132
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
133
  "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
134
 
135
- #: admin.inc.php:193
136
  msgid "Title of popular posts: "
137
  msgstr "Populyar yazılarının başlığı:"
138
 
139
- #: admin.inc.php:196
140
  msgid "Title of daily popular posts: "
141
  msgstr "Gündəlik populyual yazılışların başlığı:"
142
 
143
- #: admin.inc.php:199
144
  msgid "When there are no posts, what should be shown?"
145
  msgstr ""
146
 
147
- #: admin.inc.php:203
148
  msgid "Blank Output"
149
  msgstr ""
150
 
151
- #: admin.inc.php:207
152
  msgid "Display:"
153
  msgstr ""
154
 
155
- #: admin.inc.php:211
156
  msgid "Show post excerpt in list?"
157
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
158
 
159
- #: admin.inc.php:214
160
  msgid "Length of excerpt (in words): "
161
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
162
 
163
- #: admin.inc.php:217
164
  msgid "Customize the output:"
165
  msgstr "Suiyahı formasının kökləmələri:"
166
 
167
- #: admin.inc.php:219
168
  msgid "HTML to display before the list of posts: "
169
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
170
 
171
- #: admin.inc.php:222
172
  msgid "HTML to display before each list item: "
173
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
174
 
175
- #: admin.inc.php:225
176
  msgid "HTML to display after each list item: "
177
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
178
 
179
- #: admin.inc.php:228
180
  msgid "HTML to display after the list of posts: "
181
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
182
 
183
- #: admin.inc.php:231
184
  msgid "Post thumbnail options:"
185
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
186
 
187
- #: admin.inc.php:233
188
  msgid "Location of post thumbnail:"
189
  msgstr ""
190
 
191
- #: admin.inc.php:237
192
  #, fuzzy
193
  msgid "Display thumbnails inline with posts, before title"
194
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
195
 
196
- #: admin.inc.php:241
197
  #, fuzzy
198
  msgid "Display thumbnails inline with posts, after title"
199
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
200
 
201
- #: admin.inc.php:245
202
  msgid "Display only thumbnails, no text"
203
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
204
 
205
- #: admin.inc.php:249
206
  msgid "Do not display thumbnails, only text."
207
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
208
 
209
- #: admin.inc.php:253
210
  msgid "Maximum width of the thumbnail: "
211
  msgstr ""
212
 
213
- #: admin.inc.php:256
214
  msgid "Maximum height of the thumbnail: "
215
  msgstr ""
216
 
217
- #: admin.inc.php:259
218
  msgid "Use timthumb to generate thumbnails? "
219
  msgstr ""
220
 
221
- #: admin.inc.php:260
222
  msgid ""
223
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
224
  "\">timthumb</a> will be used to generate thumbnails"
225
  msgstr ""
226
 
227
- #: admin.inc.php:262
228
  #, fuzzy
229
  msgid "Post thumbnail meta field name: "
230
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
231
 
232
- #: admin.inc.php:263
233
  msgid ""
234
  "The value of this field should contain the image source and is set in the "
235
  "<em>Add New Post</em> screen"
236
  msgstr ""
237
 
238
- #: admin.inc.php:265
239
  #, fuzzy
240
  msgid ""
241
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -245,31 +253,31 @@ msgstr ""
245
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
246
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
247
 
248
- #: admin.inc.php:266
249
  #, fuzzy
250
  msgid ""
251
- "This can slow down the loading of your page if the first image in the "
252
  "related posts is large in file-size"
253
  msgstr ""
254
  "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci "
255
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
256
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
257
 
258
- #: admin.inc.php:268
259
  msgid "Use default thumbnail? "
260
  msgstr ""
261
 
262
- #: admin.inc.php:269
263
  msgid ""
264
  "If checked, when no thumbnail is found, show a default one from the URL "
265
  "below. If not checked and no thumbnail is found, no image will be shown."
266
  msgstr ""
267
 
268
- #: admin.inc.php:271
269
  msgid "Default thumbnail: "
270
  msgstr ""
271
 
272
- #: admin.inc.php:272
273
  #, fuzzy
274
  msgid ""
275
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -280,77 +288,84 @@ msgstr ""
280
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
281
  "onda standard şəkil çıxarılacaq:"
282
 
283
- #: admin.inc.php:278
284
  msgid "Custom Styles"
285
  msgstr ""
286
 
287
- #: admin.inc.php:281
288
  msgid "Custom CSS to add to header:"
289
  msgstr ""
290
 
291
- #: admin.inc.php:284
292
  msgid ""
293
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
294
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
295
  "available CSS classes to style."
296
  msgstr ""
297
 
298
- #: admin.inc.php:289
299
- msgid "Maintenance"
300
- msgstr ""
301
-
302
  #: admin.inc.php:292
303
- msgid "Enable scheduled maintenance of daily tables:"
304
  msgstr ""
305
 
306
- #: admin.inc.php:294
307
  msgid ""
308
  "Over time the Daily Top 10 database grows in size, which reduces the "
309
  "performance of the plugin. Cleaning the database at regular intervals could "
310
- "improve performance, especially on high traffic blogs"
311
  msgstr ""
312
 
313
  #: admin.inc.php:297
314
- msgid "Time to run maintenance"
 
 
 
315
  msgstr ""
316
 
317
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
318
  msgid "How often should the maintenance be run:"
319
  msgstr ""
320
 
321
- #: admin.inc.php:304
322
  msgid "Daily"
323
  msgstr ""
324
 
325
- #: admin.inc.php:308
326
  msgid "Weekly"
327
  msgstr ""
328
 
329
- #: admin.inc.php:312
330
  msgid "Fortnightly"
331
  msgstr ""
332
 
333
- #: admin.inc.php:316
334
  msgid "Monthly"
335
  msgstr ""
336
 
337
- #: admin.inc.php:325
338
  msgid "The cron job has been scheduled. Maintenance will run "
339
  msgstr ""
340
 
341
- #: admin.inc.php:330
342
  msgid "The cron job is missing. Please resave this page to add the job"
343
  msgstr ""
344
 
345
- #: admin.inc.php:335
346
  msgid "Maintenance is turned off"
347
  msgstr ""
348
 
349
- #: admin.inc.php:343
350
  msgid "Reset count"
351
  msgstr "Statistikanı sbros etmək"
352
 
353
- #: admin.inc.php:346
354
  msgid ""
355
  "This cannot be reversed. Make sure that your database has been backed up "
356
  "before proceeding"
@@ -358,144 +373,144 @@ msgstr ""
358
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
359
  "ki, Sizin məlumat bazasının kopiyası var!"
360
 
361
- #: admin.inc.php:349
362
  #, fuzzy
363
  msgid "Reset Popular Posts"
364
  msgstr "Populyar yazılar"
365
 
366
- #: admin.inc.php:349
367
  msgid "Are you sure you want to reset the popular posts?"
368
  msgstr ""
369
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
370
 
371
- #: admin.inc.php:350
372
  #, fuzzy
373
  msgid "Reset Daily Popular Posts"
374
  msgstr "Gündəlik Populyar Yazılar"
375
 
376
- #: admin.inc.php:350
377
  msgid "Are you sure you want to reset the daily popular posts?"
378
  msgstr ""
379
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
380
  "istəyirsiniz?"
381
 
382
- #: admin.inc.php:351
383
  msgid "Clear duplicates"
384
  msgstr ""
385
 
386
- #: admin.inc.php:351
387
  msgid "This will delete the duplicate entries in the tables. Proceed?"
388
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
389
 
390
- #: admin.inc.php:355
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Opsiyalar:"
394
 
395
- #: admin.inc.php:356
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Plaginin kökləmələri:"
399
 
400
- #: admin.inc.php:356
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
403
 
404
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
405
  msgid "Popular Posts"
406
  msgstr "Populyar yazılar"
407
 
408
- #: admin.inc.php:382
409
  msgid "Daily Popular Posts"
410
  msgstr "Gündəlik Populyar Yazılar"
411
 
412
- #: admin.inc.php:404
413
  msgid "Support the development"
414
  msgstr "İnkişafı dəstək vermək"
415
 
416
- #: admin.inc.php:412
417
  msgid "Enter amount in USD: "
418
  msgstr "Miiqdarı USD ilə daxil et:"
419
 
420
- #: admin.inc.php:416
421
  msgid "Send your donation to the author of"
422
  msgstr "Müəlifə ianə göndərin "
423
 
424
- #: admin.inc.php:422
425
  msgid "Follow us on Facebook"
426
  msgstr ""
427
 
428
- #: admin.inc.php:426
429
  #, fuzzy
430
  msgid "Quick Links"
431
  msgstr "Faydalı istenadlar"
432
 
433
- #: admin.inc.php:428
434
  #, fuzzy
435
  msgid "Top 10 plugin page"
436
  msgstr "plaginin səhifəsi"
437
 
438
- #: admin.inc.php:429
439
  msgid "Other plugins"
440
  msgstr "Digər plaginlər"
441
 
442
- #: admin.inc.php:430
443
  msgid "Ajay's blog"
444
  msgstr "Ajay-in blogu"
445
 
446
- #: admin.inc.php:431 top-10.php:583
447
  msgid "Support"
448
  msgstr "Dəstək"
449
 
450
- #: admin.inc.php:432
451
  msgid "Follow @ajaydsouza on Twitter"
452
  msgstr "Twitter-də @ajaydsouza ardınca get "
453
 
454
- #: admin.inc.php:436
455
  msgid "Recent developments"
456
  msgstr "Son inkişaflar"
457
 
458
- #: admin.inc.php:459 admin.inc.php:461
459
  msgid "Top 10"
460
  msgstr "Top 10 yazılar"
461
 
462
- #: admin.inc.php:575
463
  msgid "Results"
464
  msgstr "Nəticələr"
465
 
466
- #: admin.inc.php:577 admin.inc.php:583
467
  msgid "of"
468
  msgstr "-dən "
469
 
470
- #: admin.inc.php:581
471
  msgid "Page"
472
  msgstr "Səhifə"
473
 
474
- #: admin.inc.php:595
475
  msgid "View Daily Popular Posts"
476
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
477
 
478
- #: admin.inc.php:599
479
  msgid "View Overall Popular Posts"
480
  msgstr "Bütün Populyar Yazılara Baxmaq"
481
 
482
- #: admin.inc.php:603
483
  msgid "Results per-page:"
484
  msgstr "Səhifə üzrə nəticələr:"
485
 
486
- #: admin.inc.php:627
487
  msgid "Previous"
488
  msgstr "Əvvəlki"
489
 
490
- #: admin.inc.php:645
491
  msgid "Next"
492
  msgstr "Sonrakı"
493
 
494
- #: admin.inc.php:668
495
  msgid "Daily Popular"
496
  msgstr "Gündəlik Populyar"
497
 
498
- #: admin.inc.php:679
499
  msgid "Total / Today's Views"
500
  msgstr "Ümümi/ Bu günkü baxış"
501
 
@@ -566,23 +581,23 @@ msgstr "<h3>Gündəlik Populyar</h3>"
566
  msgid "No top posts yet"
567
  msgstr "10 populyar yazı statisticasını pozmaq"
568
 
569
- #: top-10.php:560
570
  msgid "Once Weekly"
571
  msgstr ""
572
 
573
- #: top-10.php:561
574
  msgid "Once Fortnightly"
575
  msgstr ""
576
 
577
- #: top-10.php:562
578
  msgid "Once Monthly"
579
  msgstr ""
580
 
581
- #: top-10.php:582
582
  msgid "Settings"
583
  msgstr "Kökləmələr"
584
 
585
- #: top-10.php:584
586
  msgid "Donate"
587
  msgstr "İanə etmək"
588
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:40-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "10 populyar yazı statisticasını pozmaq"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Populyar postların miqdarının nümayişi:"
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
57
 
58
+ #: admin.inc.php:136
59
  msgid ""
60
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
61
  "continue to be counted."
63
  "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı "
64
  "saymaqda davam etdiriləcək."
65
 
66
+ #: admin.inc.php:139
67
  msgid "Exclude Categories: "
68
  msgstr ""
69
 
70
+ #: admin.inc.php:157
71
  #, fuzzy
72
  msgid "Display number of views on:"
73
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
74
 
75
+ #: admin.inc.php:158
76
  msgid "Posts"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:159
80
  #, fuzzy
81
  msgid "Pages"
82
  msgstr "Səhifə"
83
 
84
+ #: admin.inc.php:162
85
  msgid "Track visits of authors on their own posts?"
86
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
87
 
88
+ #: admin.inc.php:166
89
  msgid "Display number of page views in popular lists?"
90
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
91
 
92
+ #: admin.inc.php:170
93
  msgid "Force daily posts' list to be dynamic?"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:172
97
  #, fuzzy
98
  msgid ""
99
  "This option uses JavaScript to load the post and can increase your page load "
102
  "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
103
  "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
104
 
105
+ #: admin.inc.php:175
106
  msgid "Display page views on Posts > All Posts in Admin"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:179
110
  msgid "Link to Top 10 plugin page"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:181
114
  #, fuzzy
115
  msgid ""
116
  "A link to the plugin is added as an extra list item to the list of popular "
119
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
120
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
121
 
122
+ #: admin.inc.php:188
123
  #, fuzzy
124
  msgid "Output Options"
125
  msgstr "Plaginin kökləmələri:"
126
 
127
+ #: admin.inc.php:191
128
  msgid "Format to display the count in: "
129
  msgstr "Miqdarı göstərən format:"
130
 
131
+ #: admin.inc.php:194
132
  #, fuzzy
133
  msgid ""
134
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
140
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
141
  "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
142
 
143
+ #: admin.inc.php:196
144
  msgid "Title of popular posts: "
145
  msgstr "Populyar yazılarının başlığı:"
146
 
147
+ #: admin.inc.php:199
148
  msgid "Title of daily popular posts: "
149
  msgstr "Gündəlik populyual yazılışların başlığı:"
150
 
151
+ #: admin.inc.php:202
152
  msgid "When there are no posts, what should be shown?"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:206
156
  msgid "Blank Output"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:210
160
  msgid "Display:"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:214
164
  msgid "Show post excerpt in list?"
165
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
166
 
167
+ #: admin.inc.php:217
168
  msgid "Length of excerpt (in words): "
169
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
170
 
171
+ #: admin.inc.php:220
172
  msgid "Customize the output:"
173
  msgstr "Suiyahı formasının kökləmələri:"
174
 
175
+ #: admin.inc.php:222
176
  msgid "HTML to display before the list of posts: "
177
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
178
 
179
+ #: admin.inc.php:225
180
  msgid "HTML to display before each list item: "
181
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
182
 
183
+ #: admin.inc.php:228
184
  msgid "HTML to display after each list item: "
185
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
186
 
187
+ #: admin.inc.php:231
188
  msgid "HTML to display after the list of posts: "
189
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
190
 
191
+ #: admin.inc.php:234
192
  msgid "Post thumbnail options:"
193
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
194
 
195
+ #: admin.inc.php:236
196
  msgid "Location of post thumbnail:"
197
  msgstr ""
198
 
199
+ #: admin.inc.php:240
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, before title"
202
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
203
 
204
+ #: admin.inc.php:244
205
  #, fuzzy
206
  msgid "Display thumbnails inline with posts, after title"
207
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
208
 
209
+ #: admin.inc.php:248
210
  msgid "Display only thumbnails, no text"
211
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
212
 
213
+ #: admin.inc.php:252
214
  msgid "Do not display thumbnails, only text."
215
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
216
 
217
+ #: admin.inc.php:256
218
  msgid "Maximum width of the thumbnail: "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:259
222
  msgid "Maximum height of the thumbnail: "
223
  msgstr ""
224
 
225
+ #: admin.inc.php:262
226
  msgid "Use timthumb to generate thumbnails? "
227
  msgstr ""
228
 
229
+ #: admin.inc.php:263
230
  msgid ""
231
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
232
  "\">timthumb</a> will be used to generate thumbnails"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:265
236
  #, fuzzy
237
  msgid "Post thumbnail meta field name: "
238
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
239
 
240
+ #: admin.inc.php:266
241
  msgid ""
242
  "The value of this field should contain the image source and is set in the "
243
  "<em>Add New Post</em> screen"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:268
247
  #, fuzzy
248
  msgid ""
249
  "If the postmeta is not set, then should the plugin extract the first image "
253
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
254
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
255
 
256
+ #: admin.inc.php:269
257
  #, fuzzy
258
  msgid ""
259
+ "This could slow down the loading of your page if the first image in the "
260
  "related posts is large in file-size"
261
  msgstr ""
262
  "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci "
263
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
264
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
265
 
266
+ #: admin.inc.php:271
267
  msgid "Use default thumbnail? "
268
  msgstr ""
269
 
270
+ #: admin.inc.php:272
271
  msgid ""
272
  "If checked, when no thumbnail is found, show a default one from the URL "
273
  "below. If not checked and no thumbnail is found, no image will be shown."
274
  msgstr ""
275
 
276
+ #: admin.inc.php:274
277
  msgid "Default thumbnail: "
278
  msgstr ""
279
 
280
+ #: admin.inc.php:275
281
  #, fuzzy
282
  msgid ""
283
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
288
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
289
  "onda standard şəkil çıxarılacaq:"
290
 
291
+ #: admin.inc.php:281
292
  msgid "Custom Styles"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:284
296
  msgid "Custom CSS to add to header:"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:287
300
  msgid ""
301
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
302
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
303
  "available CSS classes to style."
304
  msgstr ""
305
 
 
 
 
 
306
  #: admin.inc.php:292
307
+ msgid "Maintenance"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:296
311
  msgid ""
312
  "Over time the Daily Top 10 database grows in size, which reduces the "
313
  "performance of the plugin. Cleaning the database at regular intervals could "
314
+ "improve performance, especially on high traffic blogs."
315
  msgstr ""
316
 
317
  #: admin.inc.php:297
318
+ msgid ""
319
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
320
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
321
+ "causes the daily posts table to reset."
322
  msgstr ""
323
 
324
  #: admin.inc.php:300
325
+ msgid "Enable scheduled maintenance of daily tables:"
326
+ msgstr ""
327
+
328
+ #: admin.inc.php:305
329
+ msgid "Time to run maintenance"
330
+ msgstr ""
331
+
332
+ #: admin.inc.php:308
333
  msgid "How often should the maintenance be run:"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:312
337
  msgid "Daily"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:316
341
  msgid "Weekly"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:320
345
  msgid "Fortnightly"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:324
349
  msgid "Monthly"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:333
353
  msgid "The cron job has been scheduled. Maintenance will run "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:338
357
  msgid "The cron job is missing. Please resave this page to add the job"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:343
361
  msgid "Maintenance is turned off"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:351
365
  msgid "Reset count"
366
  msgstr "Statistikanı sbros etmək"
367
 
368
+ #: admin.inc.php:354
369
  msgid ""
370
  "This cannot be reversed. Make sure that your database has been backed up "
371
  "before proceeding"
373
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
374
  "ki, Sizin məlumat bazasının kopiyası var!"
375
 
376
+ #: admin.inc.php:357
377
  #, fuzzy
378
  msgid "Reset Popular Posts"
379
  msgstr "Populyar yazılar"
380
 
381
+ #: admin.inc.php:357
382
  msgid "Are you sure you want to reset the popular posts?"
383
  msgstr ""
384
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
385
 
386
+ #: admin.inc.php:358
387
  #, fuzzy
388
  msgid "Reset Daily Popular Posts"
389
  msgstr "Gündəlik Populyar Yazılar"
390
 
391
+ #: admin.inc.php:358
392
  msgid "Are you sure you want to reset the daily popular posts?"
393
  msgstr ""
394
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
395
  "istəyirsiniz?"
396
 
397
+ #: admin.inc.php:359
398
  msgid "Clear duplicates"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:359
402
  msgid "This will delete the duplicate entries in the tables. Proceed?"
403
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
404
 
405
+ #: admin.inc.php:363
406
  #, fuzzy
407
  msgid "Save Options"
408
  msgstr "Opsiyalar:"
409
 
410
+ #: admin.inc.php:364
411
  #, fuzzy
412
  msgid "Default Options"
413
  msgstr "Plaginin kökləmələri:"
414
 
415
+ #: admin.inc.php:364
416
  msgid "Do you want to set options to Default?"
417
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
418
 
419
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
420
  msgid "Popular Posts"
421
  msgstr "Populyar yazılar"
422
 
423
+ #: admin.inc.php:390
424
  msgid "Daily Popular Posts"
425
  msgstr "Gündəlik Populyar Yazılar"
426
 
427
+ #: admin.inc.php:412
428
  msgid "Support the development"
429
  msgstr "İnkişafı dəstək vermək"
430
 
431
+ #: admin.inc.php:420
432
  msgid "Enter amount in USD: "
433
  msgstr "Miiqdarı USD ilə daxil et:"
434
 
435
+ #: admin.inc.php:424
436
  msgid "Send your donation to the author of"
437
  msgstr "Müəlifə ianə göndərin "
438
 
439
+ #: admin.inc.php:430
440
  msgid "Follow us on Facebook"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:434
444
  #, fuzzy
445
  msgid "Quick Links"
446
  msgstr "Faydalı istenadlar"
447
 
448
+ #: admin.inc.php:436
449
  #, fuzzy
450
  msgid "Top 10 plugin page"
451
  msgstr "plaginin səhifəsi"
452
 
453
+ #: admin.inc.php:437
454
  msgid "Other plugins"
455
  msgstr "Digər plaginlər"
456
 
457
+ #: admin.inc.php:438
458
  msgid "Ajay's blog"
459
  msgstr "Ajay-in blogu"
460
 
461
+ #: admin.inc.php:439 top-10.php:588
462
  msgid "Support"
463
  msgstr "Dəstək"
464
 
465
+ #: admin.inc.php:440
466
  msgid "Follow @ajaydsouza on Twitter"
467
  msgstr "Twitter-də @ajaydsouza ardınca get "
468
 
469
+ #: admin.inc.php:444
470
  msgid "Recent developments"
471
  msgstr "Son inkişaflar"
472
 
473
+ #: admin.inc.php:467 admin.inc.php:469
474
  msgid "Top 10"
475
  msgstr "Top 10 yazılar"
476
 
477
+ #: admin.inc.php:583
478
  msgid "Results"
479
  msgstr "Nəticələr"
480
 
481
+ #: admin.inc.php:585 admin.inc.php:591
482
  msgid "of"
483
  msgstr "-dən "
484
 
485
+ #: admin.inc.php:589
486
  msgid "Page"
487
  msgstr "Səhifə"
488
 
489
+ #: admin.inc.php:603
490
  msgid "View Daily Popular Posts"
491
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
492
 
493
+ #: admin.inc.php:607
494
  msgid "View Overall Popular Posts"
495
  msgstr "Bütün Populyar Yazılara Baxmaq"
496
 
497
+ #: admin.inc.php:611
498
  msgid "Results per-page:"
499
  msgstr "Səhifə üzrə nəticələr:"
500
 
501
+ #: admin.inc.php:635
502
  msgid "Previous"
503
  msgstr "Əvvəlki"
504
 
505
+ #: admin.inc.php:653
506
  msgid "Next"
507
  msgstr "Sonrakı"
508
 
509
+ #: admin.inc.php:676
510
  msgid "Daily Popular"
511
  msgstr "Gündəlik Populyar"
512
 
513
+ #: admin.inc.php:687
514
  msgid "Total / Today's Views"
515
  msgstr "Ümümi/ Bu günkü baxış"
516
 
581
  msgid "No top posts yet"
582
  msgstr "10 populyar yazı statisticasını pozmaq"
583
 
584
+ #: top-10.php:565
585
  msgid "Once Weekly"
586
  msgstr ""
587
 
588
+ #: top-10.php:566
589
  msgid "Once Fortnightly"
590
  msgstr ""
591
 
592
+ #: top-10.php:567
593
  msgid "Once Monthly"
594
  msgstr ""
595
 
596
+ #: top-10.php:587
597
  msgid "Settings"
598
  msgstr "Kökləmələr"
599
 
600
+ #: top-10.php:589
601
  msgid "Donate"
602
  msgstr "İanə etmək"
603
 
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: 2012-08-12 16:54-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"
@@ -14,41 +14,49 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Налады захаваны."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Налады скінуты."
24
 
25
- #: admin.inc.php:90
26
  #, fuzzy
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Загаловак блока Папулярных запісаў:"
29
 
30
- #: admin.inc.php:96
31
  #, fuzzy
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Загаловак блока Папулярных сёння запісаў:"
34
 
35
- #: admin.inc.php:103
36
  msgid "Duplicate rows cleaned from tables"
37
  msgstr ""
38
 
39
- #: admin.inc.php:124
40
  msgid "General options"
41
  msgstr ""
42
 
43
- #: admin.inc.php:127
44
  msgid "Number of popular posts to display: "
45
  msgstr "Колькасць Папулярных запісаў у спісе:"
46
 
47
- #: admin.inc.php:130
48
  msgid "Daily Popular should contain views of how many days? "
49
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
50
 
51
- #: admin.inc.php:133
52
  msgid ""
53
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
  "continue to be counted."
@@ -56,38 +64,38 @@ msgstr ""
56
  "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для "
57
  "старонак будзе падлічвацца."
58
 
59
- #: admin.inc.php:136
60
  msgid "Exclude Categories: "
61
  msgstr ""
62
 
63
- #: admin.inc.php:154
64
  #, fuzzy
65
  msgid "Display number of views on:"
66
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
67
 
68
- #: admin.inc.php:155
69
  msgid "Posts"
70
  msgstr ""
71
 
72
- #: admin.inc.php:156
73
  #, fuzzy
74
  msgid "Pages"
75
  msgstr "Старонка"
76
 
77
- #: admin.inc.php:159
78
  msgid "Track visits of authors on their own posts?"
79
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
80
 
81
- #: admin.inc.php:163
82
  msgid "Display number of page views in popular lists?"
83
  msgstr ""
84
  "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
85
 
86
- #: admin.inc.php:167
87
  msgid "Force daily posts' list to be dynamic?"
88
  msgstr ""
89
 
90
- #: admin.inc.php:169
91
  #, fuzzy
92
  msgid ""
93
  "This option uses JavaScript to load the post and can increase your page load "
@@ -96,15 +104,15 @@ msgstr ""
96
  "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
97
  "і гэта можа павялічыць час загрузкі старонак"
98
 
99
- #: admin.inc.php:172
100
  msgid "Display page views on Posts > All Posts in Admin"
101
  msgstr ""
102
 
103
- #: admin.inc.php:176
104
  msgid "Link to Top 10 plugin page"
105
  msgstr ""
106
 
107
- #: admin.inc.php:178
108
  #, fuzzy
109
  msgid ""
110
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -113,16 +121,16 @@ msgstr ""
113
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
114
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
115
 
116
- #: admin.inc.php:185
117
  #, fuzzy
118
  msgid "Output Options"
119
  msgstr "Налады ўбудовы:"
120
 
121
- #: admin.inc.php:188
122
  msgid "Format to display the count in: "
123
  msgstr "Фармат адлюстравання колькасці праглядаў:"
124
 
125
- #: admin.inc.php:191
126
  #, fuzzy
127
  msgid ""
128
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -134,352 +142,359 @@ msgstr ""
134
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
135
  "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
136
 
137
- #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "Загаловак блока Папулярных запісаў:"
140
 
141
- #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "Загаловак блока Папулярных сёння запісаў:"
144
 
145
- #: admin.inc.php:199
146
  msgid "When there are no posts, what should be shown?"
147
  msgstr ""
148
 
149
- #: admin.inc.php:203
150
  msgid "Blank Output"
151
  msgstr ""
152
 
153
- #: admin.inc.php:207
154
  msgid "Display:"
155
  msgstr ""
156
 
157
- #: admin.inc.php:211
158
  msgid "Show post excerpt in list?"
159
  msgstr ""
160
 
161
- #: admin.inc.php:214
162
  msgid "Length of excerpt (in words): "
163
  msgstr ""
164
 
165
- #: admin.inc.php:217
166
  msgid "Customize the output:"
167
  msgstr ""
168
 
169
- #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr ""
172
 
173
- #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr ""
176
 
177
- #: admin.inc.php:225
178
  #, fuzzy
179
  msgid "HTML to display after each list item: "
180
  msgstr "Фармат адлюстравання колькасці праглядаў:"
181
 
182
- #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr ""
185
 
186
- #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr ""
189
 
190
- #: admin.inc.php:233
191
  msgid "Location of post thumbnail:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:237
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
198
 
199
- #: admin.inc.php:241
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, after title"
202
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
203
 
204
- #: admin.inc.php:245
205
  msgid "Display only thumbnails, no text"
206
  msgstr ""
207
 
208
- #: admin.inc.php:249
209
  msgid "Do not display thumbnails, only text."
210
  msgstr ""
211
 
212
- #: admin.inc.php:253
213
  msgid "Maximum width of the thumbnail: "
214
  msgstr ""
215
 
216
- #: admin.inc.php:256
217
  msgid "Maximum height of the thumbnail: "
218
  msgstr ""
219
 
220
- #: admin.inc.php:259
221
  msgid "Use timthumb to generate thumbnails? "
222
  msgstr ""
223
 
224
- #: admin.inc.php:260
225
  msgid ""
226
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
227
  "\">timthumb</a> will be used to generate thumbnails"
228
  msgstr ""
229
 
230
- #: admin.inc.php:262
231
  msgid "Post thumbnail meta field name: "
232
  msgstr ""
233
 
234
- #: admin.inc.php:263
235
  msgid ""
236
  "The value of this field should contain the image source and is set in the "
237
  "<em>Add New Post</em> screen"
238
  msgstr ""
239
 
240
- #: admin.inc.php:265
241
  msgid ""
242
  "If the postmeta is not set, then should the plugin extract the first image "
243
  "from the post?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:266
247
  msgid ""
248
- "This can slow down the loading of your page if the first image in the "
249
  "related posts is large in file-size"
250
  msgstr ""
251
 
252
- #: admin.inc.php:268
253
  msgid "Use default thumbnail? "
254
  msgstr ""
255
 
256
- #: admin.inc.php:269
257
  msgid ""
258
  "If checked, when no thumbnail is found, show a default one from the URL "
259
  "below. If not checked and no thumbnail is found, no image will be shown."
260
  msgstr ""
261
 
262
- #: admin.inc.php:271
263
  msgid "Default thumbnail: "
264
  msgstr ""
265
 
266
- #: admin.inc.php:272
267
  msgid ""
268
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
269
  "then it will check the meta field. If this is not available, then it will "
270
  "show the default image as specified above"
271
  msgstr ""
272
 
273
- #: admin.inc.php:278
274
  msgid "Custom Styles"
275
  msgstr ""
276
 
277
- #: admin.inc.php:281
278
  msgid "Custom CSS to add to header:"
279
  msgstr ""
280
 
281
- #: admin.inc.php:284
282
  msgid ""
283
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
284
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
285
  "available CSS classes to style."
286
  msgstr ""
287
 
288
- #: admin.inc.php:289
289
- msgid "Maintenance"
290
- msgstr ""
291
-
292
  #: admin.inc.php:292
293
- msgid "Enable scheduled maintenance of daily tables:"
294
  msgstr ""
295
 
296
- #: admin.inc.php:294
297
  msgid ""
298
  "Over time the Daily Top 10 database grows in size, which reduces the "
299
  "performance of the plugin. Cleaning the database at regular intervals could "
300
- "improve performance, especially on high traffic blogs"
301
  msgstr ""
302
 
303
  #: admin.inc.php:297
304
- msgid "Time to run maintenance"
 
 
 
305
  msgstr ""
306
 
307
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
308
  msgid "How often should the maintenance be run:"
309
  msgstr ""
310
 
311
- #: admin.inc.php:304
312
  msgid "Daily"
313
  msgstr ""
314
 
315
- #: admin.inc.php:308
316
  msgid "Weekly"
317
  msgstr ""
318
 
319
- #: admin.inc.php:312
320
  msgid "Fortnightly"
321
  msgstr ""
322
 
323
- #: admin.inc.php:316
324
  msgid "Monthly"
325
  msgstr ""
326
 
327
- #: admin.inc.php:325
328
  msgid "The cron job has been scheduled. Maintenance will run "
329
  msgstr ""
330
 
331
- #: admin.inc.php:330
332
  msgid "The cron job is missing. Please resave this page to add the job"
333
  msgstr ""
334
 
335
- #: admin.inc.php:335
336
  msgid "Maintenance is turned off"
337
  msgstr ""
338
 
339
- #: admin.inc.php:343
340
  msgid "Reset count"
341
  msgstr ""
342
 
343
- #: admin.inc.php:346
344
  msgid ""
345
  "This cannot be reversed. Make sure that your database has been backed up "
346
  "before proceeding"
347
  msgstr ""
348
 
349
- #: admin.inc.php:349
350
  #, fuzzy
351
  msgid "Reset Popular Posts"
352
  msgstr "Папулярныя запісы"
353
 
354
- #: admin.inc.php:349
355
  msgid "Are you sure you want to reset the popular posts?"
356
  msgstr ""
357
 
358
- #: admin.inc.php:350
359
  #, fuzzy
360
  msgid "Reset Daily Popular Posts"
361
  msgstr "Папулярныя сёння запісы"
362
 
363
- #: admin.inc.php:350
364
  msgid "Are you sure you want to reset the daily popular posts?"
365
  msgstr ""
366
 
367
- #: admin.inc.php:351
368
  msgid "Clear duplicates"
369
  msgstr ""
370
 
371
- #: admin.inc.php:351
372
  msgid "This will delete the duplicate entries in the tables. Proceed?"
373
  msgstr ""
374
 
375
- #: admin.inc.php:355
376
  #, fuzzy
377
  msgid "Save Options"
378
  msgstr "Налады ўбудовы:"
379
 
380
- #: admin.inc.php:356
381
  #, fuzzy
382
  msgid "Default Options"
383
  msgstr "Налады ўбудовы:"
384
 
385
- #: admin.inc.php:356
386
  msgid "Do you want to set options to Default?"
387
  msgstr "Скінуць налады ўбудовы?"
388
 
389
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
390
  msgid "Popular Posts"
391
  msgstr "Папулярныя запісы"
392
 
393
- #: admin.inc.php:382
394
  msgid "Daily Popular Posts"
395
  msgstr "Папулярныя сёння запісы"
396
 
397
- #: admin.inc.php:404
398
  #, fuzzy
399
  msgid "Support the development"
400
  msgstr "Падтрымаеце стваральніка ўбудовы"
401
 
402
- #: admin.inc.php:412
403
  msgid "Enter amount in USD: "
404
  msgstr ""
405
 
406
- #: admin.inc.php:416
407
  msgid "Send your donation to the author of"
408
  msgstr ""
409
 
410
- #: admin.inc.php:422
411
  msgid "Follow us on Facebook"
412
  msgstr ""
413
 
414
- #: admin.inc.php:426
415
  msgid "Quick Links"
416
  msgstr ""
417
 
418
- #: admin.inc.php:428
419
  msgid "Top 10 plugin page"
420
  msgstr ""
421
 
422
- #: admin.inc.php:429
423
  msgid "Other plugins"
424
  msgstr ""
425
 
426
- #: admin.inc.php:430
427
  msgid "Ajay's blog"
428
  msgstr ""
429
 
430
- #: admin.inc.php:431 top-10.php:583
431
  msgid "Support"
432
  msgstr ""
433
 
434
- #: admin.inc.php:432
435
  msgid "Follow @ajaydsouza on Twitter"
436
  msgstr ""
437
 
438
- #: admin.inc.php:436
439
  msgid "Recent developments"
440
  msgstr ""
441
 
442
- #: admin.inc.php:459 admin.inc.php:461
443
  msgid "Top 10"
444
  msgstr "Топ 10 запісаў"
445
 
446
- #: admin.inc.php:575
447
  msgid "Results"
448
  msgstr "Вынікі"
449
 
450
- #: admin.inc.php:577 admin.inc.php:583
451
  msgid "of"
452
  msgstr "з"
453
 
454
- #: admin.inc.php:581
455
  msgid "Page"
456
  msgstr "Старонка"
457
 
458
- #: admin.inc.php:595
459
  msgid "View Daily Popular Posts"
460
  msgstr "Паглядзець усе Папулярныя сёння запісы"
461
 
462
- #: admin.inc.php:599
463
  msgid "View Overall Popular Posts"
464
  msgstr "Паглядзець усе Папулярныя запісы"
465
 
466
- #: admin.inc.php:603
467
  msgid "Results per-page:"
468
  msgstr "Вынікаў на старонку:"
469
 
470
- #: admin.inc.php:627
471
  msgid "Previous"
472
  msgstr "Папярэдняя старонка"
473
 
474
- #: admin.inc.php:645
475
  msgid "Next"
476
  msgstr "Наступная старонка"
477
 
478
- #: admin.inc.php:668
479
  msgid "Daily Popular"
480
  msgstr "Папулярныя сёння запісы"
481
 
482
- #: admin.inc.php:679
483
  msgid "Total / Today's Views"
484
  msgstr "Усяго / Сёння праглядаў"
485
 
@@ -546,23 +561,23 @@ msgstr "<h3>Папулярныя сёння запісы</h3>"
546
  msgid "No top posts yet"
547
  msgstr "Загаловак блока Папулярных запісаў:"
548
 
549
- #: top-10.php:560
550
  msgid "Once Weekly"
551
  msgstr ""
552
 
553
- #: top-10.php:561
554
  msgid "Once Fortnightly"
555
  msgstr ""
556
 
557
- #: top-10.php:562
558
  msgid "Once Monthly"
559
  msgstr ""
560
 
561
- #: top-10.php:582
562
  msgid "Settings"
563
  msgstr ""
564
 
565
- #: top-10.php:584
566
  msgid "Donate"
567
  msgstr ""
568
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Налады захаваны."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Налады скінуты."
32
 
33
+ #: admin.inc.php:93
34
  #, fuzzy
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Загаловак блока Папулярных запісаў:"
37
 
38
+ #: admin.inc.php:99
39
  #, fuzzy
40
  msgid "Top 10 daily popular posts reset"
41
  msgstr "Загаловак блока Папулярных сёння запісаў:"
42
 
43
+ #: admin.inc.php:106
44
  msgid "Duplicate rows cleaned from tables"
45
  msgstr ""
46
 
47
+ #: admin.inc.php:127
48
  msgid "General options"
49
  msgstr ""
50
 
51
+ #: admin.inc.php:130
52
  msgid "Number of popular posts to display: "
53
  msgstr "Колькасць Папулярных запісаў у спісе:"
54
 
55
+ #: admin.inc.php:133
56
  msgid "Daily Popular should contain views of how many days? "
57
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
58
 
59
+ #: admin.inc.php:136
60
  msgid ""
61
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
62
  "continue to be counted."
64
  "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для "
65
  "старонак будзе падлічвацца."
66
 
67
+ #: admin.inc.php:139
68
  msgid "Exclude Categories: "
69
  msgstr ""
70
 
71
+ #: admin.inc.php:157
72
  #, fuzzy
73
  msgid "Display number of views on:"
74
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
75
 
76
+ #: admin.inc.php:158
77
  msgid "Posts"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:159
81
  #, fuzzy
82
  msgid "Pages"
83
  msgstr "Старонка"
84
 
85
+ #: admin.inc.php:162
86
  msgid "Track visits of authors on their own posts?"
87
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
88
 
89
+ #: admin.inc.php:166
90
  msgid "Display number of page views in popular lists?"
91
  msgstr ""
92
  "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
93
 
94
+ #: admin.inc.php:170
95
  msgid "Force daily posts' list to be dynamic?"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:172
99
  #, fuzzy
100
  msgid ""
101
  "This option uses JavaScript to load the post and can increase your page load "
104
  "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
105
  "і гэта можа павялічыць час загрузкі старонак"
106
 
107
+ #: admin.inc.php:175
108
  msgid "Display page views on Posts > All Posts in Admin"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:179
112
  msgid "Link to Top 10 plugin page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:181
116
  #, fuzzy
117
  msgid ""
118
  "A link to the plugin is added as an extra list item to the list of popular "
121
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
122
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
123
 
124
+ #: admin.inc.php:188
125
  #, fuzzy
126
  msgid "Output Options"
127
  msgstr "Налады ўбудовы:"
128
 
129
+ #: admin.inc.php:191
130
  msgid "Format to display the count in: "
131
  msgstr "Фармат адлюстравання колькасці праглядаў:"
132
 
133
+ #: admin.inc.php:194
134
  #, fuzzy
135
  msgid ""
136
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
142
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
143
  "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
144
 
145
+ #: admin.inc.php:196
146
  msgid "Title of popular posts: "
147
  msgstr "Загаловак блока Папулярных запісаў:"
148
 
149
+ #: admin.inc.php:199
150
  msgid "Title of daily popular posts: "
151
  msgstr "Загаловак блока Папулярных сёння запісаў:"
152
 
153
+ #: admin.inc.php:202
154
  msgid "When there are no posts, what should be shown?"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:206
158
  msgid "Blank Output"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:210
162
  msgid "Display:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:214
166
  msgid "Show post excerpt in list?"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:217
170
  msgid "Length of excerpt (in words): "
171
  msgstr ""
172
 
173
+ #: admin.inc.php:220
174
  msgid "Customize the output:"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:222
178
  msgid "HTML to display before the list of posts: "
179
  msgstr ""
180
 
181
+ #: admin.inc.php:225
182
  msgid "HTML to display before each list item: "
183
  msgstr ""
184
 
185
+ #: admin.inc.php:228
186
  #, fuzzy
187
  msgid "HTML to display after each list item: "
188
  msgstr "Фармат адлюстравання колькасці праглядаў:"
189
 
190
+ #: admin.inc.php:231
191
  msgid "HTML to display after the list of posts: "
192
  msgstr ""
193
 
194
+ #: admin.inc.php:234
195
  msgid "Post thumbnail options:"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:236
199
  msgid "Location of post thumbnail:"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:240
203
  #, fuzzy
204
  msgid "Display thumbnails inline with posts, before title"
205
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
206
 
207
+ #: admin.inc.php:244
208
  #, fuzzy
209
  msgid "Display thumbnails inline with posts, after title"
210
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
211
 
212
+ #: admin.inc.php:248
213
  msgid "Display only thumbnails, no text"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:252
217
  msgid "Do not display thumbnails, only text."
218
  msgstr ""
219
 
220
+ #: admin.inc.php:256
221
  msgid "Maximum width of the thumbnail: "
222
  msgstr ""
223
 
224
+ #: admin.inc.php:259
225
  msgid "Maximum height of the thumbnail: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:262
229
  msgid "Use timthumb to generate thumbnails? "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:263
233
  msgid ""
234
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
235
  "\">timthumb</a> will be used to generate thumbnails"
236
  msgstr ""
237
 
238
+ #: admin.inc.php:265
239
  msgid "Post thumbnail meta field name: "
240
  msgstr ""
241
 
242
+ #: admin.inc.php:266
243
  msgid ""
244
  "The value of this field should contain the image source and is set in the "
245
  "<em>Add New Post</em> screen"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:268
249
  msgid ""
250
  "If the postmeta is not set, then should the plugin extract the first image "
251
  "from the post?"
252
  msgstr ""
253
 
254
+ #: admin.inc.php:269
255
  msgid ""
256
+ "This could slow down the loading of your page if the first image in the "
257
  "related posts is large in file-size"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:271
261
  msgid "Use default thumbnail? "
262
  msgstr ""
263
 
264
+ #: admin.inc.php:272
265
  msgid ""
266
  "If checked, when no thumbnail is found, show a default one from the URL "
267
  "below. If not checked and no thumbnail is found, no image will be shown."
268
  msgstr ""
269
 
270
+ #: admin.inc.php:274
271
  msgid "Default thumbnail: "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:275
275
  msgid ""
276
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
277
  "then it will check the meta field. If this is not available, then it will "
278
  "show the default image as specified above"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:281
282
  msgid "Custom Styles"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:284
286
  msgid "Custom CSS to add to header:"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:287
290
  msgid ""
291
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
292
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
293
  "available CSS classes to style."
294
  msgstr ""
295
 
 
 
 
 
296
  #: admin.inc.php:292
297
+ msgid "Maintenance"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:296
301
  msgid ""
302
  "Over time the Daily Top 10 database grows in size, which reduces the "
303
  "performance of the plugin. Cleaning the database at regular intervals could "
304
+ "improve performance, especially on high traffic blogs."
305
  msgstr ""
306
 
307
  #: admin.inc.php:297
308
+ msgid ""
309
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
310
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
311
+ "causes the daily posts table to reset."
312
  msgstr ""
313
 
314
  #: admin.inc.php:300
315
+ msgid "Enable scheduled maintenance of daily tables:"
316
+ msgstr ""
317
+
318
+ #: admin.inc.php:305
319
+ msgid "Time to run maintenance"
320
+ msgstr ""
321
+
322
+ #: admin.inc.php:308
323
  msgid "How often should the maintenance be run:"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:312
327
  msgid "Daily"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:316
331
  msgid "Weekly"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:320
335
  msgid "Fortnightly"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:324
339
  msgid "Monthly"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:333
343
  msgid "The cron job has been scheduled. Maintenance will run "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:338
347
  msgid "The cron job is missing. Please resave this page to add the job"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:343
351
  msgid "Maintenance is turned off"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:351
355
  msgid "Reset count"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:354
359
  msgid ""
360
  "This cannot be reversed. Make sure that your database has been backed up "
361
  "before proceeding"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:357
365
  #, fuzzy
366
  msgid "Reset Popular Posts"
367
  msgstr "Папулярныя запісы"
368
 
369
+ #: admin.inc.php:357
370
  msgid "Are you sure you want to reset the popular posts?"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:358
374
  #, fuzzy
375
  msgid "Reset Daily Popular Posts"
376
  msgstr "Папулярныя сёння запісы"
377
 
378
+ #: admin.inc.php:358
379
  msgid "Are you sure you want to reset the daily popular posts?"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:359
383
  msgid "Clear duplicates"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:359
387
  msgid "This will delete the duplicate entries in the tables. Proceed?"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:363
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Налады ўбудовы:"
394
 
395
+ #: admin.inc.php:364
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Налады ўбудовы:"
399
 
400
+ #: admin.inc.php:364
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Скінуць налады ўбудовы?"
403
 
404
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
405
  msgid "Popular Posts"
406
  msgstr "Папулярныя запісы"
407
 
408
+ #: admin.inc.php:390
409
  msgid "Daily Popular Posts"
410
  msgstr "Папулярныя сёння запісы"
411
 
412
+ #: admin.inc.php:412
413
  #, fuzzy
414
  msgid "Support the development"
415
  msgstr "Падтрымаеце стваральніка ўбудовы"
416
 
417
+ #: admin.inc.php:420
418
  msgid "Enter amount in USD: "
419
  msgstr ""
420
 
421
+ #: admin.inc.php:424
422
  msgid "Send your donation to the author of"
423
  msgstr ""
424
 
425
+ #: admin.inc.php:430
426
  msgid "Follow us on Facebook"
427
  msgstr ""
428
 
429
+ #: admin.inc.php:434
430
  msgid "Quick Links"
431
  msgstr ""
432
 
433
+ #: admin.inc.php:436
434
  msgid "Top 10 plugin page"
435
  msgstr ""
436
 
437
+ #: admin.inc.php:437
438
  msgid "Other plugins"
439
  msgstr ""
440
 
441
+ #: admin.inc.php:438
442
  msgid "Ajay's blog"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:439 top-10.php:588
446
  msgid "Support"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:440
450
  msgid "Follow @ajaydsouza on Twitter"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:444
454
  msgid "Recent developments"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:467 admin.inc.php:469
458
  msgid "Top 10"
459
  msgstr "Топ 10 запісаў"
460
 
461
+ #: admin.inc.php:583
462
  msgid "Results"
463
  msgstr "Вынікі"
464
 
465
+ #: admin.inc.php:585 admin.inc.php:591
466
  msgid "of"
467
  msgstr "з"
468
 
469
+ #: admin.inc.php:589
470
  msgid "Page"
471
  msgstr "Старонка"
472
 
473
+ #: admin.inc.php:603
474
  msgid "View Daily Popular Posts"
475
  msgstr "Паглядзець усе Папулярныя сёння запісы"
476
 
477
+ #: admin.inc.php:607
478
  msgid "View Overall Popular Posts"
479
  msgstr "Паглядзець усе Папулярныя запісы"
480
 
481
+ #: admin.inc.php:611
482
  msgid "Results per-page:"
483
  msgstr "Вынікаў на старонку:"
484
 
485
+ #: admin.inc.php:635
486
  msgid "Previous"
487
  msgstr "Папярэдняя старонка"
488
 
489
+ #: admin.inc.php:653
490
  msgid "Next"
491
  msgstr "Наступная старонка"
492
 
493
+ #: admin.inc.php:676
494
  msgid "Daily Popular"
495
  msgstr "Папулярныя сёння запісы"
496
 
497
+ #: admin.inc.php:687
498
  msgid "Total / Today's Views"
499
  msgstr "Усяго / Сёння праглядаў"
500
 
561
  msgid "No top posts yet"
562
  msgstr "Загаловак блока Папулярных запісаў:"
563
 
564
+ #: top-10.php:565
565
  msgid "Once Weekly"
566
  msgstr ""
567
 
568
+ #: top-10.php:566
569
  msgid "Once Fortnightly"
570
  msgstr ""
571
 
572
+ #: top-10.php:567
573
  msgid "Once Monthly"
574
  msgstr ""
575
 
576
+ #: top-10.php:587
577
  msgid "Settings"
578
  msgstr ""
579
 
580
+ #: top-10.php:589
581
  msgid "Donate"
582
  msgstr ""
583
 
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: 2012-08-12 16:55-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"
@@ -14,101 +14,109 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr ""
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
 
49
- #: admin.inc.php:133
50
  msgid ""
51
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
52
  "continue to be counted."
53
  msgstr ""
54
 
55
- #: admin.inc.php:136
56
  msgid "Exclude Categories: "
57
  msgstr ""
58
 
59
- #: admin.inc.php:154
60
  msgid "Display number of views on:"
61
  msgstr ""
62
 
63
- #: admin.inc.php:155
64
  msgid "Posts"
65
  msgstr ""
66
 
67
- #: admin.inc.php:156
68
  msgid "Pages"
69
  msgstr ""
70
 
71
- #: admin.inc.php:159
72
  msgid "Track visits of authors on their own posts?"
73
  msgstr ""
74
 
75
- #: admin.inc.php:163
76
  msgid "Display number of page views in popular lists?"
77
  msgstr ""
78
 
79
- #: admin.inc.php:167
80
  msgid "Force daily posts' list to be dynamic?"
81
  msgstr ""
82
 
83
- #: admin.inc.php:169
84
  msgid ""
85
  "This option uses JavaScript to load the post and can increase your page load "
86
  "time"
87
  msgstr ""
88
 
89
- #: admin.inc.php:172
90
  msgid "Display page views on Posts > All Posts in Admin"
91
  msgstr ""
92
 
93
- #: admin.inc.php:176
94
  msgid "Link to Top 10 plugin page"
95
  msgstr ""
96
 
97
- #: admin.inc.php:178
98
  msgid ""
99
  "A link to the plugin is added as an extra list item to the list of popular "
100
  "posts"
101
  msgstr ""
102
 
103
- #: admin.inc.php:185
104
  msgid "Output Options"
105
  msgstr ""
106
 
107
- #: admin.inc.php:188
108
  msgid "Format to display the count in: "
109
  msgstr ""
110
 
111
- #: admin.inc.php:191
112
  msgid ""
113
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
114
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -116,344 +124,351 @@ msgid ""
116
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
117
  msgstr ""
118
 
119
- #: admin.inc.php:193
120
  msgid "Title of popular posts: "
121
  msgstr ""
122
 
123
- #: admin.inc.php:196
124
  msgid "Title of daily popular posts: "
125
  msgstr ""
126
 
127
- #: admin.inc.php:199
128
  msgid "When there are no posts, what should be shown?"
129
  msgstr ""
130
 
131
- #: admin.inc.php:203
132
  msgid "Blank Output"
133
  msgstr ""
134
 
135
- #: admin.inc.php:207
136
  msgid "Display:"
137
  msgstr ""
138
 
139
- #: admin.inc.php:211
140
  msgid "Show post excerpt in list?"
141
  msgstr ""
142
 
143
- #: admin.inc.php:214
144
  msgid "Length of excerpt (in words): "
145
  msgstr ""
146
 
147
- #: admin.inc.php:217
148
  msgid "Customize the output:"
149
  msgstr ""
150
 
151
- #: admin.inc.php:219
152
  msgid "HTML to display before the list of posts: "
153
  msgstr ""
154
 
155
- #: admin.inc.php:222
156
  msgid "HTML to display before each list item: "
157
  msgstr ""
158
 
159
- #: admin.inc.php:225
160
  msgid "HTML to display after each list item: "
161
  msgstr ""
162
 
163
- #: admin.inc.php:228
164
  msgid "HTML to display after the list of posts: "
165
  msgstr ""
166
 
167
- #: admin.inc.php:231
168
  msgid "Post thumbnail options:"
169
  msgstr ""
170
 
171
- #: admin.inc.php:233
172
  msgid "Location of post thumbnail:"
173
  msgstr ""
174
 
175
- #: admin.inc.php:237
176
  msgid "Display thumbnails inline with posts, before title"
177
  msgstr ""
178
 
179
- #: admin.inc.php:241
180
  msgid "Display thumbnails inline with posts, after title"
181
  msgstr ""
182
 
183
- #: admin.inc.php:245
184
  msgid "Display only thumbnails, no text"
185
  msgstr ""
186
 
187
- #: admin.inc.php:249
188
  msgid "Do not display thumbnails, only text."
189
  msgstr ""
190
 
191
- #: admin.inc.php:253
192
  msgid "Maximum width of the thumbnail: "
193
  msgstr ""
194
 
195
- #: admin.inc.php:256
196
  msgid "Maximum height of the thumbnail: "
197
  msgstr ""
198
 
199
- #: admin.inc.php:259
200
  msgid "Use timthumb to generate thumbnails? "
201
  msgstr ""
202
 
203
- #: admin.inc.php:260
204
  msgid ""
205
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
206
  "\">timthumb</a> will be used to generate thumbnails"
207
  msgstr ""
208
 
209
- #: admin.inc.php:262
210
  msgid "Post thumbnail meta field name: "
211
  msgstr ""
212
 
213
- #: admin.inc.php:263
214
  msgid ""
215
  "The value of this field should contain the image source and is set in the "
216
  "<em>Add New Post</em> screen"
217
  msgstr ""
218
 
219
- #: admin.inc.php:265
220
  msgid ""
221
  "If the postmeta is not set, then should the plugin extract the first image "
222
  "from the post?"
223
  msgstr ""
224
 
225
- #: admin.inc.php:266
226
  msgid ""
227
- "This can slow down the loading of your page if the first image in the "
228
  "related posts is large in file-size"
229
  msgstr ""
230
 
231
- #: admin.inc.php:268
232
  msgid "Use default thumbnail? "
233
  msgstr ""
234
 
235
- #: admin.inc.php:269
236
  msgid ""
237
  "If checked, when no thumbnail is found, show a default one from the URL "
238
  "below. If not checked and no thumbnail is found, no image will be shown."
239
  msgstr ""
240
 
241
- #: admin.inc.php:271
242
  msgid "Default thumbnail: "
243
  msgstr ""
244
 
245
- #: admin.inc.php:272
246
  msgid ""
247
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
248
  "then it will check the meta field. If this is not available, then it will "
249
  "show the default image as specified above"
250
  msgstr ""
251
 
252
- #: admin.inc.php:278
253
  msgid "Custom Styles"
254
  msgstr ""
255
 
256
- #: admin.inc.php:281
257
  msgid "Custom CSS to add to header:"
258
  msgstr ""
259
 
260
- #: admin.inc.php:284
261
  msgid ""
262
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
263
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
264
  "available CSS classes to style."
265
  msgstr ""
266
 
267
- #: admin.inc.php:289
268
- msgid "Maintenance"
269
- msgstr ""
270
-
271
  #: admin.inc.php:292
272
- msgid "Enable scheduled maintenance of daily tables:"
273
  msgstr ""
274
 
275
- #: admin.inc.php:294
276
  msgid ""
277
  "Over time the Daily Top 10 database grows in size, which reduces the "
278
  "performance of the plugin. Cleaning the database at regular intervals could "
279
- "improve performance, especially on high traffic blogs"
280
  msgstr ""
281
 
282
  #: admin.inc.php:297
283
- msgid "Time to run maintenance"
 
 
 
284
  msgstr ""
285
 
286
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
287
  msgid "How often should the maintenance be run:"
288
  msgstr ""
289
 
290
- #: admin.inc.php:304
291
  msgid "Daily"
292
  msgstr ""
293
 
294
- #: admin.inc.php:308
295
  msgid "Weekly"
296
  msgstr ""
297
 
298
- #: admin.inc.php:312
299
  msgid "Fortnightly"
300
  msgstr ""
301
 
302
- #: admin.inc.php:316
303
  msgid "Monthly"
304
  msgstr ""
305
 
306
- #: admin.inc.php:325
307
  msgid "The cron job has been scheduled. Maintenance will run "
308
  msgstr ""
309
 
310
- #: admin.inc.php:330
311
  msgid "The cron job is missing. Please resave this page to add the job"
312
  msgstr ""
313
 
314
- #: admin.inc.php:335
315
  msgid "Maintenance is turned off"
316
  msgstr ""
317
 
318
- #: admin.inc.php:343
319
  msgid "Reset count"
320
  msgstr ""
321
 
322
- #: admin.inc.php:346
323
  msgid ""
324
  "This cannot be reversed. Make sure that your database has been backed up "
325
  "before proceeding"
326
  msgstr ""
327
 
328
- #: admin.inc.php:349
329
  msgid "Reset Popular Posts"
330
  msgstr ""
331
 
332
- #: admin.inc.php:349
333
  msgid "Are you sure you want to reset the popular posts?"
334
  msgstr ""
335
 
336
- #: admin.inc.php:350
337
  msgid "Reset Daily Popular Posts"
338
  msgstr ""
339
 
340
- #: admin.inc.php:350
341
  msgid "Are you sure you want to reset the daily popular posts?"
342
  msgstr ""
343
 
344
- #: admin.inc.php:351
345
  msgid "Clear duplicates"
346
  msgstr ""
347
 
348
- #: admin.inc.php:351
349
  msgid "This will delete the duplicate entries in the tables. Proceed?"
350
  msgstr ""
351
 
352
- #: admin.inc.php:355
353
  msgid "Save Options"
354
  msgstr ""
355
 
356
- #: admin.inc.php:356
357
  msgid "Default Options"
358
  msgstr ""
359
 
360
- #: admin.inc.php:356
361
  msgid "Do you want to set options to Default?"
362
  msgstr ""
363
 
364
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
365
  msgid "Popular Posts"
366
  msgstr ""
367
 
368
- #: admin.inc.php:382
369
  msgid "Daily Popular Posts"
370
  msgstr ""
371
 
372
- #: admin.inc.php:404
373
  msgid "Support the development"
374
  msgstr ""
375
 
376
- #: admin.inc.php:412
377
  msgid "Enter amount in USD: "
378
  msgstr ""
379
 
380
- #: admin.inc.php:416
381
  msgid "Send your donation to the author of"
382
  msgstr ""
383
 
384
- #: admin.inc.php:422
385
  msgid "Follow us on Facebook"
386
  msgstr ""
387
 
388
- #: admin.inc.php:426
389
  msgid "Quick Links"
390
  msgstr ""
391
 
392
- #: admin.inc.php:428
393
  msgid "Top 10 plugin page"
394
  msgstr ""
395
 
396
- #: admin.inc.php:429
397
  msgid "Other plugins"
398
  msgstr ""
399
 
400
- #: admin.inc.php:430
401
  msgid "Ajay's blog"
402
  msgstr ""
403
 
404
- #: admin.inc.php:431 top-10.php:583
405
  msgid "Support"
406
  msgstr ""
407
 
408
- #: admin.inc.php:432
409
  msgid "Follow @ajaydsouza on Twitter"
410
  msgstr ""
411
 
412
- #: admin.inc.php:436
413
  msgid "Recent developments"
414
  msgstr ""
415
 
416
- #: admin.inc.php:459 admin.inc.php:461
417
  msgid "Top 10"
418
  msgstr ""
419
 
420
- #: admin.inc.php:575
421
  msgid "Results"
422
  msgstr ""
423
 
424
- #: admin.inc.php:577 admin.inc.php:583
425
  msgid "of"
426
  msgstr ""
427
 
428
- #: admin.inc.php:581
429
  msgid "Page"
430
  msgstr ""
431
 
432
- #: admin.inc.php:595
433
  msgid "View Daily Popular Posts"
434
  msgstr ""
435
 
436
- #: admin.inc.php:599
437
  msgid "View Overall Popular Posts"
438
  msgstr ""
439
 
440
- #: admin.inc.php:603
441
  msgid "Results per-page:"
442
  msgstr ""
443
 
444
- #: admin.inc.php:627
445
  msgid "Previous"
446
  msgstr ""
447
 
448
- #: admin.inc.php:645
449
  msgid "Next"
450
  msgstr ""
451
 
452
- #: admin.inc.php:668
453
  msgid "Daily Popular"
454
  msgstr ""
455
 
456
- #: admin.inc.php:679
457
  msgid "Total / Today's Views"
458
  msgstr ""
459
 
@@ -517,22 +532,22 @@ msgstr ""
517
  msgid "No top posts yet"
518
  msgstr ""
519
 
520
- #: top-10.php:560
521
  msgid "Once Weekly"
522
  msgstr ""
523
 
524
- #: top-10.php:561
525
  msgid "Once Fortnightly"
526
  msgstr ""
527
 
528
- #: top-10.php:562
529
  msgid "Once Monthly"
530
  msgstr ""
531
 
532
- #: top-10.php:582
533
  msgid "Settings"
534
  msgstr ""
535
 
536
- #: top-10.php:584
537
  msgid "Donate"
538
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:39-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr ""
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr ""
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
+ #: admin.inc.php:136
58
  msgid ""
59
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
60
  "continue to be counted."
61
  msgstr ""
62
 
63
+ #: admin.inc.php:139
64
  msgid "Exclude Categories: "
65
  msgstr ""
66
 
67
+ #: admin.inc.php:157
68
  msgid "Display number of views on:"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:158
72
  msgid "Posts"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:159
76
  msgid "Pages"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:162
80
  msgid "Track visits of authors on their own posts?"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:166
84
  msgid "Display number of page views in popular lists?"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:170
88
  msgid "Force daily posts' list to be dynamic?"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:172
92
  msgid ""
93
  "This option uses JavaScript to load the post and can increase your page load "
94
  "time"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:175
98
  msgid "Display page views on Posts > All Posts in Admin"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:179
102
  msgid "Link to Top 10 plugin page"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:181
106
  msgid ""
107
  "A link to the plugin is added as an extra list item to the list of popular "
108
  "posts"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:188
112
  msgid "Output Options"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:191
116
  msgid "Format to display the count in: "
117
  msgstr ""
118
 
119
+ #: admin.inc.php:194
120
  msgid ""
121
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
122
  "%</code> to display the daily count and <code>%overallcount%</code> to "
124
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:196
128
  msgid "Title of popular posts: "
129
  msgstr ""
130
 
131
+ #: admin.inc.php:199
132
  msgid "Title of daily popular posts: "
133
  msgstr ""
134
 
135
+ #: admin.inc.php:202
136
  msgid "When there are no posts, what should be shown?"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:206
140
  msgid "Blank Output"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:210
144
  msgid "Display:"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:214
148
  msgid "Show post excerpt in list?"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:217
152
  msgid "Length of excerpt (in words): "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:220
156
  msgid "Customize the output:"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:222
160
  msgid "HTML to display before the list of posts: "
161
  msgstr ""
162
 
163
+ #: admin.inc.php:225
164
  msgid "HTML to display before each list item: "
165
  msgstr ""
166
 
167
+ #: admin.inc.php:228
168
  msgid "HTML to display after each list item: "
169
  msgstr ""
170
 
171
+ #: admin.inc.php:231
172
  msgid "HTML to display after the list of posts: "
173
  msgstr ""
174
 
175
+ #: admin.inc.php:234
176
  msgid "Post thumbnail options:"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:236
180
  msgid "Location of post thumbnail:"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:240
184
  msgid "Display thumbnails inline with posts, before title"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:244
188
  msgid "Display thumbnails inline with posts, after title"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:248
192
  msgid "Display only thumbnails, no text"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:252
196
  msgid "Do not display thumbnails, only text."
197
  msgstr ""
198
 
199
+ #: admin.inc.php:256
200
  msgid "Maximum width of the thumbnail: "
201
  msgstr ""
202
 
203
+ #: admin.inc.php:259
204
  msgid "Maximum height of the thumbnail: "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:262
208
  msgid "Use timthumb to generate thumbnails? "
209
  msgstr ""
210
 
211
+ #: admin.inc.php:263
212
  msgid ""
213
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
214
  "\">timthumb</a> will be used to generate thumbnails"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:265
218
  msgid "Post thumbnail meta field name: "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:266
222
  msgid ""
223
  "The value of this field should contain the image source and is set in the "
224
  "<em>Add New Post</em> screen"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:268
228
  msgid ""
229
  "If the postmeta is not set, then should the plugin extract the first image "
230
  "from the post?"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:269
234
  msgid ""
235
+ "This could slow down the loading of your page if the first image in the "
236
  "related posts is large in file-size"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:271
240
  msgid "Use default thumbnail? "
241
  msgstr ""
242
 
243
+ #: admin.inc.php:272
244
  msgid ""
245
  "If checked, when no thumbnail is found, show a default one from the URL "
246
  "below. If not checked and no thumbnail is found, no image will be shown."
247
  msgstr ""
248
 
249
+ #: admin.inc.php:274
250
  msgid "Default thumbnail: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:275
254
  msgid ""
255
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
256
  "then it will check the meta field. If this is not available, then it will "
257
  "show the default image as specified above"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:281
261
  msgid "Custom Styles"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:284
265
  msgid "Custom CSS to add to header:"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:287
269
  msgid ""
270
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
271
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
272
  "available CSS classes to style."
273
  msgstr ""
274
 
 
 
 
 
275
  #: admin.inc.php:292
276
+ msgid "Maintenance"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:296
280
  msgid ""
281
  "Over time the Daily Top 10 database grows in size, which reduces the "
282
  "performance of the plugin. Cleaning the database at regular intervals could "
283
+ "improve performance, especially on high traffic blogs."
284
  msgstr ""
285
 
286
  #: admin.inc.php:297
287
+ msgid ""
288
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
289
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
290
+ "causes the daily posts table to reset."
291
  msgstr ""
292
 
293
  #: admin.inc.php:300
294
+ msgid "Enable scheduled maintenance of daily tables:"
295
+ msgstr ""
296
+
297
+ #: admin.inc.php:305
298
+ msgid "Time to run maintenance"
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:308
302
  msgid "How often should the maintenance be run:"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:312
306
  msgid "Daily"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:316
310
  msgid "Weekly"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:320
314
  msgid "Fortnightly"
315
  msgstr ""
316
 
317
+ #: admin.inc.php:324
318
  msgid "Monthly"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:333
322
  msgid "The cron job has been scheduled. Maintenance will run "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:338
326
  msgid "The cron job is missing. Please resave this page to add the job"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:343
330
  msgid "Maintenance is turned off"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:351
334
  msgid "Reset count"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:354
338
  msgid ""
339
  "This cannot be reversed. Make sure that your database has been backed up "
340
  "before proceeding"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:357
344
  msgid "Reset Popular Posts"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:357
348
  msgid "Are you sure you want to reset the popular posts?"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:358
352
  msgid "Reset Daily Popular Posts"
353
  msgstr ""
354
 
355
+ #: admin.inc.php:358
356
  msgid "Are you sure you want to reset the daily popular posts?"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:359
360
  msgid "Clear duplicates"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:359
364
  msgid "This will delete the duplicate entries in the tables. Proceed?"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:363
368
  msgid "Save Options"
369
  msgstr ""
370
 
371
+ #: admin.inc.php:364
372
  msgid "Default Options"
373
  msgstr ""
374
 
375
+ #: admin.inc.php:364
376
  msgid "Do you want to set options to Default?"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
380
  msgid "Popular Posts"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:390
384
  msgid "Daily Popular Posts"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:412
388
  msgid "Support the development"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:420
392
  msgid "Enter amount in USD: "
393
  msgstr ""
394
 
395
+ #: admin.inc.php:424
396
  msgid "Send your donation to the author of"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:430
400
  msgid "Follow us on Facebook"
401
  msgstr ""
402
 
403
+ #: admin.inc.php:434
404
  msgid "Quick Links"
405
  msgstr ""
406
 
407
+ #: admin.inc.php:436
408
  msgid "Top 10 plugin page"
409
  msgstr ""
410
 
411
+ #: admin.inc.php:437
412
  msgid "Other plugins"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:438
416
  msgid "Ajay's blog"
417
  msgstr ""
418
 
419
+ #: admin.inc.php:439 top-10.php:588
420
  msgid "Support"
421
  msgstr ""
422
 
423
+ #: admin.inc.php:440
424
  msgid "Follow @ajaydsouza on Twitter"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:444
428
  msgid "Recent developments"
429
  msgstr ""
430
 
431
+ #: admin.inc.php:467 admin.inc.php:469
432
  msgid "Top 10"
433
  msgstr ""
434
 
435
+ #: admin.inc.php:583
436
  msgid "Results"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:585 admin.inc.php:591
440
  msgid "of"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:589
444
  msgid "Page"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:603
448
  msgid "View Daily Popular Posts"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:607
452
  msgid "View Overall Popular Posts"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:611
456
  msgid "Results per-page:"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:635
460
  msgid "Previous"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:653
464
  msgid "Next"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:676
468
  msgid "Daily Popular"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:687
472
  msgid "Total / Today's Views"
473
  msgstr ""
474
 
532
  msgid "No top posts yet"
533
  msgstr ""
534
 
535
+ #: top-10.php:565
536
  msgid "Once Weekly"
537
  msgstr ""
538
 
539
+ #: top-10.php:566
540
  msgid "Once Fortnightly"
541
  msgstr ""
542
 
543
+ #: top-10.php:567
544
  msgid "Once Monthly"
545
  msgstr ""
546
 
547
+ #: top-10.php:587
548
  msgid "Settings"
549
  msgstr ""
550
 
551
+ #: top-10.php:589
552
  msgid "Donate"
553
  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: 2012-08-12 16:55-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"
@@ -14,101 +14,109 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr ""
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
 
49
- #: admin.inc.php:133
50
  msgid ""
51
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
52
  "continue to be counted."
53
  msgstr ""
54
 
55
- #: admin.inc.php:136
56
  msgid "Exclude Categories: "
57
  msgstr ""
58
 
59
- #: admin.inc.php:154
60
  msgid "Display number of views on:"
61
  msgstr ""
62
 
63
- #: admin.inc.php:155
64
  msgid "Posts"
65
  msgstr ""
66
 
67
- #: admin.inc.php:156
68
  msgid "Pages"
69
  msgstr ""
70
 
71
- #: admin.inc.php:159
72
  msgid "Track visits of authors on their own posts?"
73
  msgstr ""
74
 
75
- #: admin.inc.php:163
76
  msgid "Display number of page views in popular lists?"
77
  msgstr ""
78
 
79
- #: admin.inc.php:167
80
  msgid "Force daily posts' list to be dynamic?"
81
  msgstr ""
82
 
83
- #: admin.inc.php:169
84
  msgid ""
85
  "This option uses JavaScript to load the post and can increase your page load "
86
  "time"
87
  msgstr ""
88
 
89
- #: admin.inc.php:172
90
  msgid "Display page views on Posts > All Posts in Admin"
91
  msgstr ""
92
 
93
- #: admin.inc.php:176
94
  msgid "Link to Top 10 plugin page"
95
  msgstr ""
96
 
97
- #: admin.inc.php:178
98
  msgid ""
99
  "A link to the plugin is added as an extra list item to the list of popular "
100
  "posts"
101
  msgstr ""
102
 
103
- #: admin.inc.php:185
104
  msgid "Output Options"
105
  msgstr ""
106
 
107
- #: admin.inc.php:188
108
  msgid "Format to display the count in: "
109
  msgstr ""
110
 
111
- #: admin.inc.php:191
112
  msgid ""
113
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
114
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -116,344 +124,351 @@ msgid ""
116
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
117
  msgstr ""
118
 
119
- #: admin.inc.php:193
120
  msgid "Title of popular posts: "
121
  msgstr ""
122
 
123
- #: admin.inc.php:196
124
  msgid "Title of daily popular posts: "
125
  msgstr ""
126
 
127
- #: admin.inc.php:199
128
  msgid "When there are no posts, what should be shown?"
129
  msgstr ""
130
 
131
- #: admin.inc.php:203
132
  msgid "Blank Output"
133
  msgstr ""
134
 
135
- #: admin.inc.php:207
136
  msgid "Display:"
137
  msgstr ""
138
 
139
- #: admin.inc.php:211
140
  msgid "Show post excerpt in list?"
141
  msgstr ""
142
 
143
- #: admin.inc.php:214
144
  msgid "Length of excerpt (in words): "
145
  msgstr ""
146
 
147
- #: admin.inc.php:217
148
  msgid "Customize the output:"
149
  msgstr ""
150
 
151
- #: admin.inc.php:219
152
  msgid "HTML to display before the list of posts: "
153
  msgstr ""
154
 
155
- #: admin.inc.php:222
156
  msgid "HTML to display before each list item: "
157
  msgstr ""
158
 
159
- #: admin.inc.php:225
160
  msgid "HTML to display after each list item: "
161
  msgstr ""
162
 
163
- #: admin.inc.php:228
164
  msgid "HTML to display after the list of posts: "
165
  msgstr ""
166
 
167
- #: admin.inc.php:231
168
  msgid "Post thumbnail options:"
169
  msgstr ""
170
 
171
- #: admin.inc.php:233
172
  msgid "Location of post thumbnail:"
173
  msgstr ""
174
 
175
- #: admin.inc.php:237
176
  msgid "Display thumbnails inline with posts, before title"
177
  msgstr ""
178
 
179
- #: admin.inc.php:241
180
  msgid "Display thumbnails inline with posts, after title"
181
  msgstr ""
182
 
183
- #: admin.inc.php:245
184
  msgid "Display only thumbnails, no text"
185
  msgstr ""
186
 
187
- #: admin.inc.php:249
188
  msgid "Do not display thumbnails, only text."
189
  msgstr ""
190
 
191
- #: admin.inc.php:253
192
  msgid "Maximum width of the thumbnail: "
193
  msgstr ""
194
 
195
- #: admin.inc.php:256
196
  msgid "Maximum height of the thumbnail: "
197
  msgstr ""
198
 
199
- #: admin.inc.php:259
200
  msgid "Use timthumb to generate thumbnails? "
201
  msgstr ""
202
 
203
- #: admin.inc.php:260
204
  msgid ""
205
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
206
  "\">timthumb</a> will be used to generate thumbnails"
207
  msgstr ""
208
 
209
- #: admin.inc.php:262
210
  msgid "Post thumbnail meta field name: "
211
  msgstr ""
212
 
213
- #: admin.inc.php:263
214
  msgid ""
215
  "The value of this field should contain the image source and is set in the "
216
  "<em>Add New Post</em> screen"
217
  msgstr ""
218
 
219
- #: admin.inc.php:265
220
  msgid ""
221
  "If the postmeta is not set, then should the plugin extract the first image "
222
  "from the post?"
223
  msgstr ""
224
 
225
- #: admin.inc.php:266
226
  msgid ""
227
- "This can slow down the loading of your page if the first image in the "
228
  "related posts is large in file-size"
229
  msgstr ""
230
 
231
- #: admin.inc.php:268
232
  msgid "Use default thumbnail? "
233
  msgstr ""
234
 
235
- #: admin.inc.php:269
236
  msgid ""
237
  "If checked, when no thumbnail is found, show a default one from the URL "
238
  "below. If not checked and no thumbnail is found, no image will be shown."
239
  msgstr ""
240
 
241
- #: admin.inc.php:271
242
  msgid "Default thumbnail: "
243
  msgstr ""
244
 
245
- #: admin.inc.php:272
246
  msgid ""
247
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
248
  "then it will check the meta field. If this is not available, then it will "
249
  "show the default image as specified above"
250
  msgstr ""
251
 
252
- #: admin.inc.php:278
253
  msgid "Custom Styles"
254
  msgstr ""
255
 
256
- #: admin.inc.php:281
257
  msgid "Custom CSS to add to header:"
258
  msgstr ""
259
 
260
- #: admin.inc.php:284
261
  msgid ""
262
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
263
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
264
  "available CSS classes to style."
265
  msgstr ""
266
 
267
- #: admin.inc.php:289
268
- msgid "Maintenance"
269
- msgstr ""
270
-
271
  #: admin.inc.php:292
272
- msgid "Enable scheduled maintenance of daily tables:"
273
  msgstr ""
274
 
275
- #: admin.inc.php:294
276
  msgid ""
277
  "Over time the Daily Top 10 database grows in size, which reduces the "
278
  "performance of the plugin. Cleaning the database at regular intervals could "
279
- "improve performance, especially on high traffic blogs"
280
  msgstr ""
281
 
282
  #: admin.inc.php:297
283
- msgid "Time to run maintenance"
 
 
 
284
  msgstr ""
285
 
286
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
287
  msgid "How often should the maintenance be run:"
288
  msgstr ""
289
 
290
- #: admin.inc.php:304
291
  msgid "Daily"
292
  msgstr ""
293
 
294
- #: admin.inc.php:308
295
  msgid "Weekly"
296
  msgstr ""
297
 
298
- #: admin.inc.php:312
299
  msgid "Fortnightly"
300
  msgstr ""
301
 
302
- #: admin.inc.php:316
303
  msgid "Monthly"
304
  msgstr ""
305
 
306
- #: admin.inc.php:325
307
  msgid "The cron job has been scheduled. Maintenance will run "
308
  msgstr ""
309
 
310
- #: admin.inc.php:330
311
  msgid "The cron job is missing. Please resave this page to add the job"
312
  msgstr ""
313
 
314
- #: admin.inc.php:335
315
  msgid "Maintenance is turned off"
316
  msgstr ""
317
 
318
- #: admin.inc.php:343
319
  msgid "Reset count"
320
  msgstr ""
321
 
322
- #: admin.inc.php:346
323
  msgid ""
324
  "This cannot be reversed. Make sure that your database has been backed up "
325
  "before proceeding"
326
  msgstr ""
327
 
328
- #: admin.inc.php:349
329
  msgid "Reset Popular Posts"
330
  msgstr ""
331
 
332
- #: admin.inc.php:349
333
  msgid "Are you sure you want to reset the popular posts?"
334
  msgstr ""
335
 
336
- #: admin.inc.php:350
337
  msgid "Reset Daily Popular Posts"
338
  msgstr ""
339
 
340
- #: admin.inc.php:350
341
  msgid "Are you sure you want to reset the daily popular posts?"
342
  msgstr ""
343
 
344
- #: admin.inc.php:351
345
  msgid "Clear duplicates"
346
  msgstr ""
347
 
348
- #: admin.inc.php:351
349
  msgid "This will delete the duplicate entries in the tables. Proceed?"
350
  msgstr ""
351
 
352
- #: admin.inc.php:355
353
  msgid "Save Options"
354
  msgstr ""
355
 
356
- #: admin.inc.php:356
357
  msgid "Default Options"
358
  msgstr ""
359
 
360
- #: admin.inc.php:356
361
  msgid "Do you want to set options to Default?"
362
  msgstr ""
363
 
364
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
365
  msgid "Popular Posts"
366
  msgstr ""
367
 
368
- #: admin.inc.php:382
369
  msgid "Daily Popular Posts"
370
  msgstr ""
371
 
372
- #: admin.inc.php:404
373
  msgid "Support the development"
374
  msgstr ""
375
 
376
- #: admin.inc.php:412
377
  msgid "Enter amount in USD: "
378
  msgstr ""
379
 
380
- #: admin.inc.php:416
381
  msgid "Send your donation to the author of"
382
  msgstr ""
383
 
384
- #: admin.inc.php:422
385
  msgid "Follow us on Facebook"
386
  msgstr ""
387
 
388
- #: admin.inc.php:426
389
  msgid "Quick Links"
390
  msgstr ""
391
 
392
- #: admin.inc.php:428
393
  msgid "Top 10 plugin page"
394
  msgstr ""
395
 
396
- #: admin.inc.php:429
397
  msgid "Other plugins"
398
  msgstr ""
399
 
400
- #: admin.inc.php:430
401
  msgid "Ajay's blog"
402
  msgstr ""
403
 
404
- #: admin.inc.php:431 top-10.php:583
405
  msgid "Support"
406
  msgstr ""
407
 
408
- #: admin.inc.php:432
409
  msgid "Follow @ajaydsouza on Twitter"
410
  msgstr ""
411
 
412
- #: admin.inc.php:436
413
  msgid "Recent developments"
414
  msgstr ""
415
 
416
- #: admin.inc.php:459 admin.inc.php:461
417
  msgid "Top 10"
418
  msgstr ""
419
 
420
- #: admin.inc.php:575
421
  msgid "Results"
422
  msgstr ""
423
 
424
- #: admin.inc.php:577 admin.inc.php:583
425
  msgid "of"
426
  msgstr ""
427
 
428
- #: admin.inc.php:581
429
  msgid "Page"
430
  msgstr ""
431
 
432
- #: admin.inc.php:595
433
  msgid "View Daily Popular Posts"
434
  msgstr ""
435
 
436
- #: admin.inc.php:599
437
  msgid "View Overall Popular Posts"
438
  msgstr ""
439
 
440
- #: admin.inc.php:603
441
  msgid "Results per-page:"
442
  msgstr ""
443
 
444
- #: admin.inc.php:627
445
  msgid "Previous"
446
  msgstr ""
447
 
448
- #: admin.inc.php:645
449
  msgid "Next"
450
  msgstr ""
451
 
452
- #: admin.inc.php:668
453
  msgid "Daily Popular"
454
  msgstr ""
455
 
456
- #: admin.inc.php:679
457
  msgid "Total / Today's Views"
458
  msgstr ""
459
 
@@ -517,22 +532,22 @@ msgstr ""
517
  msgid "No top posts yet"
518
  msgstr ""
519
 
520
- #: top-10.php:560
521
  msgid "Once Weekly"
522
  msgstr ""
523
 
524
- #: top-10.php:561
525
  msgid "Once Fortnightly"
526
  msgstr ""
527
 
528
- #: top-10.php:562
529
  msgid "Once Monthly"
530
  msgstr ""
531
 
532
- #: top-10.php:582
533
  msgid "Settings"
534
  msgstr ""
535
 
536
- #: top-10.php:584
537
  msgid "Donate"
538
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:39-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr ""
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr ""
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
+ #: admin.inc.php:136
58
  msgid ""
59
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
60
  "continue to be counted."
61
  msgstr ""
62
 
63
+ #: admin.inc.php:139
64
  msgid "Exclude Categories: "
65
  msgstr ""
66
 
67
+ #: admin.inc.php:157
68
  msgid "Display number of views on:"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:158
72
  msgid "Posts"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:159
76
  msgid "Pages"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:162
80
  msgid "Track visits of authors on their own posts?"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:166
84
  msgid "Display number of page views in popular lists?"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:170
88
  msgid "Force daily posts' list to be dynamic?"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:172
92
  msgid ""
93
  "This option uses JavaScript to load the post and can increase your page load "
94
  "time"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:175
98
  msgid "Display page views on Posts > All Posts in Admin"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:179
102
  msgid "Link to Top 10 plugin page"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:181
106
  msgid ""
107
  "A link to the plugin is added as an extra list item to the list of popular "
108
  "posts"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:188
112
  msgid "Output Options"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:191
116
  msgid "Format to display the count in: "
117
  msgstr ""
118
 
119
+ #: admin.inc.php:194
120
  msgid ""
121
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
122
  "%</code> to display the daily count and <code>%overallcount%</code> to "
124
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:196
128
  msgid "Title of popular posts: "
129
  msgstr ""
130
 
131
+ #: admin.inc.php:199
132
  msgid "Title of daily popular posts: "
133
  msgstr ""
134
 
135
+ #: admin.inc.php:202
136
  msgid "When there are no posts, what should be shown?"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:206
140
  msgid "Blank Output"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:210
144
  msgid "Display:"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:214
148
  msgid "Show post excerpt in list?"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:217
152
  msgid "Length of excerpt (in words): "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:220
156
  msgid "Customize the output:"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:222
160
  msgid "HTML to display before the list of posts: "
161
  msgstr ""
162
 
163
+ #: admin.inc.php:225
164
  msgid "HTML to display before each list item: "
165
  msgstr ""
166
 
167
+ #: admin.inc.php:228
168
  msgid "HTML to display after each list item: "
169
  msgstr ""
170
 
171
+ #: admin.inc.php:231
172
  msgid "HTML to display after the list of posts: "
173
  msgstr ""
174
 
175
+ #: admin.inc.php:234
176
  msgid "Post thumbnail options:"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:236
180
  msgid "Location of post thumbnail:"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:240
184
  msgid "Display thumbnails inline with posts, before title"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:244
188
  msgid "Display thumbnails inline with posts, after title"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:248
192
  msgid "Display only thumbnails, no text"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:252
196
  msgid "Do not display thumbnails, only text."
197
  msgstr ""
198
 
199
+ #: admin.inc.php:256
200
  msgid "Maximum width of the thumbnail: "
201
  msgstr ""
202
 
203
+ #: admin.inc.php:259
204
  msgid "Maximum height of the thumbnail: "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:262
208
  msgid "Use timthumb to generate thumbnails? "
209
  msgstr ""
210
 
211
+ #: admin.inc.php:263
212
  msgid ""
213
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
214
  "\">timthumb</a> will be used to generate thumbnails"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:265
218
  msgid "Post thumbnail meta field name: "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:266
222
  msgid ""
223
  "The value of this field should contain the image source and is set in the "
224
  "<em>Add New Post</em> screen"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:268
228
  msgid ""
229
  "If the postmeta is not set, then should the plugin extract the first image "
230
  "from the post?"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:269
234
  msgid ""
235
+ "This could slow down the loading of your page if the first image in the "
236
  "related posts is large in file-size"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:271
240
  msgid "Use default thumbnail? "
241
  msgstr ""
242
 
243
+ #: admin.inc.php:272
244
  msgid ""
245
  "If checked, when no thumbnail is found, show a default one from the URL "
246
  "below. If not checked and no thumbnail is found, no image will be shown."
247
  msgstr ""
248
 
249
+ #: admin.inc.php:274
250
  msgid "Default thumbnail: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:275
254
  msgid ""
255
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
256
  "then it will check the meta field. If this is not available, then it will "
257
  "show the default image as specified above"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:281
261
  msgid "Custom Styles"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:284
265
  msgid "Custom CSS to add to header:"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:287
269
  msgid ""
270
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
271
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
272
  "available CSS classes to style."
273
  msgstr ""
274
 
 
 
 
 
275
  #: admin.inc.php:292
276
+ msgid "Maintenance"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:296
280
  msgid ""
281
  "Over time the Daily Top 10 database grows in size, which reduces the "
282
  "performance of the plugin. Cleaning the database at regular intervals could "
283
+ "improve performance, especially on high traffic blogs."
284
  msgstr ""
285
 
286
  #: admin.inc.php:297
287
+ msgid ""
288
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
289
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
290
+ "causes the daily posts table to reset."
291
  msgstr ""
292
 
293
  #: admin.inc.php:300
294
+ msgid "Enable scheduled maintenance of daily tables:"
295
+ msgstr ""
296
+
297
+ #: admin.inc.php:305
298
+ msgid "Time to run maintenance"
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:308
302
  msgid "How often should the maintenance be run:"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:312
306
  msgid "Daily"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:316
310
  msgid "Weekly"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:320
314
  msgid "Fortnightly"
315
  msgstr ""
316
 
317
+ #: admin.inc.php:324
318
  msgid "Monthly"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:333
322
  msgid "The cron job has been scheduled. Maintenance will run "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:338
326
  msgid "The cron job is missing. Please resave this page to add the job"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:343
330
  msgid "Maintenance is turned off"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:351
334
  msgid "Reset count"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:354
338
  msgid ""
339
  "This cannot be reversed. Make sure that your database has been backed up "
340
  "before proceeding"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:357
344
  msgid "Reset Popular Posts"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:357
348
  msgid "Are you sure you want to reset the popular posts?"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:358
352
  msgid "Reset Daily Popular Posts"
353
  msgstr ""
354
 
355
+ #: admin.inc.php:358
356
  msgid "Are you sure you want to reset the daily popular posts?"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:359
360
  msgid "Clear duplicates"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:359
364
  msgid "This will delete the duplicate entries in the tables. Proceed?"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:363
368
  msgid "Save Options"
369
  msgstr ""
370
 
371
+ #: admin.inc.php:364
372
  msgid "Default Options"
373
  msgstr ""
374
 
375
+ #: admin.inc.php:364
376
  msgid "Do you want to set options to Default?"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
380
  msgid "Popular Posts"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:390
384
  msgid "Daily Popular Posts"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:412
388
  msgid "Support the development"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:420
392
  msgid "Enter amount in USD: "
393
  msgstr ""
394
 
395
+ #: admin.inc.php:424
396
  msgid "Send your donation to the author of"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:430
400
  msgid "Follow us on Facebook"
401
  msgstr ""
402
 
403
+ #: admin.inc.php:434
404
  msgid "Quick Links"
405
  msgstr ""
406
 
407
+ #: admin.inc.php:436
408
  msgid "Top 10 plugin page"
409
  msgstr ""
410
 
411
+ #: admin.inc.php:437
412
  msgid "Other plugins"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:438
416
  msgid "Ajay's blog"
417
  msgstr ""
418
 
419
+ #: admin.inc.php:439 top-10.php:588
420
  msgid "Support"
421
  msgstr ""
422
 
423
+ #: admin.inc.php:440
424
  msgid "Follow @ajaydsouza on Twitter"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:444
428
  msgid "Recent developments"
429
  msgstr ""
430
 
431
+ #: admin.inc.php:467 admin.inc.php:469
432
  msgid "Top 10"
433
  msgstr ""
434
 
435
+ #: admin.inc.php:583
436
  msgid "Results"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:585 admin.inc.php:591
440
  msgid "of"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:589
444
  msgid "Page"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:603
448
  msgid "View Daily Popular Posts"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:607
452
  msgid "View Overall Popular Posts"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:611
456
  msgid "Results per-page:"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:635
460
  msgid "Previous"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:653
464
  msgid "Next"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:676
468
  msgid "Daily Popular"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:687
472
  msgid "Total / Today's Views"
473
  msgstr ""
474
 
532
  msgid "No top posts yet"
533
  msgstr ""
534
 
535
+ #: top-10.php:565
536
  msgid "Once Weekly"
537
  msgstr ""
538
 
539
+ #: top-10.php:566
540
  msgid "Once Fortnightly"
541
  msgstr ""
542
 
543
+ #: top-10.php:567
544
  msgid "Once Monthly"
545
  msgstr ""
546
 
547
+ #: top-10.php:587
548
  msgid "Settings"
549
  msgstr ""
550
 
551
+ #: top-10.php:589
552
  msgid "Donate"
553
  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: 2012-08-12 16:55-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"
@@ -14,40 +14,48 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Configuraciones guardadas con éxito"
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Los parametros se configuran de manera predeterminada"
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Reiniciar el Top de los 10 posts más populares"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Mostrar el número de posts más populares"
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
  "Los post diarios más populares deben contener el número de visitas al día"
49
 
50
- #: admin.inc.php:133
51
  msgid ""
52
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
  "continue to be counted."
@@ -55,38 +63,38 @@ msgstr ""
55
  "¿Excluir la Páginas que muestran los posts más Populares? También será "
56
  "contado el número de visitas"
57
 
58
- #: admin.inc.php:136
59
  msgid "Exclude Categories: "
60
  msgstr "Excluir las Categorías"
61
 
62
- #: admin.inc.php:154
63
  #, fuzzy
64
  msgid "Display number of views on:"
65
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
66
 
67
- #: admin.inc.php:155
68
  msgid "Posts"
69
  msgstr ""
70
 
71
- #: admin.inc.php:156
72
  #, fuzzy
73
  msgid "Pages"
74
  msgstr "La página"
75
 
76
- #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
79
 
80
- #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
  msgstr ""
83
  "¿Mostrar el número de visitas de la página en las listas más populares?"
84
 
85
- #: admin.inc.php:167
86
  msgid "Force daily posts' list to be dynamic?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
  #, fuzzy
91
  msgid ""
92
  "This option uses JavaScript to load the post and can increase your page load "
@@ -95,15 +103,15 @@ msgstr ""
95
  "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
96
  "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
97
 
98
- #: admin.inc.php:172
99
  msgid "Display page views on Posts > All Posts in Admin"
100
  msgstr ""
101
 
102
- #: admin.inc.php:176
103
  msgid "Link to Top 10 plugin page"
104
  msgstr ""
105
 
106
- #: admin.inc.php:178
107
  #, fuzzy
108
  msgid ""
109
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -113,16 +121,16 @@ msgstr ""
113
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
114
  "agradeceríamos al hacerlo!"
115
 
116
- #: admin.inc.php:185
117
  #, fuzzy
118
  msgid "Output Options"
119
  msgstr "Los Parámetros Resultantes"
120
 
121
- #: admin.inc.php:188
122
  msgid "Format to display the count in: "
123
  msgstr "El formato de visualización de la cuenta: "
124
 
125
- #: admin.inc.php:191
126
  #, fuzzy
127
  msgid ""
128
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -134,108 +142,108 @@ msgstr ""
134
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
135
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
136
 
137
- #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "El título de los posts más populares"
140
 
141
- #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "El título de los posts diarios más populares"
144
 
145
- #: admin.inc.php:199
146
  msgid "When there are no posts, what should be shown?"
147
  msgstr ""
148
 
149
- #: admin.inc.php:203
150
  msgid "Blank Output"
151
  msgstr ""
152
 
153
- #: admin.inc.php:207
154
  msgid "Display:"
155
  msgstr ""
156
 
157
- #: admin.inc.php:211
158
  msgid "Show post excerpt in list?"
159
  msgstr "¿Mostrar un fragmento del post en la lista?"
160
 
161
- #: admin.inc.php:214
162
  msgid "Length of excerpt (in words): "
163
  msgstr "La longitud del fragmento(en palabras):"
164
 
165
- #: admin.inc.php:217
166
  msgid "Customize the output:"
167
  msgstr "Personalizar el resultado:"
168
 
169
- #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr "HTML mostrar antes de la lista de posts:"
172
 
173
- #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr "HTML mostrar ante cada elemento de la lista:"
176
 
177
- #: admin.inc.php:225
178
  msgid "HTML to display after each list item: "
179
  msgstr "HTML mostrar después de cada elemento de la lista:"
180
 
181
- #: admin.inc.php:228
182
  msgid "HTML to display after the list of posts: "
183
  msgstr "HTML mostrar después de la lista de posts:"
184
 
185
- #: admin.inc.php:231
186
  msgid "Post thumbnail options:"
187
  msgstr "Los parámetros del thumbnail:"
188
 
189
- #: admin.inc.php:233
190
  msgid "Location of post thumbnail:"
191
  msgstr ""
192
 
193
- #: admin.inc.php:237
194
  msgid "Display thumbnails inline with posts, before title"
195
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
196
 
197
- #: admin.inc.php:241
198
  msgid "Display thumbnails inline with posts, after title"
199
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
200
 
201
- #: admin.inc.php:245
202
  msgid "Display only thumbnails, no text"
203
  msgstr "Mostrar solamente thumbnails, no el texto"
204
 
205
- #: admin.inc.php:249
206
  msgid "Do not display thumbnails, only text."
207
  msgstr "No mostrar thumbnails, sólo el texto"
208
 
209
- #: admin.inc.php:253
210
  msgid "Maximum width of the thumbnail: "
211
  msgstr ""
212
 
213
- #: admin.inc.php:256
214
  msgid "Maximum height of the thumbnail: "
215
  msgstr ""
216
 
217
- #: admin.inc.php:259
218
  msgid "Use timthumb to generate thumbnails? "
219
  msgstr ""
220
 
221
- #: admin.inc.php:260
222
  msgid ""
223
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
224
  "\">timthumb</a> will be used to generate thumbnails"
225
  msgstr ""
226
 
227
- #: admin.inc.php:262
228
  #, fuzzy
229
  msgid "Post thumbnail meta field name: "
230
  msgstr "Los parámetros del thumbnail:"
231
 
232
- #: admin.inc.php:263
233
  msgid ""
234
  "The value of this field should contain the image source and is set in the "
235
  "<em>Add New Post</em> screen"
236
  msgstr ""
237
 
238
- #: admin.inc.php:265
239
  #, fuzzy
240
  msgid ""
241
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -246,10 +254,10 @@ msgstr ""
246
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
247
  "tamaño de archivo "
248
 
249
- #: admin.inc.php:266
250
  #, fuzzy
251
  msgid ""
252
- "This can slow down the loading of your page if the first image in the "
253
  "related posts is large in file-size"
254
  msgstr ""
255
  "Si el parámetro postmeta no está instalado, entonces el plugin debería "
@@ -257,11 +265,11 @@ msgstr ""
257
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
258
  "tamaño de archivo "
259
 
260
- #: admin.inc.php:268
261
  msgid "Use default thumbnail? "
262
  msgstr ""
263
 
264
- #: admin.inc.php:269
265
  msgid ""
266
  "If checked, when no thumbnail is found, show a default one from the URL "
267
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -271,88 +279,95 @@ msgstr ""
271
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
272
  "hay que mostrarla."
273
 
274
- #: admin.inc.php:271
275
  msgid "Default thumbnail: "
276
  msgstr ""
277
 
278
- #: admin.inc.php:272
279
  msgid ""
280
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
281
  "then it will check the meta field. If this is not available, then it will "
282
  "show the default image as specified above"
283
  msgstr ""
284
 
285
- #: admin.inc.php:278
286
  msgid "Custom Styles"
287
  msgstr ""
288
 
289
- #: admin.inc.php:281
290
  msgid "Custom CSS to add to header:"
291
  msgstr ""
292
 
293
- #: admin.inc.php:284
294
  msgid ""
295
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
296
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
297
  "available CSS classes to style."
298
  msgstr ""
299
 
300
- #: admin.inc.php:289
301
- msgid "Maintenance"
302
- msgstr ""
303
-
304
  #: admin.inc.php:292
305
- msgid "Enable scheduled maintenance of daily tables:"
306
  msgstr ""
307
 
308
- #: admin.inc.php:294
309
  msgid ""
310
  "Over time the Daily Top 10 database grows in size, which reduces the "
311
  "performance of the plugin. Cleaning the database at regular intervals could "
312
- "improve performance, especially on high traffic blogs"
313
  msgstr ""
314
 
315
  #: admin.inc.php:297
316
- msgid "Time to run maintenance"
 
 
 
317
  msgstr ""
318
 
319
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
320
  msgid "How often should the maintenance be run:"
321
  msgstr ""
322
 
323
- #: admin.inc.php:304
324
  msgid "Daily"
325
  msgstr ""
326
 
327
- #: admin.inc.php:308
328
  msgid "Weekly"
329
  msgstr ""
330
 
331
- #: admin.inc.php:312
332
  msgid "Fortnightly"
333
  msgstr ""
334
 
335
- #: admin.inc.php:316
336
  msgid "Monthly"
337
  msgstr ""
338
 
339
- #: admin.inc.php:325
340
  msgid "The cron job has been scheduled. Maintenance will run "
341
  msgstr ""
342
 
343
- #: admin.inc.php:330
344
  msgid "The cron job is missing. Please resave this page to add the job"
345
  msgstr ""
346
 
347
- #: admin.inc.php:335
348
  msgid "Maintenance is turned off"
349
  msgstr ""
350
 
351
- #: admin.inc.php:343
352
  msgid "Reset count"
353
  msgstr "Reiniciar los ajustes"
354
 
355
- #: admin.inc.php:346
356
  msgid ""
357
  "This cannot be reversed. Make sure that your database has been backed up "
358
  "before proceeding"
@@ -360,142 +375,142 @@ msgstr ""
360
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
361
  "sido creada una copia de seguridad para su base de datos."
362
 
363
- #: admin.inc.php:349
364
  #, fuzzy
365
  msgid "Reset Popular Posts"
366
  msgstr "Los posts más populares"
367
 
368
- #: admin.inc.php:349
369
  msgid "Are you sure you want to reset the popular posts?"
370
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
371
 
372
- #: admin.inc.php:350
373
  #, fuzzy
374
  msgid "Reset Daily Popular Posts"
375
  msgstr "Los posts diarios más populares"
376
 
377
- #: admin.inc.php:350
378
  msgid "Are you sure you want to reset the daily popular posts?"
379
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
380
 
381
- #: admin.inc.php:351
382
  msgid "Clear duplicates"
383
  msgstr ""
384
 
385
- #: admin.inc.php:351
386
  msgid "This will delete the duplicate entries in the tables. Proceed?"
387
  msgstr ""
388
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
389
 
390
- #: admin.inc.php:355
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Los parametros"
394
 
395
- #: admin.inc.php:356
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Los Parámetros Resultantes"
399
 
400
- #: admin.inc.php:356
401
  msgid "Do you want to set options to Default?"
402
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
403
 
404
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
405
  msgid "Popular Posts"
406
  msgstr "Los posts más populares"
407
 
408
- #: admin.inc.php:382
409
  msgid "Daily Popular Posts"
410
  msgstr "Los posts diarios más populares"
411
 
412
- #: admin.inc.php:404
413
  msgid "Support the development"
414
  msgstr "Apoyar al elaborador"
415
 
416
- #: admin.inc.php:412
417
  msgid "Enter amount in USD: "
418
  msgstr "Ingresar las cifras en USD"
419
 
420
- #: admin.inc.php:416
421
  msgid "Send your donation to the author of"
422
  msgstr "Enviar su subvención al autor"
423
 
424
- #: admin.inc.php:422
425
  msgid "Follow us on Facebook"
426
  msgstr ""
427
 
428
- #: admin.inc.php:426
429
  #, fuzzy
430
  msgid "Quick Links"
431
  msgstr "Enlaces rápidos"
432
 
433
- #: admin.inc.php:428
434
  #, fuzzy
435
  msgid "Top 10 plugin page"
436
  msgstr "página plugin"
437
 
438
- #: admin.inc.php:429
439
  msgid "Other plugins"
440
  msgstr "Otros plugins"
441
 
442
- #: admin.inc.php:430
443
  msgid "Ajay's blog"
444
  msgstr "Blog de Ajay"
445
 
446
- #: admin.inc.php:431 top-10.php:583
447
  msgid "Support"
448
  msgstr "Apoyo"
449
 
450
- #: admin.inc.php:432
451
  msgid "Follow @ajaydsouza on Twitter"
452
  msgstr "Seguir @ajaydsouza en Twitter"
453
 
454
- #: admin.inc.php:436
455
  msgid "Recent developments"
456
  msgstr "Evolución reciente"
457
 
458
- #: admin.inc.php:459 admin.inc.php:461
459
  msgid "Top 10"
460
  msgstr "Тоp 10"
461
 
462
- #: admin.inc.php:575
463
  msgid "Results"
464
  msgstr "Resultados"
465
 
466
- #: admin.inc.php:577 admin.inc.php:583
467
  msgid "of"
468
  msgstr "de, a "
469
 
470
- #: admin.inc.php:581
471
  msgid "Page"
472
  msgstr "La página"
473
 
474
- #: admin.inc.php:595
475
  msgid "View Daily Popular Posts"
476
  msgstr "Ver los posts diarios más populares"
477
 
478
- #: admin.inc.php:599
479
  msgid "View Overall Popular Posts"
480
  msgstr "Ver los posts más populares"
481
 
482
- #: admin.inc.php:603
483
  msgid "Results per-page:"
484
  msgstr "Los resultados por página:"
485
 
486
- #: admin.inc.php:627
487
  msgid "Previous"
488
  msgstr "Precedentes"
489
 
490
- #: admin.inc.php:645
491
  msgid "Next"
492
  msgstr "Siguientes"
493
 
494
- #: admin.inc.php:668
495
  msgid "Daily Popular"
496
  msgstr "Diario Populares"
497
 
498
- #: admin.inc.php:679
499
  msgid "Total / Today's Views"
500
  msgstr "Total/Visitas de hoy"
501
 
@@ -566,23 +581,23 @@ msgstr "Diario Populares"
566
  msgid "No top posts yet"
567
  msgstr "Reiniciar el Top de los 10 posts más populares"
568
 
569
- #: top-10.php:560
570
  msgid "Once Weekly"
571
  msgstr ""
572
 
573
- #: top-10.php:561
574
  msgid "Once Fortnightly"
575
  msgstr ""
576
 
577
- #: top-10.php:562
578
  msgid "Once Monthly"
579
  msgstr ""
580
 
581
- #: top-10.php:582
582
  msgid "Settings"
583
  msgstr "Los ajustes"
584
 
585
- #: top-10.php:584
586
  msgid "Donate"
587
  msgstr "Subvencionar"
588
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Configuraciones guardadas con éxito"
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Los parametros se configuran de manera predeterminada"
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "Reiniciar el Top de los 10 posts más populares"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Mostrar el número de posts más populares"
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
  "Los post diarios más populares deben contener el número de visitas al día"
57
 
58
+ #: admin.inc.php:136
59
  msgid ""
60
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
61
  "continue to be counted."
63
  "¿Excluir la Páginas que muestran los posts más Populares? También será "
64
  "contado el número de visitas"
65
 
66
+ #: admin.inc.php:139
67
  msgid "Exclude Categories: "
68
  msgstr "Excluir las Categorías"
69
 
70
+ #: admin.inc.php:157
71
  #, fuzzy
72
  msgid "Display number of views on:"
73
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
74
 
75
+ #: admin.inc.php:158
76
  msgid "Posts"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:159
80
  #, fuzzy
81
  msgid "Pages"
82
  msgstr "La página"
83
 
84
+ #: admin.inc.php:162
85
  msgid "Track visits of authors on their own posts?"
86
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
87
 
88
+ #: admin.inc.php:166
89
  msgid "Display number of page views in popular lists?"
90
  msgstr ""
91
  "¿Mostrar el número de visitas de la página en las listas más populares?"
92
 
93
+ #: admin.inc.php:170
94
  msgid "Force daily posts' list to be dynamic?"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:172
98
  #, fuzzy
99
  msgid ""
100
  "This option uses JavaScript to load the post and can increase your page load "
103
  "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
104
  "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
105
 
106
+ #: admin.inc.php:175
107
  msgid "Display page views on Posts > All Posts in Admin"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:179
111
  msgid "Link to Top 10 plugin page"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:181
115
  #, fuzzy
116
  msgid ""
117
  "A link to the plugin is added as an extra list item to the list of popular "
121
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
122
  "agradeceríamos al hacerlo!"
123
 
124
+ #: admin.inc.php:188
125
  #, fuzzy
126
  msgid "Output Options"
127
  msgstr "Los Parámetros Resultantes"
128
 
129
+ #: admin.inc.php:191
130
  msgid "Format to display the count in: "
131
  msgstr "El formato de visualización de la cuenta: "
132
 
133
+ #: admin.inc.php:194
134
  #, fuzzy
135
  msgid ""
136
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
142
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
143
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
144
 
145
+ #: admin.inc.php:196
146
  msgid "Title of popular posts: "
147
  msgstr "El título de los posts más populares"
148
 
149
+ #: admin.inc.php:199
150
  msgid "Title of daily popular posts: "
151
  msgstr "El título de los posts diarios más populares"
152
 
153
+ #: admin.inc.php:202
154
  msgid "When there are no posts, what should be shown?"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:206
158
  msgid "Blank Output"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:210
162
  msgid "Display:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:214
166
  msgid "Show post excerpt in list?"
167
  msgstr "¿Mostrar un fragmento del post en la lista?"
168
 
169
+ #: admin.inc.php:217
170
  msgid "Length of excerpt (in words): "
171
  msgstr "La longitud del fragmento(en palabras):"
172
 
173
+ #: admin.inc.php:220
174
  msgid "Customize the output:"
175
  msgstr "Personalizar el resultado:"
176
 
177
+ #: admin.inc.php:222
178
  msgid "HTML to display before the list of posts: "
179
  msgstr "HTML mostrar antes de la lista de posts:"
180
 
181
+ #: admin.inc.php:225
182
  msgid "HTML to display before each list item: "
183
  msgstr "HTML mostrar ante cada elemento de la lista:"
184
 
185
+ #: admin.inc.php:228
186
  msgid "HTML to display after each list item: "
187
  msgstr "HTML mostrar después de cada elemento de la lista:"
188
 
189
+ #: admin.inc.php:231
190
  msgid "HTML to display after the list of posts: "
191
  msgstr "HTML mostrar después de la lista de posts:"
192
 
193
+ #: admin.inc.php:234
194
  msgid "Post thumbnail options:"
195
  msgstr "Los parámetros del thumbnail:"
196
 
197
+ #: admin.inc.php:236
198
  msgid "Location of post thumbnail:"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:240
202
  msgid "Display thumbnails inline with posts, before title"
203
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
204
 
205
+ #: admin.inc.php:244
206
  msgid "Display thumbnails inline with posts, after title"
207
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
208
 
209
+ #: admin.inc.php:248
210
  msgid "Display only thumbnails, no text"
211
  msgstr "Mostrar solamente thumbnails, no el texto"
212
 
213
+ #: admin.inc.php:252
214
  msgid "Do not display thumbnails, only text."
215
  msgstr "No mostrar thumbnails, sólo el texto"
216
 
217
+ #: admin.inc.php:256
218
  msgid "Maximum width of the thumbnail: "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:259
222
  msgid "Maximum height of the thumbnail: "
223
  msgstr ""
224
 
225
+ #: admin.inc.php:262
226
  msgid "Use timthumb to generate thumbnails? "
227
  msgstr ""
228
 
229
+ #: admin.inc.php:263
230
  msgid ""
231
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
232
  "\">timthumb</a> will be used to generate thumbnails"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:265
236
  #, fuzzy
237
  msgid "Post thumbnail meta field name: "
238
  msgstr "Los parámetros del thumbnail:"
239
 
240
+ #: admin.inc.php:266
241
  msgid ""
242
  "The value of this field should contain the image source and is set in the "
243
  "<em>Add New Post</em> screen"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:268
247
  #, fuzzy
248
  msgid ""
249
  "If the postmeta is not set, then should the plugin extract the first image "
254
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
255
  "tamaño de archivo "
256
 
257
+ #: admin.inc.php:269
258
  #, fuzzy
259
  msgid ""
260
+ "This could slow down the loading of your page if the first image in the "
261
  "related posts is large in file-size"
262
  msgstr ""
263
  "Si el parámetro postmeta no está instalado, entonces el plugin debería "
265
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
266
  "tamaño de archivo "
267
 
268
+ #: admin.inc.php:271
269
  msgid "Use default thumbnail? "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:272
273
  msgid ""
274
  "If checked, when no thumbnail is found, show a default one from the URL "
275
  "below. If not checked and no thumbnail is found, no image will be shown."
279
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
280
  "hay que mostrarla."
281
 
282
+ #: admin.inc.php:274
283
  msgid "Default thumbnail: "
284
  msgstr ""
285
 
286
+ #: admin.inc.php:275
287
  msgid ""
288
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
289
  "then it will check the meta field. If this is not available, then it will "
290
  "show the default image as specified above"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:281
294
  msgid "Custom Styles"
295
  msgstr ""
296
 
297
+ #: admin.inc.php:284
298
  msgid "Custom CSS to add to header:"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:287
302
  msgid ""
303
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
304
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
305
  "available CSS classes to style."
306
  msgstr ""
307
 
 
 
 
 
308
  #: admin.inc.php:292
309
+ msgid "Maintenance"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:296
313
  msgid ""
314
  "Over time the Daily Top 10 database grows in size, which reduces the "
315
  "performance of the plugin. Cleaning the database at regular intervals could "
316
+ "improve performance, especially on high traffic blogs."
317
  msgstr ""
318
 
319
  #: admin.inc.php:297
320
+ msgid ""
321
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
322
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
323
+ "causes the daily posts table to reset."
324
  msgstr ""
325
 
326
  #: admin.inc.php:300
327
+ msgid "Enable scheduled maintenance of daily tables:"
328
+ msgstr ""
329
+
330
+ #: admin.inc.php:305
331
+ msgid "Time to run maintenance"
332
+ msgstr ""
333
+
334
+ #: admin.inc.php:308
335
  msgid "How often should the maintenance be run:"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:312
339
  msgid "Daily"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:316
343
  msgid "Weekly"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:320
347
  msgid "Fortnightly"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:324
351
  msgid "Monthly"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:333
355
  msgid "The cron job has been scheduled. Maintenance will run "
356
  msgstr ""
357
 
358
+ #: admin.inc.php:338
359
  msgid "The cron job is missing. Please resave this page to add the job"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:343
363
  msgid "Maintenance is turned off"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:351
367
  msgid "Reset count"
368
  msgstr "Reiniciar los ajustes"
369
 
370
+ #: admin.inc.php:354
371
  msgid ""
372
  "This cannot be reversed. Make sure that your database has been backed up "
373
  "before proceeding"
375
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
376
  "sido creada una copia de seguridad para su base de datos."
377
 
378
+ #: admin.inc.php:357
379
  #, fuzzy
380
  msgid "Reset Popular Posts"
381
  msgstr "Los posts más populares"
382
 
383
+ #: admin.inc.php:357
384
  msgid "Are you sure you want to reset the popular posts?"
385
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
386
 
387
+ #: admin.inc.php:358
388
  #, fuzzy
389
  msgid "Reset Daily Popular Posts"
390
  msgstr "Los posts diarios más populares"
391
 
392
+ #: admin.inc.php:358
393
  msgid "Are you sure you want to reset the daily popular posts?"
394
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
395
 
396
+ #: admin.inc.php:359
397
  msgid "Clear duplicates"
398
  msgstr ""
399
 
400
+ #: admin.inc.php:359
401
  msgid "This will delete the duplicate entries in the tables. Proceed?"
402
  msgstr ""
403
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
404
 
405
+ #: admin.inc.php:363
406
  #, fuzzy
407
  msgid "Save Options"
408
  msgstr "Los parametros"
409
 
410
+ #: admin.inc.php:364
411
  #, fuzzy
412
  msgid "Default Options"
413
  msgstr "Los Parámetros Resultantes"
414
 
415
+ #: admin.inc.php:364
416
  msgid "Do you want to set options to Default?"
417
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
418
 
419
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
420
  msgid "Popular Posts"
421
  msgstr "Los posts más populares"
422
 
423
+ #: admin.inc.php:390
424
  msgid "Daily Popular Posts"
425
  msgstr "Los posts diarios más populares"
426
 
427
+ #: admin.inc.php:412
428
  msgid "Support the development"
429
  msgstr "Apoyar al elaborador"
430
 
431
+ #: admin.inc.php:420
432
  msgid "Enter amount in USD: "
433
  msgstr "Ingresar las cifras en USD"
434
 
435
+ #: admin.inc.php:424
436
  msgid "Send your donation to the author of"
437
  msgstr "Enviar su subvención al autor"
438
 
439
+ #: admin.inc.php:430
440
  msgid "Follow us on Facebook"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:434
444
  #, fuzzy
445
  msgid "Quick Links"
446
  msgstr "Enlaces rápidos"
447
 
448
+ #: admin.inc.php:436
449
  #, fuzzy
450
  msgid "Top 10 plugin page"
451
  msgstr "página plugin"
452
 
453
+ #: admin.inc.php:437
454
  msgid "Other plugins"
455
  msgstr "Otros plugins"
456
 
457
+ #: admin.inc.php:438
458
  msgid "Ajay's blog"
459
  msgstr "Blog de Ajay"
460
 
461
+ #: admin.inc.php:439 top-10.php:588
462
  msgid "Support"
463
  msgstr "Apoyo"
464
 
465
+ #: admin.inc.php:440
466
  msgid "Follow @ajaydsouza on Twitter"
467
  msgstr "Seguir @ajaydsouza en Twitter"
468
 
469
+ #: admin.inc.php:444
470
  msgid "Recent developments"
471
  msgstr "Evolución reciente"
472
 
473
+ #: admin.inc.php:467 admin.inc.php:469
474
  msgid "Top 10"
475
  msgstr "Тоp 10"
476
 
477
+ #: admin.inc.php:583
478
  msgid "Results"
479
  msgstr "Resultados"
480
 
481
+ #: admin.inc.php:585 admin.inc.php:591
482
  msgid "of"
483
  msgstr "de, a "
484
 
485
+ #: admin.inc.php:589
486
  msgid "Page"
487
  msgstr "La página"
488
 
489
+ #: admin.inc.php:603
490
  msgid "View Daily Popular Posts"
491
  msgstr "Ver los posts diarios más populares"
492
 
493
+ #: admin.inc.php:607
494
  msgid "View Overall Popular Posts"
495
  msgstr "Ver los posts más populares"
496
 
497
+ #: admin.inc.php:611
498
  msgid "Results per-page:"
499
  msgstr "Los resultados por página:"
500
 
501
+ #: admin.inc.php:635
502
  msgid "Previous"
503
  msgstr "Precedentes"
504
 
505
+ #: admin.inc.php:653
506
  msgid "Next"
507
  msgstr "Siguientes"
508
 
509
+ #: admin.inc.php:676
510
  msgid "Daily Popular"
511
  msgstr "Diario Populares"
512
 
513
+ #: admin.inc.php:687
514
  msgid "Total / Today's Views"
515
  msgstr "Total/Visitas de hoy"
516
 
581
  msgid "No top posts yet"
582
  msgstr "Reiniciar el Top de los 10 posts más populares"
583
 
584
+ #: top-10.php:565
585
  msgid "Once Weekly"
586
  msgstr ""
587
 
588
+ #: top-10.php:566
589
  msgid "Once Fortnightly"
590
  msgstr ""
591
 
592
+ #: top-10.php:567
593
  msgid "Once Monthly"
594
  msgstr ""
595
 
596
+ #: top-10.php:587
597
  msgid "Settings"
598
  msgstr "Los ajustes"
599
 
600
+ #: top-10.php:589
601
  msgid "Donate"
602
  msgstr "Subvencionar"
603
 
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: 2012-08-12 16:55-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"
@@ -14,40 +14,48 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Les options sont sauvegardées avec succès"
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Options par défaut sont définies"
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Le nombre de populaires sur le forum"
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
49
 
50
- #: admin.inc.php:133
51
  msgid ""
52
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
  "continue to be counted."
@@ -55,38 +63,38 @@ msgstr ""
55
  "Éliminer d'affichage les pages du message populaire? Le nombre des "
56
  "visionnage des pages qui seront toujours prises en compte."
57
 
58
- #: admin.inc.php:136
59
  msgid "Exclude Categories: "
60
  msgstr "Exclure les catégories:"
61
 
62
- #: admin.inc.php:154
63
  #, fuzzy
64
  msgid "Display number of views on:"
65
  msgstr "Afficher le nombre des visionnages du message?"
66
 
67
- #: admin.inc.php:155
68
  msgid "Posts"
69
  msgstr ""
70
 
71
- #: admin.inc.php:156
72
  #, fuzzy
73
  msgid "Pages"
74
  msgstr "Page"
75
 
76
- #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
79
 
80
- #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
  msgstr ""
83
  "Afficher le nombre des visionnages des pages dans les listes de popularité?"
84
 
85
- #: admin.inc.php:167
86
  msgid "Force daily posts' list to be dynamic?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
  #, fuzzy
91
  msgid ""
92
  "This option uses JavaScript to load the post and can increase your page load "
@@ -96,15 +104,15 @@ msgstr ""
96
  "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
97
  "la page"
98
 
99
- #: admin.inc.php:172
100
  msgid "Display page views on Posts > All Posts in Admin"
101
  msgstr ""
102
 
103
- #: admin.inc.php:176
104
  msgid "Link to Top 10 plugin page"
105
  msgstr ""
106
 
107
- #: admin.inc.php:178
108
  #, fuzzy
109
  msgid ""
110
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -114,16 +122,16 @@ msgstr ""
114
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
115
  "mais nous vous y remercions!"
116
 
117
- #: admin.inc.php:185
118
  #, fuzzy
119
  msgid "Output Options"
120
  msgstr "Paramètres de sortie"
121
 
122
- #: admin.inc.php:188
123
  msgid "Format to display the count in: "
124
  msgstr "Format d’affichage de la quantité en:"
125
 
126
- #: admin.inc.php:191
127
  #, fuzzy
128
  msgid ""
129
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -136,108 +144,108 @@ msgstr ""
136
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
137
  "123 times, 23 visits today)</code>"
138
 
139
- #: admin.inc.php:193
140
  msgid "Title of popular posts: "
141
  msgstr "Les en-têtes des messages populaires"
142
 
143
- #: admin.inc.php:196
144
  msgid "Title of daily popular posts: "
145
  msgstr "Les en-têtes des messages populaires journaliers"
146
 
147
- #: admin.inc.php:199
148
  msgid "When there are no posts, what should be shown?"
149
  msgstr ""
150
 
151
- #: admin.inc.php:203
152
  msgid "Blank Output"
153
  msgstr ""
154
 
155
- #: admin.inc.php:207
156
  msgid "Display:"
157
  msgstr ""
158
 
159
- #: admin.inc.php:211
160
  msgid "Show post excerpt in list?"
161
  msgstr "Afficher le fragment du message dans la liste?"
162
 
163
- #: admin.inc.php:214
164
  msgid "Length of excerpt (in words): "
165
  msgstr "Longueur du fragment (mots):"
166
 
167
- #: admin.inc.php:217
168
  msgid "Customize the output:"
169
  msgstr "Paramétrer la sortie:"
170
 
171
- #: admin.inc.php:219
172
  msgid "HTML to display before the list of posts: "
173
  msgstr "HTML d'affichage avant la liste des messages:"
174
 
175
- #: admin.inc.php:222
176
  msgid "HTML to display before each list item: "
177
  msgstr "HTML d'affichage avant chaque élément de la liste:"
178
 
179
- #: admin.inc.php:225
180
  msgid "HTML to display after each list item: "
181
  msgstr "HTML d'affichage après chaque élément de la liste:"
182
 
183
- #: admin.inc.php:228
184
  msgid "HTML to display after the list of posts: "
185
  msgstr "HTML d'affichage après la liste des messages:"
186
 
187
- #: admin.inc.php:231
188
  msgid "Post thumbnail options:"
189
  msgstr "Options thumbnail des messages:"
190
 
191
- #: admin.inc.php:233
192
  msgid "Location of post thumbnail:"
193
  msgstr ""
194
 
195
- #: admin.inc.php:237
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
198
 
199
- #: admin.inc.php:241
200
  msgid "Display thumbnails inline with posts, after title"
201
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
202
 
203
- #: admin.inc.php:245
204
  msgid "Display only thumbnails, no text"
205
  msgstr "Afficher uniquement le thumbnail, sans le texte"
206
 
207
- #: admin.inc.php:249
208
  msgid "Do not display thumbnails, only text."
209
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
210
 
211
- #: admin.inc.php:253
212
  msgid "Maximum width of the thumbnail: "
213
  msgstr ""
214
 
215
- #: admin.inc.php:256
216
  msgid "Maximum height of the thumbnail: "
217
  msgstr ""
218
 
219
- #: admin.inc.php:259
220
  msgid "Use timthumb to generate thumbnails? "
221
  msgstr ""
222
 
223
- #: admin.inc.php:260
224
  msgid ""
225
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
226
  "\">timthumb</a> will be used to generate thumbnails"
227
  msgstr ""
228
 
229
- #: admin.inc.php:262
230
  #, fuzzy
231
  msgid "Post thumbnail meta field name: "
232
  msgstr "Options thumbnail des messages:"
233
 
234
- #: admin.inc.php:263
235
  msgid ""
236
  "The value of this field should contain the image source and is set in the "
237
  "<em>Add New Post</em> screen"
238
  msgstr ""
239
 
240
- #: admin.inc.php:265
241
  #, fuzzy
242
  msgid ""
243
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -248,10 +256,10 @@ msgstr ""
248
  "première image de la résolution correspondante du fichier est de taille "
249
  "supérieure"
250
 
251
- #: admin.inc.php:266
252
  #, fuzzy
253
  msgid ""
254
- "This can slow down the loading of your page if the first image in the "
255
  "related posts is large in file-size"
256
  msgstr ""
257
  "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première "
@@ -259,11 +267,11 @@ msgstr ""
259
  "première image de la résolution correspondante du fichier est de taille "
260
  "supérieure"
261
 
262
- #: admin.inc.php:268
263
  msgid "Use default thumbnail? "
264
  msgstr ""
265
 
266
- #: admin.inc.php:269
267
  msgid ""
268
  "If checked, when no thumbnail is found, show a default one from the URL "
269
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -272,88 +280,95 @@ msgstr ""
272
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
273
  "été retrouvé, ne pas afficher l'image."
274
 
275
- #: admin.inc.php:271
276
  msgid "Default thumbnail: "
277
  msgstr ""
278
 
279
- #: admin.inc.php:272
280
  msgid ""
281
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
282
  "then it will check the meta field. If this is not available, then it will "
283
  "show the default image as specified above"
284
  msgstr ""
285
 
286
- #: admin.inc.php:278
287
  msgid "Custom Styles"
288
  msgstr ""
289
 
290
- #: admin.inc.php:281
291
  msgid "Custom CSS to add to header:"
292
  msgstr ""
293
 
294
- #: admin.inc.php:284
295
  msgid ""
296
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
297
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
298
  "available CSS classes to style."
299
  msgstr ""
300
 
301
- #: admin.inc.php:289
302
- msgid "Maintenance"
303
- msgstr ""
304
-
305
  #: admin.inc.php:292
306
- msgid "Enable scheduled maintenance of daily tables:"
307
  msgstr ""
308
 
309
- #: admin.inc.php:294
310
  msgid ""
311
  "Over time the Daily Top 10 database grows in size, which reduces the "
312
  "performance of the plugin. Cleaning the database at regular intervals could "
313
- "improve performance, especially on high traffic blogs"
314
  msgstr ""
315
 
316
  #: admin.inc.php:297
317
- msgid "Time to run maintenance"
 
 
 
318
  msgstr ""
319
 
320
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
321
  msgid "How often should the maintenance be run:"
322
  msgstr ""
323
 
324
- #: admin.inc.php:304
325
  msgid "Daily"
326
  msgstr ""
327
 
328
- #: admin.inc.php:308
329
  msgid "Weekly"
330
  msgstr ""
331
 
332
- #: admin.inc.php:312
333
  msgid "Fortnightly"
334
  msgstr ""
335
 
336
- #: admin.inc.php:316
337
  msgid "Monthly"
338
  msgstr ""
339
 
340
- #: admin.inc.php:325
341
  msgid "The cron job has been scheduled. Maintenance will run "
342
  msgstr ""
343
 
344
- #: admin.inc.php:330
345
  msgid "The cron job is missing. Please resave this page to add the job"
346
  msgstr ""
347
 
348
- #: admin.inc.php:335
349
  msgid "Maintenance is turned off"
350
  msgstr ""
351
 
352
- #: admin.inc.php:343
353
  msgid "Reset count"
354
  msgstr "Réinitialiser le compteur"
355
 
356
- #: admin.inc.php:346
357
  msgid ""
358
  "This cannot be reversed. Make sure that your database has been backed up "
359
  "before proceeding"
@@ -361,142 +376,142 @@ msgstr ""
361
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
362
  "sauvegardée avant de poursuivre."
363
 
364
- #: admin.inc.php:349
365
  #, fuzzy
366
  msgid "Reset Popular Posts"
367
  msgstr "Postes populaires"
368
 
369
- #: admin.inc.php:349
370
  msgid "Are you sure you want to reset the popular posts?"
371
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
372
 
373
- #: admin.inc.php:350
374
  #, fuzzy
375
  msgid "Reset Daily Popular Posts"
376
  msgstr "Postes populaires journaliers"
377
 
378
- #: admin.inc.php:350
379
  msgid "Are you sure you want to reset the daily popular posts?"
380
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
381
 
382
- #: admin.inc.php:351
383
  msgid "Clear duplicates"
384
  msgstr ""
385
 
386
- #: admin.inc.php:351
387
  msgid "This will delete the duplicate entries in the tables. Proceed?"
388
  msgstr ""
389
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
390
 
391
- #: admin.inc.php:355
392
  #, fuzzy
393
  msgid "Save Options"
394
  msgstr "Options:"
395
 
396
- #: admin.inc.php:356
397
  #, fuzzy
398
  msgid "Default Options"
399
  msgstr "Paramètres de sortie"
400
 
401
- #: admin.inc.php:356
402
  msgid "Do you want to set options to Default?"
403
  msgstr "Définir les paramètres par défaut?"
404
 
405
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
406
  msgid "Popular Posts"
407
  msgstr "Postes populaires"
408
 
409
- #: admin.inc.php:382
410
  msgid "Daily Popular Posts"
411
  msgstr "Postes populaires journaliers"
412
 
413
- #: admin.inc.php:404
414
  msgid "Support the development"
415
  msgstr "Soutenir le projet"
416
 
417
- #: admin.inc.php:412
418
  msgid "Enter amount in USD: "
419
  msgstr "Saisir le montant en dollars US"
420
 
421
- #: admin.inc.php:416
422
  msgid "Send your donation to the author of"
423
  msgstr "Envoyer sa dotation à l'auteur"
424
 
425
- #: admin.inc.php:422
426
  msgid "Follow us on Facebook"
427
  msgstr ""
428
 
429
- #: admin.inc.php:426
430
  #, fuzzy
431
  msgid "Quick Links"
432
  msgstr "Liens rapides"
433
 
434
- #: admin.inc.php:428
435
  #, fuzzy
436
  msgid "Top 10 plugin page"
437
  msgstr "Page de plugin"
438
 
439
- #: admin.inc.php:429
440
  msgid "Other plugins"
441
  msgstr "Autres plugins"
442
 
443
- #: admin.inc.php:430
444
  msgid "Ajay's blog"
445
  msgstr "Blog Ajay"
446
 
447
- #: admin.inc.php:431 top-10.php:583
448
  msgid "Support"
449
  msgstr "Service d'assistance"
450
 
451
- #: admin.inc.php:432
452
  msgid "Follow @ajaydsouza on Twitter"
453
  msgstr "Follow @ajaydsouza sur Twitter"
454
 
455
- #: admin.inc.php:436
456
  msgid "Recent developments"
457
  msgstr "Les derniers projets"
458
 
459
- #: admin.inc.php:459 admin.inc.php:461
460
  msgid "Top 10"
461
  msgstr "Тоp 10"
462
 
463
- #: admin.inc.php:575
464
  msgid "Results"
465
  msgstr "Résultats"
466
 
467
- #: admin.inc.php:577 admin.inc.php:583
468
  msgid "of"
469
  msgstr "de, du, de la, des"
470
 
471
- #: admin.inc.php:581
472
  msgid "Page"
473
  msgstr "Page"
474
 
475
- #: admin.inc.php:595
476
  msgid "View Daily Popular Posts"
477
  msgstr "Voir les postes populaires journaliers"
478
 
479
- #: admin.inc.php:599
480
  msgid "View Overall Popular Posts"
481
  msgstr "Voir tous les postes populaires"
482
 
483
- #: admin.inc.php:603
484
  msgid "Results per-page:"
485
  msgstr "Résultats par page:"
486
 
487
- #: admin.inc.php:627
488
  msgid "Previous"
489
  msgstr "Précédente"
490
 
491
- #: admin.inc.php:645
492
  msgid "Next"
493
  msgstr "Suivante"
494
 
495
- #: admin.inc.php:668
496
  msgid "Daily Popular"
497
  msgstr "Populaires journaliers"
498
 
499
- #: admin.inc.php:679
500
  msgid "Total / Today's Views"
501
  msgstr "Total/aujourd'hui visionnages"
502
 
@@ -567,23 +582,23 @@ msgstr "<h3>Populaires Journaliers</h3>"
567
  msgid "No top posts yet"
568
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
569
 
570
- #: top-10.php:560
571
  msgid "Once Weekly"
572
  msgstr ""
573
 
574
- #: top-10.php:561
575
  msgid "Once Fortnightly"
576
  msgstr ""
577
 
578
- #: top-10.php:562
579
  msgid "Once Monthly"
580
  msgstr ""
581
 
582
- #: top-10.php:582
583
  msgid "Settings"
584
  msgstr "Paramètres"
585
 
586
- #: top-10.php:584
587
  msgid "Donate"
588
  msgstr "Conribuer"
589
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Les options sont sauvegardées avec succès"
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Options par défaut sont définies"
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Le nombre de populaires sur le forum"
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
57
 
58
+ #: admin.inc.php:136
59
  msgid ""
60
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
61
  "continue to be counted."
63
  "Éliminer d'affichage les pages du message populaire? Le nombre des "
64
  "visionnage des pages qui seront toujours prises en compte."
65
 
66
+ #: admin.inc.php:139
67
  msgid "Exclude Categories: "
68
  msgstr "Exclure les catégories:"
69
 
70
+ #: admin.inc.php:157
71
  #, fuzzy
72
  msgid "Display number of views on:"
73
  msgstr "Afficher le nombre des visionnages du message?"
74
 
75
+ #: admin.inc.php:158
76
  msgid "Posts"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:159
80
  #, fuzzy
81
  msgid "Pages"
82
  msgstr "Page"
83
 
84
+ #: admin.inc.php:162
85
  msgid "Track visits of authors on their own posts?"
86
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
87
 
88
+ #: admin.inc.php:166
89
  msgid "Display number of page views in popular lists?"
90
  msgstr ""
91
  "Afficher le nombre des visionnages des pages dans les listes de popularité?"
92
 
93
+ #: admin.inc.php:170
94
  msgid "Force daily posts' list to be dynamic?"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:172
98
  #, fuzzy
99
  msgid ""
100
  "This option uses JavaScript to load the post and can increase your page load "
104
  "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
105
  "la page"
106
 
107
+ #: admin.inc.php:175
108
  msgid "Display page views on Posts > All Posts in Admin"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:179
112
  msgid "Link to Top 10 plugin page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:181
116
  #, fuzzy
117
  msgid ""
118
  "A link to the plugin is added as an extra list item to the list of popular "
122
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
123
  "mais nous vous y remercions!"
124
 
125
+ #: admin.inc.php:188
126
  #, fuzzy
127
  msgid "Output Options"
128
  msgstr "Paramètres de sortie"
129
 
130
+ #: admin.inc.php:191
131
  msgid "Format to display the count in: "
132
  msgstr "Format d’affichage de la quantité en:"
133
 
134
+ #: admin.inc.php:194
135
  #, fuzzy
136
  msgid ""
137
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
144
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
145
  "123 times, 23 visits today)</code>"
146
 
147
+ #: admin.inc.php:196
148
  msgid "Title of popular posts: "
149
  msgstr "Les en-têtes des messages populaires"
150
 
151
+ #: admin.inc.php:199
152
  msgid "Title of daily popular posts: "
153
  msgstr "Les en-têtes des messages populaires journaliers"
154
 
155
+ #: admin.inc.php:202
156
  msgid "When there are no posts, what should be shown?"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:206
160
  msgid "Blank Output"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:210
164
  msgid "Display:"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:214
168
  msgid "Show post excerpt in list?"
169
  msgstr "Afficher le fragment du message dans la liste?"
170
 
171
+ #: admin.inc.php:217
172
  msgid "Length of excerpt (in words): "
173
  msgstr "Longueur du fragment (mots):"
174
 
175
+ #: admin.inc.php:220
176
  msgid "Customize the output:"
177
  msgstr "Paramétrer la sortie:"
178
 
179
+ #: admin.inc.php:222
180
  msgid "HTML to display before the list of posts: "
181
  msgstr "HTML d'affichage avant la liste des messages:"
182
 
183
+ #: admin.inc.php:225
184
  msgid "HTML to display before each list item: "
185
  msgstr "HTML d'affichage avant chaque élément de la liste:"
186
 
187
+ #: admin.inc.php:228
188
  msgid "HTML to display after each list item: "
189
  msgstr "HTML d'affichage après chaque élément de la liste:"
190
 
191
+ #: admin.inc.php:231
192
  msgid "HTML to display after the list of posts: "
193
  msgstr "HTML d'affichage après la liste des messages:"
194
 
195
+ #: admin.inc.php:234
196
  msgid "Post thumbnail options:"
197
  msgstr "Options thumbnail des messages:"
198
 
199
+ #: admin.inc.php:236
200
  msgid "Location of post thumbnail:"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:240
204
  msgid "Display thumbnails inline with posts, before title"
205
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
206
 
207
+ #: admin.inc.php:244
208
  msgid "Display thumbnails inline with posts, after title"
209
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
210
 
211
+ #: admin.inc.php:248
212
  msgid "Display only thumbnails, no text"
213
  msgstr "Afficher uniquement le thumbnail, sans le texte"
214
 
215
+ #: admin.inc.php:252
216
  msgid "Do not display thumbnails, only text."
217
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
218
 
219
+ #: admin.inc.php:256
220
  msgid "Maximum width of the thumbnail: "
221
  msgstr ""
222
 
223
+ #: admin.inc.php:259
224
  msgid "Maximum height of the thumbnail: "
225
  msgstr ""
226
 
227
+ #: admin.inc.php:262
228
  msgid "Use timthumb to generate thumbnails? "
229
  msgstr ""
230
 
231
+ #: admin.inc.php:263
232
  msgid ""
233
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
234
  "\">timthumb</a> will be used to generate thumbnails"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:265
238
  #, fuzzy
239
  msgid "Post thumbnail meta field name: "
240
  msgstr "Options thumbnail des messages:"
241
 
242
+ #: admin.inc.php:266
243
  msgid ""
244
  "The value of this field should contain the image source and is set in the "
245
  "<em>Add New Post</em> screen"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:268
249
  #, fuzzy
250
  msgid ""
251
  "If the postmeta is not set, then should the plugin extract the first image "
256
  "première image de la résolution correspondante du fichier est de taille "
257
  "supérieure"
258
 
259
+ #: admin.inc.php:269
260
  #, fuzzy
261
  msgid ""
262
+ "This could slow down the loading of your page if the first image in the "
263
  "related posts is large in file-size"
264
  msgstr ""
265
  "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première "
267
  "première image de la résolution correspondante du fichier est de taille "
268
  "supérieure"
269
 
270
+ #: admin.inc.php:271
271
  msgid "Use default thumbnail? "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:272
275
  msgid ""
276
  "If checked, when no thumbnail is found, show a default one from the URL "
277
  "below. If not checked and no thumbnail is found, no image will be shown."
280
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
281
  "été retrouvé, ne pas afficher l'image."
282
 
283
+ #: admin.inc.php:274
284
  msgid "Default thumbnail: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:275
288
  msgid ""
289
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
290
  "then it will check the meta field. If this is not available, then it will "
291
  "show the default image as specified above"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:281
295
  msgid "Custom Styles"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:284
299
  msgid "Custom CSS to add to header:"
300
  msgstr ""
301
 
302
+ #: admin.inc.php:287
303
  msgid ""
304
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
305
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
306
  "available CSS classes to style."
307
  msgstr ""
308
 
 
 
 
 
309
  #: admin.inc.php:292
310
+ msgid "Maintenance"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:296
314
  msgid ""
315
  "Over time the Daily Top 10 database grows in size, which reduces the "
316
  "performance of the plugin. Cleaning the database at regular intervals could "
317
+ "improve performance, especially on high traffic blogs."
318
  msgstr ""
319
 
320
  #: admin.inc.php:297
321
+ msgid ""
322
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
323
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
324
+ "causes the daily posts table to reset."
325
  msgstr ""
326
 
327
  #: admin.inc.php:300
328
+ msgid "Enable scheduled maintenance of daily tables:"
329
+ msgstr ""
330
+
331
+ #: admin.inc.php:305
332
+ msgid "Time to run maintenance"
333
+ msgstr ""
334
+
335
+ #: admin.inc.php:308
336
  msgid "How often should the maintenance be run:"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:312
340
  msgid "Daily"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:316
344
  msgid "Weekly"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:320
348
  msgid "Fortnightly"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:324
352
  msgid "Monthly"
353
  msgstr ""
354
 
355
+ #: admin.inc.php:333
356
  msgid "The cron job has been scheduled. Maintenance will run "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:338
360
  msgid "The cron job is missing. Please resave this page to add the job"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:343
364
  msgid "Maintenance is turned off"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:351
368
  msgid "Reset count"
369
  msgstr "Réinitialiser le compteur"
370
 
371
+ #: admin.inc.php:354
372
  msgid ""
373
  "This cannot be reversed. Make sure that your database has been backed up "
374
  "before proceeding"
376
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
377
  "sauvegardée avant de poursuivre."
378
 
379
+ #: admin.inc.php:357
380
  #, fuzzy
381
  msgid "Reset Popular Posts"
382
  msgstr "Postes populaires"
383
 
384
+ #: admin.inc.php:357
385
  msgid "Are you sure you want to reset the popular posts?"
386
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
387
 
388
+ #: admin.inc.php:358
389
  #, fuzzy
390
  msgid "Reset Daily Popular Posts"
391
  msgstr "Postes populaires journaliers"
392
 
393
+ #: admin.inc.php:358
394
  msgid "Are you sure you want to reset the daily popular posts?"
395
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
396
 
397
+ #: admin.inc.php:359
398
  msgid "Clear duplicates"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:359
402
  msgid "This will delete the duplicate entries in the tables. Proceed?"
403
  msgstr ""
404
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
405
 
406
+ #: admin.inc.php:363
407
  #, fuzzy
408
  msgid "Save Options"
409
  msgstr "Options:"
410
 
411
+ #: admin.inc.php:364
412
  #, fuzzy
413
  msgid "Default Options"
414
  msgstr "Paramètres de sortie"
415
 
416
+ #: admin.inc.php:364
417
  msgid "Do you want to set options to Default?"
418
  msgstr "Définir les paramètres par défaut?"
419
 
420
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
421
  msgid "Popular Posts"
422
  msgstr "Postes populaires"
423
 
424
+ #: admin.inc.php:390
425
  msgid "Daily Popular Posts"
426
  msgstr "Postes populaires journaliers"
427
 
428
+ #: admin.inc.php:412
429
  msgid "Support the development"
430
  msgstr "Soutenir le projet"
431
 
432
+ #: admin.inc.php:420
433
  msgid "Enter amount in USD: "
434
  msgstr "Saisir le montant en dollars US"
435
 
436
+ #: admin.inc.php:424
437
  msgid "Send your donation to the author of"
438
  msgstr "Envoyer sa dotation à l'auteur"
439
 
440
+ #: admin.inc.php:430
441
  msgid "Follow us on Facebook"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:434
445
  #, fuzzy
446
  msgid "Quick Links"
447
  msgstr "Liens rapides"
448
 
449
+ #: admin.inc.php:436
450
  #, fuzzy
451
  msgid "Top 10 plugin page"
452
  msgstr "Page de plugin"
453
 
454
+ #: admin.inc.php:437
455
  msgid "Other plugins"
456
  msgstr "Autres plugins"
457
 
458
+ #: admin.inc.php:438
459
  msgid "Ajay's blog"
460
  msgstr "Blog Ajay"
461
 
462
+ #: admin.inc.php:439 top-10.php:588
463
  msgid "Support"
464
  msgstr "Service d'assistance"
465
 
466
+ #: admin.inc.php:440
467
  msgid "Follow @ajaydsouza on Twitter"
468
  msgstr "Follow @ajaydsouza sur Twitter"
469
 
470
+ #: admin.inc.php:444
471
  msgid "Recent developments"
472
  msgstr "Les derniers projets"
473
 
474
+ #: admin.inc.php:467 admin.inc.php:469
475
  msgid "Top 10"
476
  msgstr "Тоp 10"
477
 
478
+ #: admin.inc.php:583
479
  msgid "Results"
480
  msgstr "Résultats"
481
 
482
+ #: admin.inc.php:585 admin.inc.php:591
483
  msgid "of"
484
  msgstr "de, du, de la, des"
485
 
486
+ #: admin.inc.php:589
487
  msgid "Page"
488
  msgstr "Page"
489
 
490
+ #: admin.inc.php:603
491
  msgid "View Daily Popular Posts"
492
  msgstr "Voir les postes populaires journaliers"
493
 
494
+ #: admin.inc.php:607
495
  msgid "View Overall Popular Posts"
496
  msgstr "Voir tous les postes populaires"
497
 
498
+ #: admin.inc.php:611
499
  msgid "Results per-page:"
500
  msgstr "Résultats par page:"
501
 
502
+ #: admin.inc.php:635
503
  msgid "Previous"
504
  msgstr "Précédente"
505
 
506
+ #: admin.inc.php:653
507
  msgid "Next"
508
  msgstr "Suivante"
509
 
510
+ #: admin.inc.php:676
511
  msgid "Daily Popular"
512
  msgstr "Populaires journaliers"
513
 
514
+ #: admin.inc.php:687
515
  msgid "Total / Today's Views"
516
  msgstr "Total/aujourd'hui visionnages"
517
 
582
  msgid "No top posts yet"
583
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
584
 
585
+ #: top-10.php:565
586
  msgid "Once Weekly"
587
  msgstr ""
588
 
589
+ #: top-10.php:566
590
  msgid "Once Fortnightly"
591
  msgstr ""
592
 
593
+ #: top-10.php:567
594
  msgid "Once Monthly"
595
  msgstr ""
596
 
597
+ #: top-10.php:587
598
  msgid "Settings"
599
  msgstr "Paramètres"
600
 
601
+ #: top-10.php:589
602
  msgid "Donate"
603
  msgstr "Conribuer"
604
 
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: 2012-08-12 16:56-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"
@@ -14,41 +14,49 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Roghanna shábháil go rathúil."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Roghanna leagtha chun Réamhshocrú."
24
 
25
- #: admin.inc.php:90
26
  #, fuzzy
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Teideal an post tóir:"
29
 
30
- #: admin.inc.php:96
31
  #, fuzzy
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Teideal ar tóir an bpost:"
34
 
35
- #: admin.inc.php:103
36
  msgid "Duplicate rows cleaned from tables"
37
  msgstr ""
38
 
39
- #: admin.inc.php:124
40
  msgid "General options"
41
  msgstr ""
42
 
43
- #: admin.inc.php:127
44
  msgid "Number of popular posts to display: "
45
  msgstr "An líon post tóir a thaispeáint:"
46
 
47
- #: admin.inc.php:130
48
  msgid "Daily Popular should contain views of how many days? "
49
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
50
 
51
- #: admin.inc.php:133
52
  msgid ""
53
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
  "continue to be counted."
@@ -56,37 +64,37 @@ msgstr ""
56
  "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir "
57
  "Leathanaigh ar aghaidh a chur san áireamh."
58
 
59
- #: admin.inc.php:136
60
  msgid "Exclude Categories: "
61
  msgstr ""
62
 
63
- #: admin.inc.php:154
64
  #, fuzzy
65
  msgid "Display number of views on:"
66
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
67
 
68
- #: admin.inc.php:155
69
  msgid "Posts"
70
  msgstr ""
71
 
72
- #: admin.inc.php:156
73
  #, fuzzy
74
  msgid "Pages"
75
  msgstr "Leathanach"
76
 
77
- #: admin.inc.php:159
78
  msgid "Track visits of authors on their own posts?"
79
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
80
 
81
- #: admin.inc.php:163
82
  msgid "Display number of page views in popular lists?"
83
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
84
 
85
- #: admin.inc.php:167
86
  msgid "Force daily posts' list to be dynamic?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
  #, fuzzy
91
  msgid ""
92
  "This option uses JavaScript to load the post and can increase your page load "
@@ -96,15 +104,15 @@ msgstr ""
96
  "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
97
  "luchtú leathanach"
98
 
99
- #: admin.inc.php:172
100
  msgid "Display page views on Posts > All Posts in Admin"
101
  msgstr ""
102
 
103
- #: admin.inc.php:176
104
  msgid "Link to Top 10 plugin page"
105
  msgstr ""
106
 
107
- #: admin.inc.php:178
108
  #, fuzzy
109
  msgid ""
110
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -113,16 +121,16 @@ msgstr ""
113
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
114
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
115
 
116
- #: admin.inc.php:185
117
  #, fuzzy
118
  msgid "Output Options"
119
  msgstr "roghanna"
120
 
121
- #: admin.inc.php:188
122
  msgid "Format to display the count in: "
123
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
124
 
125
- #: admin.inc.php:191
126
  #, fuzzy
127
  msgid ""
128
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -135,358 +143,365 @@ msgstr ""
135
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
136
  "123 amanna, 23 cuairt inniu) </ cód>"
137
 
138
- #: admin.inc.php:193
139
  msgid "Title of popular posts: "
140
  msgstr "Teideal an post tóir:"
141
 
142
- #: admin.inc.php:196
143
  msgid "Title of daily popular posts: "
144
  msgstr "Teideal ar tóir an bpost:"
145
 
146
- #: admin.inc.php:199
147
  msgid "When there are no posts, what should be shown?"
148
  msgstr ""
149
 
150
- #: admin.inc.php:203
151
  msgid "Blank Output"
152
  msgstr ""
153
 
154
- #: admin.inc.php:207
155
  msgid "Display:"
156
  msgstr ""
157
 
158
- #: admin.inc.php:211
159
  msgid "Show post excerpt in list?"
160
  msgstr ""
161
 
162
- #: admin.inc.php:214
163
  msgid "Length of excerpt (in words): "
164
  msgstr ""
165
 
166
- #: admin.inc.php:217
167
  msgid "Customize the output:"
168
  msgstr ""
169
 
170
- #: admin.inc.php:219
171
  #, fuzzy
172
  msgid "HTML to display before the list of posts: "
173
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
174
 
175
- #: admin.inc.php:222
176
  #, fuzzy
177
  msgid "HTML to display before each list item: "
178
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
179
 
180
- #: admin.inc.php:225
181
  #, fuzzy
182
  msgid "HTML to display after each list item: "
183
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
184
 
185
- #: admin.inc.php:228
186
  #, fuzzy
187
  msgid "HTML to display after the list of posts: "
188
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
189
 
190
- #: admin.inc.php:231
191
  msgid "Post thumbnail options:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:233
195
  msgid "Location of post thumbnail:"
196
  msgstr ""
197
 
198
- #: admin.inc.php:237
199
  #, fuzzy
200
  msgid "Display thumbnails inline with posts, before title"
201
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
202
 
203
- #: admin.inc.php:241
204
  #, fuzzy
205
  msgid "Display thumbnails inline with posts, after title"
206
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
207
 
208
- #: admin.inc.php:245
209
  #, fuzzy
210
  msgid "Display only thumbnails, no text"
211
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
212
 
213
- #: admin.inc.php:249
214
  #, fuzzy
215
  msgid "Do not display thumbnails, only text."
216
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
217
 
218
- #: admin.inc.php:253
219
  msgid "Maximum width of the thumbnail: "
220
  msgstr ""
221
 
222
- #: admin.inc.php:256
223
  msgid "Maximum height of the thumbnail: "
224
  msgstr ""
225
 
226
- #: admin.inc.php:259
227
  msgid "Use timthumb to generate thumbnails? "
228
  msgstr ""
229
 
230
- #: admin.inc.php:260
231
  msgid ""
232
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
233
  "\">timthumb</a> will be used to generate thumbnails"
234
  msgstr ""
235
 
236
- #: admin.inc.php:262
237
  msgid "Post thumbnail meta field name: "
238
  msgstr ""
239
 
240
- #: admin.inc.php:263
241
  msgid ""
242
  "The value of this field should contain the image source and is set in the "
243
  "<em>Add New Post</em> screen"
244
  msgstr ""
245
 
246
- #: admin.inc.php:265
247
  msgid ""
248
  "If the postmeta is not set, then should the plugin extract the first image "
249
  "from the post?"
250
  msgstr ""
251
 
252
- #: admin.inc.php:266
253
  msgid ""
254
- "This can slow down the loading of your page if the first image in the "
255
  "related posts is large in file-size"
256
  msgstr ""
257
 
258
- #: admin.inc.php:268
259
  msgid "Use default thumbnail? "
260
  msgstr ""
261
 
262
- #: admin.inc.php:269
263
  msgid ""
264
  "If checked, when no thumbnail is found, show a default one from the URL "
265
  "below. If not checked and no thumbnail is found, no image will be shown."
266
  msgstr ""
267
 
268
- #: admin.inc.php:271
269
  msgid "Default thumbnail: "
270
  msgstr ""
271
 
272
- #: admin.inc.php:272
273
  msgid ""
274
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
275
  "then it will check the meta field. If this is not available, then it will "
276
  "show the default image as specified above"
277
  msgstr ""
278
 
279
- #: admin.inc.php:278
280
  msgid "Custom Styles"
281
  msgstr ""
282
 
283
- #: admin.inc.php:281
284
  msgid "Custom CSS to add to header:"
285
  msgstr ""
286
 
287
- #: admin.inc.php:284
288
  msgid ""
289
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
290
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
291
  "available CSS classes to style."
292
  msgstr ""
293
 
294
- #: admin.inc.php:289
295
- msgid "Maintenance"
296
- msgstr ""
297
-
298
  #: admin.inc.php:292
299
- msgid "Enable scheduled maintenance of daily tables:"
300
  msgstr ""
301
 
302
- #: admin.inc.php:294
303
  msgid ""
304
  "Over time the Daily Top 10 database grows in size, which reduces the "
305
  "performance of the plugin. Cleaning the database at regular intervals could "
306
- "improve performance, especially on high traffic blogs"
307
  msgstr ""
308
 
309
  #: admin.inc.php:297
310
- msgid "Time to run maintenance"
 
 
 
311
  msgstr ""
312
 
313
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
314
  msgid "How often should the maintenance be run:"
315
  msgstr ""
316
 
317
- #: admin.inc.php:304
318
  msgid "Daily"
319
  msgstr ""
320
 
321
- #: admin.inc.php:308
322
  msgid "Weekly"
323
  msgstr ""
324
 
325
- #: admin.inc.php:312
326
  msgid "Fortnightly"
327
  msgstr ""
328
 
329
- #: admin.inc.php:316
330
  msgid "Monthly"
331
  msgstr ""
332
 
333
- #: admin.inc.php:325
334
  msgid "The cron job has been scheduled. Maintenance will run "
335
  msgstr ""
336
 
337
- #: admin.inc.php:330
338
  msgid "The cron job is missing. Please resave this page to add the job"
339
  msgstr ""
340
 
341
- #: admin.inc.php:335
342
  msgid "Maintenance is turned off"
343
  msgstr ""
344
 
345
- #: admin.inc.php:343
346
  msgid "Reset count"
347
  msgstr ""
348
 
349
- #: admin.inc.php:346
350
  msgid ""
351
  "This cannot be reversed. Make sure that your database has been backed up "
352
  "before proceeding"
353
  msgstr ""
354
 
355
- #: admin.inc.php:349
356
  #, fuzzy
357
  msgid "Reset Popular Posts"
358
  msgstr "Poist Coitianta"
359
 
360
- #: admin.inc.php:349
361
  msgid "Are you sure you want to reset the popular posts?"
362
  msgstr ""
363
 
364
- #: admin.inc.php:350
365
  #, fuzzy
366
  msgid "Reset Daily Popular Posts"
367
  msgstr "Poist Coitianta Laethúil"
368
 
369
- #: admin.inc.php:350
370
  msgid "Are you sure you want to reset the daily popular posts?"
371
  msgstr ""
372
 
373
- #: admin.inc.php:351
374
  msgid "Clear duplicates"
375
  msgstr ""
376
 
377
- #: admin.inc.php:351
378
  msgid "This will delete the duplicate entries in the tables. Proceed?"
379
  msgstr ""
380
 
381
- #: admin.inc.php:355
382
  #, fuzzy
383
  msgid "Save Options"
384
  msgstr "roghanna"
385
 
386
- #: admin.inc.php:356
387
  #, fuzzy
388
  msgid "Default Options"
389
  msgstr "roghanna"
390
 
391
- #: admin.inc.php:356
392
  msgid "Do you want to set options to Default?"
393
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
394
 
395
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
396
  msgid "Popular Posts"
397
  msgstr "Poist Coitianta"
398
 
399
- #: admin.inc.php:382
400
  msgid "Daily Popular Posts"
401
  msgstr "Poist Coitianta Laethúil"
402
 
403
- #: admin.inc.php:404
404
  #, fuzzy
405
  msgid "Support the development"
406
  msgstr "Tacú le Forbairt"
407
 
408
- #: admin.inc.php:412
409
  msgid "Enter amount in USD: "
410
  msgstr ""
411
 
412
- #: admin.inc.php:416
413
  msgid "Send your donation to the author of"
414
  msgstr ""
415
 
416
- #: admin.inc.php:422
417
  msgid "Follow us on Facebook"
418
  msgstr ""
419
 
420
- #: admin.inc.php:426
421
  msgid "Quick Links"
422
  msgstr ""
423
 
424
- #: admin.inc.php:428
425
  msgid "Top 10 plugin page"
426
  msgstr ""
427
 
428
- #: admin.inc.php:429
429
  msgid "Other plugins"
430
  msgstr ""
431
 
432
- #: admin.inc.php:430
433
  msgid "Ajay's blog"
434
  msgstr ""
435
 
436
- #: admin.inc.php:431 top-10.php:583
437
  msgid "Support"
438
  msgstr ""
439
 
440
- #: admin.inc.php:432
441
  msgid "Follow @ajaydsouza on Twitter"
442
  msgstr ""
443
 
444
- #: admin.inc.php:436
445
  #, fuzzy
446
  msgid "Recent developments"
447
  msgstr "Tacú le Forbairt"
448
 
449
- #: admin.inc.php:459 admin.inc.php:461
450
  msgid "Top 10"
451
  msgstr "Top 10"
452
 
453
- #: admin.inc.php:575
454
  msgid "Results"
455
  msgstr "torthaí"
456
 
457
- #: admin.inc.php:577 admin.inc.php:583
458
  msgid "of"
459
  msgstr "de"
460
 
461
- #: admin.inc.php:581
462
  msgid "Page"
463
  msgstr "Leathanach"
464
 
465
- #: admin.inc.php:595
466
  msgid "View Daily Popular Posts"
467
  msgstr "Féach ar Poist sa lá Coitianta"
468
 
469
- #: admin.inc.php:599
470
  msgid "View Overall Popular Posts"
471
  msgstr "Féach ar Poist Coitianta Foriomlán"
472
 
473
- #: admin.inc.php:603
474
  msgid "Results per-page:"
475
  msgstr "Torthaí in aghaidh an-leathanach:"
476
 
477
- #: admin.inc.php:627
478
  msgid "Previous"
479
  msgstr "roimhe Seo"
480
 
481
- #: admin.inc.php:645
482
  msgid "Next"
483
  msgstr "Ar Aghaidh"
484
 
485
- #: admin.inc.php:668
486
  msgid "Daily Popular"
487
  msgstr "laethúil Coitianta"
488
 
489
- #: admin.inc.php:679
490
  msgid "Total / Today's Views"
491
  msgstr "laethúil Coitianta"
492
 
@@ -555,23 +570,23 @@ msgstr "<h3> laethúil Coitianta </ h3>"
555
  msgid "No top posts yet"
556
  msgstr "Teideal an post tóir:"
557
 
558
- #: top-10.php:560
559
  msgid "Once Weekly"
560
  msgstr ""
561
 
562
- #: top-10.php:561
563
  msgid "Once Fortnightly"
564
  msgstr ""
565
 
566
- #: top-10.php:562
567
  msgid "Once Monthly"
568
  msgstr ""
569
 
570
- #: top-10.php:582
571
  msgid "Settings"
572
  msgstr ""
573
 
574
- #: top-10.php:584
575
  msgid "Donate"
576
  msgstr ""
577
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Roghanna shábháil go rathúil."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Roghanna leagtha chun Réamhshocrú."
32
 
33
+ #: admin.inc.php:93
34
  #, fuzzy
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Teideal an post tóir:"
37
 
38
+ #: admin.inc.php:99
39
  #, fuzzy
40
  msgid "Top 10 daily popular posts reset"
41
  msgstr "Teideal ar tóir an bpost:"
42
 
43
+ #: admin.inc.php:106
44
  msgid "Duplicate rows cleaned from tables"
45
  msgstr ""
46
 
47
+ #: admin.inc.php:127
48
  msgid "General options"
49
  msgstr ""
50
 
51
+ #: admin.inc.php:130
52
  msgid "Number of popular posts to display: "
53
  msgstr "An líon post tóir a thaispeáint:"
54
 
55
+ #: admin.inc.php:133
56
  msgid "Daily Popular should contain views of how many days? "
57
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
58
 
59
+ #: admin.inc.php:136
60
  msgid ""
61
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
62
  "continue to be counted."
64
  "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir "
65
  "Leathanaigh ar aghaidh a chur san áireamh."
66
 
67
+ #: admin.inc.php:139
68
  msgid "Exclude Categories: "
69
  msgstr ""
70
 
71
+ #: admin.inc.php:157
72
  #, fuzzy
73
  msgid "Display number of views on:"
74
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
75
 
76
+ #: admin.inc.php:158
77
  msgid "Posts"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:159
81
  #, fuzzy
82
  msgid "Pages"
83
  msgstr "Leathanach"
84
 
85
+ #: admin.inc.php:162
86
  msgid "Track visits of authors on their own posts?"
87
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
88
 
89
+ #: admin.inc.php:166
90
  msgid "Display number of page views in popular lists?"
91
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
92
 
93
+ #: admin.inc.php:170
94
  msgid "Force daily posts' list to be dynamic?"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:172
98
  #, fuzzy
99
  msgid ""
100
  "This option uses JavaScript to load the post and can increase your page load "
104
  "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
105
  "luchtú leathanach"
106
 
107
+ #: admin.inc.php:175
108
  msgid "Display page views on Posts > All Posts in Admin"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:179
112
  msgid "Link to Top 10 plugin page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:181
116
  #, fuzzy
117
  msgid ""
118
  "A link to the plugin is added as an extra list item to the list of popular "
121
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
122
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
123
 
124
+ #: admin.inc.php:188
125
  #, fuzzy
126
  msgid "Output Options"
127
  msgstr "roghanna"
128
 
129
+ #: admin.inc.php:191
130
  msgid "Format to display the count in: "
131
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
132
 
133
+ #: admin.inc.php:194
134
  #, fuzzy
135
  msgid ""
136
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
143
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
144
  "123 amanna, 23 cuairt inniu) </ cód>"
145
 
146
+ #: admin.inc.php:196
147
  msgid "Title of popular posts: "
148
  msgstr "Teideal an post tóir:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Title of daily popular posts: "
152
  msgstr "Teideal ar tóir an bpost:"
153
 
154
+ #: admin.inc.php:202
155
  msgid "When there are no posts, what should be shown?"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:206
159
  msgid "Blank Output"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:210
163
  msgid "Display:"
164
  msgstr ""
165
 
166
+ #: admin.inc.php:214
167
  msgid "Show post excerpt in list?"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:217
171
  msgid "Length of excerpt (in words): "
172
  msgstr ""
173
 
174
+ #: admin.inc.php:220
175
  msgid "Customize the output:"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:222
179
  #, fuzzy
180
  msgid "HTML to display before the list of posts: "
181
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
182
 
183
+ #: admin.inc.php:225
184
  #, fuzzy
185
  msgid "HTML to display before each list item: "
186
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
187
 
188
+ #: admin.inc.php:228
189
  #, fuzzy
190
  msgid "HTML to display after each list item: "
191
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
192
 
193
+ #: admin.inc.php:231
194
  #, fuzzy
195
  msgid "HTML to display after the list of posts: "
196
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
197
 
198
+ #: admin.inc.php:234
199
  msgid "Post thumbnail options:"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:236
203
  msgid "Location of post thumbnail:"
204
  msgstr ""
205
 
206
+ #: admin.inc.php:240
207
  #, fuzzy
208
  msgid "Display thumbnails inline with posts, before title"
209
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
210
 
211
+ #: admin.inc.php:244
212
  #, fuzzy
213
  msgid "Display thumbnails inline with posts, after title"
214
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
215
 
216
+ #: admin.inc.php:248
217
  #, fuzzy
218
  msgid "Display only thumbnails, no text"
219
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
220
 
221
+ #: admin.inc.php:252
222
  #, fuzzy
223
  msgid "Do not display thumbnails, only text."
224
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
225
 
226
+ #: admin.inc.php:256
227
  msgid "Maximum width of the thumbnail: "
228
  msgstr ""
229
 
230
+ #: admin.inc.php:259
231
  msgid "Maximum height of the thumbnail: "
232
  msgstr ""
233
 
234
+ #: admin.inc.php:262
235
  msgid "Use timthumb to generate thumbnails? "
236
  msgstr ""
237
 
238
+ #: admin.inc.php:263
239
  msgid ""
240
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
241
  "\">timthumb</a> will be used to generate thumbnails"
242
  msgstr ""
243
 
244
+ #: admin.inc.php:265
245
  msgid "Post thumbnail meta field name: "
246
  msgstr ""
247
 
248
+ #: admin.inc.php:266
249
  msgid ""
250
  "The value of this field should contain the image source and is set in the "
251
  "<em>Add New Post</em> screen"
252
  msgstr ""
253
 
254
+ #: admin.inc.php:268
255
  msgid ""
256
  "If the postmeta is not set, then should the plugin extract the first image "
257
  "from the post?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:269
261
  msgid ""
262
+ "This could slow down the loading of your page if the first image in the "
263
  "related posts is large in file-size"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:271
267
  msgid "Use default thumbnail? "
268
  msgstr ""
269
 
270
+ #: admin.inc.php:272
271
  msgid ""
272
  "If checked, when no thumbnail is found, show a default one from the URL "
273
  "below. If not checked and no thumbnail is found, no image will be shown."
274
  msgstr ""
275
 
276
+ #: admin.inc.php:274
277
  msgid "Default thumbnail: "
278
  msgstr ""
279
 
280
+ #: admin.inc.php:275
281
  msgid ""
282
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
283
  "then it will check the meta field. If this is not available, then it will "
284
  "show the default image as specified above"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:281
288
  msgid "Custom Styles"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:284
292
  msgid "Custom CSS to add to header:"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:287
296
  msgid ""
297
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
298
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
299
  "available CSS classes to style."
300
  msgstr ""
301
 
 
 
 
 
302
  #: admin.inc.php:292
303
+ msgid "Maintenance"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:296
307
  msgid ""
308
  "Over time the Daily Top 10 database grows in size, which reduces the "
309
  "performance of the plugin. Cleaning the database at regular intervals could "
310
+ "improve performance, especially on high traffic blogs."
311
  msgstr ""
312
 
313
  #: admin.inc.php:297
314
+ msgid ""
315
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
316
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
317
+ "causes the daily posts table to reset."
318
  msgstr ""
319
 
320
  #: admin.inc.php:300
321
+ msgid "Enable scheduled maintenance of daily tables:"
322
+ msgstr ""
323
+
324
+ #: admin.inc.php:305
325
+ msgid "Time to run maintenance"
326
+ msgstr ""
327
+
328
+ #: admin.inc.php:308
329
  msgid "How often should the maintenance be run:"
330
  msgstr ""
331
 
332
+ #: admin.inc.php:312
333
  msgid "Daily"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:316
337
  msgid "Weekly"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:320
341
  msgid "Fortnightly"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:324
345
  msgid "Monthly"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:333
349
  msgid "The cron job has been scheduled. Maintenance will run "
350
  msgstr ""
351
 
352
+ #: admin.inc.php:338
353
  msgid "The cron job is missing. Please resave this page to add the job"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:343
357
  msgid "Maintenance is turned off"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:351
361
  msgid "Reset count"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:354
365
  msgid ""
366
  "This cannot be reversed. Make sure that your database has been backed up "
367
  "before proceeding"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:357
371
  #, fuzzy
372
  msgid "Reset Popular Posts"
373
  msgstr "Poist Coitianta"
374
 
375
+ #: admin.inc.php:357
376
  msgid "Are you sure you want to reset the popular posts?"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:358
380
  #, fuzzy
381
  msgid "Reset Daily Popular Posts"
382
  msgstr "Poist Coitianta Laethúil"
383
 
384
+ #: admin.inc.php:358
385
  msgid "Are you sure you want to reset the daily popular posts?"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:359
389
  msgid "Clear duplicates"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:359
393
  msgid "This will delete the duplicate entries in the tables. Proceed?"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:363
397
  #, fuzzy
398
  msgid "Save Options"
399
  msgstr "roghanna"
400
 
401
+ #: admin.inc.php:364
402
  #, fuzzy
403
  msgid "Default Options"
404
  msgstr "roghanna"
405
 
406
+ #: admin.inc.php:364
407
  msgid "Do you want to set options to Default?"
408
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
409
 
410
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
411
  msgid "Popular Posts"
412
  msgstr "Poist Coitianta"
413
 
414
+ #: admin.inc.php:390
415
  msgid "Daily Popular Posts"
416
  msgstr "Poist Coitianta Laethúil"
417
 
418
+ #: admin.inc.php:412
419
  #, fuzzy
420
  msgid "Support the development"
421
  msgstr "Tacú le Forbairt"
422
 
423
+ #: admin.inc.php:420
424
  msgid "Enter amount in USD: "
425
  msgstr ""
426
 
427
+ #: admin.inc.php:424
428
  msgid "Send your donation to the author of"
429
  msgstr ""
430
 
431
+ #: admin.inc.php:430
432
  msgid "Follow us on Facebook"
433
  msgstr ""
434
 
435
+ #: admin.inc.php:434
436
  msgid "Quick Links"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:436
440
  msgid "Top 10 plugin page"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:437
444
  msgid "Other plugins"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:438
448
  msgid "Ajay's blog"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:439 top-10.php:588
452
  msgid "Support"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:440
456
  msgid "Follow @ajaydsouza on Twitter"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:444
460
  #, fuzzy
461
  msgid "Recent developments"
462
  msgstr "Tacú le Forbairt"
463
 
464
+ #: admin.inc.php:467 admin.inc.php:469
465
  msgid "Top 10"
466
  msgstr "Top 10"
467
 
468
+ #: admin.inc.php:583
469
  msgid "Results"
470
  msgstr "torthaí"
471
 
472
+ #: admin.inc.php:585 admin.inc.php:591
473
  msgid "of"
474
  msgstr "de"
475
 
476
+ #: admin.inc.php:589
477
  msgid "Page"
478
  msgstr "Leathanach"
479
 
480
+ #: admin.inc.php:603
481
  msgid "View Daily Popular Posts"
482
  msgstr "Féach ar Poist sa lá Coitianta"
483
 
484
+ #: admin.inc.php:607
485
  msgid "View Overall Popular Posts"
486
  msgstr "Féach ar Poist Coitianta Foriomlán"
487
 
488
+ #: admin.inc.php:611
489
  msgid "Results per-page:"
490
  msgstr "Torthaí in aghaidh an-leathanach:"
491
 
492
+ #: admin.inc.php:635
493
  msgid "Previous"
494
  msgstr "roimhe Seo"
495
 
496
+ #: admin.inc.php:653
497
  msgid "Next"
498
  msgstr "Ar Aghaidh"
499
 
500
+ #: admin.inc.php:676
501
  msgid "Daily Popular"
502
  msgstr "laethúil Coitianta"
503
 
504
+ #: admin.inc.php:687
505
  msgid "Total / Today's Views"
506
  msgstr "laethúil Coitianta"
507
 
570
  msgid "No top posts yet"
571
  msgstr "Teideal an post tóir:"
572
 
573
+ #: top-10.php:565
574
  msgid "Once Weekly"
575
  msgstr ""
576
 
577
+ #: top-10.php:566
578
  msgid "Once Fortnightly"
579
  msgstr ""
580
 
581
+ #: top-10.php:567
582
  msgid "Once Monthly"
583
  msgstr ""
584
 
585
+ #: top-10.php:587
586
  msgid "Settings"
587
  msgstr ""
588
 
589
+ #: top-10.php:589
590
  msgid "Donate"
591
  msgstr ""
592
 
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: 2012-08-12 16:56-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"
@@ -15,41 +15,49 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
19
  msgid "Options saved successfully."
20
  msgstr "विकल्प सफलतापूर्वक बचाया."
21
 
22
- #: admin.inc.php:84
23
  msgid "Options set to Default."
24
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
25
 
26
- #: admin.inc.php:90
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "लोकप्रिय पदों का शीर्षक:"
30
 
31
- #: admin.inc.php:96
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
35
 
36
- #: admin.inc.php:103
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
- #: admin.inc.php:124
41
  msgid "General options"
42
  msgstr ""
43
 
44
- #: admin.inc.php:127
45
  msgid "Number of popular posts to display: "
46
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
47
 
48
- #: admin.inc.php:130
49
  msgid "Daily Popular should contain views of how many days? "
50
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
51
 
52
- #: admin.inc.php:133
53
  msgid ""
54
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
55
  "continue to be counted."
@@ -57,37 +65,37 @@ msgstr ""
57
  "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी "
58
  "रहेगी."
59
 
60
- #: admin.inc.php:136
61
  msgid "Exclude Categories: "
62
  msgstr ""
63
 
64
- #: admin.inc.php:154
65
  #, fuzzy
66
  msgid "Display number of views on:"
67
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
68
 
69
- #: admin.inc.php:155
70
  msgid "Posts"
71
  msgstr ""
72
 
73
- #: admin.inc.php:156
74
  #, fuzzy
75
  msgid "Pages"
76
  msgstr "पृष्ठ"
77
 
78
- #: admin.inc.php:159
79
  msgid "Track visits of authors on their own posts?"
80
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
81
 
82
- #: admin.inc.php:163
83
  msgid "Display number of page views in popular lists?"
84
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
85
 
86
- #: admin.inc.php:167
87
  msgid "Force daily posts' list to be dynamic?"
88
  msgstr ""
89
 
90
- #: admin.inc.php:169
91
  #, fuzzy
92
  msgid ""
93
  "This option uses JavaScript to load the post and can increase your page load "
@@ -96,15 +104,15 @@ msgstr ""
96
  "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
97
  "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
98
 
99
- #: admin.inc.php:172
100
  msgid "Display page views on Posts > All Posts in Admin"
101
  msgstr ""
102
 
103
- #: admin.inc.php:176
104
  msgid "Link to Top 10 plugin page"
105
  msgstr ""
106
 
107
- #: admin.inc.php:178
108
  #, fuzzy
109
  msgid ""
110
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -113,16 +121,16 @@ msgstr ""
113
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
114
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
115
 
116
- #: admin.inc.php:185
117
  #, fuzzy
118
  msgid "Output Options"
119
  msgstr "विकल्प हैं:"
120
 
121
- #: admin.inc.php:188
122
  msgid "Format to display the count in: "
123
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
124
 
125
- #: admin.inc.php:191
126
  #, fuzzy
127
  msgid ""
128
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -134,352 +142,359 @@ msgstr ""
134
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
135
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
136
 
137
- #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "लोकप्रिय पदों का शीर्षक:"
140
 
141
- #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
144
 
145
- #: admin.inc.php:199
146
  msgid "When there are no posts, what should be shown?"
147
  msgstr ""
148
 
149
- #: admin.inc.php:203
150
  msgid "Blank Output"
151
  msgstr ""
152
 
153
- #: admin.inc.php:207
154
  msgid "Display:"
155
  msgstr ""
156
 
157
- #: admin.inc.php:211
158
  msgid "Show post excerpt in list?"
159
  msgstr ""
160
 
161
- #: admin.inc.php:214
162
  msgid "Length of excerpt (in words): "
163
  msgstr ""
164
 
165
- #: admin.inc.php:217
166
  msgid "Customize the output:"
167
  msgstr ""
168
 
169
- #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr ""
172
 
173
- #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr ""
176
 
177
- #: admin.inc.php:225
178
  #, fuzzy
179
  msgid "HTML to display after each list item: "
180
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
181
 
182
- #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr ""
185
 
186
- #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr ""
189
 
190
- #: admin.inc.php:233
191
  msgid "Location of post thumbnail:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:237
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
198
 
199
- #: admin.inc.php:241
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, after title"
202
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
203
 
204
- #: admin.inc.php:245
205
  msgid "Display only thumbnails, no text"
206
  msgstr ""
207
 
208
- #: admin.inc.php:249
209
  msgid "Do not display thumbnails, only text."
210
  msgstr ""
211
 
212
- #: admin.inc.php:253
213
  msgid "Maximum width of the thumbnail: "
214
  msgstr ""
215
 
216
- #: admin.inc.php:256
217
  msgid "Maximum height of the thumbnail: "
218
  msgstr ""
219
 
220
- #: admin.inc.php:259
221
  msgid "Use timthumb to generate thumbnails? "
222
  msgstr ""
223
 
224
- #: admin.inc.php:260
225
  msgid ""
226
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
227
  "\">timthumb</a> will be used to generate thumbnails"
228
  msgstr ""
229
 
230
- #: admin.inc.php:262
231
  msgid "Post thumbnail meta field name: "
232
  msgstr ""
233
 
234
- #: admin.inc.php:263
235
  msgid ""
236
  "The value of this field should contain the image source and is set in the "
237
  "<em>Add New Post</em> screen"
238
  msgstr ""
239
 
240
- #: admin.inc.php:265
241
  msgid ""
242
  "If the postmeta is not set, then should the plugin extract the first image "
243
  "from the post?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:266
247
  msgid ""
248
- "This can slow down the loading of your page if the first image in the "
249
  "related posts is large in file-size"
250
  msgstr ""
251
 
252
- #: admin.inc.php:268
253
  msgid "Use default thumbnail? "
254
  msgstr ""
255
 
256
- #: admin.inc.php:269
257
  msgid ""
258
  "If checked, when no thumbnail is found, show a default one from the URL "
259
  "below. If not checked and no thumbnail is found, no image will be shown."
260
  msgstr ""
261
 
262
- #: admin.inc.php:271
263
  msgid "Default thumbnail: "
264
  msgstr ""
265
 
266
- #: admin.inc.php:272
267
  msgid ""
268
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
269
  "then it will check the meta field. If this is not available, then it will "
270
  "show the default image as specified above"
271
  msgstr ""
272
 
273
- #: admin.inc.php:278
274
  msgid "Custom Styles"
275
  msgstr ""
276
 
277
- #: admin.inc.php:281
278
  msgid "Custom CSS to add to header:"
279
  msgstr ""
280
 
281
- #: admin.inc.php:284
282
  msgid ""
283
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
284
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
285
  "available CSS classes to style."
286
  msgstr ""
287
 
288
- #: admin.inc.php:289
289
- msgid "Maintenance"
290
- msgstr ""
291
-
292
  #: admin.inc.php:292
293
- msgid "Enable scheduled maintenance of daily tables:"
294
  msgstr ""
295
 
296
- #: admin.inc.php:294
297
  msgid ""
298
  "Over time the Daily Top 10 database grows in size, which reduces the "
299
  "performance of the plugin. Cleaning the database at regular intervals could "
300
- "improve performance, especially on high traffic blogs"
301
  msgstr ""
302
 
303
  #: admin.inc.php:297
304
- msgid "Time to run maintenance"
 
 
 
305
  msgstr ""
306
 
307
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
308
  msgid "How often should the maintenance be run:"
309
  msgstr ""
310
 
311
- #: admin.inc.php:304
312
  msgid "Daily"
313
  msgstr ""
314
 
315
- #: admin.inc.php:308
316
  msgid "Weekly"
317
  msgstr ""
318
 
319
- #: admin.inc.php:312
320
  msgid "Fortnightly"
321
  msgstr ""
322
 
323
- #: admin.inc.php:316
324
  msgid "Monthly"
325
  msgstr ""
326
 
327
- #: admin.inc.php:325
328
  msgid "The cron job has been scheduled. Maintenance will run "
329
  msgstr ""
330
 
331
- #: admin.inc.php:330
332
  msgid "The cron job is missing. Please resave this page to add the job"
333
  msgstr ""
334
 
335
- #: admin.inc.php:335
336
  msgid "Maintenance is turned off"
337
  msgstr ""
338
 
339
- #: admin.inc.php:343
340
  msgid "Reset count"
341
  msgstr ""
342
 
343
- #: admin.inc.php:346
344
  msgid ""
345
  "This cannot be reversed. Make sure that your database has been backed up "
346
  "before proceeding"
347
  msgstr ""
348
 
349
- #: admin.inc.php:349
350
  #, fuzzy
351
  msgid "Reset Popular Posts"
352
  msgstr "लोकप्रिय पोस्ट्स "
353
 
354
- #: admin.inc.php:349
355
  msgid "Are you sure you want to reset the popular posts?"
356
  msgstr ""
357
 
358
- #: admin.inc.php:350
359
  #, fuzzy
360
  msgid "Reset Daily Popular Posts"
361
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
362
 
363
- #: admin.inc.php:350
364
  msgid "Are you sure you want to reset the daily popular posts?"
365
  msgstr ""
366
 
367
- #: admin.inc.php:351
368
  msgid "Clear duplicates"
369
  msgstr ""
370
 
371
- #: admin.inc.php:351
372
  msgid "This will delete the duplicate entries in the tables. Proceed?"
373
  msgstr ""
374
 
375
- #: admin.inc.php:355
376
  #, fuzzy
377
  msgid "Save Options"
378
  msgstr "विकल्प हैं:"
379
 
380
- #: admin.inc.php:356
381
  #, fuzzy
382
  msgid "Default Options"
383
  msgstr "विकल्प हैं:"
384
 
385
- #: admin.inc.php:356
386
  msgid "Do you want to set options to Default?"
387
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
388
 
389
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
390
  msgid "Popular Posts"
391
  msgstr "लोकप्रिय पोस्ट्स "
392
 
393
- #: admin.inc.php:382
394
  msgid "Daily Popular Posts"
395
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
396
 
397
- #: admin.inc.php:404
398
  #, fuzzy
399
  msgid "Support the development"
400
  msgstr "समर्थन विकास"
401
 
402
- #: admin.inc.php:412
403
  msgid "Enter amount in USD: "
404
  msgstr ""
405
 
406
- #: admin.inc.php:416
407
  msgid "Send your donation to the author of"
408
  msgstr ""
409
 
410
- #: admin.inc.php:422
411
  msgid "Follow us on Facebook"
412
  msgstr ""
413
 
414
- #: admin.inc.php:426
415
  msgid "Quick Links"
416
  msgstr ""
417
 
418
- #: admin.inc.php:428
419
  msgid "Top 10 plugin page"
420
  msgstr ""
421
 
422
- #: admin.inc.php:429
423
  msgid "Other plugins"
424
  msgstr ""
425
 
426
- #: admin.inc.php:430
427
  msgid "Ajay's blog"
428
  msgstr ""
429
 
430
- #: admin.inc.php:431 top-10.php:583
431
  msgid "Support"
432
  msgstr ""
433
 
434
- #: admin.inc.php:432
435
  msgid "Follow @ajaydsouza on Twitter"
436
  msgstr ""
437
 
438
- #: admin.inc.php:436
439
  msgid "Recent developments"
440
  msgstr ""
441
 
442
- #: admin.inc.php:459 admin.inc.php:461
443
  msgid "Top 10"
444
  msgstr "शीर्ष 10"
445
 
446
- #: admin.inc.php:575
447
  msgid "Results"
448
  msgstr "परिणाम"
449
 
450
- #: admin.inc.php:577 admin.inc.php:583
451
  msgid "of"
452
  msgstr "का"
453
 
454
- #: admin.inc.php:581
455
  msgid "Page"
456
  msgstr "पृष्ठ"
457
 
458
- #: admin.inc.php:595
459
  msgid "View Daily Popular Posts"
460
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
461
 
462
- #: admin.inc.php:599
463
  msgid "View Overall Popular Posts"
464
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
465
 
466
- #: admin.inc.php:603
467
  msgid "Results per-page:"
468
  msgstr "प्रति परिणाम पृष्ठ:"
469
 
470
- #: admin.inc.php:627
471
  msgid "Previous"
472
  msgstr "पिछला"
473
 
474
- #: admin.inc.php:645
475
  msgid "Next"
476
  msgstr "अगला"
477
 
478
- #: admin.inc.php:668
479
  msgid "Daily Popular"
480
  msgstr "दैनिक लोकप्रिय"
481
 
482
- #: admin.inc.php:679
483
  msgid "Total / Today's Views"
484
  msgstr "कुल / आज दर्शाव"
485
 
@@ -546,23 +561,23 @@ msgstr "<h3> दैनिक लोकप्रिय </ h3>"
546
  msgid "No top posts yet"
547
  msgstr "लोकप्रिय पदों का शीर्षक:"
548
 
549
- #: top-10.php:560
550
  msgid "Once Weekly"
551
  msgstr ""
552
 
553
- #: top-10.php:561
554
  msgid "Once Fortnightly"
555
  msgstr ""
556
 
557
- #: top-10.php:562
558
  msgid "Once Monthly"
559
  msgstr ""
560
 
561
- #: top-10.php:582
562
  msgid "Settings"
563
  msgstr ""
564
 
565
- #: top-10.php:584
566
  msgid "Donate"
567
  msgstr ""
568
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:69
19
+ msgid "Scheduled maintenance enabled / modified"
20
+ msgstr ""
21
+
22
+ #: admin.inc.php:73
23
+ msgid "Scheduled maintenance disabled"
24
+ msgstr ""
25
+
26
+ #: admin.inc.php:78
27
  msgid "Options saved successfully."
28
  msgstr "विकल्प सफलतापूर्वक बचाया."
29
 
30
+ #: admin.inc.php:87
31
  msgid "Options set to Default."
32
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
33
 
34
+ #: admin.inc.php:93
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "लोकप्रिय पदों का शीर्षक:"
38
 
39
+ #: admin.inc.php:99
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
43
 
44
+ #: admin.inc.php:106
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:127
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:130
53
  msgid "Number of popular posts to display: "
54
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
55
 
56
+ #: admin.inc.php:133
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
59
 
60
+ #: admin.inc.php:136
61
  msgid ""
62
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
63
  "continue to be counted."
65
  "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी "
66
  "रहेगी."
67
 
68
+ #: admin.inc.php:139
69
  msgid "Exclude Categories: "
70
  msgstr ""
71
 
72
+ #: admin.inc.php:157
73
  #, fuzzy
74
  msgid "Display number of views on:"
75
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
76
 
77
+ #: admin.inc.php:158
78
  msgid "Posts"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:159
82
  #, fuzzy
83
  msgid "Pages"
84
  msgstr "पृष्ठ"
85
 
86
+ #: admin.inc.php:162
87
  msgid "Track visits of authors on their own posts?"
88
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
89
 
90
+ #: admin.inc.php:166
91
  msgid "Display number of page views in popular lists?"
92
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
93
 
94
+ #: admin.inc.php:170
95
  msgid "Force daily posts' list to be dynamic?"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:172
99
  #, fuzzy
100
  msgid ""
101
  "This option uses JavaScript to load the post and can increase your page load "
104
  "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
105
  "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
106
 
107
+ #: admin.inc.php:175
108
  msgid "Display page views on Posts > All Posts in Admin"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:179
112
  msgid "Link to Top 10 plugin page"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:181
116
  #, fuzzy
117
  msgid ""
118
  "A link to the plugin is added as an extra list item to the list of popular "
121
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
122
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
123
 
124
+ #: admin.inc.php:188
125
  #, fuzzy
126
  msgid "Output Options"
127
  msgstr "विकल्प हैं:"
128
 
129
+ #: admin.inc.php:191
130
  msgid "Format to display the count in: "
131
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
132
 
133
+ #: admin.inc.php:194
134
  #, fuzzy
135
  msgid ""
136
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
142
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
143
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
144
 
145
+ #: admin.inc.php:196
146
  msgid "Title of popular posts: "
147
  msgstr "लोकप्रिय पदों का शीर्षक:"
148
 
149
+ #: admin.inc.php:199
150
  msgid "Title of daily popular posts: "
151
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
152
 
153
+ #: admin.inc.php:202
154
  msgid "When there are no posts, what should be shown?"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:206
158
  msgid "Blank Output"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:210
162
  msgid "Display:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:214
166
  msgid "Show post excerpt in list?"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:217
170
  msgid "Length of excerpt (in words): "
171
  msgstr ""
172
 
173
+ #: admin.inc.php:220
174
  msgid "Customize the output:"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:222
178
  msgid "HTML to display before the list of posts: "
179
  msgstr ""
180
 
181
+ #: admin.inc.php:225
182
  msgid "HTML to display before each list item: "
183
  msgstr ""
184
 
185
+ #: admin.inc.php:228
186
  #, fuzzy
187
  msgid "HTML to display after each list item: "
188
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
189
 
190
+ #: admin.inc.php:231
191
  msgid "HTML to display after the list of posts: "
192
  msgstr ""
193
 
194
+ #: admin.inc.php:234
195
  msgid "Post thumbnail options:"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:236
199
  msgid "Location of post thumbnail:"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:240
203
  #, fuzzy
204
  msgid "Display thumbnails inline with posts, before title"
205
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
206
 
207
+ #: admin.inc.php:244
208
  #, fuzzy
209
  msgid "Display thumbnails inline with posts, after title"
210
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
211
 
212
+ #: admin.inc.php:248
213
  msgid "Display only thumbnails, no text"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:252
217
  msgid "Do not display thumbnails, only text."
218
  msgstr ""
219
 
220
+ #: admin.inc.php:256
221
  msgid "Maximum width of the thumbnail: "
222
  msgstr ""
223
 
224
+ #: admin.inc.php:259
225
  msgid "Maximum height of the thumbnail: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:262
229
  msgid "Use timthumb to generate thumbnails? "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:263
233
  msgid ""
234
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
235
  "\">timthumb</a> will be used to generate thumbnails"
236
  msgstr ""
237
 
238
+ #: admin.inc.php:265
239
  msgid "Post thumbnail meta field name: "
240
  msgstr ""
241
 
242
+ #: admin.inc.php:266
243
  msgid ""
244
  "The value of this field should contain the image source and is set in the "
245
  "<em>Add New Post</em> screen"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:268
249
  msgid ""
250
  "If the postmeta is not set, then should the plugin extract the first image "
251
  "from the post?"
252
  msgstr ""
253
 
254
+ #: admin.inc.php:269
255
  msgid ""
256
+ "This could slow down the loading of your page if the first image in the "
257
  "related posts is large in file-size"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:271
261
  msgid "Use default thumbnail? "
262
  msgstr ""
263
 
264
+ #: admin.inc.php:272
265
  msgid ""
266
  "If checked, when no thumbnail is found, show a default one from the URL "
267
  "below. If not checked and no thumbnail is found, no image will be shown."
268
  msgstr ""
269
 
270
+ #: admin.inc.php:274
271
  msgid "Default thumbnail: "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:275
275
  msgid ""
276
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
277
  "then it will check the meta field. If this is not available, then it will "
278
  "show the default image as specified above"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:281
282
  msgid "Custom Styles"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:284
286
  msgid "Custom CSS to add to header:"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:287
290
  msgid ""
291
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
292
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
293
  "available CSS classes to style."
294
  msgstr ""
295
 
 
 
 
 
296
  #: admin.inc.php:292
297
+ msgid "Maintenance"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:296
301
  msgid ""
302
  "Over time the Daily Top 10 database grows in size, which reduces the "
303
  "performance of the plugin. Cleaning the database at regular intervals could "
304
+ "improve performance, especially on high traffic blogs."
305
  msgstr ""
306
 
307
  #: admin.inc.php:297
308
+ msgid ""
309
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
310
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
311
+ "causes the daily posts table to reset."
312
  msgstr ""
313
 
314
  #: admin.inc.php:300
315
+ msgid "Enable scheduled maintenance of daily tables:"
316
+ msgstr ""
317
+
318
+ #: admin.inc.php:305
319
+ msgid "Time to run maintenance"
320
+ msgstr ""
321
+
322
+ #: admin.inc.php:308
323
  msgid "How often should the maintenance be run:"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:312
327
  msgid "Daily"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:316
331
  msgid "Weekly"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:320
335
  msgid "Fortnightly"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:324
339
  msgid "Monthly"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:333
343
  msgid "The cron job has been scheduled. Maintenance will run "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:338
347
  msgid "The cron job is missing. Please resave this page to add the job"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:343
351
  msgid "Maintenance is turned off"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:351
355
  msgid "Reset count"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:354
359
  msgid ""
360
  "This cannot be reversed. Make sure that your database has been backed up "
361
  "before proceeding"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:357
365
  #, fuzzy
366
  msgid "Reset Popular Posts"
367
  msgstr "लोकप्रिय पोस्ट्स "
368
 
369
+ #: admin.inc.php:357
370
  msgid "Are you sure you want to reset the popular posts?"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:358
374
  #, fuzzy
375
  msgid "Reset Daily Popular Posts"
376
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
377
 
378
+ #: admin.inc.php:358
379
  msgid "Are you sure you want to reset the daily popular posts?"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:359
383
  msgid "Clear duplicates"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:359
387
  msgid "This will delete the duplicate entries in the tables. Proceed?"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:363
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "विकल्प हैं:"
394
 
395
+ #: admin.inc.php:364
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "विकल्प हैं:"
399
 
400
+ #: admin.inc.php:364
401
  msgid "Do you want to set options to Default?"
402
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
403
 
404
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
405
  msgid "Popular Posts"
406
  msgstr "लोकप्रिय पोस्ट्स "
407
 
408
+ #: admin.inc.php:390
409
  msgid "Daily Popular Posts"
410
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
411
 
412
+ #: admin.inc.php:412
413
  #, fuzzy
414
  msgid "Support the development"
415
  msgstr "समर्थन विकास"
416
 
417
+ #: admin.inc.php:420
418
  msgid "Enter amount in USD: "
419
  msgstr ""
420
 
421
+ #: admin.inc.php:424
422
  msgid "Send your donation to the author of"
423
  msgstr ""
424
 
425
+ #: admin.inc.php:430
426
  msgid "Follow us on Facebook"
427
  msgstr ""
428
 
429
+ #: admin.inc.php:434
430
  msgid "Quick Links"
431
  msgstr ""
432
 
433
+ #: admin.inc.php:436
434
  msgid "Top 10 plugin page"
435
  msgstr ""
436
 
437
+ #: admin.inc.php:437
438
  msgid "Other plugins"
439
  msgstr ""
440
 
441
+ #: admin.inc.php:438
442
  msgid "Ajay's blog"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:439 top-10.php:588
446
  msgid "Support"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:440
450
  msgid "Follow @ajaydsouza on Twitter"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:444
454
  msgid "Recent developments"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:467 admin.inc.php:469
458
  msgid "Top 10"
459
  msgstr "शीर्ष 10"
460
 
461
+ #: admin.inc.php:583
462
  msgid "Results"
463
  msgstr "परिणाम"
464
 
465
+ #: admin.inc.php:585 admin.inc.php:591
466
  msgid "of"
467
  msgstr "का"
468
 
469
+ #: admin.inc.php:589
470
  msgid "Page"
471
  msgstr "पृष्ठ"
472
 
473
+ #: admin.inc.php:603
474
  msgid "View Daily Popular Posts"
475
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
476
 
477
+ #: admin.inc.php:607
478
  msgid "View Overall Popular Posts"
479
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
480
 
481
+ #: admin.inc.php:611
482
  msgid "Results per-page:"
483
  msgstr "प्रति परिणाम पृष्ठ:"
484
 
485
+ #: admin.inc.php:635
486
  msgid "Previous"
487
  msgstr "पिछला"
488
 
489
+ #: admin.inc.php:653
490
  msgid "Next"
491
  msgstr "अगला"
492
 
493
+ #: admin.inc.php:676
494
  msgid "Daily Popular"
495
  msgstr "दैनिक लोकप्रिय"
496
 
497
+ #: admin.inc.php:687
498
  msgid "Total / Today's Views"
499
  msgstr "कुल / आज दर्शाव"
500
 
561
  msgid "No top posts yet"
562
  msgstr "लोकप्रिय पदों का शीर्षक:"
563
 
564
+ #: top-10.php:565
565
  msgid "Once Weekly"
566
  msgstr ""
567
 
568
+ #: top-10.php:566
569
  msgid "Once Fortnightly"
570
  msgstr ""
571
 
572
+ #: top-10.php:567
573
  msgid "Once Monthly"
574
  msgstr ""
575
 
576
+ #: top-10.php:587
577
  msgid "Settings"
578
  msgstr ""
579
 
580
+ #: top-10.php:589
581
  msgid "Donate"
582
  msgstr ""
583
 
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: 2012-08-12 16:56-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"
@@ -14,41 +14,49 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Le opzioni sono state salvate con successo."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Opzioni impostate alle predefinite."
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Ripristino 10 articoli più popolari"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Ripristino 10 articoli più popolari del giorno"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Numero degli articoli più popolari da mostrare:"
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
  "Quanti giorni desideri siano considerati per il computo delle "
49
  "visualizzazioni per articoli più popolari del giorno?"
50
 
51
- #: admin.inc.php:133
52
  msgid ""
53
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
  "continue to be counted."
@@ -57,41 +65,41 @@ msgstr ""
57
  "popolari? Il numero delle visualizzazioni continuerà ad essere comunque "
58
  "aggiornato."
59
 
60
- #: admin.inc.php:136
61
  msgid "Exclude Categories: "
62
  msgstr "Escludi categorie:"
63
 
64
- #: admin.inc.php:154
65
  #, fuzzy
66
  msgid "Display number of views on:"
67
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
68
 
69
- #: admin.inc.php:155
70
  msgid "Posts"
71
  msgstr ""
72
 
73
- #: admin.inc.php:156
74
  #, fuzzy
75
  msgid "Pages"
76
  msgstr "Pagina"
77
 
78
- #: admin.inc.php:159
79
  msgid "Track visits of authors on their own posts?"
80
  msgstr ""
81
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
82
  "del sito?"
83
 
84
- #: admin.inc.php:163
85
  msgid "Display number of page views in popular lists?"
86
  msgstr ""
87
  "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
88
  "più popolari?"
89
 
90
- #: admin.inc.php:167
91
  msgid "Force daily posts' list to be dynamic?"
92
  msgstr ""
93
 
94
- #: admin.inc.php:169
95
  #, fuzzy
96
  msgid ""
97
  "This option uses JavaScript to load the post and can increase your page load "
@@ -101,15 +109,15 @@ msgstr ""
101
  "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
102
  "potrà fare aumentare i tempi di caricamento della stessa pagina"
103
 
104
- #: admin.inc.php:172
105
  msgid "Display page views on Posts > All Posts in Admin"
106
  msgstr ""
107
 
108
- #: admin.inc.php:176
109
  msgid "Link to Top 10 plugin page"
110
  msgstr ""
111
 
112
- #: admin.inc.php:178
113
  #, fuzzy
114
  msgid ""
115
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -119,16 +127,16 @@ msgstr ""
119
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
120
  "opzione!"
121
 
122
- #: admin.inc.php:185
123
  #, fuzzy
124
  msgid "Output Options"
125
  msgstr "Opzioni output:"
126
 
127
- #: admin.inc.php:188
128
  msgid "Format to display the count in: "
129
  msgstr "Formato per il conteggio:"
130
 
131
- #: admin.inc.php:191
132
  #, fuzzy
133
  msgid ""
134
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -141,108 +149,108 @@ msgstr ""
141
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
142
  "123 volte, 23 visite odierne)</code>"
143
 
144
- #: admin.inc.php:193
145
  msgid "Title of popular posts: "
146
  msgstr "Titolo per gli articoli più popolari:"
147
 
148
- #: admin.inc.php:196
149
  msgid "Title of daily popular posts: "
150
  msgstr "Titolo per gli articoli più popolari del giorno:"
151
 
152
- #: admin.inc.php:199
153
  msgid "When there are no posts, what should be shown?"
154
  msgstr ""
155
 
156
- #: admin.inc.php:203
157
  msgid "Blank Output"
158
  msgstr ""
159
 
160
- #: admin.inc.php:207
161
  msgid "Display:"
162
  msgstr ""
163
 
164
- #: admin.inc.php:211
165
  msgid "Show post excerpt in list?"
166
  msgstr "Desideri mostrare gli estratti?"
167
 
168
- #: admin.inc.php:214
169
  msgid "Length of excerpt (in words): "
170
  msgstr "Lunghezza estratto (in parole):"
171
 
172
- #: admin.inc.php:217
173
  msgid "Customize the output:"
174
  msgstr "Personalizzazione output:"
175
 
176
- #: admin.inc.php:219
177
  msgid "HTML to display before the list of posts: "
178
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
179
 
180
- #: admin.inc.php:222
181
  msgid "HTML to display before each list item: "
182
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
183
 
184
- #: admin.inc.php:225
185
  msgid "HTML to display after each list item: "
186
  msgstr "HTML da mostrare dopo ogni lista:"
187
 
188
- #: admin.inc.php:228
189
  msgid "HTML to display after the list of posts: "
190
  msgstr "HTML da mostrare dopo la lista degli articoli:"
191
 
192
- #: admin.inc.php:231
193
  msgid "Post thumbnail options:"
194
  msgstr "Opzioni miniature articolo:"
195
 
196
- #: admin.inc.php:233
197
  msgid "Location of post thumbnail:"
198
  msgstr ""
199
 
200
- #: admin.inc.php:237
201
  msgid "Display thumbnails inline with posts, before title"
202
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
203
 
204
- #: admin.inc.php:241
205
  msgid "Display thumbnails inline with posts, after title"
206
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
207
 
208
- #: admin.inc.php:245
209
  msgid "Display only thumbnails, no text"
210
  msgstr "Mostra le sole miniature, nessun testo"
211
 
212
- #: admin.inc.php:249
213
  msgid "Do not display thumbnails, only text."
214
  msgstr "Non mostrare le miniature, solo testo."
215
 
216
- #: admin.inc.php:253
217
  msgid "Maximum width of the thumbnail: "
218
  msgstr ""
219
 
220
- #: admin.inc.php:256
221
  msgid "Maximum height of the thumbnail: "
222
  msgstr ""
223
 
224
- #: admin.inc.php:259
225
  msgid "Use timthumb to generate thumbnails? "
226
  msgstr ""
227
 
228
- #: admin.inc.php:260
229
  msgid ""
230
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
231
  "\">timthumb</a> will be used to generate thumbnails"
232
  msgstr ""
233
 
234
- #: admin.inc.php:262
235
  #, fuzzy
236
  msgid "Post thumbnail meta field name: "
237
  msgstr "Opzioni miniature articolo:"
238
 
239
- #: admin.inc.php:263
240
  msgid ""
241
  "The value of this field should contain the image source and is set in the "
242
  "<em>Add New Post</em> screen"
243
  msgstr ""
244
 
245
- #: admin.inc.php:265
246
  #, fuzzy
247
  msgid ""
248
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -253,10 +261,10 @@ msgstr ""
253
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
254
  "dimensioni"
255
 
256
- #: admin.inc.php:266
257
  #, fuzzy
258
  msgid ""
259
- "This can slow down the loading of your page if the first image in the "
260
  "related posts is large in file-size"
261
  msgstr ""
262
  "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
@@ -264,11 +272,11 @@ msgstr ""
264
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
265
  "dimensioni"
266
 
267
- #: admin.inc.php:268
268
  msgid "Use default thumbnail? "
269
  msgstr ""
270
 
271
- #: admin.inc.php:269
272
  msgid ""
273
  "If checked, when no thumbnail is found, show a default one from the URL "
274
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -276,11 +284,11 @@ msgstr ""
276
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
277
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
278
 
279
- #: admin.inc.php:271
280
  msgid "Default thumbnail: "
281
  msgstr ""
282
 
283
- #: admin.inc.php:272
284
  #, fuzzy
285
  msgid ""
286
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -292,77 +300,84 @@ msgstr ""
292
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
293
  "specificato qui sotto:"
294
 
295
- #: admin.inc.php:278
296
  msgid "Custom Styles"
297
  msgstr ""
298
 
299
- #: admin.inc.php:281
300
  msgid "Custom CSS to add to header:"
301
  msgstr ""
302
 
303
- #: admin.inc.php:284
304
  msgid ""
305
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
306
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
307
  "available CSS classes to style."
308
  msgstr ""
309
 
310
- #: admin.inc.php:289
311
- msgid "Maintenance"
312
- msgstr ""
313
-
314
  #: admin.inc.php:292
315
- msgid "Enable scheduled maintenance of daily tables:"
316
  msgstr ""
317
 
318
- #: admin.inc.php:294
319
  msgid ""
320
  "Over time the Daily Top 10 database grows in size, which reduces the "
321
  "performance of the plugin. Cleaning the database at regular intervals could "
322
- "improve performance, especially on high traffic blogs"
323
  msgstr ""
324
 
325
  #: admin.inc.php:297
326
- msgid "Time to run maintenance"
 
 
 
327
  msgstr ""
328
 
329
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
330
  msgid "How often should the maintenance be run:"
331
  msgstr ""
332
 
333
- #: admin.inc.php:304
334
  msgid "Daily"
335
  msgstr ""
336
 
337
- #: admin.inc.php:308
338
  msgid "Weekly"
339
  msgstr ""
340
 
341
- #: admin.inc.php:312
342
  msgid "Fortnightly"
343
  msgstr ""
344
 
345
- #: admin.inc.php:316
346
  msgid "Monthly"
347
  msgstr ""
348
 
349
- #: admin.inc.php:325
350
  msgid "The cron job has been scheduled. Maintenance will run "
351
  msgstr ""
352
 
353
- #: admin.inc.php:330
354
  msgid "The cron job is missing. Please resave this page to add the job"
355
  msgstr ""
356
 
357
- #: admin.inc.php:335
358
  msgid "Maintenance is turned off"
359
  msgstr ""
360
 
361
- #: admin.inc.php:343
362
  msgid "Reset count"
363
  msgstr "Ripristino conteggio"
364
 
365
- #: admin.inc.php:346
366
  msgid ""
367
  "This cannot be reversed. Make sure that your database has been backed up "
368
  "before proceeding"
@@ -370,141 +385,141 @@ msgstr ""
370
  "Questa operazione non é reversibile. Effettua il backup del database prima "
371
  "di procedere"
372
 
373
- #: admin.inc.php:349
374
  #, fuzzy
375
  msgid "Reset Popular Posts"
376
  msgstr "Gli articoli più popolari"
377
 
378
- #: admin.inc.php:349
379
  msgid "Are you sure you want to reset the popular posts?"
380
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
381
 
382
- #: admin.inc.php:350
383
  #, fuzzy
384
  msgid "Reset Daily Popular Posts"
385
  msgstr "Gli articoli più popolari di oggi"
386
 
387
- #: admin.inc.php:350
388
  msgid "Are you sure you want to reset the daily popular posts?"
389
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
390
 
391
- #: admin.inc.php:351
392
  msgid "Clear duplicates"
393
  msgstr ""
394
 
395
- #: admin.inc.php:351
396
  msgid "This will delete the duplicate entries in the tables. Proceed?"
397
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
398
 
399
- #: admin.inc.php:355
400
  #, fuzzy
401
  msgid "Save Options"
402
  msgstr "Opzioni:"
403
 
404
- #: admin.inc.php:356
405
  #, fuzzy
406
  msgid "Default Options"
407
  msgstr "Opzioni output:"
408
 
409
- #: admin.inc.php:356
410
  msgid "Do you want to set options to Default?"
411
  msgstr "Desideri ripristinare alle predefinite?"
412
 
413
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
414
  msgid "Popular Posts"
415
  msgstr "Gli articoli più popolari"
416
 
417
- #: admin.inc.php:382
418
  msgid "Daily Popular Posts"
419
  msgstr "Gli articoli più popolari di oggi"
420
 
421
- #: admin.inc.php:404
422
  msgid "Support the development"
423
  msgstr "Sostieni lo sviluppo"
424
 
425
- #: admin.inc.php:412
426
  msgid "Enter amount in USD: "
427
  msgstr "Inserisci la cifra in USD: "
428
 
429
- #: admin.inc.php:416
430
  msgid "Send your donation to the author of"
431
  msgstr "Invia la tua donazione all'autore di"
432
 
433
- #: admin.inc.php:422
434
  msgid "Follow us on Facebook"
435
  msgstr ""
436
 
437
- #: admin.inc.php:426
438
  #, fuzzy
439
  msgid "Quick Links"
440
  msgstr "Collegamenti veloci"
441
 
442
- #: admin.inc.php:428
443
  #, fuzzy
444
  msgid "Top 10 plugin page"
445
  msgstr "pagina plugin"
446
 
447
- #: admin.inc.php:429
448
  msgid "Other plugins"
449
  msgstr "Altri plugin"
450
 
451
- #: admin.inc.php:430
452
  msgid "Ajay's blog"
453
  msgstr "Il blog di Ajay"
454
 
455
- #: admin.inc.php:431 top-10.php:583
456
  msgid "Support"
457
  msgstr "Supporto"
458
 
459
- #: admin.inc.php:432
460
  msgid "Follow @ajaydsouza on Twitter"
461
  msgstr "Segui @ajaydsouza su Twitter"
462
 
463
- #: admin.inc.php:436
464
  msgid "Recent developments"
465
  msgstr "Sviluppi recenti"
466
 
467
- #: admin.inc.php:459 admin.inc.php:461
468
  msgid "Top 10"
469
  msgstr "Top 10"
470
 
471
- #: admin.inc.php:575
472
  msgid "Results"
473
  msgstr "Risultati"
474
 
475
- #: admin.inc.php:577 admin.inc.php:583
476
  msgid "of"
477
  msgstr "di"
478
 
479
- #: admin.inc.php:581
480
  msgid "Page"
481
  msgstr "Pagina"
482
 
483
- #: admin.inc.php:595
484
  msgid "View Daily Popular Posts"
485
  msgstr "Visualizza gli articoli più letti di oggi"
486
 
487
- #: admin.inc.php:599
488
  msgid "View Overall Popular Posts"
489
  msgstr "Visualizza panoramica articoli più popolari"
490
 
491
- #: admin.inc.php:603
492
  msgid "Results per-page:"
493
  msgstr "Risultati per pagina:"
494
 
495
- #: admin.inc.php:627
496
  msgid "Previous"
497
  msgstr "Precedente"
498
 
499
- #: admin.inc.php:645
500
  msgid "Next"
501
  msgstr "Successiva"
502
 
503
- #: admin.inc.php:668
504
  msgid "Daily Popular"
505
  msgstr "I più letti di oggi"
506
 
507
- #: admin.inc.php:679
508
  msgid "Total / Today's Views"
509
  msgstr "Totale / Visualizzazioni odierne"
510
 
@@ -575,23 +590,23 @@ msgstr "<h3>I più letti di oggi</h3>"
575
  msgid "No top posts yet"
576
  msgstr "Ripristino 10 articoli più popolari"
577
 
578
- #: top-10.php:560
579
  msgid "Once Weekly"
580
  msgstr ""
581
 
582
- #: top-10.php:561
583
  msgid "Once Fortnightly"
584
  msgstr ""
585
 
586
- #: top-10.php:562
587
  msgid "Once Monthly"
588
  msgstr ""
589
 
590
- #: top-10.php:582
591
  msgid "Settings"
592
  msgstr "Impostazioni"
593
 
594
- #: top-10.php:584
595
  msgid "Donate"
596
  msgstr "Donazione"
597
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Le opzioni sono state salvate con successo."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Opzioni impostate alle predefinite."
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "Ripristino 10 articoli più popolari"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "Ripristino 10 articoli più popolari del giorno"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Numero degli articoli più popolari da mostrare:"
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
  "Quanti giorni desideri siano considerati per il computo delle "
57
  "visualizzazioni per articoli più popolari del giorno?"
58
 
59
+ #: admin.inc.php:136
60
  msgid ""
61
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
62
  "continue to be counted."
65
  "popolari? Il numero delle visualizzazioni continuerà ad essere comunque "
66
  "aggiornato."
67
 
68
+ #: admin.inc.php:139
69
  msgid "Exclude Categories: "
70
  msgstr "Escludi categorie:"
71
 
72
+ #: admin.inc.php:157
73
  #, fuzzy
74
  msgid "Display number of views on:"
75
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
76
 
77
+ #: admin.inc.php:158
78
  msgid "Posts"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:159
82
  #, fuzzy
83
  msgid "Pages"
84
  msgstr "Pagina"
85
 
86
+ #: admin.inc.php:162
87
  msgid "Track visits of authors on their own posts?"
88
  msgstr ""
89
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
90
  "del sito?"
91
 
92
+ #: admin.inc.php:166
93
  msgid "Display number of page views in popular lists?"
94
  msgstr ""
95
  "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
96
  "più popolari?"
97
 
98
+ #: admin.inc.php:170
99
  msgid "Force daily posts' list to be dynamic?"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:172
103
  #, fuzzy
104
  msgid ""
105
  "This option uses JavaScript to load the post and can increase your page load "
109
  "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
110
  "potrà fare aumentare i tempi di caricamento della stessa pagina"
111
 
112
+ #: admin.inc.php:175
113
  msgid "Display page views on Posts > All Posts in Admin"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:179
117
  msgid "Link to Top 10 plugin page"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:181
121
  #, fuzzy
122
  msgid ""
123
  "A link to the plugin is added as an extra list item to the list of popular "
127
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
128
  "opzione!"
129
 
130
+ #: admin.inc.php:188
131
  #, fuzzy
132
  msgid "Output Options"
133
  msgstr "Opzioni output:"
134
 
135
+ #: admin.inc.php:191
136
  msgid "Format to display the count in: "
137
  msgstr "Formato per il conteggio:"
138
 
139
+ #: admin.inc.php:194
140
  #, fuzzy
141
  msgid ""
142
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
149
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
150
  "123 volte, 23 visite odierne)</code>"
151
 
152
+ #: admin.inc.php:196
153
  msgid "Title of popular posts: "
154
  msgstr "Titolo per gli articoli più popolari:"
155
 
156
+ #: admin.inc.php:199
157
  msgid "Title of daily popular posts: "
158
  msgstr "Titolo per gli articoli più popolari del giorno:"
159
 
160
+ #: admin.inc.php:202
161
  msgid "When there are no posts, what should be shown?"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:206
165
  msgid "Blank Output"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:210
169
  msgid "Display:"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:214
173
  msgid "Show post excerpt in list?"
174
  msgstr "Desideri mostrare gli estratti?"
175
 
176
+ #: admin.inc.php:217
177
  msgid "Length of excerpt (in words): "
178
  msgstr "Lunghezza estratto (in parole):"
179
 
180
+ #: admin.inc.php:220
181
  msgid "Customize the output:"
182
  msgstr "Personalizzazione output:"
183
 
184
+ #: admin.inc.php:222
185
  msgid "HTML to display before the list of posts: "
186
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
187
 
188
+ #: admin.inc.php:225
189
  msgid "HTML to display before each list item: "
190
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
191
 
192
+ #: admin.inc.php:228
193
  msgid "HTML to display after each list item: "
194
  msgstr "HTML da mostrare dopo ogni lista:"
195
 
196
+ #: admin.inc.php:231
197
  msgid "HTML to display after the list of posts: "
198
  msgstr "HTML da mostrare dopo la lista degli articoli:"
199
 
200
+ #: admin.inc.php:234
201
  msgid "Post thumbnail options:"
202
  msgstr "Opzioni miniature articolo:"
203
 
204
+ #: admin.inc.php:236
205
  msgid "Location of post thumbnail:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:240
209
  msgid "Display thumbnails inline with posts, before title"
210
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
211
 
212
+ #: admin.inc.php:244
213
  msgid "Display thumbnails inline with posts, after title"
214
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
215
 
216
+ #: admin.inc.php:248
217
  msgid "Display only thumbnails, no text"
218
  msgstr "Mostra le sole miniature, nessun testo"
219
 
220
+ #: admin.inc.php:252
221
  msgid "Do not display thumbnails, only text."
222
  msgstr "Non mostrare le miniature, solo testo."
223
 
224
+ #: admin.inc.php:256
225
  msgid "Maximum width of the thumbnail: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:259
229
  msgid "Maximum height of the thumbnail: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:262
233
  msgid "Use timthumb to generate thumbnails? "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:263
237
  msgid ""
238
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
239
  "\">timthumb</a> will be used to generate thumbnails"
240
  msgstr ""
241
 
242
+ #: admin.inc.php:265
243
  #, fuzzy
244
  msgid "Post thumbnail meta field name: "
245
  msgstr "Opzioni miniature articolo:"
246
 
247
+ #: admin.inc.php:266
248
  msgid ""
249
  "The value of this field should contain the image source and is set in the "
250
  "<em>Add New Post</em> screen"
251
  msgstr ""
252
 
253
+ #: admin.inc.php:268
254
  #, fuzzy
255
  msgid ""
256
  "If the postmeta is not set, then should the plugin extract the first image "
261
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
262
  "dimensioni"
263
 
264
+ #: admin.inc.php:269
265
  #, fuzzy
266
  msgid ""
267
+ "This could slow down the loading of your page if the first image in the "
268
  "related posts is large in file-size"
269
  msgstr ""
270
  "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
272
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
273
  "dimensioni"
274
 
275
+ #: admin.inc.php:271
276
  msgid "Use default thumbnail? "
277
  msgstr ""
278
 
279
+ #: admin.inc.php:272
280
  msgid ""
281
  "If checked, when no thumbnail is found, show a default one from the URL "
282
  "below. If not checked and no thumbnail is found, no image will be shown."
284
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
285
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
286
 
287
+ #: admin.inc.php:274
288
  msgid "Default thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:275
292
  #, fuzzy
293
  msgid ""
294
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
300
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
301
  "specificato qui sotto:"
302
 
303
+ #: admin.inc.php:281
304
  msgid "Custom Styles"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:284
308
  msgid "Custom CSS to add to header:"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:287
312
  msgid ""
313
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
314
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
315
  "available CSS classes to style."
316
  msgstr ""
317
 
 
 
 
 
318
  #: admin.inc.php:292
319
+ msgid "Maintenance"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:296
323
  msgid ""
324
  "Over time the Daily Top 10 database grows in size, which reduces the "
325
  "performance of the plugin. Cleaning the database at regular intervals could "
326
+ "improve performance, especially on high traffic blogs."
327
  msgstr ""
328
 
329
  #: admin.inc.php:297
330
+ msgid ""
331
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
332
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
333
+ "causes the daily posts table to reset."
334
  msgstr ""
335
 
336
  #: admin.inc.php:300
337
+ msgid "Enable scheduled maintenance of daily tables:"
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:305
341
+ msgid "Time to run maintenance"
342
+ msgstr ""
343
+
344
+ #: admin.inc.php:308
345
  msgid "How often should the maintenance be run:"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:312
349
  msgid "Daily"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:316
353
  msgid "Weekly"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:320
357
  msgid "Fortnightly"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:324
361
  msgid "Monthly"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:333
365
  msgid "The cron job has been scheduled. Maintenance will run "
366
  msgstr ""
367
 
368
+ #: admin.inc.php:338
369
  msgid "The cron job is missing. Please resave this page to add the job"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:343
373
  msgid "Maintenance is turned off"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:351
377
  msgid "Reset count"
378
  msgstr "Ripristino conteggio"
379
 
380
+ #: admin.inc.php:354
381
  msgid ""
382
  "This cannot be reversed. Make sure that your database has been backed up "
383
  "before proceeding"
385
  "Questa operazione non é reversibile. Effettua il backup del database prima "
386
  "di procedere"
387
 
388
+ #: admin.inc.php:357
389
  #, fuzzy
390
  msgid "Reset Popular Posts"
391
  msgstr "Gli articoli più popolari"
392
 
393
+ #: admin.inc.php:357
394
  msgid "Are you sure you want to reset the popular posts?"
395
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
396
 
397
+ #: admin.inc.php:358
398
  #, fuzzy
399
  msgid "Reset Daily Popular Posts"
400
  msgstr "Gli articoli più popolari di oggi"
401
 
402
+ #: admin.inc.php:358
403
  msgid "Are you sure you want to reset the daily popular posts?"
404
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
405
 
406
+ #: admin.inc.php:359
407
  msgid "Clear duplicates"
408
  msgstr ""
409
 
410
+ #: admin.inc.php:359
411
  msgid "This will delete the duplicate entries in the tables. Proceed?"
412
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
413
 
414
+ #: admin.inc.php:363
415
  #, fuzzy
416
  msgid "Save Options"
417
  msgstr "Opzioni:"
418
 
419
+ #: admin.inc.php:364
420
  #, fuzzy
421
  msgid "Default Options"
422
  msgstr "Opzioni output:"
423
 
424
+ #: admin.inc.php:364
425
  msgid "Do you want to set options to Default?"
426
  msgstr "Desideri ripristinare alle predefinite?"
427
 
428
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
429
  msgid "Popular Posts"
430
  msgstr "Gli articoli più popolari"
431
 
432
+ #: admin.inc.php:390
433
  msgid "Daily Popular Posts"
434
  msgstr "Gli articoli più popolari di oggi"
435
 
436
+ #: admin.inc.php:412
437
  msgid "Support the development"
438
  msgstr "Sostieni lo sviluppo"
439
 
440
+ #: admin.inc.php:420
441
  msgid "Enter amount in USD: "
442
  msgstr "Inserisci la cifra in USD: "
443
 
444
+ #: admin.inc.php:424
445
  msgid "Send your donation to the author of"
446
  msgstr "Invia la tua donazione all'autore di"
447
 
448
+ #: admin.inc.php:430
449
  msgid "Follow us on Facebook"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:434
453
  #, fuzzy
454
  msgid "Quick Links"
455
  msgstr "Collegamenti veloci"
456
 
457
+ #: admin.inc.php:436
458
  #, fuzzy
459
  msgid "Top 10 plugin page"
460
  msgstr "pagina plugin"
461
 
462
+ #: admin.inc.php:437
463
  msgid "Other plugins"
464
  msgstr "Altri plugin"
465
 
466
+ #: admin.inc.php:438
467
  msgid "Ajay's blog"
468
  msgstr "Il blog di Ajay"
469
 
470
+ #: admin.inc.php:439 top-10.php:588
471
  msgid "Support"
472
  msgstr "Supporto"
473
 
474
+ #: admin.inc.php:440
475
  msgid "Follow @ajaydsouza on Twitter"
476
  msgstr "Segui @ajaydsouza su Twitter"
477
 
478
+ #: admin.inc.php:444
479
  msgid "Recent developments"
480
  msgstr "Sviluppi recenti"
481
 
482
+ #: admin.inc.php:467 admin.inc.php:469
483
  msgid "Top 10"
484
  msgstr "Top 10"
485
 
486
+ #: admin.inc.php:583
487
  msgid "Results"
488
  msgstr "Risultati"
489
 
490
+ #: admin.inc.php:585 admin.inc.php:591
491
  msgid "of"
492
  msgstr "di"
493
 
494
+ #: admin.inc.php:589
495
  msgid "Page"
496
  msgstr "Pagina"
497
 
498
+ #: admin.inc.php:603
499
  msgid "View Daily Popular Posts"
500
  msgstr "Visualizza gli articoli più letti di oggi"
501
 
502
+ #: admin.inc.php:607
503
  msgid "View Overall Popular Posts"
504
  msgstr "Visualizza panoramica articoli più popolari"
505
 
506
+ #: admin.inc.php:611
507
  msgid "Results per-page:"
508
  msgstr "Risultati per pagina:"
509
 
510
+ #: admin.inc.php:635
511
  msgid "Previous"
512
  msgstr "Precedente"
513
 
514
+ #: admin.inc.php:653
515
  msgid "Next"
516
  msgstr "Successiva"
517
 
518
+ #: admin.inc.php:676
519
  msgid "Daily Popular"
520
  msgstr "I più letti di oggi"
521
 
522
+ #: admin.inc.php:687
523
  msgid "Total / Today's Views"
524
  msgstr "Totale / Visualizzazioni odierne"
525
 
590
  msgid "No top posts yet"
591
  msgstr "Ripristino 10 articoli più popolari"
592
 
593
+ #: top-10.php:565
594
  msgid "Once Weekly"
595
  msgstr ""
596
 
597
+ #: top-10.php:566
598
  msgid "Once Fortnightly"
599
  msgstr ""
600
 
601
+ #: top-10.php:567
602
  msgid "Once Monthly"
603
  msgstr ""
604
 
605
+ #: top-10.php:587
606
  msgid "Settings"
607
  msgstr "Impostazioni"
608
 
609
+ #: top-10.php:589
610
  msgid "Donate"
611
  msgstr "Donazione"
612
 
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: 2012-08-12 16:56-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"
@@ -16,39 +16,47 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1)\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
20
  msgid "Options saved successfully."
21
  msgstr "Opties succesvol opgeslagen."
22
 
23
- #: admin.inc.php:84
24
  msgid "Options set to Default."
25
  msgstr "Opties ingesteld op Standaard."
26
 
27
- #: admin.inc.php:90
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Reset Top 10 populaire berichten"
30
 
31
- #: admin.inc.php:96
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Reset Top 10 dagelijkse populaire berichten"
34
 
35
- #: admin.inc.php:103
36
  msgid "Duplicate rows cleaned from tables"
37
  msgstr ""
38
 
39
- #: admin.inc.php:124
40
  msgid "General options"
41
  msgstr ""
42
 
43
- #: admin.inc.php:127
44
  msgid "Number of popular posts to display: "
45
  msgstr "Aantal populaire berichten om weer te geven:"
46
 
47
- #: admin.inc.php:130
48
  msgid "Daily Popular should contain views of how many days? "
49
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
50
 
51
- #: admin.inc.php:133
52
  msgid ""
53
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
  "continue to be counted."
@@ -56,37 +64,37 @@ msgstr ""
56
  "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal "
57
  "bekeken pagina's zal verder worden geteld."
58
 
59
- #: admin.inc.php:136
60
  msgid "Exclude Categories: "
61
  msgstr ""
62
 
63
- #: admin.inc.php:154
64
  #, fuzzy
65
  msgid "Display number of views on:"
66
  msgstr "Geef het aantal berichtweergaves weer?"
67
 
68
- #: admin.inc.php:155
69
  msgid "Posts"
70
  msgstr ""
71
 
72
- #: admin.inc.php:156
73
  #, fuzzy
74
  msgid "Pages"
75
  msgstr "Pagina"
76
 
77
- #: admin.inc.php:159
78
  msgid "Track visits of authors on their own posts?"
79
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
80
 
81
- #: admin.inc.php:163
82
  msgid "Display number of page views in popular lists?"
83
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
84
 
85
- #: admin.inc.php:167
86
  msgid "Force daily posts' list to be dynamic?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
  #, fuzzy
91
  msgid ""
92
  "This option uses JavaScript to load the post and can increase your page load "
@@ -95,15 +103,15 @@ msgstr ""
95
  "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
96
  "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
97
 
98
- #: admin.inc.php:172
99
  msgid "Display page views on Posts > All Posts in Admin"
100
  msgstr ""
101
 
102
- #: admin.inc.php:176
103
  msgid "Link to Top 10 plugin page"
104
  msgstr ""
105
 
106
- #: admin.inc.php:178
107
  #, fuzzy
108
  msgid ""
109
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -113,16 +121,16 @@ msgstr ""
113
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
114
  "gewaardeerd!"
115
 
116
- #: admin.inc.php:185
117
  #, fuzzy
118
  msgid "Output Options"
119
  msgstr "Output Opties:"
120
 
121
- #: admin.inc.php:188
122
  msgid "Format to display the count in: "
123
  msgstr "Formaat om de optelling te laten zien:"
124
 
125
- #: admin.inc.php:191
126
  #, fuzzy
127
  msgid ""
128
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -134,110 +142,110 @@ msgstr ""
134
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
135
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
136
 
137
- #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "Titel van populaire berichten:"
140
 
141
- #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "Titel van dagelijkse populaire berichten:"
144
 
145
- #: admin.inc.php:199
146
  msgid "When there are no posts, what should be shown?"
147
  msgstr ""
148
 
149
- #: admin.inc.php:203
150
  msgid "Blank Output"
151
  msgstr ""
152
 
153
- #: admin.inc.php:207
154
  msgid "Display:"
155
  msgstr ""
156
 
157
- #: admin.inc.php:211
158
  msgid "Show post excerpt in list?"
159
  msgstr "Laat bericht samenvatting zien in lijst?"
160
 
161
- #: admin.inc.php:214
162
  msgid "Length of excerpt (in words): "
163
  msgstr "Lengte van de samenvatting (in woorden):"
164
 
165
- #: admin.inc.php:217
166
  msgid "Customize the output:"
167
  msgstr "Aanpassen van de output:"
168
 
169
- #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr "Te weergeven HTML voor de lijst met berichten:"
172
 
173
- #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr "Te weergeven HTML voor elk lijst item:"
176
 
177
- #: admin.inc.php:225
178
  msgid "HTML to display after each list item: "
179
  msgstr "Te weergeven HTML na elk lijst item:"
180
 
181
- #: admin.inc.php:228
182
  msgid "HTML to display after the list of posts: "
183
  msgstr "Te weergeven HTML na de lijst met berichten:"
184
 
185
- #: admin.inc.php:231
186
  msgid "Post thumbnail options:"
187
  msgstr "Bericht miniatuurafbeelding opties:"
188
 
189
- #: admin.inc.php:233
190
  msgid "Location of post thumbnail:"
191
  msgstr ""
192
 
193
- #: admin.inc.php:237
194
  #, fuzzy
195
  msgid "Display thumbnails inline with posts, before title"
196
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
197
 
198
- #: admin.inc.php:241
199
  #, fuzzy
200
  msgid "Display thumbnails inline with posts, after title"
201
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
202
 
203
- #: admin.inc.php:245
204
  msgid "Display only thumbnails, no text"
205
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
206
 
207
- #: admin.inc.php:249
208
  msgid "Do not display thumbnails, only text."
209
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
210
 
211
- #: admin.inc.php:253
212
  msgid "Maximum width of the thumbnail: "
213
  msgstr ""
214
 
215
- #: admin.inc.php:256
216
  msgid "Maximum height of the thumbnail: "
217
  msgstr ""
218
 
219
- #: admin.inc.php:259
220
  msgid "Use timthumb to generate thumbnails? "
221
  msgstr ""
222
 
223
- #: admin.inc.php:260
224
  msgid ""
225
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
226
  "\">timthumb</a> will be used to generate thumbnails"
227
  msgstr ""
228
 
229
- #: admin.inc.php:262
230
  #, fuzzy
231
  msgid "Post thumbnail meta field name: "
232
  msgstr "Bericht miniatuurafbeelding opties:"
233
 
234
- #: admin.inc.php:263
235
  msgid ""
236
  "The value of this field should contain the image source and is set in the "
237
  "<em>Add New Post</em> screen"
238
  msgstr ""
239
 
240
- #: admin.inc.php:265
241
  #, fuzzy
242
  msgid ""
243
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -248,10 +256,10 @@ msgstr ""
248
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
249
  "qua bestandsgrootte"
250
 
251
- #: admin.inc.php:266
252
  #, fuzzy
253
  msgid ""
254
- "This can slow down the loading of your page if the first image in the "
255
  "related posts is large in file-size"
256
  msgstr ""
257
  "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste "
@@ -259,21 +267,21 @@ msgstr ""
259
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
260
  "qua bestandsgrootte"
261
 
262
- #: admin.inc.php:268
263
  msgid "Use default thumbnail? "
264
  msgstr ""
265
 
266
- #: admin.inc.php:269
267
  msgid ""
268
  "If checked, when no thumbnail is found, show a default one from the URL "
269
  "below. If not checked and no thumbnail is found, no image will be shown."
270
  msgstr ""
271
 
272
- #: admin.inc.php:271
273
  msgid "Default thumbnail: "
274
  msgstr ""
275
 
276
- #: admin.inc.php:272
277
  #, fuzzy
278
  msgid ""
279
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -285,77 +293,84 @@ msgstr ""
285
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
286
  "standaard afbeelding zoals hieronder aangegeven:"
287
 
288
- #: admin.inc.php:278
289
  msgid "Custom Styles"
290
  msgstr ""
291
 
292
- #: admin.inc.php:281
293
  msgid "Custom CSS to add to header:"
294
  msgstr ""
295
 
296
- #: admin.inc.php:284
297
  msgid ""
298
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
299
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
300
  "available CSS classes to style."
301
  msgstr ""
302
 
303
- #: admin.inc.php:289
304
- msgid "Maintenance"
305
- msgstr ""
306
-
307
  #: admin.inc.php:292
308
- msgid "Enable scheduled maintenance of daily tables:"
309
  msgstr ""
310
 
311
- #: admin.inc.php:294
312
  msgid ""
313
  "Over time the Daily Top 10 database grows in size, which reduces the "
314
  "performance of the plugin. Cleaning the database at regular intervals could "
315
- "improve performance, especially on high traffic blogs"
316
  msgstr ""
317
 
318
  #: admin.inc.php:297
319
- msgid "Time to run maintenance"
 
 
 
320
  msgstr ""
321
 
322
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
323
  msgid "How often should the maintenance be run:"
324
  msgstr ""
325
 
326
- #: admin.inc.php:304
327
  msgid "Daily"
328
  msgstr ""
329
 
330
- #: admin.inc.php:308
331
  msgid "Weekly"
332
  msgstr ""
333
 
334
- #: admin.inc.php:312
335
  msgid "Fortnightly"
336
  msgstr ""
337
 
338
- #: admin.inc.php:316
339
  msgid "Monthly"
340
  msgstr ""
341
 
342
- #: admin.inc.php:325
343
  msgid "The cron job has been scheduled. Maintenance will run "
344
  msgstr ""
345
 
346
- #: admin.inc.php:330
347
  msgid "The cron job is missing. Please resave this page to add the job"
348
  msgstr ""
349
 
350
- #: admin.inc.php:335
351
  msgid "Maintenance is turned off"
352
  msgstr ""
353
 
354
- #: admin.inc.php:343
355
  msgid "Reset count"
356
  msgstr "Reset telling"
357
 
358
- #: admin.inc.php:346
359
  msgid ""
360
  "This cannot be reversed. Make sure that your database has been backed up "
361
  "before proceeding"
@@ -363,142 +378,142 @@ msgstr ""
363
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
364
  "database gemaakt hebt voordat je verder gaat"
365
 
366
- #: admin.inc.php:349
367
  #, fuzzy
368
  msgid "Reset Popular Posts"
369
  msgstr "Populaire Berichten"
370
 
371
- #: admin.inc.php:349
372
  msgid "Are you sure you want to reset the popular posts?"
373
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
374
 
375
- #: admin.inc.php:350
376
  #, fuzzy
377
  msgid "Reset Daily Popular Posts"
378
  msgstr "Dagelijkse Populaire Berichten"
379
 
380
- #: admin.inc.php:350
381
  msgid "Are you sure you want to reset the daily popular posts?"
382
  msgstr ""
383
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
384
 
385
- #: admin.inc.php:351
386
  msgid "Clear duplicates"
387
  msgstr ""
388
 
389
- #: admin.inc.php:351
390
  msgid "This will delete the duplicate entries in the tables. Proceed?"
391
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
392
 
393
- #: admin.inc.php:355
394
  #, fuzzy
395
  msgid "Save Options"
396
  msgstr "Opties:"
397
 
398
- #: admin.inc.php:356
399
  #, fuzzy
400
  msgid "Default Options"
401
  msgstr "Output Opties:"
402
 
403
- #: admin.inc.php:356
404
  msgid "Do you want to set options to Default?"
405
  msgstr "Wil je de opties terugzetten naar standaard?"
406
 
407
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
408
  msgid "Popular Posts"
409
  msgstr "Populaire Berichten"
410
 
411
- #: admin.inc.php:382
412
  msgid "Daily Popular Posts"
413
  msgstr "Dagelijkse Populaire Berichten"
414
 
415
- #: admin.inc.php:404
416
  msgid "Support the development"
417
  msgstr "Ondersteun de ontwikkeling"
418
 
419
- #: admin.inc.php:412
420
  msgid "Enter amount in USD: "
421
  msgstr "Voer het bedrag in in USD:"
422
 
423
- #: admin.inc.php:416
424
  msgid "Send your donation to the author of"
425
  msgstr "Zend je donatie naar de auteur van "
426
 
427
- #: admin.inc.php:422
428
  msgid "Follow us on Facebook"
429
  msgstr ""
430
 
431
- #: admin.inc.php:426
432
  #, fuzzy
433
  msgid "Quick Links"
434
  msgstr "Quick links"
435
 
436
- #: admin.inc.php:428
437
  #, fuzzy
438
  msgid "Top 10 plugin page"
439
  msgstr "plugin pagina"
440
 
441
- #: admin.inc.php:429
442
  msgid "Other plugins"
443
  msgstr "Andere plugins"
444
 
445
- #: admin.inc.php:430
446
  msgid "Ajay's blog"
447
  msgstr "De blog van Ajay"
448
 
449
- #: admin.inc.php:431 top-10.php:583
450
  msgid "Support"
451
  msgstr "Ondersteuning"
452
 
453
- #: admin.inc.php:432
454
  msgid "Follow @ajaydsouza on Twitter"
455
  msgstr "Volg @ajaydsouza via Twitter"
456
 
457
- #: admin.inc.php:436
458
  msgid "Recent developments"
459
  msgstr "Recente ontwikkelingen"
460
 
461
- #: admin.inc.php:459 admin.inc.php:461
462
  msgid "Top 10"
463
  msgstr "Top 10"
464
 
465
- #: admin.inc.php:575
466
  msgid "Results"
467
  msgstr "Resultaten"
468
 
469
- #: admin.inc.php:577 admin.inc.php:583
470
  msgid "of"
471
  msgstr "van"
472
 
473
- #: admin.inc.php:581
474
  msgid "Page"
475
  msgstr "Pagina"
476
 
477
- #: admin.inc.php:595
478
  msgid "View Daily Popular Posts"
479
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
480
 
481
- #: admin.inc.php:599
482
  msgid "View Overall Popular Posts"
483
  msgstr "Bekijk het Totaal Populaire Berichten"
484
 
485
- #: admin.inc.php:603
486
  msgid "Results per-page:"
487
  msgstr "Resultaten per pagina:"
488
 
489
- #: admin.inc.php:627
490
  msgid "Previous"
491
  msgstr "Vorige"
492
 
493
- #: admin.inc.php:645
494
  msgid "Next"
495
  msgstr "Volgende"
496
 
497
- #: admin.inc.php:668
498
  msgid "Daily Popular"
499
  msgstr "Dagelijks Populair"
500
 
501
- #: admin.inc.php:679
502
  msgid "Total / Today's Views"
503
  msgstr "Totale Weergaves / Weergaves van Vandaag"
504
 
@@ -569,23 +584,23 @@ msgstr "<h3>Dagelijks Populair</h3>"
569
  msgid "No top posts yet"
570
  msgstr "Reset Top 10 populaire berichten"
571
 
572
- #: top-10.php:560
573
  msgid "Once Weekly"
574
  msgstr ""
575
 
576
- #: top-10.php:561
577
  msgid "Once Fortnightly"
578
  msgstr ""
579
 
580
- #: top-10.php:562
581
  msgid "Once Monthly"
582
  msgstr ""
583
 
584
- #: top-10.php:582
585
  msgid "Settings"
586
  msgstr "Instellingen"
587
 
588
- #: top-10.php:584
589
  msgid "Donate"
590
  msgstr "Doneer"
591
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:41-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"
16
  "Plural-Forms: nplurals=2; plural=(n != 1)\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:69
20
+ msgid "Scheduled maintenance enabled / modified"
21
+ msgstr ""
22
+
23
+ #: admin.inc.php:73
24
+ msgid "Scheduled maintenance disabled"
25
+ msgstr ""
26
+
27
+ #: admin.inc.php:78
28
  msgid "Options saved successfully."
29
  msgstr "Opties succesvol opgeslagen."
30
 
31
+ #: admin.inc.php:87
32
  msgid "Options set to Default."
33
  msgstr "Opties ingesteld op Standaard."
34
 
35
+ #: admin.inc.php:93
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Reset Top 10 populaire berichten"
38
 
39
+ #: admin.inc.php:99
40
  msgid "Top 10 daily popular posts reset"
41
  msgstr "Reset Top 10 dagelijkse populaire berichten"
42
 
43
+ #: admin.inc.php:106
44
  msgid "Duplicate rows cleaned from tables"
45
  msgstr ""
46
 
47
+ #: admin.inc.php:127
48
  msgid "General options"
49
  msgstr ""
50
 
51
+ #: admin.inc.php:130
52
  msgid "Number of popular posts to display: "
53
  msgstr "Aantal populaire berichten om weer te geven:"
54
 
55
+ #: admin.inc.php:133
56
  msgid "Daily Popular should contain views of how many days? "
57
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
58
 
59
+ #: admin.inc.php:136
60
  msgid ""
61
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
62
  "continue to be counted."
64
  "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal "
65
  "bekeken pagina's zal verder worden geteld."
66
 
67
+ #: admin.inc.php:139
68
  msgid "Exclude Categories: "
69
  msgstr ""
70
 
71
+ #: admin.inc.php:157
72
  #, fuzzy
73
  msgid "Display number of views on:"
74
  msgstr "Geef het aantal berichtweergaves weer?"
75
 
76
+ #: admin.inc.php:158
77
  msgid "Posts"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:159
81
  #, fuzzy
82
  msgid "Pages"
83
  msgstr "Pagina"
84
 
85
+ #: admin.inc.php:162
86
  msgid "Track visits of authors on their own posts?"
87
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
88
 
89
+ #: admin.inc.php:166
90
  msgid "Display number of page views in popular lists?"
91
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
92
 
93
+ #: admin.inc.php:170
94
  msgid "Force daily posts' list to be dynamic?"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:172
98
  #, fuzzy
99
  msgid ""
100
  "This option uses JavaScript to load the post and can increase your page load "
103
  "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
104
  "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
105
 
106
+ #: admin.inc.php:175
107
  msgid "Display page views on Posts > All Posts in Admin"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:179
111
  msgid "Link to Top 10 plugin page"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:181
115
  #, fuzzy
116
  msgid ""
117
  "A link to the plugin is added as an extra list item to the list of popular "
121
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
122
  "gewaardeerd!"
123
 
124
+ #: admin.inc.php:188
125
  #, fuzzy
126
  msgid "Output Options"
127
  msgstr "Output Opties:"
128
 
129
+ #: admin.inc.php:191
130
  msgid "Format to display the count in: "
131
  msgstr "Formaat om de optelling te laten zien:"
132
 
133
+ #: admin.inc.php:194
134
  #, fuzzy
135
  msgid ""
136
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
142
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
143
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
144
 
145
+ #: admin.inc.php:196
146
  msgid "Title of popular posts: "
147
  msgstr "Titel van populaire berichten:"
148
 
149
+ #: admin.inc.php:199
150
  msgid "Title of daily popular posts: "
151
  msgstr "Titel van dagelijkse populaire berichten:"
152
 
153
+ #: admin.inc.php:202
154
  msgid "When there are no posts, what should be shown?"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:206
158
  msgid "Blank Output"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:210
162
  msgid "Display:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:214
166
  msgid "Show post excerpt in list?"
167
  msgstr "Laat bericht samenvatting zien in lijst?"
168
 
169
+ #: admin.inc.php:217
170
  msgid "Length of excerpt (in words): "
171
  msgstr "Lengte van de samenvatting (in woorden):"
172
 
173
+ #: admin.inc.php:220
174
  msgid "Customize the output:"
175
  msgstr "Aanpassen van de output:"
176
 
177
+ #: admin.inc.php:222
178
  msgid "HTML to display before the list of posts: "
179
  msgstr "Te weergeven HTML voor de lijst met berichten:"
180
 
181
+ #: admin.inc.php:225
182
  msgid "HTML to display before each list item: "
183
  msgstr "Te weergeven HTML voor elk lijst item:"
184
 
185
+ #: admin.inc.php:228
186
  msgid "HTML to display after each list item: "
187
  msgstr "Te weergeven HTML na elk lijst item:"
188
 
189
+ #: admin.inc.php:231
190
  msgid "HTML to display after the list of posts: "
191
  msgstr "Te weergeven HTML na de lijst met berichten:"
192
 
193
+ #: admin.inc.php:234
194
  msgid "Post thumbnail options:"
195
  msgstr "Bericht miniatuurafbeelding opties:"
196
 
197
+ #: admin.inc.php:236
198
  msgid "Location of post thumbnail:"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:240
202
  #, fuzzy
203
  msgid "Display thumbnails inline with posts, before title"
204
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
205
 
206
+ #: admin.inc.php:244
207
  #, fuzzy
208
  msgid "Display thumbnails inline with posts, after title"
209
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
210
 
211
+ #: admin.inc.php:248
212
  msgid "Display only thumbnails, no text"
213
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
214
 
215
+ #: admin.inc.php:252
216
  msgid "Do not display thumbnails, only text."
217
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
218
 
219
+ #: admin.inc.php:256
220
  msgid "Maximum width of the thumbnail: "
221
  msgstr ""
222
 
223
+ #: admin.inc.php:259
224
  msgid "Maximum height of the thumbnail: "
225
  msgstr ""
226
 
227
+ #: admin.inc.php:262
228
  msgid "Use timthumb to generate thumbnails? "
229
  msgstr ""
230
 
231
+ #: admin.inc.php:263
232
  msgid ""
233
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
234
  "\">timthumb</a> will be used to generate thumbnails"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:265
238
  #, fuzzy
239
  msgid "Post thumbnail meta field name: "
240
  msgstr "Bericht miniatuurafbeelding opties:"
241
 
242
+ #: admin.inc.php:266
243
  msgid ""
244
  "The value of this field should contain the image source and is set in the "
245
  "<em>Add New Post</em> screen"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:268
249
  #, fuzzy
250
  msgid ""
251
  "If the postmeta is not set, then should the plugin extract the first image "
256
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
257
  "qua bestandsgrootte"
258
 
259
+ #: admin.inc.php:269
260
  #, fuzzy
261
  msgid ""
262
+ "This could slow down the loading of your page if the first image in the "
263
  "related posts is large in file-size"
264
  msgstr ""
265
  "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste "
267
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
268
  "qua bestandsgrootte"
269
 
270
+ #: admin.inc.php:271
271
  msgid "Use default thumbnail? "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:272
275
  msgid ""
276
  "If checked, when no thumbnail is found, show a default one from the URL "
277
  "below. If not checked and no thumbnail is found, no image will be shown."
278
  msgstr ""
279
 
280
+ #: admin.inc.php:274
281
  msgid "Default thumbnail: "
282
  msgstr ""
283
 
284
+ #: admin.inc.php:275
285
  #, fuzzy
286
  msgid ""
287
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
293
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
294
  "standaard afbeelding zoals hieronder aangegeven:"
295
 
296
+ #: admin.inc.php:281
297
  msgid "Custom Styles"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:284
301
  msgid "Custom CSS to add to header:"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:287
305
  msgid ""
306
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
307
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
308
  "available CSS classes to style."
309
  msgstr ""
310
 
 
 
 
 
311
  #: admin.inc.php:292
312
+ msgid "Maintenance"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:296
316
  msgid ""
317
  "Over time the Daily Top 10 database grows in size, which reduces the "
318
  "performance of the plugin. Cleaning the database at regular intervals could "
319
+ "improve performance, especially on high traffic blogs."
320
  msgstr ""
321
 
322
  #: admin.inc.php:297
323
+ msgid ""
324
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
325
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
326
+ "causes the daily posts table to reset."
327
  msgstr ""
328
 
329
  #: admin.inc.php:300
330
+ msgid "Enable scheduled maintenance of daily tables:"
331
+ msgstr ""
332
+
333
+ #: admin.inc.php:305
334
+ msgid "Time to run maintenance"
335
+ msgstr ""
336
+
337
+ #: admin.inc.php:308
338
  msgid "How often should the maintenance be run:"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:312
342
  msgid "Daily"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:316
346
  msgid "Weekly"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:320
350
  msgid "Fortnightly"
351
  msgstr ""
352
 
353
+ #: admin.inc.php:324
354
  msgid "Monthly"
355
  msgstr ""
356
 
357
+ #: admin.inc.php:333
358
  msgid "The cron job has been scheduled. Maintenance will run "
359
  msgstr ""
360
 
361
+ #: admin.inc.php:338
362
  msgid "The cron job is missing. Please resave this page to add the job"
363
  msgstr ""
364
 
365
+ #: admin.inc.php:343
366
  msgid "Maintenance is turned off"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:351
370
  msgid "Reset count"
371
  msgstr "Reset telling"
372
 
373
+ #: admin.inc.php:354
374
  msgid ""
375
  "This cannot be reversed. Make sure that your database has been backed up "
376
  "before proceeding"
378
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
379
  "database gemaakt hebt voordat je verder gaat"
380
 
381
+ #: admin.inc.php:357
382
  #, fuzzy
383
  msgid "Reset Popular Posts"
384
  msgstr "Populaire Berichten"
385
 
386
+ #: admin.inc.php:357
387
  msgid "Are you sure you want to reset the popular posts?"
388
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
389
 
390
+ #: admin.inc.php:358
391
  #, fuzzy
392
  msgid "Reset Daily Popular Posts"
393
  msgstr "Dagelijkse Populaire Berichten"
394
 
395
+ #: admin.inc.php:358
396
  msgid "Are you sure you want to reset the daily popular posts?"
397
  msgstr ""
398
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
399
 
400
+ #: admin.inc.php:359
401
  msgid "Clear duplicates"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:359
405
  msgid "This will delete the duplicate entries in the tables. Proceed?"
406
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
407
 
408
+ #: admin.inc.php:363
409
  #, fuzzy
410
  msgid "Save Options"
411
  msgstr "Opties:"
412
 
413
+ #: admin.inc.php:364
414
  #, fuzzy
415
  msgid "Default Options"
416
  msgstr "Output Opties:"
417
 
418
+ #: admin.inc.php:364
419
  msgid "Do you want to set options to Default?"
420
  msgstr "Wil je de opties terugzetten naar standaard?"
421
 
422
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
423
  msgid "Popular Posts"
424
  msgstr "Populaire Berichten"
425
 
426
+ #: admin.inc.php:390
427
  msgid "Daily Popular Posts"
428
  msgstr "Dagelijkse Populaire Berichten"
429
 
430
+ #: admin.inc.php:412
431
  msgid "Support the development"
432
  msgstr "Ondersteun de ontwikkeling"
433
 
434
+ #: admin.inc.php:420
435
  msgid "Enter amount in USD: "
436
  msgstr "Voer het bedrag in in USD:"
437
 
438
+ #: admin.inc.php:424
439
  msgid "Send your donation to the author of"
440
  msgstr "Zend je donatie naar de auteur van "
441
 
442
+ #: admin.inc.php:430
443
  msgid "Follow us on Facebook"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:434
447
  #, fuzzy
448
  msgid "Quick Links"
449
  msgstr "Quick links"
450
 
451
+ #: admin.inc.php:436
452
  #, fuzzy
453
  msgid "Top 10 plugin page"
454
  msgstr "plugin pagina"
455
 
456
+ #: admin.inc.php:437
457
  msgid "Other plugins"
458
  msgstr "Andere plugins"
459
 
460
+ #: admin.inc.php:438
461
  msgid "Ajay's blog"
462
  msgstr "De blog van Ajay"
463
 
464
+ #: admin.inc.php:439 top-10.php:588
465
  msgid "Support"
466
  msgstr "Ondersteuning"
467
 
468
+ #: admin.inc.php:440
469
  msgid "Follow @ajaydsouza on Twitter"
470
  msgstr "Volg @ajaydsouza via Twitter"
471
 
472
+ #: admin.inc.php:444
473
  msgid "Recent developments"
474
  msgstr "Recente ontwikkelingen"
475
 
476
+ #: admin.inc.php:467 admin.inc.php:469
477
  msgid "Top 10"
478
  msgstr "Top 10"
479
 
480
+ #: admin.inc.php:583
481
  msgid "Results"
482
  msgstr "Resultaten"
483
 
484
+ #: admin.inc.php:585 admin.inc.php:591
485
  msgid "of"
486
  msgstr "van"
487
 
488
+ #: admin.inc.php:589
489
  msgid "Page"
490
  msgstr "Pagina"
491
 
492
+ #: admin.inc.php:603
493
  msgid "View Daily Popular Posts"
494
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
495
 
496
+ #: admin.inc.php:607
497
  msgid "View Overall Popular Posts"
498
  msgstr "Bekijk het Totaal Populaire Berichten"
499
 
500
+ #: admin.inc.php:611
501
  msgid "Results per-page:"
502
  msgstr "Resultaten per pagina:"
503
 
504
+ #: admin.inc.php:635
505
  msgid "Previous"
506
  msgstr "Vorige"
507
 
508
+ #: admin.inc.php:653
509
  msgid "Next"
510
  msgstr "Volgende"
511
 
512
+ #: admin.inc.php:676
513
  msgid "Daily Popular"
514
  msgstr "Dagelijks Populair"
515
 
516
+ #: admin.inc.php:687
517
  msgid "Total / Today's Views"
518
  msgstr "Totale Weergaves / Weergaves van Vandaag"
519
 
584
  msgid "No top posts yet"
585
  msgstr "Reset Top 10 populaire berichten"
586
 
587
+ #: top-10.php:565
588
  msgid "Once Weekly"
589
  msgstr ""
590
 
591
+ #: top-10.php:566
592
  msgid "Once Fortnightly"
593
  msgstr ""
594
 
595
+ #: top-10.php:567
596
  msgid "Once Monthly"
597
  msgstr ""
598
 
599
+ #: top-10.php:587
600
  msgid "Settings"
601
  msgstr "Instellingen"
602
 
603
+ #: top-10.php:589
604
  msgid "Donate"
605
  msgstr "Doneer"
606
 
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: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
@@ -14,39 +14,47 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Opţiuni salvat cu succes."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Opţiunile setate la valorile implicite."
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Top 10 populare posturi Resetare"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Top 10 posturi populare daily Reiniţializare"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Numărul de posturi populare pentru a afişa: "
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
48
 
49
- #: admin.inc.php:133
50
  msgid ""
51
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
52
  "continue to be counted."
@@ -54,37 +62,37 @@ msgstr ""
54
  "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe "
55
  "pagini va continua să fie numărate."
56
 
57
- #: admin.inc.php:136
58
  msgid "Exclude Categories: "
59
  msgstr "Excludeţi categorii: "
60
 
61
- #: admin.inc.php:154
62
  #, fuzzy
63
  msgid "Display number of views on:"
64
  msgstr "Afişează numărul de vizualizări pe posturi?"
65
 
66
- #: admin.inc.php:155
67
  msgid "Posts"
68
  msgstr ""
69
 
70
- #: admin.inc.php:156
71
  #, fuzzy
72
  msgid "Pages"
73
  msgstr "Pagină"
74
 
75
- #: admin.inc.php:159
76
  msgid "Track visits of authors on their own posts?"
77
  msgstr "Track vizite de autori pe posturile lor proprii?"
78
 
79
- #: admin.inc.php:163
80
  msgid "Display number of page views in popular lists?"
81
  msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
82
 
83
- #: admin.inc.php:167
84
  msgid "Force daily posts' list to be dynamic?"
85
  msgstr ""
86
 
87
- #: admin.inc.php:169
88
  #, fuzzy
89
  msgid ""
90
  "This option uses JavaScript to load the post and can increase your page load "
@@ -94,15 +102,15 @@ msgstr ""
94
  "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
95
  "pagină"
96
 
97
- #: admin.inc.php:172
98
  msgid "Display page views on Posts > All Posts in Admin"
99
  msgstr ""
100
 
101
- #: admin.inc.php:176
102
  msgid "Link to Top 10 plugin page"
103
  msgstr ""
104
 
105
- #: admin.inc.php:178
106
  #, fuzzy
107
  msgid ""
108
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -111,16 +119,16 @@ msgstr ""
111
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
112
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
113
 
114
- #: admin.inc.php:185
115
  #, fuzzy
116
  msgid "Output Options"
117
  msgstr "Opţiuni de ieşire:"
118
 
119
- #: admin.inc.php:188
120
  msgid "Format to display the count in: "
121
  msgstr "Format pentru a afişa numărul în: "
122
 
123
- #: admin.inc.php:191
124
  #, fuzzy
125
  msgid ""
126
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -132,108 +140,108 @@ msgstr ""
132
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
133
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
134
 
135
- #: admin.inc.php:193
136
  msgid "Title of popular posts: "
137
  msgstr "Titlul de posturi populare: "
138
 
139
- #: admin.inc.php:196
140
  msgid "Title of daily popular posts: "
141
  msgstr "Titlul de zi cu zi de posturi populare: "
142
 
143
- #: admin.inc.php:199
144
  msgid "When there are no posts, what should be shown?"
145
  msgstr ""
146
 
147
- #: admin.inc.php:203
148
  msgid "Blank Output"
149
  msgstr ""
150
 
151
- #: admin.inc.php:207
152
  msgid "Display:"
153
  msgstr ""
154
 
155
- #: admin.inc.php:211
156
  msgid "Show post excerpt in list?"
157
  msgstr "Afişează post extras din lista?"
158
 
159
- #: admin.inc.php:214
160
  msgid "Length of excerpt (in words): "
161
  msgstr "Lungimea extras (în cuvinte): "
162
 
163
- #: admin.inc.php:217
164
  msgid "Customize the output:"
165
  msgstr "Personaliza ieşire:"
166
 
167
- #: admin.inc.php:219
168
  msgid "HTML to display before the list of posts: "
169
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
170
 
171
- #: admin.inc.php:222
172
  msgid "HTML to display before each list item: "
173
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
174
 
175
- #: admin.inc.php:225
176
  msgid "HTML to display after each list item: "
177
  msgstr "HTML pentru a afişa după fiecare element din listă: "
178
 
179
- #: admin.inc.php:228
180
  msgid "HTML to display after the list of posts: "
181
  msgstr "HTML pentru a afişa după lista de posturi: "
182
 
183
- #: admin.inc.php:231
184
  msgid "Post thumbnail options:"
185
  msgstr "Post Opţiuni pictograme:"
186
 
187
- #: admin.inc.php:233
188
  msgid "Location of post thumbnail:"
189
  msgstr ""
190
 
191
- #: admin.inc.php:237
192
  msgid "Display thumbnails inline with posts, before title"
193
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
194
 
195
- #: admin.inc.php:241
196
  msgid "Display thumbnails inline with posts, after title"
197
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
198
 
199
- #: admin.inc.php:245
200
  msgid "Display only thumbnails, no text"
201
  msgstr "Afişa numai miniaturi, nici un text"
202
 
203
- #: admin.inc.php:249
204
  msgid "Do not display thumbnails, only text."
205
  msgstr "Nu se afişează miniaturi, numai textul."
206
 
207
- #: admin.inc.php:253
208
  msgid "Maximum width of the thumbnail: "
209
  msgstr ""
210
 
211
- #: admin.inc.php:256
212
  msgid "Maximum height of the thumbnail: "
213
  msgstr ""
214
 
215
- #: admin.inc.php:259
216
  msgid "Use timthumb to generate thumbnails? "
217
  msgstr ""
218
 
219
- #: admin.inc.php:260
220
  msgid ""
221
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
222
  "\">timthumb</a> will be used to generate thumbnails"
223
  msgstr ""
224
 
225
- #: admin.inc.php:262
226
  #, fuzzy
227
  msgid "Post thumbnail meta field name: "
228
  msgstr "Post Opţiuni pictograme:"
229
 
230
- #: admin.inc.php:263
231
  msgid ""
232
  "The value of this field should contain the image source and is set in the "
233
  "<em>Add New Post</em> screen"
234
  msgstr ""
235
 
236
- #: admin.inc.php:265
237
  #, fuzzy
238
  msgid ""
239
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -244,10 +252,10 @@ msgstr ""
244
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
245
  "fişier"
246
 
247
- #: admin.inc.php:266
248
  #, fuzzy
249
  msgid ""
250
- "This can slow down the loading of your page if the first image in the "
251
  "related posts is large in file-size"
252
  msgstr ""
253
  "Dacă postmeta nu este setată, apoi trebuie să plugin-ul extrage prima "
@@ -255,11 +263,11 @@ msgstr ""
255
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
256
  "fişier"
257
 
258
- #: admin.inc.php:268
259
  msgid "Use default thumbnail? "
260
  msgstr ""
261
 
262
- #: admin.inc.php:269
263
  msgid ""
264
  "If checked, when no thumbnail is found, show a default one from the URL "
265
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -268,88 +276,95 @@ msgstr ""
268
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
269
  "thumbnail, imaginea nu va fi indicat."
270
 
271
- #: admin.inc.php:271
272
  msgid "Default thumbnail: "
273
  msgstr ""
274
 
275
- #: admin.inc.php:272
276
  msgid ""
277
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
278
  "then it will check the meta field. If this is not available, then it will "
279
  "show the default image as specified above"
280
  msgstr ""
281
 
282
- #: admin.inc.php:278
283
  msgid "Custom Styles"
284
  msgstr ""
285
 
286
- #: admin.inc.php:281
287
  msgid "Custom CSS to add to header:"
288
  msgstr ""
289
 
290
- #: admin.inc.php:284
291
  msgid ""
292
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
293
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
294
  "available CSS classes to style."
295
  msgstr ""
296
 
297
- #: admin.inc.php:289
298
- msgid "Maintenance"
299
- msgstr ""
300
-
301
  #: admin.inc.php:292
302
- msgid "Enable scheduled maintenance of daily tables:"
303
  msgstr ""
304
 
305
- #: admin.inc.php:294
306
  msgid ""
307
  "Over time the Daily Top 10 database grows in size, which reduces the "
308
  "performance of the plugin. Cleaning the database at regular intervals could "
309
- "improve performance, especially on high traffic blogs"
310
  msgstr ""
311
 
312
  #: admin.inc.php:297
313
- msgid "Time to run maintenance"
 
 
 
314
  msgstr ""
315
 
316
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
317
  msgid "How often should the maintenance be run:"
318
  msgstr ""
319
 
320
- #: admin.inc.php:304
321
  msgid "Daily"
322
  msgstr ""
323
 
324
- #: admin.inc.php:308
325
  msgid "Weekly"
326
  msgstr ""
327
 
328
- #: admin.inc.php:312
329
  msgid "Fortnightly"
330
  msgstr ""
331
 
332
- #: admin.inc.php:316
333
  msgid "Monthly"
334
  msgstr ""
335
 
336
- #: admin.inc.php:325
337
  msgid "The cron job has been scheduled. Maintenance will run "
338
  msgstr ""
339
 
340
- #: admin.inc.php:330
341
  msgid "The cron job is missing. Please resave this page to add the job"
342
  msgstr ""
343
 
344
- #: admin.inc.php:335
345
  msgid "Maintenance is turned off"
346
  msgstr ""
347
 
348
- #: admin.inc.php:343
349
  msgid "Reset count"
350
  msgstr "Reiniţializare count"
351
 
352
- #: admin.inc.php:346
353
  msgid ""
354
  "This cannot be reversed. Make sure that your database has been backed up "
355
  "before proceeding"
@@ -357,141 +372,141 @@ msgstr ""
357
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
358
  "înainte de a continua"
359
 
360
- #: admin.inc.php:349
361
  #, fuzzy
362
  msgid "Reset Popular Posts"
363
  msgstr "Posturi populare"
364
 
365
- #: admin.inc.php:349
366
  msgid "Are you sure you want to reset the popular posts?"
367
  msgstr "Sigur reiniţializaţi posturi populare?"
368
 
369
- #: admin.inc.php:350
370
  #, fuzzy
371
  msgid "Reset Daily Popular Posts"
372
  msgstr "Posturi populare de zi cu zi"
373
 
374
- #: admin.inc.php:350
375
  msgid "Are you sure you want to reset the daily popular posts?"
376
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
377
 
378
- #: admin.inc.php:351
379
  msgid "Clear duplicates"
380
  msgstr ""
381
 
382
- #: admin.inc.php:351
383
  msgid "This will delete the duplicate entries in the tables. Proceed?"
384
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
385
 
386
- #: admin.inc.php:355
387
  #, fuzzy
388
  msgid "Save Options"
389
  msgstr "Opţiuni:"
390
 
391
- #: admin.inc.php:356
392
  #, fuzzy
393
  msgid "Default Options"
394
  msgstr "Opţiuni de ieşire:"
395
 
396
- #: admin.inc.php:356
397
  msgid "Do you want to set options to Default?"
398
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
399
 
400
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
401
  msgid "Popular Posts"
402
  msgstr "Posturi populare"
403
 
404
- #: admin.inc.php:382
405
  msgid "Daily Popular Posts"
406
  msgstr "Posturi populare de zi cu zi"
407
 
408
- #: admin.inc.php:404
409
  msgid "Support the development"
410
  msgstr "Sprijinirea dezvoltării"
411
 
412
- #: admin.inc.php:412
413
  msgid "Enter amount in USD: "
414
  msgstr "Introduceţi valoarea în USD: "
415
 
416
- #: admin.inc.php:416
417
  msgid "Send your donation to the author of"
418
  msgstr "Trimite donatie autorului"
419
 
420
- #: admin.inc.php:422
421
  msgid "Follow us on Facebook"
422
  msgstr ""
423
 
424
- #: admin.inc.php:426
425
  #, fuzzy
426
  msgid "Quick Links"
427
  msgstr "Legături rapide pentru"
428
 
429
- #: admin.inc.php:428
430
  #, fuzzy
431
  msgid "Top 10 plugin page"
432
  msgstr "plug-in pagina"
433
 
434
- #: admin.inc.php:429
435
  msgid "Other plugins"
436
  msgstr "Alte plugin-uri"
437
 
438
- #: admin.inc.php:430
439
  msgid "Ajay's blog"
440
  msgstr "Ajay's blog"
441
 
442
- #: admin.inc.php:431 top-10.php:583
443
  msgid "Support"
444
  msgstr "Suport"
445
 
446
- #: admin.inc.php:432
447
  msgid "Follow @ajaydsouza on Twitter"
448
  msgstr "Urmaţi @ ajaydsouza pe Twitter"
449
 
450
- #: admin.inc.php:436
451
  msgid "Recent developments"
452
  msgstr "Evoluţiile recente"
453
 
454
- #: admin.inc.php:459 admin.inc.php:461
455
  msgid "Top 10"
456
  msgstr "Top 10"
457
 
458
- #: admin.inc.php:575
459
  msgid "Results"
460
  msgstr "Rezultatele"
461
 
462
- #: admin.inc.php:577 admin.inc.php:583
463
  msgid "of"
464
  msgstr "de"
465
 
466
- #: admin.inc.php:581
467
  msgid "Page"
468
  msgstr "Pagină"
469
 
470
- #: admin.inc.php:595
471
  msgid "View Daily Popular Posts"
472
  msgstr "Vizualizare zi posturi populare"
473
 
474
- #: admin.inc.php:599
475
  msgid "View Overall Popular Posts"
476
  msgstr "Vedere de ansamblu posturi populare"
477
 
478
- #: admin.inc.php:603
479
  msgid "Results per-page:"
480
  msgstr "Rezultate pe pagină:"
481
 
482
- #: admin.inc.php:627
483
  msgid "Previous"
484
  msgstr "Anterioară"
485
 
486
- #: admin.inc.php:645
487
  msgid "Next"
488
  msgstr "Următorul"
489
 
490
- #: admin.inc.php:668
491
  msgid "Daily Popular"
492
  msgstr "Daily populare"
493
 
494
- #: admin.inc.php:679
495
  msgid "Total / Today's Views"
496
  msgstr "Total / astăzi lui vizitări"
497
 
@@ -562,23 +577,23 @@ msgstr "<h3>Daily populare</h3>"
562
  msgid "No top posts yet"
563
  msgstr "Top 10 populare posturi Resetare"
564
 
565
- #: top-10.php:560
566
  msgid "Once Weekly"
567
  msgstr ""
568
 
569
- #: top-10.php:561
570
  msgid "Once Fortnightly"
571
  msgstr ""
572
 
573
- #: top-10.php:562
574
  msgid "Once Monthly"
575
  msgstr ""
576
 
577
- #: top-10.php:582
578
  msgid "Settings"
579
  msgstr "Setări"
580
 
581
- #: top-10.php:584
582
  msgid "Donate"
583
  msgstr "Dona"
584
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Opţiuni salvat cu succes."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Opţiunile setate la valorile implicite."
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "Top 10 populare posturi Resetare"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "Top 10 posturi populare daily Reiniţializare"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Numărul de posturi populare pentru a afişa: "
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
56
 
57
+ #: admin.inc.php:136
58
  msgid ""
59
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
60
  "continue to be counted."
62
  "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe "
63
  "pagini va continua să fie numărate."
64
 
65
+ #: admin.inc.php:139
66
  msgid "Exclude Categories: "
67
  msgstr "Excludeţi categorii: "
68
 
69
+ #: admin.inc.php:157
70
  #, fuzzy
71
  msgid "Display number of views on:"
72
  msgstr "Afişează numărul de vizualizări pe posturi?"
73
 
74
+ #: admin.inc.php:158
75
  msgid "Posts"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:159
79
  #, fuzzy
80
  msgid "Pages"
81
  msgstr "Pagină"
82
 
83
+ #: admin.inc.php:162
84
  msgid "Track visits of authors on their own posts?"
85
  msgstr "Track vizite de autori pe posturile lor proprii?"
86
 
87
+ #: admin.inc.php:166
88
  msgid "Display number of page views in popular lists?"
89
  msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
90
 
91
+ #: admin.inc.php:170
92
  msgid "Force daily posts' list to be dynamic?"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:172
96
  #, fuzzy
97
  msgid ""
98
  "This option uses JavaScript to load the post and can increase your page load "
102
  "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
103
  "pagină"
104
 
105
+ #: admin.inc.php:175
106
  msgid "Display page views on Posts > All Posts in Admin"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:179
110
  msgid "Link to Top 10 plugin page"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:181
114
  #, fuzzy
115
  msgid ""
116
  "A link to the plugin is added as an extra list item to the list of popular "
119
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
120
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
121
 
122
+ #: admin.inc.php:188
123
  #, fuzzy
124
  msgid "Output Options"
125
  msgstr "Opţiuni de ieşire:"
126
 
127
+ #: admin.inc.php:191
128
  msgid "Format to display the count in: "
129
  msgstr "Format pentru a afişa numărul în: "
130
 
131
+ #: admin.inc.php:194
132
  #, fuzzy
133
  msgid ""
134
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
140
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
141
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
142
 
143
+ #: admin.inc.php:196
144
  msgid "Title of popular posts: "
145
  msgstr "Titlul de posturi populare: "
146
 
147
+ #: admin.inc.php:199
148
  msgid "Title of daily popular posts: "
149
  msgstr "Titlul de zi cu zi de posturi populare: "
150
 
151
+ #: admin.inc.php:202
152
  msgid "When there are no posts, what should be shown?"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:206
156
  msgid "Blank Output"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:210
160
  msgid "Display:"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:214
164
  msgid "Show post excerpt in list?"
165
  msgstr "Afişează post extras din lista?"
166
 
167
+ #: admin.inc.php:217
168
  msgid "Length of excerpt (in words): "
169
  msgstr "Lungimea extras (în cuvinte): "
170
 
171
+ #: admin.inc.php:220
172
  msgid "Customize the output:"
173
  msgstr "Personaliza ieşire:"
174
 
175
+ #: admin.inc.php:222
176
  msgid "HTML to display before the list of posts: "
177
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
178
 
179
+ #: admin.inc.php:225
180
  msgid "HTML to display before each list item: "
181
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
182
 
183
+ #: admin.inc.php:228
184
  msgid "HTML to display after each list item: "
185
  msgstr "HTML pentru a afişa după fiecare element din listă: "
186
 
187
+ #: admin.inc.php:231
188
  msgid "HTML to display after the list of posts: "
189
  msgstr "HTML pentru a afişa după lista de posturi: "
190
 
191
+ #: admin.inc.php:234
192
  msgid "Post thumbnail options:"
193
  msgstr "Post Opţiuni pictograme:"
194
 
195
+ #: admin.inc.php:236
196
  msgid "Location of post thumbnail:"
197
  msgstr ""
198
 
199
+ #: admin.inc.php:240
200
  msgid "Display thumbnails inline with posts, before title"
201
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
202
 
203
+ #: admin.inc.php:244
204
  msgid "Display thumbnails inline with posts, after title"
205
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
206
 
207
+ #: admin.inc.php:248
208
  msgid "Display only thumbnails, no text"
209
  msgstr "Afişa numai miniaturi, nici un text"
210
 
211
+ #: admin.inc.php:252
212
  msgid "Do not display thumbnails, only text."
213
  msgstr "Nu se afişează miniaturi, numai textul."
214
 
215
+ #: admin.inc.php:256
216
  msgid "Maximum width of the thumbnail: "
217
  msgstr ""
218
 
219
+ #: admin.inc.php:259
220
  msgid "Maximum height of the thumbnail: "
221
  msgstr ""
222
 
223
+ #: admin.inc.php:262
224
  msgid "Use timthumb to generate thumbnails? "
225
  msgstr ""
226
 
227
+ #: admin.inc.php:263
228
  msgid ""
229
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
230
  "\">timthumb</a> will be used to generate thumbnails"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:265
234
  #, fuzzy
235
  msgid "Post thumbnail meta field name: "
236
  msgstr "Post Opţiuni pictograme:"
237
 
238
+ #: admin.inc.php:266
239
  msgid ""
240
  "The value of this field should contain the image source and is set in the "
241
  "<em>Add New Post</em> screen"
242
  msgstr ""
243
 
244
+ #: admin.inc.php:268
245
  #, fuzzy
246
  msgid ""
247
  "If the postmeta is not set, then should the plugin extract the first image "
252
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
253
  "fişier"
254
 
255
+ #: admin.inc.php:269
256
  #, fuzzy
257
  msgid ""
258
+ "This could slow down the loading of your page if the first image in the "
259
  "related posts is large in file-size"
260
  msgstr ""
261
  "Dacă postmeta nu este setată, apoi trebuie să plugin-ul extrage prima "
263
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
264
  "fişier"
265
 
266
+ #: admin.inc.php:271
267
  msgid "Use default thumbnail? "
268
  msgstr ""
269
 
270
+ #: admin.inc.php:272
271
  msgid ""
272
  "If checked, when no thumbnail is found, show a default one from the URL "
273
  "below. If not checked and no thumbnail is found, no image will be shown."
276
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
277
  "thumbnail, imaginea nu va fi indicat."
278
 
279
+ #: admin.inc.php:274
280
  msgid "Default thumbnail: "
281
  msgstr ""
282
 
283
+ #: admin.inc.php:275
284
  msgid ""
285
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
286
  "then it will check the meta field. If this is not available, then it will "
287
  "show the default image as specified above"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:281
291
  msgid "Custom Styles"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:284
295
  msgid "Custom CSS to add to header:"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:287
299
  msgid ""
300
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
301
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
302
  "available CSS classes to style."
303
  msgstr ""
304
 
 
 
 
 
305
  #: admin.inc.php:292
306
+ msgid "Maintenance"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:296
310
  msgid ""
311
  "Over time the Daily Top 10 database grows in size, which reduces the "
312
  "performance of the plugin. Cleaning the database at regular intervals could "
313
+ "improve performance, especially on high traffic blogs."
314
  msgstr ""
315
 
316
  #: admin.inc.php:297
317
+ msgid ""
318
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
319
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
320
+ "causes the daily posts table to reset."
321
  msgstr ""
322
 
323
  #: admin.inc.php:300
324
+ msgid "Enable scheduled maintenance of daily tables:"
325
+ msgstr ""
326
+
327
+ #: admin.inc.php:305
328
+ msgid "Time to run maintenance"
329
+ msgstr ""
330
+
331
+ #: admin.inc.php:308
332
  msgid "How often should the maintenance be run:"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:312
336
  msgid "Daily"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:316
340
  msgid "Weekly"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:320
344
  msgid "Fortnightly"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:324
348
  msgid "Monthly"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:333
352
  msgid "The cron job has been scheduled. Maintenance will run "
353
  msgstr ""
354
 
355
+ #: admin.inc.php:338
356
  msgid "The cron job is missing. Please resave this page to add the job"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:343
360
  msgid "Maintenance is turned off"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:351
364
  msgid "Reset count"
365
  msgstr "Reiniţializare count"
366
 
367
+ #: admin.inc.php:354
368
  msgid ""
369
  "This cannot be reversed. Make sure that your database has been backed up "
370
  "before proceeding"
372
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
373
  "înainte de a continua"
374
 
375
+ #: admin.inc.php:357
376
  #, fuzzy
377
  msgid "Reset Popular Posts"
378
  msgstr "Posturi populare"
379
 
380
+ #: admin.inc.php:357
381
  msgid "Are you sure you want to reset the popular posts?"
382
  msgstr "Sigur reiniţializaţi posturi populare?"
383
 
384
+ #: admin.inc.php:358
385
  #, fuzzy
386
  msgid "Reset Daily Popular Posts"
387
  msgstr "Posturi populare de zi cu zi"
388
 
389
+ #: admin.inc.php:358
390
  msgid "Are you sure you want to reset the daily popular posts?"
391
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
392
 
393
+ #: admin.inc.php:359
394
  msgid "Clear duplicates"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:359
398
  msgid "This will delete the duplicate entries in the tables. Proceed?"
399
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
400
 
401
+ #: admin.inc.php:363
402
  #, fuzzy
403
  msgid "Save Options"
404
  msgstr "Opţiuni:"
405
 
406
+ #: admin.inc.php:364
407
  #, fuzzy
408
  msgid "Default Options"
409
  msgstr "Opţiuni de ieşire:"
410
 
411
+ #: admin.inc.php:364
412
  msgid "Do you want to set options to Default?"
413
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
414
 
415
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
416
  msgid "Popular Posts"
417
  msgstr "Posturi populare"
418
 
419
+ #: admin.inc.php:390
420
  msgid "Daily Popular Posts"
421
  msgstr "Posturi populare de zi cu zi"
422
 
423
+ #: admin.inc.php:412
424
  msgid "Support the development"
425
  msgstr "Sprijinirea dezvoltării"
426
 
427
+ #: admin.inc.php:420
428
  msgid "Enter amount in USD: "
429
  msgstr "Introduceţi valoarea în USD: "
430
 
431
+ #: admin.inc.php:424
432
  msgid "Send your donation to the author of"
433
  msgstr "Trimite donatie autorului"
434
 
435
+ #: admin.inc.php:430
436
  msgid "Follow us on Facebook"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:434
440
  #, fuzzy
441
  msgid "Quick Links"
442
  msgstr "Legături rapide pentru"
443
 
444
+ #: admin.inc.php:436
445
  #, fuzzy
446
  msgid "Top 10 plugin page"
447
  msgstr "plug-in pagina"
448
 
449
+ #: admin.inc.php:437
450
  msgid "Other plugins"
451
  msgstr "Alte plugin-uri"
452
 
453
+ #: admin.inc.php:438
454
  msgid "Ajay's blog"
455
  msgstr "Ajay's blog"
456
 
457
+ #: admin.inc.php:439 top-10.php:588
458
  msgid "Support"
459
  msgstr "Suport"
460
 
461
+ #: admin.inc.php:440
462
  msgid "Follow @ajaydsouza on Twitter"
463
  msgstr "Urmaţi @ ajaydsouza pe Twitter"
464
 
465
+ #: admin.inc.php:444
466
  msgid "Recent developments"
467
  msgstr "Evoluţiile recente"
468
 
469
+ #: admin.inc.php:467 admin.inc.php:469
470
  msgid "Top 10"
471
  msgstr "Top 10"
472
 
473
+ #: admin.inc.php:583
474
  msgid "Results"
475
  msgstr "Rezultatele"
476
 
477
+ #: admin.inc.php:585 admin.inc.php:591
478
  msgid "of"
479
  msgstr "de"
480
 
481
+ #: admin.inc.php:589
482
  msgid "Page"
483
  msgstr "Pagină"
484
 
485
+ #: admin.inc.php:603
486
  msgid "View Daily Popular Posts"
487
  msgstr "Vizualizare zi posturi populare"
488
 
489
+ #: admin.inc.php:607
490
  msgid "View Overall Popular Posts"
491
  msgstr "Vedere de ansamblu posturi populare"
492
 
493
+ #: admin.inc.php:611
494
  msgid "Results per-page:"
495
  msgstr "Rezultate pe pagină:"
496
 
497
+ #: admin.inc.php:635
498
  msgid "Previous"
499
  msgstr "Anterioară"
500
 
501
+ #: admin.inc.php:653
502
  msgid "Next"
503
  msgstr "Următorul"
504
 
505
+ #: admin.inc.php:676
506
  msgid "Daily Popular"
507
  msgstr "Daily populare"
508
 
509
+ #: admin.inc.php:687
510
  msgid "Total / Today's Views"
511
  msgstr "Total / astăzi lui vizitări"
512
 
577
  msgid "No top posts yet"
578
  msgstr "Top 10 populare posturi Resetare"
579
 
580
+ #: top-10.php:565
581
  msgid "Once Weekly"
582
  msgstr ""
583
 
584
+ #: top-10.php:566
585
  msgid "Once Fortnightly"
586
  msgstr ""
587
 
588
+ #: top-10.php:567
589
  msgid "Once Monthly"
590
  msgstr ""
591
 
592
+ #: top-10.php:587
593
  msgid "Settings"
594
  msgstr "Setări"
595
 
596
+ #: top-10.php:589
597
  msgid "Donate"
598
  msgstr "Dona"
599
 
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: 2012-08-12 16:56-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"
@@ -14,40 +14,48 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Настройки сохранены."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Настройки сброшены."
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Сбросить статистику популярных записей"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Сбросить статистику популярных записей за сегодня"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Количество Популярных записей в списке:"
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
49
 
50
- #: admin.inc.php:133
51
  msgid ""
52
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
  "continue to be counted."
@@ -55,38 +63,38 @@ msgstr ""
55
  "Исключить страницы из списка Популярных записей? Количество просмотров для "
56
  "страниц будет продолжать подсчитываться"
57
 
58
- #: admin.inc.php:136
59
  msgid "Exclude Categories: "
60
  msgstr "Исключить рубрики:"
61
 
62
- #: admin.inc.php:154
63
  #, fuzzy
64
  msgid "Display number of views on:"
65
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
66
 
67
- #: admin.inc.php:155
68
  msgid "Posts"
69
  msgstr ""
70
 
71
- #: admin.inc.php:156
72
  #, fuzzy
73
  msgid "Pages"
74
  msgstr "Страница"
75
 
76
- #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
79
 
80
- #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
  msgstr ""
83
  "Показывать количество просмотров записей/страниц в списке Популярных записей?"
84
 
85
- #: admin.inc.php:167
86
  msgid "Force daily posts' list to be dynamic?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
  #, fuzzy
91
  msgid ""
92
  "This option uses JavaScript to load the post and can increase your page load "
@@ -95,15 +103,15 @@ msgstr ""
95
  "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
96
  "и это может увеличить время загрузки страниц"
97
 
98
- #: admin.inc.php:172
99
  msgid "Display page views on Posts > All Posts in Admin"
100
  msgstr ""
101
 
102
- #: admin.inc.php:176
103
  msgid "Link to Top 10 plugin page"
104
  msgstr ""
105
 
106
- #: admin.inc.php:178
107
  #, fuzzy
108
  msgid ""
109
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -112,18 +120,18 @@ msgstr ""
112
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
113
  "бы очень благодарен Вам, если Вы ее все же оставите!"
114
 
115
- #: admin.inc.php:185
116
  #, fuzzy
117
  msgid "Output Options"
118
  msgstr "Настройки плагина:"
119
 
120
- #: admin.inc.php:188
121
  msgid "Format to display the count in: "
122
  msgstr ""
123
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
124
  "день, за все время для записей/страниц:"
125
 
126
- #: admin.inc.php:191
127
  #, fuzzy
128
  msgid ""
129
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -135,108 +143,108 @@ msgstr ""
135
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
136
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
137
 
138
- #: admin.inc.php:193
139
  msgid "Title of popular posts: "
140
  msgstr "Заголовок списка Популярных записей:"
141
 
142
- #: admin.inc.php:196
143
  msgid "Title of daily popular posts: "
144
  msgstr "Заголовок списка Популярных сегодня записей:"
145
 
146
- #: admin.inc.php:199
147
  msgid "When there are no posts, what should be shown?"
148
  msgstr ""
149
 
150
- #: admin.inc.php:203
151
  msgid "Blank Output"
152
  msgstr ""
153
 
154
- #: admin.inc.php:207
155
  msgid "Display:"
156
  msgstr ""
157
 
158
- #: admin.inc.php:211
159
  msgid "Show post excerpt in list?"
160
  msgstr "Показывать текст записи в списке?"
161
 
162
- #: admin.inc.php:214
163
  msgid "Length of excerpt (in words): "
164
  msgstr "Длина выводимого текста (в словах):"
165
 
166
- #: admin.inc.php:217
167
  msgid "Customize the output:"
168
  msgstr "Настройки оформления списка:"
169
 
170
- #: admin.inc.php:219
171
  msgid "HTML to display before the list of posts: "
172
  msgstr "HTML-тег, используемый перед списком:"
173
 
174
- #: admin.inc.php:222
175
  msgid "HTML to display before each list item: "
176
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
177
 
178
- #: admin.inc.php:225
179
  msgid "HTML to display after each list item: "
180
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
181
 
182
- #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr "HTML-тег, используемый после списка:"
185
 
186
- #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr "Настройки превью к записям:"
189
 
190
- #: admin.inc.php:233
191
  msgid "Location of post thumbnail:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:237
195
  msgid "Display thumbnails inline with posts, before title"
196
  msgstr "Отображать превью к записи сразу перед заголовком"
197
 
198
- #: admin.inc.php:241
199
  msgid "Display thumbnails inline with posts, after title"
200
  msgstr "Отображать превью к записи сразу после заголовка"
201
 
202
- #: admin.inc.php:245
203
  msgid "Display only thumbnails, no text"
204
  msgstr "Отображать только превью, без текста"
205
 
206
- #: admin.inc.php:249
207
  msgid "Do not display thumbnails, only text."
208
  msgstr "Отображать только текст, без превью"
209
 
210
- #: admin.inc.php:253
211
  msgid "Maximum width of the thumbnail: "
212
  msgstr ""
213
 
214
- #: admin.inc.php:256
215
  msgid "Maximum height of the thumbnail: "
216
  msgstr ""
217
 
218
- #: admin.inc.php:259
219
  msgid "Use timthumb to generate thumbnails? "
220
  msgstr ""
221
 
222
- #: admin.inc.php:260
223
  msgid ""
224
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
225
  "\">timthumb</a> will be used to generate thumbnails"
226
  msgstr ""
227
 
228
- #: admin.inc.php:262
229
  #, fuzzy
230
  msgid "Post thumbnail meta field name: "
231
  msgstr "Настройки превью к записям:"
232
 
233
- #: admin.inc.php:263
234
  msgid ""
235
  "The value of this field should contain the image source and is set in the "
236
  "<em>Add New Post</em> screen"
237
  msgstr ""
238
 
239
- #: admin.inc.php:265
240
  #, fuzzy
241
  msgid ""
242
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -246,21 +254,21 @@ msgstr ""
246
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
247
  "как будет создаваться уменьшенная копия изображения"
248
 
249
- #: admin.inc.php:266
250
  #, fuzzy
251
  msgid ""
252
- "This can slow down the loading of your page if the first image in the "
253
  "related posts is large in file-size"
254
  msgstr ""
255
  "Если название для мета-поля не установлено, то плагин будет выводить первое "
256
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
257
  "как будет создаваться уменьшенная копия изображения"
258
 
259
- #: admin.inc.php:268
260
  msgid "Use default thumbnail? "
261
  msgstr ""
262
 
263
- #: admin.inc.php:269
264
  msgid ""
265
  "If checked, when no thumbnail is found, show a default one from the URL "
266
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -269,11 +277,11 @@ msgstr ""
269
  "добавлено стандартное изображение. Если превью задано к записи - будет "
270
  "отображаться только оно."
271
 
272
- #: admin.inc.php:271
273
  msgid "Default thumbnail: "
274
  msgstr ""
275
 
276
- #: admin.inc.php:272
277
  #, fuzzy
278
  msgid ""
279
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -284,77 +292,84 @@ msgstr ""
284
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
285
  "выводиться картинка по-умолчанию:"
286
 
287
- #: admin.inc.php:278
288
  msgid "Custom Styles"
289
  msgstr ""
290
 
291
- #: admin.inc.php:281
292
  msgid "Custom CSS to add to header:"
293
  msgstr ""
294
 
295
- #: admin.inc.php:284
296
  msgid ""
297
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
298
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
299
  "available CSS classes to style."
300
  msgstr ""
301
 
302
- #: admin.inc.php:289
303
- msgid "Maintenance"
304
- msgstr ""
305
-
306
  #: admin.inc.php:292
307
- msgid "Enable scheduled maintenance of daily tables:"
308
  msgstr ""
309
 
310
- #: admin.inc.php:294
311
  msgid ""
312
  "Over time the Daily Top 10 database grows in size, which reduces the "
313
  "performance of the plugin. Cleaning the database at regular intervals could "
314
- "improve performance, especially on high traffic blogs"
315
  msgstr ""
316
 
317
  #: admin.inc.php:297
318
- msgid "Time to run maintenance"
 
 
 
319
  msgstr ""
320
 
321
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
322
  msgid "How often should the maintenance be run:"
323
  msgstr ""
324
 
325
- #: admin.inc.php:304
326
  msgid "Daily"
327
  msgstr ""
328
 
329
- #: admin.inc.php:308
330
  msgid "Weekly"
331
  msgstr ""
332
 
333
- #: admin.inc.php:312
334
  msgid "Fortnightly"
335
  msgstr ""
336
 
337
- #: admin.inc.php:316
338
  msgid "Monthly"
339
  msgstr ""
340
 
341
- #: admin.inc.php:325
342
  msgid "The cron job has been scheduled. Maintenance will run "
343
  msgstr ""
344
 
345
- #: admin.inc.php:330
346
  msgid "The cron job is missing. Please resave this page to add the job"
347
  msgstr ""
348
 
349
- #: admin.inc.php:335
350
  msgid "Maintenance is turned off"
351
  msgstr ""
352
 
353
- #: admin.inc.php:343
354
  msgid "Reset count"
355
  msgstr "Сбросить статистику"
356
 
357
- #: admin.inc.php:346
358
  msgid ""
359
  "This cannot be reversed. Make sure that your database has been backed up "
360
  "before proceeding"
@@ -362,143 +377,143 @@ msgstr ""
362
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
363
  "убедитесь, что у вас есть копия вашей базы данных!"
364
 
365
- #: admin.inc.php:349
366
  #, fuzzy
367
  msgid "Reset Popular Posts"
368
  msgstr "Популярные записи"
369
 
370
- #: admin.inc.php:349
371
  msgid "Are you sure you want to reset the popular posts?"
372
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
373
 
374
- #: admin.inc.php:350
375
  #, fuzzy
376
  msgid "Reset Daily Popular Posts"
377
  msgstr "Популярные сегодня записи"
378
 
379
- #: admin.inc.php:350
380
  msgid "Are you sure you want to reset the daily popular posts?"
381
  msgstr ""
382
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
383
 
384
- #: admin.inc.php:351
385
  msgid "Clear duplicates"
386
  msgstr ""
387
 
388
- #: admin.inc.php:351
389
  msgid "This will delete the duplicate entries in the tables. Proceed?"
390
  msgstr ""
391
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
392
 
393
- #: admin.inc.php:355
394
  #, fuzzy
395
  msgid "Save Options"
396
  msgstr "Настройки плагина:"
397
 
398
- #: admin.inc.php:356
399
  #, fuzzy
400
  msgid "Default Options"
401
  msgstr "Настройки плагина:"
402
 
403
- #: admin.inc.php:356
404
  msgid "Do you want to set options to Default?"
405
  msgstr "Сбросить настройки плагина?"
406
 
407
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
408
  msgid "Popular Posts"
409
  msgstr "Популярные записи"
410
 
411
- #: admin.inc.php:382
412
  msgid "Daily Popular Posts"
413
  msgstr "Популярные сегодня записи"
414
 
415
- #: admin.inc.php:404
416
  msgid "Support the development"
417
  msgstr "Поддержать автора плагина"
418
 
419
- #: admin.inc.php:412
420
  msgid "Enter amount in USD: "
421
  msgstr "Сколько вы готовы пожертвовать (в USD):"
422
 
423
- #: admin.inc.php:416
424
  msgid "Send your donation to the author of"
425
  msgstr "Отправьте пожертвование автору"
426
 
427
- #: admin.inc.php:422
428
  msgid "Follow us on Facebook"
429
  msgstr ""
430
 
431
- #: admin.inc.php:426
432
  #, fuzzy
433
  msgid "Quick Links"
434
  msgstr "Полезные ссылки"
435
 
436
- #: admin.inc.php:428
437
  #, fuzzy
438
  msgid "Top 10 plugin page"
439
  msgstr "страница плагина"
440
 
441
- #: admin.inc.php:429
442
  msgid "Other plugins"
443
  msgstr "Другие плагины автора"
444
 
445
- #: admin.inc.php:430
446
  msgid "Ajay's blog"
447
  msgstr "Блог Ajay"
448
 
449
- #: admin.inc.php:431 top-10.php:583
450
  msgid "Support"
451
  msgstr "Поддержка (англ.)"
452
 
453
- #: admin.inc.php:432
454
  msgid "Follow @ajaydsouza on Twitter"
455
  msgstr "Следуй за @ajaydsouza в Twitter"
456
 
457
- #: admin.inc.php:436
458
  msgid "Recent developments"
459
  msgstr "Последние разработки"
460
 
461
- #: admin.inc.php:459 admin.inc.php:461
462
  msgid "Top 10"
463
  msgstr "Топ 10 записей"
464
 
465
- #: admin.inc.php:575
466
  msgid "Results"
467
  msgstr "Результаты"
468
 
469
- #: admin.inc.php:577 admin.inc.php:583
470
  msgid "of"
471
  msgstr "из"
472
 
473
- #: admin.inc.php:581
474
  msgid "Page"
475
  msgstr "Страница"
476
 
477
- #: admin.inc.php:595
478
  msgid "View Daily Popular Posts"
479
  msgstr "Посмотреть все Популярные сегодня записи"
480
 
481
- #: admin.inc.php:599
482
  msgid "View Overall Popular Posts"
483
  msgstr "Посмотреть все Популярные записи"
484
 
485
- #: admin.inc.php:603
486
  msgid "Results per-page:"
487
  msgstr "Результатов на страницу:"
488
 
489
- #: admin.inc.php:627
490
  msgid "Previous"
491
  msgstr "Предыдущая страница"
492
 
493
- #: admin.inc.php:645
494
  msgid "Next"
495
  msgstr "Следующая страница"
496
 
497
- #: admin.inc.php:668
498
  msgid "Daily Popular"
499
  msgstr "Популярные сегодня записи"
500
 
501
- #: admin.inc.php:679
502
  msgid "Total / Today's Views"
503
  msgstr "Всего/Сегодня"
504
 
@@ -569,23 +584,23 @@ msgstr "<h3>Популярные сегодня записи</h3>"
569
  msgid "No top posts yet"
570
  msgstr "Сбросить статистику популярных записей"
571
 
572
- #: top-10.php:560
573
  msgid "Once Weekly"
574
  msgstr ""
575
 
576
- #: top-10.php:561
577
  msgid "Once Fortnightly"
578
  msgstr ""
579
 
580
- #: top-10.php:562
581
  msgid "Once Monthly"
582
  msgstr ""
583
 
584
- #: top-10.php:582
585
  msgid "Settings"
586
  msgstr "Настроки плагина"
587
 
588
- #: top-10.php:584
589
  msgid "Donate"
590
  msgstr "Сделать пожертвование"
591
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:42-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Настройки сохранены."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Настройки сброшены."
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "Сбросить статистику популярных записей"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "Сбросить статистику популярных записей за сегодня"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Количество Популярных записей в списке:"
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
57
 
58
+ #: admin.inc.php:136
59
  msgid ""
60
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
61
  "continue to be counted."
63
  "Исключить страницы из списка Популярных записей? Количество просмотров для "
64
  "страниц будет продолжать подсчитываться"
65
 
66
+ #: admin.inc.php:139
67
  msgid "Exclude Categories: "
68
  msgstr "Исключить рубрики:"
69
 
70
+ #: admin.inc.php:157
71
  #, fuzzy
72
  msgid "Display number of views on:"
73
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
74
 
75
+ #: admin.inc.php:158
76
  msgid "Posts"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:159
80
  #, fuzzy
81
  msgid "Pages"
82
  msgstr "Страница"
83
 
84
+ #: admin.inc.php:162
85
  msgid "Track visits of authors on their own posts?"
86
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
87
 
88
+ #: admin.inc.php:166
89
  msgid "Display number of page views in popular lists?"
90
  msgstr ""
91
  "Показывать количество просмотров записей/страниц в списке Популярных записей?"
92
 
93
+ #: admin.inc.php:170
94
  msgid "Force daily posts' list to be dynamic?"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:172
98
  #, fuzzy
99
  msgid ""
100
  "This option uses JavaScript to load the post and can increase your page load "
103
  "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
104
  "и это может увеличить время загрузки страниц"
105
 
106
+ #: admin.inc.php:175
107
  msgid "Display page views on Posts > All Posts in Admin"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:179
111
  msgid "Link to Top 10 plugin page"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:181
115
  #, fuzzy
116
  msgid ""
117
  "A link to the plugin is added as an extra list item to the list of popular "
120
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
121
  "бы очень благодарен Вам, если Вы ее все же оставите!"
122
 
123
+ #: admin.inc.php:188
124
  #, fuzzy
125
  msgid "Output Options"
126
  msgstr "Настройки плагина:"
127
 
128
+ #: admin.inc.php:191
129
  msgid "Format to display the count in: "
130
  msgstr ""
131
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
132
  "день, за все время для записей/страниц:"
133
 
134
+ #: admin.inc.php:194
135
  #, fuzzy
136
  msgid ""
137
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
143
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
144
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
145
 
146
+ #: admin.inc.php:196
147
  msgid "Title of popular posts: "
148
  msgstr "Заголовок списка Популярных записей:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Title of daily popular posts: "
152
  msgstr "Заголовок списка Популярных сегодня записей:"
153
 
154
+ #: admin.inc.php:202
155
  msgid "When there are no posts, what should be shown?"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:206
159
  msgid "Blank Output"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:210
163
  msgid "Display:"
164
  msgstr ""
165
 
166
+ #: admin.inc.php:214
167
  msgid "Show post excerpt in list?"
168
  msgstr "Показывать текст записи в списке?"
169
 
170
+ #: admin.inc.php:217
171
  msgid "Length of excerpt (in words): "
172
  msgstr "Длина выводимого текста (в словах):"
173
 
174
+ #: admin.inc.php:220
175
  msgid "Customize the output:"
176
  msgstr "Настройки оформления списка:"
177
 
178
+ #: admin.inc.php:222
179
  msgid "HTML to display before the list of posts: "
180
  msgstr "HTML-тег, используемый перед списком:"
181
 
182
+ #: admin.inc.php:225
183
  msgid "HTML to display before each list item: "
184
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
185
 
186
+ #: admin.inc.php:228
187
  msgid "HTML to display after each list item: "
188
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
189
 
190
+ #: admin.inc.php:231
191
  msgid "HTML to display after the list of posts: "
192
  msgstr "HTML-тег, используемый после списка:"
193
 
194
+ #: admin.inc.php:234
195
  msgid "Post thumbnail options:"
196
  msgstr "Настройки превью к записям:"
197
 
198
+ #: admin.inc.php:236
199
  msgid "Location of post thumbnail:"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:240
203
  msgid "Display thumbnails inline with posts, before title"
204
  msgstr "Отображать превью к записи сразу перед заголовком"
205
 
206
+ #: admin.inc.php:244
207
  msgid "Display thumbnails inline with posts, after title"
208
  msgstr "Отображать превью к записи сразу после заголовка"
209
 
210
+ #: admin.inc.php:248
211
  msgid "Display only thumbnails, no text"
212
  msgstr "Отображать только превью, без текста"
213
 
214
+ #: admin.inc.php:252
215
  msgid "Do not display thumbnails, only text."
216
  msgstr "Отображать только текст, без превью"
217
 
218
+ #: admin.inc.php:256
219
  msgid "Maximum width of the thumbnail: "
220
  msgstr ""
221
 
222
+ #: admin.inc.php:259
223
  msgid "Maximum height of the thumbnail: "
224
  msgstr ""
225
 
226
+ #: admin.inc.php:262
227
  msgid "Use timthumb to generate thumbnails? "
228
  msgstr ""
229
 
230
+ #: admin.inc.php:263
231
  msgid ""
232
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
233
  "\">timthumb</a> will be used to generate thumbnails"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:265
237
  #, fuzzy
238
  msgid "Post thumbnail meta field name: "
239
  msgstr "Настройки превью к записям:"
240
 
241
+ #: admin.inc.php:266
242
  msgid ""
243
  "The value of this field should contain the image source and is set in the "
244
  "<em>Add New Post</em> screen"
245
  msgstr ""
246
 
247
+ #: admin.inc.php:268
248
  #, fuzzy
249
  msgid ""
250
  "If the postmeta is not set, then should the plugin extract the first image "
254
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
255
  "как будет создаваться уменьшенная копия изображения"
256
 
257
+ #: admin.inc.php:269
258
  #, fuzzy
259
  msgid ""
260
+ "This could slow down the loading of your page if the first image in the "
261
  "related posts is large in file-size"
262
  msgstr ""
263
  "Если название для мета-поля не установлено, то плагин будет выводить первое "
264
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
265
  "как будет создаваться уменьшенная копия изображения"
266
 
267
+ #: admin.inc.php:271
268
  msgid "Use default thumbnail? "
269
  msgstr ""
270
 
271
+ #: admin.inc.php:272
272
  msgid ""
273
  "If checked, when no thumbnail is found, show a default one from the URL "
274
  "below. If not checked and no thumbnail is found, no image will be shown."
277
  "добавлено стандартное изображение. Если превью задано к записи - будет "
278
  "отображаться только оно."
279
 
280
+ #: admin.inc.php:274
281
  msgid "Default thumbnail: "
282
  msgstr ""
283
 
284
+ #: admin.inc.php:275
285
  #, fuzzy
286
  msgid ""
287
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
292
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
293
  "выводиться картинка по-умолчанию:"
294
 
295
+ #: admin.inc.php:281
296
  msgid "Custom Styles"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:284
300
  msgid "Custom CSS to add to header:"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:287
304
  msgid ""
305
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
306
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
307
  "available CSS classes to style."
308
  msgstr ""
309
 
 
 
 
 
310
  #: admin.inc.php:292
311
+ msgid "Maintenance"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:296
315
  msgid ""
316
  "Over time the Daily Top 10 database grows in size, which reduces the "
317
  "performance of the plugin. Cleaning the database at regular intervals could "
318
+ "improve performance, especially on high traffic blogs."
319
  msgstr ""
320
 
321
  #: admin.inc.php:297
322
+ msgid ""
323
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
324
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
325
+ "causes the daily posts table to reset."
326
  msgstr ""
327
 
328
  #: admin.inc.php:300
329
+ msgid "Enable scheduled maintenance of daily tables:"
330
+ msgstr ""
331
+
332
+ #: admin.inc.php:305
333
+ msgid "Time to run maintenance"
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:308
337
  msgid "How often should the maintenance be run:"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:312
341
  msgid "Daily"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:316
345
  msgid "Weekly"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:320
349
  msgid "Fortnightly"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:324
353
  msgid "Monthly"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:333
357
  msgid "The cron job has been scheduled. Maintenance will run "
358
  msgstr ""
359
 
360
+ #: admin.inc.php:338
361
  msgid "The cron job is missing. Please resave this page to add the job"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:343
365
  msgid "Maintenance is turned off"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:351
369
  msgid "Reset count"
370
  msgstr "Сбросить статистику"
371
 
372
+ #: admin.inc.php:354
373
  msgid ""
374
  "This cannot be reversed. Make sure that your database has been backed up "
375
  "before proceeding"
377
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
378
  "убедитесь, что у вас есть копия вашей базы данных!"
379
 
380
+ #: admin.inc.php:357
381
  #, fuzzy
382
  msgid "Reset Popular Posts"
383
  msgstr "Популярные записи"
384
 
385
+ #: admin.inc.php:357
386
  msgid "Are you sure you want to reset the popular posts?"
387
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
388
 
389
+ #: admin.inc.php:358
390
  #, fuzzy
391
  msgid "Reset Daily Popular Posts"
392
  msgstr "Популярные сегодня записи"
393
 
394
+ #: admin.inc.php:358
395
  msgid "Are you sure you want to reset the daily popular posts?"
396
  msgstr ""
397
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
398
 
399
+ #: admin.inc.php:359
400
  msgid "Clear duplicates"
401
  msgstr ""
402
 
403
+ #: admin.inc.php:359
404
  msgid "This will delete the duplicate entries in the tables. Proceed?"
405
  msgstr ""
406
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
407
 
408
+ #: admin.inc.php:363
409
  #, fuzzy
410
  msgid "Save Options"
411
  msgstr "Настройки плагина:"
412
 
413
+ #: admin.inc.php:364
414
  #, fuzzy
415
  msgid "Default Options"
416
  msgstr "Настройки плагина:"
417
 
418
+ #: admin.inc.php:364
419
  msgid "Do you want to set options to Default?"
420
  msgstr "Сбросить настройки плагина?"
421
 
422
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
423
  msgid "Popular Posts"
424
  msgstr "Популярные записи"
425
 
426
+ #: admin.inc.php:390
427
  msgid "Daily Popular Posts"
428
  msgstr "Популярные сегодня записи"
429
 
430
+ #: admin.inc.php:412
431
  msgid "Support the development"
432
  msgstr "Поддержать автора плагина"
433
 
434
+ #: admin.inc.php:420
435
  msgid "Enter amount in USD: "
436
  msgstr "Сколько вы готовы пожертвовать (в USD):"
437
 
438
+ #: admin.inc.php:424
439
  msgid "Send your donation to the author of"
440
  msgstr "Отправьте пожертвование автору"
441
 
442
+ #: admin.inc.php:430
443
  msgid "Follow us on Facebook"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:434
447
  #, fuzzy
448
  msgid "Quick Links"
449
  msgstr "Полезные ссылки"
450
 
451
+ #: admin.inc.php:436
452
  #, fuzzy
453
  msgid "Top 10 plugin page"
454
  msgstr "страница плагина"
455
 
456
+ #: admin.inc.php:437
457
  msgid "Other plugins"
458
  msgstr "Другие плагины автора"
459
 
460
+ #: admin.inc.php:438
461
  msgid "Ajay's blog"
462
  msgstr "Блог Ajay"
463
 
464
+ #: admin.inc.php:439 top-10.php:588
465
  msgid "Support"
466
  msgstr "Поддержка (англ.)"
467
 
468
+ #: admin.inc.php:440
469
  msgid "Follow @ajaydsouza on Twitter"
470
  msgstr "Следуй за @ajaydsouza в Twitter"
471
 
472
+ #: admin.inc.php:444
473
  msgid "Recent developments"
474
  msgstr "Последние разработки"
475
 
476
+ #: admin.inc.php:467 admin.inc.php:469
477
  msgid "Top 10"
478
  msgstr "Топ 10 записей"
479
 
480
+ #: admin.inc.php:583
481
  msgid "Results"
482
  msgstr "Результаты"
483
 
484
+ #: admin.inc.php:585 admin.inc.php:591
485
  msgid "of"
486
  msgstr "из"
487
 
488
+ #: admin.inc.php:589
489
  msgid "Page"
490
  msgstr "Страница"
491
 
492
+ #: admin.inc.php:603
493
  msgid "View Daily Popular Posts"
494
  msgstr "Посмотреть все Популярные сегодня записи"
495
 
496
+ #: admin.inc.php:607
497
  msgid "View Overall Popular Posts"
498
  msgstr "Посмотреть все Популярные записи"
499
 
500
+ #: admin.inc.php:611
501
  msgid "Results per-page:"
502
  msgstr "Результатов на страницу:"
503
 
504
+ #: admin.inc.php:635
505
  msgid "Previous"
506
  msgstr "Предыдущая страница"
507
 
508
+ #: admin.inc.php:653
509
  msgid "Next"
510
  msgstr "Следующая страница"
511
 
512
+ #: admin.inc.php:676
513
  msgid "Daily Popular"
514
  msgstr "Популярные сегодня записи"
515
 
516
+ #: admin.inc.php:687
517
  msgid "Total / Today's Views"
518
  msgstr "Всего/Сегодня"
519
 
584
  msgid "No top posts yet"
585
  msgstr "Сбросить статистику популярных записей"
586
 
587
+ #: top-10.php:565
588
  msgid "Once Weekly"
589
  msgstr ""
590
 
591
+ #: top-10.php:566
592
  msgid "Once Fortnightly"
593
  msgstr ""
594
 
595
+ #: top-10.php:567
596
  msgid "Once Monthly"
597
  msgstr ""
598
 
599
+ #: top-10.php:587
600
  msgid "Settings"
601
  msgstr "Настроки плагина"
602
 
603
+ #: top-10.php:589
604
  msgid "Donate"
605
  msgstr "Сделать пожертвование"
606
 
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: 2012-08-12 16:56-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"
@@ -14,40 +14,48 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:75
 
 
 
 
 
 
 
 
18
  msgid "Options saved successfully."
19
  msgstr "Установки збережені."
20
 
21
- #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Установки скинуті."
24
 
25
- #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Скинути статистику найпопулярніших записів"
28
 
29
- #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
32
 
33
- #: admin.inc.php:103
34
  msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
- #: admin.inc.php:124
38
  msgid "General options"
39
  msgstr ""
40
 
41
- #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Кількість Популярних записів у списку:"
44
 
45
- #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
49
 
50
- #: admin.inc.php:133
51
  msgid ""
52
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
  "continue to be counted."
@@ -55,38 +63,38 @@ msgstr ""
55
  "Виключити сторінки зі списку Популярних записів? Кількість переглядів для "
56
  "сторінок продовжуватиме підраховуватися"
57
 
58
- #: admin.inc.php:136
59
  msgid "Exclude Categories: "
60
  msgstr "Виключити Категорії:"
61
 
62
- #: admin.inc.php:154
63
  #, fuzzy
64
  msgid "Display number of views on:"
65
  msgstr "Показувати кількість переглядів запису?"
66
 
67
- #: admin.inc.php:155
68
  msgid "Posts"
69
  msgstr ""
70
 
71
- #: admin.inc.php:156
72
  #, fuzzy
73
  msgid "Pages"
74
  msgstr "Сторінка"
75
 
76
- #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
79
 
80
- #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
  msgstr ""
83
  "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
84
 
85
- #: admin.inc.php:167
86
  msgid "Force daily posts' list to be dynamic?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
  #, fuzzy
91
  msgid ""
92
  "This option uses JavaScript to load the post and can increase your page load "
@@ -95,15 +103,15 @@ msgstr ""
95
  "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
96
  "і це може збільшити час завантаження сторінок"
97
 
98
- #: admin.inc.php:172
99
  msgid "Display page views on Posts > All Posts in Admin"
100
  msgstr ""
101
 
102
- #: admin.inc.php:176
103
  msgid "Link to Top 10 plugin page"
104
  msgstr ""
105
 
106
- #: admin.inc.php:178
107
  #, fuzzy
108
  msgid ""
109
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -112,18 +120,18 @@ msgstr ""
112
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
113
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
114
 
115
- #: admin.inc.php:185
116
  #, fuzzy
117
  msgid "Output Options"
118
  msgstr "Установки плагіна:"
119
 
120
- #: admin.inc.php:188
121
  msgid "Format to display the count in: "
122
  msgstr ""
123
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
124
  "за день, за весь час для записів/сторінок:"
125
 
126
- #: admin.inc.php:191
127
  #, fuzzy
128
  msgid ""
129
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -135,110 +143,110 @@ msgstr ""
135
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
136
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
137
 
138
- #: admin.inc.php:193
139
  msgid "Title of popular posts: "
140
  msgstr "Заголовок списку Популярних записів:"
141
 
142
- #: admin.inc.php:196
143
  msgid "Title of daily popular posts: "
144
  msgstr "Заголовок списку Популярних сьогодні записів:"
145
 
146
- #: admin.inc.php:199
147
  msgid "When there are no posts, what should be shown?"
148
  msgstr ""
149
 
150
- #: admin.inc.php:203
151
  msgid "Blank Output"
152
  msgstr ""
153
 
154
- #: admin.inc.php:207
155
  msgid "Display:"
156
  msgstr ""
157
 
158
- #: admin.inc.php:211
159
  msgid "Show post excerpt in list?"
160
  msgstr "Показувати текст запису в списку?"
161
 
162
- #: admin.inc.php:214
163
  msgid "Length of excerpt (in words): "
164
  msgstr "Довжина виведеного тексту (в словах):"
165
 
166
- #: admin.inc.php:217
167
  msgid "Customize the output:"
168
  msgstr "Установки оформлення списку:"
169
 
170
- #: admin.inc.php:219
171
  msgid "HTML to display before the list of posts: "
172
  msgstr "HTML-тег, який використовується перед списком:"
173
 
174
- #: admin.inc.php:222
175
  msgid "HTML to display before each list item: "
176
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
177
 
178
- #: admin.inc.php:225
179
  msgid "HTML to display after each list item: "
180
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
181
 
182
- #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr "HTML-тег, який використовується після списку:"
185
 
186
- #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr "Установки превью до записів:"
189
 
190
- #: admin.inc.php:233
191
  msgid "Location of post thumbnail:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:237
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "Відображати і превью, і текст"
198
 
199
- #: admin.inc.php:241
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, after title"
202
  msgstr "Відображати і превью, і текст"
203
 
204
- #: admin.inc.php:245
205
  msgid "Display only thumbnails, no text"
206
  msgstr "Показувати тільки превью, без тексту"
207
 
208
- #: admin.inc.php:249
209
  msgid "Do not display thumbnails, only text."
210
  msgstr "Показувати лише текст, без превью"
211
 
212
- #: admin.inc.php:253
213
  msgid "Maximum width of the thumbnail: "
214
  msgstr ""
215
 
216
- #: admin.inc.php:256
217
  msgid "Maximum height of the thumbnail: "
218
  msgstr ""
219
 
220
- #: admin.inc.php:259
221
  msgid "Use timthumb to generate thumbnails? "
222
  msgstr ""
223
 
224
- #: admin.inc.php:260
225
  msgid ""
226
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
227
  "\">timthumb</a> will be used to generate thumbnails"
228
  msgstr ""
229
 
230
- #: admin.inc.php:262
231
  #, fuzzy
232
  msgid "Post thumbnail meta field name: "
233
  msgstr "Установки превью до записів:"
234
 
235
- #: admin.inc.php:263
236
  msgid ""
237
  "The value of this field should contain the image source and is set in the "
238
  "<em>Add New Post</em> screen"
239
  msgstr ""
240
 
241
- #: admin.inc.php:265
242
  #, fuzzy
243
  msgid ""
244
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -248,31 +256,31 @@ msgstr ""
248
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
249
  "так як буде створюватися зменшена копія зображення"
250
 
251
- #: admin.inc.php:266
252
  #, fuzzy
253
  msgid ""
254
- "This can slow down the loading of your page if the first image in the "
255
  "related posts is large in file-size"
256
  msgstr ""
257
  "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше "
258
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
259
  "так як буде створюватися зменшена копія зображення"
260
 
261
- #: admin.inc.php:268
262
  msgid "Use default thumbnail? "
263
  msgstr ""
264
 
265
- #: admin.inc.php:269
266
  msgid ""
267
  "If checked, when no thumbnail is found, show a default one from the URL "
268
  "below. If not checked and no thumbnail is found, no image will be shown."
269
  msgstr ""
270
 
271
- #: admin.inc.php:271
272
  msgid "Default thumbnail: "
273
  msgstr ""
274
 
275
- #: admin.inc.php:272
276
  #, fuzzy
277
  msgid ""
278
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -283,77 +291,84 @@ msgstr ""
283
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
284
  "замовчунням:"
285
 
286
- #: admin.inc.php:278
287
  msgid "Custom Styles"
288
  msgstr ""
289
 
290
- #: admin.inc.php:281
291
  msgid "Custom CSS to add to header:"
292
  msgstr ""
293
 
294
- #: admin.inc.php:284
295
  msgid ""
296
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
297
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
298
  "available CSS classes to style."
299
  msgstr ""
300
 
301
- #: admin.inc.php:289
302
- msgid "Maintenance"
303
- msgstr ""
304
-
305
  #: admin.inc.php:292
306
- msgid "Enable scheduled maintenance of daily tables:"
307
  msgstr ""
308
 
309
- #: admin.inc.php:294
310
  msgid ""
311
  "Over time the Daily Top 10 database grows in size, which reduces the "
312
  "performance of the plugin. Cleaning the database at regular intervals could "
313
- "improve performance, especially on high traffic blogs"
314
  msgstr ""
315
 
316
  #: admin.inc.php:297
317
- msgid "Time to run maintenance"
 
 
 
318
  msgstr ""
319
 
320
  #: admin.inc.php:300
 
 
 
 
 
 
 
 
321
  msgid "How often should the maintenance be run:"
322
  msgstr ""
323
 
324
- #: admin.inc.php:304
325
  msgid "Daily"
326
  msgstr ""
327
 
328
- #: admin.inc.php:308
329
  msgid "Weekly"
330
  msgstr ""
331
 
332
- #: admin.inc.php:312
333
  msgid "Fortnightly"
334
  msgstr ""
335
 
336
- #: admin.inc.php:316
337
  msgid "Monthly"
338
  msgstr ""
339
 
340
- #: admin.inc.php:325
341
  msgid "The cron job has been scheduled. Maintenance will run "
342
  msgstr ""
343
 
344
- #: admin.inc.php:330
345
  msgid "The cron job is missing. Please resave this page to add the job"
346
  msgstr ""
347
 
348
- #: admin.inc.php:335
349
  msgid "Maintenance is turned off"
350
  msgstr ""
351
 
352
- #: admin.inc.php:343
353
  msgid "Reset count"
354
  msgstr "Скинути статистику"
355
 
356
- #: admin.inc.php:346
357
  msgid ""
358
  "This cannot be reversed. Make sure that your database has been backed up "
359
  "before proceeding"
@@ -361,142 +376,142 @@ msgstr ""
361
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
362
  "переконайтесь, що у вас є копія вашої бази даних!"
363
 
364
- #: admin.inc.php:349
365
  #, fuzzy
366
  msgid "Reset Popular Posts"
367
  msgstr "Популярні записи"
368
 
369
- #: admin.inc.php:349
370
  msgid "Are you sure you want to reset the popular posts?"
371
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
372
 
373
- #: admin.inc.php:350
374
  #, fuzzy
375
  msgid "Reset Daily Popular Posts"
376
  msgstr "Популярні сьогодні записи"
377
 
378
- #: admin.inc.php:350
379
  msgid "Are you sure you want to reset the daily popular posts?"
380
  msgstr ""
381
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
382
 
383
- #: admin.inc.php:351
384
  msgid "Clear duplicates"
385
  msgstr ""
386
 
387
- #: admin.inc.php:351
388
  msgid "This will delete the duplicate entries in the tables. Proceed?"
389
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
390
 
391
- #: admin.inc.php:355
392
  #, fuzzy
393
  msgid "Save Options"
394
  msgstr "Установки плагіна:"
395
 
396
- #: admin.inc.php:356
397
  #, fuzzy
398
  msgid "Default Options"
399
  msgstr "Установки плагіна:"
400
 
401
- #: admin.inc.php:356
402
  msgid "Do you want to set options to Default?"
403
  msgstr "Скинути налаштування плагіна?"
404
 
405
- #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
406
  msgid "Popular Posts"
407
  msgstr "Популярні записи"
408
 
409
- #: admin.inc.php:382
410
  msgid "Daily Popular Posts"
411
  msgstr "Популярні сьогодні записи"
412
 
413
- #: admin.inc.php:404
414
  msgid "Support the development"
415
  msgstr "Підтримати автора плагіна"
416
 
417
- #: admin.inc.php:412
418
  msgid "Enter amount in USD: "
419
  msgstr "Скільки ви готові пожертвувати (в USD):"
420
 
421
- #: admin.inc.php:416
422
  msgid "Send your donation to the author of"
423
  msgstr "Відправте пожертву автору"
424
 
425
- #: admin.inc.php:422
426
  msgid "Follow us on Facebook"
427
  msgstr ""
428
 
429
- #: admin.inc.php:426
430
  #, fuzzy
431
  msgid "Quick Links"
432
  msgstr "Корисні посилання"
433
 
434
- #: admin.inc.php:428
435
  #, fuzzy
436
  msgid "Top 10 plugin page"
437
  msgstr "Сторінка плагіна"
438
 
439
- #: admin.inc.php:429
440
  msgid "Other plugins"
441
  msgstr "Інші плагіни автора"
442
 
443
- #: admin.inc.php:430
444
  msgid "Ajay's blog"
445
  msgstr "Блог Ajay"
446
 
447
- #: admin.inc.php:431 top-10.php:583
448
  msgid "Support"
449
  msgstr "Підтримка (англ.)"
450
 
451
- #: admin.inc.php:432
452
  msgid "Follow @ajaydsouza on Twitter"
453
  msgstr "Йди за @ajaydsouza в Twitter"
454
 
455
- #: admin.inc.php:436
456
  msgid "Recent developments"
457
  msgstr "Останні розробки"
458
 
459
- #: admin.inc.php:459 admin.inc.php:461
460
  msgid "Top 10"
461
  msgstr "Топ 10 записів"
462
 
463
- #: admin.inc.php:575
464
  msgid "Results"
465
  msgstr "Результати"
466
 
467
- #: admin.inc.php:577 admin.inc.php:583
468
  msgid "of"
469
  msgstr "з"
470
 
471
- #: admin.inc.php:581
472
  msgid "Page"
473
  msgstr "Сторінка"
474
 
475
- #: admin.inc.php:595
476
  msgid "View Daily Popular Posts"
477
  msgstr "Подивитися всі Популярні сьогодні записи"
478
 
479
- #: admin.inc.php:599
480
  msgid "View Overall Popular Posts"
481
  msgstr "Подивитися всі Популярні записи"
482
 
483
- #: admin.inc.php:603
484
  msgid "Results per-page:"
485
  msgstr "Результатів на сторінку:"
486
 
487
- #: admin.inc.php:627
488
  msgid "Previous"
489
  msgstr "Попередня сторінка"
490
 
491
- #: admin.inc.php:645
492
  msgid "Next"
493
  msgstr "Наступна сторінка"
494
 
495
- #: admin.inc.php:668
496
  msgid "Daily Popular"
497
  msgstr "Популярні сьогодні записи"
498
 
499
- #: admin.inc.php:679
500
  msgid "Total / Today's Views"
501
  msgstr "Всього/Сьогодні"
502
 
@@ -567,23 +582,23 @@ msgstr "<h3>Популярні сьогодні записи</h3>"
567
  msgid "No top posts yet"
568
  msgstr "Скинути статистику найпопулярніших записів"
569
 
570
- #: top-10.php:560
571
  msgid "Once Weekly"
572
  msgstr ""
573
 
574
- #: top-10.php:561
575
  msgid "Once Fortnightly"
576
  msgstr ""
577
 
578
- #: top-10.php:562
579
  msgid "Once Monthly"
580
  msgstr ""
581
 
582
- #: top-10.php:582
583
  msgid "Settings"
584
  msgstr "Налаштування плагіна"
585
 
586
- #: top-10.php:584
587
  msgid "Donate"
588
  msgstr "Зробити внесок"
589
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-15 07:42-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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:69
18
+ msgid "Scheduled maintenance enabled / modified"
19
+ msgstr ""
20
+
21
+ #: admin.inc.php:73
22
+ msgid "Scheduled maintenance disabled"
23
+ msgstr ""
24
+
25
+ #: admin.inc.php:78
26
  msgid "Options saved successfully."
27
  msgstr "Установки збережені."
28
 
29
+ #: admin.inc.php:87
30
  msgid "Options set to Default."
31
  msgstr "Установки скинуті."
32
 
33
+ #: admin.inc.php:93
34
  msgid "Top 10 popular posts reset"
35
  msgstr "Скинути статистику найпопулярніших записів"
36
 
37
+ #: admin.inc.php:99
38
  msgid "Top 10 daily popular posts reset"
39
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
40
 
41
+ #: admin.inc.php:106
42
  msgid "Duplicate rows cleaned from tables"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:127
46
  msgid "General options"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:130
50
  msgid "Number of popular posts to display: "
51
  msgstr "Кількість Популярних записів у списку:"
52
 
53
+ #: admin.inc.php:133
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
57
 
58
+ #: admin.inc.php:136
59
  msgid ""
60
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
61
  "continue to be counted."
63
  "Виключити сторінки зі списку Популярних записів? Кількість переглядів для "
64
  "сторінок продовжуватиме підраховуватися"
65
 
66
+ #: admin.inc.php:139
67
  msgid "Exclude Categories: "
68
  msgstr "Виключити Категорії:"
69
 
70
+ #: admin.inc.php:157
71
  #, fuzzy
72
  msgid "Display number of views on:"
73
  msgstr "Показувати кількість переглядів запису?"
74
 
75
+ #: admin.inc.php:158
76
  msgid "Posts"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:159
80
  #, fuzzy
81
  msgid "Pages"
82
  msgstr "Сторінка"
83
 
84
+ #: admin.inc.php:162
85
  msgid "Track visits of authors on their own posts?"
86
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
87
 
88
+ #: admin.inc.php:166
89
  msgid "Display number of page views in popular lists?"
90
  msgstr ""
91
  "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
92
 
93
+ #: admin.inc.php:170
94
  msgid "Force daily posts' list to be dynamic?"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:172
98
  #, fuzzy
99
  msgid ""
100
  "This option uses JavaScript to load the post and can increase your page load "
103
  "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
104
  "і це може збільшити час завантаження сторінок"
105
 
106
+ #: admin.inc.php:175
107
  msgid "Display page views on Posts > All Posts in Admin"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:179
111
  msgid "Link to Top 10 plugin page"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:181
115
  #, fuzzy
116
  msgid ""
117
  "A link to the plugin is added as an extra list item to the list of popular "
120
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
121
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
122
 
123
+ #: admin.inc.php:188
124
  #, fuzzy
125
  msgid "Output Options"
126
  msgstr "Установки плагіна:"
127
 
128
+ #: admin.inc.php:191
129
  msgid "Format to display the count in: "
130
  msgstr ""
131
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
132
  "за день, за весь час для записів/сторінок:"
133
 
134
+ #: admin.inc.php:194
135
  #, fuzzy
136
  msgid ""
137
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
143
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
144
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
145
 
146
+ #: admin.inc.php:196
147
  msgid "Title of popular posts: "
148
  msgstr "Заголовок списку Популярних записів:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Title of daily popular posts: "
152
  msgstr "Заголовок списку Популярних сьогодні записів:"
153
 
154
+ #: admin.inc.php:202
155
  msgid "When there are no posts, what should be shown?"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:206
159
  msgid "Blank Output"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:210
163
  msgid "Display:"
164
  msgstr ""
165
 
166
+ #: admin.inc.php:214
167
  msgid "Show post excerpt in list?"
168
  msgstr "Показувати текст запису в списку?"
169
 
170
+ #: admin.inc.php:217
171
  msgid "Length of excerpt (in words): "
172
  msgstr "Довжина виведеного тексту (в словах):"
173
 
174
+ #: admin.inc.php:220
175
  msgid "Customize the output:"
176
  msgstr "Установки оформлення списку:"
177
 
178
+ #: admin.inc.php:222
179
  msgid "HTML to display before the list of posts: "
180
  msgstr "HTML-тег, який використовується перед списком:"
181
 
182
+ #: admin.inc.php:225
183
  msgid "HTML to display before each list item: "
184
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
185
 
186
+ #: admin.inc.php:228
187
  msgid "HTML to display after each list item: "
188
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
189
 
190
+ #: admin.inc.php:231
191
  msgid "HTML to display after the list of posts: "
192
  msgstr "HTML-тег, який використовується після списку:"
193
 
194
+ #: admin.inc.php:234
195
  msgid "Post thumbnail options:"
196
  msgstr "Установки превью до записів:"
197
 
198
+ #: admin.inc.php:236
199
  msgid "Location of post thumbnail:"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:240
203
  #, fuzzy
204
  msgid "Display thumbnails inline with posts, before title"
205
  msgstr "Відображати і превью, і текст"
206
 
207
+ #: admin.inc.php:244
208
  #, fuzzy
209
  msgid "Display thumbnails inline with posts, after title"
210
  msgstr "Відображати і превью, і текст"
211
 
212
+ #: admin.inc.php:248
213
  msgid "Display only thumbnails, no text"
214
  msgstr "Показувати тільки превью, без тексту"
215
 
216
+ #: admin.inc.php:252
217
  msgid "Do not display thumbnails, only text."
218
  msgstr "Показувати лише текст, без превью"
219
 
220
+ #: admin.inc.php:256
221
  msgid "Maximum width of the thumbnail: "
222
  msgstr ""
223
 
224
+ #: admin.inc.php:259
225
  msgid "Maximum height of the thumbnail: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:262
229
  msgid "Use timthumb to generate thumbnails? "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:263
233
  msgid ""
234
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
235
  "\">timthumb</a> will be used to generate thumbnails"
236
  msgstr ""
237
 
238
+ #: admin.inc.php:265
239
  #, fuzzy
240
  msgid "Post thumbnail meta field name: "
241
  msgstr "Установки превью до записів:"
242
 
243
+ #: admin.inc.php:266
244
  msgid ""
245
  "The value of this field should contain the image source and is set in the "
246
  "<em>Add New Post</em> screen"
247
  msgstr ""
248
 
249
+ #: admin.inc.php:268
250
  #, fuzzy
251
  msgid ""
252
  "If the postmeta is not set, then should the plugin extract the first image "
256
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
257
  "так як буде створюватися зменшена копія зображення"
258
 
259
+ #: admin.inc.php:269
260
  #, fuzzy
261
  msgid ""
262
+ "This could slow down the loading of your page if the first image in the "
263
  "related posts is large in file-size"
264
  msgstr ""
265
  "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше "
266
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
267
  "так як буде створюватися зменшена копія зображення"
268
 
269
+ #: admin.inc.php:271
270
  msgid "Use default thumbnail? "
271
  msgstr ""
272
 
273
+ #: admin.inc.php:272
274
  msgid ""
275
  "If checked, when no thumbnail is found, show a default one from the URL "
276
  "below. If not checked and no thumbnail is found, no image will be shown."
277
  msgstr ""
278
 
279
+ #: admin.inc.php:274
280
  msgid "Default thumbnail: "
281
  msgstr ""
282
 
283
+ #: admin.inc.php:275
284
  #, fuzzy
285
  msgid ""
286
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
291
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
292
  "замовчунням:"
293
 
294
+ #: admin.inc.php:281
295
  msgid "Custom Styles"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:284
299
  msgid "Custom CSS to add to header:"
300
  msgstr ""
301
 
302
+ #: admin.inc.php:287
303
  msgid ""
304
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
305
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
306
  "available CSS classes to style."
307
  msgstr ""
308
 
 
 
 
 
309
  #: admin.inc.php:292
310
+ msgid "Maintenance"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:296
314
  msgid ""
315
  "Over time the Daily Top 10 database grows in size, which reduces the "
316
  "performance of the plugin. Cleaning the database at regular intervals could "
317
+ "improve performance, especially on high traffic blogs."
318
  msgstr ""
319
 
320
  #: admin.inc.php:297
321
+ msgid ""
322
+ "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
323
+ "everytime the job is rescheduled (i.e. you change the settings below). This "
324
+ "causes the daily posts table to reset."
325
  msgstr ""
326
 
327
  #: admin.inc.php:300
328
+ msgid "Enable scheduled maintenance of daily tables:"
329
+ msgstr ""
330
+
331
+ #: admin.inc.php:305
332
+ msgid "Time to run maintenance"
333
+ msgstr ""
334
+
335
+ #: admin.inc.php:308
336
  msgid "How often should the maintenance be run:"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:312
340
  msgid "Daily"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:316
344
  msgid "Weekly"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:320
348
  msgid "Fortnightly"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:324
352
  msgid "Monthly"
353
  msgstr ""
354
 
355
+ #: admin.inc.php:333
356
  msgid "The cron job has been scheduled. Maintenance will run "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:338
360
  msgid "The cron job is missing. Please resave this page to add the job"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:343
364
  msgid "Maintenance is turned off"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:351
368
  msgid "Reset count"
369
  msgstr "Скинути статистику"
370
 
371
+ #: admin.inc.php:354
372
  msgid ""
373
  "This cannot be reversed. Make sure that your database has been backed up "
374
  "before proceeding"
376
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
377
  "переконайтесь, що у вас є копія вашої бази даних!"
378
 
379
+ #: admin.inc.php:357
380
  #, fuzzy
381
  msgid "Reset Popular Posts"
382
  msgstr "Популярні записи"
383
 
384
+ #: admin.inc.php:357
385
  msgid "Are you sure you want to reset the popular posts?"
386
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
387
 
388
+ #: admin.inc.php:358
389
  #, fuzzy
390
  msgid "Reset Daily Popular Posts"
391
  msgstr "Популярні сьогодні записи"
392
 
393
+ #: admin.inc.php:358
394
  msgid "Are you sure you want to reset the daily popular posts?"
395
  msgstr ""
396
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
397
 
398
+ #: admin.inc.php:359
399
  msgid "Clear duplicates"
400
  msgstr ""
401
 
402
+ #: admin.inc.php:359
403
  msgid "This will delete the duplicate entries in the tables. Proceed?"
404
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
405
 
406
+ #: admin.inc.php:363
407
  #, fuzzy
408
  msgid "Save Options"
409
  msgstr "Установки плагіна:"
410
 
411
+ #: admin.inc.php:364
412
  #, fuzzy
413
  msgid "Default Options"
414
  msgstr "Установки плагіна:"
415
 
416
+ #: admin.inc.php:364
417
  msgid "Do you want to set options to Default?"
418
  msgstr "Скинути налаштування плагіна?"
419
 
420
+ #: admin.inc.php:390 admin.inc.php:469 admin.inc.php:675 top-10.php:258
421
  msgid "Popular Posts"
422
  msgstr "Популярні записи"
423
 
424
+ #: admin.inc.php:390
425
  msgid "Daily Popular Posts"
426
  msgstr "Популярні сьогодні записи"
427
 
428
+ #: admin.inc.php:412
429
  msgid "Support the development"
430
  msgstr "Підтримати автора плагіна"
431
 
432
+ #: admin.inc.php:420
433
  msgid "Enter amount in USD: "
434
  msgstr "Скільки ви готові пожертвувати (в USD):"
435
 
436
+ #: admin.inc.php:424
437
  msgid "Send your donation to the author of"
438
  msgstr "Відправте пожертву автору"
439
 
440
+ #: admin.inc.php:430
441
  msgid "Follow us on Facebook"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:434
445
  #, fuzzy
446
  msgid "Quick Links"
447
  msgstr "Корисні посилання"
448
 
449
+ #: admin.inc.php:436
450
  #, fuzzy
451
  msgid "Top 10 plugin page"
452
  msgstr "Сторінка плагіна"
453
 
454
+ #: admin.inc.php:437
455
  msgid "Other plugins"
456
  msgstr "Інші плагіни автора"
457
 
458
+ #: admin.inc.php:438
459
  msgid "Ajay's blog"
460
  msgstr "Блог Ajay"
461
 
462
+ #: admin.inc.php:439 top-10.php:588
463
  msgid "Support"
464
  msgstr "Підтримка (англ.)"
465
 
466
+ #: admin.inc.php:440
467
  msgid "Follow @ajaydsouza on Twitter"
468
  msgstr "Йди за @ajaydsouza в Twitter"
469
 
470
+ #: admin.inc.php:444
471
  msgid "Recent developments"
472
  msgstr "Останні розробки"
473
 
474
+ #: admin.inc.php:467 admin.inc.php:469
475
  msgid "Top 10"
476
  msgstr "Топ 10 записів"
477
 
478
+ #: admin.inc.php:583
479
  msgid "Results"
480
  msgstr "Результати"
481
 
482
+ #: admin.inc.php:585 admin.inc.php:591
483
  msgid "of"
484
  msgstr "з"
485
 
486
+ #: admin.inc.php:589
487
  msgid "Page"
488
  msgstr "Сторінка"
489
 
490
+ #: admin.inc.php:603
491
  msgid "View Daily Popular Posts"
492
  msgstr "Подивитися всі Популярні сьогодні записи"
493
 
494
+ #: admin.inc.php:607
495
  msgid "View Overall Popular Posts"
496
  msgstr "Подивитися всі Популярні записи"
497
 
498
+ #: admin.inc.php:611
499
  msgid "Results per-page:"
500
  msgstr "Результатів на сторінку:"
501
 
502
+ #: admin.inc.php:635
503
  msgid "Previous"
504
  msgstr "Попередня сторінка"
505
 
506
+ #: admin.inc.php:653
507
  msgid "Next"
508
  msgstr "Наступна сторінка"
509
 
510
+ #: admin.inc.php:676
511
  msgid "Daily Popular"
512
  msgstr "Популярні сьогодні записи"
513
 
514
+ #: admin.inc.php:687
515
  msgid "Total / Today's Views"
516
  msgstr "Всього/Сьогодні"
517
 
582
  msgid "No top posts yet"
583
  msgstr "Скинути статистику найпопулярніших записів"
584
 
585
+ #: top-10.php:565
586
  msgid "Once Weekly"
587
  msgstr ""
588
 
589
+ #: top-10.php:566
590
  msgid "Once Fortnightly"
591
  msgstr ""
592
 
593
+ #: top-10.php:567
594
  msgid "Once Monthly"
595
  msgstr ""
596
 
597
+ #: top-10.php:587
598
  msgid "Settings"
599
  msgstr "Налаштування плагіна"
600
 
601
+ #: top-10.php:589
602
  msgid "Donate"
603
  msgstr "Зробити внесок"
604
 
readme.txt CHANGED
@@ -45,12 +45,18 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
45
 
46
  == Upgrade Notice ==
47
 
48
- = 1.9 =
49
- * Timthumb support; performance tweaks; cleaner settings page; new dashboard widget; new default thumbnail; custom CSS; scheduled maintenance and more...
50
-
 
51
 
52
  == Changelog ==
53
 
 
 
 
 
 
54
  = 1.9 =
55
  * Added: Option to use timthumb to resize thumbnails
56
  * Added: New variable **%overallcount%** that will display the total pageviews on the blog across all posts
@@ -206,10 +212,6 @@ The plugin selects thumbnails in the following order:
206
 
207
  The plugin uses <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> to generate thumbnails by default. Depending on the configuration of your webhost you might run into certain problems. Please check out <a href="http://www.binarymoon.co.uk/2010/11/timthumb-hints-tips/">the timthumb troubleshooting page</a> regarding permission settings for the folder and files.
208
 
209
- = Can this plugin replace Google Analytics? =
210
-
211
- Never. This plugin is designed to only track the number of pageviews on your blog posts and display the same. It cannot replace Google Analytics or any other full fledged statistics application.
212
-
213
  = Manual install =
214
 
215
  You may choose to not display the post count automatically. If you do so, then in order to display the post count, you will need to add `<?php if(function_exists('echo_tptn_post_count')) echo_tptn_post_count(); ?>`.
@@ -220,6 +222,15 @@ In order to display the most popular posts, you will need to add `<?php if(funct
220
 
221
  You can also use the WordPress Widgets to display the popular posts in your sidebar / other widgetized areas of your theme.
222
 
 
 
 
 
 
 
 
 
 
223
  == Wishlist ==
224
 
225
  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.
45
 
46
  == Upgrade Notice ==
47
 
48
+ = 1.9.1 =
49
+ * Fixed: Plugin will now only reschedule the cron job if there any settings are changed related to it.
50
+ * Modified: If timthumb is disabled, WordPress post thumbnails are no longer resized using timthumb.
51
+ * Modified: Extra check for post featured thumbnails to ensure that the src is not missed.
52
 
53
  == Changelog ==
54
 
55
+ = 1.9.1 =
56
+ * Fixed: Plugin will now only reschedule the cron job if there any settings are changed related to it
57
+ * Modified: If timthumb is disabled, WordPress post thumbnails are no longer resized using timthumb
58
+ * Modified: Extra check for post featured thumbnails to ensure that the src is not missed
59
+
60
  = 1.9 =
61
  * Added: Option to use timthumb to resize thumbnails
62
  * Added: New variable **%overallcount%** that will display the total pageviews on the blog across all posts
212
 
213
  The plugin uses <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> to generate thumbnails by default. Depending on the configuration of your webhost you might run into certain problems. Please check out <a href="http://www.binarymoon.co.uk/2010/11/timthumb-hints-tips/">the timthumb troubleshooting page</a> regarding permission settings for the folder and files.
214
 
 
 
 
 
215
  = Manual install =
216
 
217
  You may choose to not display the post count automatically. If you do so, then in order to display the post count, you will need to add `<?php if(function_exists('echo_tptn_post_count')) echo_tptn_post_count(); ?>`.
222
 
223
  You can also use the WordPress Widgets to display the popular posts in your sidebar / other widgetized areas of your theme.
224
 
225
+ = Can this plugin replace Google Analytics? =
226
+
227
+ Never. This plugin is designed to only track the number of pageviews on your blog posts and display the same. It cannot replace Google Analytics or any other full fledged statistics application.
228
+
229
+ = How does the scheduled maintenance work maintenance work? =
230
+
231
+ When you enabled the scheduled maintenance, Top 10 will create a cron job that will run at a predefined interval and truncate the `wp_top_ten_daily` table.
232
+ *Note: If you enable this option, WordPress will execute this job when it is scheduled the first time*
233
+
234
  == Wishlist ==
235
 
236
  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.
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.9
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
@@ -518,12 +518,17 @@ function tptn_trunc_count($daily = false) {
518
  }
519
 
520
  // Filter function to resize post thumbnail. Filters out tp10_postimage
521
- function ald_scale_thumbs($postimage, $thumb_width, $thumb_height) {
522
  global $ald_url;
523
- $new_pi = $ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
 
 
 
 
 
524
  return $new_pi;
525
  }
526
- add_filter('tp10_postimage', 'ald_scale_thumbs', 10, 3);
527
 
528
  // Function to truncate daily run
529
  add_action('ald_tptn_hook', 'ald_tptn');
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9.1
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
518
  }
519
 
520
  // Filter function to resize post thumbnail. Filters out tp10_postimage
521
+ function ald_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb) {
522
  global $ald_url;
523
+
524
+ if ($thumb_timthumb) {
525
+ $new_pi = $ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
526
+ } else {
527
+ $new_pi = $postimage;
528
+ }
529
  return $new_pi;
530
  }
531
+ add_filter('tp10_postimage', 'ald_scale_thumbs', 10, 4);
532
 
533
  // Function to truncate daily run
534
  add_action('ald_tptn_hook', 'ald_tptn');