Top 10 – Popular posts plugin for WordPress - Version 1.9.2

Version Description

  • New menu structure, new option to exclude tracking of admin visits, performance improvements, bug fixes

=

Download this release

Release Info

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

Code changes from version 1.9.1 to 1.9.2

admin.inc.php CHANGED
@@ -13,62 +13,64 @@ function tptn_options() {
13
 
14
  $tptn_settings = tptn_read_options();
15
 
16
- if($_POST['tptn_save']){
17
- $tptn_settings[title] = ($_POST['title']);
18
- $tptn_settings[title_daily] = ($_POST['title_daily']);
19
- $tptn_settings[daily_range] = intval($_POST['daily_range']);
20
- $tptn_settings[limit] = intval($_POST['limit']);
21
- $tptn_settings[count_disp_form] = ($_POST['count_disp_form']);
22
- $tptn_settings[add_to_content] = (($_POST['add_to_content']) ? true : false);
23
- $tptn_settings[exclude_pages] = (($_POST['exclude_pages']) ? true : false);
24
- $tptn_settings[count_on_pages] = (($_POST['count_on_pages']) ? true : false);
25
- $tptn_settings[track_authors] = (($_POST['track_authors']) ? true : false);
26
- $tptn_settings[pv_in_admin] = (($_POST['pv_in_admin']) ? true : false);
27
- $tptn_settings[disp_list_count] = (($_POST['disp_list_count']) ? true : false);
28
- $tptn_settings[d_use_js] = (($_POST['d_use_js']) ? true : false);
29
- $tptn_settings[show_credit] = (($_POST['show_credit']) ? true : false);
30
- $tptn_settings[blank_output] = (($_POST['blank_output'] == 'blank' ) ? true : false);
31
- $tptn_settings[blank_output_text] = $_POST['blank_output_text'];
32
-
33
- $tptn_settings[post_thumb_op] = $_POST['post_thumb_op'];
34
- $tptn_settings[before_list] = $_POST['before_list'];
35
- $tptn_settings[after_list] = $_POST['after_list'];
36
- $tptn_settings[before_list_item] = $_POST['before_list_item'];
37
- $tptn_settings[after_list_item] = $_POST['after_list_item'];
38
- $tptn_settings[thumb_meta] = $_POST['thumb_meta'];
39
- $tptn_settings[thumb_default] = $_POST['thumb_default'];
40
- $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
41
- $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
42
- $tptn_settings[thumb_default_show] = (($_POST['thumb_default_show']) ? true : false);
43
- $tptn_settings[thumb_timthumb] = (($_POST['thumb_timthumb']) ? true : false);
44
- $tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
45
- $tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
46
- $tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
47
- $tptn_settings[custom_CSS] = $_POST['custom_CSS'];
 
 
48
 
49
  // Exclude categories
50
- $tptn_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
51
 
52
- $exclude_categories_slugs = explode(", ",$tptn_settings[exclude_cat_slugs]);
53
 
54
  $exclude_categories = '';
55
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
56
  $catObj = get_category_by_slug($exclude_categories_slug);
57
- $exclude_categories .= $catObj->term_id . ',';
58
  }
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
  }
@@ -79,7 +81,7 @@ function tptn_options() {
79
  echo $str;
80
  }
81
 
82
- if ($_POST['tptn_default']){
83
  delete_option('ald_tptn_settings');
84
  $tptn_settings = tptn_default_options();
85
  update_option('ald_tptn_settings', $tptn_settings);
@@ -88,19 +90,19 @@ function tptn_options() {
88
  echo $str;
89
  }
90
 
91
- if ($_POST['tptn_trunc_all']){
92
  tptn_trunc_count(false);
93
  $str = '<div id="message" class="updated fade"><p>'. __('Top 10 popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
94
  echo $str;
95
  }
96
 
97
- if ($_POST['tptn_trunc_daily']){
98
  tptn_trunc_count(true);
99
  $str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
100
  echo $str;
101
  }
102
 
103
- if ($_POST['tptn_clean_duplicates']){
104
  tptn_clean_duplicates(true);
105
  tptn_clean_duplicates(false);
106
  $str = '<div id="message" class="updated fade"><p>'. __('Duplicate rows cleaned from tables',TPTN_LOCAL_NAME) .'</p></div>';
@@ -128,13 +130,13 @@ function tptn_options() {
128
  </h3>
129
  <table class="form-table">
130
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?></label></th>
131
- <td><input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($tptn_settings[limit])); ?>"></td>
132
  </tr>
133
  <tr style="vertical-align: top;"><th scope="row"><label for="daily_range"><?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?></label></th>
134
- <td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings[daily_range]); ?>"></td>
135
  </tr>
136
- <tr style="vertical-align: top;"><th scope="row"><label for="exclude_pages"><?php _e('Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted.',TPTN_LOCAL_NAME); ?></label></th>
137
- <td><input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($tptn_settings[exclude_pages]) echo 'checked="checked"' ?> /></td>
138
  </tr>
139
  <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
140
  <td>
@@ -150,34 +152,40 @@ function tptn_options() {
150
  </div>
151
  </td></tr>
152
  </table>
153
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($tptn_settings[exclude_cat_slugs])); ?></textarea>
 
154
  </div>
155
  </td>
156
  </tr>
157
  <tr style="vertical-align: top;"><th scope="row"><?php _e('Display number of views on:',TPTN_LOCAL_NAME); ?></th>
158
- <td><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings[add_to_content]) echo 'checked="checked"' ?> /> <?php _e('Posts',TPTN_LOCAL_NAME); ?><br />
159
- <input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ($tptn_settings[count_on_pages]) echo 'checked="checked"' ?> /> <?php _e('Pages',TPTN_LOCAL_NAME); ?>
160
  </td>
161
  </tr>
162
- <tr style="vertical-align: top;"><th scope="row"><label for="track_authors"><?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?></label></th>
163
- <td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings[track_authors]) echo 'checked="checked"' ?> /></td>
 
164
  </tr>
165
 
166
- <tr style="vertical-align: top;"><th scope="row"><label for="disp_list_count"><?php _e('Display number of page views in popular lists?',TPTN_LOCAL_NAME); ?></label></th>
167
- <td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings[disp_list_count]) echo 'checked="checked"' ?> /></td>
 
 
 
 
 
168
  </tr>
169
 
170
- <tr style="vertical-align: top;"><th scope="row"><label for="d_use_js"><?php _e('Force daily posts\' list to be dynamic?',TPTN_LOCAL_NAME); ?></label></th>
171
- <td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings[d_use_js]) echo 'checked="checked"' ?> /><br />
172
- <?php _e('This option uses JavaScript to load the post and can increase your page load time',TPTN_LOCAL_NAME); ?></td>
173
  </tr>
174
 
175
  <tr style="vertical-align: top;"><th scope="row"><label for="pv_in_admin"><?php _e('Display page views on Posts > All Posts in Admin',TPTN_LOCAL_NAME); ?></label></th>
176
- <td><input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings[pv_in_admin]) echo 'checked="checked"' ?> /></td>
177
  </tr>
178
 
179
  <tr style="vertical-align: top;"><th scope="row"><label for="show_credit"><?php _e('Link to Top 10 plugin page',TPTN_LOCAL_NAME); ?></label></th>
180
- <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings[show_credit]) echo 'checked="checked"' ?> /><br />
181
  <?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></td>
182
  </tr>
183
 
@@ -189,15 +197,15 @@ function tptn_options() {
189
  </h3>
190
  <table class="form-table">
191
  <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Format to display the count in: ',TPTN_LOCAL_NAME); ?></label></th>
192
- <td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings[count_disp_form])); ?></textarea>
193
  <br />
194
  <?php _e('Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?></td>
195
  </tr>
196
  <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
197
- <td><input type="textbox" name="title" id="title" value="<?php echo attribute_escape(stripslashes($tptn_settings[title])); ?>" style="width:250px" /></td>
198
  </tr>
199
  <tr style="vertical-align: top;"><th scope="row"><label for="title_daily"><?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
200
- <td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo attribute_escape(stripslashes($tptn_settings[title_daily])); ?>" style="width:250px" /></td>
201
  </tr>
202
  <tr style="vertical-align: top;"><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',TPTN_LOCAL_NAME); ?></label></th>
203
  <td>
@@ -208,28 +216,31 @@ function tptn_options() {
208
  <label>
209
  <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$tptn_settings['blank_output']) echo 'checked="checked"' ?> />
210
  <?php _e('Display:',TPTN_LOCAL_NAME); ?></label>
211
- <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo attribute_escape(stripslashes($tptn_settings[blank_output_text])); ?>" style="width:250px" />
212
  </td>
213
  </tr>
214
  <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></label></th>
215
- <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings[show_excerpt]) echo 'checked="checked"' ?> /></td>
216
  </tr>
217
  <tr style="vertical-align: top;"><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
218
- <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings[excerpt_length]); ?>" /></td>
 
 
 
219
  </tr>
220
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></th>
221
  </tr>
222
  <tr style="vertical-align: top;"><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
223
- <td><input type="textbox" name="before_list" id="before_list" value="<?php echo attribute_escape(stripslashes($tptn_settings[before_list])); ?>" style="width:250px" /></td>
224
  </tr>
225
  <tr style="vertical-align: top;"><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?></label></th>
226
- <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo attribute_escape(stripslashes($tptn_settings[before_list_item])); ?>" style="width:250px" /></td>
227
  </tr>
228
  <tr style="vertical-align: top;"><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?></label></th>
229
- <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo attribute_escape(stripslashes($tptn_settings[after_list_item])); ?>" style="width:250px" /></td>
230
  </tr>
231
  <tr style="vertical-align: top;"><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
232
- <td><input type="textbox" name="after_list" id="after_list" value="<?php echo attribute_escape(stripslashes($tptn_settings[after_list])); ?>" style="width:250px" /></td>
233
  </tr>
234
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
235
  </tr>
@@ -254,25 +265,25 @@ function tptn_options() {
254
  </td>
255
  </tr>
256
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
257
- <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_width])); ?>" style="width:30px" />px</td>
258
  </tr>
259
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
260
- <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_height])); ?>" style="width:30px" />px</td>
261
  </tr>
262
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
263
- <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings[thumb_timthumb]) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></td>
264
  </tr>
265
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
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>
273
  </tr>
274
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
275
- <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_default])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></td>
276
  </tr>
277
  </table>
278
  </div>
@@ -283,7 +294,7 @@ function tptn_options() {
283
  <table class="form-table">
284
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
285
  </tr>
286
- <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($tptn_settings[custom_CSS]); ?></textarea>
287
  <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></em></td></tr>
288
  </table>
289
  </div>
@@ -298,12 +309,12 @@ function tptn_options() {
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>
306
- <td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo attribute_escape(stripslashes($tptn_settings[cron_hour])); ?>" style="width:10px" /> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo attribute_escape(stripslashes($tptn_settings[cron_min])); ?>" style="width:10px" /> hrs</td>
307
  </tr>
308
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
309
  <td>
@@ -327,7 +338,7 @@ function tptn_options() {
327
  </tr>
328
  <tr style="vertical-align: top;"><td scope="row" colspan="2">
329
  <?php
330
- if ($tptn_settings[cron_on]) {
331
  if (wp_next_scheduled('ald_tptn_hook')) {
332
  echo '<span style="color:#0c0">';
333
  _e('The cron job has been scheduled. Maintenance will run ',TPTN_LOCAL_NAME);
@@ -361,7 +372,7 @@ function tptn_options() {
361
  </div>
362
  <p>
363
  <input type="submit" name="tptn_save" id="tptn_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>" style="border:#0C0 1px solid" />
364
- <input name="tptn_default" type="submit" id="tptn_default" value="<?php _e('Default Options',TPTN_LOCAL_NAME); ?>" style="border:#F00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',TPTN_LOCAL_NAME); ?>')) return false;" />
365
  </p>
366
  </fieldset>
367
  </form>
@@ -375,11 +386,16 @@ function tptn_options() {
375
 
376
  }
377
 
378
- function tptn_manage() {
379
- $paged = intval($_GET['paged']);
380
- $limit = intval($_GET['limit']);
381
- $exclude_pages = intval($_GET['exclude_pages']);
382
- $daily = $_GET['daily'];
 
 
 
 
 
383
 
384
  ?>
385
 
@@ -427,8 +443,10 @@ function tptn_admin_side() {
427
  </div>
428
  </div>
429
  <div class="side-widget">
430
- <span class="title"><?php _e('Follow us on Facebook',TPTN_LOCAL_NAME) ?></span>
431
  <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
 
 
432
  </div>
433
  <div class="side-widget">
434
  <span class="title"><?php _e('Quick Links',TPTN_LOCAL_NAME) ?></span>
@@ -442,7 +460,7 @@ function tptn_admin_side() {
442
  </div>
443
  <div class="side-widget">
444
  <span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
445
- <?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
446
  ?>
447
  </div>
448
  <?php
@@ -450,24 +468,18 @@ function tptn_admin_side() {
450
 
451
  /* Add menu item in WP-Admin */
452
  function tptn_adminmenu() {
453
- if (function_exists('current_user_can')) {
454
- // In WordPress 2.x
455
- if (current_user_can('manage_options')) {
456
- $tptn_is_admin = true;
457
- }
458
- } else {
459
- // In WordPress 1.x
460
- global $user_ID;
461
- if (user_can_edit_user($user_ID, 0)) {
462
- $tptn_is_admin = true;
463
- }
464
- }
465
 
466
- if ((function_exists('add_options_page'))&&($tptn_is_admin)) {
467
- $plugin_page = add_options_page(__("Top 10", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_options', 'tptn_options');
 
468
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
469
- $plugin_page = add_posts_page(__("Popular Posts", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_manage', 'tptn_manage');
 
 
 
 
470
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
 
471
  }
472
  }
473
  add_action('admin_menu', 'tptn_adminmenu');
@@ -522,7 +534,7 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
522
  $sql .= "AND post_status = 'publish' ";
523
  $sql .= "ORDER BY sumCount DESC";
524
  } else {
525
- $daily_range = $tptn_settings[daily_range]-1;
526
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
527
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
528
  $current_date = date ( 'Y-m-j' , $current_date );
@@ -599,25 +611,35 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
599
  <td align="left">';
600
 
601
  if(($daily && $widget) || (!$daily && !$widget)) {
602
- $output .= '<a href="./edit.php?page=tptn_manage&daily=1">';
603
  $output .= __('View Daily Popular Posts',TPTN_LOCAL_NAME);
604
  $output .= '</a></td>';
 
 
 
 
 
 
 
 
 
605
  } else {
606
- $output .= '<a href="./edit.php?page=tptn_manage&daily=0">';
607
  $output .= __('View Overall Popular Posts',TPTN_LOCAL_NAME);
608
  $output .= '</a></td>';
 
 
 
 
 
 
 
 
 
609
  }
610
- $output .= '<td align="right">';
611
- $output .= __('Results per-page:',TPTN_LOCAL_NAME);
612
- $output .= ' <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=10">10</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=20">20</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=50">50</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=100">100</a> ';
613
- $output .= ' </td>
614
- </tr>
615
- <tr>
616
- <td colspan="2" align="right"><hr /></td>
617
- </tr>
618
- </table>';
619
-
620
 
 
 
621
  $output .= '<ul>';
622
  if ($results) {
623
  foreach ($results as $result) {
@@ -631,7 +653,7 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
631
  $output .= '<p align="center">';
632
  if ($page != 0) { // Don't show back link if current page is first page.
633
  $back_page = $page - $limit;
634
- $output .= "<a href=\"./edit.php?page=tptn_manage&paged=$back_page&daily=$daily&limit=$limit\">&laquo; ";
635
  $output .= __('Previous',TPTN_LOCAL_NAME);
636
  $output .= "</a>\n";
637
  }
@@ -643,13 +665,13 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
643
  $output .= "<b>$i</b>\n";
644
  } // If current page don't give link, just text.
645
  else{
646
- $output .= "<a href=\"./edit.php?page=tptn_manage&paged=$ppage&daily=$daily&limit=$limit\">$i</a> \n";
647
  }
648
  }
649
 
650
  if (!((($page+$limit) / $limit) >= $pages) && $pages != 1) { // If last page don't give next link.
651
  $next_page = $page + $limit;
652
- $output .= "<a href=\"./edit.php?page=tptn_manage&paged=$next_page&daily=$daily&limit=$limit\">";
653
  $output .= __('Next',TPTN_LOCAL_NAME);
654
  $output .= " &raquo;</a>";
655
  }
@@ -684,14 +706,14 @@ add_action('wp_dashboard_setup', 'tptn_pop_dashboard_setup');
684
  function tptn_column($cols) {
685
  $tptn_settings = tptn_read_options();
686
 
687
- if ($tptn_settings[pv_in_admin]) $cols['tptn'] = __('Total / Today\'s Views',TPTN_LOCAL_NAME);
688
  return $cols;
689
  }
690
 
691
  // Display page views for each column
692
  function tptn_value($column_name, $id) {
693
  $tptn_settings = tptn_read_options();
694
- if (($column_name == 'tptn')&&($tptn_settings[pv_in_admin])) {
695
  global $wpdb;
696
 
697
  $table_name = $wpdb->prefix . "top_ten";
@@ -704,7 +726,7 @@ function tptn_value($column_name, $id) {
704
  // Now process daily count
705
  $table_name = $wpdb->prefix . "top_ten_daily";
706
 
707
- $daily_range = $tptn_settings[daily_range]-1;
708
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
709
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
710
  $current_date = date ( 'Y-m-j' , $current_date );
13
 
14
  $tptn_settings = tptn_read_options();
15
 
16
+ if((isset($_POST['tptn_save']))&&($_POST['tptn_save'])) {
17
+ $tptn_settings['title'] = ($_POST['title']);
18
+ $tptn_settings['title_daily'] = ($_POST['title_daily']);
19
+ $tptn_settings['daily_range'] = intval($_POST['daily_range']);
20
+ $tptn_settings['limit'] = intval($_POST['limit']);
21
+ $tptn_settings['count_disp_form'] = ($_POST['count_disp_form']);
22
+ $tptn_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
23
+ $tptn_settings['exclude_pages'] = (isset($_POST['exclude_pages']) ? true : false);
24
+ $tptn_settings['count_on_pages'] = (isset($_POST['count_on_pages']) ? true : false);
25
+ $tptn_settings['track_authors'] = (isset($_POST['track_authors']) ? true : false);
26
+ $tptn_settings['track_admins'] = (isset($_POST['track_admins']) ? true : false);
27
+ $tptn_settings['pv_in_admin'] = (isset($_POST['pv_in_admin']) ? true : false);
28
+ $tptn_settings['disp_list_count'] = (isset($_POST['disp_list_count']) ? true : false);
29
+ $tptn_settings['d_use_js'] = (isset($_POST['d_use_js']) ? true : false);
30
+ $tptn_settings['dynamic_post_count'] = (isset($_POST['dynamic_post_count']) ? true : false);
31
+ $tptn_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
32
+ $tptn_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
33
+ $tptn_settings['blank_output_text'] = $_POST['blank_output_text'];
34
+
35
+ $tptn_settings['post_thumb_op'] = $_POST['post_thumb_op'];
36
+ $tptn_settings['before_list'] = $_POST['before_list'];
37
+ $tptn_settings['after_list'] = $_POST['after_list'];
38
+ $tptn_settings['before_list_item'] = $_POST['before_list_item'];
39
+ $tptn_settings['after_list_item'] = $_POST['after_list_item'];
40
+ $tptn_settings['thumb_meta'] = $_POST['thumb_meta'];
41
+ $tptn_settings['thumb_default'] = $_POST['thumb_default'];
42
+ $tptn_settings['thumb_height'] = intval($_POST['thumb_height']);
43
+ $tptn_settings['thumb_width'] = intval($_POST['thumb_width']);
44
+ $tptn_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
45
+ $tptn_settings['thumb_timthumb'] = (isset($_POST['thumb_timthumb']) ? true : false);
46
+ $tptn_settings['scan_images'] = (isset($_POST['scan_images']) ? true : false);
47
+ $tptn_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
48
+ $tptn_settings['excerpt_length'] = intval($_POST['excerpt_length']);
49
+ $tptn_settings['custom_CSS'] = $_POST['custom_CSS'];
50
 
51
  // Exclude categories
52
+ $tptn_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
53
 
54
+ $exclude_categories_slugs = explode(", ",$tptn_settings['exclude_cat_slugs']);
55
 
56
  $exclude_categories = '';
57
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
58
  $catObj = get_category_by_slug($exclude_categories_slug);
59
+ if (isset($catObj->term_id)) $exclude_categories .= $catObj->term_id . ',';
60
  }
61
+ $tptn_settings['exclude_categories'] = substr($exclude_categories, 0, -2);
62
 
63
  // Cron maintenance functions
64
+ 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']) ) ) {
65
+ $tptn_settings['cron_on'] = true;
66
+ $tptn_settings['cron_hour'] = intval($_POST['cron_hour']);
67
+ $tptn_settings['cron_min'] = intval($_POST['cron_min']);
68
+ $tptn_settings['cron_recurrence'] = $_POST['cron_recurrence'];
69
 
70
+ tptn_enable_run($tptn_settings['cron_hour'], $tptn_settings['cron_min'], $tptn_settings['cron_recurrence']);
71
  echo '<div id="message" class="updated fade"><p>' . __('Scheduled maintenance enabled / modified',TPTN_LOCAL_NAME) .'</p></div>';
72
  } elseif ($_POST['cron_on']==false) {
73
+ $tptn_settings['cron_on'] = false;
74
  tptn_disable_run();
75
  echo '<div id="message" class="updated fade"><p>'. __('Scheduled maintenance disabled',TPTN_LOCAL_NAME) .'</p></div>';
76
  }
81
  echo $str;
82
  }
83
 
84
+ if((isset($_POST['tptn_default']))&&($_POST['tptn_default'])) {
85
  delete_option('ald_tptn_settings');
86
  $tptn_settings = tptn_default_options();
87
  update_option('ald_tptn_settings', $tptn_settings);
90
  echo $str;
91
  }
92
 
93
+ if((isset($_POST['tptn_trunc_all']))&&($_POST['tptn_trunc_all'])) {
94
  tptn_trunc_count(false);
95
  $str = '<div id="message" class="updated fade"><p>'. __('Top 10 popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
96
  echo $str;
97
  }
98
 
99
+ if((isset($_POST['tptn_trunc_daily']))&&($_POST['tptn_trunc_daily'])) {
100
  tptn_trunc_count(true);
101
  $str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
102
  echo $str;
103
  }
104
 
105
+ if((isset($_POST['tptn_clean_duplicates']))&&($_POST['tptn_clean_duplicates'])) {
106
  tptn_clean_duplicates(true);
107
  tptn_clean_duplicates(false);
108
  $str = '<div id="message" class="updated fade"><p>'. __('Duplicate rows cleaned from tables',TPTN_LOCAL_NAME) .'</p></div>';
130
  </h3>
131
  <table class="form-table">
132
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?></label></th>
133
+ <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($tptn_settings['limit'])); ?>"></td>
134
  </tr>
135
  <tr style="vertical-align: top;"><th scope="row"><label for="daily_range"><?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?></label></th>
136
+ <td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings['daily_range']); ?>"></td>
137
  </tr>
138
+ <tr style="vertical-align: top;"><th scope="row"><label for="exclude_pages"><?php _e('Exclude Pages?',TPTN_LOCAL_NAME); ?></label></th>
139
+ <td><input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($tptn_settings['exclude_pages']) echo 'checked="checked"' ?> /><br /><?php _e('Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted.',TPTN_LOCAL_NAME); ?></td>
140
  </tr>
141
  <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
142
  <td>
152
  </div>
153
  </td></tr>
154
  </table>
155
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($tptn_settings['exclude_cat_slugs'])); ?></textarea>
156
+ <br /><?php _e('Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options',TPTN_LOCAL_NAME); ?>
157
  </div>
158
  </td>
159
  </tr>
160
  <tr style="vertical-align: top;"><th scope="row"><?php _e('Display number of views on:',TPTN_LOCAL_NAME); ?></th>
161
+ <td><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings['add_to_content']) echo 'checked="checked"' ?> /> <?php _e('Posts',TPTN_LOCAL_NAME); ?><br />
162
+ <input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ($tptn_settings['count_on_pages']) echo 'checked="checked"' ?> /> <?php _e('Pages',TPTN_LOCAL_NAME); ?>
163
  </td>
164
  </tr>
165
+ <tr style="vertical-align: top;"><th scope="row"><label for="dynamic_post_count"><?php _e('Always display latest post count',TPTN_LOCAL_NAME); ?></label></th>
166
+ <td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> /><br />
167
+ <?php _e('This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts',TPTN_LOCAL_NAME); ?></td>
168
  </tr>
169
 
170
+ <tr style="vertical-align: top;"><th scope="row"><label for="d_use_js"><?php _e('Always display latest post count in the daily lists',TPTN_LOCAL_NAME); ?></label></th>
171
+ <td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings['d_use_js']) echo 'checked="checked"' ?> /><br />
172
+ <?php _e('This option uses JavaScript and will increase your page load time',TPTN_LOCAL_NAME); ?></td>
173
+ </tr>
174
+
175
+ <tr style="vertical-align: top;"><th scope="row"><label for="track_authors"><?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?></label></th>
176
+ <td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings['track_authors']) echo 'checked="checked"' ?> /></td>
177
  </tr>
178
 
179
+ <tr style="vertical-align: top;"><th scope="row"><label for="track_admins"><?php _e('Track visits of admins?',TPTN_LOCAL_NAME); ?></label></th>
180
+ <td><input type="checkbox" name="track_admins" id="track_admins" <?php if ($tptn_settings['track_admins']) echo 'checked="checked"' ?> /></td>
 
181
  </tr>
182
 
183
  <tr style="vertical-align: top;"><th scope="row"><label for="pv_in_admin"><?php _e('Display page views on Posts > All Posts in Admin',TPTN_LOCAL_NAME); ?></label></th>
184
+ <td><input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings['pv_in_admin']) echo 'checked="checked"' ?> /></td>
185
  </tr>
186
 
187
  <tr style="vertical-align: top;"><th scope="row"><label for="show_credit"><?php _e('Link to Top 10 plugin page',TPTN_LOCAL_NAME); ?></label></th>
188
+ <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings['show_credit']) echo 'checked="checked"' ?> /><br />
189
  <?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></td>
190
  </tr>
191
 
197
  </h3>
198
  <table class="form-table">
199
  <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Format to display the count in: ',TPTN_LOCAL_NAME); ?></label></th>
200
+ <td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings['count_disp_form'])); ?></textarea>
201
  <br />
202
  <?php _e('Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?></td>
203
  </tr>
204
  <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
205
+ <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($tptn_settings['title'])); ?>" style="width:250px" /></td>
206
  </tr>
207
  <tr style="vertical-align: top;"><th scope="row"><label for="title_daily"><?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
208
+ <td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo esc_attr(stripslashes($tptn_settings['title_daily'])); ?>" style="width:250px" /></td>
209
  </tr>
210
  <tr style="vertical-align: top;"><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',TPTN_LOCAL_NAME); ?></label></th>
211
  <td>
216
  <label>
217
  <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$tptn_settings['blank_output']) echo 'checked="checked"' ?> />
218
  <?php _e('Display:',TPTN_LOCAL_NAME); ?></label>
219
+ <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($tptn_settings['blank_output_text'])); ?>" style="width:250px" />
220
  </td>
221
  </tr>
222
  <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></label></th>
223
+ <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
224
  </tr>
225
  <tr style="vertical-align: top;"><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
226
+ <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
227
+ </tr>
228
+ <tr style="vertical-align: top;"><th scope="row"><label for="disp_list_count"><?php _e('Display number of page views in popular lists?',TPTN_LOCAL_NAME); ?></label></th>
229
+ <td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings['disp_list_count']) echo 'checked="checked"' ?> /></td>
230
  </tr>
231
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></th>
232
  </tr>
233
  <tr style="vertical-align: top;"><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
234
+ <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list'])); ?>" style="width:250px" /></td>
235
  </tr>
236
  <tr style="vertical-align: top;"><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?></label></th>
237
+ <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list_item'])); ?>" style="width:250px" /></td>
238
  </tr>
239
  <tr style="vertical-align: top;"><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?></label></th>
240
+ <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list_item'])); ?>" style="width:250px" /></td>
241
  </tr>
242
  <tr style="vertical-align: top;"><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
243
+ <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list'])); ?>" style="width:250px" /></td>
244
  </tr>
245
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
246
  </tr>
265
  </td>
266
  </tr>
267
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
268
+ <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_width'])); ?>" style="width:30px" />px</td>
269
  </tr>
270
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
271
+ <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_height'])); ?>" style="width:30px" />px</td>
272
  </tr>
273
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
274
+ <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></td>
275
  </tr>
276
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
277
+ <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_meta'])); ?>"> <br /><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></td>
278
  </tr>
279
  <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>
280
+ <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>
281
  </tr>
282
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
283
+ <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>
284
  </tr>
285
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
286
+ <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_default'])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></td>
287
  </tr>
288
  </table>
289
  </div>
294
  <table class="form-table">
295
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
296
  </tr>
297
+ <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($tptn_settings['custom_CSS']); ?></textarea>
298
  <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></em></td></tr>
299
  </table>
300
  </div>
309
  </th>
310
  </tr>
311
  <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>
312
+ <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings['cron_on']) echo 'checked="checked"' ?> />
313
  <br />
314
  </td>
315
  </tr>
316
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
317
+ <td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_hour'])); ?>" style="width:10px" /> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_min'])); ?>" style="width:10px" /> hrs</td>
318
  </tr>
319
  <tr style="vertical-align: top;"><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
320
  <td>
338
  </tr>
339
  <tr style="vertical-align: top;"><td scope="row" colspan="2">
340
  <?php
341
+ if ($tptn_settings['cron_on']) {
342
  if (wp_next_scheduled('ald_tptn_hook')) {
343
  echo '<span style="color:#0c0">';
344
  _e('The cron job has been scheduled. Maintenance will run ',TPTN_LOCAL_NAME);
372
  </div>
373
  <p>
374
  <input type="submit" name="tptn_save" id="tptn_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>" style="border:#0C0 1px solid" />
375
+ <input type="submit" name="tptn_default" id="tptn_default" value="<?php _e('Default Options',TPTN_LOCAL_NAME); ?>" style="border:#F00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',TPTN_LOCAL_NAME); ?>')) return false;" />
376
  </p>
377
  </fieldset>
378
  </form>
386
 
387
  }
388
 
389
+ function tptn_manage_daily() {
390
+ tptn_manage(1);
391
+ }
392
+
393
+ function tptn_manage($daily = 0) {
394
+
395
+ $paged = (isset($_GET['paged']) ? intval($_GET['paged']) : 0);
396
+ $limit = (isset($_GET['limit']) ? intval($_GET['limit']) : 0);
397
+ $exclude_pages = (isset($_GET['exclude_pages']) ? intval($_GET['exclude_pages']) : 0);
398
+ $daily = (isset($_GET['daily']) ? intval($_GET['daily']) : $daily);
399
 
400
  ?>
401
 
443
  </div>
444
  </div>
445
  <div class="side-widget">
446
+ <span class="title"><?php _e('Follow us',TPTN_LOCAL_NAME) ?></span>
447
  <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
448
+ <div style="text-align:center"><a href="https://twitter.com/ajaydsouza" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @ajaydsouza</a>
449
+ <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div>
450
  </div>
451
  <div class="side-widget">
452
  <span class="title"><?php _e('Quick Links',TPTN_LOCAL_NAME) ?></span>
460
  </div>
461
  <div class="side-widget">
462
  <span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
463
+ <?php require_once(ABSPATH . WPINC . '/class-simplepie.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
464
  ?>
465
  </div>
466
  <?php
468
 
469
  /* Add menu item in WP-Admin */
470
  function tptn_adminmenu() {
 
 
 
 
 
 
 
 
 
 
 
 
471
 
472
+ if (function_exists('add_menu_page')) {
473
+
474
+ $plugin_page = add_menu_page(__("Top 10 Settings", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 'manage_options', 'tptn_options', 'tptn_options');
475
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
476
+
477
+ $plugin_page = add_submenu_page( 'tptn_options', __("Overall Popular Posts", TPTN_LOCAL_NAME), __("Overall Popular Posts", TPTN_LOCAL_NAME), 'manage_options', 'tptn_manage', 'tptn_manage');
478
+ add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
479
+
480
+ $plugin_page = add_submenu_page( 'tptn_options', __("Daily Popular Posts", TPTN_LOCAL_NAME), __("Daily Popular Posts", TPTN_LOCAL_NAME), 'manage_options', 'tptn_manage_daily', 'tptn_manage_daily');
481
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
482
+
483
  }
484
  }
485
  add_action('admin_menu', 'tptn_adminmenu');
534
  $sql .= "AND post_status = 'publish' ";
535
  $sql .= "ORDER BY sumCount DESC";
536
  } else {
537
+ $daily_range = $tptn_settings['daily_range']-1;
538
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
539
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
540
  $current_date = date ( 'Y-m-j' , $current_date );
611
  <td align="left">';
612
 
613
  if(($daily && $widget) || (!$daily && !$widget)) {
614
+ $output .= '<a href="./admin.php?page=tptn_manage_daily">';
615
  $output .= __('View Daily Popular Posts',TPTN_LOCAL_NAME);
616
  $output .= '</a></td>';
617
+ $output .= '<td align="right">';
618
+ if (!$widget) $output .= __('Results per-page:',TPTN_LOCAL_NAME);
619
+ if (!$widget) $output .= ' <a href="./admin.php?page=tptn_manage&limit=10">10</a> | <a href="./admin.php?page=tptn_manage&limit=20">20</a> | <a href="./admin.php?page=tptn_manage&limit=50">50</a> | <a href="./admin.php?page=tptn_manage&limit=100">100</a> ';
620
+ $output .= ' </td>
621
+ </tr>
622
+ <tr>
623
+ <td colspan="2" align="right"><hr /></td>
624
+ </tr>
625
+ </table>';
626
  } else {
627
+ $output .= '<a href="./admin.php?page=tptn_manage">';
628
  $output .= __('View Overall Popular Posts',TPTN_LOCAL_NAME);
629
  $output .= '</a></td>';
630
+ $output .= '<td align="right">';
631
+ if (!$widget) $output .= __('Results per-page:',TPTN_LOCAL_NAME);
632
+ if (!$widget) $output .= ' <a href="./admin.php?page=tptn_manage_daily&limit=10">10</a> | <a href="./admin.php?page=tptn_manage_daily&limit=20">20</a> | <a href="./admin.php?page=tptn_manage_daily&limit=50">50</a> | <a href="./admin.php?page=tptn_manage_daily&limit=100">100</a> ';
633
+ $output .= ' </td>
634
+ </tr>
635
+ <tr>
636
+ <td colspan="2" align="right"><hr /></td>
637
+ </tr>
638
+ </table>';
639
  }
 
 
 
 
 
 
 
 
 
 
640
 
641
+ $dailytag = ($daily) ? '_daily' : '';
642
+
643
  $output .= '<ul>';
644
  if ($results) {
645
  foreach ($results as $result) {
653
  $output .= '<p align="center">';
654
  if ($page != 0) { // Don't show back link if current page is first page.
655
  $back_page = $page - $limit;
656
+ $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$back_page&daily=$daily&limit=$limit\">&laquo; ";
657
  $output .= __('Previous',TPTN_LOCAL_NAME);
658
  $output .= "</a>\n";
659
  }
665
  $output .= "<b>$i</b>\n";
666
  } // If current page don't give link, just text.
667
  else{
668
+ $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$ppage&daily=$daily&limit=$limit\">$i</a> \n";
669
  }
670
  }
671
 
672
  if (!((($page+$limit) / $limit) >= $pages) && $pages != 1) { // If last page don't give next link.
673
  $next_page = $page + $limit;
674
+ $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$next_page&daily=$daily&limit=$limit\">";
675
  $output .= __('Next',TPTN_LOCAL_NAME);
676
  $output .= " &raquo;</a>";
677
  }
706
  function tptn_column($cols) {
707
  $tptn_settings = tptn_read_options();
708
 
709
+ if ($tptn_settings['pv_in_admin']) $cols['tptn'] = __('Total / Today\'s Views',TPTN_LOCAL_NAME);
710
  return $cols;
711
  }
712
 
713
  // Display page views for each column
714
  function tptn_value($column_name, $id) {
715
  $tptn_settings = tptn_read_options();
716
+ if (($column_name == 'tptn')&&($tptn_settings['pv_in_admin'])) {
717
  global $wpdb;
718
 
719
  $table_name = $wpdb->prefix . "top_ten";
726
  // Now process daily count
727
  $table_name = $wpdb->prefix . "top_ten_daily";
728
 
729
+ $daily_range = $tptn_settings['daily_range']-1;
730
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
731
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
732
  $current_date = date ( 'Y-m-j' , $current_date );
ald-framework.inc.php DELETED
@@ -1,106 +0,0 @@
1
- <?php
2
- /**********************************************************************
3
- * Framework file *
4
- *********************************************************************/
5
- if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
6
- if (!defined('ALD_TPTN_DIR')) define('ALD_TPTN_DIR', dirname(__FILE__));
7
- if (!defined('TPTN_LOCAL_NAME')) define('TPTN_LOCAL_NAME', 'tptn');
8
-
9
- // Function to get the post thumbnail
10
- if (!function_exists(ald_get_the_post_thumbnail)) { function ald_get_the_post_thumbnail($args = array()) {
11
-
12
- global $ald_url;
13
- $defaults = array(
14
- 'postid' => '',
15
- 'thumb_height' => '50', // Max height of thumbnails
16
- 'thumb_width' => '50', // Max width of thumbnails
17
- 'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
18
- 'thumb_default' => '', // Default thumbnail image
19
- 'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
20
- 'thumb_timthumb' => true, // Use timthumb
21
- 'scan_images' => false, // Scan post for images
22
- 'class' => 'ald_thumb', // Class of the thumbnail
23
- 'filter' => 'ald_postimage', // Class of the thumbnail
24
- );
25
-
26
- // Parse incomming $args into an array and merge it with $defaults
27
- $args = wp_parse_args( $args, $defaults );
28
-
29
- // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
30
- extract( $args, EXTR_SKIP );
31
-
32
- $result = get_post($postid);
33
-
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'));
43
- } else {
44
- $postimage = get_post_meta($result->ID, $thumb_meta, true); // Check
45
- if (!$postimage && $scan_images) {
46
- preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
47
- // any image there?
48
- if (isset($matches) && $matches[1][0]) {
49
- if (((strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false))|| ((strpos($matches[1][0], 'http://') === false))) {
50
- $postimage = $matches[1][0]; // we need the first one only!
51
- }
52
- }
53
- }
54
- if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
55
- if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
56
- if ($postimage) {
57
- if ($thumb_timthumb) {
58
- $output .= '<img src="'.$ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
59
- } else {
60
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
61
- }
62
- }
63
- }
64
-
65
- return $output;
66
- }}
67
-
68
- // Function to create an excerpt for the post
69
- if (!function_exists(ald_excerpt)) { function ald_excerpt($postid,$excerpt_length){
70
- $content = get_post($postid)->post_excerpt;
71
- if ($content=='') $content = get_post($postid)->post_content;
72
- $out = strip_tags($content);
73
- $blah = explode(' ',$out);
74
- if (!$excerpt_length) $excerpt_length = 10;
75
- if(count($blah) > $excerpt_length){
76
- $k = $excerpt_length;
77
- $use_dotdotdot = 1;
78
- }else{
79
- $k = count($blah);
80
- $use_dotdotdot = 0;
81
- }
82
- $excerpt = '';
83
- for($i=0; $i<$k; $i++){
84
- $excerpt .= $blah[$i].' ';
85
- }
86
- $excerpt .= ($use_dotdotdot) ? '...' : '';
87
- $out = $excerpt;
88
- return $out;
89
- }}
90
-
91
- // Function to save the global page ID. Used for the widget
92
- // Code from: http://indrek.it/blog/wordpress-front-page-vs-home-page-and-getting-post-id-outside-or-after-the-loop-in-every-possible-way/
93
- if (!function_exists(ald_save_page_ID)) { function ald_save_page_ID() {
94
- // Declare globals as before
95
- global $ald_page_id;
96
- global $post;
97
- $ald_page_id = $post->ID;
98
- }
99
- add_action('wp_head', 'ald_save_page_ID');
100
- }
101
-
102
-
103
-
104
-
105
-
106
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-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"
@@ -12,50 +12,55 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,54 +68,71 @@ msgstr ""
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 "
100
- "time"
101
  msgstr ""
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,16 +141,16 @@ msgstr ""
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,110 +162,114 @@ msgstr ""
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,7 +279,7 @@ msgstr ""
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 "
@@ -263,21 +289,21 @@ msgstr ""
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,84 +314,84 @@ msgstr ""
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,231 +399,241 @@ msgstr ""
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
 
517
- #: top-10.php:257
518
  msgid "Display the posts popular this week"
519
  msgstr ""
520
 
521
- #: top-10.php:271
522
  msgid "Title"
523
  msgstr ""
524
 
525
- #: top-10.php:276
526
  msgid "No. of posts"
527
  msgstr ""
528
 
529
- #: top-10.php:281
530
  msgid "Overall"
531
  msgstr ""
532
 
533
- #: top-10.php:282
534
  msgid "Custom time period (Enter below)"
535
  msgstr ""
536
 
537
- #: top-10.php:287
538
  msgid "Range in number of days (applies only to custom option above)"
539
  msgstr ""
540
 
541
- #: top-10.php:291
542
  #, fuzzy
543
  msgid "Thumbnail options"
544
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
545
 
546
- #: top-10.php:293
547
  #, fuzzy
548
  msgid "Thumbnails inline, before title"
549
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
550
 
551
- #: top-10.php:294
552
  #, fuzzy
553
  msgid "Thumbnails inline, after title"
554
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
555
 
556
- #: top-10.php:295
557
  #, fuzzy
558
  msgid "Only thumbnails, no text"
559
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
560
 
561
- #: top-10.php:296
562
  #, fuzzy
563
  msgid "No thumbnails, only text."
564
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
565
 
566
- #: top-10.php:301
567
  #, fuzzy
568
  msgid " Show excerpt?"
569
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
570
 
571
- #: top-10.php:367
572
  msgid "<h3>Popular Posts</h3>"
573
  msgstr "<h3>Populyar yazılar</h3>"
574
 
575
- #: top-10.php:368
576
  msgid "<h3>Daily Popular</h3>"
577
  msgstr "<h3>Gündəlik Populyar</h3>"
578
 
579
- #: top-10.php:369
580
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:45-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "10 populyar yazı statisticasını pozmaq"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Populyar postların miqdarının nümayişi:"
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
58
 
59
+ #: admin.inc.php:138
60
+ msgid "Exclude Pages?"
61
+ msgstr ""
62
+
63
+ #: admin.inc.php:139
64
  msgid ""
65
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
66
  "continue to be counted."
68
  "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı "
69
  "saymaqda davam etdiriləcək."
70
 
71
+ #: admin.inc.php:141
72
  msgid "Exclude Categories: "
73
  msgstr ""
74
 
75
+ #: admin.inc.php:156
76
+ msgid ""
77
+ "Comma separated list of category slugs. The field above has an autocomplete "
78
+ "so simply start typing in the starting letters and it will prompt you with "
79
+ "options"
80
+ msgstr ""
81
+
82
+ #: admin.inc.php:160
83
  #, fuzzy
84
  msgid "Display number of views on:"
85
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
86
 
87
+ #: admin.inc.php:161
88
  msgid "Posts"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:162
92
  #, fuzzy
93
  msgid "Pages"
94
  msgstr "Səhifə"
95
 
96
+ #: admin.inc.php:165
97
+ msgid "Always display latest post count"
98
+ msgstr ""
99
 
100
+ #: admin.inc.php:167
101
+ msgid ""
102
+ "This option uses JavaScript and will increase your page load time. Turn this "
103
+ "off if you are not using caching plugins or are OK with displaying older "
104
+ "cached counts"
105
+ msgstr ""
106
 
107
  #: admin.inc.php:170
108
+ msgid "Always display latest post count in the daily lists"
109
  msgstr ""
110
 
111
  #: admin.inc.php:172
112
  #, fuzzy
113
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
114
  msgstr ""
115
  "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
116
  "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
117
 
118
  #: admin.inc.php:175
119
+ msgid "Track visits of authors on their own posts?"
120
+ msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
121
+
122
+ #: admin.inc.php:179
123
+ #, fuzzy
124
+ msgid "Track visits of admins?"
125
+ msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
126
+
127
+ #: admin.inc.php:183
128
  msgid "Display page views on Posts > All Posts in Admin"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:187
132
  msgid "Link to Top 10 plugin page"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:189
136
  #, fuzzy
137
  msgid ""
138
  "A link to the plugin is added as an extra list item to the list of popular "
141
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
142
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
143
 
144
+ #: admin.inc.php:196
145
  #, fuzzy
146
  msgid "Output Options"
147
  msgstr "Plaginin kökləmələri:"
148
 
149
+ #: admin.inc.php:199
150
  msgid "Format to display the count in: "
151
  msgstr "Miqdarı göstərən format:"
152
 
153
+ #: admin.inc.php:202
154
  #, fuzzy
155
  msgid ""
156
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
162
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
163
  "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
164
 
165
+ #: admin.inc.php:204
166
  msgid "Title of popular posts: "
167
  msgstr "Populyar yazılarının başlığı:"
168
 
169
+ #: admin.inc.php:207
170
  msgid "Title of daily popular posts: "
171
  msgstr "Gündəlik populyual yazılışların başlığı:"
172
 
173
+ #: admin.inc.php:210
174
  msgid "When there are no posts, what should be shown?"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:214
178
  msgid "Blank Output"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:218
182
  msgid "Display:"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:222
186
  msgid "Show post excerpt in list?"
187
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
188
 
189
+ #: admin.inc.php:225
190
  msgid "Length of excerpt (in words): "
191
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
192
 
193
+ #: admin.inc.php:228
194
+ msgid "Display number of page views in popular lists?"
195
+ msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
196
+
197
+ #: admin.inc.php:231
198
  msgid "Customize the output:"
199
  msgstr "Suiyahı formasının kökləmələri:"
200
 
201
+ #: admin.inc.php:233
202
  msgid "HTML to display before the list of posts: "
203
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
204
 
205
+ #: admin.inc.php:236
206
  msgid "HTML to display before each list item: "
207
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
208
 
209
+ #: admin.inc.php:239
210
  msgid "HTML to display after each list item: "
211
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
212
 
213
+ #: admin.inc.php:242
214
  msgid "HTML to display after the list of posts: "
215
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
216
 
217
+ #: admin.inc.php:245
218
  msgid "Post thumbnail options:"
219
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
220
 
221
+ #: admin.inc.php:247
222
  msgid "Location of post thumbnail:"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:251
226
  #, fuzzy
227
  msgid "Display thumbnails inline with posts, before title"
228
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
229
 
230
+ #: admin.inc.php:255
231
  #, fuzzy
232
  msgid "Display thumbnails inline with posts, after title"
233
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
234
 
235
+ #: admin.inc.php:259
236
  msgid "Display only thumbnails, no text"
237
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
238
 
239
+ #: admin.inc.php:263
240
  msgid "Do not display thumbnails, only text."
241
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
242
 
243
+ #: admin.inc.php:267
244
  msgid "Maximum width of the thumbnail: "
245
  msgstr ""
246
 
247
+ #: admin.inc.php:270
248
  msgid "Maximum height of the thumbnail: "
249
  msgstr ""
250
 
251
+ #: admin.inc.php:273
252
  msgid "Use timthumb to generate thumbnails? "
253
  msgstr ""
254
 
255
+ #: admin.inc.php:274
256
  msgid ""
257
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
258
  "\">timthumb</a> will be used to generate thumbnails"
259
  msgstr ""
260
 
261
+ #: admin.inc.php:276
262
  #, fuzzy
263
  msgid "Post thumbnail meta field name: "
264
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
265
 
266
+ #: admin.inc.php:277
267
  msgid ""
268
  "The value of this field should contain the image source and is set in the "
269
  "<em>Add New Post</em> screen"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:279
273
  #, fuzzy
274
  msgid ""
275
  "If the postmeta is not set, then should the plugin extract the first image "
279
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
280
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
281
 
282
+ #: admin.inc.php:280
283
  #, fuzzy
284
  msgid ""
285
  "This could slow down the loading of your page if the first image in the "
289
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
290
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
291
 
292
+ #: admin.inc.php:282
293
  msgid "Use default thumbnail? "
294
  msgstr ""
295
 
296
+ #: admin.inc.php:283
297
  msgid ""
298
  "If checked, when no thumbnail is found, show a default one from the URL "
299
  "below. If not checked and no thumbnail is found, no image will be shown."
300
  msgstr ""
301
 
302
+ #: admin.inc.php:285
303
  msgid "Default thumbnail: "
304
  msgstr ""
305
 
306
+ #: admin.inc.php:286
307
  #, fuzzy
308
  msgid ""
309
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
314
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
315
  "onda standard şəkil çıxarılacaq:"
316
 
317
+ #: admin.inc.php:292
318
  msgid "Custom Styles"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:295
322
  msgid "Custom CSS to add to header:"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:298
326
  msgid ""
327
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
328
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
329
  "available CSS classes to style."
330
  msgstr ""
331
 
332
+ #: admin.inc.php:303
333
  msgid "Maintenance"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:307
337
  msgid ""
338
  "Over time the Daily Top 10 database grows in size, which reduces the "
339
  "performance of the plugin. Cleaning the database at regular intervals could "
340
  "improve performance, especially on high traffic blogs."
341
  msgstr ""
342
 
343
+ #: admin.inc.php:308
344
  msgid ""
345
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
346
  "everytime the job is rescheduled (i.e. you change the settings below). This "
347
  "causes the daily posts table to reset."
348
  msgstr ""
349
 
350
+ #: admin.inc.php:311
351
  msgid "Enable scheduled maintenance of daily tables:"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:316
355
  msgid "Time to run maintenance"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:319
359
  msgid "How often should the maintenance be run:"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:323
363
  msgid "Daily"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:327
367
  msgid "Weekly"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:331
371
  msgid "Fortnightly"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:335
375
  msgid "Monthly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:344
379
  msgid "The cron job has been scheduled. Maintenance will run "
380
  msgstr ""
381
 
382
+ #: admin.inc.php:349
383
  msgid "The cron job is missing. Please resave this page to add the job"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:354
387
  msgid "Maintenance is turned off"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:362
391
  msgid "Reset count"
392
  msgstr "Statistikanı sbros etmək"
393
 
394
+ #: admin.inc.php:365
395
  msgid ""
396
  "This cannot be reversed. Make sure that your database has been backed up "
397
  "before proceeding"
399
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
400
  "ki, Sizin məlumat bazasının kopiyası var!"
401
 
402
+ #: admin.inc.php:368
403
  #, fuzzy
404
  msgid "Reset Popular Posts"
405
  msgstr "Populyar yazılar"
406
 
407
+ #: admin.inc.php:368
408
  msgid "Are you sure you want to reset the popular posts?"
409
  msgstr ""
410
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
411
 
412
+ #: admin.inc.php:369
413
  #, fuzzy
414
  msgid "Reset Daily Popular Posts"
415
  msgstr "Gündəlik Populyar Yazılar"
416
 
417
+ #: admin.inc.php:369
418
  msgid "Are you sure you want to reset the daily popular posts?"
419
  msgstr ""
420
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
421
  "istəyirsiniz?"
422
 
423
+ #: admin.inc.php:370
424
  msgid "Clear duplicates"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:370
428
  msgid "This will delete the duplicate entries in the tables. Proceed?"
429
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
430
 
431
+ #: admin.inc.php:374
432
  #, fuzzy
433
  msgid "Save Options"
434
  msgstr "Opsiyalar:"
435
 
436
+ #: admin.inc.php:375
437
  #, fuzzy
438
  msgid "Default Options"
439
  msgstr "Plaginin kökləmələri:"
440
 
441
+ #: admin.inc.php:375
442
  msgid "Do you want to set options to Default?"
443
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
444
 
445
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
446
  msgid "Popular Posts"
447
  msgstr "Populyar yazılar"
448
 
449
+ #: admin.inc.php:406 admin.inc.php:480
450
  msgid "Daily Popular Posts"
451
  msgstr "Gündəlik Populyar Yazılar"
452
 
453
+ #: admin.inc.php:428
454
  msgid "Support the development"
455
  msgstr "İnkişafı dəstək vermək"
456
 
457
+ #: admin.inc.php:436
458
  msgid "Enter amount in USD: "
459
  msgstr "Miiqdarı USD ilə daxil et:"
460
 
461
+ #: admin.inc.php:440
462
  msgid "Send your donation to the author of"
463
  msgstr "Müəlifə ianə göndərin "
464
 
465
+ #: admin.inc.php:446
466
+ msgid "Follow us"
467
  msgstr ""
468
 
469
+ #: admin.inc.php:452
470
  #, fuzzy
471
  msgid "Quick Links"
472
  msgstr "Faydalı istenadlar"
473
 
474
+ #: admin.inc.php:454
475
  #, fuzzy
476
  msgid "Top 10 plugin page"
477
  msgstr "plaginin səhifəsi"
478
 
479
+ #: admin.inc.php:455
480
  msgid "Other plugins"
481
  msgstr "Digər plaginlər"
482
 
483
+ #: admin.inc.php:456
484
  msgid "Ajay's blog"
485
  msgstr "Ajay-in blogu"
486
 
487
+ #: admin.inc.php:457 top-10.php:757
488
  msgid "Support"
489
  msgstr "Dəstək"
490
 
491
+ #: admin.inc.php:458
492
  msgid "Follow @ajaydsouza on Twitter"
493
  msgstr "Twitter-də @ajaydsouza ardınca get "
494
 
495
+ #: admin.inc.php:462
496
  msgid "Recent developments"
497
  msgstr "Son inkişaflar"
498
 
499
+ #: admin.inc.php:474
500
+ #, fuzzy
501
+ msgid "Top 10 Settings"
502
+ msgstr "Kökləmələr"
503
+
504
+ #: admin.inc.php:474
505
  msgid "Top 10"
506
  msgstr "Top 10 yazılar"
507
 
508
+ #: admin.inc.php:477
509
+ #, fuzzy
510
+ msgid "Overall Popular Posts"
511
+ msgstr "Bütün Populyar Yazılara Baxmaq"
512
+
513
+ #: admin.inc.php:595
514
  msgid "Results"
515
  msgstr "Nəticələr"
516
 
517
+ #: admin.inc.php:597 admin.inc.php:603
518
  msgid "of"
519
  msgstr "-dən "
520
 
521
+ #: admin.inc.php:601
522
  msgid "Page"
523
  msgstr "Səhifə"
524
 
525
+ #: admin.inc.php:615
526
  msgid "View Daily Popular Posts"
527
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
528
 
529
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
530
  msgid "Results per-page:"
531
  msgstr "Səhifə üzrə nəticələr:"
532
 
533
+ #: admin.inc.php:628
534
+ msgid "View Overall Popular Posts"
535
+ msgstr "Bütün Populyar Yazılara Baxmaq"
536
+
537
+ #: admin.inc.php:657
538
  msgid "Previous"
539
  msgstr "Əvvəlki"
540
 
541
+ #: admin.inc.php:675
542
  msgid "Next"
543
  msgstr "Sonrakı"
544
 
545
+ #: admin.inc.php:698
546
  msgid "Daily Popular"
547
  msgstr "Gündəlik Populyar"
548
 
549
+ #: admin.inc.php:709
550
  msgid "Total / Today's Views"
551
  msgstr "Ümümi/ Bu günkü baxış"
552
 
553
+ #: top-10.php:318
554
  msgid "Display the posts popular this week"
555
  msgstr ""
556
 
557
+ #: top-10.php:332
558
  msgid "Title"
559
  msgstr ""
560
 
561
+ #: top-10.php:337
562
  msgid "No. of posts"
563
  msgstr ""
564
 
565
+ #: top-10.php:342
566
  msgid "Overall"
567
  msgstr ""
568
 
569
+ #: top-10.php:343
570
  msgid "Custom time period (Enter below)"
571
  msgstr ""
572
 
573
+ #: top-10.php:348
574
  msgid "Range in number of days (applies only to custom option above)"
575
  msgstr ""
576
 
577
+ #: top-10.php:352
578
  #, fuzzy
579
  msgid "Thumbnail options"
580
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
581
 
582
+ #: top-10.php:354
583
  #, fuzzy
584
  msgid "Thumbnails inline, before title"
585
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
586
 
587
+ #: top-10.php:355
588
  #, fuzzy
589
  msgid "Thumbnails inline, after title"
590
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
591
 
592
+ #: top-10.php:356
593
  #, fuzzy
594
  msgid "Only thumbnails, no text"
595
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
596
 
597
+ #: top-10.php:357
598
  #, fuzzy
599
  msgid "No thumbnails, only text."
600
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
601
 
602
+ #: top-10.php:362
603
  #, fuzzy
604
  msgid " Show excerpt?"
605
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
606
 
607
+ #: top-10.php:431
608
  msgid "<h3>Popular Posts</h3>"
609
  msgstr "<h3>Populyar yazılar</h3>"
610
 
611
+ #: top-10.php:432
612
  msgid "<h3>Daily Popular</h3>"
613
  msgstr "<h3>Gündəlik Populyar</h3>"
614
 
615
+ #: top-10.php:433
616
  #, fuzzy
617
  msgid "No top posts yet"
618
  msgstr "10 populyar yazı statisticasını pozmaq"
619
 
620
+ #: top-10.php:721
621
  msgid "Once Weekly"
622
  msgstr ""
623
 
624
+ #: top-10.php:722
625
  msgid "Once Fortnightly"
626
  msgstr ""
627
 
628
+ #: top-10.php:723
629
  msgid "Once Monthly"
630
  msgstr ""
631
 
632
+ #: top-10.php:744
633
  msgid "Settings"
634
  msgstr "Kökləmələr"
635
 
636
+ #: top-10.php:758
637
  msgid "Donate"
638
  msgstr "İanə etmək"
639
 
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-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"
@@ -12,51 +12,56 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,55 +69,71 @@ msgstr ""
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 "
102
- "time"
103
  msgstr ""
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,16 +142,16 @@ msgstr ""
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,442 +163,457 @@ msgstr ""
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
 
501
- #: top-10.php:257
502
  msgid "Display the posts popular this week"
503
  msgstr ""
504
 
505
- #: top-10.php:271
506
  msgid "Title"
507
  msgstr ""
508
 
509
- #: top-10.php:276
510
  msgid "No. of posts"
511
  msgstr ""
512
 
513
- #: top-10.php:281
514
  msgid "Overall"
515
  msgstr ""
516
 
517
- #: top-10.php:282
518
  msgid "Custom time period (Enter below)"
519
  msgstr ""
520
 
521
- #: top-10.php:287
522
  msgid "Range in number of days (applies only to custom option above)"
523
  msgstr ""
524
 
525
- #: top-10.php:291
526
  msgid "Thumbnail options"
527
  msgstr ""
528
 
529
- #: top-10.php:293
530
  #, fuzzy
531
  msgid "Thumbnails inline, before title"
532
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
533
 
534
- #: top-10.php:294
535
  #, fuzzy
536
  msgid "Thumbnails inline, after title"
537
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
538
 
539
- #: top-10.php:295
540
  msgid "Only thumbnails, no text"
541
  msgstr ""
542
 
543
- #: top-10.php:296
544
  msgid "No thumbnails, only text."
545
  msgstr ""
546
 
547
- #: top-10.php:301
548
  msgid " Show excerpt?"
549
  msgstr ""
550
 
551
- #: top-10.php:367
552
  msgid "<h3>Popular Posts</h3>"
553
  msgstr "<h3>Папулярныя запісы</h3>"
554
 
555
- #: top-10.php:368
556
  msgid "<h3>Daily Popular</h3>"
557
  msgstr "<h3>Папулярныя сёння запісы</h3>"
558
 
559
- #: top-10.php:369
560
  #, fuzzy
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
 
@@ -590,7 +626,3 @@ msgstr ""
590
  #~ msgstr ""
591
  #~ "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага "
592
  #~ "будзе дададзена асобная калонка"
593
-
594
- #, fuzzy
595
- #~ msgid "Top 10 "
596
- #~ msgstr "Топ 10 запісаў"
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:45-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Налады захаваны."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Налады скінуты."
33
 
34
+ #: admin.inc.php:95
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Загаловак блока Папулярных запісаў:"
38
 
39
+ #: admin.inc.php:101
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Загаловак блока Папулярных сёння запісаў:"
43
 
44
+ #: admin.inc.php:108
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:129
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:132
53
  msgid "Number of popular posts to display: "
54
  msgstr "Колькасць Папулярных запісаў у спісе:"
55
 
56
+ #: admin.inc.php:135
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
59
 
60
+ #: admin.inc.php:138
61
+ msgid "Exclude Pages?"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для "
70
  "старонак будзе падлічвацца."
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr ""
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "Старонка"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
  msgstr ""
 
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
117
  "і гэта можа павялічыць час загрузкі старонак"
118
 
119
  #: admin.inc.php:175
120
+ msgid "Track visits of authors on their own posts?"
121
+ msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
122
+
123
+ #: admin.inc.php:179
124
+ #, fuzzy
125
+ msgid "Track visits of admins?"
126
+ msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
127
+
128
+ #: admin.inc.php:183
129
  msgid "Display page views on Posts > All Posts in Admin"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:187
133
  msgid "Link to Top 10 plugin page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:189
137
  #, fuzzy
138
  msgid ""
139
  "A link to the plugin is added as an extra list item to the list of popular "
142
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
143
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
144
 
145
+ #: admin.inc.php:196
146
  #, fuzzy
147
  msgid "Output Options"
148
  msgstr "Налады ўбудовы:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Format to display the count in: "
152
  msgstr "Фармат адлюстравання колькасці праглядаў:"
153
 
154
+ #: admin.inc.php:202
155
  #, fuzzy
156
  msgid ""
157
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
163
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
164
  "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
165
 
166
+ #: admin.inc.php:204
167
  msgid "Title of popular posts: "
168
  msgstr "Загаловак блока Папулярных запісаў:"
169
 
170
+ #: admin.inc.php:207
171
  msgid "Title of daily popular posts: "
172
  msgstr "Загаловак блока Папулярных сёння запісаў:"
173
 
174
+ #: admin.inc.php:210
175
  msgid "When there are no posts, what should be shown?"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:214
179
  msgid "Blank Output"
180
  msgstr ""
181
 
182
+ #: admin.inc.php:218
183
  msgid "Display:"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:222
187
  msgid "Show post excerpt in list?"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:225
191
  msgid "Length of excerpt (in words): "
192
  msgstr ""
193
 
194
+ #: admin.inc.php:228
195
+ msgid "Display number of page views in popular lists?"
196
+ msgstr ""
197
+ "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
198
+
199
+ #: admin.inc.php:231
200
  msgid "Customize the output:"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:233
204
  msgid "HTML to display before the list of posts: "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:236
208
  msgid "HTML to display before each list item: "
209
  msgstr ""
210
 
211
+ #: admin.inc.php:239
212
  #, fuzzy
213
  msgid "HTML to display after each list item: "
214
  msgstr "Фармат адлюстравання колькасці праглядаў:"
215
 
216
+ #: admin.inc.php:242
217
  msgid "HTML to display after the list of posts: "
218
  msgstr ""
219
 
220
+ #: admin.inc.php:245
221
  msgid "Post thumbnail options:"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:247
225
  msgid "Location of post thumbnail:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:251
229
  #, fuzzy
230
  msgid "Display thumbnails inline with posts, before title"
231
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
232
 
233
+ #: admin.inc.php:255
234
  #, fuzzy
235
  msgid "Display thumbnails inline with posts, after title"
236
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
237
 
238
+ #: admin.inc.php:259
239
  msgid "Display only thumbnails, no text"
240
  msgstr ""
241
 
242
+ #: admin.inc.php:263
243
  msgid "Do not display thumbnails, only text."
244
  msgstr ""
245
 
246
+ #: admin.inc.php:267
247
  msgid "Maximum width of the thumbnail: "
248
  msgstr ""
249
 
250
+ #: admin.inc.php:270
251
  msgid "Maximum height of the thumbnail: "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:273
255
  msgid "Use timthumb to generate thumbnails? "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:274
259
  msgid ""
260
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
261
  "\">timthumb</a> will be used to generate thumbnails"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:276
265
  msgid "Post thumbnail meta field name: "
266
  msgstr ""
267
 
268
+ #: admin.inc.php:277
269
  msgid ""
270
  "The value of this field should contain the image source and is set in the "
271
  "<em>Add New Post</em> screen"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:279
275
  msgid ""
276
  "If the postmeta is not set, then should the plugin extract the first image "
277
  "from the post?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:280
281
  msgid ""
282
  "This could slow down the loading of your page if the first image in the "
283
  "related posts is large in file-size"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:282
287
  msgid "Use default thumbnail? "
288
  msgstr ""
289
 
290
+ #: admin.inc.php:283
291
  msgid ""
292
  "If checked, when no thumbnail is found, show a default one from the URL "
293
  "below. If not checked and no thumbnail is found, no image will be shown."
294
  msgstr ""
295
 
296
+ #: admin.inc.php:285
297
  msgid "Default thumbnail: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:286
301
  msgid ""
302
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
303
  "then it will check the meta field. If this is not available, then it will "
304
  "show the default image as specified above"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:292
308
  msgid "Custom Styles"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:295
312
  msgid "Custom CSS to add to header:"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:298
316
  msgid ""
317
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
318
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
319
  "available CSS classes to style."
320
  msgstr ""
321
 
322
+ #: admin.inc.php:303
323
  msgid "Maintenance"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:307
327
  msgid ""
328
  "Over time the Daily Top 10 database grows in size, which reduces the "
329
  "performance of the plugin. Cleaning the database at regular intervals could "
330
  "improve performance, especially on high traffic blogs."
331
  msgstr ""
332
 
333
+ #: admin.inc.php:308
334
  msgid ""
335
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
336
  "everytime the job is rescheduled (i.e. you change the settings below). This "
337
  "causes the daily posts table to reset."
338
  msgstr ""
339
 
340
+ #: admin.inc.php:311
341
  msgid "Enable scheduled maintenance of daily tables:"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:316
345
  msgid "Time to run maintenance"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:319
349
  msgid "How often should the maintenance be run:"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:323
353
  msgid "Daily"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:327
357
  msgid "Weekly"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:331
361
  msgid "Fortnightly"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:335
365
  msgid "Monthly"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:344
369
  msgid "The cron job has been scheduled. Maintenance will run "
370
  msgstr ""
371
 
372
+ #: admin.inc.php:349
373
  msgid "The cron job is missing. Please resave this page to add the job"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:354
377
  msgid "Maintenance is turned off"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:362
381
  msgid "Reset count"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:365
385
  msgid ""
386
  "This cannot be reversed. Make sure that your database has been backed up "
387
  "before proceeding"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:368
391
  #, fuzzy
392
  msgid "Reset Popular Posts"
393
  msgstr "Папулярныя запісы"
394
 
395
+ #: admin.inc.php:368
396
  msgid "Are you sure you want to reset the popular posts?"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:369
400
  #, fuzzy
401
  msgid "Reset Daily Popular Posts"
402
  msgstr "Папулярныя сёння запісы"
403
 
404
+ #: admin.inc.php:369
405
  msgid "Are you sure you want to reset the daily popular posts?"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:370
409
  msgid "Clear duplicates"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:370
413
  msgid "This will delete the duplicate entries in the tables. Proceed?"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:374
417
  #, fuzzy
418
  msgid "Save Options"
419
  msgstr "Налады ўбудовы:"
420
 
421
+ #: admin.inc.php:375
422
  #, fuzzy
423
  msgid "Default Options"
424
  msgstr "Налады ўбудовы:"
425
 
426
+ #: admin.inc.php:375
427
  msgid "Do you want to set options to Default?"
428
  msgstr "Скінуць налады ўбудовы?"
429
 
430
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
431
  msgid "Popular Posts"
432
  msgstr "Папулярныя запісы"
433
 
434
+ #: admin.inc.php:406 admin.inc.php:480
435
  msgid "Daily Popular Posts"
436
  msgstr "Папулярныя сёння запісы"
437
 
438
+ #: admin.inc.php:428
439
  #, fuzzy
440
  msgid "Support the development"
441
  msgstr "Падтрымаеце стваральніка ўбудовы"
442
 
443
+ #: admin.inc.php:436
444
  msgid "Enter amount in USD: "
445
  msgstr ""
446
 
447
+ #: admin.inc.php:440
448
  msgid "Send your donation to the author of"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:446
452
+ msgid "Follow us"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:452
456
  msgid "Quick Links"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:454
460
  msgid "Top 10 plugin page"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:455
464
  msgid "Other plugins"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:456
468
  msgid "Ajay's blog"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:457 top-10.php:757
472
  msgid "Support"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:458
476
  msgid "Follow @ajaydsouza on Twitter"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:462
480
  msgid "Recent developments"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:474
484
+ #, fuzzy
485
+ msgid "Top 10 Settings"
486
+ msgstr "Топ 10 запісаў"
487
+
488
+ #: admin.inc.php:474
489
  msgid "Top 10"
490
  msgstr "Топ 10 запісаў"
491
 
492
+ #: admin.inc.php:477
493
+ #, fuzzy
494
+ msgid "Overall Popular Posts"
495
+ msgstr "Паглядзець усе Папулярныя запісы"
496
+
497
+ #: admin.inc.php:595
498
  msgid "Results"
499
  msgstr "Вынікі"
500
 
501
+ #: admin.inc.php:597 admin.inc.php:603
502
  msgid "of"
503
  msgstr "з"
504
 
505
+ #: admin.inc.php:601
506
  msgid "Page"
507
  msgstr "Старонка"
508
 
509
+ #: admin.inc.php:615
510
  msgid "View Daily Popular Posts"
511
  msgstr "Паглядзець усе Папулярныя сёння запісы"
512
 
513
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
514
  msgid "Results per-page:"
515
  msgstr "Вынікаў на старонку:"
516
 
517
+ #: admin.inc.php:628
518
+ msgid "View Overall Popular Posts"
519
+ msgstr "Паглядзець усе Папулярныя запісы"
520
+
521
+ #: admin.inc.php:657
522
  msgid "Previous"
523
  msgstr "Папярэдняя старонка"
524
 
525
+ #: admin.inc.php:675
526
  msgid "Next"
527
  msgstr "Наступная старонка"
528
 
529
+ #: admin.inc.php:698
530
  msgid "Daily Popular"
531
  msgstr "Папулярныя сёння запісы"
532
 
533
+ #: admin.inc.php:709
534
  msgid "Total / Today's Views"
535
  msgstr "Усяго / Сёння праглядаў"
536
 
537
+ #: top-10.php:318
538
  msgid "Display the posts popular this week"
539
  msgstr ""
540
 
541
+ #: top-10.php:332
542
  msgid "Title"
543
  msgstr ""
544
 
545
+ #: top-10.php:337
546
  msgid "No. of posts"
547
  msgstr ""
548
 
549
+ #: top-10.php:342
550
  msgid "Overall"
551
  msgstr ""
552
 
553
+ #: top-10.php:343
554
  msgid "Custom time period (Enter below)"
555
  msgstr ""
556
 
557
+ #: top-10.php:348
558
  msgid "Range in number of days (applies only to custom option above)"
559
  msgstr ""
560
 
561
+ #: top-10.php:352
562
  msgid "Thumbnail options"
563
  msgstr ""
564
 
565
+ #: top-10.php:354
566
  #, fuzzy
567
  msgid "Thumbnails inline, before title"
568
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
569
 
570
+ #: top-10.php:355
571
  #, fuzzy
572
  msgid "Thumbnails inline, after title"
573
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
574
 
575
+ #: top-10.php:356
576
  msgid "Only thumbnails, no text"
577
  msgstr ""
578
 
579
+ #: top-10.php:357
580
  msgid "No thumbnails, only text."
581
  msgstr ""
582
 
583
+ #: top-10.php:362
584
  msgid " Show excerpt?"
585
  msgstr ""
586
 
587
+ #: top-10.php:431
588
  msgid "<h3>Popular Posts</h3>"
589
  msgstr "<h3>Папулярныя запісы</h3>"
590
 
591
+ #: top-10.php:432
592
  msgid "<h3>Daily Popular</h3>"
593
  msgstr "<h3>Папулярныя сёння запісы</h3>"
594
 
595
+ #: top-10.php:433
596
  #, fuzzy
597
  msgid "No top posts yet"
598
  msgstr "Загаловак блока Папулярных запісаў:"
599
 
600
+ #: top-10.php:721
601
  msgid "Once Weekly"
602
  msgstr ""
603
 
604
+ #: top-10.php:722
605
  msgid "Once Fortnightly"
606
  msgstr ""
607
 
608
+ #: top-10.php:723
609
  msgid "Once Monthly"
610
  msgstr ""
611
 
612
+ #: top-10.php:744
613
  msgid "Settings"
614
  msgstr ""
615
 
616
+ #: top-10.php:758
617
  msgid "Donate"
618
  msgstr ""
619
 
626
  #~ msgstr ""
627
  #~ "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага "
628
  #~ "будзе дададзена асобная калонка"
 
 
 
 
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-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"
@@ -12,111 +12,132 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,430 +145,442 @@ msgid ""
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
 
475
- #: top-10.php:257
476
  msgid "Display the posts popular this week"
477
  msgstr ""
478
 
479
- #: top-10.php:271
480
  msgid "Title"
481
  msgstr ""
482
 
483
- #: top-10.php:276
484
  msgid "No. of posts"
485
  msgstr ""
486
 
487
- #: top-10.php:281
488
  msgid "Overall"
489
  msgstr ""
490
 
491
- #: top-10.php:282
492
  msgid "Custom time period (Enter below)"
493
  msgstr ""
494
 
495
- #: top-10.php:287
496
  msgid "Range in number of days (applies only to custom option above)"
497
  msgstr ""
498
 
499
- #: top-10.php:291
500
  msgid "Thumbnail options"
501
  msgstr ""
502
 
503
- #: top-10.php:293
504
  msgid "Thumbnails inline, before title"
505
  msgstr ""
506
 
507
- #: top-10.php:294
508
  msgid "Thumbnails inline, after title"
509
  msgstr ""
510
 
511
- #: top-10.php:295
512
  msgid "Only thumbnails, no text"
513
  msgstr ""
514
 
515
- #: top-10.php:296
516
  msgid "No thumbnails, only text."
517
  msgstr ""
518
 
519
- #: top-10.php:301
520
  msgid " Show excerpt?"
521
  msgstr ""
522
 
523
- #: top-10.php:367
524
  msgid "<h3>Popular Posts</h3>"
525
  msgstr ""
526
 
527
- #: top-10.php:368
528
  msgid "<h3>Daily Popular</h3>"
529
  msgstr ""
530
 
531
- #: top-10.php:369
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 ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:45-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr ""
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
 
58
+ #: admin.inc.php:138
59
+ msgid "Exclude Pages?"
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:139
63
  msgid ""
64
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
65
  "continue to be counted."
66
  msgstr ""
67
 
68
+ #: admin.inc.php:141
69
  msgid "Exclude Categories: "
70
  msgstr ""
71
 
72
+ #: admin.inc.php:156
73
+ msgid ""
74
+ "Comma separated list of category slugs. The field above has an autocomplete "
75
+ "so simply start typing in the starting letters and it will prompt you with "
76
+ "options"
77
+ msgstr ""
78
+
79
+ #: admin.inc.php:160
80
  msgid "Display number of views on:"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:161
84
  msgid "Posts"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:162
88
  msgid "Pages"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:165
92
+ msgid "Always display latest post count"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:167
96
+ msgid ""
97
+ "This option uses JavaScript and will increase your page load time. Turn this "
98
+ "off if you are not using caching plugins or are OK with displaying older "
99
+ "cached counts"
100
  msgstr ""
101
 
102
  #: admin.inc.php:170
103
+ msgid "Always display latest post count in the daily lists"
104
  msgstr ""
105
 
106
  #: admin.inc.php:172
107
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
108
  msgstr ""
109
 
110
  #: admin.inc.php:175
111
+ msgid "Track visits of authors on their own posts?"
112
  msgstr ""
113
 
114
  #: admin.inc.php:179
115
+ msgid "Track visits of admins?"
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:183
119
+ msgid "Display page views on Posts > All Posts in Admin"
120
+ msgstr ""
121
+
122
+ #: admin.inc.php:187
123
  msgid "Link to Top 10 plugin page"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:189
127
  msgid ""
128
  "A link to the plugin is added as an extra list item to the list of popular "
129
  "posts"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:196
133
  msgid "Output Options"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:199
137
  msgid "Format to display the count in: "
138
  msgstr ""
139
 
140
+ #: admin.inc.php:202
141
  msgid ""
142
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
143
  "%</code> to display the daily count and <code>%overallcount%</code> to "
145
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:204
149
  msgid "Title of popular posts: "
150
  msgstr ""
151
 
152
+ #: admin.inc.php:207
153
  msgid "Title of daily popular posts: "
154
  msgstr ""
155
 
156
+ #: admin.inc.php:210
157
  msgid "When there are no posts, what should be shown?"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:214
161
  msgid "Blank Output"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:218
165
  msgid "Display:"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:222
169
  msgid "Show post excerpt in list?"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:225
173
  msgid "Length of excerpt (in words): "
174
  msgstr ""
175
 
176
+ #: admin.inc.php:228
177
+ msgid "Display number of page views in popular lists?"
178
+ msgstr ""
179
+
180
+ #: admin.inc.php:231
181
  msgid "Customize the output:"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:233
185
  msgid "HTML to display before the list of posts: "
186
  msgstr ""
187
 
188
+ #: admin.inc.php:236
189
  msgid "HTML to display before each list item: "
190
  msgstr ""
191
 
192
+ #: admin.inc.php:239
193
  msgid "HTML to display after each list item: "
194
  msgstr ""
195
 
196
+ #: admin.inc.php:242
197
  msgid "HTML to display after the list of posts: "
198
  msgstr ""
199
 
200
+ #: admin.inc.php:245
201
  msgid "Post thumbnail options:"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:247
205
  msgid "Location of post thumbnail:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:251
209
  msgid "Display thumbnails inline with posts, before title"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:255
213
  msgid "Display thumbnails inline with posts, after title"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:259
217
  msgid "Display only thumbnails, no text"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:263
221
  msgid "Do not display thumbnails, only text."
222
  msgstr ""
223
 
224
+ #: admin.inc.php:267
225
  msgid "Maximum width of the thumbnail: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:270
229
  msgid "Maximum height of the thumbnail: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:273
233
  msgid "Use timthumb to generate thumbnails? "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:274
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:276
243
  msgid "Post thumbnail meta field name: "
244
  msgstr ""
245
 
246
+ #: admin.inc.php:277
247
  msgid ""
248
  "The value of this field should contain the image source and is set in the "
249
  "<em>Add New Post</em> screen"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:279
253
  msgid ""
254
  "If the postmeta is not set, then should the plugin extract the first image "
255
  "from the post?"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:280
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
+ #: admin.inc.php:282
265
  msgid "Use default thumbnail? "
266
  msgstr ""
267
 
268
+ #: admin.inc.php:283
269
  msgid ""
270
  "If checked, when no thumbnail is found, show a default one from the URL "
271
  "below. If not checked and no thumbnail is found, no image will be shown."
272
  msgstr ""
273
 
274
+ #: admin.inc.php:285
275
  msgid "Default thumbnail: "
276
  msgstr ""
277
 
278
+ #: admin.inc.php:286
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:292
286
  msgid "Custom Styles"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:295
290
  msgid "Custom CSS to add to header:"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:298
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:303
301
  msgid "Maintenance"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:307
305
  msgid ""
306
  "Over time the Daily Top 10 database grows in size, which reduces the "
307
  "performance of the plugin. Cleaning the database at regular intervals could "
308
  "improve performance, especially on high traffic blogs."
309
  msgstr ""
310
 
311
+ #: admin.inc.php:308
312
  msgid ""
313
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
314
  "everytime the job is rescheduled (i.e. you change the settings below). This "
315
  "causes the daily posts table to reset."
316
  msgstr ""
317
 
318
+ #: admin.inc.php:311
319
  msgid "Enable scheduled maintenance of daily tables:"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:316
323
  msgid "Time to run maintenance"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:319
327
  msgid "How often should the maintenance be run:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:323
331
  msgid "Daily"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:327
335
  msgid "Weekly"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:331
339
  msgid "Fortnightly"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:335
343
  msgid "Monthly"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:344
347
  msgid "The cron job has been scheduled. Maintenance will run "
348
  msgstr ""
349
 
350
+ #: admin.inc.php:349
351
  msgid "The cron job is missing. Please resave this page to add the job"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:354
355
  msgid "Maintenance is turned off"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:362
359
  msgid "Reset count"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:365
363
  msgid ""
364
  "This cannot be reversed. Make sure that your database has been backed up "
365
  "before proceeding"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:368
369
  msgid "Reset Popular Posts"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:368
373
  msgid "Are you sure you want to reset the popular posts?"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:369
377
  msgid "Reset Daily Popular Posts"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:369
381
  msgid "Are you sure you want to reset the daily popular posts?"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:370
385
  msgid "Clear duplicates"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:370
389
  msgid "This will delete the duplicate entries in the tables. Proceed?"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:374
393
  msgid "Save Options"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:375
397
  msgid "Default Options"
398
  msgstr ""
399
 
400
+ #: admin.inc.php:375
401
  msgid "Do you want to set options to Default?"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
405
  msgid "Popular Posts"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:406 admin.inc.php:480
409
  msgid "Daily Popular Posts"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:428
413
  msgid "Support the development"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:436
417
  msgid "Enter amount in USD: "
418
  msgstr ""
419
 
420
+ #: admin.inc.php:440
421
  msgid "Send your donation to the author of"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:446
425
+ msgid "Follow us"
426
  msgstr ""
427
 
428
+ #: admin.inc.php:452
429
  msgid "Quick Links"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:454
433
  msgid "Top 10 plugin page"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:455
437
  msgid "Other plugins"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:456
441
  msgid "Ajay's blog"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:457 top-10.php:757
445
  msgid "Support"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:458
449
  msgid "Follow @ajaydsouza on Twitter"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:462
453
  msgid "Recent developments"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:474
457
+ msgid "Top 10 Settings"
458
+ msgstr ""
459
+
460
+ #: admin.inc.php:474
461
  msgid "Top 10"
462
  msgstr ""
463
 
464
+ #: admin.inc.php:477
465
+ msgid "Overall Popular Posts"
466
+ msgstr ""
467
+
468
+ #: admin.inc.php:595
469
  msgid "Results"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:597 admin.inc.php:603
473
  msgid "of"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:601
477
  msgid "Page"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:615
481
  msgid "View Daily Popular Posts"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:618 admin.inc.php:631
485
+ msgid "Results per-page:"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:628
489
+ msgid "View Overall Popular Posts"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:657
493
  msgid "Previous"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:675
497
  msgid "Next"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:698
501
  msgid "Daily Popular"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:709
505
  msgid "Total / Today's Views"
506
  msgstr ""
507
 
508
+ #: top-10.php:318
509
  msgid "Display the posts popular this week"
510
  msgstr ""
511
 
512
+ #: top-10.php:332
513
  msgid "Title"
514
  msgstr ""
515
 
516
+ #: top-10.php:337
517
  msgid "No. of posts"
518
  msgstr ""
519
 
520
+ #: top-10.php:342
521
  msgid "Overall"
522
  msgstr ""
523
 
524
+ #: top-10.php:343
525
  msgid "Custom time period (Enter below)"
526
  msgstr ""
527
 
528
+ #: top-10.php:348
529
  msgid "Range in number of days (applies only to custom option above)"
530
  msgstr ""
531
 
532
+ #: top-10.php:352
533
  msgid "Thumbnail options"
534
  msgstr ""
535
 
536
+ #: top-10.php:354
537
  msgid "Thumbnails inline, before title"
538
  msgstr ""
539
 
540
+ #: top-10.php:355
541
  msgid "Thumbnails inline, after title"
542
  msgstr ""
543
 
544
+ #: top-10.php:356
545
  msgid "Only thumbnails, no text"
546
  msgstr ""
547
 
548
+ #: top-10.php:357
549
  msgid "No thumbnails, only text."
550
  msgstr ""
551
 
552
+ #: top-10.php:362
553
  msgid " Show excerpt?"
554
  msgstr ""
555
 
556
+ #: top-10.php:431
557
  msgid "<h3>Popular Posts</h3>"
558
  msgstr ""
559
 
560
+ #: top-10.php:432
561
  msgid "<h3>Daily Popular</h3>"
562
  msgstr ""
563
 
564
+ #: top-10.php:433
565
  msgid "No top posts yet"
566
  msgstr ""
567
 
568
+ #: top-10.php:721
569
  msgid "Once Weekly"
570
  msgstr ""
571
 
572
+ #: top-10.php:722
573
  msgid "Once Fortnightly"
574
  msgstr ""
575
 
576
+ #: top-10.php:723
577
  msgid "Once Monthly"
578
  msgstr ""
579
 
580
+ #: top-10.php:744
581
  msgid "Settings"
582
  msgstr ""
583
 
584
+ #: top-10.php:758
585
  msgid "Donate"
586
  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-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"
@@ -12,111 +12,132 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,430 +145,442 @@ msgid ""
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
 
475
- #: top-10.php:257
476
  msgid "Display the posts popular this week"
477
  msgstr ""
478
 
479
- #: top-10.php:271
480
  msgid "Title"
481
  msgstr ""
482
 
483
- #: top-10.php:276
484
  msgid "No. of posts"
485
  msgstr ""
486
 
487
- #: top-10.php:281
488
  msgid "Overall"
489
  msgstr ""
490
 
491
- #: top-10.php:282
492
  msgid "Custom time period (Enter below)"
493
  msgstr ""
494
 
495
- #: top-10.php:287
496
  msgid "Range in number of days (applies only to custom option above)"
497
  msgstr ""
498
 
499
- #: top-10.php:291
500
  msgid "Thumbnail options"
501
  msgstr ""
502
 
503
- #: top-10.php:293
504
  msgid "Thumbnails inline, before title"
505
  msgstr ""
506
 
507
- #: top-10.php:294
508
  msgid "Thumbnails inline, after title"
509
  msgstr ""
510
 
511
- #: top-10.php:295
512
  msgid "Only thumbnails, no text"
513
  msgstr ""
514
 
515
- #: top-10.php:296
516
  msgid "No thumbnails, only text."
517
  msgstr ""
518
 
519
- #: top-10.php:301
520
  msgid " Show excerpt?"
521
  msgstr ""
522
 
523
- #: top-10.php:367
524
  msgid "<h3>Popular Posts</h3>"
525
  msgstr ""
526
 
527
- #: top-10.php:368
528
  msgid "<h3>Daily Popular</h3>"
529
  msgstr ""
530
 
531
- #: top-10.php:369
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 ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:45-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr ""
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
 
58
+ #: admin.inc.php:138
59
+ msgid "Exclude Pages?"
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:139
63
  msgid ""
64
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
65
  "continue to be counted."
66
  msgstr ""
67
 
68
+ #: admin.inc.php:141
69
  msgid "Exclude Categories: "
70
  msgstr ""
71
 
72
+ #: admin.inc.php:156
73
+ msgid ""
74
+ "Comma separated list of category slugs. The field above has an autocomplete "
75
+ "so simply start typing in the starting letters and it will prompt you with "
76
+ "options"
77
+ msgstr ""
78
+
79
+ #: admin.inc.php:160
80
  msgid "Display number of views on:"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:161
84
  msgid "Posts"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:162
88
  msgid "Pages"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:165
92
+ msgid "Always display latest post count"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:167
96
+ msgid ""
97
+ "This option uses JavaScript and will increase your page load time. Turn this "
98
+ "off if you are not using caching plugins or are OK with displaying older "
99
+ "cached counts"
100
  msgstr ""
101
 
102
  #: admin.inc.php:170
103
+ msgid "Always display latest post count in the daily lists"
104
  msgstr ""
105
 
106
  #: admin.inc.php:172
107
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
108
  msgstr ""
109
 
110
  #: admin.inc.php:175
111
+ msgid "Track visits of authors on their own posts?"
112
  msgstr ""
113
 
114
  #: admin.inc.php:179
115
+ msgid "Track visits of admins?"
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:183
119
+ msgid "Display page views on Posts > All Posts in Admin"
120
+ msgstr ""
121
+
122
+ #: admin.inc.php:187
123
  msgid "Link to Top 10 plugin page"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:189
127
  msgid ""
128
  "A link to the plugin is added as an extra list item to the list of popular "
129
  "posts"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:196
133
  msgid "Output Options"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:199
137
  msgid "Format to display the count in: "
138
  msgstr ""
139
 
140
+ #: admin.inc.php:202
141
  msgid ""
142
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
143
  "%</code> to display the daily count and <code>%overallcount%</code> to "
145
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:204
149
  msgid "Title of popular posts: "
150
  msgstr ""
151
 
152
+ #: admin.inc.php:207
153
  msgid "Title of daily popular posts: "
154
  msgstr ""
155
 
156
+ #: admin.inc.php:210
157
  msgid "When there are no posts, what should be shown?"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:214
161
  msgid "Blank Output"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:218
165
  msgid "Display:"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:222
169
  msgid "Show post excerpt in list?"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:225
173
  msgid "Length of excerpt (in words): "
174
  msgstr ""
175
 
176
+ #: admin.inc.php:228
177
+ msgid "Display number of page views in popular lists?"
178
+ msgstr ""
179
+
180
+ #: admin.inc.php:231
181
  msgid "Customize the output:"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:233
185
  msgid "HTML to display before the list of posts: "
186
  msgstr ""
187
 
188
+ #: admin.inc.php:236
189
  msgid "HTML to display before each list item: "
190
  msgstr ""
191
 
192
+ #: admin.inc.php:239
193
  msgid "HTML to display after each list item: "
194
  msgstr ""
195
 
196
+ #: admin.inc.php:242
197
  msgid "HTML to display after the list of posts: "
198
  msgstr ""
199
 
200
+ #: admin.inc.php:245
201
  msgid "Post thumbnail options:"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:247
205
  msgid "Location of post thumbnail:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:251
209
  msgid "Display thumbnails inline with posts, before title"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:255
213
  msgid "Display thumbnails inline with posts, after title"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:259
217
  msgid "Display only thumbnails, no text"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:263
221
  msgid "Do not display thumbnails, only text."
222
  msgstr ""
223
 
224
+ #: admin.inc.php:267
225
  msgid "Maximum width of the thumbnail: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:270
229
  msgid "Maximum height of the thumbnail: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:273
233
  msgid "Use timthumb to generate thumbnails? "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:274
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:276
243
  msgid "Post thumbnail meta field name: "
244
  msgstr ""
245
 
246
+ #: admin.inc.php:277
247
  msgid ""
248
  "The value of this field should contain the image source and is set in the "
249
  "<em>Add New Post</em> screen"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:279
253
  msgid ""
254
  "If the postmeta is not set, then should the plugin extract the first image "
255
  "from the post?"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:280
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
+ #: admin.inc.php:282
265
  msgid "Use default thumbnail? "
266
  msgstr ""
267
 
268
+ #: admin.inc.php:283
269
  msgid ""
270
  "If checked, when no thumbnail is found, show a default one from the URL "
271
  "below. If not checked and no thumbnail is found, no image will be shown."
272
  msgstr ""
273
 
274
+ #: admin.inc.php:285
275
  msgid "Default thumbnail: "
276
  msgstr ""
277
 
278
+ #: admin.inc.php:286
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:292
286
  msgid "Custom Styles"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:295
290
  msgid "Custom CSS to add to header:"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:298
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:303
301
  msgid "Maintenance"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:307
305
  msgid ""
306
  "Over time the Daily Top 10 database grows in size, which reduces the "
307
  "performance of the plugin. Cleaning the database at regular intervals could "
308
  "improve performance, especially on high traffic blogs."
309
  msgstr ""
310
 
311
+ #: admin.inc.php:308
312
  msgid ""
313
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
314
  "everytime the job is rescheduled (i.e. you change the settings below). This "
315
  "causes the daily posts table to reset."
316
  msgstr ""
317
 
318
+ #: admin.inc.php:311
319
  msgid "Enable scheduled maintenance of daily tables:"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:316
323
  msgid "Time to run maintenance"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:319
327
  msgid "How often should the maintenance be run:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:323
331
  msgid "Daily"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:327
335
  msgid "Weekly"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:331
339
  msgid "Fortnightly"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:335
343
  msgid "Monthly"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:344
347
  msgid "The cron job has been scheduled. Maintenance will run "
348
  msgstr ""
349
 
350
+ #: admin.inc.php:349
351
  msgid "The cron job is missing. Please resave this page to add the job"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:354
355
  msgid "Maintenance is turned off"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:362
359
  msgid "Reset count"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:365
363
  msgid ""
364
  "This cannot be reversed. Make sure that your database has been backed up "
365
  "before proceeding"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:368
369
  msgid "Reset Popular Posts"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:368
373
  msgid "Are you sure you want to reset the popular posts?"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:369
377
  msgid "Reset Daily Popular Posts"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:369
381
  msgid "Are you sure you want to reset the daily popular posts?"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:370
385
  msgid "Clear duplicates"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:370
389
  msgid "This will delete the duplicate entries in the tables. Proceed?"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:374
393
  msgid "Save Options"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:375
397
  msgid "Default Options"
398
  msgstr ""
399
 
400
+ #: admin.inc.php:375
401
  msgid "Do you want to set options to Default?"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
405
  msgid "Popular Posts"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:406 admin.inc.php:480
409
  msgid "Daily Popular Posts"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:428
413
  msgid "Support the development"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:436
417
  msgid "Enter amount in USD: "
418
  msgstr ""
419
 
420
+ #: admin.inc.php:440
421
  msgid "Send your donation to the author of"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:446
425
+ msgid "Follow us"
426
  msgstr ""
427
 
428
+ #: admin.inc.php:452
429
  msgid "Quick Links"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:454
433
  msgid "Top 10 plugin page"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:455
437
  msgid "Other plugins"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:456
441
  msgid "Ajay's blog"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:457 top-10.php:757
445
  msgid "Support"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:458
449
  msgid "Follow @ajaydsouza on Twitter"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:462
453
  msgid "Recent developments"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:474
457
+ msgid "Top 10 Settings"
458
+ msgstr ""
459
+
460
+ #: admin.inc.php:474
461
  msgid "Top 10"
462
  msgstr ""
463
 
464
+ #: admin.inc.php:477
465
+ msgid "Overall Popular Posts"
466
+ msgstr ""
467
+
468
+ #: admin.inc.php:595
469
  msgid "Results"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:597 admin.inc.php:603
473
  msgid "of"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:601
477
  msgid "Page"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:615
481
  msgid "View Daily Popular Posts"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:618 admin.inc.php:631
485
+ msgid "Results per-page:"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:628
489
+ msgid "View Overall Popular Posts"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:657
493
  msgid "Previous"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:675
497
  msgid "Next"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:698
501
  msgid "Daily Popular"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:709
505
  msgid "Total / Today's Views"
506
  msgstr ""
507
 
508
+ #: top-10.php:318
509
  msgid "Display the posts popular this week"
510
  msgstr ""
511
 
512
+ #: top-10.php:332
513
  msgid "Title"
514
  msgstr ""
515
 
516
+ #: top-10.php:337
517
  msgid "No. of posts"
518
  msgstr ""
519
 
520
+ #: top-10.php:342
521
  msgid "Overall"
522
  msgstr ""
523
 
524
+ #: top-10.php:343
525
  msgid "Custom time period (Enter below)"
526
  msgstr ""
527
 
528
+ #: top-10.php:348
529
  msgid "Range in number of days (applies only to custom option above)"
530
  msgstr ""
531
 
532
+ #: top-10.php:352
533
  msgid "Thumbnail options"
534
  msgstr ""
535
 
536
+ #: top-10.php:354
537
  msgid "Thumbnails inline, before title"
538
  msgstr ""
539
 
540
+ #: top-10.php:355
541
  msgid "Thumbnails inline, after title"
542
  msgstr ""
543
 
544
+ #: top-10.php:356
545
  msgid "Only thumbnails, no text"
546
  msgstr ""
547
 
548
+ #: top-10.php:357
549
  msgid "No thumbnails, only text."
550
  msgstr ""
551
 
552
+ #: top-10.php:362
553
  msgid " Show excerpt?"
554
  msgstr ""
555
 
556
+ #: top-10.php:431
557
  msgid "<h3>Popular Posts</h3>"
558
  msgstr ""
559
 
560
+ #: top-10.php:432
561
  msgid "<h3>Daily Popular</h3>"
562
  msgstr ""
563
 
564
+ #: top-10.php:433
565
  msgid "No top posts yet"
566
  msgstr ""
567
 
568
+ #: top-10.php:721
569
  msgid "Once Weekly"
570
  msgstr ""
571
 
572
+ #: top-10.php:722
573
  msgid "Once Fortnightly"
574
  msgstr ""
575
 
576
+ #: top-10.php:723
577
  msgid "Once Monthly"
578
  msgstr ""
579
 
580
+ #: top-10.php:744
581
  msgid "Settings"
582
  msgstr ""
583
 
584
+ #: top-10.php:758
585
  msgid "Donate"
586
  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-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"
@@ -12,50 +12,56 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,55 +69,71 @@ msgstr ""
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 "
101
- "time"
102
  msgstr ""
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,16 +143,16 @@ msgstr ""
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,108 +164,113 @@ msgstr ""
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,7 +281,7 @@ msgstr ""
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 "
@@ -265,11 +292,11 @@ msgstr ""
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,95 +306,95 @@ msgstr ""
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,229 +402,239 @@ msgstr ""
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
 
517
- #: top-10.php:257
518
  msgid "Display the posts popular this week"
519
  msgstr "Mostrar los posts populares de esta semana"
520
 
521
- #: top-10.php:271
522
  msgid "Title"
523
  msgstr ""
524
 
525
- #: top-10.php:276
526
  msgid "No. of posts"
527
  msgstr ""
528
 
529
- #: top-10.php:281
530
  msgid "Overall"
531
  msgstr ""
532
 
533
- #: top-10.php:282
534
  msgid "Custom time period (Enter below)"
535
  msgstr ""
536
 
537
- #: top-10.php:287
538
  msgid "Range in number of days (applies only to custom option above)"
539
  msgstr ""
540
 
541
- #: top-10.php:291
542
  #, fuzzy
543
  msgid "Thumbnail options"
544
  msgstr "Los parámetros del thumbnail:"
545
 
546
- #: top-10.php:293
547
  #, fuzzy
548
  msgid "Thumbnails inline, before title"
549
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
550
 
551
- #: top-10.php:294
552
  #, fuzzy
553
  msgid "Thumbnails inline, after title"
554
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
555
 
556
- #: top-10.php:295
557
  #, fuzzy
558
  msgid "Only thumbnails, no text"
559
  msgstr "Mostrar solamente thumbnails, no el texto"
560
 
561
- #: top-10.php:296
562
  #, fuzzy
563
  msgid "No thumbnails, only text."
564
  msgstr "No mostrar thumbnails, sólo el texto"
565
 
566
- #: top-10.php:301
567
  #, fuzzy
568
  msgid " Show excerpt?"
569
  msgstr "¿Mostrar un fragmento del post en la lista?"
570
 
571
- #: top-10.php:367
572
  msgid "<h3>Popular Posts</h3>"
573
  msgstr "Los posts populares"
574
 
575
- #: top-10.php:368
576
  msgid "<h3>Daily Popular</h3>"
577
  msgstr "Diario Populares"
578
 
579
- #: top-10.php:369
580
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:46-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Configuraciones guardadas con éxito"
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Los parametros se configuran de manera predeterminada"
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Reiniciar el Top de los 10 posts más populares"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Mostrar el número de posts más populares"
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
  "Los post diarios más populares deben contener el número de visitas al día"
58
 
59
+ #: admin.inc.php:138
60
+ #, fuzzy
61
+ msgid "Exclude Pages?"
62
+ msgstr "Excluir las Categorías"
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "¿Excluir la Páginas que muestran los posts más Populares? También será "
70
  "contado el número de visitas"
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr "Excluir las Categorías"
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "La página"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
  msgstr ""
 
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
117
  "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
118
 
119
  #: admin.inc.php:175
120
+ msgid "Track visits of authors on their own posts?"
121
+ msgstr "¿Observar las visitas de los autores a sus propios posts?"
122
+
123
+ #: admin.inc.php:179
124
+ #, fuzzy
125
+ msgid "Track visits of admins?"
126
+ msgstr "¿Observar las visitas de los autores a sus propios posts?"
127
+
128
+ #: admin.inc.php:183
129
  msgid "Display page views on Posts > All Posts in Admin"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:187
133
  msgid "Link to Top 10 plugin page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:189
137
  #, fuzzy
138
  msgid ""
139
  "A link to the plugin is added as an extra list item to the list of popular "
143
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
144
  "agradeceríamos al hacerlo!"
145
 
146
+ #: admin.inc.php:196
147
  #, fuzzy
148
  msgid "Output Options"
149
  msgstr "Los Parámetros Resultantes"
150
 
151
+ #: admin.inc.php:199
152
  msgid "Format to display the count in: "
153
  msgstr "El formato de visualización de la cuenta: "
154
 
155
+ #: admin.inc.php:202
156
  #, fuzzy
157
  msgid ""
158
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
164
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
165
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
166
 
167
+ #: admin.inc.php:204
168
  msgid "Title of popular posts: "
169
  msgstr "El título de los posts más populares"
170
 
171
+ #: admin.inc.php:207
172
  msgid "Title of daily popular posts: "
173
  msgstr "El título de los posts diarios más populares"
174
 
175
+ #: admin.inc.php:210
176
  msgid "When there are no posts, what should be shown?"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:214
180
  msgid "Blank Output"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:218
184
  msgid "Display:"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:222
188
  msgid "Show post excerpt in list?"
189
  msgstr "¿Mostrar un fragmento del post en la lista?"
190
 
191
+ #: admin.inc.php:225
192
  msgid "Length of excerpt (in words): "
193
  msgstr "La longitud del fragmento(en palabras):"
194
 
195
+ #: admin.inc.php:228
196
+ msgid "Display number of page views in popular lists?"
197
+ msgstr ""
198
+ "¿Mostrar el número de visitas de la página en las listas más populares?"
199
+
200
+ #: admin.inc.php:231
201
  msgid "Customize the output:"
202
  msgstr "Personalizar el resultado:"
203
 
204
+ #: admin.inc.php:233
205
  msgid "HTML to display before the list of posts: "
206
  msgstr "HTML mostrar antes de la lista de posts:"
207
 
208
+ #: admin.inc.php:236
209
  msgid "HTML to display before each list item: "
210
  msgstr "HTML mostrar ante cada elemento de la lista:"
211
 
212
+ #: admin.inc.php:239
213
  msgid "HTML to display after each list item: "
214
  msgstr "HTML mostrar después de cada elemento de la lista:"
215
 
216
+ #: admin.inc.php:242
217
  msgid "HTML to display after the list of posts: "
218
  msgstr "HTML mostrar después de la lista de posts:"
219
 
220
+ #: admin.inc.php:245
221
  msgid "Post thumbnail options:"
222
  msgstr "Los parámetros del thumbnail:"
223
 
224
+ #: admin.inc.php:247
225
  msgid "Location of post thumbnail:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:251
229
  msgid "Display thumbnails inline with posts, before title"
230
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
231
 
232
+ #: admin.inc.php:255
233
  msgid "Display thumbnails inline with posts, after title"
234
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
235
 
236
+ #: admin.inc.php:259
237
  msgid "Display only thumbnails, no text"
238
  msgstr "Mostrar solamente thumbnails, no el texto"
239
 
240
+ #: admin.inc.php:263
241
  msgid "Do not display thumbnails, only text."
242
  msgstr "No mostrar thumbnails, sólo el texto"
243
 
244
+ #: admin.inc.php:267
245
  msgid "Maximum width of the thumbnail: "
246
  msgstr ""
247
 
248
+ #: admin.inc.php:270
249
  msgid "Maximum height of the thumbnail: "
250
  msgstr ""
251
 
252
+ #: admin.inc.php:273
253
  msgid "Use timthumb to generate thumbnails? "
254
  msgstr ""
255
 
256
+ #: admin.inc.php:274
257
  msgid ""
258
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
259
  "\">timthumb</a> will be used to generate thumbnails"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:276
263
  #, fuzzy
264
  msgid "Post thumbnail meta field name: "
265
  msgstr "Los parámetros del thumbnail:"
266
 
267
+ #: admin.inc.php:277
268
  msgid ""
269
  "The value of this field should contain the image source and is set in the "
270
  "<em>Add New Post</em> screen"
271
  msgstr ""
272
 
273
+ #: admin.inc.php:279
274
  #, fuzzy
275
  msgid ""
276
  "If the postmeta is not set, then should the plugin extract the first image "
281
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
282
  "tamaño de archivo "
283
 
284
+ #: admin.inc.php:280
285
  #, fuzzy
286
  msgid ""
287
  "This could slow down the loading of your page if the first image in the "
292
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
293
  "tamaño de archivo "
294
 
295
+ #: admin.inc.php:282
296
  msgid "Use default thumbnail? "
297
  msgstr ""
298
 
299
+ #: admin.inc.php:283
300
  msgid ""
301
  "If checked, when no thumbnail is found, show a default one from the URL "
302
  "below. If not checked and no thumbnail is found, no image will be shown."
306
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
307
  "hay que mostrarla."
308
 
309
+ #: admin.inc.php:285
310
  msgid "Default thumbnail: "
311
  msgstr ""
312
 
313
+ #: admin.inc.php:286
314
  msgid ""
315
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
316
  "then it will check the meta field. If this is not available, then it will "
317
  "show the default image as specified above"
318
  msgstr ""
319
 
320
+ #: admin.inc.php:292
321
  msgid "Custom Styles"
322
  msgstr ""
323
 
324
+ #: admin.inc.php:295
325
  msgid "Custom CSS to add to header:"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:298
329
  msgid ""
330
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
331
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
332
  "available CSS classes to style."
333
  msgstr ""
334
 
335
+ #: admin.inc.php:303
336
  msgid "Maintenance"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:307
340
  msgid ""
341
  "Over time the Daily Top 10 database grows in size, which reduces the "
342
  "performance of the plugin. Cleaning the database at regular intervals could "
343
  "improve performance, especially on high traffic blogs."
344
  msgstr ""
345
 
346
+ #: admin.inc.php:308
347
  msgid ""
348
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
349
  "everytime the job is rescheduled (i.e. you change the settings below). This "
350
  "causes the daily posts table to reset."
351
  msgstr ""
352
 
353
+ #: admin.inc.php:311
354
  msgid "Enable scheduled maintenance of daily tables:"
355
  msgstr ""
356
 
357
+ #: admin.inc.php:316
358
  msgid "Time to run maintenance"
359
  msgstr ""
360
 
361
+ #: admin.inc.php:319
362
  msgid "How often should the maintenance be run:"
363
  msgstr ""
364
 
365
+ #: admin.inc.php:323
366
  msgid "Daily"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:327
370
  msgid "Weekly"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:331
374
  msgid "Fortnightly"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:335
378
  msgid "Monthly"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:344
382
  msgid "The cron job has been scheduled. Maintenance will run "
383
  msgstr ""
384
 
385
+ #: admin.inc.php:349
386
  msgid "The cron job is missing. Please resave this page to add the job"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:354
390
  msgid "Maintenance is turned off"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:362
394
  msgid "Reset count"
395
  msgstr "Reiniciar los ajustes"
396
 
397
+ #: admin.inc.php:365
398
  msgid ""
399
  "This cannot be reversed. Make sure that your database has been backed up "
400
  "before proceeding"
402
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
403
  "sido creada una copia de seguridad para su base de datos."
404
 
405
+ #: admin.inc.php:368
406
  #, fuzzy
407
  msgid "Reset Popular Posts"
408
  msgstr "Los posts más populares"
409
 
410
+ #: admin.inc.php:368
411
  msgid "Are you sure you want to reset the popular posts?"
412
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
413
 
414
+ #: admin.inc.php:369
415
  #, fuzzy
416
  msgid "Reset Daily Popular Posts"
417
  msgstr "Los posts diarios más populares"
418
 
419
+ #: admin.inc.php:369
420
  msgid "Are you sure you want to reset the daily popular posts?"
421
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
422
 
423
+ #: admin.inc.php:370
424
  msgid "Clear duplicates"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:370
428
  msgid "This will delete the duplicate entries in the tables. Proceed?"
429
  msgstr ""
430
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
431
 
432
+ #: admin.inc.php:374
433
  #, fuzzy
434
  msgid "Save Options"
435
  msgstr "Los parametros"
436
 
437
+ #: admin.inc.php:375
438
  #, fuzzy
439
  msgid "Default Options"
440
  msgstr "Los Parámetros Resultantes"
441
 
442
+ #: admin.inc.php:375
443
  msgid "Do you want to set options to Default?"
444
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
445
 
446
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
447
  msgid "Popular Posts"
448
  msgstr "Los posts más populares"
449
 
450
+ #: admin.inc.php:406 admin.inc.php:480
451
  msgid "Daily Popular Posts"
452
  msgstr "Los posts diarios más populares"
453
 
454
+ #: admin.inc.php:428
455
  msgid "Support the development"
456
  msgstr "Apoyar al elaborador"
457
 
458
+ #: admin.inc.php:436
459
  msgid "Enter amount in USD: "
460
  msgstr "Ingresar las cifras en USD"
461
 
462
+ #: admin.inc.php:440
463
  msgid "Send your donation to the author of"
464
  msgstr "Enviar su subvención al autor"
465
 
466
+ #: admin.inc.php:446
467
+ msgid "Follow us"
468
  msgstr ""
469
 
470
+ #: admin.inc.php:452
471
  #, fuzzy
472
  msgid "Quick Links"
473
  msgstr "Enlaces rápidos"
474
 
475
+ #: admin.inc.php:454
476
  #, fuzzy
477
  msgid "Top 10 plugin page"
478
  msgstr "página plugin"
479
 
480
+ #: admin.inc.php:455
481
  msgid "Other plugins"
482
  msgstr "Otros plugins"
483
 
484
+ #: admin.inc.php:456
485
  msgid "Ajay's blog"
486
  msgstr "Blog de Ajay"
487
 
488
+ #: admin.inc.php:457 top-10.php:757
489
  msgid "Support"
490
  msgstr "Apoyo"
491
 
492
+ #: admin.inc.php:458
493
  msgid "Follow @ajaydsouza on Twitter"
494
  msgstr "Seguir @ajaydsouza en Twitter"
495
 
496
+ #: admin.inc.php:462
497
  msgid "Recent developments"
498
  msgstr "Evolución reciente"
499
 
500
+ #: admin.inc.php:474
501
+ #, fuzzy
502
+ msgid "Top 10 Settings"
503
+ msgstr "Los ajustes"
504
+
505
+ #: admin.inc.php:474
506
  msgid "Top 10"
507
  msgstr "Тоp 10"
508
 
509
+ #: admin.inc.php:477
510
+ #, fuzzy
511
+ msgid "Overall Popular Posts"
512
+ msgstr "Ver los posts más populares"
513
+
514
+ #: admin.inc.php:595
515
  msgid "Results"
516
  msgstr "Resultados"
517
 
518
+ #: admin.inc.php:597 admin.inc.php:603
519
  msgid "of"
520
  msgstr "de, a "
521
 
522
+ #: admin.inc.php:601
523
  msgid "Page"
524
  msgstr "La página"
525
 
526
+ #: admin.inc.php:615
527
  msgid "View Daily Popular Posts"
528
  msgstr "Ver los posts diarios más populares"
529
 
530
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
531
  msgid "Results per-page:"
532
  msgstr "Los resultados por página:"
533
 
534
+ #: admin.inc.php:628
535
+ msgid "View Overall Popular Posts"
536
+ msgstr "Ver los posts más populares"
537
+
538
+ #: admin.inc.php:657
539
  msgid "Previous"
540
  msgstr "Precedentes"
541
 
542
+ #: admin.inc.php:675
543
  msgid "Next"
544
  msgstr "Siguientes"
545
 
546
+ #: admin.inc.php:698
547
  msgid "Daily Popular"
548
  msgstr "Diario Populares"
549
 
550
+ #: admin.inc.php:709
551
  msgid "Total / Today's Views"
552
  msgstr "Total/Visitas de hoy"
553
 
554
+ #: top-10.php:318
555
  msgid "Display the posts popular this week"
556
  msgstr "Mostrar los posts populares de esta semana"
557
 
558
+ #: top-10.php:332
559
  msgid "Title"
560
  msgstr ""
561
 
562
+ #: top-10.php:337
563
  msgid "No. of posts"
564
  msgstr ""
565
 
566
+ #: top-10.php:342
567
  msgid "Overall"
568
  msgstr ""
569
 
570
+ #: top-10.php:343
571
  msgid "Custom time period (Enter below)"
572
  msgstr ""
573
 
574
+ #: top-10.php:348
575
  msgid "Range in number of days (applies only to custom option above)"
576
  msgstr ""
577
 
578
+ #: top-10.php:352
579
  #, fuzzy
580
  msgid "Thumbnail options"
581
  msgstr "Los parámetros del thumbnail:"
582
 
583
+ #: top-10.php:354
584
  #, fuzzy
585
  msgid "Thumbnails inline, before title"
586
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
587
 
588
+ #: top-10.php:355
589
  #, fuzzy
590
  msgid "Thumbnails inline, after title"
591
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
592
 
593
+ #: top-10.php:356
594
  #, fuzzy
595
  msgid "Only thumbnails, no text"
596
  msgstr "Mostrar solamente thumbnails, no el texto"
597
 
598
+ #: top-10.php:357
599
  #, fuzzy
600
  msgid "No thumbnails, only text."
601
  msgstr "No mostrar thumbnails, sólo el texto"
602
 
603
+ #: top-10.php:362
604
  #, fuzzy
605
  msgid " Show excerpt?"
606
  msgstr "¿Mostrar un fragmento del post en la lista?"
607
 
608
+ #: top-10.php:431
609
  msgid "<h3>Popular Posts</h3>"
610
  msgstr "Los posts populares"
611
 
612
+ #: top-10.php:432
613
  msgid "<h3>Daily Popular</h3>"
614
  msgstr "Diario Populares"
615
 
616
+ #: top-10.php:433
617
  #, fuzzy
618
  msgid "No top posts yet"
619
  msgstr "Reiniciar el Top de los 10 posts más populares"
620
 
621
+ #: top-10.php:721
622
  msgid "Once Weekly"
623
  msgstr ""
624
 
625
+ #: top-10.php:722
626
  msgid "Once Fortnightly"
627
  msgstr ""
628
 
629
+ #: top-10.php:723
630
  msgid "Once Monthly"
631
  msgstr ""
632
 
633
+ #: top-10.php:744
634
  msgid "Settings"
635
  msgstr "Los ajustes"
636
 
637
+ #: top-10.php:758
638
  msgid "Donate"
639
  msgstr "Subvencionar"
640
 
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-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"
@@ -12,50 +12,56 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,56 +69,72 @@ msgstr ""
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 "
101
- "time"
102
  msgstr ""
103
  "Rendre la liste des postes journaliers dynamiques? Cette option fait appel à "
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,16 +144,16 @@ msgstr ""
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,108 +166,113 @@ msgstr ""
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,7 +283,7 @@ msgstr ""
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 "
@@ -267,11 +294,11 @@ msgstr ""
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,95 +307,95 @@ msgstr ""
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,229 +403,239 @@ msgstr ""
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
 
518
- #: top-10.php:257
519
  msgid "Display the posts popular this week"
520
  msgstr "Afficher les postes populaires de la semaine"
521
 
522
- #: top-10.php:271
523
  msgid "Title"
524
  msgstr ""
525
 
526
- #: top-10.php:276
527
  msgid "No. of posts"
528
  msgstr ""
529
 
530
- #: top-10.php:281
531
  msgid "Overall"
532
  msgstr ""
533
 
534
- #: top-10.php:282
535
  msgid "Custom time period (Enter below)"
536
  msgstr ""
537
 
538
- #: top-10.php:287
539
  msgid "Range in number of days (applies only to custom option above)"
540
  msgstr ""
541
 
542
- #: top-10.php:291
543
  #, fuzzy
544
  msgid "Thumbnail options"
545
  msgstr "Options thumbnail des messages:"
546
 
547
- #: top-10.php:293
548
  #, fuzzy
549
  msgid "Thumbnails inline, before title"
550
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
551
 
552
- #: top-10.php:294
553
  #, fuzzy
554
  msgid "Thumbnails inline, after title"
555
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
556
 
557
- #: top-10.php:295
558
  #, fuzzy
559
  msgid "Only thumbnails, no text"
560
  msgstr "Afficher uniquement le thumbnail, sans le texte"
561
 
562
- #: top-10.php:296
563
  #, fuzzy
564
  msgid "No thumbnails, only text."
565
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
566
 
567
- #: top-10.php:301
568
  #, fuzzy
569
  msgid " Show excerpt?"
570
  msgstr "Afficher le fragment du message dans la liste?"
571
 
572
- #: top-10.php:367
573
  msgid "<h3>Popular Posts</h3>"
574
  msgstr "<h3>Postes populaires</h3>"
575
 
576
- #: top-10.php:368
577
  msgid "<h3>Daily Popular</h3>"
578
  msgstr "<h3>Populaires Journaliers</h3>"
579
 
580
- #: top-10.php:369
581
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:46-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Les options sont sauvegardées avec succès"
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Options par défaut sont définies"
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Le nombre de populaires sur le forum"
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
58
 
59
+ #: admin.inc.php:138
60
+ #, fuzzy
61
+ msgid "Exclude Pages?"
62
+ msgstr "Exclure les catégories:"
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "Éliminer d'affichage les pages du message populaire? Le nombre des "
70
  "visionnage des pages qui seront toujours prises en compte."
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr "Exclure les catégories:"
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "Afficher le nombre des visionnages du message?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "Page"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
  msgstr ""
 
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "Rendre la liste des postes journaliers dynamiques? Cette option fait appel à "
117
  "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
118
  "la page"
119
 
120
  #: admin.inc.php:175
121
+ msgid "Track visits of authors on their own posts?"
122
+ msgstr "Suivre les visites des auteurs de leurs propres messages?"
123
+
124
+ #: admin.inc.php:179
125
+ #, fuzzy
126
+ msgid "Track visits of admins?"
127
+ msgstr "Suivre les visites des auteurs de leurs propres messages?"
128
+
129
+ #: admin.inc.php:183
130
  msgid "Display page views on Posts > All Posts in Admin"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:187
134
  msgid "Link to Top 10 plugin page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:189
138
  #, fuzzy
139
  msgid ""
140
  "A link to the plugin is added as an extra list item to the list of popular "
144
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
145
  "mais nous vous y remercions!"
146
 
147
+ #: admin.inc.php:196
148
  #, fuzzy
149
  msgid "Output Options"
150
  msgstr "Paramètres de sortie"
151
 
152
+ #: admin.inc.php:199
153
  msgid "Format to display the count in: "
154
  msgstr "Format d’affichage de la quantité en:"
155
 
156
+ #: admin.inc.php:202
157
  #, fuzzy
158
  msgid ""
159
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
166
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
167
  "123 times, 23 visits today)</code>"
168
 
169
+ #: admin.inc.php:204
170
  msgid "Title of popular posts: "
171
  msgstr "Les en-têtes des messages populaires"
172
 
173
+ #: admin.inc.php:207
174
  msgid "Title of daily popular posts: "
175
  msgstr "Les en-têtes des messages populaires journaliers"
176
 
177
+ #: admin.inc.php:210
178
  msgid "When there are no posts, what should be shown?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:214
182
  msgid "Blank Output"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:218
186
  msgid "Display:"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:222
190
  msgid "Show post excerpt in list?"
191
  msgstr "Afficher le fragment du message dans la liste?"
192
 
193
+ #: admin.inc.php:225
194
  msgid "Length of excerpt (in words): "
195
  msgstr "Longueur du fragment (mots):"
196
 
197
+ #: admin.inc.php:228
198
+ msgid "Display number of page views in popular lists?"
199
+ msgstr ""
200
+ "Afficher le nombre des visionnages des pages dans les listes de popularité?"
201
+
202
+ #: admin.inc.php:231
203
  msgid "Customize the output:"
204
  msgstr "Paramétrer la sortie:"
205
 
206
+ #: admin.inc.php:233
207
  msgid "HTML to display before the list of posts: "
208
  msgstr "HTML d'affichage avant la liste des messages:"
209
 
210
+ #: admin.inc.php:236
211
  msgid "HTML to display before each list item: "
212
  msgstr "HTML d'affichage avant chaque élément de la liste:"
213
 
214
+ #: admin.inc.php:239
215
  msgid "HTML to display after each list item: "
216
  msgstr "HTML d'affichage après chaque élément de la liste:"
217
 
218
+ #: admin.inc.php:242
219
  msgid "HTML to display after the list of posts: "
220
  msgstr "HTML d'affichage après la liste des messages:"
221
 
222
+ #: admin.inc.php:245
223
  msgid "Post thumbnail options:"
224
  msgstr "Options thumbnail des messages:"
225
 
226
+ #: admin.inc.php:247
227
  msgid "Location of post thumbnail:"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:251
231
  msgid "Display thumbnails inline with posts, before title"
232
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
233
 
234
+ #: admin.inc.php:255
235
  msgid "Display thumbnails inline with posts, after title"
236
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
237
 
238
+ #: admin.inc.php:259
239
  msgid "Display only thumbnails, no text"
240
  msgstr "Afficher uniquement le thumbnail, sans le texte"
241
 
242
+ #: admin.inc.php:263
243
  msgid "Do not display thumbnails, only text."
244
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
245
 
246
+ #: admin.inc.php:267
247
  msgid "Maximum width of the thumbnail: "
248
  msgstr ""
249
 
250
+ #: admin.inc.php:270
251
  msgid "Maximum height of the thumbnail: "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:273
255
  msgid "Use timthumb to generate thumbnails? "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:274
259
  msgid ""
260
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
261
  "\">timthumb</a> will be used to generate thumbnails"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:276
265
  #, fuzzy
266
  msgid "Post thumbnail meta field name: "
267
  msgstr "Options thumbnail des messages:"
268
 
269
+ #: admin.inc.php:277
270
  msgid ""
271
  "The value of this field should contain the image source and is set in the "
272
  "<em>Add New Post</em> screen"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:279
276
  #, fuzzy
277
  msgid ""
278
  "If the postmeta is not set, then should the plugin extract the first image "
283
  "première image de la résolution correspondante du fichier est de taille "
284
  "supérieure"
285
 
286
+ #: admin.inc.php:280
287
  #, fuzzy
288
  msgid ""
289
  "This could slow down the loading of your page if the first image in the "
294
  "première image de la résolution correspondante du fichier est de taille "
295
  "supérieure"
296
 
297
+ #: admin.inc.php:282
298
  msgid "Use default thumbnail? "
299
  msgstr ""
300
 
301
+ #: admin.inc.php:283
302
  msgid ""
303
  "If checked, when no thumbnail is found, show a default one from the URL "
304
  "below. If not checked and no thumbnail is found, no image will be shown."
307
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
308
  "été retrouvé, ne pas afficher l'image."
309
 
310
+ #: admin.inc.php:285
311
  msgid "Default thumbnail: "
312
  msgstr ""
313
 
314
+ #: admin.inc.php:286
315
  msgid ""
316
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
317
  "then it will check the meta field. If this is not available, then it will "
318
  "show the default image as specified above"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:292
322
  msgid "Custom Styles"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:295
326
  msgid "Custom CSS to add to header:"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:298
330
  msgid ""
331
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
332
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
333
  "available CSS classes to style."
334
  msgstr ""
335
 
336
+ #: admin.inc.php:303
337
  msgid "Maintenance"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:307
341
  msgid ""
342
  "Over time the Daily Top 10 database grows in size, which reduces the "
343
  "performance of the plugin. Cleaning the database at regular intervals could "
344
  "improve performance, especially on high traffic blogs."
345
  msgstr ""
346
 
347
+ #: admin.inc.php:308
348
  msgid ""
349
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
350
  "everytime the job is rescheduled (i.e. you change the settings below). This "
351
  "causes the daily posts table to reset."
352
  msgstr ""
353
 
354
+ #: admin.inc.php:311
355
  msgid "Enable scheduled maintenance of daily tables:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:316
359
  msgid "Time to run maintenance"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:319
363
  msgid "How often should the maintenance be run:"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:323
367
  msgid "Daily"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:327
371
  msgid "Weekly"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:331
375
  msgid "Fortnightly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:335
379
  msgid "Monthly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:344
383
  msgid "The cron job has been scheduled. Maintenance will run "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:349
387
  msgid "The cron job is missing. Please resave this page to add the job"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:354
391
  msgid "Maintenance is turned off"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:362
395
  msgid "Reset count"
396
  msgstr "Réinitialiser le compteur"
397
 
398
+ #: admin.inc.php:365
399
  msgid ""
400
  "This cannot be reversed. Make sure that your database has been backed up "
401
  "before proceeding"
403
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
404
  "sauvegardée avant de poursuivre."
405
 
406
+ #: admin.inc.php:368
407
  #, fuzzy
408
  msgid "Reset Popular Posts"
409
  msgstr "Postes populaires"
410
 
411
+ #: admin.inc.php:368
412
  msgid "Are you sure you want to reset the popular posts?"
413
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
414
 
415
+ #: admin.inc.php:369
416
  #, fuzzy
417
  msgid "Reset Daily Popular Posts"
418
  msgstr "Postes populaires journaliers"
419
 
420
+ #: admin.inc.php:369
421
  msgid "Are you sure you want to reset the daily popular posts?"
422
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
423
 
424
+ #: admin.inc.php:370
425
  msgid "Clear duplicates"
426
  msgstr ""
427
 
428
+ #: admin.inc.php:370
429
  msgid "This will delete the duplicate entries in the tables. Proceed?"
430
  msgstr ""
431
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
432
 
433
+ #: admin.inc.php:374
434
  #, fuzzy
435
  msgid "Save Options"
436
  msgstr "Options:"
437
 
438
+ #: admin.inc.php:375
439
  #, fuzzy
440
  msgid "Default Options"
441
  msgstr "Paramètres de sortie"
442
 
443
+ #: admin.inc.php:375
444
  msgid "Do you want to set options to Default?"
445
  msgstr "Définir les paramètres par défaut?"
446
 
447
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
448
  msgid "Popular Posts"
449
  msgstr "Postes populaires"
450
 
451
+ #: admin.inc.php:406 admin.inc.php:480
452
  msgid "Daily Popular Posts"
453
  msgstr "Postes populaires journaliers"
454
 
455
+ #: admin.inc.php:428
456
  msgid "Support the development"
457
  msgstr "Soutenir le projet"
458
 
459
+ #: admin.inc.php:436
460
  msgid "Enter amount in USD: "
461
  msgstr "Saisir le montant en dollars US"
462
 
463
+ #: admin.inc.php:440
464
  msgid "Send your donation to the author of"
465
  msgstr "Envoyer sa dotation à l'auteur"
466
 
467
+ #: admin.inc.php:446
468
+ msgid "Follow us"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:452
472
  #, fuzzy
473
  msgid "Quick Links"
474
  msgstr "Liens rapides"
475
 
476
+ #: admin.inc.php:454
477
  #, fuzzy
478
  msgid "Top 10 plugin page"
479
  msgstr "Page de plugin"
480
 
481
+ #: admin.inc.php:455
482
  msgid "Other plugins"
483
  msgstr "Autres plugins"
484
 
485
+ #: admin.inc.php:456
486
  msgid "Ajay's blog"
487
  msgstr "Blog Ajay"
488
 
489
+ #: admin.inc.php:457 top-10.php:757
490
  msgid "Support"
491
  msgstr "Service d'assistance"
492
 
493
+ #: admin.inc.php:458
494
  msgid "Follow @ajaydsouza on Twitter"
495
  msgstr "Follow @ajaydsouza sur Twitter"
496
 
497
+ #: admin.inc.php:462
498
  msgid "Recent developments"
499
  msgstr "Les derniers projets"
500
 
501
+ #: admin.inc.php:474
502
+ #, fuzzy
503
+ msgid "Top 10 Settings"
504
+ msgstr "Paramètres"
505
+
506
+ #: admin.inc.php:474
507
  msgid "Top 10"
508
  msgstr "Тоp 10"
509
 
510
+ #: admin.inc.php:477
511
+ #, fuzzy
512
+ msgid "Overall Popular Posts"
513
+ msgstr "Voir tous les postes populaires"
514
+
515
+ #: admin.inc.php:595
516
  msgid "Results"
517
  msgstr "Résultats"
518
 
519
+ #: admin.inc.php:597 admin.inc.php:603
520
  msgid "of"
521
  msgstr "de, du, de la, des"
522
 
523
+ #: admin.inc.php:601
524
  msgid "Page"
525
  msgstr "Page"
526
 
527
+ #: admin.inc.php:615
528
  msgid "View Daily Popular Posts"
529
  msgstr "Voir les postes populaires journaliers"
530
 
531
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
532
  msgid "Results per-page:"
533
  msgstr "Résultats par page:"
534
 
535
+ #: admin.inc.php:628
536
+ msgid "View Overall Popular Posts"
537
+ msgstr "Voir tous les postes populaires"
538
+
539
+ #: admin.inc.php:657
540
  msgid "Previous"
541
  msgstr "Précédente"
542
 
543
+ #: admin.inc.php:675
544
  msgid "Next"
545
  msgstr "Suivante"
546
 
547
+ #: admin.inc.php:698
548
  msgid "Daily Popular"
549
  msgstr "Populaires journaliers"
550
 
551
+ #: admin.inc.php:709
552
  msgid "Total / Today's Views"
553
  msgstr "Total/aujourd'hui visionnages"
554
 
555
+ #: top-10.php:318
556
  msgid "Display the posts popular this week"
557
  msgstr "Afficher les postes populaires de la semaine"
558
 
559
+ #: top-10.php:332
560
  msgid "Title"
561
  msgstr ""
562
 
563
+ #: top-10.php:337
564
  msgid "No. of posts"
565
  msgstr ""
566
 
567
+ #: top-10.php:342
568
  msgid "Overall"
569
  msgstr ""
570
 
571
+ #: top-10.php:343
572
  msgid "Custom time period (Enter below)"
573
  msgstr ""
574
 
575
+ #: top-10.php:348
576
  msgid "Range in number of days (applies only to custom option above)"
577
  msgstr ""
578
 
579
+ #: top-10.php:352
580
  #, fuzzy
581
  msgid "Thumbnail options"
582
  msgstr "Options thumbnail des messages:"
583
 
584
+ #: top-10.php:354
585
  #, fuzzy
586
  msgid "Thumbnails inline, before title"
587
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
588
 
589
+ #: top-10.php:355
590
  #, fuzzy
591
  msgid "Thumbnails inline, after title"
592
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
593
 
594
+ #: top-10.php:356
595
  #, fuzzy
596
  msgid "Only thumbnails, no text"
597
  msgstr "Afficher uniquement le thumbnail, sans le texte"
598
 
599
+ #: top-10.php:357
600
  #, fuzzy
601
  msgid "No thumbnails, only text."
602
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
603
 
604
+ #: top-10.php:362
605
  #, fuzzy
606
  msgid " Show excerpt?"
607
  msgstr "Afficher le fragment du message dans la liste?"
608
 
609
+ #: top-10.php:431
610
  msgid "<h3>Popular Posts</h3>"
611
  msgstr "<h3>Postes populaires</h3>"
612
 
613
+ #: top-10.php:432
614
  msgid "<h3>Daily Popular</h3>"
615
  msgstr "<h3>Populaires Journaliers</h3>"
616
 
617
+ #: top-10.php:433
618
  #, fuzzy
619
  msgid "No top posts yet"
620
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
621
 
622
+ #: top-10.php:721
623
  msgid "Once Weekly"
624
  msgstr ""
625
 
626
+ #: top-10.php:722
627
  msgid "Once Fortnightly"
628
  msgstr ""
629
 
630
+ #: top-10.php:723
631
  msgid "Once Monthly"
632
  msgstr ""
633
 
634
+ #: top-10.php:744
635
  msgid "Settings"
636
  msgstr "Paramètres"
637
 
638
+ #: top-10.php:758
639
  msgid "Donate"
640
  msgstr "Conribuer"
641
 
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-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"
@@ -12,51 +12,56 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,55 +69,72 @@ msgstr ""
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 "
101
- "time"
102
  msgstr ""
103
  "Post Force laethúil 'liosta a bheith dinimiciúil? Úsáideann sé seo roghanna "
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,16 +143,16 @@ msgstr ""
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,450 +165,464 @@ msgstr ""
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
 
508
- #: top-10.php:257
509
  msgid "Display the posts popular this week"
510
  msgstr ""
511
 
512
- #: top-10.php:271
513
  msgid "Title"
514
  msgstr ""
515
 
516
- #: top-10.php:276
517
  msgid "No. of posts"
518
  msgstr ""
519
 
520
- #: top-10.php:281
521
  msgid "Overall"
522
  msgstr ""
523
 
524
- #: top-10.php:282
525
  msgid "Custom time period (Enter below)"
526
  msgstr ""
527
 
528
- #: top-10.php:287
529
  msgid "Range in number of days (applies only to custom option above)"
530
  msgstr ""
531
 
532
- #: top-10.php:291
533
  msgid "Thumbnail options"
534
  msgstr ""
535
 
536
- #: top-10.php:293
537
  #, fuzzy
538
  msgid "Thumbnails inline, before title"
539
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
540
 
541
- #: top-10.php:294
542
  #, fuzzy
543
  msgid "Thumbnails inline, after title"
544
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
545
 
546
- #: top-10.php:295
547
  #, fuzzy
548
  msgid "Only thumbnails, no text"
549
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
550
 
551
- #: top-10.php:296
552
  #, fuzzy
553
  msgid "No thumbnails, only text."
554
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
555
 
556
- #: top-10.php:301
557
  msgid " Show excerpt?"
558
  msgstr ""
559
 
560
- #: top-10.php:367
561
  msgid "<h3>Popular Posts</h3>"
562
  msgstr "<h3>Poist Coitianta </ h3>"
563
 
564
- #: top-10.php:368
565
  msgid "<h3>Daily Popular</h3>"
566
  msgstr "<h3> laethúil Coitianta </ h3>"
567
 
568
- #: top-10.php:369
569
  #, fuzzy
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
 
@@ -599,7 +635,3 @@ msgstr ""
599
  #~ msgstr ""
600
  #~ "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? "
601
  #~ "Tá colún breise curtha leo le líon"
602
-
603
- #, fuzzy
604
- #~ msgid "Top 10 "
605
- #~ msgstr "Top 10"
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:46-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Roghanna shábháil go rathúil."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Roghanna leagtha chun Réamhshocrú."
33
 
34
+ #: admin.inc.php:95
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Teideal an post tóir:"
38
 
39
+ #: admin.inc.php:101
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Teideal ar tóir an bpost:"
43
 
44
+ #: admin.inc.php:108
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:129
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:132
53
  msgid "Number of popular posts to display: "
54
  msgstr "An líon post tóir a thaispeáint:"
55
 
56
+ #: admin.inc.php:135
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
59
 
60
+ #: admin.inc.php:138
61
+ msgid "Exclude Pages?"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir "
70
  "Leathanaigh ar aghaidh a chur san áireamh."
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr ""
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "Leathanach"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
+ msgstr ""
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "Post Force laethúil 'liosta a bheith dinimiciúil? Úsáideann sé seo roghanna "
117
  "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
118
  "luchtú leathanach"
119
 
120
  #: admin.inc.php:175
121
+ msgid "Track visits of authors on their own posts?"
122
+ msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
123
+
124
+ #: admin.inc.php:179
125
+ #, fuzzy
126
+ msgid "Track visits of admins?"
127
+ msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
128
+
129
+ #: admin.inc.php:183
130
  msgid "Display page views on Posts > All Posts in Admin"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:187
134
  msgid "Link to Top 10 plugin page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:189
138
  #, fuzzy
139
  msgid ""
140
  "A link to the plugin is added as an extra list item to the list of popular "
143
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
144
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
145
 
146
+ #: admin.inc.php:196
147
  #, fuzzy
148
  msgid "Output Options"
149
  msgstr "roghanna"
150
 
151
+ #: admin.inc.php:199
152
  msgid "Format to display the count in: "
153
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
154
 
155
+ #: admin.inc.php:202
156
  #, fuzzy
157
  msgid ""
158
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
165
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
166
  "123 amanna, 23 cuairt inniu) </ cód>"
167
 
168
+ #: admin.inc.php:204
169
  msgid "Title of popular posts: "
170
  msgstr "Teideal an post tóir:"
171
 
172
+ #: admin.inc.php:207
173
  msgid "Title of daily popular posts: "
174
  msgstr "Teideal ar tóir an bpost:"
175
 
176
+ #: admin.inc.php:210
177
  msgid "When there are no posts, what should be shown?"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:214
181
  msgid "Blank Output"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:218
185
  msgid "Display:"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:222
189
  msgid "Show post excerpt in list?"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:225
193
  msgid "Length of excerpt (in words): "
194
  msgstr ""
195
 
196
+ #: admin.inc.php:228
197
+ msgid "Display number of page views in popular lists?"
198
+ msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
199
+
200
+ #: admin.inc.php:231
201
  msgid "Customize the output:"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:233
205
  #, fuzzy
206
  msgid "HTML to display before the list of posts: "
207
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
208
 
209
+ #: admin.inc.php:236
210
  #, fuzzy
211
  msgid "HTML to display before each list item: "
212
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
213
 
214
+ #: admin.inc.php:239
215
  #, fuzzy
216
  msgid "HTML to display after each list item: "
217
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
218
 
219
+ #: admin.inc.php:242
220
  #, fuzzy
221
  msgid "HTML to display after the list of posts: "
222
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
223
 
224
+ #: admin.inc.php:245
225
  msgid "Post thumbnail options:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:247
229
  msgid "Location of post thumbnail:"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:251
233
  #, fuzzy
234
  msgid "Display thumbnails inline with posts, before title"
235
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
236
 
237
+ #: admin.inc.php:255
238
  #, fuzzy
239
  msgid "Display thumbnails inline with posts, after title"
240
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
241
 
242
+ #: admin.inc.php:259
243
  #, fuzzy
244
  msgid "Display only thumbnails, no text"
245
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
246
 
247
+ #: admin.inc.php:263
248
  #, fuzzy
249
  msgid "Do not display thumbnails, only text."
250
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
251
 
252
+ #: admin.inc.php:267
253
  msgid "Maximum width of the thumbnail: "
254
  msgstr ""
255
 
256
+ #: admin.inc.php:270
257
  msgid "Maximum height of the thumbnail: "
258
  msgstr ""
259
 
260
+ #: admin.inc.php:273
261
  msgid "Use timthumb to generate thumbnails? "
262
  msgstr ""
263
 
264
+ #: admin.inc.php:274
265
  msgid ""
266
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
267
  "\">timthumb</a> will be used to generate thumbnails"
268
  msgstr ""
269
 
270
+ #: admin.inc.php:276
271
  msgid "Post thumbnail meta field name: "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:277
275
  msgid ""
276
  "The value of this field should contain the image source and is set in the "
277
  "<em>Add New Post</em> screen"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:279
281
  msgid ""
282
  "If the postmeta is not set, then should the plugin extract the first image "
283
  "from the post?"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:280
287
  msgid ""
288
  "This could slow down the loading of your page if the first image in the "
289
  "related posts is large in file-size"
290
  msgstr ""
291
 
292
+ #: admin.inc.php:282
293
  msgid "Use default thumbnail? "
294
  msgstr ""
295
 
296
+ #: admin.inc.php:283
297
  msgid ""
298
  "If checked, when no thumbnail is found, show a default one from the URL "
299
  "below. If not checked and no thumbnail is found, no image will be shown."
300
  msgstr ""
301
 
302
+ #: admin.inc.php:285
303
  msgid "Default thumbnail: "
304
  msgstr ""
305
 
306
+ #: admin.inc.php:286
307
  msgid ""
308
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
309
  "then it will check the meta field. If this is not available, then it will "
310
  "show the default image as specified above"
311
  msgstr ""
312
 
313
+ #: admin.inc.php:292
314
  msgid "Custom Styles"
315
  msgstr ""
316
 
317
+ #: admin.inc.php:295
318
  msgid "Custom CSS to add to header:"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:298
322
  msgid ""
323
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
324
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
325
  "available CSS classes to style."
326
  msgstr ""
327
 
328
+ #: admin.inc.php:303
329
  msgid "Maintenance"
330
  msgstr ""
331
 
332
+ #: admin.inc.php:307
333
  msgid ""
334
  "Over time the Daily Top 10 database grows in size, which reduces the "
335
  "performance of the plugin. Cleaning the database at regular intervals could "
336
  "improve performance, especially on high traffic blogs."
337
  msgstr ""
338
 
339
+ #: admin.inc.php:308
340
  msgid ""
341
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
342
  "everytime the job is rescheduled (i.e. you change the settings below). This "
343
  "causes the daily posts table to reset."
344
  msgstr ""
345
 
346
+ #: admin.inc.php:311
347
  msgid "Enable scheduled maintenance of daily tables:"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:316
351
  msgid "Time to run maintenance"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:319
355
  msgid "How often should the maintenance be run:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:323
359
  msgid "Daily"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:327
363
  msgid "Weekly"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:331
367
  msgid "Fortnightly"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:335
371
  msgid "Monthly"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:344
375
  msgid "The cron job has been scheduled. Maintenance will run "
376
  msgstr ""
377
 
378
+ #: admin.inc.php:349
379
  msgid "The cron job is missing. Please resave this page to add the job"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:354
383
  msgid "Maintenance is turned off"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:362
387
  msgid "Reset count"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:365
391
  msgid ""
392
  "This cannot be reversed. Make sure that your database has been backed up "
393
  "before proceeding"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:368
397
  #, fuzzy
398
  msgid "Reset Popular Posts"
399
  msgstr "Poist Coitianta"
400
 
401
+ #: admin.inc.php:368
402
  msgid "Are you sure you want to reset the popular posts?"
403
  msgstr ""
404
 
405
+ #: admin.inc.php:369
406
  #, fuzzy
407
  msgid "Reset Daily Popular Posts"
408
  msgstr "Poist Coitianta Laethúil"
409
 
410
+ #: admin.inc.php:369
411
  msgid "Are you sure you want to reset the daily popular posts?"
412
  msgstr ""
413
 
414
+ #: admin.inc.php:370
415
  msgid "Clear duplicates"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:370
419
  msgid "This will delete the duplicate entries in the tables. Proceed?"
420
  msgstr ""
421
 
422
+ #: admin.inc.php:374
423
  #, fuzzy
424
  msgid "Save Options"
425
  msgstr "roghanna"
426
 
427
+ #: admin.inc.php:375
428
  #, fuzzy
429
  msgid "Default Options"
430
  msgstr "roghanna"
431
 
432
+ #: admin.inc.php:375
433
  msgid "Do you want to set options to Default?"
434
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
435
 
436
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
437
  msgid "Popular Posts"
438
  msgstr "Poist Coitianta"
439
 
440
+ #: admin.inc.php:406 admin.inc.php:480
441
  msgid "Daily Popular Posts"
442
  msgstr "Poist Coitianta Laethúil"
443
 
444
+ #: admin.inc.php:428
445
  #, fuzzy
446
  msgid "Support the development"
447
  msgstr "Tacú le Forbairt"
448
 
449
+ #: admin.inc.php:436
450
  msgid "Enter amount in USD: "
451
  msgstr ""
452
 
453
+ #: admin.inc.php:440
454
  msgid "Send your donation to the author of"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:446
458
+ msgid "Follow us"
459
  msgstr ""
460
 
461
+ #: admin.inc.php:452
462
  msgid "Quick Links"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:454
466
  msgid "Top 10 plugin page"
467
  msgstr ""
468
 
469
+ #: admin.inc.php:455
470
  msgid "Other plugins"
471
  msgstr ""
472
 
473
+ #: admin.inc.php:456
474
  msgid "Ajay's blog"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:457 top-10.php:757
478
  msgid "Support"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:458
482
  msgid "Follow @ajaydsouza on Twitter"
483
  msgstr ""
484
 
485
+ #: admin.inc.php:462
486
  #, fuzzy
487
  msgid "Recent developments"
488
  msgstr "Tacú le Forbairt"
489
 
490
+ #: admin.inc.php:474
491
+ #, fuzzy
492
+ msgid "Top 10 Settings"
493
+ msgstr "Top 10"
494
+
495
+ #: admin.inc.php:474
496
  msgid "Top 10"
497
  msgstr "Top 10"
498
 
499
+ #: admin.inc.php:477
500
+ #, fuzzy
501
+ msgid "Overall Popular Posts"
502
+ msgstr "Féach ar Poist Coitianta Foriomlán"
503
+
504
+ #: admin.inc.php:595
505
  msgid "Results"
506
  msgstr "torthaí"
507
 
508
+ #: admin.inc.php:597 admin.inc.php:603
509
  msgid "of"
510
  msgstr "de"
511
 
512
+ #: admin.inc.php:601
513
  msgid "Page"
514
  msgstr "Leathanach"
515
 
516
+ #: admin.inc.php:615
517
  msgid "View Daily Popular Posts"
518
  msgstr "Féach ar Poist sa lá Coitianta"
519
 
520
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
521
  msgid "Results per-page:"
522
  msgstr "Torthaí in aghaidh an-leathanach:"
523
 
524
+ #: admin.inc.php:628
525
+ msgid "View Overall Popular Posts"
526
+ msgstr "Féach ar Poist Coitianta Foriomlán"
527
+
528
+ #: admin.inc.php:657
529
  msgid "Previous"
530
  msgstr "roimhe Seo"
531
 
532
+ #: admin.inc.php:675
533
  msgid "Next"
534
  msgstr "Ar Aghaidh"
535
 
536
+ #: admin.inc.php:698
537
  msgid "Daily Popular"
538
  msgstr "laethúil Coitianta"
539
 
540
+ #: admin.inc.php:709
541
  msgid "Total / Today's Views"
542
  msgstr "laethúil Coitianta"
543
 
544
+ #: top-10.php:318
545
  msgid "Display the posts popular this week"
546
  msgstr ""
547
 
548
+ #: top-10.php:332
549
  msgid "Title"
550
  msgstr ""
551
 
552
+ #: top-10.php:337
553
  msgid "No. of posts"
554
  msgstr ""
555
 
556
+ #: top-10.php:342
557
  msgid "Overall"
558
  msgstr ""
559
 
560
+ #: top-10.php:343
561
  msgid "Custom time period (Enter below)"
562
  msgstr ""
563
 
564
+ #: top-10.php:348
565
  msgid "Range in number of days (applies only to custom option above)"
566
  msgstr ""
567
 
568
+ #: top-10.php:352
569
  msgid "Thumbnail options"
570
  msgstr ""
571
 
572
+ #: top-10.php:354
573
  #, fuzzy
574
  msgid "Thumbnails inline, before title"
575
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
576
 
577
+ #: top-10.php:355
578
  #, fuzzy
579
  msgid "Thumbnails inline, after title"
580
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
581
 
582
+ #: top-10.php:356
583
  #, fuzzy
584
  msgid "Only thumbnails, no text"
585
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
586
 
587
+ #: top-10.php:357
588
  #, fuzzy
589
  msgid "No thumbnails, only text."
590
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
591
 
592
+ #: top-10.php:362
593
  msgid " Show excerpt?"
594
  msgstr ""
595
 
596
+ #: top-10.php:431
597
  msgid "<h3>Popular Posts</h3>"
598
  msgstr "<h3>Poist Coitianta </ h3>"
599
 
600
+ #: top-10.php:432
601
  msgid "<h3>Daily Popular</h3>"
602
  msgstr "<h3> laethúil Coitianta </ h3>"
603
 
604
+ #: top-10.php:433
605
  #, fuzzy
606
  msgid "No top posts yet"
607
  msgstr "Teideal an post tóir:"
608
 
609
+ #: top-10.php:721
610
  msgid "Once Weekly"
611
  msgstr ""
612
 
613
+ #: top-10.php:722
614
  msgid "Once Fortnightly"
615
  msgstr ""
616
 
617
+ #: top-10.php:723
618
  msgid "Once Monthly"
619
  msgstr ""
620
 
621
+ #: top-10.php:744
622
  msgid "Settings"
623
  msgstr ""
624
 
625
+ #: top-10.php:758
626
  msgid "Donate"
627
  msgstr ""
628
 
635
  #~ msgstr ""
636
  #~ "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? "
637
  #~ "Tá colún breise curtha leo le líon"
 
 
 
 
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-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"
@@ -13,51 +13,56 @@ msgstr ""
13
  "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: _e;__\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,54 +70,71 @@ msgstr ""
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 "
102
- "time"
103
  msgstr ""
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,16 +143,16 @@ msgstr ""
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,442 +164,456 @@ msgstr ""
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
 
501
- #: top-10.php:257
502
  msgid "Display the posts popular this week"
503
  msgstr ""
504
 
505
- #: top-10.php:271
506
  msgid "Title"
507
  msgstr ""
508
 
509
- #: top-10.php:276
510
  msgid "No. of posts"
511
  msgstr ""
512
 
513
- #: top-10.php:281
514
  msgid "Overall"
515
  msgstr ""
516
 
517
- #: top-10.php:282
518
  msgid "Custom time period (Enter below)"
519
  msgstr ""
520
 
521
- #: top-10.php:287
522
  msgid "Range in number of days (applies only to custom option above)"
523
  msgstr ""
524
 
525
- #: top-10.php:291
526
  msgid "Thumbnail options"
527
  msgstr ""
528
 
529
- #: top-10.php:293
530
  #, fuzzy
531
  msgid "Thumbnails inline, before title"
532
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
533
 
534
- #: top-10.php:294
535
  #, fuzzy
536
  msgid "Thumbnails inline, after title"
537
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
538
 
539
- #: top-10.php:295
540
  msgid "Only thumbnails, no text"
541
  msgstr ""
542
 
543
- #: top-10.php:296
544
  msgid "No thumbnails, only text."
545
  msgstr ""
546
 
547
- #: top-10.php:301
548
  msgid " Show excerpt?"
549
  msgstr ""
550
 
551
- #: top-10.php:367
552
  msgid "<h3>Popular Posts</h3>"
553
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
554
 
555
- #: top-10.php:368
556
  msgid "<h3>Daily Popular</h3>"
557
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
558
 
559
- #: top-10.php:369
560
  #, fuzzy
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
 
@@ -591,10 +627,6 @@ msgstr ""
591
  #~ "प्रदर्शन संपादित करें पदों पर पृष्ठ विचार / WP में पृष्ठों-व्यवस्थापक? एक अतिरिक्त कॉलम "
592
  #~ "गिनती के साथ जोड़ दिया है"
593
 
594
- #, fuzzy
595
- #~ msgid "Top 10 "
596
- #~ msgstr "शीर्ष 10"
597
-
598
  #~ msgid "If you find "
599
  #~ msgstr "यदि आप पाते हैं"
600
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:46-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"
13
  "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:71
20
  msgid "Scheduled maintenance enabled / modified"
21
  msgstr ""
22
 
23
+ #: admin.inc.php:75
24
  msgid "Scheduled maintenance disabled"
25
  msgstr ""
26
 
27
+ #: admin.inc.php:80
28
  msgid "Options saved successfully."
29
  msgstr "विकल्प सफलतापूर्वक बचाया."
30
 
31
+ #: admin.inc.php:89
32
  msgid "Options set to Default."
33
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
34
 
35
+ #: admin.inc.php:95
36
  #, fuzzy
37
  msgid "Top 10 popular posts reset"
38
  msgstr "लोकप्रिय पदों का शीर्षक:"
39
 
40
+ #: admin.inc.php:101
41
  #, fuzzy
42
  msgid "Top 10 daily popular posts reset"
43
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
44
 
45
+ #: admin.inc.php:108
46
  msgid "Duplicate rows cleaned from tables"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:129
50
  msgid "General options"
51
  msgstr ""
52
 
53
+ #: admin.inc.php:132
54
  msgid "Number of popular posts to display: "
55
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
56
 
57
+ #: admin.inc.php:135
58
  msgid "Daily Popular should contain views of how many days? "
59
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
60
 
61
+ #: admin.inc.php:138
62
+ msgid "Exclude Pages?"
63
+ msgstr ""
64
+
65
+ #: admin.inc.php:139
66
  msgid ""
67
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
68
  "continue to be counted."
70
  "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी "
71
  "रहेगी."
72
 
73
+ #: admin.inc.php:141
74
  msgid "Exclude Categories: "
75
  msgstr ""
76
 
77
+ #: admin.inc.php:156
78
+ msgid ""
79
+ "Comma separated list of category slugs. The field above has an autocomplete "
80
+ "so simply start typing in the starting letters and it will prompt you with "
81
+ "options"
82
+ msgstr ""
83
+
84
+ #: admin.inc.php:160
85
  #, fuzzy
86
  msgid "Display number of views on:"
87
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
88
 
89
+ #: admin.inc.php:161
90
  msgid "Posts"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:162
94
  #, fuzzy
95
  msgid "Pages"
96
  msgstr "पृष्ठ"
97
 
98
+ #: admin.inc.php:165
99
+ msgid "Always display latest post count"
100
+ msgstr ""
101
 
102
+ #: admin.inc.php:167
103
+ msgid ""
104
+ "This option uses JavaScript and will increase your page load time. Turn this "
105
+ "off if you are not using caching plugins or are OK with displaying older "
106
+ "cached counts"
107
+ msgstr ""
108
 
109
  #: admin.inc.php:170
110
+ msgid "Always display latest post count in the daily lists"
111
  msgstr ""
112
 
113
  #: admin.inc.php:172
114
  #, fuzzy
115
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
116
  msgstr ""
117
  "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
118
  "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
119
 
120
  #: admin.inc.php:175
121
+ msgid "Track visits of authors on their own posts?"
122
+ msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
123
+
124
+ #: admin.inc.php:179
125
+ #, fuzzy
126
+ msgid "Track visits of admins?"
127
+ msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
128
+
129
+ #: admin.inc.php:183
130
  msgid "Display page views on Posts > All Posts in Admin"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:187
134
  msgid "Link to Top 10 plugin page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:189
138
  #, fuzzy
139
  msgid ""
140
  "A link to the plugin is added as an extra list item to the list of popular "
143
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
144
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
145
 
146
+ #: admin.inc.php:196
147
  #, fuzzy
148
  msgid "Output Options"
149
  msgstr "विकल्प हैं:"
150
 
151
+ #: admin.inc.php:199
152
  msgid "Format to display the count in: "
153
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
154
 
155
+ #: admin.inc.php:202
156
  #, fuzzy
157
  msgid ""
158
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
164
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
165
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
166
 
167
+ #: admin.inc.php:204
168
  msgid "Title of popular posts: "
169
  msgstr "लोकप्रिय पदों का शीर्षक:"
170
 
171
+ #: admin.inc.php:207
172
  msgid "Title of daily popular posts: "
173
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
174
 
175
+ #: admin.inc.php:210
176
  msgid "When there are no posts, what should be shown?"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:214
180
  msgid "Blank Output"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:218
184
  msgid "Display:"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:222
188
  msgid "Show post excerpt in list?"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:225
192
  msgid "Length of excerpt (in words): "
193
  msgstr ""
194
 
195
+ #: admin.inc.php:228
196
+ msgid "Display number of page views in popular lists?"
197
+ msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
198
+
199
+ #: admin.inc.php:231
200
  msgid "Customize the output:"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:233
204
  msgid "HTML to display before the list of posts: "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:236
208
  msgid "HTML to display before each list item: "
209
  msgstr ""
210
 
211
+ #: admin.inc.php:239
212
  #, fuzzy
213
  msgid "HTML to display after each list item: "
214
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
215
 
216
+ #: admin.inc.php:242
217
  msgid "HTML to display after the list of posts: "
218
  msgstr ""
219
 
220
+ #: admin.inc.php:245
221
  msgid "Post thumbnail options:"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:247
225
  msgid "Location of post thumbnail:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:251
229
  #, fuzzy
230
  msgid "Display thumbnails inline with posts, before title"
231
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
232
 
233
+ #: admin.inc.php:255
234
  #, fuzzy
235
  msgid "Display thumbnails inline with posts, after title"
236
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
237
 
238
+ #: admin.inc.php:259
239
  msgid "Display only thumbnails, no text"
240
  msgstr ""
241
 
242
+ #: admin.inc.php:263
243
  msgid "Do not display thumbnails, only text."
244
  msgstr ""
245
 
246
+ #: admin.inc.php:267
247
  msgid "Maximum width of the thumbnail: "
248
  msgstr ""
249
 
250
+ #: admin.inc.php:270
251
  msgid "Maximum height of the thumbnail: "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:273
255
  msgid "Use timthumb to generate thumbnails? "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:274
259
  msgid ""
260
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
261
  "\">timthumb</a> will be used to generate thumbnails"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:276
265
  msgid "Post thumbnail meta field name: "
266
  msgstr ""
267
 
268
+ #: admin.inc.php:277
269
  msgid ""
270
  "The value of this field should contain the image source and is set in the "
271
  "<em>Add New Post</em> screen"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:279
275
  msgid ""
276
  "If the postmeta is not set, then should the plugin extract the first image "
277
  "from the post?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:280
281
  msgid ""
282
  "This could slow down the loading of your page if the first image in the "
283
  "related posts is large in file-size"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:282
287
  msgid "Use default thumbnail? "
288
  msgstr ""
289
 
290
+ #: admin.inc.php:283
291
  msgid ""
292
  "If checked, when no thumbnail is found, show a default one from the URL "
293
  "below. If not checked and no thumbnail is found, no image will be shown."
294
  msgstr ""
295
 
296
+ #: admin.inc.php:285
297
  msgid "Default thumbnail: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:286
301
  msgid ""
302
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
303
  "then it will check the meta field. If this is not available, then it will "
304
  "show the default image as specified above"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:292
308
  msgid "Custom Styles"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:295
312
  msgid "Custom CSS to add to header:"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:298
316
  msgid ""
317
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
318
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
319
  "available CSS classes to style."
320
  msgstr ""
321
 
322
+ #: admin.inc.php:303
323
  msgid "Maintenance"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:307
327
  msgid ""
328
  "Over time the Daily Top 10 database grows in size, which reduces the "
329
  "performance of the plugin. Cleaning the database at regular intervals could "
330
  "improve performance, especially on high traffic blogs."
331
  msgstr ""
332
 
333
+ #: admin.inc.php:308
334
  msgid ""
335
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
336
  "everytime the job is rescheduled (i.e. you change the settings below). This "
337
  "causes the daily posts table to reset."
338
  msgstr ""
339
 
340
+ #: admin.inc.php:311
341
  msgid "Enable scheduled maintenance of daily tables:"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:316
345
  msgid "Time to run maintenance"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:319
349
  msgid "How often should the maintenance be run:"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:323
353
  msgid "Daily"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:327
357
  msgid "Weekly"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:331
361
  msgid "Fortnightly"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:335
365
  msgid "Monthly"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:344
369
  msgid "The cron job has been scheduled. Maintenance will run "
370
  msgstr ""
371
 
372
+ #: admin.inc.php:349
373
  msgid "The cron job is missing. Please resave this page to add the job"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:354
377
  msgid "Maintenance is turned off"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:362
381
  msgid "Reset count"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:365
385
  msgid ""
386
  "This cannot be reversed. Make sure that your database has been backed up "
387
  "before proceeding"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:368
391
  #, fuzzy
392
  msgid "Reset Popular Posts"
393
  msgstr "लोकप्रिय पोस्ट्स "
394
 
395
+ #: admin.inc.php:368
396
  msgid "Are you sure you want to reset the popular posts?"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:369
400
  #, fuzzy
401
  msgid "Reset Daily Popular Posts"
402
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
403
 
404
+ #: admin.inc.php:369
405
  msgid "Are you sure you want to reset the daily popular posts?"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:370
409
  msgid "Clear duplicates"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:370
413
  msgid "This will delete the duplicate entries in the tables. Proceed?"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:374
417
  #, fuzzy
418
  msgid "Save Options"
419
  msgstr "विकल्प हैं:"
420
 
421
+ #: admin.inc.php:375
422
  #, fuzzy
423
  msgid "Default Options"
424
  msgstr "विकल्प हैं:"
425
 
426
+ #: admin.inc.php:375
427
  msgid "Do you want to set options to Default?"
428
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
429
 
430
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
431
  msgid "Popular Posts"
432
  msgstr "लोकप्रिय पोस्ट्स "
433
 
434
+ #: admin.inc.php:406 admin.inc.php:480
435
  msgid "Daily Popular Posts"
436
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
437
 
438
+ #: admin.inc.php:428
439
  #, fuzzy
440
  msgid "Support the development"
441
  msgstr "समर्थन विकास"
442
 
443
+ #: admin.inc.php:436
444
  msgid "Enter amount in USD: "
445
  msgstr ""
446
 
447
+ #: admin.inc.php:440
448
  msgid "Send your donation to the author of"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:446
452
+ msgid "Follow us"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:452
456
  msgid "Quick Links"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:454
460
  msgid "Top 10 plugin page"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:455
464
  msgid "Other plugins"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:456
468
  msgid "Ajay's blog"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:457 top-10.php:757
472
  msgid "Support"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:458
476
  msgid "Follow @ajaydsouza on Twitter"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:462
480
  msgid "Recent developments"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:474
484
+ #, fuzzy
485
+ msgid "Top 10 Settings"
486
+ msgstr "शीर्ष 10"
487
+
488
+ #: admin.inc.php:474
489
  msgid "Top 10"
490
  msgstr "शीर्ष 10"
491
 
492
+ #: admin.inc.php:477
493
+ #, fuzzy
494
+ msgid "Overall Popular Posts"
495
+ msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
496
+
497
+ #: admin.inc.php:595
498
  msgid "Results"
499
  msgstr "परिणाम"
500
 
501
+ #: admin.inc.php:597 admin.inc.php:603
502
  msgid "of"
503
  msgstr "का"
504
 
505
+ #: admin.inc.php:601
506
  msgid "Page"
507
  msgstr "पृष्ठ"
508
 
509
+ #: admin.inc.php:615
510
  msgid "View Daily Popular Posts"
511
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
512
 
513
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
514
  msgid "Results per-page:"
515
  msgstr "प्रति परिणाम पृष्ठ:"
516
 
517
+ #: admin.inc.php:628
518
+ msgid "View Overall Popular Posts"
519
+ msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
520
+
521
+ #: admin.inc.php:657
522
  msgid "Previous"
523
  msgstr "पिछला"
524
 
525
+ #: admin.inc.php:675
526
  msgid "Next"
527
  msgstr "अगला"
528
 
529
+ #: admin.inc.php:698
530
  msgid "Daily Popular"
531
  msgstr "दैनिक लोकप्रिय"
532
 
533
+ #: admin.inc.php:709
534
  msgid "Total / Today's Views"
535
  msgstr "कुल / आज दर्शाव"
536
 
537
+ #: top-10.php:318
538
  msgid "Display the posts popular this week"
539
  msgstr ""
540
 
541
+ #: top-10.php:332
542
  msgid "Title"
543
  msgstr ""
544
 
545
+ #: top-10.php:337
546
  msgid "No. of posts"
547
  msgstr ""
548
 
549
+ #: top-10.php:342
550
  msgid "Overall"
551
  msgstr ""
552
 
553
+ #: top-10.php:343
554
  msgid "Custom time period (Enter below)"
555
  msgstr ""
556
 
557
+ #: top-10.php:348
558
  msgid "Range in number of days (applies only to custom option above)"
559
  msgstr ""
560
 
561
+ #: top-10.php:352
562
  msgid "Thumbnail options"
563
  msgstr ""
564
 
565
+ #: top-10.php:354
566
  #, fuzzy
567
  msgid "Thumbnails inline, before title"
568
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
569
 
570
+ #: top-10.php:355
571
  #, fuzzy
572
  msgid "Thumbnails inline, after title"
573
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
574
 
575
+ #: top-10.php:356
576
  msgid "Only thumbnails, no text"
577
  msgstr ""
578
 
579
+ #: top-10.php:357
580
  msgid "No thumbnails, only text."
581
  msgstr ""
582
 
583
+ #: top-10.php:362
584
  msgid " Show excerpt?"
585
  msgstr ""
586
 
587
+ #: top-10.php:431
588
  msgid "<h3>Popular Posts</h3>"
589
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
590
 
591
+ #: top-10.php:432
592
  msgid "<h3>Daily Popular</h3>"
593
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
594
 
595
+ #: top-10.php:433
596
  #, fuzzy
597
  msgid "No top posts yet"
598
  msgstr "लोकप्रिय पदों का शीर्षक:"
599
 
600
+ #: top-10.php:721
601
  msgid "Once Weekly"
602
  msgstr ""
603
 
604
+ #: top-10.php:722
605
  msgid "Once Fortnightly"
606
  msgstr ""
607
 
608
+ #: top-10.php:723
609
  msgid "Once Monthly"
610
  msgstr ""
611
 
612
+ #: top-10.php:744
613
  msgid "Settings"
614
  msgstr ""
615
 
616
+ #: top-10.php:758
617
  msgid "Donate"
618
  msgstr ""
619
 
627
  #~ "प्रदर्शन संपादित करें पदों पर पृष्ठ विचार / WP में पृष्ठों-व्यवस्थापक? एक अतिरिक्त कॉलम "
628
  #~ "गिनती के साथ जोड़ दिया है"
629
 
 
 
 
 
630
  #~ msgid "If you find "
631
  #~ msgstr "यदि आप पाते हैं"
632
 
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-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"
@@ -12,51 +12,57 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,59 +71,76 @@ msgstr ""
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 "
106
- "time"
107
  msgstr ""
108
  "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione "
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,16 +150,16 @@ msgstr ""
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,108 +172,114 @@ msgstr ""
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,7 +290,7 @@ msgstr ""
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 "
@@ -272,11 +301,11 @@ msgstr ""
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,11 +313,11 @@ msgstr ""
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,84 +329,84 @@ msgstr ""
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,228 +414,238 @@ msgstr ""
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
 
526
- #: top-10.php:257
527
  msgid "Display the posts popular this week"
528
  msgstr "Mostra articoli più popolari settimana in corso"
529
 
530
- #: top-10.php:271
531
  msgid "Title"
532
  msgstr ""
533
 
534
- #: top-10.php:276
535
  msgid "No. of posts"
536
  msgstr ""
537
 
538
- #: top-10.php:281
539
  msgid "Overall"
540
  msgstr ""
541
 
542
- #: top-10.php:282
543
  msgid "Custom time period (Enter below)"
544
  msgstr ""
545
 
546
- #: top-10.php:287
547
  msgid "Range in number of days (applies only to custom option above)"
548
  msgstr ""
549
 
550
- #: top-10.php:291
551
  #, fuzzy
552
  msgid "Thumbnail options"
553
  msgstr "Opzioni miniature articolo:"
554
 
555
- #: top-10.php:293
556
  #, fuzzy
557
  msgid "Thumbnails inline, before title"
558
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
559
 
560
- #: top-10.php:294
561
  #, fuzzy
562
  msgid "Thumbnails inline, after title"
563
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
564
 
565
- #: top-10.php:295
566
  #, fuzzy
567
  msgid "Only thumbnails, no text"
568
  msgstr "Mostra le sole miniature, nessun testo"
569
 
570
- #: top-10.php:296
571
  #, fuzzy
572
  msgid "No thumbnails, only text."
573
  msgstr "Non mostrare le miniature, solo testo."
574
 
575
- #: top-10.php:301
576
  #, fuzzy
577
  msgid " Show excerpt?"
578
  msgstr "Desideri mostrare gli estratti?"
579
 
580
- #: top-10.php:367
581
  msgid "<h3>Popular Posts</h3>"
582
  msgstr "<h3>Articoli più letti</h3>"
583
 
584
- #: top-10.php:368
585
  msgid "<h3>Daily Popular</h3>"
586
  msgstr "<h3>I più letti di oggi</h3>"
587
 
588
- #: top-10.php:369
589
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:46-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Le opzioni sono state salvate con successo."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Opzioni impostate alle predefinite."
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Ripristino 10 articoli più popolari"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Ripristino 10 articoli più popolari del giorno"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Numero degli articoli più popolari da mostrare:"
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
  "Quanti giorni desideri siano considerati per il computo delle "
58
  "visualizzazioni per articoli più popolari del giorno?"
59
 
60
+ #: admin.inc.php:138
61
+ #, fuzzy
62
+ msgid "Exclude Pages?"
63
+ msgstr "Escludi categorie:"
64
+
65
+ #: admin.inc.php:139
66
  msgid ""
67
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
68
  "continue to be counted."
71
  "popolari? Il numero delle visualizzazioni continuerà ad essere comunque "
72
  "aggiornato."
73
 
74
+ #: admin.inc.php:141
75
  msgid "Exclude Categories: "
76
  msgstr "Escludi categorie:"
77
 
78
+ #: admin.inc.php:156
79
+ msgid ""
80
+ "Comma separated list of category slugs. The field above has an autocomplete "
81
+ "so simply start typing in the starting letters and it will prompt you with "
82
+ "options"
83
+ msgstr ""
84
+
85
+ #: admin.inc.php:160
86
  #, fuzzy
87
  msgid "Display number of views on:"
88
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
89
 
90
+ #: admin.inc.php:161
91
  msgid "Posts"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:162
95
  #, fuzzy
96
  msgid "Pages"
97
  msgstr "Pagina"
98
 
99
+ #: admin.inc.php:165
100
+ msgid "Always display latest post count"
101
  msgstr ""
 
 
102
 
103
+ #: admin.inc.php:167
104
+ msgid ""
105
+ "This option uses JavaScript and will increase your page load time. Turn this "
106
+ "off if you are not using caching plugins or are OK with displaying older "
107
+ "cached counts"
108
  msgstr ""
 
 
109
 
110
  #: admin.inc.php:170
111
+ msgid "Always display latest post count in the daily lists"
112
  msgstr ""
113
 
114
  #: admin.inc.php:172
115
  #, fuzzy
116
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
117
  msgstr ""
118
  "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione "
119
  "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
120
  "potrà fare aumentare i tempi di caricamento della stessa pagina"
121
 
122
  #: admin.inc.php:175
123
+ msgid "Track visits of authors on their own posts?"
124
  msgstr ""
125
+ "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
126
+ "del sito?"
127
 
128
  #: admin.inc.php:179
129
+ #, fuzzy
130
+ msgid "Track visits of admins?"
131
+ msgstr ""
132
+ "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
133
+ "del sito?"
134
+
135
+ #: admin.inc.php:183
136
+ msgid "Display page views on Posts > All Posts in Admin"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:187
140
  msgid "Link to Top 10 plugin page"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:189
144
  #, fuzzy
145
  msgid ""
146
  "A link to the plugin is added as an extra list item to the list of popular "
150
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
151
  "opzione!"
152
 
153
+ #: admin.inc.php:196
154
  #, fuzzy
155
  msgid "Output Options"
156
  msgstr "Opzioni output:"
157
 
158
+ #: admin.inc.php:199
159
  msgid "Format to display the count in: "
160
  msgstr "Formato per il conteggio:"
161
 
162
+ #: admin.inc.php:202
163
  #, fuzzy
164
  msgid ""
165
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
172
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
173
  "123 volte, 23 visite odierne)</code>"
174
 
175
+ #: admin.inc.php:204
176
  msgid "Title of popular posts: "
177
  msgstr "Titolo per gli articoli più popolari:"
178
 
179
+ #: admin.inc.php:207
180
  msgid "Title of daily popular posts: "
181
  msgstr "Titolo per gli articoli più popolari del giorno:"
182
 
183
+ #: admin.inc.php:210
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:214
188
  msgid "Blank Output"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:218
192
  msgid "Display:"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:222
196
  msgid "Show post excerpt in list?"
197
  msgstr "Desideri mostrare gli estratti?"
198
 
199
+ #: admin.inc.php:225
200
  msgid "Length of excerpt (in words): "
201
  msgstr "Lunghezza estratto (in parole):"
202
 
203
+ #: admin.inc.php:228
204
+ msgid "Display number of page views in popular lists?"
205
+ msgstr ""
206
+ "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
207
+ "più popolari?"
208
+
209
+ #: admin.inc.php:231
210
  msgid "Customize the output:"
211
  msgstr "Personalizzazione output:"
212
 
213
+ #: admin.inc.php:233
214
  msgid "HTML to display before the list of posts: "
215
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
216
 
217
+ #: admin.inc.php:236
218
  msgid "HTML to display before each list item: "
219
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
220
 
221
+ #: admin.inc.php:239
222
  msgid "HTML to display after each list item: "
223
  msgstr "HTML da mostrare dopo ogni lista:"
224
 
225
+ #: admin.inc.php:242
226
  msgid "HTML to display after the list of posts: "
227
  msgstr "HTML da mostrare dopo la lista degli articoli:"
228
 
229
+ #: admin.inc.php:245
230
  msgid "Post thumbnail options:"
231
  msgstr "Opzioni miniature articolo:"
232
 
233
+ #: admin.inc.php:247
234
  msgid "Location of post thumbnail:"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:251
238
  msgid "Display thumbnails inline with posts, before title"
239
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
240
 
241
+ #: admin.inc.php:255
242
  msgid "Display thumbnails inline with posts, after title"
243
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
244
 
245
+ #: admin.inc.php:259
246
  msgid "Display only thumbnails, no text"
247
  msgstr "Mostra le sole miniature, nessun testo"
248
 
249
+ #: admin.inc.php:263
250
  msgid "Do not display thumbnails, only text."
251
  msgstr "Non mostrare le miniature, solo testo."
252
 
253
+ #: admin.inc.php:267
254
  msgid "Maximum width of the thumbnail: "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:270
258
  msgid "Maximum height of the thumbnail: "
259
  msgstr ""
260
 
261
+ #: admin.inc.php:273
262
  msgid "Use timthumb to generate thumbnails? "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:274
266
  msgid ""
267
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
268
  "\">timthumb</a> will be used to generate thumbnails"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:276
272
  #, fuzzy
273
  msgid "Post thumbnail meta field name: "
274
  msgstr "Opzioni miniature articolo:"
275
 
276
+ #: admin.inc.php:277
277
  msgid ""
278
  "The value of this field should contain the image source and is set in the "
279
  "<em>Add New Post</em> screen"
280
  msgstr ""
281
 
282
+ #: admin.inc.php:279
283
  #, fuzzy
284
  msgid ""
285
  "If the postmeta is not set, then should the plugin extract the first image "
290
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
291
  "dimensioni"
292
 
293
+ #: admin.inc.php:280
294
  #, fuzzy
295
  msgid ""
296
  "This could slow down the loading of your page if the first image in the "
301
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
302
  "dimensioni"
303
 
304
+ #: admin.inc.php:282
305
  msgid "Use default thumbnail? "
306
  msgstr ""
307
 
308
+ #: admin.inc.php:283
309
  msgid ""
310
  "If checked, when no thumbnail is found, show a default one from the URL "
311
  "below. If not checked and no thumbnail is found, no image will be shown."
313
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
314
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
315
 
316
+ #: admin.inc.php:285
317
  msgid "Default thumbnail: "
318
  msgstr ""
319
 
320
+ #: admin.inc.php:286
321
  #, fuzzy
322
  msgid ""
323
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
329
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
330
  "specificato qui sotto:"
331
 
332
+ #: admin.inc.php:292
333
  msgid "Custom Styles"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:295
337
  msgid "Custom CSS to add to header:"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:298
341
  msgid ""
342
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
343
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
344
  "available CSS classes to style."
345
  msgstr ""
346
 
347
+ #: admin.inc.php:303
348
  msgid "Maintenance"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:307
352
  msgid ""
353
  "Over time the Daily Top 10 database grows in size, which reduces the "
354
  "performance of the plugin. Cleaning the database at regular intervals could "
355
  "improve performance, especially on high traffic blogs."
356
  msgstr ""
357
 
358
+ #: admin.inc.php:308
359
  msgid ""
360
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
361
  "everytime the job is rescheduled (i.e. you change the settings below). This "
362
  "causes the daily posts table to reset."
363
  msgstr ""
364
 
365
+ #: admin.inc.php:311
366
  msgid "Enable scheduled maintenance of daily tables:"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:316
370
  msgid "Time to run maintenance"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:319
374
  msgid "How often should the maintenance be run:"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:323
378
  msgid "Daily"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:327
382
  msgid "Weekly"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:331
386
  msgid "Fortnightly"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:335
390
  msgid "Monthly"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:344
394
  msgid "The cron job has been scheduled. Maintenance will run "
395
  msgstr ""
396
 
397
+ #: admin.inc.php:349
398
  msgid "The cron job is missing. Please resave this page to add the job"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:354
402
  msgid "Maintenance is turned off"
403
  msgstr ""
404
 
405
+ #: admin.inc.php:362
406
  msgid "Reset count"
407
  msgstr "Ripristino conteggio"
408
 
409
+ #: admin.inc.php:365
410
  msgid ""
411
  "This cannot be reversed. Make sure that your database has been backed up "
412
  "before proceeding"
414
  "Questa operazione non é reversibile. Effettua il backup del database prima "
415
  "di procedere"
416
 
417
+ #: admin.inc.php:368
418
  #, fuzzy
419
  msgid "Reset Popular Posts"
420
  msgstr "Gli articoli più popolari"
421
 
422
+ #: admin.inc.php:368
423
  msgid "Are you sure you want to reset the popular posts?"
424
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
425
 
426
+ #: admin.inc.php:369
427
  #, fuzzy
428
  msgid "Reset Daily Popular Posts"
429
  msgstr "Gli articoli più popolari di oggi"
430
 
431
+ #: admin.inc.php:369
432
  msgid "Are you sure you want to reset the daily popular posts?"
433
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
434
 
435
+ #: admin.inc.php:370
436
  msgid "Clear duplicates"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:370
440
  msgid "This will delete the duplicate entries in the tables. Proceed?"
441
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
442
 
443
+ #: admin.inc.php:374
444
  #, fuzzy
445
  msgid "Save Options"
446
  msgstr "Opzioni:"
447
 
448
+ #: admin.inc.php:375
449
  #, fuzzy
450
  msgid "Default Options"
451
  msgstr "Opzioni output:"
452
 
453
+ #: admin.inc.php:375
454
  msgid "Do you want to set options to Default?"
455
  msgstr "Desideri ripristinare alle predefinite?"
456
 
457
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
458
  msgid "Popular Posts"
459
  msgstr "Gli articoli più popolari"
460
 
461
+ #: admin.inc.php:406 admin.inc.php:480
462
  msgid "Daily Popular Posts"
463
  msgstr "Gli articoli più popolari di oggi"
464
 
465
+ #: admin.inc.php:428
466
  msgid "Support the development"
467
  msgstr "Sostieni lo sviluppo"
468
 
469
+ #: admin.inc.php:436
470
  msgid "Enter amount in USD: "
471
  msgstr "Inserisci la cifra in USD: "
472
 
473
+ #: admin.inc.php:440
474
  msgid "Send your donation to the author of"
475
  msgstr "Invia la tua donazione all'autore di"
476
 
477
+ #: admin.inc.php:446
478
+ msgid "Follow us"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:452
482
  #, fuzzy
483
  msgid "Quick Links"
484
  msgstr "Collegamenti veloci"
485
 
486
+ #: admin.inc.php:454
487
  #, fuzzy
488
  msgid "Top 10 plugin page"
489
  msgstr "pagina plugin"
490
 
491
+ #: admin.inc.php:455
492
  msgid "Other plugins"
493
  msgstr "Altri plugin"
494
 
495
+ #: admin.inc.php:456
496
  msgid "Ajay's blog"
497
  msgstr "Il blog di Ajay"
498
 
499
+ #: admin.inc.php:457 top-10.php:757
500
  msgid "Support"
501
  msgstr "Supporto"
502
 
503
+ #: admin.inc.php:458
504
  msgid "Follow @ajaydsouza on Twitter"
505
  msgstr "Segui @ajaydsouza su Twitter"
506
 
507
+ #: admin.inc.php:462
508
  msgid "Recent developments"
509
  msgstr "Sviluppi recenti"
510
 
511
+ #: admin.inc.php:474
512
+ #, fuzzy
513
+ msgid "Top 10 Settings"
514
+ msgstr "Impostazioni"
515
+
516
+ #: admin.inc.php:474
517
  msgid "Top 10"
518
  msgstr "Top 10"
519
 
520
+ #: admin.inc.php:477
521
+ #, fuzzy
522
+ msgid "Overall Popular Posts"
523
+ msgstr "Visualizza panoramica articoli più popolari"
524
+
525
+ #: admin.inc.php:595
526
  msgid "Results"
527
  msgstr "Risultati"
528
 
529
+ #: admin.inc.php:597 admin.inc.php:603
530
  msgid "of"
531
  msgstr "di"
532
 
533
+ #: admin.inc.php:601
534
  msgid "Page"
535
  msgstr "Pagina"
536
 
537
+ #: admin.inc.php:615
538
  msgid "View Daily Popular Posts"
539
  msgstr "Visualizza gli articoli più letti di oggi"
540
 
541
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
542
  msgid "Results per-page:"
543
  msgstr "Risultati per pagina:"
544
 
545
+ #: admin.inc.php:628
546
+ msgid "View Overall Popular Posts"
547
+ msgstr "Visualizza panoramica articoli più popolari"
548
+
549
+ #: admin.inc.php:657
550
  msgid "Previous"
551
  msgstr "Precedente"
552
 
553
+ #: admin.inc.php:675
554
  msgid "Next"
555
  msgstr "Successiva"
556
 
557
+ #: admin.inc.php:698
558
  msgid "Daily Popular"
559
  msgstr "I più letti di oggi"
560
 
561
+ #: admin.inc.php:709
562
  msgid "Total / Today's Views"
563
  msgstr "Totale / Visualizzazioni odierne"
564
 
565
+ #: top-10.php:318
566
  msgid "Display the posts popular this week"
567
  msgstr "Mostra articoli più popolari settimana in corso"
568
 
569
+ #: top-10.php:332
570
  msgid "Title"
571
  msgstr ""
572
 
573
+ #: top-10.php:337
574
  msgid "No. of posts"
575
  msgstr ""
576
 
577
+ #: top-10.php:342
578
  msgid "Overall"
579
  msgstr ""
580
 
581
+ #: top-10.php:343
582
  msgid "Custom time period (Enter below)"
583
  msgstr ""
584
 
585
+ #: top-10.php:348
586
  msgid "Range in number of days (applies only to custom option above)"
587
  msgstr ""
588
 
589
+ #: top-10.php:352
590
  #, fuzzy
591
  msgid "Thumbnail options"
592
  msgstr "Opzioni miniature articolo:"
593
 
594
+ #: top-10.php:354
595
  #, fuzzy
596
  msgid "Thumbnails inline, before title"
597
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
598
 
599
+ #: top-10.php:355
600
  #, fuzzy
601
  msgid "Thumbnails inline, after title"
602
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
603
 
604
+ #: top-10.php:356
605
  #, fuzzy
606
  msgid "Only thumbnails, no text"
607
  msgstr "Mostra le sole miniature, nessun testo"
608
 
609
+ #: top-10.php:357
610
  #, fuzzy
611
  msgid "No thumbnails, only text."
612
  msgstr "Non mostrare le miniature, solo testo."
613
 
614
+ #: top-10.php:362
615
  #, fuzzy
616
  msgid " Show excerpt?"
617
  msgstr "Desideri mostrare gli estratti?"
618
 
619
+ #: top-10.php:431
620
  msgid "<h3>Popular Posts</h3>"
621
  msgstr "<h3>Articoli più letti</h3>"
622
 
623
+ #: top-10.php:432
624
  msgid "<h3>Daily Popular</h3>"
625
  msgstr "<h3>I più letti di oggi</h3>"
626
 
627
+ #: top-10.php:433
628
  #, fuzzy
629
  msgid "No top posts yet"
630
  msgstr "Ripristino 10 articoli più popolari"
631
 
632
+ #: top-10.php:721
633
  msgid "Once Weekly"
634
  msgstr ""
635
 
636
+ #: top-10.php:722
637
  msgid "Once Fortnightly"
638
  msgstr ""
639
 
640
+ #: top-10.php:723
641
  msgid "Once Monthly"
642
  msgstr ""
643
 
644
+ #: top-10.php:744
645
  msgid "Settings"
646
  msgstr "Impostazioni"
647
 
648
+ #: top-10.php:758
649
  msgid "Donate"
650
  msgstr "Donazione"
651
 
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-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"
@@ -13,50 +13,55 @@ msgstr ""
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: utf-8\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,54 +69,71 @@ msgstr ""
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 "
101
- "time"
102
  msgstr ""
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,16 +143,16 @@ msgstr ""
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,110 +164,114 @@ msgstr ""
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,7 +282,7 @@ msgstr ""
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 "
@@ -267,21 +293,21 @@ msgstr ""
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,84 +319,84 @@ msgstr ""
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,229 +404,239 @@ msgstr ""
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
 
520
- #: top-10.php:257
521
  msgid "Display the posts popular this week"
522
  msgstr ""
523
 
524
- #: top-10.php:271
525
  msgid "Title"
526
  msgstr ""
527
 
528
- #: top-10.php:276
529
  msgid "No. of posts"
530
  msgstr ""
531
 
532
- #: top-10.php:281
533
  msgid "Overall"
534
  msgstr ""
535
 
536
- #: top-10.php:282
537
  msgid "Custom time period (Enter below)"
538
  msgstr ""
539
 
540
- #: top-10.php:287
541
  msgid "Range in number of days (applies only to custom option above)"
542
  msgstr ""
543
 
544
- #: top-10.php:291
545
  #, fuzzy
546
  msgid "Thumbnail options"
547
  msgstr "Bericht miniatuurafbeelding opties:"
548
 
549
- #: top-10.php:293
550
  #, fuzzy
551
  msgid "Thumbnails inline, before title"
552
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
553
 
554
- #: top-10.php:294
555
  #, fuzzy
556
  msgid "Thumbnails inline, after title"
557
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
558
 
559
- #: top-10.php:295
560
  #, fuzzy
561
  msgid "Only thumbnails, no text"
562
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
563
 
564
- #: top-10.php:296
565
  #, fuzzy
566
  msgid "No thumbnails, only text."
567
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
568
 
569
- #: top-10.php:301
570
  #, fuzzy
571
  msgid " Show excerpt?"
572
  msgstr "Laat bericht samenvatting zien in lijst?"
573
 
574
- #: top-10.php:367
575
  msgid "<h3>Popular Posts</h3>"
576
  msgstr "<h3>Populaire Berichten</h3>"
577
 
578
- #: top-10.php:368
579
  msgid "<h3>Daily Popular</h3>"
580
  msgstr "<h3>Dagelijks Populair</h3>"
581
 
582
- #: top-10.php:369
583
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:46-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"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:71
21
  msgid "Scheduled maintenance enabled / modified"
22
  msgstr ""
23
 
24
+ #: admin.inc.php:75
25
  msgid "Scheduled maintenance disabled"
26
  msgstr ""
27
 
28
+ #: admin.inc.php:80
29
  msgid "Options saved successfully."
30
  msgstr "Opties succesvol opgeslagen."
31
 
32
+ #: admin.inc.php:89
33
  msgid "Options set to Default."
34
  msgstr "Opties ingesteld op Standaard."
35
 
36
+ #: admin.inc.php:95
37
  msgid "Top 10 popular posts reset"
38
  msgstr "Reset Top 10 populaire berichten"
39
 
40
+ #: admin.inc.php:101
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Reset Top 10 dagelijkse populaire berichten"
43
 
44
+ #: admin.inc.php:108
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:129
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:132
53
  msgid "Number of popular posts to display: "
54
  msgstr "Aantal populaire berichten om weer te geven:"
55
 
56
+ #: admin.inc.php:135
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
59
 
60
+ #: admin.inc.php:138
61
+ msgid "Exclude Pages?"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal "
70
  "bekeken pagina's zal verder worden geteld."
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr ""
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "Geef het aantal berichtweergaves weer?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "Pagina"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
+ msgstr ""
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
117
  "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
118
 
119
  #: admin.inc.php:175
120
+ msgid "Track visits of authors on their own posts?"
121
+ msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
122
+
123
+ #: admin.inc.php:179
124
+ #, fuzzy
125
+ msgid "Track visits of admins?"
126
+ msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
127
+
128
+ #: admin.inc.php:183
129
  msgid "Display page views on Posts > All Posts in Admin"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:187
133
  msgid "Link to Top 10 plugin page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:189
137
  #, fuzzy
138
  msgid ""
139
  "A link to the plugin is added as an extra list item to the list of popular "
143
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
144
  "gewaardeerd!"
145
 
146
+ #: admin.inc.php:196
147
  #, fuzzy
148
  msgid "Output Options"
149
  msgstr "Output Opties:"
150
 
151
+ #: admin.inc.php:199
152
  msgid "Format to display the count in: "
153
  msgstr "Formaat om de optelling te laten zien:"
154
 
155
+ #: admin.inc.php:202
156
  #, fuzzy
157
  msgid ""
158
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
164
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
165
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
166
 
167
+ #: admin.inc.php:204
168
  msgid "Title of popular posts: "
169
  msgstr "Titel van populaire berichten:"
170
 
171
+ #: admin.inc.php:207
172
  msgid "Title of daily popular posts: "
173
  msgstr "Titel van dagelijkse populaire berichten:"
174
 
175
+ #: admin.inc.php:210
176
  msgid "When there are no posts, what should be shown?"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:214
180
  msgid "Blank Output"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:218
184
  msgid "Display:"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:222
188
  msgid "Show post excerpt in list?"
189
  msgstr "Laat bericht samenvatting zien in lijst?"
190
 
191
+ #: admin.inc.php:225
192
  msgid "Length of excerpt (in words): "
193
  msgstr "Lengte van de samenvatting (in woorden):"
194
 
195
+ #: admin.inc.php:228
196
+ msgid "Display number of page views in popular lists?"
197
+ msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
198
+
199
+ #: admin.inc.php:231
200
  msgid "Customize the output:"
201
  msgstr "Aanpassen van de output:"
202
 
203
+ #: admin.inc.php:233
204
  msgid "HTML to display before the list of posts: "
205
  msgstr "Te weergeven HTML voor de lijst met berichten:"
206
 
207
+ #: admin.inc.php:236
208
  msgid "HTML to display before each list item: "
209
  msgstr "Te weergeven HTML voor elk lijst item:"
210
 
211
+ #: admin.inc.php:239
212
  msgid "HTML to display after each list item: "
213
  msgstr "Te weergeven HTML na elk lijst item:"
214
 
215
+ #: admin.inc.php:242
216
  msgid "HTML to display after the list of posts: "
217
  msgstr "Te weergeven HTML na de lijst met berichten:"
218
 
219
+ #: admin.inc.php:245
220
  msgid "Post thumbnail options:"
221
  msgstr "Bericht miniatuurafbeelding opties:"
222
 
223
+ #: admin.inc.php:247
224
  msgid "Location of post thumbnail:"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:251
228
  #, fuzzy
229
  msgid "Display thumbnails inline with posts, before title"
230
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
231
 
232
+ #: admin.inc.php:255
233
  #, fuzzy
234
  msgid "Display thumbnails inline with posts, after title"
235
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
236
 
237
+ #: admin.inc.php:259
238
  msgid "Display only thumbnails, no text"
239
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
240
 
241
+ #: admin.inc.php:263
242
  msgid "Do not display thumbnails, only text."
243
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
244
 
245
+ #: admin.inc.php:267
246
  msgid "Maximum width of the thumbnail: "
247
  msgstr ""
248
 
249
+ #: admin.inc.php:270
250
  msgid "Maximum height of the thumbnail: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:273
254
  msgid "Use timthumb to generate thumbnails? "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:274
258
  msgid ""
259
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
260
  "\">timthumb</a> will be used to generate thumbnails"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:276
264
  #, fuzzy
265
  msgid "Post thumbnail meta field name: "
266
  msgstr "Bericht miniatuurafbeelding opties:"
267
 
268
+ #: admin.inc.php:277
269
  msgid ""
270
  "The value of this field should contain the image source and is set in the "
271
  "<em>Add New Post</em> screen"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:279
275
  #, fuzzy
276
  msgid ""
277
  "If the postmeta is not set, then should the plugin extract the first image "
282
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
283
  "qua bestandsgrootte"
284
 
285
+ #: admin.inc.php:280
286
  #, fuzzy
287
  msgid ""
288
  "This could slow down the loading of your page if the first image in the "
293
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
294
  "qua bestandsgrootte"
295
 
296
+ #: admin.inc.php:282
297
  msgid "Use default thumbnail? "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:283
301
  msgid ""
302
  "If checked, when no thumbnail is found, show a default one from the URL "
303
  "below. If not checked and no thumbnail is found, no image will be shown."
304
  msgstr ""
305
 
306
+ #: admin.inc.php:285
307
  msgid "Default thumbnail: "
308
  msgstr ""
309
 
310
+ #: admin.inc.php:286
311
  #, fuzzy
312
  msgid ""
313
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
319
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
320
  "standaard afbeelding zoals hieronder aangegeven:"
321
 
322
+ #: admin.inc.php:292
323
  msgid "Custom Styles"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:295
327
  msgid "Custom CSS to add to header:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:298
331
  msgid ""
332
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
333
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
334
  "available CSS classes to style."
335
  msgstr ""
336
 
337
+ #: admin.inc.php:303
338
  msgid "Maintenance"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:307
342
  msgid ""
343
  "Over time the Daily Top 10 database grows in size, which reduces the "
344
  "performance of the plugin. Cleaning the database at regular intervals could "
345
  "improve performance, especially on high traffic blogs."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:308
349
  msgid ""
350
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
351
  "everytime the job is rescheduled (i.e. you change the settings below). This "
352
  "causes the daily posts table to reset."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:311
356
  msgid "Enable scheduled maintenance of daily tables:"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:316
360
  msgid "Time to run maintenance"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:319
364
  msgid "How often should the maintenance be run:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:323
368
  msgid "Daily"
369
  msgstr ""
370
 
371
+ #: admin.inc.php:327
372
  msgid "Weekly"
373
  msgstr ""
374
 
375
+ #: admin.inc.php:331
376
  msgid "Fortnightly"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:335
380
  msgid "Monthly"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:344
384
  msgid "The cron job has been scheduled. Maintenance will run "
385
  msgstr ""
386
 
387
+ #: admin.inc.php:349
388
  msgid "The cron job is missing. Please resave this page to add the job"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:354
392
  msgid "Maintenance is turned off"
393
  msgstr ""
394
 
395
+ #: admin.inc.php:362
396
  msgid "Reset count"
397
  msgstr "Reset telling"
398
 
399
+ #: admin.inc.php:365
400
  msgid ""
401
  "This cannot be reversed. Make sure that your database has been backed up "
402
  "before proceeding"
404
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
405
  "database gemaakt hebt voordat je verder gaat"
406
 
407
+ #: admin.inc.php:368
408
  #, fuzzy
409
  msgid "Reset Popular Posts"
410
  msgstr "Populaire Berichten"
411
 
412
+ #: admin.inc.php:368
413
  msgid "Are you sure you want to reset the popular posts?"
414
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
415
 
416
+ #: admin.inc.php:369
417
  #, fuzzy
418
  msgid "Reset Daily Popular Posts"
419
  msgstr "Dagelijkse Populaire Berichten"
420
 
421
+ #: admin.inc.php:369
422
  msgid "Are you sure you want to reset the daily popular posts?"
423
  msgstr ""
424
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
425
 
426
+ #: admin.inc.php:370
427
  msgid "Clear duplicates"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:370
431
  msgid "This will delete the duplicate entries in the tables. Proceed?"
432
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
433
 
434
+ #: admin.inc.php:374
435
  #, fuzzy
436
  msgid "Save Options"
437
  msgstr "Opties:"
438
 
439
+ #: admin.inc.php:375
440
  #, fuzzy
441
  msgid "Default Options"
442
  msgstr "Output Opties:"
443
 
444
+ #: admin.inc.php:375
445
  msgid "Do you want to set options to Default?"
446
  msgstr "Wil je de opties terugzetten naar standaard?"
447
 
448
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
449
  msgid "Popular Posts"
450
  msgstr "Populaire Berichten"
451
 
452
+ #: admin.inc.php:406 admin.inc.php:480
453
  msgid "Daily Popular Posts"
454
  msgstr "Dagelijkse Populaire Berichten"
455
 
456
+ #: admin.inc.php:428
457
  msgid "Support the development"
458
  msgstr "Ondersteun de ontwikkeling"
459
 
460
+ #: admin.inc.php:436
461
  msgid "Enter amount in USD: "
462
  msgstr "Voer het bedrag in in USD:"
463
 
464
+ #: admin.inc.php:440
465
  msgid "Send your donation to the author of"
466
  msgstr "Zend je donatie naar de auteur van "
467
 
468
+ #: admin.inc.php:446
469
+ msgid "Follow us"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:452
473
  #, fuzzy
474
  msgid "Quick Links"
475
  msgstr "Quick links"
476
 
477
+ #: admin.inc.php:454
478
  #, fuzzy
479
  msgid "Top 10 plugin page"
480
  msgstr "plugin pagina"
481
 
482
+ #: admin.inc.php:455
483
  msgid "Other plugins"
484
  msgstr "Andere plugins"
485
 
486
+ #: admin.inc.php:456
487
  msgid "Ajay's blog"
488
  msgstr "De blog van Ajay"
489
 
490
+ #: admin.inc.php:457 top-10.php:757
491
  msgid "Support"
492
  msgstr "Ondersteuning"
493
 
494
+ #: admin.inc.php:458
495
  msgid "Follow @ajaydsouza on Twitter"
496
  msgstr "Volg @ajaydsouza via Twitter"
497
 
498
+ #: admin.inc.php:462
499
  msgid "Recent developments"
500
  msgstr "Recente ontwikkelingen"
501
 
502
+ #: admin.inc.php:474
503
+ #, fuzzy
504
+ msgid "Top 10 Settings"
505
+ msgstr "Instellingen"
506
+
507
+ #: admin.inc.php:474
508
  msgid "Top 10"
509
  msgstr "Top 10"
510
 
511
+ #: admin.inc.php:477
512
+ #, fuzzy
513
+ msgid "Overall Popular Posts"
514
+ msgstr "Bekijk het Totaal Populaire Berichten"
515
+
516
+ #: admin.inc.php:595
517
  msgid "Results"
518
  msgstr "Resultaten"
519
 
520
+ #: admin.inc.php:597 admin.inc.php:603
521
  msgid "of"
522
  msgstr "van"
523
 
524
+ #: admin.inc.php:601
525
  msgid "Page"
526
  msgstr "Pagina"
527
 
528
+ #: admin.inc.php:615
529
  msgid "View Daily Popular Posts"
530
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
531
 
532
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
533
  msgid "Results per-page:"
534
  msgstr "Resultaten per pagina:"
535
 
536
+ #: admin.inc.php:628
537
+ msgid "View Overall Popular Posts"
538
+ msgstr "Bekijk het Totaal Populaire Berichten"
539
+
540
+ #: admin.inc.php:657
541
  msgid "Previous"
542
  msgstr "Vorige"
543
 
544
+ #: admin.inc.php:675
545
  msgid "Next"
546
  msgstr "Volgende"
547
 
548
+ #: admin.inc.php:698
549
  msgid "Daily Popular"
550
  msgstr "Dagelijks Populair"
551
 
552
+ #: admin.inc.php:709
553
  msgid "Total / Today's Views"
554
  msgstr "Totale Weergaves / Weergaves van Vandaag"
555
 
556
+ #: top-10.php:318
557
  msgid "Display the posts popular this week"
558
  msgstr ""
559
 
560
+ #: top-10.php:332
561
  msgid "Title"
562
  msgstr ""
563
 
564
+ #: top-10.php:337
565
  msgid "No. of posts"
566
  msgstr ""
567
 
568
+ #: top-10.php:342
569
  msgid "Overall"
570
  msgstr ""
571
 
572
+ #: top-10.php:343
573
  msgid "Custom time period (Enter below)"
574
  msgstr ""
575
 
576
+ #: top-10.php:348
577
  msgid "Range in number of days (applies only to custom option above)"
578
  msgstr ""
579
 
580
+ #: top-10.php:352
581
  #, fuzzy
582
  msgid "Thumbnail options"
583
  msgstr "Bericht miniatuurafbeelding opties:"
584
 
585
+ #: top-10.php:354
586
  #, fuzzy
587
  msgid "Thumbnails inline, before title"
588
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
589
 
590
+ #: top-10.php:355
591
  #, fuzzy
592
  msgid "Thumbnails inline, after title"
593
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
594
 
595
+ #: top-10.php:356
596
  #, fuzzy
597
  msgid "Only thumbnails, no text"
598
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
599
 
600
+ #: top-10.php:357
601
  #, fuzzy
602
  msgid "No thumbnails, only text."
603
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
604
 
605
+ #: top-10.php:362
606
  #, fuzzy
607
  msgid " Show excerpt?"
608
  msgstr "Laat bericht samenvatting zien in lijst?"
609
 
610
+ #: top-10.php:431
611
  msgid "<h3>Popular Posts</h3>"
612
  msgstr "<h3>Populaire Berichten</h3>"
613
 
614
+ #: top-10.php:432
615
  msgid "<h3>Daily Popular</h3>"
616
  msgstr "<h3>Dagelijks Populair</h3>"
617
 
618
+ #: top-10.php:433
619
  #, fuzzy
620
  msgid "No top posts yet"
621
  msgstr "Reset Top 10 populaire berichten"
622
 
623
+ #: top-10.php:721
624
  msgid "Once Weekly"
625
  msgstr ""
626
 
627
+ #: top-10.php:722
628
  msgid "Once Fortnightly"
629
  msgstr ""
630
 
631
+ #: top-10.php:723
632
  msgid "Once Monthly"
633
  msgstr ""
634
 
635
+ #: top-10.php:744
636
  msgid "Settings"
637
  msgstr "Instellingen"
638
 
639
+ #: top-10.php:758
640
  msgid "Donate"
641
  msgstr "Doneer"
642
 
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-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"
@@ -12,49 +12,55 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,55 +68,72 @@ msgstr ""
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 "
99
- "time"
100
  msgstr ""
101
  "Vigoare lista de zi cu zi de posturi să fie dinamic? Această opţiune "
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,16 +142,16 @@ msgstr ""
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,108 +163,112 @@ msgstr ""
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,7 +279,7 @@ msgstr ""
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 "
@@ -263,11 +290,11 @@ msgstr ""
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,95 +303,95 @@ msgstr ""
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,228 +399,238 @@ msgstr ""
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
 
513
- #: top-10.php:257
514
  msgid "Display the posts popular this week"
515
  msgstr "Afişa posturi populare în această săptămână"
516
 
517
- #: top-10.php:271
518
  msgid "Title"
519
  msgstr ""
520
 
521
- #: top-10.php:276
522
  msgid "No. of posts"
523
  msgstr ""
524
 
525
- #: top-10.php:281
526
  msgid "Overall"
527
  msgstr ""
528
 
529
- #: top-10.php:282
530
  msgid "Custom time period (Enter below)"
531
  msgstr ""
532
 
533
- #: top-10.php:287
534
  msgid "Range in number of days (applies only to custom option above)"
535
  msgstr ""
536
 
537
- #: top-10.php:291
538
  #, fuzzy
539
  msgid "Thumbnail options"
540
  msgstr "Post Opţiuni pictograme:"
541
 
542
- #: top-10.php:293
543
  #, fuzzy
544
  msgid "Thumbnails inline, before title"
545
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
546
 
547
- #: top-10.php:294
548
  #, fuzzy
549
  msgid "Thumbnails inline, after title"
550
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
551
 
552
- #: top-10.php:295
553
  #, fuzzy
554
  msgid "Only thumbnails, no text"
555
  msgstr "Afişa numai miniaturi, nici un text"
556
 
557
- #: top-10.php:296
558
  #, fuzzy
559
  msgid "No thumbnails, only text."
560
  msgstr "Nu se afişează miniaturi, numai textul."
561
 
562
- #: top-10.php:301
563
  #, fuzzy
564
  msgid " Show excerpt?"
565
  msgstr "Afişează post extras din lista?"
566
 
567
- #: top-10.php:367
568
  msgid "<h3>Popular Posts</h3>"
569
  msgstr "<h3>Posturi populare</h3>"
570
 
571
- #: top-10.php:368
572
  msgid "<h3>Daily Popular</h3>"
573
  msgstr "<h3>Daily populare</h3>"
574
 
575
- #: top-10.php:369
576
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:47-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Opţiuni salvat cu succes."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Opţiunile setate la valorile implicite."
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Top 10 populare posturi Resetare"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Top 10 posturi populare daily Reiniţializare"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Numărul de posturi populare pentru a afişa: "
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
57
 
58
+ #: admin.inc.php:138
59
+ #, fuzzy
60
+ msgid "Exclude Pages?"
61
+ msgstr "Excludeţi categorii: "
62
+
63
+ #: admin.inc.php:139
64
  msgid ""
65
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
66
  "continue to be counted."
68
  "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe "
69
  "pagini va continua să fie numărate."
70
 
71
+ #: admin.inc.php:141
72
  msgid "Exclude Categories: "
73
  msgstr "Excludeţi categorii: "
74
 
75
+ #: admin.inc.php:156
76
+ msgid ""
77
+ "Comma separated list of category slugs. The field above has an autocomplete "
78
+ "so simply start typing in the starting letters and it will prompt you with "
79
+ "options"
80
+ msgstr ""
81
+
82
+ #: admin.inc.php:160
83
  #, fuzzy
84
  msgid "Display number of views on:"
85
  msgstr "Afişează numărul de vizualizări pe posturi?"
86
 
87
+ #: admin.inc.php:161
88
  msgid "Posts"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:162
92
  #, fuzzy
93
  msgid "Pages"
94
  msgstr "Pagină"
95
 
96
+ #: admin.inc.php:165
97
+ msgid "Always display latest post count"
98
+ msgstr ""
99
 
100
+ #: admin.inc.php:167
101
+ msgid ""
102
+ "This option uses JavaScript and will increase your page load time. Turn this "
103
+ "off if you are not using caching plugins or are OK with displaying older "
104
+ "cached counts"
105
+ msgstr ""
106
 
107
  #: admin.inc.php:170
108
+ msgid "Always display latest post count in the daily lists"
109
  msgstr ""
110
 
111
  #: admin.inc.php:172
112
  #, fuzzy
113
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
114
  msgstr ""
115
  "Vigoare lista de zi cu zi de posturi să fie dinamic? Această opţiune "
116
  "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
117
  "pagină"
118
 
119
  #: admin.inc.php:175
120
+ msgid "Track visits of authors on their own posts?"
121
+ msgstr "Track vizite de autori pe posturile lor proprii?"
122
+
123
+ #: admin.inc.php:179
124
+ #, fuzzy
125
+ msgid "Track visits of admins?"
126
+ msgstr "Track vizite de autori pe posturile lor proprii?"
127
+
128
+ #: admin.inc.php:183
129
  msgid "Display page views on Posts > All Posts in Admin"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:187
133
  msgid "Link to Top 10 plugin page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:189
137
  #, fuzzy
138
  msgid ""
139
  "A link to the plugin is added as an extra list item to the list of popular "
142
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
143
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
144
 
145
+ #: admin.inc.php:196
146
  #, fuzzy
147
  msgid "Output Options"
148
  msgstr "Opţiuni de ieşire:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Format to display the count in: "
152
  msgstr "Format pentru a afişa numărul în: "
153
 
154
+ #: admin.inc.php:202
155
  #, fuzzy
156
  msgid ""
157
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
163
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
164
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
165
 
166
+ #: admin.inc.php:204
167
  msgid "Title of popular posts: "
168
  msgstr "Titlul de posturi populare: "
169
 
170
+ #: admin.inc.php:207
171
  msgid "Title of daily popular posts: "
172
  msgstr "Titlul de zi cu zi de posturi populare: "
173
 
174
+ #: admin.inc.php:210
175
  msgid "When there are no posts, what should be shown?"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:214
179
  msgid "Blank Output"
180
  msgstr ""
181
 
182
+ #: admin.inc.php:218
183
  msgid "Display:"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:222
187
  msgid "Show post excerpt in list?"
188
  msgstr "Afişează post extras din lista?"
189
 
190
+ #: admin.inc.php:225
191
  msgid "Length of excerpt (in words): "
192
  msgstr "Lungimea extras (în cuvinte): "
193
 
194
+ #: admin.inc.php:228
195
+ msgid "Display number of page views in popular lists?"
196
+ msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
197
+
198
+ #: admin.inc.php:231
199
  msgid "Customize the output:"
200
  msgstr "Personaliza ieşire:"
201
 
202
+ #: admin.inc.php:233
203
  msgid "HTML to display before the list of posts: "
204
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
205
 
206
+ #: admin.inc.php:236
207
  msgid "HTML to display before each list item: "
208
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
209
 
210
+ #: admin.inc.php:239
211
  msgid "HTML to display after each list item: "
212
  msgstr "HTML pentru a afişa după fiecare element din listă: "
213
 
214
+ #: admin.inc.php:242
215
  msgid "HTML to display after the list of posts: "
216
  msgstr "HTML pentru a afişa după lista de posturi: "
217
 
218
+ #: admin.inc.php:245
219
  msgid "Post thumbnail options:"
220
  msgstr "Post Opţiuni pictograme:"
221
 
222
+ #: admin.inc.php:247
223
  msgid "Location of post thumbnail:"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:251
227
  msgid "Display thumbnails inline with posts, before title"
228
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
229
 
230
+ #: admin.inc.php:255
231
  msgid "Display thumbnails inline with posts, after title"
232
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
233
 
234
+ #: admin.inc.php:259
235
  msgid "Display only thumbnails, no text"
236
  msgstr "Afişa numai miniaturi, nici un text"
237
 
238
+ #: admin.inc.php:263
239
  msgid "Do not display thumbnails, only text."
240
  msgstr "Nu se afişează miniaturi, numai textul."
241
 
242
+ #: admin.inc.php:267
243
  msgid "Maximum width of the thumbnail: "
244
  msgstr ""
245
 
246
+ #: admin.inc.php:270
247
  msgid "Maximum height of the thumbnail: "
248
  msgstr ""
249
 
250
+ #: admin.inc.php:273
251
  msgid "Use timthumb to generate thumbnails? "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:274
255
  msgid ""
256
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
257
  "\">timthumb</a> will be used to generate thumbnails"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:276
261
  #, fuzzy
262
  msgid "Post thumbnail meta field name: "
263
  msgstr "Post Opţiuni pictograme:"
264
 
265
+ #: admin.inc.php:277
266
  msgid ""
267
  "The value of this field should contain the image source and is set in the "
268
  "<em>Add New Post</em> screen"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:279
272
  #, fuzzy
273
  msgid ""
274
  "If the postmeta is not set, then should the plugin extract the first image "
279
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
280
  "fişier"
281
 
282
+ #: admin.inc.php:280
283
  #, fuzzy
284
  msgid ""
285
  "This could slow down the loading of your page if the first image in the "
290
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
291
  "fişier"
292
 
293
+ #: admin.inc.php:282
294
  msgid "Use default thumbnail? "
295
  msgstr ""
296
 
297
+ #: admin.inc.php:283
298
  msgid ""
299
  "If checked, when no thumbnail is found, show a default one from the URL "
300
  "below. If not checked and no thumbnail is found, no image will be shown."
303
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
304
  "thumbnail, imaginea nu va fi indicat."
305
 
306
+ #: admin.inc.php:285
307
  msgid "Default thumbnail: "
308
  msgstr ""
309
 
310
+ #: admin.inc.php:286
311
  msgid ""
312
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
313
  "then it will check the meta field. If this is not available, then it will "
314
  "show the default image as specified above"
315
  msgstr ""
316
 
317
+ #: admin.inc.php:292
318
  msgid "Custom Styles"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:295
322
  msgid "Custom CSS to add to header:"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:298
326
  msgid ""
327
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
328
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
329
  "available CSS classes to style."
330
  msgstr ""
331
 
332
+ #: admin.inc.php:303
333
  msgid "Maintenance"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:307
337
  msgid ""
338
  "Over time the Daily Top 10 database grows in size, which reduces the "
339
  "performance of the plugin. Cleaning the database at regular intervals could "
340
  "improve performance, especially on high traffic blogs."
341
  msgstr ""
342
 
343
+ #: admin.inc.php:308
344
  msgid ""
345
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
346
  "everytime the job is rescheduled (i.e. you change the settings below). This "
347
  "causes the daily posts table to reset."
348
  msgstr ""
349
 
350
+ #: admin.inc.php:311
351
  msgid "Enable scheduled maintenance of daily tables:"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:316
355
  msgid "Time to run maintenance"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:319
359
  msgid "How often should the maintenance be run:"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:323
363
  msgid "Daily"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:327
367
  msgid "Weekly"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:331
371
  msgid "Fortnightly"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:335
375
  msgid "Monthly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:344
379
  msgid "The cron job has been scheduled. Maintenance will run "
380
  msgstr ""
381
 
382
+ #: admin.inc.php:349
383
  msgid "The cron job is missing. Please resave this page to add the job"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:354
387
  msgid "Maintenance is turned off"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:362
391
  msgid "Reset count"
392
  msgstr "Reiniţializare count"
393
 
394
+ #: admin.inc.php:365
395
  msgid ""
396
  "This cannot be reversed. Make sure that your database has been backed up "
397
  "before proceeding"
399
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
400
  "înainte de a continua"
401
 
402
+ #: admin.inc.php:368
403
  #, fuzzy
404
  msgid "Reset Popular Posts"
405
  msgstr "Posturi populare"
406
 
407
+ #: admin.inc.php:368
408
  msgid "Are you sure you want to reset the popular posts?"
409
  msgstr "Sigur reiniţializaţi posturi populare?"
410
 
411
+ #: admin.inc.php:369
412
  #, fuzzy
413
  msgid "Reset Daily Popular Posts"
414
  msgstr "Posturi populare de zi cu zi"
415
 
416
+ #: admin.inc.php:369
417
  msgid "Are you sure you want to reset the daily popular posts?"
418
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
419
 
420
+ #: admin.inc.php:370
421
  msgid "Clear duplicates"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:370
425
  msgid "This will delete the duplicate entries in the tables. Proceed?"
426
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
427
 
428
+ #: admin.inc.php:374
429
  #, fuzzy
430
  msgid "Save Options"
431
  msgstr "Opţiuni:"
432
 
433
+ #: admin.inc.php:375
434
  #, fuzzy
435
  msgid "Default Options"
436
  msgstr "Opţiuni de ieşire:"
437
 
438
+ #: admin.inc.php:375
439
  msgid "Do you want to set options to Default?"
440
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
441
 
442
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
443
  msgid "Popular Posts"
444
  msgstr "Posturi populare"
445
 
446
+ #: admin.inc.php:406 admin.inc.php:480
447
  msgid "Daily Popular Posts"
448
  msgstr "Posturi populare de zi cu zi"
449
 
450
+ #: admin.inc.php:428
451
  msgid "Support the development"
452
  msgstr "Sprijinirea dezvoltării"
453
 
454
+ #: admin.inc.php:436
455
  msgid "Enter amount in USD: "
456
  msgstr "Introduceţi valoarea în USD: "
457
 
458
+ #: admin.inc.php:440
459
  msgid "Send your donation to the author of"
460
  msgstr "Trimite donatie autorului"
461
 
462
+ #: admin.inc.php:446
463
+ msgid "Follow us"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:452
467
  #, fuzzy
468
  msgid "Quick Links"
469
  msgstr "Legături rapide pentru"
470
 
471
+ #: admin.inc.php:454
472
  #, fuzzy
473
  msgid "Top 10 plugin page"
474
  msgstr "plug-in pagina"
475
 
476
+ #: admin.inc.php:455
477
  msgid "Other plugins"
478
  msgstr "Alte plugin-uri"
479
 
480
+ #: admin.inc.php:456
481
  msgid "Ajay's blog"
482
  msgstr "Ajay's blog"
483
 
484
+ #: admin.inc.php:457 top-10.php:757
485
  msgid "Support"
486
  msgstr "Suport"
487
 
488
+ #: admin.inc.php:458
489
  msgid "Follow @ajaydsouza on Twitter"
490
  msgstr "Urmaţi @ ajaydsouza pe Twitter"
491
 
492
+ #: admin.inc.php:462
493
  msgid "Recent developments"
494
  msgstr "Evoluţiile recente"
495
 
496
+ #: admin.inc.php:474
497
+ #, fuzzy
498
+ msgid "Top 10 Settings"
499
+ msgstr "Setări"
500
+
501
+ #: admin.inc.php:474
502
  msgid "Top 10"
503
  msgstr "Top 10"
504
 
505
+ #: admin.inc.php:477
506
+ #, fuzzy
507
+ msgid "Overall Popular Posts"
508
+ msgstr "Vedere de ansamblu posturi populare"
509
+
510
+ #: admin.inc.php:595
511
  msgid "Results"
512
  msgstr "Rezultatele"
513
 
514
+ #: admin.inc.php:597 admin.inc.php:603
515
  msgid "of"
516
  msgstr "de"
517
 
518
+ #: admin.inc.php:601
519
  msgid "Page"
520
  msgstr "Pagină"
521
 
522
+ #: admin.inc.php:615
523
  msgid "View Daily Popular Posts"
524
  msgstr "Vizualizare zi posturi populare"
525
 
526
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
527
  msgid "Results per-page:"
528
  msgstr "Rezultate pe pagină:"
529
 
530
+ #: admin.inc.php:628
531
+ msgid "View Overall Popular Posts"
532
+ msgstr "Vedere de ansamblu posturi populare"
533
+
534
+ #: admin.inc.php:657
535
  msgid "Previous"
536
  msgstr "Anterioară"
537
 
538
+ #: admin.inc.php:675
539
  msgid "Next"
540
  msgstr "Următorul"
541
 
542
+ #: admin.inc.php:698
543
  msgid "Daily Popular"
544
  msgstr "Daily populare"
545
 
546
+ #: admin.inc.php:709
547
  msgid "Total / Today's Views"
548
  msgstr "Total / astăzi lui vizitări"
549
 
550
+ #: top-10.php:318
551
  msgid "Display the posts popular this week"
552
  msgstr "Afişa posturi populare în această săptămână"
553
 
554
+ #: top-10.php:332
555
  msgid "Title"
556
  msgstr ""
557
 
558
+ #: top-10.php:337
559
  msgid "No. of posts"
560
  msgstr ""
561
 
562
+ #: top-10.php:342
563
  msgid "Overall"
564
  msgstr ""
565
 
566
+ #: top-10.php:343
567
  msgid "Custom time period (Enter below)"
568
  msgstr ""
569
 
570
+ #: top-10.php:348
571
  msgid "Range in number of days (applies only to custom option above)"
572
  msgstr ""
573
 
574
+ #: top-10.php:352
575
  #, fuzzy
576
  msgid "Thumbnail options"
577
  msgstr "Post Opţiuni pictograme:"
578
 
579
+ #: top-10.php:354
580
  #, fuzzy
581
  msgid "Thumbnails inline, before title"
582
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
583
 
584
+ #: top-10.php:355
585
  #, fuzzy
586
  msgid "Thumbnails inline, after title"
587
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
588
 
589
+ #: top-10.php:356
590
  #, fuzzy
591
  msgid "Only thumbnails, no text"
592
  msgstr "Afişa numai miniaturi, nici un text"
593
 
594
+ #: top-10.php:357
595
  #, fuzzy
596
  msgid "No thumbnails, only text."
597
  msgstr "Nu se afişează miniaturi, numai textul."
598
 
599
+ #: top-10.php:362
600
  #, fuzzy
601
  msgid " Show excerpt?"
602
  msgstr "Afişează post extras din lista?"
603
 
604
+ #: top-10.php:431
605
  msgid "<h3>Popular Posts</h3>"
606
  msgstr "<h3>Posturi populare</h3>"
607
 
608
+ #: top-10.php:432
609
  msgid "<h3>Daily Popular</h3>"
610
  msgstr "<h3>Daily populare</h3>"
611
 
612
+ #: top-10.php:433
613
  #, fuzzy
614
  msgid "No top posts yet"
615
  msgstr "Top 10 populare posturi Resetare"
616
 
617
+ #: top-10.php:721
618
  msgid "Once Weekly"
619
  msgstr ""
620
 
621
+ #: top-10.php:722
622
  msgid "Once Fortnightly"
623
  msgstr ""
624
 
625
+ #: top-10.php:723
626
  msgid "Once Monthly"
627
  msgstr ""
628
 
629
+ #: top-10.php:744
630
  msgid "Settings"
631
  msgstr "Setări"
632
 
633
+ #: top-10.php:758
634
  msgid "Donate"
635
  msgstr "Dona"
636
 
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-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"
@@ -12,50 +12,56 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,55 +69,71 @@ msgstr ""
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 "
101
- "time"
102
  msgstr ""
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,18 +142,18 @@ msgstr ""
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,108 +165,113 @@ msgstr ""
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,7 +281,7 @@ msgstr ""
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 "
@@ -264,11 +291,11 @@ msgstr ""
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,11 +304,11 @@ msgstr ""
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,84 +319,84 @@ msgstr ""
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,230 +404,240 @@ msgstr ""
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
 
520
- #: top-10.php:257
521
  msgid "Display the posts popular this week"
522
  msgstr "Отображать списки популярных записей за неделю"
523
 
524
- #: top-10.php:271
525
  msgid "Title"
526
  msgstr ""
527
 
528
- #: top-10.php:276
529
  msgid "No. of posts"
530
  msgstr ""
531
 
532
- #: top-10.php:281
533
  msgid "Overall"
534
  msgstr ""
535
 
536
- #: top-10.php:282
537
  msgid "Custom time period (Enter below)"
538
  msgstr ""
539
 
540
- #: top-10.php:287
541
  msgid "Range in number of days (applies only to custom option above)"
542
  msgstr ""
543
 
544
- #: top-10.php:291
545
  #, fuzzy
546
  msgid "Thumbnail options"
547
  msgstr "Настройки превью к записям:"
548
 
549
- #: top-10.php:293
550
  #, fuzzy
551
  msgid "Thumbnails inline, before title"
552
  msgstr "Отображать превью к записи сразу перед заголовком"
553
 
554
- #: top-10.php:294
555
  #, fuzzy
556
  msgid "Thumbnails inline, after title"
557
  msgstr "Отображать превью к записи сразу после заголовка"
558
 
559
- #: top-10.php:295
560
  #, fuzzy
561
  msgid "Only thumbnails, no text"
562
  msgstr "Отображать только превью, без текста"
563
 
564
- #: top-10.php:296
565
  #, fuzzy
566
  msgid "No thumbnails, only text."
567
  msgstr "Отображать только текст, без превью"
568
 
569
- #: top-10.php:301
570
  #, fuzzy
571
  msgid " Show excerpt?"
572
  msgstr "Показывать текст записи в списке?"
573
 
574
- #: top-10.php:367
575
  msgid "<h3>Popular Posts</h3>"
576
  msgstr "<h3>Популярные записи</h3>"
577
 
578
- #: top-10.php:368
579
  msgid "<h3>Daily Popular</h3>"
580
  msgstr "<h3>Популярные сегодня записи</h3>"
581
 
582
- #: top-10.php:369
583
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:47-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Настройки сохранены."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Настройки сброшены."
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Сбросить статистику популярных записей"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Сбросить статистику популярных записей за сегодня"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Количество Популярных записей в списке:"
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
58
 
59
+ #: admin.inc.php:138
60
+ #, fuzzy
61
+ msgid "Exclude Pages?"
62
+ msgstr "Исключить рубрики:"
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "Исключить страницы из списка Популярных записей? Количество просмотров для "
70
  "страниц будет продолжать подсчитываться"
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr "Исключить рубрики:"
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "Страница"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
  msgstr ""
 
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
117
  "и это может увеличить время загрузки страниц"
118
 
119
  #: admin.inc.php:175
120
+ msgid "Track visits of authors on their own posts?"
121
+ msgstr "Учитывать просмотры записей, сделанные их же авторами?"
122
+
123
+ #: admin.inc.php:179
124
+ #, fuzzy
125
+ msgid "Track visits of admins?"
126
+ msgstr "Учитывать просмотры записей, сделанные их же авторами?"
127
+
128
+ #: admin.inc.php:183
129
  msgid "Display page views on Posts > All Posts in Admin"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:187
133
  msgid "Link to Top 10 plugin page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:189
137
  #, fuzzy
138
  msgid ""
139
  "A link to the plugin is added as an extra list item to the list of popular "
142
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
143
  "бы очень благодарен Вам, если Вы ее все же оставите!"
144
 
145
+ #: admin.inc.php:196
146
  #, fuzzy
147
  msgid "Output Options"
148
  msgstr "Настройки плагина:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Format to display the count in: "
152
  msgstr ""
153
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
154
  "день, за все время для записей/страниц:"
155
 
156
+ #: admin.inc.php:202
157
  #, fuzzy
158
  msgid ""
159
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
165
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
166
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
167
 
168
+ #: admin.inc.php:204
169
  msgid "Title of popular posts: "
170
  msgstr "Заголовок списка Популярных записей:"
171
 
172
+ #: admin.inc.php:207
173
  msgid "Title of daily popular posts: "
174
  msgstr "Заголовок списка Популярных сегодня записей:"
175
 
176
+ #: admin.inc.php:210
177
  msgid "When there are no posts, what should be shown?"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:214
181
  msgid "Blank Output"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:218
185
  msgid "Display:"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:222
189
  msgid "Show post excerpt in list?"
190
  msgstr "Показывать текст записи в списке?"
191
 
192
+ #: admin.inc.php:225
193
  msgid "Length of excerpt (in words): "
194
  msgstr "Длина выводимого текста (в словах):"
195
 
196
+ #: admin.inc.php:228
197
+ msgid "Display number of page views in popular lists?"
198
+ msgstr ""
199
+ "Показывать количество просмотров записей/страниц в списке Популярных записей?"
200
+
201
+ #: admin.inc.php:231
202
  msgid "Customize the output:"
203
  msgstr "Настройки оформления списка:"
204
 
205
+ #: admin.inc.php:233
206
  msgid "HTML to display before the list of posts: "
207
  msgstr "HTML-тег, используемый перед списком:"
208
 
209
+ #: admin.inc.php:236
210
  msgid "HTML to display before each list item: "
211
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
212
 
213
+ #: admin.inc.php:239
214
  msgid "HTML to display after each list item: "
215
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
216
 
217
+ #: admin.inc.php:242
218
  msgid "HTML to display after the list of posts: "
219
  msgstr "HTML-тег, используемый после списка:"
220
 
221
+ #: admin.inc.php:245
222
  msgid "Post thumbnail options:"
223
  msgstr "Настройки превью к записям:"
224
 
225
+ #: admin.inc.php:247
226
  msgid "Location of post thumbnail:"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:251
230
  msgid "Display thumbnails inline with posts, before title"
231
  msgstr "Отображать превью к записи сразу перед заголовком"
232
 
233
+ #: admin.inc.php:255
234
  msgid "Display thumbnails inline with posts, after title"
235
  msgstr "Отображать превью к записи сразу после заголовка"
236
 
237
+ #: admin.inc.php:259
238
  msgid "Display only thumbnails, no text"
239
  msgstr "Отображать только превью, без текста"
240
 
241
+ #: admin.inc.php:263
242
  msgid "Do not display thumbnails, only text."
243
  msgstr "Отображать только текст, без превью"
244
 
245
+ #: admin.inc.php:267
246
  msgid "Maximum width of the thumbnail: "
247
  msgstr ""
248
 
249
+ #: admin.inc.php:270
250
  msgid "Maximum height of the thumbnail: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:273
254
  msgid "Use timthumb to generate thumbnails? "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:274
258
  msgid ""
259
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
260
  "\">timthumb</a> will be used to generate thumbnails"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:276
264
  #, fuzzy
265
  msgid "Post thumbnail meta field name: "
266
  msgstr "Настройки превью к записям:"
267
 
268
+ #: admin.inc.php:277
269
  msgid ""
270
  "The value of this field should contain the image source and is set in the "
271
  "<em>Add New Post</em> screen"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:279
275
  #, fuzzy
276
  msgid ""
277
  "If the postmeta is not set, then should the plugin extract the first image "
281
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
282
  "как будет создаваться уменьшенная копия изображения"
283
 
284
+ #: admin.inc.php:280
285
  #, fuzzy
286
  msgid ""
287
  "This could slow down the loading of your page if the first image in the "
291
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
292
  "как будет создаваться уменьшенная копия изображения"
293
 
294
+ #: admin.inc.php:282
295
  msgid "Use default thumbnail? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:283
299
  msgid ""
300
  "If checked, when no thumbnail is found, show a default one from the URL "
301
  "below. If not checked and no thumbnail is found, no image will be shown."
304
  "добавлено стандартное изображение. Если превью задано к записи - будет "
305
  "отображаться только оно."
306
 
307
+ #: admin.inc.php:285
308
  msgid "Default thumbnail: "
309
  msgstr ""
310
 
311
+ #: admin.inc.php:286
312
  #, fuzzy
313
  msgid ""
314
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
319
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
320
  "выводиться картинка по-умолчанию:"
321
 
322
+ #: admin.inc.php:292
323
  msgid "Custom Styles"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:295
327
  msgid "Custom CSS to add to header:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:298
331
  msgid ""
332
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
333
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
334
  "available CSS classes to style."
335
  msgstr ""
336
 
337
+ #: admin.inc.php:303
338
  msgid "Maintenance"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:307
342
  msgid ""
343
  "Over time the Daily Top 10 database grows in size, which reduces the "
344
  "performance of the plugin. Cleaning the database at regular intervals could "
345
  "improve performance, especially on high traffic blogs."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:308
349
  msgid ""
350
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
351
  "everytime the job is rescheduled (i.e. you change the settings below). This "
352
  "causes the daily posts table to reset."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:311
356
  msgid "Enable scheduled maintenance of daily tables:"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:316
360
  msgid "Time to run maintenance"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:319
364
  msgid "How often should the maintenance be run:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:323
368
  msgid "Daily"
369
  msgstr ""
370
 
371
+ #: admin.inc.php:327
372
  msgid "Weekly"
373
  msgstr ""
374
 
375
+ #: admin.inc.php:331
376
  msgid "Fortnightly"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:335
380
  msgid "Monthly"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:344
384
  msgid "The cron job has been scheduled. Maintenance will run "
385
  msgstr ""
386
 
387
+ #: admin.inc.php:349
388
  msgid "The cron job is missing. Please resave this page to add the job"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:354
392
  msgid "Maintenance is turned off"
393
  msgstr ""
394
 
395
+ #: admin.inc.php:362
396
  msgid "Reset count"
397
  msgstr "Сбросить статистику"
398
 
399
+ #: admin.inc.php:365
400
  msgid ""
401
  "This cannot be reversed. Make sure that your database has been backed up "
402
  "before proceeding"
404
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
405
  "убедитесь, что у вас есть копия вашей базы данных!"
406
 
407
+ #: admin.inc.php:368
408
  #, fuzzy
409
  msgid "Reset Popular Posts"
410
  msgstr "Популярные записи"
411
 
412
+ #: admin.inc.php:368
413
  msgid "Are you sure you want to reset the popular posts?"
414
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
415
 
416
+ #: admin.inc.php:369
417
  #, fuzzy
418
  msgid "Reset Daily Popular Posts"
419
  msgstr "Популярные сегодня записи"
420
 
421
+ #: admin.inc.php:369
422
  msgid "Are you sure you want to reset the daily popular posts?"
423
  msgstr ""
424
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
425
 
426
+ #: admin.inc.php:370
427
  msgid "Clear duplicates"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:370
431
  msgid "This will delete the duplicate entries in the tables. Proceed?"
432
  msgstr ""
433
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
434
 
435
+ #: admin.inc.php:374
436
  #, fuzzy
437
  msgid "Save Options"
438
  msgstr "Настройки плагина:"
439
 
440
+ #: admin.inc.php:375
441
  #, fuzzy
442
  msgid "Default Options"
443
  msgstr "Настройки плагина:"
444
 
445
+ #: admin.inc.php:375
446
  msgid "Do you want to set options to Default?"
447
  msgstr "Сбросить настройки плагина?"
448
 
449
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
450
  msgid "Popular Posts"
451
  msgstr "Популярные записи"
452
 
453
+ #: admin.inc.php:406 admin.inc.php:480
454
  msgid "Daily Popular Posts"
455
  msgstr "Популярные сегодня записи"
456
 
457
+ #: admin.inc.php:428
458
  msgid "Support the development"
459
  msgstr "Поддержать автора плагина"
460
 
461
+ #: admin.inc.php:436
462
  msgid "Enter amount in USD: "
463
  msgstr "Сколько вы готовы пожертвовать (в USD):"
464
 
465
+ #: admin.inc.php:440
466
  msgid "Send your donation to the author of"
467
  msgstr "Отправьте пожертвование автору"
468
 
469
+ #: admin.inc.php:446
470
+ msgid "Follow us"
471
  msgstr ""
472
 
473
+ #: admin.inc.php:452
474
  #, fuzzy
475
  msgid "Quick Links"
476
  msgstr "Полезные ссылки"
477
 
478
+ #: admin.inc.php:454
479
  #, fuzzy
480
  msgid "Top 10 plugin page"
481
  msgstr "страница плагина"
482
 
483
+ #: admin.inc.php:455
484
  msgid "Other plugins"
485
  msgstr "Другие плагины автора"
486
 
487
+ #: admin.inc.php:456
488
  msgid "Ajay's blog"
489
  msgstr "Блог Ajay"
490
 
491
+ #: admin.inc.php:457 top-10.php:757
492
  msgid "Support"
493
  msgstr "Поддержка (англ.)"
494
 
495
+ #: admin.inc.php:458
496
  msgid "Follow @ajaydsouza on Twitter"
497
  msgstr "Следуй за @ajaydsouza в Twitter"
498
 
499
+ #: admin.inc.php:462
500
  msgid "Recent developments"
501
  msgstr "Последние разработки"
502
 
503
+ #: admin.inc.php:474
504
+ #, fuzzy
505
+ msgid "Top 10 Settings"
506
+ msgstr "Настроки плагина"
507
+
508
+ #: admin.inc.php:474
509
  msgid "Top 10"
510
  msgstr "Топ 10 записей"
511
 
512
+ #: admin.inc.php:477
513
+ #, fuzzy
514
+ msgid "Overall Popular Posts"
515
+ msgstr "Посмотреть все Популярные записи"
516
+
517
+ #: admin.inc.php:595
518
  msgid "Results"
519
  msgstr "Результаты"
520
 
521
+ #: admin.inc.php:597 admin.inc.php:603
522
  msgid "of"
523
  msgstr "из"
524
 
525
+ #: admin.inc.php:601
526
  msgid "Page"
527
  msgstr "Страница"
528
 
529
+ #: admin.inc.php:615
530
  msgid "View Daily Popular Posts"
531
  msgstr "Посмотреть все Популярные сегодня записи"
532
 
533
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
534
  msgid "Results per-page:"
535
  msgstr "Результатов на страницу:"
536
 
537
+ #: admin.inc.php:628
538
+ msgid "View Overall Popular Posts"
539
+ msgstr "Посмотреть все Популярные записи"
540
+
541
+ #: admin.inc.php:657
542
  msgid "Previous"
543
  msgstr "Предыдущая страница"
544
 
545
+ #: admin.inc.php:675
546
  msgid "Next"
547
  msgstr "Следующая страница"
548
 
549
+ #: admin.inc.php:698
550
  msgid "Daily Popular"
551
  msgstr "Популярные сегодня записи"
552
 
553
+ #: admin.inc.php:709
554
  msgid "Total / Today's Views"
555
  msgstr "Всего/Сегодня"
556
 
557
+ #: top-10.php:318
558
  msgid "Display the posts popular this week"
559
  msgstr "Отображать списки популярных записей за неделю"
560
 
561
+ #: top-10.php:332
562
  msgid "Title"
563
  msgstr ""
564
 
565
+ #: top-10.php:337
566
  msgid "No. of posts"
567
  msgstr ""
568
 
569
+ #: top-10.php:342
570
  msgid "Overall"
571
  msgstr ""
572
 
573
+ #: top-10.php:343
574
  msgid "Custom time period (Enter below)"
575
  msgstr ""
576
 
577
+ #: top-10.php:348
578
  msgid "Range in number of days (applies only to custom option above)"
579
  msgstr ""
580
 
581
+ #: top-10.php:352
582
  #, fuzzy
583
  msgid "Thumbnail options"
584
  msgstr "Настройки превью к записям:"
585
 
586
+ #: top-10.php:354
587
  #, fuzzy
588
  msgid "Thumbnails inline, before title"
589
  msgstr "Отображать превью к записи сразу перед заголовком"
590
 
591
+ #: top-10.php:355
592
  #, fuzzy
593
  msgid "Thumbnails inline, after title"
594
  msgstr "Отображать превью к записи сразу после заголовка"
595
 
596
+ #: top-10.php:356
597
  #, fuzzy
598
  msgid "Only thumbnails, no text"
599
  msgstr "Отображать только превью, без текста"
600
 
601
+ #: top-10.php:357
602
  #, fuzzy
603
  msgid "No thumbnails, only text."
604
  msgstr "Отображать только текст, без превью"
605
 
606
+ #: top-10.php:362
607
  #, fuzzy
608
  msgid " Show excerpt?"
609
  msgstr "Показывать текст записи в списке?"
610
 
611
+ #: top-10.php:431
612
  msgid "<h3>Popular Posts</h3>"
613
  msgstr "<h3>Популярные записи</h3>"
614
 
615
+ #: top-10.php:432
616
  msgid "<h3>Daily Popular</h3>"
617
  msgstr "<h3>Популярные сегодня записи</h3>"
618
 
619
+ #: top-10.php:433
620
  #, fuzzy
621
  msgid "No top posts yet"
622
  msgstr "Сбросить статистику популярных записей"
623
 
624
+ #: top-10.php:721
625
  msgid "Once Weekly"
626
  msgstr ""
627
 
628
+ #: top-10.php:722
629
  msgid "Once Fortnightly"
630
  msgstr ""
631
 
632
+ #: top-10.php:723
633
  msgid "Once Monthly"
634
  msgstr ""
635
 
636
+ #: top-10.php:744
637
  msgid "Settings"
638
  msgstr "Настроки плагина"
639
 
640
+ #: top-10.php:758
641
  msgid "Donate"
642
  msgstr "Сделать пожертвование"
643
 
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-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"
@@ -12,50 +12,56 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\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,55 +69,71 @@ msgstr ""
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 "
101
- "time"
102
  msgstr ""
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,18 +142,18 @@ msgstr ""
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,110 +165,115 @@ msgstr ""
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,7 +283,7 @@ msgstr ""
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 "
@@ -266,21 +293,21 @@ msgstr ""
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,84 +318,84 @@ msgstr ""
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,229 +403,239 @@ msgstr ""
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
 
518
- #: top-10.php:257
519
  msgid "Display the posts popular this week"
520
  msgstr ""
521
 
522
- #: top-10.php:271
523
  msgid "Title"
524
  msgstr ""
525
 
526
- #: top-10.php:276
527
  msgid "No. of posts"
528
  msgstr ""
529
 
530
- #: top-10.php:281
531
  msgid "Overall"
532
  msgstr ""
533
 
534
- #: top-10.php:282
535
  msgid "Custom time period (Enter below)"
536
  msgstr ""
537
 
538
- #: top-10.php:287
539
  msgid "Range in number of days (applies only to custom option above)"
540
  msgstr ""
541
 
542
- #: top-10.php:291
543
  #, fuzzy
544
  msgid "Thumbnail options"
545
  msgstr "Установки превью до записів:"
546
 
547
- #: top-10.php:293
548
  #, fuzzy
549
  msgid "Thumbnails inline, before title"
550
  msgstr "Відображати і превью, і текст"
551
 
552
- #: top-10.php:294
553
  #, fuzzy
554
  msgid "Thumbnails inline, after title"
555
  msgstr "Відображати і превью, і текст"
556
 
557
- #: top-10.php:295
558
  #, fuzzy
559
  msgid "Only thumbnails, no text"
560
  msgstr "Показувати тільки превью, без тексту"
561
 
562
- #: top-10.php:296
563
  #, fuzzy
564
  msgid "No thumbnails, only text."
565
  msgstr "Показувати лише текст, без превью"
566
 
567
- #: top-10.php:301
568
  #, fuzzy
569
  msgid " Show excerpt?"
570
  msgstr "Показувати текст запису в списку?"
571
 
572
- #: top-10.php:367
573
  msgid "<h3>Popular Posts</h3>"
574
  msgstr "<h3>Популярні записи</h3>"
575
 
576
- #: top-10.php:368
577
  msgid "<h3>Daily Popular</h3>"
578
  msgstr "<h3>Популярні сьогодні записи</h3>"
579
 
580
- #: top-10.php:369
581
  #, fuzzy
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-29 18:47-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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:71
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:75
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:80
27
  msgid "Options saved successfully."
28
  msgstr "Установки збережені."
29
 
30
+ #: admin.inc.php:89
31
  msgid "Options set to Default."
32
  msgstr "Установки скинуті."
33
 
34
+ #: admin.inc.php:95
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Скинути статистику найпопулярніших записів"
37
 
38
+ #: admin.inc.php:101
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
41
 
42
+ #: admin.inc.php:108
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:129
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:132
51
  msgid "Number of popular posts to display: "
52
  msgstr "Кількість Популярних записів у списку:"
53
 
54
+ #: admin.inc.php:135
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr ""
57
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
58
 
59
+ #: admin.inc.php:138
60
+ #, fuzzy
61
+ msgid "Exclude Pages?"
62
+ msgstr "Виключити Категорії:"
63
+
64
+ #: admin.inc.php:139
65
  msgid ""
66
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
67
  "continue to be counted."
69
  "Виключити сторінки зі списку Популярних записів? Кількість переглядів для "
70
  "сторінок продовжуватиме підраховуватися"
71
 
72
+ #: admin.inc.php:141
73
  msgid "Exclude Categories: "
74
  msgstr "Виключити Категорії:"
75
 
76
+ #: admin.inc.php:156
77
+ msgid ""
78
+ "Comma separated list of category slugs. The field above has an autocomplete "
79
+ "so simply start typing in the starting letters and it will prompt you with "
80
+ "options"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:160
84
  #, fuzzy
85
  msgid "Display number of views on:"
86
  msgstr "Показувати кількість переглядів запису?"
87
 
88
+ #: admin.inc.php:161
89
  msgid "Posts"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:162
93
  #, fuzzy
94
  msgid "Pages"
95
  msgstr "Сторінка"
96
 
97
+ #: admin.inc.php:165
98
+ msgid "Always display latest post count"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:167
102
+ msgid ""
103
+ "This option uses JavaScript and will increase your page load time. Turn this "
104
+ "off if you are not using caching plugins or are OK with displaying older "
105
+ "cached counts"
106
  msgstr ""
 
107
 
108
  #: admin.inc.php:170
109
+ msgid "Always display latest post count in the daily lists"
110
  msgstr ""
111
 
112
  #: admin.inc.php:172
113
  #, fuzzy
114
+ msgid "This option uses JavaScript and will increase your page load time"
 
 
115
  msgstr ""
116
  "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
117
  "і це може збільшити час завантаження сторінок"
118
 
119
  #: admin.inc.php:175
120
+ msgid "Track visits of authors on their own posts?"
121
+ msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
122
+
123
+ #: admin.inc.php:179
124
+ #, fuzzy
125
+ msgid "Track visits of admins?"
126
+ msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
127
+
128
+ #: admin.inc.php:183
129
  msgid "Display page views on Posts > All Posts in Admin"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:187
133
  msgid "Link to Top 10 plugin page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:189
137
  #, fuzzy
138
  msgid ""
139
  "A link to the plugin is added as an extra list item to the list of popular "
142
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
143
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
144
 
145
+ #: admin.inc.php:196
146
  #, fuzzy
147
  msgid "Output Options"
148
  msgstr "Установки плагіна:"
149
 
150
+ #: admin.inc.php:199
151
  msgid "Format to display the count in: "
152
  msgstr ""
153
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
154
  "за день, за весь час для записів/сторінок:"
155
 
156
+ #: admin.inc.php:202
157
  #, fuzzy
158
  msgid ""
159
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
165
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
166
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
167
 
168
+ #: admin.inc.php:204
169
  msgid "Title of popular posts: "
170
  msgstr "Заголовок списку Популярних записів:"
171
 
172
+ #: admin.inc.php:207
173
  msgid "Title of daily popular posts: "
174
  msgstr "Заголовок списку Популярних сьогодні записів:"
175
 
176
+ #: admin.inc.php:210
177
  msgid "When there are no posts, what should be shown?"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:214
181
  msgid "Blank Output"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:218
185
  msgid "Display:"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:222
189
  msgid "Show post excerpt in list?"
190
  msgstr "Показувати текст запису в списку?"
191
 
192
+ #: admin.inc.php:225
193
  msgid "Length of excerpt (in words): "
194
  msgstr "Довжина виведеного тексту (в словах):"
195
 
196
+ #: admin.inc.php:228
197
+ msgid "Display number of page views in popular lists?"
198
+ msgstr ""
199
+ "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
200
+
201
+ #: admin.inc.php:231
202
  msgid "Customize the output:"
203
  msgstr "Установки оформлення списку:"
204
 
205
+ #: admin.inc.php:233
206
  msgid "HTML to display before the list of posts: "
207
  msgstr "HTML-тег, який використовується перед списком:"
208
 
209
+ #: admin.inc.php:236
210
  msgid "HTML to display before each list item: "
211
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
212
 
213
+ #: admin.inc.php:239
214
  msgid "HTML to display after each list item: "
215
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
216
 
217
+ #: admin.inc.php:242
218
  msgid "HTML to display after the list of posts: "
219
  msgstr "HTML-тег, який використовується після списку:"
220
 
221
+ #: admin.inc.php:245
222
  msgid "Post thumbnail options:"
223
  msgstr "Установки превью до записів:"
224
 
225
+ #: admin.inc.php:247
226
  msgid "Location of post thumbnail:"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:251
230
  #, fuzzy
231
  msgid "Display thumbnails inline with posts, before title"
232
  msgstr "Відображати і превью, і текст"
233
 
234
+ #: admin.inc.php:255
235
  #, fuzzy
236
  msgid "Display thumbnails inline with posts, after title"
237
  msgstr "Відображати і превью, і текст"
238
 
239
+ #: admin.inc.php:259
240
  msgid "Display only thumbnails, no text"
241
  msgstr "Показувати тільки превью, без тексту"
242
 
243
+ #: admin.inc.php:263
244
  msgid "Do not display thumbnails, only text."
245
  msgstr "Показувати лише текст, без превью"
246
 
247
+ #: admin.inc.php:267
248
  msgid "Maximum width of the thumbnail: "
249
  msgstr ""
250
 
251
+ #: admin.inc.php:270
252
  msgid "Maximum height of the thumbnail: "
253
  msgstr ""
254
 
255
+ #: admin.inc.php:273
256
  msgid "Use timthumb to generate thumbnails? "
257
  msgstr ""
258
 
259
+ #: admin.inc.php:274
260
  msgid ""
261
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
262
  "\">timthumb</a> will be used to generate thumbnails"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:276
266
  #, fuzzy
267
  msgid "Post thumbnail meta field name: "
268
  msgstr "Установки превью до записів:"
269
 
270
+ #: admin.inc.php:277
271
  msgid ""
272
  "The value of this field should contain the image source and is set in the "
273
  "<em>Add New Post</em> screen"
274
  msgstr ""
275
 
276
+ #: admin.inc.php:279
277
  #, fuzzy
278
  msgid ""
279
  "If the postmeta is not set, then should the plugin extract the first image "
283
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
284
  "так як буде створюватися зменшена копія зображення"
285
 
286
+ #: admin.inc.php:280
287
  #, fuzzy
288
  msgid ""
289
  "This could slow down the loading of your page if the first image in the "
293
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
294
  "так як буде створюватися зменшена копія зображення"
295
 
296
+ #: admin.inc.php:282
297
  msgid "Use default thumbnail? "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:283
301
  msgid ""
302
  "If checked, when no thumbnail is found, show a default one from the URL "
303
  "below. If not checked and no thumbnail is found, no image will be shown."
304
  msgstr ""
305
 
306
+ #: admin.inc.php:285
307
  msgid "Default thumbnail: "
308
  msgstr ""
309
 
310
+ #: admin.inc.php:286
311
  #, fuzzy
312
  msgid ""
313
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
318
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
319
  "замовчунням:"
320
 
321
+ #: admin.inc.php:292
322
  msgid "Custom Styles"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:295
326
  msgid "Custom CSS to add to header:"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:298
330
  msgid ""
331
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
332
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
333
  "available CSS classes to style."
334
  msgstr ""
335
 
336
+ #: admin.inc.php:303
337
  msgid "Maintenance"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:307
341
  msgid ""
342
  "Over time the Daily Top 10 database grows in size, which reduces the "
343
  "performance of the plugin. Cleaning the database at regular intervals could "
344
  "improve performance, especially on high traffic blogs."
345
  msgstr ""
346
 
347
+ #: admin.inc.php:308
348
  msgid ""
349
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
350
  "everytime the job is rescheduled (i.e. you change the settings below). This "
351
  "causes the daily posts table to reset."
352
  msgstr ""
353
 
354
+ #: admin.inc.php:311
355
  msgid "Enable scheduled maintenance of daily tables:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:316
359
  msgid "Time to run maintenance"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:319
363
  msgid "How often should the maintenance be run:"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:323
367
  msgid "Daily"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:327
371
  msgid "Weekly"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:331
375
  msgid "Fortnightly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:335
379
  msgid "Monthly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:344
383
  msgid "The cron job has been scheduled. Maintenance will run "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:349
387
  msgid "The cron job is missing. Please resave this page to add the job"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:354
391
  msgid "Maintenance is turned off"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:362
395
  msgid "Reset count"
396
  msgstr "Скинути статистику"
397
 
398
+ #: admin.inc.php:365
399
  msgid ""
400
  "This cannot be reversed. Make sure that your database has been backed up "
401
  "before proceeding"
403
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
404
  "переконайтесь, що у вас є копія вашої бази даних!"
405
 
406
+ #: admin.inc.php:368
407
  #, fuzzy
408
  msgid "Reset Popular Posts"
409
  msgstr "Популярні записи"
410
 
411
+ #: admin.inc.php:368
412
  msgid "Are you sure you want to reset the popular posts?"
413
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
414
 
415
+ #: admin.inc.php:369
416
  #, fuzzy
417
  msgid "Reset Daily Popular Posts"
418
  msgstr "Популярні сьогодні записи"
419
 
420
+ #: admin.inc.php:369
421
  msgid "Are you sure you want to reset the daily popular posts?"
422
  msgstr ""
423
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
424
 
425
+ #: admin.inc.php:370
426
  msgid "Clear duplicates"
427
  msgstr ""
428
 
429
+ #: admin.inc.php:370
430
  msgid "This will delete the duplicate entries in the tables. Proceed?"
431
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
432
 
433
+ #: admin.inc.php:374
434
  #, fuzzy
435
  msgid "Save Options"
436
  msgstr "Установки плагіна:"
437
 
438
+ #: admin.inc.php:375
439
  #, fuzzy
440
  msgid "Default Options"
441
  msgstr "Установки плагіна:"
442
 
443
+ #: admin.inc.php:375
444
  msgid "Do you want to set options to Default?"
445
  msgstr "Скинути налаштування плагіна?"
446
 
447
+ #: admin.inc.php:406 admin.inc.php:697 top-10.php:319
448
  msgid "Popular Posts"
449
  msgstr "Популярні записи"
450
 
451
+ #: admin.inc.php:406 admin.inc.php:480
452
  msgid "Daily Popular Posts"
453
  msgstr "Популярні сьогодні записи"
454
 
455
+ #: admin.inc.php:428
456
  msgid "Support the development"
457
  msgstr "Підтримати автора плагіна"
458
 
459
+ #: admin.inc.php:436
460
  msgid "Enter amount in USD: "
461
  msgstr "Скільки ви готові пожертвувати (в USD):"
462
 
463
+ #: admin.inc.php:440
464
  msgid "Send your donation to the author of"
465
  msgstr "Відправте пожертву автору"
466
 
467
+ #: admin.inc.php:446
468
+ msgid "Follow us"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:452
472
  #, fuzzy
473
  msgid "Quick Links"
474
  msgstr "Корисні посилання"
475
 
476
+ #: admin.inc.php:454
477
  #, fuzzy
478
  msgid "Top 10 plugin page"
479
  msgstr "Сторінка плагіна"
480
 
481
+ #: admin.inc.php:455
482
  msgid "Other plugins"
483
  msgstr "Інші плагіни автора"
484
 
485
+ #: admin.inc.php:456
486
  msgid "Ajay's blog"
487
  msgstr "Блог Ajay"
488
 
489
+ #: admin.inc.php:457 top-10.php:757
490
  msgid "Support"
491
  msgstr "Підтримка (англ.)"
492
 
493
+ #: admin.inc.php:458
494
  msgid "Follow @ajaydsouza on Twitter"
495
  msgstr "Йди за @ajaydsouza в Twitter"
496
 
497
+ #: admin.inc.php:462
498
  msgid "Recent developments"
499
  msgstr "Останні розробки"
500
 
501
+ #: admin.inc.php:474
502
+ #, fuzzy
503
+ msgid "Top 10 Settings"
504
+ msgstr "Налаштування плагіна"
505
+
506
+ #: admin.inc.php:474
507
  msgid "Top 10"
508
  msgstr "Топ 10 записів"
509
 
510
+ #: admin.inc.php:477
511
+ #, fuzzy
512
+ msgid "Overall Popular Posts"
513
+ msgstr "Подивитися всі Популярні записи"
514
+
515
+ #: admin.inc.php:595
516
  msgid "Results"
517
  msgstr "Результати"
518
 
519
+ #: admin.inc.php:597 admin.inc.php:603
520
  msgid "of"
521
  msgstr "з"
522
 
523
+ #: admin.inc.php:601
524
  msgid "Page"
525
  msgstr "Сторінка"
526
 
527
+ #: admin.inc.php:615
528
  msgid "View Daily Popular Posts"
529
  msgstr "Подивитися всі Популярні сьогодні записи"
530
 
531
+ #: admin.inc.php:618 admin.inc.php:631
 
 
 
 
532
  msgid "Results per-page:"
533
  msgstr "Результатів на сторінку:"
534
 
535
+ #: admin.inc.php:628
536
+ msgid "View Overall Popular Posts"
537
+ msgstr "Подивитися всі Популярні записи"
538
+
539
+ #: admin.inc.php:657
540
  msgid "Previous"
541
  msgstr "Попередня сторінка"
542
 
543
+ #: admin.inc.php:675
544
  msgid "Next"
545
  msgstr "Наступна сторінка"
546
 
547
+ #: admin.inc.php:698
548
  msgid "Daily Popular"
549
  msgstr "Популярні сьогодні записи"
550
 
551
+ #: admin.inc.php:709
552
  msgid "Total / Today's Views"
553
  msgstr "Всього/Сьогодні"
554
 
555
+ #: top-10.php:318
556
  msgid "Display the posts popular this week"
557
  msgstr ""
558
 
559
+ #: top-10.php:332
560
  msgid "Title"
561
  msgstr ""
562
 
563
+ #: top-10.php:337
564
  msgid "No. of posts"
565
  msgstr ""
566
 
567
+ #: top-10.php:342
568
  msgid "Overall"
569
  msgstr ""
570
 
571
+ #: top-10.php:343
572
  msgid "Custom time period (Enter below)"
573
  msgstr ""
574
 
575
+ #: top-10.php:348
576
  msgid "Range in number of days (applies only to custom option above)"
577
  msgstr ""
578
 
579
+ #: top-10.php:352
580
  #, fuzzy
581
  msgid "Thumbnail options"
582
  msgstr "Установки превью до записів:"
583
 
584
+ #: top-10.php:354
585
  #, fuzzy
586
  msgid "Thumbnails inline, before title"
587
  msgstr "Відображати і превью, і текст"
588
 
589
+ #: top-10.php:355
590
  #, fuzzy
591
  msgid "Thumbnails inline, after title"
592
  msgstr "Відображати і превью, і текст"
593
 
594
+ #: top-10.php:356
595
  #, fuzzy
596
  msgid "Only thumbnails, no text"
597
  msgstr "Показувати тільки превью, без тексту"
598
 
599
+ #: top-10.php:357
600
  #, fuzzy
601
  msgid "No thumbnails, only text."
602
  msgstr "Показувати лише текст, без превью"
603
 
604
+ #: top-10.php:362
605
  #, fuzzy
606
  msgid " Show excerpt?"
607
  msgstr "Показувати текст запису в списку?"
608
 
609
+ #: top-10.php:431
610
  msgid "<h3>Popular Posts</h3>"
611
  msgstr "<h3>Популярні записи</h3>"
612
 
613
+ #: top-10.php:432
614
  msgid "<h3>Daily Popular</h3>"
615
  msgstr "<h3>Популярні сьогодні записи</h3>"
616
 
617
+ #: top-10.php:433
618
  #, fuzzy
619
  msgid "No top posts yet"
620
  msgstr "Скинути статистику найпопулярніших записів"
621
 
622
+ #: top-10.php:721
623
  msgid "Once Weekly"
624
  msgstr ""
625
 
626
+ #: top-10.php:722
627
  msgid "Once Fortnightly"
628
  msgstr ""
629
 
630
+ #: top-10.php:723
631
  msgid "Once Monthly"
632
  msgstr ""
633
 
634
+ #: top-10.php:744
635
  msgid "Settings"
636
  msgstr "Налаштування плагіна"
637
 
638
+ #: top-10.php:758
639
  msgid "Donate"
640
  msgstr "Зробити внесок"
641
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Top 10 ===
2
  Tags: top 10, counter, popular posts, top posts, daily popular, page views, statistics
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
- Tested up to: 3.5
8
  License: GPLv2 or later
9
 
10
 
@@ -45,13 +45,18 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
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
@@ -164,11 +169,11 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
164
 
165
  3. Activate the Plugin in WP-Admin.
166
 
167
- 4. Goto **Settings &raquo; Top 10** to configure
168
 
169
- 5. Goto **Appearance &raquo; Widgets** to add the Popular Posts sidebar widget to your theme
170
 
171
- 6. Goto **Posts &raquo; Top 10** to view the list of popular posts
172
 
173
 
174
 
@@ -194,6 +199,10 @@ The following CSS classes / IDs are available:
194
 
195
  * **tptn_thumb**: Class of the post thumbnail `img` tag
196
 
 
 
 
 
197
  For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-10/
198
 
199
  = How does the plugin select thumbnails? =
@@ -245,7 +254,7 @@ Below are a few features that I plan on implementing in future versions of the p
245
  * Multi-site support
246
  * Ready-made styles
247
  * Upload your own default thumbnail
248
- * Retain select historic data when running the scheduled maintenance
249
 
250
  If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/top-10">posting in this forum</a>.
251
 
1
+ === Top 10 - Popular posts plugin for WordPress ===
2
  Tags: top 10, counter, popular posts, top posts, daily popular, page views, statistics
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
+ Tested up to: 3.6
8
  License: GPLv2 or later
9
 
10
 
45
 
46
  == Upgrade Notice ==
47
 
48
+ = 1.9.2 =
49
+ * New menu structure, new option to exclude tracking of admin visits, performance improvements, bug fixes
 
 
50
 
51
  == Changelog ==
52
 
53
+ = 1.9.2 =
54
+ * Added: Top 10 now has its own menu in the administration area. Access settings and view your top posts directly under the new menu: "Top 10"
55
+ * Added: New classes **tptn_counter** and **tptn_list_count** to style the displayed count
56
+ * Added: New option "Always display latest count for the post" to not use JavaScript to display the counts for a post. This speeds up since no external JS file is used to display the count. Ideal for those not using caching plugins or are not particularly worried if the counts are slightly older.
57
+ * Fixed: PHP notices when WP_DEBUG is turned on
58
+ * Modified: Updated timthumb.php
59
+
60
  = 1.9.1 =
61
  * Fixed: Plugin will now only reschedule the cron job if there any settings are changed related to it
62
  * Modified: If timthumb is disabled, WordPress post thumbnails are no longer resized using timthumb
169
 
170
  3. Activate the Plugin in WP-Admin.
171
 
172
+ 4. Go to **Top 10** to configure
173
 
174
+ 5. Go to **Appearance &raquo; Widgets** to add the Popular Posts sidebar widget to your theme
175
 
176
+ 6. Go to **Top 10 &raquo; Overall Popular Posts** and **Top 10 &raquo; Daily Popular Posts** to view the list of popular posts
177
 
178
 
179
 
199
 
200
  * **tptn_thumb**: Class of the post thumbnail `img` tag
201
 
202
+ * **tptn_list_count**: Class of the `span` tag for post count in top posts list
203
+
204
+ * **tptn_counter**: Class of the `div` tag that wraps the post count that is driven by the field "Format to display the count in: " under 'Output Options'
205
+
206
  For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-10/
207
 
208
  = How does the plugin select thumbnails? =
254
  * Multi-site support
255
  * Ready-made styles
256
  * Upload your own default thumbnail
257
+
258
 
259
  If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/top-10">posting in this forum</a>.
260
 
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
timthumb/timthumb.php CHANGED
@@ -20,7 +20,7 @@
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
- define ('VERSION', '2.8.10'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
@@ -40,7 +40,7 @@ if(! defined('FILE_CACHE_PREFIX') ) define ('FILE_CACHE_PREFIX', 'timthumb');
40
  if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
  if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
  if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
- if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); //Time to wait between errors fetching remote file
44
 
45
  //Browser caching
46
  if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
@@ -51,7 +51,7 @@ if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum im
51
  if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
  if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
  if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
- if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); //42 Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
  if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
  if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
  if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
@@ -992,7 +992,7 @@ class timthumb {
992
  $this->debug(3, "Remote file has invalid mime type: $mimeType");
993
  @unlink($this->cachefile);
994
  touch($this->cachefile);
995
- $this->error("The remote file is not a valid image.");
996
  return false;
997
  }
998
  if($this->processImageAndWriteToCache($tempfile)){
@@ -1087,6 +1087,8 @@ class timthumb {
1087
 
1088
  case 'image/png':
1089
  $image = imagecreatefrompng ($src);
 
 
1090
  break;
1091
 
1092
  case 'image/gif':
@@ -1155,6 +1157,7 @@ class timthumb {
1155
  default: return $size_str;
1156
  }
1157
  }
 
1158
  protected function getURL($url, $tempfile){
1159
  $this->lastURLError = false;
1160
  $url = preg_replace('/ /', '%20', $url);
@@ -1183,6 +1186,10 @@ class timthumb {
1183
  if($httpStatus == 404){
1184
  $this->set404();
1185
  }
 
 
 
 
1186
  if($curlResult){
1187
  curl_close($curl);
1188
  return true;
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
+ define ('VERSION', '2.8.11'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
40
  if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
  if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
  if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
+ if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); // Time to wait between errors fetching remote file
44
 
45
  //Browser caching
46
  if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
51
  if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
  if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
  if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
+ if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
  if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
  if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
  if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
992
  $this->debug(3, "Remote file has invalid mime type: $mimeType");
993
  @unlink($this->cachefile);
994
  touch($this->cachefile);
995
+ $this->error("The remote file is not a valid image. Mimetype = '" . $mimeType . "'" . $tempfile);
996
  return false;
997
  }
998
  if($this->processImageAndWriteToCache($tempfile)){
1087
 
1088
  case 'image/png':
1089
  $image = imagecreatefrompng ($src);
1090
+ imagealphablending( $image, true );
1091
+ imagesavealpha( $image, true );
1092
  break;
1093
 
1094
  case 'image/gif':
1157
  default: return $size_str;
1158
  }
1159
  }
1160
+
1161
  protected function getURL($url, $tempfile){
1162
  $this->lastURLError = false;
1163
  $url = preg_replace('/ /', '%20', $url);
1186
  if($httpStatus == 404){
1187
  $this->set404();
1188
  }
1189
+ if($httpStatus == 302){
1190
+ $this->error("External Image is Redirecting. Try alternate image url");
1191
+ return false;
1192
+ }
1193
  if($curlResult){
1194
  curl_close($curl);
1195
  return true;
top-10-addcount.js.php CHANGED
@@ -2,14 +2,24 @@
2
  //"top-10-addcount.js.php" Add count to database
3
  Header("content-type: application/x-javascript");
4
 
5
- if (!function_exists('add_action')) {
6
- $wp_root = '../../..';
7
- if (file_exists($wp_root.'/wp-load.php')) {
8
- require_once($wp_root.'/wp-load.php');
9
- } else {
10
- require_once($wp_root.'/wp-config.php');
11
- }
 
 
 
 
12
  }
 
 
 
 
 
 
13
 
14
  // Ajax Increment Counter
15
  tptn_inc_count();
2
  //"top-10-addcount.js.php" Add count to database
3
  Header("content-type: application/x-javascript");
4
 
5
+ // Force a short-init since we just need core WP, not the entire framework stack
6
+ define( 'SHORTINIT', true );
7
+
8
+ // Build the wp-config.php path from a plugin/theme
9
+ $wp_config_path = dirname( dirname( dirname( __FILE__ ) ) );
10
+ $wp_config_filename = '/wp-config.php';
11
+
12
+ // Check if the file exists in the root or one level up
13
+ if( !file_exists( $wp_config_path . $wp_config_filename ) ) {
14
+ // Just in case the user may have placed wp-config.php one more level up from the root
15
+ $wp_config_filename = dirname( $wp_config_path ) . $wp_config_filename;
16
  }
17
+ // Require the wp-config.php file
18
+ require( $wp_config_filename );
19
+
20
+ // Include the now instantiated global $wpdb Class for use
21
+ global $wpdb;
22
+
23
 
24
  // Ajax Increment Counter
25
  tptn_inc_count();
top-10-counter.js.php CHANGED
@@ -2,55 +2,36 @@
2
  //"top-10-counter.js.php" Display number of page views
3
  Header("content-type: application/x-javascript");
4
 
5
- if (!function_exists('add_action')) {
6
- $wp_root = '../../..';
7
- if (file_exists($wp_root.'/wp-load.php')) {
8
- require_once($wp_root.'/wp-load.php');
9
- } else {
10
- require_once($wp_root.'/wp-config.php');
11
- }
 
12
  }
 
 
 
 
 
 
 
 
 
 
13
 
14
  // Display counter using Ajax
15
  function tptn_disp_count() {
16
  global $wpdb;
17
 
18
- $table_name = $wpdb->prefix . "top_ten";
19
- $table_name_daily = $wpdb->prefix . "top_ten_daily";
20
- $tptn_settings = tptn_read_options();
21
- $count_disp_form = stripslashes($tptn_settings[count_disp_form]);
22
-
23
  $id = intval($_GET['top_ten_id']);
24
  if($id > 0) {
25
 
26
- // Total count per post
27
- if (strpos($count_disp_form, "%totalcount%") !== false) {
28
- $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
29
- $cntaccess = number_format((($resultscount) ? $resultscount->cntaccess : 1));
30
- $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
31
- }
32
-
33
- // Now process daily count
34
- if (strpos($count_disp_form, "%dailycount%") !== false) {
35
- $daily_range = $tptn_settings[daily_range];
36
- $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
37
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
38
- $current_date = date ( 'Y-m-j' , $current_date );
39
-
40
- $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM ".$table_name_daily." WHERE postnumber = ".$id." AND dp_date >= '".$current_date."' GROUP BY postnumber ");
41
- $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
42
- $count_disp_form = str_replace("%dailycount%", $cntaccess, $count_disp_form);
43
- }
44
-
45
- // Now process overall count
46
- if (strpos($count_disp_form, "%overallcount%") !== false) {
47
- $resultscount = $wpdb->get_row("SELECT SUM(cntaccess) as sumCount FROM ".$table_name);
48
- $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
49
- $count_disp_form = str_replace("%overallcount%", $cntaccess, $count_disp_form);
50
- }
51
-
52
-
53
- echo 'document.write("'.$count_disp_form.'")';
54
  }
55
  }
56
  tptn_disp_count();
2
  //"top-10-counter.js.php" Display number of page views
3
  Header("content-type: application/x-javascript");
4
 
5
+ // Build the wp-config.php path from a plugin/theme
6
+ $wp_config_path = dirname( dirname( dirname( __FILE__ ) ) );
7
+ $wp_config_filename = '/wp-load.php';
8
+
9
+ // Check if the file exists in the root or one level up
10
+ if( !file_exists( $wp_config_path . $wp_config_filename ) ) {
11
+ // Just in case the user may have placed wp-config.php one more level up from the root
12
+ $wp_config_filename = dirname( $wp_config_path ) . $wp_config_filename;
13
  }
14
+ // Require the wp-config.php file
15
+ require( $wp_config_filename );
16
+
17
+ // Include the now instantiated global $wpdb Class for use
18
+ global $wpdb;
19
+
20
+ $nonce=$_REQUEST['_wpnonce'];
21
+ $id = intval($_GET['top_ten_id']);
22
+ $nonce_action = 'tptn-nonce-'.$id;
23
+ if (! wp_verify_nonce($nonce, $nonce_action) ) die("Security check");
24
 
25
  // Display counter using Ajax
26
  function tptn_disp_count() {
27
  global $wpdb;
28
 
 
 
 
 
 
29
  $id = intval($_GET['top_ten_id']);
30
  if($id > 0) {
31
 
32
+ $output = get_tptn_post_count($id);
33
+
34
+ echo 'document.write("'.$output.'")';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
36
  }
37
  tptn_disp_count();
top-10.php CHANGED
@@ -1,7 +1,7 @@
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
@@ -50,31 +50,36 @@ function ald_tptn_init() {
50
  add_action('init', 'ald_tptn_init');
51
 
52
  /*********************************************************************
53
- * Main Function (Do not edit) *
54
  ********************************************************************/
55
  // Update post views
56
  add_filter('the_content','tptn_add_viewed_count');
57
  function tptn_add_viewed_count($content) {
58
  global $post, $wpdb, $single,$tptn_url,$tptn_path;
59
  $table_name = $wpdb->prefix . "top_ten";
60
- $tptn_settings = tptn_read_options();
61
-
62
- $current_user = wp_get_current_user();
63
- $post_author = ( $current_user->ID == $post->post_author ? true : false );
64
 
65
  if((is_single() || is_page())) {
66
- if (!(($post_author)&&(!$tptn_settings['track_authors']))) {
 
 
 
 
 
 
 
 
 
 
 
67
  $id = intval($post->ID);
68
  $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'"></script>';
69
  return $content.$output;
70
- }
71
- else {
72
  return $content;
73
  }
74
- }
75
- else {
76
  return $content;
77
- }
78
  }
79
 
80
 
@@ -85,11 +90,9 @@ function tptn_pc_content($content) {
85
  $id = intval($post->ID);
86
 
87
  if((is_single())&&($tptn_settings['add_to_content'])) {
88
- $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-counter.js.php?top_ten_id='.$id.'"></script>';
89
- return $content.$output;
90
  } elseif((is_page())&&($tptn_settings['count_on_pages'])) {
91
- $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-counter.js.php?top_ten_id='.$id.'"></script>';
92
- return $content.$output;
93
  } else {
94
  return $content;
95
  }
@@ -97,12 +100,69 @@ function tptn_pc_content($content) {
97
  add_filter('the_content', 'tptn_pc_content');
98
 
99
  // Function to manually display count
100
- function echo_tptn_post_count() {
101
  global $post,$tptn_url,$tptn_path;
 
102
  $id = intval($post->ID);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
- $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-counter.js.php?top_ten_id='.$id.'"></script>';
105
- echo $output;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  }
107
 
108
  // Function to return popular posts
@@ -128,7 +188,6 @@ function tptn_pop_posts( $args ) {
128
  }
129
 
130
  function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $show_excerpt = false, $post_thumb_op = 'text_only', $daily_range = '1' ) {
131
- // function get_tptn_pop_posts( $daily = false , $widget = false, $limit, $show_excerpt, $post_thumb_op, $daily_range ) {
132
  global $wpdb, $siteurl, $tableposts, $id;
133
  if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
134
  else $table_name = $wpdb->prefix . "top_ten";
@@ -193,16 +252,16 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
193
  $output .= $title; // Add title if post thumbnail is to be displayed after
194
  }
195
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
196
- $output .= ald_get_the_post_thumbnail('postid='.$result->postnumber.'&thumb_height='.$tptn_settings[thumb_height].'&thumb_width='.$tptn_settings[thumb_width].'&thumb_meta='.$tptn_settings[thumb_meta].'&thumb_default='.$tptn_settings[thumb_default].'&thumb_default_show='.$tptn_settings[thumb_default_show].'&thumb_timthumb='.$tptn_settings[thumb_timthumb].'&scan_images='.$tptn_settings[scan_images].'&class=tptn_thumb&filter=tp10_postimage');
197
  }
198
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
199
  $output .= $title; // Add title when required by settings
200
  }
201
  $output .= '</a>'; // Close the link
202
  if ($show_excerpt) {
203
- $output .= '<span class="tptn_excerpt"> '.ald_excerpt($result->postnumber,$tptn_settings['excerpt_length']).'</span>';
204
  }
205
- if ($tptn_settings['disp_list_count']) $output .= ' ('.number_format($result->sumCount).')';
206
 
207
  $output .= $tptn_settings['after_list_item'];
208
  $counter++;
@@ -241,7 +300,7 @@ function tptn_header() {
241
  global $wpdb, $post, $single;
242
 
243
  $tptn_settings = tptn_read_options();
244
- $tptn_custom_CSS = stripslashes($tptn_settings[custom_CSS]);
245
 
246
  // Add CSS to header
247
  if ($tptn_custom_CSS != '') {
@@ -249,7 +308,9 @@ function tptn_header() {
249
  }
250
  }
251
 
252
- // Create a Wordpress Widget for Popular Posts
 
 
253
  class WidgetTopTen extends WP_Widget
254
  {
255
  function WidgetTopTen()
@@ -320,13 +381,13 @@ class WidgetTopTen extends WP_Widget
320
 
321
  $tptn_settings = tptn_read_options();
322
 
323
- $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings[title]) : $instance['title']);
324
  $limit = $instance['limit'];
325
  $show_excerpt = $instance['show_excerpt'];
326
  $post_thumb_op = $instance['post_thumb_op'];
327
- if (empty($limit)) $limit = $tptn_settings[limit];
328
  $daily_range = $instance['daily_range'];
329
- if (empty($daily_range)) $daily_range = $tptn_settings[daily_range];
330
  $daily = $instance['daily'];
331
  $daily = (($daily=="daily") ? true : false);
332
 
@@ -361,6 +422,9 @@ function init_tptn(){
361
  add_action('init', 'init_tptn', 1);
362
 
363
 
 
 
 
364
  // Default Options
365
  function tptn_default_options() {
366
  global $tptn_url;
@@ -375,11 +439,13 @@ function tptn_default_options() {
375
  'exclude_pages' => true, // Exclude Pages
376
  'count_on_pages' => true, // Display on pages
377
  'track_authors' => false, // Track Authors visits
 
378
  'pv_in_admin' => true, // Add an extra column on edit posts/pages to display page views?
379
- 'blank_output' => true, // Blank output?
380
  'blank_output_text' => $blank_output_text, // Blank output text
381
  'disp_list_count' => true, // Display count in popular lists?
382
  'd_use_js' => false, // Use JavaScript for displaying daily posts
 
383
  'count_disp_form' => '(Visited %totalcount% times, %dailycount% visits today)', // Format to display the count
384
  'title' => $title, // Title of Popular Posts
385
  'title_daily' => $title_daily, // Title of Daily Popular
@@ -517,8 +583,11 @@ function tptn_trunc_count($daily = false) {
517
  $wpdb->query($sql);
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) {
@@ -528,8 +597,95 @@ function ald_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthu
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');
535
  function ald_tptn() {
@@ -541,10 +697,10 @@ function tptn_enable_run($hour, $min, $recurrence) {
541
  if (function_exists('wp_schedule_event')) {
542
  // Invoke WordPress internal cron
543
  if (!wp_next_scheduled('ald_tptn_hook')) {
544
- wp_schedule_event( mktime($hour,$min), $recurrence, 'ald_tptn_hook' );
545
  } else {
546
  wp_clear_scheduled_hook('ald_tptn_hook');
547
- wp_schedule_event( mktime($hour,$min), $recurrence, 'ald_tptn_hook' );
548
  }
549
  }
550
  }
@@ -570,30 +726,43 @@ function ald_more_reccurences() {
570
  add_filter('cron_schedules', 'ald_more_reccurences');
571
  }
572
 
573
- // Include framework file
574
- require_once(ALD_TPTN_DIR . "/ald-framework.inc.php");
575
 
 
 
 
576
 
577
  // This function adds an Options page in WP Admin
578
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
579
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
580
 
581
- // Add meta links
582
- function tptn_plugin_actions( $links, $file ) {
583
- $plugin = plugin_basename(__FILE__);
584
-
585
- // create link
586
- if ($file == $plugin) {
587
- $links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>';
588
- $links[] = '<a href="http://ajaydsouza.com/support/">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
589
- $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
 
 
590
  }
591
- return $links;
592
- }
593
- global $wp_version;
594
- if ( version_compare( $wp_version, '2.8alpha', '>' ) )
595
- add_filter( 'plugin_row_meta', 'tptn_plugin_actions', 10, 2 ); // only 2.8 and higher
596
- else add_filter( 'plugin_action_links', 'tptn_plugin_actions', 10, 2 );
 
 
 
 
 
 
 
 
 
 
597
 
598
  } // End admin.inc
599
 
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9.2
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
50
  add_action('init', 'ald_tptn_init');
51
 
52
  /*********************************************************************
53
+ * Main Functions *
54
  ********************************************************************/
55
  // Update post views
56
  add_filter('the_content','tptn_add_viewed_count');
57
  function tptn_add_viewed_count($content) {
58
  global $post, $wpdb, $single,$tptn_url,$tptn_path;
59
  $table_name = $wpdb->prefix . "top_ten";
 
 
 
 
60
 
61
  if((is_single() || is_page())) {
62
+
63
+ $tptn_settings = tptn_read_options();
64
+
65
+ $current_user = wp_get_current_user();
66
+ $post_author = ( $current_user->ID == $post->post_author ? true : false );
67
+ $current_user_admin = ( (current_user_can( 'manage_options' )) ? true : false );
68
+
69
+ $include_code = true;
70
+ if ( ($post_author) && (!$tptn_settings['track_authors']) ) $include_code = false;
71
+ if ( ($current_user_admin) && (!$tptn_settings['track_admins']) ) $include_code = false;
72
+
73
+ if ($include_code) {
74
  $id = intval($post->ID);
75
  $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'"></script>';
76
  return $content.$output;
77
+ } else {
 
78
  return $content;
79
  }
80
+ } else {
 
81
  return $content;
82
+ }
83
  }
84
 
85
 
90
  $id = intval($post->ID);
91
 
92
  if((is_single())&&($tptn_settings['add_to_content'])) {
93
+ return $content.echo_tptn_post_count(0);
 
94
  } elseif((is_page())&&($tptn_settings['count_on_pages'])) {
95
+ return $content.echo_tptn_post_count(0);
 
96
  } else {
97
  return $content;
98
  }
100
  add_filter('the_content', 'tptn_pc_content');
101
 
102
  // Function to manually display count
103
+ function echo_tptn_post_count($echo=1) {
104
  global $post,$tptn_url,$tptn_path;
105
+ $tptn_settings = tptn_read_options();
106
  $id = intval($post->ID);
107
+
108
+ $nonce_action = 'tptn-nonce-'.$id;
109
+ $nonce = wp_create_nonce($nonce_action);
110
+
111
+ if ($tptn_settings['dynamic_post_count']) {
112
+ $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'"><script type="text/javascript" src="'.$tptn_url.'/top-10-counter.js.php?top_ten_id='.$id.'&amp;_wpnonce='.$nonce.'"></script></div>';
113
+ } else {
114
+ $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'">'.get_tptn_post_count($id).'</div>';
115
+ }
116
+
117
+ if ($echo) {
118
+ echo $output;
119
+ } else {
120
+ return $output;
121
+ }
122
+ }
123
 
124
+ // Return the post count
125
+ function get_tptn_post_count($id) {
126
+ global $wpdb;
127
+
128
+ $table_name = $wpdb->prefix . "top_ten";
129
+ $table_name_daily = $wpdb->prefix . "top_ten_daily";
130
+ $tptn_settings = tptn_read_options();
131
+ $count_disp_form = stripslashes($tptn_settings['count_disp_form']);
132
+
133
+ if($id > 0) {
134
+
135
+ // Total count per post
136
+ if (strpos($count_disp_form, "%totalcount%") !== false) {
137
+ $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
138
+ $cntaccess = number_format((($resultscount) ? $resultscount->cntaccess : 1));
139
+ $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
140
+ }
141
+
142
+ // Now process daily count
143
+ if (strpos($count_disp_form, "%dailycount%") !== false) {
144
+ $daily_range = $tptn_settings['daily_range'];
145
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
146
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
147
+ $current_date = date ( 'Y-m-j' , $current_date );
148
+
149
+ $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM ".$table_name_daily." WHERE postnumber = ".$id." AND dp_date >= '".$current_date."' GROUP BY postnumber ");
150
+ $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
151
+ $count_disp_form = str_replace("%dailycount%", $cntaccess, $count_disp_form);
152
+ }
153
+
154
+ // Now process overall count
155
+ if (strpos($count_disp_form, "%overallcount%") !== false) {
156
+ $resultscount = $wpdb->get_row("SELECT SUM(cntaccess) as sumCount FROM ".$table_name);
157
+ $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
158
+ $count_disp_form = str_replace("%overallcount%", $cntaccess, $count_disp_form);
159
+ }
160
+
161
+
162
+ return $count_disp_form;
163
+ } else {
164
+ return 0;
165
+ }
166
  }
167
 
168
  // Function to return popular posts
188
  }
189
 
190
  function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $show_excerpt = false, $post_thumb_op = 'text_only', $daily_range = '1' ) {
 
191
  global $wpdb, $siteurl, $tableposts, $id;
192
  if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
193
  else $table_name = $wpdb->prefix . "top_ten";
252
  $output .= $title; // Add title if post thumbnail is to be displayed after
253
  }
254
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
255
+ $output .= tptn_get_the_post_thumbnail('postid='.$result->postnumber.'&thumb_height='.$tptn_settings['thumb_height'].'&thumb_width='.$tptn_settings['thumb_width'].'&thumb_meta='.$tptn_settings['thumb_meta'].'&thumb_default='.$tptn_settings['thumb_default'].'&thumb_default_show='.$tptn_settings['thumb_default_show'].'&thumb_timthumb='.$tptn_settings['thumb_timthumb'].'&scan_images='.$tptn_settings['scan_images'].'&class=tptn_thumb&filter=tptn_postimage');
256
  }
257
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
258
  $output .= $title; // Add title when required by settings
259
  }
260
  $output .= '</a>'; // Close the link
261
  if ($show_excerpt) {
262
+ $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->postnumber,$tptn_settings['excerpt_length']).'</span>';
263
  }
264
+ if ($tptn_settings['disp_list_count']) $output .= ' <span class="tptn_list_count">('.number_format($result->sumCount).')</span>';
265
 
266
  $output .= $tptn_settings['after_list_item'];
267
  $counter++;
300
  global $wpdb, $post, $single;
301
 
302
  $tptn_settings = tptn_read_options();
303
+ $tptn_custom_CSS = stripslashes($tptn_settings['custom_CSS']);
304
 
305
  // Add CSS to header
306
  if ($tptn_custom_CSS != '') {
308
  }
309
  }
310
 
311
+ /*********************************************************************
312
+ * WordPress Widgets *
313
+ ********************************************************************/
314
  class WidgetTopTen extends WP_Widget
315
  {
316
  function WidgetTopTen()
381
 
382
  $tptn_settings = tptn_read_options();
383
 
384
+ $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings['title']) : $instance['title']);
385
  $limit = $instance['limit'];
386
  $show_excerpt = $instance['show_excerpt'];
387
  $post_thumb_op = $instance['post_thumb_op'];
388
+ if (empty($limit)) $limit = $tptn_settings['limit'];
389
  $daily_range = $instance['daily_range'];
390
+ if (empty($daily_range)) $daily_range = $tptn_settings['daily_range'];
391
  $daily = $instance['daily'];
392
  $daily = (($daily=="daily") ? true : false);
393
 
422
  add_action('init', 'init_tptn', 1);
423
 
424
 
425
+ /*********************************************************************
426
+ * Default options *
427
+ ********************************************************************/
428
  // Default Options
429
  function tptn_default_options() {
430
  global $tptn_url;
439
  'exclude_pages' => true, // Exclude Pages
440
  'count_on_pages' => true, // Display on pages
441
  'track_authors' => false, // Track Authors visits
442
+ 'track_admins' => true, // Track Admin visits
443
  'pv_in_admin' => true, // Add an extra column on edit posts/pages to display page views?
444
+ 'blank_output' => false, // Blank output? Default is "blank Output test"
445
  'blank_output_text' => $blank_output_text, // Blank output text
446
  'disp_list_count' => true, // Display count in popular lists?
447
  'd_use_js' => false, // Use JavaScript for displaying daily posts
448
+ 'dynamic_post_count' => true, // Use JavaScript for displaying the post count
449
  'count_disp_form' => '(Visited %totalcount% times, %dailycount% visits today)', // Format to display the count
450
  'title' => $title, // Title of Popular Posts
451
  'title_daily' => $title_daily, // Title of Daily Popular
583
  $wpdb->query($sql);
584
  }
585
 
586
+ /*********************************************************************
587
+ * Utility Functions *
588
+ ********************************************************************/
589
  // Filter function to resize post thumbnail. Filters out tp10_postimage
590
+ function tptn_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb) {
591
  global $ald_url;
592
 
593
  if ($thumb_timthumb) {
597
  }
598
  return $new_pi;
599
  }
600
+ add_filter('tptn_postimage', 'tptn_scale_thumbs', 10, 4);
601
+
602
+ // Function to get the post thumbnail
603
+ function tptn_get_the_post_thumbnail($args = array()) {
604
+
605
+ global $ald_url;
606
+ $defaults = array(
607
+ 'postid' => '',
608
+ 'thumb_height' => '50', // Max height of thumbnails
609
+ 'thumb_width' => '50', // Max width of thumbnails
610
+ 'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
611
+ 'thumb_default' => '', // Default thumbnail image
612
+ 'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
613
+ 'thumb_timthumb' => true, // Use timthumb
614
+ 'scan_images' => false, // Scan post for images
615
+ 'class' => 'tptn_thumb', // Class of the thumbnail
616
+ 'filter' => 'tptn_postimage', // Class of the thumbnail
617
+ );
618
+
619
+ // Parse incomming $args into an array and merge it with $defaults
620
+ $args = wp_parse_args( $args, $defaults );
621
+
622
+ // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
623
+ extract( $args, EXTR_SKIP );
624
+
625
+ $result = get_post($postid);
626
+
627
+ $output = '';
628
+ $title = get_the_title($postid);
629
+
630
+ 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) ) ) {
631
+ $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
632
+
633
+ if ( ($postimage[1] < $thumb_width) || ($postimage[2] < $thumb_height) ) $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) , 'full' );
634
+ $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb );
635
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
636
+
637
+ // $output .= get_the_post_thumbnail($result->ID, array($thumb_width,$thumb_height), array('title' => $title,'alt' => $title, 'class' => $class, 'border' => '0'));
638
+ } else {
639
+ $postimage = get_post_meta($result->ID, $thumb_meta, true); // Check
640
+ if (!$postimage && $scan_images) {
641
+ preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
642
+ // any image there?
643
+ if (isset($matches) && $matches[1][0]) {
644
+ if (((strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false))|| ((strpos($matches[1][0], 'http://') === false))) {
645
+ $postimage = $matches[1][0]; // we need the first one only!
646
+ }
647
+ }
648
+ }
649
+ if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
650
+ if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
651
+ if ($postimage) {
652
+ if ($thumb_timthumb) {
653
+ $output .= '<img src="'.$ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
654
+ } else {
655
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
656
+ }
657
+ }
658
+ }
659
+
660
+ return $output;
661
+ }
662
 
663
+ // Function to create an excerpt for the post
664
+ function tptn_excerpt($postid,$excerpt_length){
665
+ $content = get_post($postid)->post_excerpt;
666
+ if ($content=='') $content = get_post($postid)->post_content;
667
+ $out = strip_tags($content);
668
+ $blah = explode(' ',$out);
669
+ if (!$excerpt_length) $excerpt_length = 10;
670
+ if(count($blah) > $excerpt_length){
671
+ $k = $excerpt_length;
672
+ $use_dotdotdot = 1;
673
+ }else{
674
+ $k = count($blah);
675
+ $use_dotdotdot = 0;
676
+ }
677
+ $excerpt = '';
678
+ for($i=0; $i<$k; $i++){
679
+ $excerpt .= $blah[$i].' ';
680
+ }
681
+ $excerpt .= ($use_dotdotdot) ? '...' : '';
682
+ $out = $excerpt;
683
+ return $out;
684
+ }
685
+
686
+ /*********************************************************************
687
+ * Cron Functions *
688
+ ********************************************************************/
689
  // Function to truncate daily run
690
  add_action('ald_tptn_hook', 'ald_tptn');
691
  function ald_tptn() {
697
  if (function_exists('wp_schedule_event')) {
698
  // Invoke WordPress internal cron
699
  if (!wp_next_scheduled('ald_tptn_hook')) {
700
+ wp_schedule_event( mktime($hour,$min, 0), $recurrence, 'ald_tptn_hook' );
701
  } else {
702
  wp_clear_scheduled_hook('ald_tptn_hook');
703
+ wp_schedule_event( mktime($hour,$min, 0), $recurrence, 'ald_tptn_hook' );
704
  }
705
  }
706
  }
726
  add_filter('cron_schedules', 'ald_more_reccurences');
727
  }
728
 
 
 
729
 
730
+ /*********************************************************************
731
+ * Admin interface *
732
+ ********************************************************************/
733
 
734
  // This function adds an Options page in WP Admin
735
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
736
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
737
 
738
+ // Adding WordPress plugin action links
739
+ add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'tptn_plugin_actions_links' );
740
+ function tptn_plugin_actions_links( $links ) {
741
+
742
+ return array_merge(
743
+ array(
744
+ 'settings' => '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>'
745
+ ),
746
+ $links
747
+ );
748
+
749
  }
750
+ // Add meta links
751
+ function tptn_plugin_actions( $links, $file ) {
752
+ $plugin = plugin_basename(__FILE__);
753
+
754
+ // create link
755
+ if ($file == $plugin) {
756
+ // $links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>';
757
+ $links[] = '<a href="http://ajaydsouza.com/support/">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
758
+ $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
759
+ }
760
+ return $links;
761
+ }
762
+ global $wp_version;
763
+ if ( version_compare( $wp_version, '2.8alpha', '>' ) )
764
+ add_filter( 'plugin_row_meta', 'tptn_plugin_actions', 10, 2 ); // only 2.8 and higher
765
+ else add_filter( 'plugin_action_links', 'tptn_plugin_actions', 10, 2 );
766
 
767
  } // End admin.inc
768