Top 10 – Popular posts plugin for WordPress - Version 1.9.5

Version Description

  • New: Disable daily or overall counters, bug fixes; Check out the Changelog for complete details

=

Download this release

Release Info

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

Code changes from version 1.9.4 to 1.9.5

admin.inc.php CHANGED
@@ -6,6 +6,12 @@ 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 tptn_options() {
10
 
11
  global $wpdb;
@@ -20,6 +26,8 @@ function tptn_options() {
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);
@@ -128,18 +136,32 @@ function tptn_options() {
128
  <h3>
129
  <?php _e('General options',TPTN_LOCAL_NAME); ?>
130
  </h3>
131
- <table class="form-table">
132
- <tr><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><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><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><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
142
- <td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  <div style="position:relative;text-align:left">
144
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
145
  <tr><td><!--
@@ -153,62 +175,61 @@ function tptn_options() {
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><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><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><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><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><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><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><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
-
192
- </table>
193
  </div>
194
  <div class="tabbertab">
195
  <h3>
196
  <?php _e('Output Options',TPTN_LOCAL_NAME); ?>
197
  </h3>
198
- <table class="form-table">
199
  <tr><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><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><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><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>
212
  <label>
213
  <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($tptn_settings['blank_output']) echo 'checked="checked"' ?> />
214
  <?php _e('Blank Output',TPTN_LOCAL_NAME); ?></label>
@@ -217,35 +238,35 @@ function tptn_options() {
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><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><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><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><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><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><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><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>
247
  <tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',TPTN_LOCAL_NAME); ?></label></th>
248
- <td>
249
  <label>
250
  <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
251
  <?php _e('Display thumbnails inline with posts, before title',TPTN_LOCAL_NAME); ?></label>
@@ -262,28 +283,28 @@ function tptn_options() {
262
  <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ($tptn_settings['post_thumb_op']=='text_only') echo 'checked="checked"' ?> />
263
  <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
264
  <br />
265
- </td>
266
  </tr>
267
  <tr><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><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><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><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><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><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><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>
@@ -291,33 +312,34 @@ function tptn_options() {
291
  <h3>
292
  <?php _e('Custom Styles',TPTN_LOCAL_NAME); ?>
293
  </h3>
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>
301
  <div class="tabbertab">
302
  <h3>
303
  <?php _e('Maintenance',TPTN_LOCAL_NAME); ?>
304
  </h3>
305
- <table class="form-table">
306
  <tr style="vertical-align: top; "><th scope="row" colspan="2">
307
- <?php _e('Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs.',TPTN_LOCAL_NAME); ?>
308
- <em><?php _e('Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below). This causes the daily posts table to reset.',TPTN_LOCAL_NAME); ?></em>
309
- </th>
310
  </tr>
311
  <tr><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><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><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
320
- <td>
321
  <label>
322
  <input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ($tptn_settings['cron_recurrence']=='daily') echo 'checked="checked"' ?> />
323
  <?php _e('Daily',TPTN_LOCAL_NAME); ?></label>
@@ -334,7 +356,7 @@ function tptn_options() {
334
  <input type="radio" name="cron_recurrence" value="monthly" id="cron_recurrence3" <?php if ($tptn_settings['cron_recurrence']=='monthly') echo 'checked="checked"' ?> />
335
  <?php _e('Monthly',TPTN_LOCAL_NAME); ?></label>
336
  <br />
337
- </td>
338
  </tr>
339
  <tr><td scope="row" colspan="2">
340
  <?php
@@ -386,10 +408,23 @@ function tptn_options() {
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);
@@ -422,6 +457,12 @@ function tptn_manage($daily = 0) {
422
  <?php
423
  }
424
 
 
 
 
 
 
 
425
  function tptn_admin_side() {
426
  ?>
427
  <div class="side-widget">
@@ -455,7 +496,6 @@ function tptn_admin_side() {
455
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
456
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
457
  <li><a href="http://wordpress.org/support/plugin/top-10"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
458
- <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
459
  </ul>
460
  </div>
461
  <div class="side-widget">
@@ -466,7 +506,12 @@ function tptn_admin_side() {
466
  <?php
467
  }
468
 
469
- /* Add menu item in WP-Admin */
 
 
 
 
 
470
  function tptn_adminmenu() {
471
 
472
  if (function_exists('add_menu_page')) {
@@ -474,6 +519,9 @@ function tptn_adminmenu() {
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
 
@@ -484,6 +532,12 @@ function tptn_adminmenu() {
484
  }
485
  add_action('admin_menu', 'tptn_adminmenu');
486
 
 
 
 
 
 
 
487
  function tptn_adminhead() {
488
  global $tptn_url;
489
 
@@ -504,7 +558,14 @@ return answer;
504
  <script type="text/javascript" src="<?php echo $tptn_url ?>/tabber/tabber.js"></script>
505
  <?php }
506
 
507
- // Function to delete all rows in the posts table
 
 
 
 
 
 
 
508
  function tptn_clean_duplicates($daily = false) {
509
  global $wpdb;
510
  $table_name = $wpdb->prefix . "top_ten";
@@ -516,7 +577,18 @@ function tptn_clean_duplicates($daily = false) {
516
  $wpdb->query("INSERT INTO ".$table_name." SELECT * FROM ".$table_name."_temp");
517
  }
518
 
519
- /* Create a Dashboard Widget */
 
 
 
 
 
 
 
 
 
 
 
520
  function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = false, $exclude_pages = 0) {
521
  global $wpdb, $siteurl, $tableposts, $id;
522
 
@@ -683,15 +755,33 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
683
 
684
  }
685
 
686
- // Dashboard for Popular Posts
 
 
 
 
 
 
687
  function tptn_pop_dashboard() {
688
  echo tptn_pop_display(false,0,10,true);
689
  }
690
- // Dashboard for Daily Popular Posts
 
 
 
 
 
 
691
  function tptn_pop_daily_dashboard() {
692
  echo tptn_pop_display(true,0,10,true);
693
  }
694
 
 
 
 
 
 
 
695
  function tptn_pop_dashboard_setup() {
696
  if (function_exists('wp_add_dashboard_widget')) {
697
  wp_add_dashboard_widget( 'tptn_pop_dashboard', __( 'Popular Posts',TPTN_LOCAL_NAME ), 'tptn_pop_dashboard' );
@@ -701,8 +791,13 @@ function tptn_pop_dashboard_setup() {
701
  add_action('wp_dashboard_setup', 'tptn_pop_dashboard_setup');
702
 
703
 
704
- /* Display page views on the Edit Posts / Pages screen */
705
- // Add an extra column
 
 
 
 
 
706
  function tptn_column($cols) {
707
  $tptn_settings = tptn_read_options();
708
 
@@ -710,7 +805,15 @@ function tptn_column($cols) {
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'])) {
@@ -738,7 +841,13 @@ function tptn_value($column_name, $id) {
738
  }
739
  }
740
 
741
- // Output CSS for width of new column
 
 
 
 
 
 
742
  function tptn_css() {
743
  ?>
744
  <style type="text/css">
6
  if (!defined('ALD_TPTN_DIR')) define('ALD_TPTN_DIR', dirname(__FILE__));
7
  if (!defined('TPTN_LOCAL_NAME')) define('TPTN_LOCAL_NAME', 'tptn');
8
 
9
+ /**
10
+ * Plugin settings.
11
+ *
12
+ * @access public
13
+ * @return void
14
+ */
15
  function tptn_options() {
16
 
17
  global $wpdb;
26
  $tptn_settings['limit'] = intval($_POST['limit']);
27
  $tptn_settings['count_disp_form'] = ($_POST['count_disp_form']);
28
  $tptn_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
29
+ $tptn_settings['activate_overall'] = (isset($_POST['activate_overall']) ? true : false);
30
+ $tptn_settings['activate_daily'] = (isset($_POST['activate_daily']) ? true : false);
31
  $tptn_settings['exclude_pages'] = (isset($_POST['exclude_pages']) ? true : false);
32
  $tptn_settings['count_on_pages'] = (isset($_POST['count_on_pages']) ? true : false);
33
  $tptn_settings['track_authors'] = (isset($_POST['track_authors']) ? true : false);
136
  <h3>
137
  <?php _e('General options',TPTN_LOCAL_NAME); ?>
138
  </h3>
139
+ <table class="form-table">
140
+ <tr>
141
+ <th scope="row"><label for="activate_overall"><?php _e('Enable Overall stats',TPTN_LOCAL_NAME); ?></label></th>
142
+ <td><input type="checkbox" name="activate_overall" id="activate_overall" <?php if ($tptn_settings['activate_overall']) echo 'checked="checked"' ?> />
143
+ </td>
144
+ </tr>
145
+ <tr>
146
+ <th scope="row"><label for="activate_daily"><?php _e('Enable Daily stats',TPTN_LOCAL_NAME); ?></label></th>
147
+ <td><input type="checkbox" name="activate_daily" id="activate_daily" <?php if ($tptn_settings['activate_daily']) echo 'checked="checked"' ?> />
148
+ </td>
149
+ </tr>
150
+ <tr>
151
+ <th scope="row"><label for="limit"><?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?></label></th>
152
+ <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($tptn_settings['limit'])); ?>"></td>
153
+ </tr>
154
+ <tr>
155
+ <th scope="row"><label for="daily_range"><?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?></label></th>
156
+ <td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings['daily_range']); ?>"></td>
157
+ </tr>
158
+ <tr>
159
+ <th scope="row"><label for="exclude_pages"><?php _e('Exclude Pages?',TPTN_LOCAL_NAME); ?></label></th>
160
+ <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>
161
+ </tr>
162
+ <tr>
163
+ <th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
164
+ <td>
165
  <div style="position:relative;text-align:left">
166
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
167
  <tr><td><!--
175
  </td></tr>
176
  </table>
177
  <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($tptn_settings['exclude_cat_slugs'])); ?></textarea>
178
+ <p class="description"><?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); ?></p>
179
  </div>
180
+ </td>
181
  </tr>
182
+ <tr>
183
+ <th scope="row"><?php _e('Display number of views on:',TPTN_LOCAL_NAME); ?></th>
184
+ <td>
185
+ <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 />
186
+ <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); ?>
187
+ </td>
188
  </tr>
189
  <tr><th scope="row"><label for="dynamic_post_count"><?php _e('Always display latest post count',TPTN_LOCAL_NAME); ?></label></th>
190
+ <td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> />
191
+ <p class="description"><?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); ?></p>
192
+ </td>
193
  </tr>
 
194
  <tr><th scope="row"><label for="d_use_js"><?php _e('Always display latest post count in the daily lists',TPTN_LOCAL_NAME); ?></label></th>
195
+ <td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings['d_use_js']) echo 'checked="checked"' ?> />
196
+ <p class="description"><?php _e('This option uses JavaScript and will increase your page load time',TPTN_LOCAL_NAME); ?></p>
197
+ </td>
198
  </tr>
 
199
  <tr><th scope="row"><label for="track_authors"><?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?></label></th>
200
+ <td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings['track_authors']) echo 'checked="checked"' ?> /></td>
201
  </tr>
 
202
  <tr><th scope="row"><label for="track_admins"><?php _e('Track visits of admins?',TPTN_LOCAL_NAME); ?></label></th>
203
+ <td><input type="checkbox" name="track_admins" id="track_admins" <?php if ($tptn_settings['track_admins']) echo 'checked="checked"' ?> /></td>
204
  </tr>
 
205
  <tr><th scope="row"><label for="pv_in_admin"><?php _e('Display page views on Posts > All Posts in Admin',TPTN_LOCAL_NAME); ?></label></th>
206
+ <td><input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings['pv_in_admin']) echo 'checked="checked"' ?> /></td>
207
  </tr>
 
208
  <tr><th scope="row"><label for="show_credit"><?php _e('Link to Top 10 plugin page',TPTN_LOCAL_NAME); ?></label></th>
209
+ <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings['show_credit']) echo 'checked="checked"' ?> />
210
+ <p class="description"><?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></p>
211
+ </td>
212
  </tr>
213
+ </table>
 
214
  </div>
215
  <div class="tabbertab">
216
  <h3>
217
  <?php _e('Output Options',TPTN_LOCAL_NAME); ?>
218
  </h3>
219
+ <table class="form-table">
220
  <tr><th scope="row"><label for="title"><?php _e('Format to display the count in: ',TPTN_LOCAL_NAME); ?></label></th>
221
+ <td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings['count_disp_form'])); ?></textarea>
222
+ <p class="description"><?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); ?>
223
+ </td>
224
  </tr>
225
  <tr><th scope="row"><label for="title"><?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
226
+ <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($tptn_settings['title'])); ?>" style="width:250px" /></td>
227
  </tr>
228
  <tr><th scope="row"><label for="title_daily"><?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
229
+ <td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo esc_attr(stripslashes($tptn_settings['title_daily'])); ?>" style="width:250px" /></td>
230
  </tr>
231
  <tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',TPTN_LOCAL_NAME); ?></label></th>
232
+ <td>
233
  <label>
234
  <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($tptn_settings['blank_output']) echo 'checked="checked"' ?> />
235
  <?php _e('Blank Output',TPTN_LOCAL_NAME); ?></label>
238
  <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$tptn_settings['blank_output']) echo 'checked="checked"' ?> />
239
  <?php _e('Display:',TPTN_LOCAL_NAME); ?></label>
240
  <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" />
241
+ </td>
242
  </tr>
243
  <tr><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></label></th>
244
+ <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
245
  </tr>
246
  <tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
247
+ <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
248
  </tr>
249
  <tr><th scope="row"><label for="disp_list_count"><?php _e('Display number of page views in popular lists?',TPTN_LOCAL_NAME); ?></label></th>
250
+ <td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings['disp_list_count']) echo 'checked="checked"' ?> /></td>
251
  </tr>
252
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></th>
253
  </tr>
254
  <tr><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
255
+ <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list'])); ?>" style="width:250px" /></td>
256
  </tr>
257
  <tr><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?></label></th>
258
+ <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>
259
  </tr>
260
  <tr><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?></label></th>
261
+ <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>
262
  </tr>
263
  <tr><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
264
+ <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list'])); ?>" style="width:250px" /></td>
265
  </tr>
266
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
267
  </tr>
268
  <tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',TPTN_LOCAL_NAME); ?></label></th>
269
+ <td>
270
  <label>
271
  <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
272
  <?php _e('Display thumbnails inline with posts, before title',TPTN_LOCAL_NAME); ?></label>
283
  <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ($tptn_settings['post_thumb_op']=='text_only') echo 'checked="checked"' ?> />
284
  <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
285
  <br />
286
+ </td>
287
  </tr>
288
  <tr><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
289
+ <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>
290
  </tr>
291
  <tr><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
292
+ <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>
293
  </tr>
294
  <tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
295
+ <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>
296
  </tr>
297
  <tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
298
+ <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>
299
  </tr>
300
  <tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',TPTN_LOCAL_NAME); ?></label></th>
301
+ <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>
302
  </tr>
303
  <tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
304
+ <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>
305
  </tr>
306
  <tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
307
+ <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>
308
  </tr>
309
  </table>
310
  </div>
312
  <h3>
313
  <?php _e('Custom Styles',TPTN_LOCAL_NAME); ?>
314
  </h3>
315
+ <table class="form-table">
316
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
317
  </tr>
318
  <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>
319
+ <p class="description"><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></em></p>
320
+ </td>
321
+ </tr>
322
+ </table>
323
  </div>
324
  <div class="tabbertab">
325
  <h3>
326
  <?php _e('Maintenance',TPTN_LOCAL_NAME); ?>
327
  </h3>
328
+ <table class="form-table">
329
  <tr style="vertical-align: top; "><th scope="row" colspan="2">
330
+ <?php _e('Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs.',TPTN_LOCAL_NAME); ?>
331
+ <em><?php _e('Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below). This causes the daily posts table to reset.',TPTN_LOCAL_NAME); ?></em>
332
+ </th>
333
  </tr>
334
  <tr><th scope="row"><label for="cron_on"><?php _e('Enable scheduled maintenance of daily tables:',TPTN_LOCAL_NAME); ?></label></th>
335
+ <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings['cron_on']) echo 'checked="checked"' ?> />
 
336
  </td>
337
  </tr>
338
  <tr><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
339
+ <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>
340
  </tr>
341
  <tr><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
342
+ <td>
343
  <label>
344
  <input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ($tptn_settings['cron_recurrence']=='daily') echo 'checked="checked"' ?> />
345
  <?php _e('Daily',TPTN_LOCAL_NAME); ?></label>
356
  <input type="radio" name="cron_recurrence" value="monthly" id="cron_recurrence3" <?php if ($tptn_settings['cron_recurrence']=='monthly') echo 'checked="checked"' ?> />
357
  <?php _e('Monthly',TPTN_LOCAL_NAME); ?></label>
358
  <br />
359
+ </td>
360
  </tr>
361
  <tr><td scope="row" colspan="2">
362
  <?php
408
 
409
  }
410
 
411
+ /**
412
+ * Function to generate the top 10 daily popular posts page.
413
+ *
414
+ * @access public
415
+ * @return void
416
+ */
417
  function tptn_manage_daily() {
418
  tptn_manage(1);
419
  }
420
 
421
+ /**
422
+ * Function to generate the top 10 daily popular posts page.
423
+ *
424
+ * @access public
425
+ * @param int $daily (default: 0) Overall popular
426
+ * @return void
427
+ */
428
  function tptn_manage($daily = 0) {
429
 
430
  $paged = (isset($_GET['paged']) ? intval($_GET['paged']) : 0);
457
  <?php
458
  }
459
 
460
+ /**
461
+ * Function to generate the right sidebar of the Settings and Admin popular posts pages.
462
+ *
463
+ * @access public
464
+ * @return void
465
+ */
466
  function tptn_admin_side() {
467
  ?>
468
  <div class="side-widget">
496
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
497
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
498
  <li><a href="http://wordpress.org/support/plugin/top-10"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
 
499
  </ul>
500
  </div>
501
  <div class="side-widget">
506
  <?php
507
  }
508
 
509
+ /**
510
+ * Add Top 10 menu in WP-Admin.
511
+ *
512
+ * @access public
513
+ * @return void
514
+ */
515
  function tptn_adminmenu() {
516
 
517
  if (function_exists('add_menu_page')) {
519
  $plugin_page = add_menu_page(__("Top 10 Settings", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 'manage_options', 'tptn_options', 'tptn_options');
520
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
521
 
522
+ $plugin_page = add_submenu_page( 'tptn_options', __("Top 10 Settings", TPTN_LOCAL_NAME), __("Top 10 Settings", TPTN_LOCAL_NAME), 'manage_options', 'tptn_options', 'tptn_options');
523
+ add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
524
+
525
  $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');
526
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
527
 
532
  }
533
  add_action('admin_menu', 'tptn_adminmenu');
534
 
535
+ /**
536
+ * Add JS and CSS to admin header.
537
+ *
538
+ * @access public
539
+ * @return void
540
+ */
541
  function tptn_adminhead() {
542
  global $tptn_url;
543
 
558
  <script type="text/javascript" src="<?php echo $tptn_url ?>/tabber/tabber.js"></script>
559
  <?php }
560
 
561
+
562
+ /**
563
+ * Function to delete all rows in the posts table.
564
+ *
565
+ * @access public
566
+ * @param bool $daily (default: false)
567
+ * @return void
568
+ */
569
  function tptn_clean_duplicates($daily = false) {
570
  global $wpdb;
571
  $table_name = $wpdb->prefix . "top_ten";
577
  $wpdb->query("INSERT INTO ".$table_name." SELECT * FROM ".$table_name."_temp");
578
  }
579
 
580
+
581
+ /**
582
+ * Create the Dashboard Widget and content of the Popular pages
583
+ *
584
+ * @access public
585
+ * @param bool $daily (default: false) Switch for Daily or Overall popular posts
586
+ * @param int $page (default: 0) Which page of the lists are we on?
587
+ * @param int $limit (default: 10) Maximum number of posts per page
588
+ * @param bool $widget (default: false) Is this a WordPress widget?
589
+ * @param int $exclude_pages (default: 0) Include / exclude pages
590
+ * @return void
591
+ */
592
  function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = false, $exclude_pages = 0) {
593
  global $wpdb, $siteurl, $tableposts, $id;
594
 
755
 
756
  }
757
 
758
+
759
+ /**
760
+ * Widget for Popular Posts.
761
+ *
762
+ * @access public
763
+ * @return void
764
+ */
765
  function tptn_pop_dashboard() {
766
  echo tptn_pop_display(false,0,10,true);
767
  }
768
+
769
+ /**
770
+ * Widget for Daily Popular Posts.
771
+ *
772
+ * @access public
773
+ * @return void
774
+ */
775
  function tptn_pop_daily_dashboard() {
776
  echo tptn_pop_display(true,0,10,true);
777
  }
778
 
779
+ /**
780
+ * Function to add the widgets to the Dashboard.
781
+ *
782
+ * @access public
783
+ * @return void
784
+ */
785
  function tptn_pop_dashboard_setup() {
786
  if (function_exists('wp_add_dashboard_widget')) {
787
  wp_add_dashboard_widget( 'tptn_pop_dashboard', __( 'Popular Posts',TPTN_LOCAL_NAME ), 'tptn_pop_dashboard' );
791
  add_action('wp_dashboard_setup', 'tptn_pop_dashboard_setup');
792
 
793
 
794
+ /**
795
+ * Add an extra column to the All Posts page to display the page views.
796
+ *
797
+ * @access public
798
+ * @param mixed $cols
799
+ * @return void
800
+ */
801
  function tptn_column($cols) {
802
  $tptn_settings = tptn_read_options();
803
 
805
  return $cols;
806
  }
807
 
808
+
809
+ /**
810
+ * Display page views for each column.
811
+ *
812
+ * @access public
813
+ * @param string $column_name Name of the column
814
+ * @param int|string $id Post ID
815
+ * @return void
816
+ */
817
  function tptn_value($column_name, $id) {
818
  $tptn_settings = tptn_read_options();
819
  if (($column_name == 'tptn')&&($tptn_settings['pv_in_admin'])) {
841
  }
842
  }
843
 
844
+
845
+ /**
846
+ * Output CSS for width of new column.
847
+ *
848
+ * @access public
849
+ * @return void
850
+ */
851
  function tptn_css() {
852
  ?>
853
  <style type="text/css">
languages/tptn-az_AZ.mo CHANGED
Binary file
languages/tptn-az_AZ.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
@@ -15,52 +15,60 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,71 +76,71 @@ msgstr ""
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,16 +149,16 @@ msgstr ""
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,114 +170,114 @@ msgstr ""
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,7 +287,7 @@ msgstr ""
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,21 +297,21 @@ msgstr ""
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,98 +322,98 @@ msgstr ""
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
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Opsiyalar:"
394
 
395
- #: admin.inc.php:363
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Plaginin kökləmələri:"
399
 
400
- #: admin.inc.php:363
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
403
 
404
- #: admin.inc.php:367
405
  msgid "Reset count"
406
  msgstr "Statistikanı sbros etmək"
407
 
408
- #: admin.inc.php:370
409
  msgid ""
410
  "This cannot be reversed. Make sure that your database has been backed up "
411
  "before proceeding"
@@ -413,230 +421,229 @@ msgstr ""
413
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
414
  "ki, Sizin məlumat bazasının kopiyası var!"
415
 
416
- #: admin.inc.php:373
417
  #, fuzzy
418
  msgid "Reset Popular Posts"
419
  msgstr "Populyar yazılar"
420
 
421
- #: admin.inc.php:373
422
  msgid "Are you sure you want to reset the popular posts?"
423
  msgstr ""
424
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
425
 
426
- #: admin.inc.php:374
427
  #, fuzzy
428
  msgid "Reset Daily Popular Posts"
429
  msgstr "Gündəlik Populyar Yazılar"
430
 
431
- #: admin.inc.php:374
432
  msgid "Are you sure you want to reset the daily popular posts?"
433
  msgstr ""
434
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
435
  "istəyirsiniz?"
436
 
437
- #: admin.inc.php:375
438
  msgid "Clear duplicates"
439
  msgstr ""
440
 
441
- #: admin.inc.php:375
442
  msgid "This will delete the duplicate entries in the tables. Proceed?"
443
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
444
 
445
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
554
  msgid "Display the posts popular this week"
555
  msgstr ""
556
 
557
- #: top-10.php:342
558
  msgid "Title"
559
  msgstr ""
560
 
561
- #: top-10.php:347
562
  msgid "No. of posts"
563
  msgstr ""
564
 
565
- #: top-10.php:352
566
  msgid "Overall"
567
  msgstr ""
568
 
569
- #: top-10.php:353
570
  msgid "Custom time period (Enter below)"
571
  msgstr ""
572
 
573
- #: top-10.php:358
574
  msgid "Range in number of days (applies only to custom option above)"
575
  msgstr ""
576
 
577
- #: top-10.php:362
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:364
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:365
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:366
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:367
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:372
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:441
608
  msgid "<h3>Popular Posts</h3>"
609
  msgstr "<h3>Populyar yazılar</h3>"
610
 
611
- #: top-10.php:442
612
  msgid "<h3>Daily Popular</h3>"
613
  msgstr "<h3>Gündəlik Populyar</h3>"
614
 
615
- #: top-10.php:443
616
  #, fuzzy
617
  msgid "No top posts yet"
618
  msgstr "10 populyar yazı statisticasını pozmaq"
619
 
620
- #: top-10.php:731
621
  msgid "Once Weekly"
622
  msgstr ""
623
 
624
- #: top-10.php:732
625
  msgid "Once Fortnightly"
626
  msgstr ""
627
 
628
- #: top-10.php:733
629
  msgid "Once Monthly"
630
  msgstr ""
631
 
632
- #: top-10.php:754
633
  msgid "Settings"
634
  msgstr "Kökləmələr"
635
 
636
- #: top-10.php:767
637
  msgid "Donate"
638
  msgstr "İanə etmək"
639
 
 
 
 
640
  #~ msgid "Tables cleaned of duplicate rows"
641
  #~ msgstr "Silinmiş dublikat sirası cədvəli"
642
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:27-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "10 populyar yazı statisticasını pozmaq"
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Populyar postların miqdarının nümayişi:"
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
66
 
67
+ #: admin.inc.php:159
68
  msgid "Exclude Pages?"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:160
72
  msgid ""
73
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
74
  "continue to be counted."
76
  "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı "
77
  "saymaqda davam etdiriləcək."
78
 
79
+ #: admin.inc.php:163
80
  msgid "Exclude Categories: "
81
  msgstr ""
82
 
83
+ #: admin.inc.php:178
84
  msgid ""
85
  "Comma separated list of category slugs. The field above has an autocomplete "
86
  "so simply start typing in the starting letters and it will prompt you with "
87
  "options"
88
  msgstr ""
89
 
90
+ #: admin.inc.php:183
91
  #, fuzzy
92
  msgid "Display number of views on:"
93
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
94
 
95
+ #: admin.inc.php:185
96
  msgid "Posts"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:186
100
  #, fuzzy
101
  msgid "Pages"
102
  msgstr "Səhifə"
103
 
104
+ #: admin.inc.php:189
105
  msgid "Always display latest post count"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:191
109
  msgid ""
110
  "This option uses JavaScript and will increase your page load time. Turn this "
111
  "off if you are not using caching plugins or are OK with displaying older "
112
  "cached counts"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:194
116
  msgid "Always display latest post count in the daily lists"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:196
120
  #, fuzzy
121
  msgid "This option uses JavaScript and will increase your page load time"
122
  msgstr ""
123
  "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
124
  "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
125
 
126
+ #: admin.inc.php:199
127
  msgid "Track visits of authors on their own posts?"
128
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
129
 
130
+ #: admin.inc.php:202
131
  #, fuzzy
132
  msgid "Track visits of admins?"
133
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
134
 
135
+ #: admin.inc.php:205
136
  msgid "Display page views on Posts > All Posts in Admin"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:208
140
  msgid "Link to Top 10 plugin page"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:210
144
  #, fuzzy
145
  msgid ""
146
  "A link to the plugin is added as an extra list item to the list of popular "
149
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
150
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
151
 
152
+ #: admin.inc.php:217
153
  #, fuzzy
154
  msgid "Output Options"
155
  msgstr "Plaginin kökləmələri:"
156
 
157
+ #: admin.inc.php:220
158
  msgid "Format to display the count in: "
159
  msgstr "Miqdarı göstərən format:"
160
 
161
+ #: admin.inc.php:222
162
  #, fuzzy
163
  msgid ""
164
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
170
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
171
  "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
172
 
173
+ #: admin.inc.php:225
174
  msgid "Title of popular posts: "
175
  msgstr "Populyar yazılarının başlığı:"
176
 
177
+ #: admin.inc.php:228
178
  msgid "Title of daily popular posts: "
179
  msgstr "Gündəlik populyual yazılışların başlığı:"
180
 
181
+ #: admin.inc.php:231
182
  msgid "When there are no posts, what should be shown?"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:235
186
  msgid "Blank Output"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:239
190
  msgid "Display:"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:243
194
  msgid "Show post excerpt in list?"
195
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
196
 
197
+ #: admin.inc.php:246
198
  msgid "Length of excerpt (in words): "
199
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
200
 
201
+ #: admin.inc.php:249
202
  msgid "Display number of page views in popular lists?"
203
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
204
 
205
+ #: admin.inc.php:252
206
  msgid "Customize the output:"
207
  msgstr "Suiyahı formasının kökləmələri:"
208
 
209
+ #: admin.inc.php:254
210
  msgid "HTML to display before the list of posts: "
211
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
212
 
213
+ #: admin.inc.php:257
214
  msgid "HTML to display before each list item: "
215
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
216
 
217
+ #: admin.inc.php:260
218
  msgid "HTML to display after each list item: "
219
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
220
 
221
+ #: admin.inc.php:263
222
  msgid "HTML to display after the list of posts: "
223
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
224
 
225
+ #: admin.inc.php:266
226
  msgid "Post thumbnail options:"
227
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
228
 
229
+ #: admin.inc.php:268
230
  msgid "Location of post thumbnail:"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:272
234
  #, fuzzy
235
  msgid "Display thumbnails inline with posts, before title"
236
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
237
 
238
+ #: admin.inc.php:276
239
  #, fuzzy
240
  msgid "Display thumbnails inline with posts, after title"
241
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
242
 
243
+ #: admin.inc.php:280
244
  msgid "Display only thumbnails, no text"
245
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
246
 
247
+ #: admin.inc.php:284
248
  msgid "Do not display thumbnails, only text."
249
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
250
 
251
+ #: admin.inc.php:288
252
  msgid "Maximum width of the thumbnail: "
253
  msgstr ""
254
 
255
+ #: admin.inc.php:291
256
  msgid "Maximum height of the thumbnail: "
257
  msgstr ""
258
 
259
+ #: admin.inc.php:294
260
  msgid "Use timthumb to generate thumbnails? "
261
  msgstr ""
262
 
263
+ #: admin.inc.php:295
264
  msgid ""
265
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
266
  "\">timthumb</a> will be used to generate thumbnails"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:297
270
  #, fuzzy
271
  msgid "Post thumbnail meta field name: "
272
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
273
 
274
+ #: admin.inc.php:298
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:300
281
  #, fuzzy
282
  msgid ""
283
  "If the postmeta is not set, then should the plugin extract the first image "
287
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
288
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
289
 
290
+ #: admin.inc.php:301
291
  #, fuzzy
292
  msgid ""
293
  "This could slow down the loading of your page if the first image in the "
297
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
298
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
299
 
300
+ #: admin.inc.php:303
301
  msgid "Use default thumbnail? "
302
  msgstr ""
303
 
304
+ #: admin.inc.php:304
305
  msgid ""
306
  "If checked, when no thumbnail is found, show a default one from the URL "
307
  "below. If not checked and no thumbnail is found, no image will be shown."
308
  msgstr ""
309
 
310
+ #: admin.inc.php:306
311
  msgid "Default thumbnail: "
312
  msgstr ""
313
 
314
+ #: admin.inc.php:307
315
  #, fuzzy
316
  msgid ""
317
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
322
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
323
  "onda standard şəkil çıxarılacaq:"
324
 
325
+ #: admin.inc.php:313
326
  msgid "Custom Styles"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:316
330
  msgid "Custom CSS to add to header:"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:319
334
  msgid ""
335
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
336
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
337
  "available CSS classes to style."
338
  msgstr ""
339
 
340
+ #: admin.inc.php:326
341
  msgid "Maintenance"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:330
345
  msgid ""
346
  "Over time the Daily Top 10 database grows in size, which reduces the "
347
  "performance of the plugin. Cleaning the database at regular intervals could "
348
  "improve performance, especially on high traffic blogs."
349
  msgstr ""
350
 
351
+ #: admin.inc.php:331
352
  msgid ""
353
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
354
  "everytime the job is rescheduled (i.e. you change the settings below). This "
355
  "causes the daily posts table to reset."
356
  msgstr ""
357
 
358
+ #: admin.inc.php:334
359
  msgid "Enable scheduled maintenance of daily tables:"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:338
363
  msgid "Time to run maintenance"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:341
367
  msgid "How often should the maintenance be run:"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:345
371
  msgid "Daily"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:349
375
  msgid "Weekly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:353
379
  msgid "Fortnightly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:357
383
  msgid "Monthly"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:366
387
  msgid "The cron job has been scheduled. Maintenance will run "
388
  msgstr ""
389
 
390
+ #: admin.inc.php:371
391
  msgid "The cron job is missing. Please resave this page to add the job"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:376
395
  msgid "Maintenance is turned off"
396
  msgstr ""
397
 
398
+ #: admin.inc.php:384
399
  #, fuzzy
400
  msgid "Save Options"
401
  msgstr "Opsiyalar:"
402
 
403
+ #: admin.inc.php:385
404
  #, fuzzy
405
  msgid "Default Options"
406
  msgstr "Plaginin kökləmələri:"
407
 
408
+ #: admin.inc.php:385
409
  msgid "Do you want to set options to Default?"
410
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
411
 
412
+ #: admin.inc.php:389
413
  msgid "Reset count"
414
  msgstr "Statistikanı sbros etmək"
415
 
416
+ #: admin.inc.php:392
417
  msgid ""
418
  "This cannot be reversed. Make sure that your database has been backed up "
419
  "before proceeding"
421
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
422
  "ki, Sizin məlumat bazasının kopiyası var!"
423
 
424
+ #: admin.inc.php:395
425
  #, fuzzy
426
  msgid "Reset Popular Posts"
427
  msgstr "Populyar yazılar"
428
 
429
+ #: admin.inc.php:395
430
  msgid "Are you sure you want to reset the popular posts?"
431
  msgstr ""
432
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
433
 
434
+ #: admin.inc.php:396
435
  #, fuzzy
436
  msgid "Reset Daily Popular Posts"
437
  msgstr "Gündəlik Populyar Yazılar"
438
 
439
+ #: admin.inc.php:396
440
  msgid "Are you sure you want to reset the daily popular posts?"
441
  msgstr ""
442
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
443
  "istəyirsiniz?"
444
 
445
+ #: admin.inc.php:397
446
  msgid "Clear duplicates"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:397
450
  msgid "This will delete the duplicate entries in the tables. Proceed?"
451
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
452
 
453
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
454
  msgid "Popular Posts"
455
  msgstr "Populyar yazılar"
456
 
457
+ #: admin.inc.php:441 admin.inc.php:528
458
  msgid "Daily Popular Posts"
459
  msgstr "Gündəlik Populyar Yazılar"
460
 
461
+ #: admin.inc.php:469
462
  msgid "Support the development"
463
  msgstr "İnkişafı dəstək vermək"
464
 
465
+ #: admin.inc.php:477
466
  msgid "Enter amount in USD: "
467
  msgstr "Miiqdarı USD ilə daxil et:"
468
 
469
+ #: admin.inc.php:481
470
  msgid "Send your donation to the author of"
471
  msgstr "Müəlifə ianə göndərin "
472
 
473
+ #: admin.inc.php:487
474
  msgid "Follow us"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:493
478
  #, fuzzy
479
  msgid "Quick Links"
480
  msgstr "Faydalı istenadlar"
481
 
482
+ #: admin.inc.php:495
483
  #, fuzzy
484
  msgid "Top 10 plugin page"
485
  msgstr "plaginin səhifəsi"
486
 
487
+ #: admin.inc.php:496
488
  msgid "Other plugins"
489
  msgstr "Digər plaginlər"
490
 
491
+ #: admin.inc.php:497
492
  msgid "Ajay's blog"
493
  msgstr "Ajay-in blogu"
494
 
495
+ #: admin.inc.php:498 top-10.php:899
496
  msgid "Support"
497
  msgstr "Dəstək"
498
 
499
+ #: admin.inc.php:502
 
 
 
 
500
  msgid "Recent developments"
501
  msgstr "Son inkişaflar"
502
 
503
+ #: admin.inc.php:519 admin.inc.php:522
504
  #, fuzzy
505
  msgid "Top 10 Settings"
506
  msgstr "Kökləmələr"
507
 
508
+ #: admin.inc.php:519
509
  msgid "Top 10"
510
  msgstr "Top 10 yazılar"
511
 
512
+ #: admin.inc.php:525
513
  #, fuzzy
514
  msgid "Overall Popular Posts"
515
  msgstr "Bütün Populyar Yazılara Baxmaq"
516
 
517
+ #: admin.inc.php:667
518
  msgid "Results"
519
  msgstr "Nəticələr"
520
 
521
+ #: admin.inc.php:669 admin.inc.php:675
522
  msgid "of"
523
  msgstr "-dən "
524
 
525
+ #: admin.inc.php:673
526
  msgid "Page"
527
  msgstr "Səhifə"
528
 
529
+ #: admin.inc.php:687
530
  msgid "View Daily Popular Posts"
531
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
532
 
533
+ #: admin.inc.php:690 admin.inc.php:703
534
  msgid "Results per-page:"
535
  msgstr "Səhifə üzrə nəticələr:"
536
 
537
+ #: admin.inc.php:700
538
  msgid "View Overall Popular Posts"
539
  msgstr "Bütün Populyar Yazılara Baxmaq"
540
 
541
+ #: admin.inc.php:729
542
  msgid "Previous"
543
  msgstr "Əvvəlki"
544
 
545
+ #: admin.inc.php:747
546
  msgid "Next"
547
  msgstr "Sonrakı"
548
 
549
+ #: admin.inc.php:788
550
  msgid "Daily Popular"
551
  msgstr "Gündəlik Populyar"
552
 
553
+ #: admin.inc.php:804
554
  msgid "Total / Today's Views"
555
  msgstr "Ümümi/ Bu günkü baxış"
556
 
557
+ #: top-10.php:382
558
  msgid "Display the posts popular this week"
559
  msgstr ""
560
 
561
+ #: top-10.php:396
562
  msgid "Title"
563
  msgstr ""
564
 
565
+ #: top-10.php:401
566
  msgid "No. of posts"
567
  msgstr ""
568
 
569
+ #: top-10.php:406
570
  msgid "Overall"
571
  msgstr ""
572
 
573
+ #: top-10.php:407
574
  msgid "Custom time period (Enter below)"
575
  msgstr ""
576
 
577
+ #: top-10.php:412
578
  msgid "Range in number of days (applies only to custom option above)"
579
  msgstr ""
580
 
581
+ #: top-10.php:416
582
  #, fuzzy
583
  msgid "Thumbnail options"
584
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
585
 
586
+ #: top-10.php:418
587
  #, fuzzy
588
  msgid "Thumbnails inline, before title"
589
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
590
 
591
+ #: top-10.php:419
592
  #, fuzzy
593
  msgid "Thumbnails inline, after title"
594
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
595
 
596
+ #: top-10.php:420
597
  #, fuzzy
598
  msgid "Only thumbnails, no text"
599
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
600
 
601
+ #: top-10.php:421
602
  #, fuzzy
603
  msgid "No thumbnails, only text."
604
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
605
 
606
+ #: top-10.php:426
607
  #, fuzzy
608
  msgid " Show excerpt?"
609
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
610
 
611
+ #: top-10.php:501
612
  msgid "<h3>Popular Posts</h3>"
613
  msgstr "<h3>Populyar yazılar</h3>"
614
 
615
+ #: top-10.php:502
616
  msgid "<h3>Daily Popular</h3>"
617
  msgstr "<h3>Gündəlik Populyar</h3>"
618
 
619
+ #: top-10.php:503
620
  #, fuzzy
621
  msgid "No top posts yet"
622
  msgstr "10 populyar yazı statisticasını pozmaq"
623
 
624
+ #: top-10.php:865
625
  msgid "Once Weekly"
626
  msgstr ""
627
 
628
+ #: top-10.php:866
629
  msgid "Once Fortnightly"
630
  msgstr ""
631
 
632
+ #: top-10.php:867
633
  msgid "Once Monthly"
634
  msgstr ""
635
 
636
+ #: top-10.php:887
637
  msgid "Settings"
638
  msgstr "Kökləmələr"
639
 
640
+ #: top-10.php:900
641
  msgid "Donate"
642
  msgstr "İanə etmək"
643
 
644
+ #~ msgid "Follow @ajaydsouza on Twitter"
645
+ #~ msgstr "Twitter-də @ajaydsouza ardınca get "
646
+
647
  #~ msgid "Tables cleaned of duplicate rows"
648
  #~ msgstr "Silinmiş dublikat sirası cədvəli"
649
 
languages/tptn-be_BY.mo CHANGED
Binary file
languages/tptn-be_BY.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
@@ -15,53 +15,61 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,71 +77,71 @@ msgstr ""
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,16 +150,16 @@ msgstr ""
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,457 +171,453 @@ msgstr ""
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
  #, fuzzy
382
  msgid "Save Options"
383
  msgstr "Налады ўбудовы:"
384
 
385
- #: admin.inc.php:363
386
  #, fuzzy
387
  msgid "Default Options"
388
  msgstr "Налады ўбудовы:"
389
 
390
- #: admin.inc.php:363
391
  msgid "Do you want to set options to Default?"
392
  msgstr "Скінуць налады ўбудовы?"
393
 
394
- #: admin.inc.php:367
395
  msgid "Reset count"
396
  msgstr ""
397
 
398
- #: admin.inc.php:370
399
  msgid ""
400
  "This cannot be reversed. Make sure that your database has been backed up "
401
  "before proceeding"
402
  msgstr ""
403
 
404
- #: admin.inc.php:373
405
  #, fuzzy
406
  msgid "Reset Popular Posts"
407
  msgstr "Папулярныя запісы"
408
 
409
- #: admin.inc.php:373
410
  msgid "Are you sure you want to reset the popular posts?"
411
  msgstr ""
412
 
413
- #: admin.inc.php:374
414
  #, fuzzy
415
  msgid "Reset Daily Popular Posts"
416
  msgstr "Папулярныя сёння запісы"
417
 
418
- #: admin.inc.php:374
419
  msgid "Are you sure you want to reset the daily popular posts?"
420
  msgstr ""
421
 
422
- #: admin.inc.php:375
423
  msgid "Clear duplicates"
424
  msgstr ""
425
 
426
- #: admin.inc.php:375
427
  msgid "This will delete the duplicate entries in the tables. Proceed?"
428
  msgstr ""
429
 
430
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
538
  msgid "Display the posts popular this week"
539
  msgstr ""
540
 
541
- #: top-10.php:342
542
  msgid "Title"
543
  msgstr ""
544
 
545
- #: top-10.php:347
546
  msgid "No. of posts"
547
  msgstr ""
548
 
549
- #: top-10.php:352
550
  msgid "Overall"
551
  msgstr ""
552
 
553
- #: top-10.php:353
554
  msgid "Custom time period (Enter below)"
555
  msgstr ""
556
 
557
- #: top-10.php:358
558
  msgid "Range in number of days (applies only to custom option above)"
559
  msgstr ""
560
 
561
- #: top-10.php:362
562
  msgid "Thumbnail options"
563
  msgstr ""
564
 
565
- #: top-10.php:364
566
  #, fuzzy
567
  msgid "Thumbnails inline, before title"
568
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
569
 
570
- #: top-10.php:365
571
  #, fuzzy
572
  msgid "Thumbnails inline, after title"
573
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
574
 
575
- #: top-10.php:366
576
  msgid "Only thumbnails, no text"
577
  msgstr ""
578
 
579
- #: top-10.php:367
580
  msgid "No thumbnails, only text."
581
  msgstr ""
582
 
583
- #: top-10.php:372
584
  msgid " Show excerpt?"
585
  msgstr ""
586
 
587
- #: top-10.php:441
588
  msgid "<h3>Popular Posts</h3>"
589
  msgstr "<h3>Папулярныя запісы</h3>"
590
 
591
- #: top-10.php:442
592
  msgid "<h3>Daily Popular</h3>"
593
  msgstr "<h3>Папулярныя сёння запісы</h3>"
594
 
595
- #: top-10.php:443
596
  #, fuzzy
597
  msgid "No top posts yet"
598
  msgstr "Загаловак блока Папулярных запісаў:"
599
 
600
- #: top-10.php:731
601
  msgid "Once Weekly"
602
  msgstr ""
603
 
604
- #: top-10.php:732
605
  msgid "Once Fortnightly"
606
  msgstr ""
607
 
608
- #: top-10.php:733
609
  msgid "Once Monthly"
610
  msgstr ""
611
 
612
- #: top-10.php:754
613
  msgid "Settings"
614
  msgstr ""
615
 
616
- #: top-10.php:767
617
  msgid "Donate"
618
  msgstr ""
619
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Налады захаваны."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Налады скінуты."
33
 
34
+ #: admin.inc.php:103
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Загаловак блока Папулярных запісаў:"
38
 
39
+ #: admin.inc.php:109
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Загаловак блока Папулярных сёння запісаў:"
43
 
44
+ #: admin.inc.php:116
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:137
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:141
53
+ msgid "Enable Overall stats"
54
+ msgstr ""
55
+
56
+ #: admin.inc.php:146
57
+ msgid "Enable Daily stats"
58
+ msgstr ""
59
+
60
+ #: admin.inc.php:151
61
  msgid "Number of popular posts to display: "
62
  msgstr "Колькасць Папулярных запісаў у спісе:"
63
 
64
+ #: admin.inc.php:155
65
  msgid "Daily Popular should contain views of how many days? "
66
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
67
 
68
+ #: admin.inc.php:159
69
  msgid "Exclude Pages?"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для "
78
  "старонак будзе падлічвацца."
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr ""
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "Старонка"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
124
  "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
125
  "і гэта можа павялічыць час загрузкі старонак"
126
 
127
+ #: admin.inc.php:199
128
  msgid "Track visits of authors on their own posts?"
129
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
130
 
131
+ #: admin.inc.php:202
132
  #, fuzzy
133
  msgid "Track visits of admins?"
134
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
135
 
136
+ #: admin.inc.php:205
137
  msgid "Display page views on Posts > All Posts in Admin"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:208
141
  msgid "Link to Top 10 plugin page"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:210
145
  #, fuzzy
146
  msgid ""
147
  "A link to the plugin is added as an extra list item to the list of popular "
150
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
151
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
152
 
153
+ #: admin.inc.php:217
154
  #, fuzzy
155
  msgid "Output Options"
156
  msgstr "Налады ўбудовы:"
157
 
158
+ #: admin.inc.php:220
159
  msgid "Format to display the count in: "
160
  msgstr "Фармат адлюстравання колькасці праглядаў:"
161
 
162
+ #: admin.inc.php:222
163
  #, fuzzy
164
  msgid ""
165
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
171
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
172
  "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
173
 
174
+ #: admin.inc.php:225
175
  msgid "Title of popular posts: "
176
  msgstr "Загаловак блока Папулярных запісаў:"
177
 
178
+ #: admin.inc.php:228
179
  msgid "Title of daily popular posts: "
180
  msgstr "Загаловак блока Папулярных сёння запісаў:"
181
 
182
+ #: admin.inc.php:231
183
  msgid "When there are no posts, what should be shown?"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:235
187
  msgid "Blank Output"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:239
191
  msgid "Display:"
192
  msgstr ""
193
 
194
+ #: admin.inc.php:243
195
  msgid "Show post excerpt in list?"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:246
199
  msgid "Length of excerpt (in words): "
200
  msgstr ""
201
 
202
+ #: admin.inc.php:249
203
  msgid "Display number of page views in popular lists?"
204
  msgstr ""
205
  "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
206
 
207
+ #: admin.inc.php:252
208
  msgid "Customize the output:"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:254
212
  msgid "HTML to display before the list of posts: "
213
  msgstr ""
214
 
215
+ #: admin.inc.php:257
216
  msgid "HTML to display before each list item: "
217
  msgstr ""
218
 
219
+ #: admin.inc.php:260
220
  #, fuzzy
221
  msgid "HTML to display after each list item: "
222
  msgstr "Фармат адлюстравання колькасці праглядаў:"
223
 
224
+ #: admin.inc.php:263
225
  msgid "HTML to display after the list of posts: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:266
229
  msgid "Post thumbnail options:"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:268
233
  msgid "Location of post thumbnail:"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:272
237
  #, fuzzy
238
  msgid "Display thumbnails inline with posts, before title"
239
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
240
 
241
+ #: admin.inc.php:276
242
  #, fuzzy
243
  msgid "Display thumbnails inline with posts, after title"
244
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
245
 
246
+ #: admin.inc.php:280
247
  msgid "Display only thumbnails, no text"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:284
251
  msgid "Do not display thumbnails, only text."
252
  msgstr ""
253
 
254
+ #: admin.inc.php:288
255
  msgid "Maximum width of the thumbnail: "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:291
259
  msgid "Maximum height of the thumbnail: "
260
  msgstr ""
261
 
262
+ #: admin.inc.php:294
263
  msgid "Use timthumb to generate thumbnails? "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:295
267
  msgid ""
268
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
269
  "\">timthumb</a> will be used to generate thumbnails"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:297
273
  msgid "Post thumbnail meta field name: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:298
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:300
283
  msgid ""
284
  "If the postmeta is not set, then should the plugin extract the first image "
285
  "from the post?"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:301
289
  msgid ""
290
  "This could slow down the loading of your page if the first image in the "
291
  "related posts is large in file-size"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:303
295
  msgid "Use default thumbnail? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:304
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."
302
  msgstr ""
303
 
304
+ #: admin.inc.php:306
305
  msgid "Default thumbnail: "
306
  msgstr ""
307
 
308
+ #: admin.inc.php:307
309
  msgid ""
310
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
311
  "then it will check the meta field. If this is not available, then it will "
312
  "show the default image as specified above"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:313
316
  msgid "Custom Styles"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:316
320
  msgid "Custom CSS to add to header:"
321
  msgstr ""
322
 
323
+ #: admin.inc.php:319
324
  msgid ""
325
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
326
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
327
  "available CSS classes to style."
328
  msgstr ""
329
 
330
+ #: admin.inc.php:326
331
  msgid "Maintenance"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:330
335
  msgid ""
336
  "Over time the Daily Top 10 database grows in size, which reduces the "
337
  "performance of the plugin. Cleaning the database at regular intervals could "
338
  "improve performance, especially on high traffic blogs."
339
  msgstr ""
340
 
341
+ #: admin.inc.php:331
342
  msgid ""
343
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
344
  "everytime the job is rescheduled (i.e. you change the settings below). This "
345
  "causes the daily posts table to reset."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:334
349
  msgid "Enable scheduled maintenance of daily tables:"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:338
353
  msgid "Time to run maintenance"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:341
357
  msgid "How often should the maintenance be run:"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:345
361
  msgid "Daily"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:349
365
  msgid "Weekly"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:353
369
  msgid "Fortnightly"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:357
373
  msgid "Monthly"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:366
377
  msgid "The cron job has been scheduled. Maintenance will run "
378
  msgstr ""
379
 
380
+ #: admin.inc.php:371
381
  msgid "The cron job is missing. Please resave this page to add the job"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:376
385
  msgid "Maintenance is turned off"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:384
389
  #, fuzzy
390
  msgid "Save Options"
391
  msgstr "Налады ўбудовы:"
392
 
393
+ #: admin.inc.php:385
394
  #, fuzzy
395
  msgid "Default Options"
396
  msgstr "Налады ўбудовы:"
397
 
398
+ #: admin.inc.php:385
399
  msgid "Do you want to set options to Default?"
400
  msgstr "Скінуць налады ўбудовы?"
401
 
402
+ #: admin.inc.php:389
403
  msgid "Reset count"
404
  msgstr ""
405
 
406
+ #: admin.inc.php:392
407
  msgid ""
408
  "This cannot be reversed. Make sure that your database has been backed up "
409
  "before proceeding"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:395
413
  #, fuzzy
414
  msgid "Reset Popular Posts"
415
  msgstr "Папулярныя запісы"
416
 
417
+ #: admin.inc.php:395
418
  msgid "Are you sure you want to reset the popular posts?"
419
  msgstr ""
420
 
421
+ #: admin.inc.php:396
422
  #, fuzzy
423
  msgid "Reset Daily Popular Posts"
424
  msgstr "Папулярныя сёння запісы"
425
 
426
+ #: admin.inc.php:396
427
  msgid "Are you sure you want to reset the daily popular posts?"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:397
431
  msgid "Clear duplicates"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:397
435
  msgid "This will delete the duplicate entries in the tables. Proceed?"
436
  msgstr ""
437
 
438
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
439
  msgid "Popular Posts"
440
  msgstr "Папулярныя запісы"
441
 
442
+ #: admin.inc.php:441 admin.inc.php:528
443
  msgid "Daily Popular Posts"
444
  msgstr "Папулярныя сёння запісы"
445
 
446
+ #: admin.inc.php:469
447
  #, fuzzy
448
  msgid "Support the development"
449
  msgstr "Падтрымаеце стваральніка ўбудовы"
450
 
451
+ #: admin.inc.php:477
452
  msgid "Enter amount in USD: "
453
  msgstr ""
454
 
455
+ #: admin.inc.php:481
456
  msgid "Send your donation to the author of"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:487
460
  msgid "Follow us"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:493
464
  msgid "Quick Links"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:495
468
  msgid "Top 10 plugin page"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:496
472
  msgid "Other plugins"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:497
476
  msgid "Ajay's blog"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:498 top-10.php:899
480
  msgid "Support"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:502
 
 
 
 
484
  msgid "Recent developments"
485
  msgstr ""
486
 
487
+ #: admin.inc.php:519 admin.inc.php:522
488
  #, fuzzy
489
  msgid "Top 10 Settings"
490
  msgstr "Топ 10 запісаў"
491
 
492
+ #: admin.inc.php:519
493
  msgid "Top 10"
494
  msgstr "Топ 10 запісаў"
495
 
496
+ #: admin.inc.php:525
497
  #, fuzzy
498
  msgid "Overall Popular Posts"
499
  msgstr "Паглядзець усе Папулярныя запісы"
500
 
501
+ #: admin.inc.php:667
502
  msgid "Results"
503
  msgstr "Вынікі"
504
 
505
+ #: admin.inc.php:669 admin.inc.php:675
506
  msgid "of"
507
  msgstr "з"
508
 
509
+ #: admin.inc.php:673
510
  msgid "Page"
511
  msgstr "Старонка"
512
 
513
+ #: admin.inc.php:687
514
  msgid "View Daily Popular Posts"
515
  msgstr "Паглядзець усе Папулярныя сёння запісы"
516
 
517
+ #: admin.inc.php:690 admin.inc.php:703
518
  msgid "Results per-page:"
519
  msgstr "Вынікаў на старонку:"
520
 
521
+ #: admin.inc.php:700
522
  msgid "View Overall Popular Posts"
523
  msgstr "Паглядзець усе Папулярныя запісы"
524
 
525
+ #: admin.inc.php:729
526
  msgid "Previous"
527
  msgstr "Папярэдняя старонка"
528
 
529
+ #: admin.inc.php:747
530
  msgid "Next"
531
  msgstr "Наступная старонка"
532
 
533
+ #: admin.inc.php:788
534
  msgid "Daily Popular"
535
  msgstr "Папулярныя сёння запісы"
536
 
537
+ #: admin.inc.php:804
538
  msgid "Total / Today's Views"
539
  msgstr "Усяго / Сёння праглядаў"
540
 
541
+ #: top-10.php:382
542
  msgid "Display the posts popular this week"
543
  msgstr ""
544
 
545
+ #: top-10.php:396
546
  msgid "Title"
547
  msgstr ""
548
 
549
+ #: top-10.php:401
550
  msgid "No. of posts"
551
  msgstr ""
552
 
553
+ #: top-10.php:406
554
  msgid "Overall"
555
  msgstr ""
556
 
557
+ #: top-10.php:407
558
  msgid "Custom time period (Enter below)"
559
  msgstr ""
560
 
561
+ #: top-10.php:412
562
  msgid "Range in number of days (applies only to custom option above)"
563
  msgstr ""
564
 
565
+ #: top-10.php:416
566
  msgid "Thumbnail options"
567
  msgstr ""
568
 
569
+ #: top-10.php:418
570
  #, fuzzy
571
  msgid "Thumbnails inline, before title"
572
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
573
 
574
+ #: top-10.php:419
575
  #, fuzzy
576
  msgid "Thumbnails inline, after title"
577
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
578
 
579
+ #: top-10.php:420
580
  msgid "Only thumbnails, no text"
581
  msgstr ""
582
 
583
+ #: top-10.php:421
584
  msgid "No thumbnails, only text."
585
  msgstr ""
586
 
587
+ #: top-10.php:426
588
  msgid " Show excerpt?"
589
  msgstr ""
590
 
591
+ #: top-10.php:501
592
  msgid "<h3>Popular Posts</h3>"
593
  msgstr "<h3>Папулярныя запісы</h3>"
594
 
595
+ #: top-10.php:502
596
  msgid "<h3>Daily Popular</h3>"
597
  msgstr "<h3>Папулярныя сёння запісы</h3>"
598
 
599
+ #: top-10.php:503
600
  #, fuzzy
601
  msgid "No top posts yet"
602
  msgstr "Загаловак блока Папулярных запісаў:"
603
 
604
+ #: top-10.php:865
605
  msgid "Once Weekly"
606
  msgstr ""
607
 
608
+ #: top-10.php:866
609
  msgid "Once Fortnightly"
610
  msgstr ""
611
 
612
+ #: top-10.php:867
613
  msgid "Once Monthly"
614
  msgstr ""
615
 
616
+ #: top-10.php:887
617
  msgid "Settings"
618
  msgstr ""
619
 
620
+ #: top-10.php:900
621
  msgid "Donate"
622
  msgstr ""
623
 
languages/tptn-en_US.mo CHANGED
Binary file
languages/tptn-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:23-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,129 +15,137 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,442 +153,438 @@ msgid ""
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 "Save Options"
360
  msgstr ""
361
 
362
- #: admin.inc.php:363
363
  msgid "Default Options"
364
  msgstr ""
365
 
366
- #: admin.inc.php:363
367
  msgid "Do you want to set options to Default?"
368
  msgstr ""
369
 
370
- #: admin.inc.php:367
371
  msgid "Reset count"
372
  msgstr ""
373
 
374
- #: admin.inc.php:370
375
  msgid ""
376
  "This cannot be reversed. Make sure that your database has been backed up "
377
  "before proceeding"
378
  msgstr ""
379
 
380
- #: admin.inc.php:373
381
  msgid "Reset Popular Posts"
382
  msgstr ""
383
 
384
- #: admin.inc.php:373
385
  msgid "Are you sure you want to reset the popular posts?"
386
  msgstr ""
387
 
388
- #: admin.inc.php:374
389
  msgid "Reset Daily Popular Posts"
390
  msgstr ""
391
 
392
- #: admin.inc.php:374
393
  msgid "Are you sure you want to reset the daily popular posts?"
394
  msgstr ""
395
 
396
- #: admin.inc.php:375
397
  msgid "Clear duplicates"
398
  msgstr ""
399
 
400
- #: admin.inc.php:375
401
  msgid "This will delete the duplicate entries in the tables. Proceed?"
402
  msgstr ""
403
 
404
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
509
  msgid "Display the posts popular this week"
510
  msgstr ""
511
 
512
- #: top-10.php:342
513
  msgid "Title"
514
  msgstr ""
515
 
516
- #: top-10.php:347
517
  msgid "No. of posts"
518
  msgstr ""
519
 
520
- #: top-10.php:352
521
  msgid "Overall"
522
  msgstr ""
523
 
524
- #: top-10.php:353
525
  msgid "Custom time period (Enter below)"
526
  msgstr ""
527
 
528
- #: top-10.php:358
529
  msgid "Range in number of days (applies only to custom option above)"
530
  msgstr ""
531
 
532
- #: top-10.php:362
533
  msgid "Thumbnail options"
534
  msgstr ""
535
 
536
- #: top-10.php:364
537
  msgid "Thumbnails inline, before title"
538
  msgstr ""
539
 
540
- #: top-10.php:365
541
  msgid "Thumbnails inline, after title"
542
  msgstr ""
543
 
544
- #: top-10.php:366
545
  msgid "Only thumbnails, no text"
546
  msgstr ""
547
 
548
- #: top-10.php:367
549
  msgid "No thumbnails, only text."
550
  msgstr ""
551
 
552
- #: top-10.php:372
553
  msgid " Show excerpt?"
554
  msgstr ""
555
 
556
- #: top-10.php:441
557
  msgid "<h3>Popular Posts</h3>"
558
  msgstr ""
559
 
560
- #: top-10.php:442
561
  msgid "<h3>Daily Popular</h3>"
562
  msgstr ""
563
 
564
- #: top-10.php:443
565
  msgid "No top posts yet"
566
  msgstr ""
567
 
568
- #: top-10.php:731
569
  msgid "Once Weekly"
570
  msgstr ""
571
 
572
- #: top-10.php:732
573
  msgid "Once Fortnightly"
574
  msgstr ""
575
 
576
- #: top-10.php:733
577
  msgid "Once Monthly"
578
  msgstr ""
579
 
580
- #: top-10.php:754
581
  msgid "Settings"
582
  msgstr ""
583
 
584
- #: top-10.php:767
585
  msgid "Donate"
586
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:27-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr ""
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
 
66
+ #: admin.inc.php:159
67
  msgid "Exclude Pages?"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:160
71
  msgid ""
72
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
73
  "continue to be counted."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:163
77
  msgid "Exclude Categories: "
78
  msgstr ""
79
 
80
+ #: admin.inc.php:178
81
  msgid ""
82
  "Comma separated list of category slugs. The field above has an autocomplete "
83
  "so simply start typing in the starting letters and it will prompt you with "
84
  "options"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:183
88
  msgid "Display number of views on:"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:185
92
  msgid "Posts"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:186
96
  msgid "Pages"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:189
100
  msgid "Always display latest post count"
101
  msgstr ""
102
 
103
+ #: admin.inc.php:191
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:194
111
  msgid "Always display latest post count in the daily lists"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:196
115
  msgid "This option uses JavaScript and will increase your page load time"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:199
119
  msgid "Track visits of authors on their own posts?"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:202
123
  msgid "Track visits of admins?"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:205
127
  msgid "Display page views on Posts > All Posts in Admin"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:208
131
  msgid "Link to Top 10 plugin page"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:210
135
  msgid ""
136
  "A link to the plugin is added as an extra list item to the list of popular "
137
  "posts"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:217
141
  msgid "Output Options"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:220
145
  msgid "Format to display the count in: "
146
  msgstr ""
147
 
148
+ #: admin.inc.php:222
149
  msgid ""
150
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
151
  "%</code> to display the daily count and <code>%overallcount%</code> to "
153
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:225
157
  msgid "Title of popular posts: "
158
  msgstr ""
159
 
160
+ #: admin.inc.php:228
161
  msgid "Title of daily popular posts: "
162
  msgstr ""
163
 
164
+ #: admin.inc.php:231
165
  msgid "When there are no posts, what should be shown?"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:235
169
  msgid "Blank Output"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:239
173
  msgid "Display:"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:243
177
  msgid "Show post excerpt in list?"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:246
181
  msgid "Length of excerpt (in words): "
182
  msgstr ""
183
 
184
+ #: admin.inc.php:249
185
  msgid "Display number of page views in popular lists?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:252
189
  msgid "Customize the output:"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:254
193
  msgid "HTML to display before the list of posts: "
194
  msgstr ""
195
 
196
+ #: admin.inc.php:257
197
  msgid "HTML to display before each list item: "
198
  msgstr ""
199
 
200
+ #: admin.inc.php:260
201
  msgid "HTML to display after each list item: "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:263
205
  msgid "HTML to display after the list of posts: "
206
  msgstr ""
207
 
208
+ #: admin.inc.php:266
209
  msgid "Post thumbnail options:"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:268
213
  msgid "Location of post thumbnail:"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:272
217
  msgid "Display thumbnails inline with posts, before title"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:276
221
  msgid "Display thumbnails inline with posts, after title"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:280
225
  msgid "Display only thumbnails, no text"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:284
229
  msgid "Do not display thumbnails, only text."
230
  msgstr ""
231
 
232
+ #: admin.inc.php:288
233
  msgid "Maximum width of the thumbnail: "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:291
237
  msgid "Maximum height of the thumbnail: "
238
  msgstr ""
239
 
240
+ #: admin.inc.php:294
241
  msgid "Use timthumb to generate thumbnails? "
242
  msgstr ""
243
 
244
+ #: admin.inc.php:295
245
  msgid ""
246
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
247
  "\">timthumb</a> will be used to generate thumbnails"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:297
251
  msgid "Post thumbnail meta field name: "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:298
255
  msgid ""
256
  "The value of this field should contain the image source and is set in the "
257
  "<em>Add New Post</em> screen"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:300
261
  msgid ""
262
  "If the postmeta is not set, then should the plugin extract the first image "
263
  "from the post?"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:301
267
  msgid ""
268
  "This could slow down the loading of your page if the first image in the "
269
  "related posts is large in file-size"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:303
273
  msgid "Use default thumbnail? "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:304
277
  msgid ""
278
  "If checked, when no thumbnail is found, show a default one from the URL "
279
  "below. If not checked and no thumbnail is found, no image will be shown."
280
  msgstr ""
281
 
282
+ #: admin.inc.php:306
283
  msgid "Default thumbnail: "
284
  msgstr ""
285
 
286
+ #: admin.inc.php:307
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:313
294
  msgid "Custom Styles"
295
  msgstr ""
296
 
297
+ #: admin.inc.php:316
298
  msgid "Custom CSS to add to header:"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:319
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:326
309
  msgid "Maintenance"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:330
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:331
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:334
327
  msgid "Enable scheduled maintenance of daily tables:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:338
331
  msgid "Time to run maintenance"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:341
335
  msgid "How often should the maintenance be run:"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:345
339
  msgid "Daily"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:349
343
  msgid "Weekly"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:353
347
  msgid "Fortnightly"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:357
351
  msgid "Monthly"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:366
355
  msgid "The cron job has been scheduled. Maintenance will run "
356
  msgstr ""
357
 
358
+ #: admin.inc.php:371
359
  msgid "The cron job is missing. Please resave this page to add the job"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:376
363
  msgid "Maintenance is turned off"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:384
367
  msgid "Save Options"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:385
371
  msgid "Default Options"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:385
375
  msgid "Do you want to set options to Default?"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:389
379
  msgid "Reset count"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:392
383
  msgid ""
384
  "This cannot be reversed. Make sure that your database has been backed up "
385
  "before proceeding"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:395
389
  msgid "Reset Popular Posts"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:395
393
  msgid "Are you sure you want to reset the popular posts?"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:396
397
  msgid "Reset Daily Popular Posts"
398
  msgstr ""
399
 
400
+ #: admin.inc.php:396
401
  msgid "Are you sure you want to reset the daily popular posts?"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:397
405
  msgid "Clear duplicates"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:397
409
  msgid "This will delete the duplicate entries in the tables. Proceed?"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
413
  msgid "Popular Posts"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:441 admin.inc.php:528
417
  msgid "Daily Popular Posts"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:469
421
  msgid "Support the development"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:477
425
  msgid "Enter amount in USD: "
426
  msgstr ""
427
 
428
+ #: admin.inc.php:481
429
  msgid "Send your donation to the author of"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:487
433
  msgid "Follow us"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:493
437
  msgid "Quick Links"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:495
441
  msgid "Top 10 plugin page"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:496
445
  msgid "Other plugins"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:497
449
  msgid "Ajay's blog"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:498 top-10.php:899
453
  msgid "Support"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:502
 
 
 
 
457
  msgid "Recent developments"
458
  msgstr ""
459
 
460
+ #: admin.inc.php:519 admin.inc.php:522
461
  msgid "Top 10 Settings"
462
  msgstr ""
463
 
464
+ #: admin.inc.php:519
465
  msgid "Top 10"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:525
469
  msgid "Overall Popular Posts"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:667
473
  msgid "Results"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:669 admin.inc.php:675
477
  msgid "of"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:673
481
  msgid "Page"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:687
485
  msgid "View Daily Popular Posts"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:690 admin.inc.php:703
489
  msgid "Results per-page:"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:700
493
  msgid "View Overall Popular Posts"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:729
497
  msgid "Previous"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:747
501
  msgid "Next"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:788
505
  msgid "Daily Popular"
506
  msgstr ""
507
 
508
+ #: admin.inc.php:804
509
  msgid "Total / Today's Views"
510
  msgstr ""
511
 
512
+ #: top-10.php:382
513
  msgid "Display the posts popular this week"
514
  msgstr ""
515
 
516
+ #: top-10.php:396
517
  msgid "Title"
518
  msgstr ""
519
 
520
+ #: top-10.php:401
521
  msgid "No. of posts"
522
  msgstr ""
523
 
524
+ #: top-10.php:406
525
  msgid "Overall"
526
  msgstr ""
527
 
528
+ #: top-10.php:407
529
  msgid "Custom time period (Enter below)"
530
  msgstr ""
531
 
532
+ #: top-10.php:412
533
  msgid "Range in number of days (applies only to custom option above)"
534
  msgstr ""
535
 
536
+ #: top-10.php:416
537
  msgid "Thumbnail options"
538
  msgstr ""
539
 
540
+ #: top-10.php:418
541
  msgid "Thumbnails inline, before title"
542
  msgstr ""
543
 
544
+ #: top-10.php:419
545
  msgid "Thumbnails inline, after title"
546
  msgstr ""
547
 
548
+ #: top-10.php:420
549
  msgid "Only thumbnails, no text"
550
  msgstr ""
551
 
552
+ #: top-10.php:421
553
  msgid "No thumbnails, only text."
554
  msgstr ""
555
 
556
+ #: top-10.php:426
557
  msgid " Show excerpt?"
558
  msgstr ""
559
 
560
+ #: top-10.php:501
561
  msgid "<h3>Popular Posts</h3>"
562
  msgstr ""
563
 
564
+ #: top-10.php:502
565
  msgid "<h3>Daily Popular</h3>"
566
  msgstr ""
567
 
568
+ #: top-10.php:503
569
  msgid "No top posts yet"
570
  msgstr ""
571
 
572
+ #: top-10.php:865
573
  msgid "Once Weekly"
574
  msgstr ""
575
 
576
+ #: top-10.php:866
577
  msgid "Once Fortnightly"
578
  msgstr ""
579
 
580
+ #: top-10.php:867
581
  msgid "Once Monthly"
582
  msgstr ""
583
 
584
+ #: top-10.php:887
585
  msgid "Settings"
586
  msgstr ""
587
 
588
+ #: top-10.php:900
589
  msgid "Donate"
590
  msgstr ""
languages/tptn-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:23-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,129 +15,137 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,442 +153,438 @@ msgid ""
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 "Save Options"
360
  msgstr ""
361
 
362
- #: admin.inc.php:363
363
  msgid "Default Options"
364
  msgstr ""
365
 
366
- #: admin.inc.php:363
367
  msgid "Do you want to set options to Default?"
368
  msgstr ""
369
 
370
- #: admin.inc.php:367
371
  msgid "Reset count"
372
  msgstr ""
373
 
374
- #: admin.inc.php:370
375
  msgid ""
376
  "This cannot be reversed. Make sure that your database has been backed up "
377
  "before proceeding"
378
  msgstr ""
379
 
380
- #: admin.inc.php:373
381
  msgid "Reset Popular Posts"
382
  msgstr ""
383
 
384
- #: admin.inc.php:373
385
  msgid "Are you sure you want to reset the popular posts?"
386
  msgstr ""
387
 
388
- #: admin.inc.php:374
389
  msgid "Reset Daily Popular Posts"
390
  msgstr ""
391
 
392
- #: admin.inc.php:374
393
  msgid "Are you sure you want to reset the daily popular posts?"
394
  msgstr ""
395
 
396
- #: admin.inc.php:375
397
  msgid "Clear duplicates"
398
  msgstr ""
399
 
400
- #: admin.inc.php:375
401
  msgid "This will delete the duplicate entries in the tables. Proceed?"
402
  msgstr ""
403
 
404
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
509
  msgid "Display the posts popular this week"
510
  msgstr ""
511
 
512
- #: top-10.php:342
513
  msgid "Title"
514
  msgstr ""
515
 
516
- #: top-10.php:347
517
  msgid "No. of posts"
518
  msgstr ""
519
 
520
- #: top-10.php:352
521
  msgid "Overall"
522
  msgstr ""
523
 
524
- #: top-10.php:353
525
  msgid "Custom time period (Enter below)"
526
  msgstr ""
527
 
528
- #: top-10.php:358
529
  msgid "Range in number of days (applies only to custom option above)"
530
  msgstr ""
531
 
532
- #: top-10.php:362
533
  msgid "Thumbnail options"
534
  msgstr ""
535
 
536
- #: top-10.php:364
537
  msgid "Thumbnails inline, before title"
538
  msgstr ""
539
 
540
- #: top-10.php:365
541
  msgid "Thumbnails inline, after title"
542
  msgstr ""
543
 
544
- #: top-10.php:366
545
  msgid "Only thumbnails, no text"
546
  msgstr ""
547
 
548
- #: top-10.php:367
549
  msgid "No thumbnails, only text."
550
  msgstr ""
551
 
552
- #: top-10.php:372
553
  msgid " Show excerpt?"
554
  msgstr ""
555
 
556
- #: top-10.php:441
557
  msgid "<h3>Popular Posts</h3>"
558
  msgstr ""
559
 
560
- #: top-10.php:442
561
  msgid "<h3>Daily Popular</h3>"
562
  msgstr ""
563
 
564
- #: top-10.php:443
565
  msgid "No top posts yet"
566
  msgstr ""
567
 
568
- #: top-10.php:731
569
  msgid "Once Weekly"
570
  msgstr ""
571
 
572
- #: top-10.php:732
573
  msgid "Once Fortnightly"
574
  msgstr ""
575
 
576
- #: top-10.php:733
577
  msgid "Once Monthly"
578
  msgstr ""
579
 
580
- #: top-10.php:754
581
  msgid "Settings"
582
  msgstr ""
583
 
584
- #: top-10.php:767
585
  msgid "Donate"
586
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:27-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr ""
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr ""
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr ""
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
 
66
+ #: admin.inc.php:159
67
  msgid "Exclude Pages?"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:160
71
  msgid ""
72
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
73
  "continue to be counted."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:163
77
  msgid "Exclude Categories: "
78
  msgstr ""
79
 
80
+ #: admin.inc.php:178
81
  msgid ""
82
  "Comma separated list of category slugs. The field above has an autocomplete "
83
  "so simply start typing in the starting letters and it will prompt you with "
84
  "options"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:183
88
  msgid "Display number of views on:"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:185
92
  msgid "Posts"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:186
96
  msgid "Pages"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:189
100
  msgid "Always display latest post count"
101
  msgstr ""
102
 
103
+ #: admin.inc.php:191
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:194
111
  msgid "Always display latest post count in the daily lists"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:196
115
  msgid "This option uses JavaScript and will increase your page load time"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:199
119
  msgid "Track visits of authors on their own posts?"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:202
123
  msgid "Track visits of admins?"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:205
127
  msgid "Display page views on Posts > All Posts in Admin"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:208
131
  msgid "Link to Top 10 plugin page"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:210
135
  msgid ""
136
  "A link to the plugin is added as an extra list item to the list of popular "
137
  "posts"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:217
141
  msgid "Output Options"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:220
145
  msgid "Format to display the count in: "
146
  msgstr ""
147
 
148
+ #: admin.inc.php:222
149
  msgid ""
150
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
151
  "%</code> to display the daily count and <code>%overallcount%</code> to "
153
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:225
157
  msgid "Title of popular posts: "
158
  msgstr ""
159
 
160
+ #: admin.inc.php:228
161
  msgid "Title of daily popular posts: "
162
  msgstr ""
163
 
164
+ #: admin.inc.php:231
165
  msgid "When there are no posts, what should be shown?"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:235
169
  msgid "Blank Output"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:239
173
  msgid "Display:"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:243
177
  msgid "Show post excerpt in list?"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:246
181
  msgid "Length of excerpt (in words): "
182
  msgstr ""
183
 
184
+ #: admin.inc.php:249
185
  msgid "Display number of page views in popular lists?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:252
189
  msgid "Customize the output:"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:254
193
  msgid "HTML to display before the list of posts: "
194
  msgstr ""
195
 
196
+ #: admin.inc.php:257
197
  msgid "HTML to display before each list item: "
198
  msgstr ""
199
 
200
+ #: admin.inc.php:260
201
  msgid "HTML to display after each list item: "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:263
205
  msgid "HTML to display after the list of posts: "
206
  msgstr ""
207
 
208
+ #: admin.inc.php:266
209
  msgid "Post thumbnail options:"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:268
213
  msgid "Location of post thumbnail:"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:272
217
  msgid "Display thumbnails inline with posts, before title"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:276
221
  msgid "Display thumbnails inline with posts, after title"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:280
225
  msgid "Display only thumbnails, no text"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:284
229
  msgid "Do not display thumbnails, only text."
230
  msgstr ""
231
 
232
+ #: admin.inc.php:288
233
  msgid "Maximum width of the thumbnail: "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:291
237
  msgid "Maximum height of the thumbnail: "
238
  msgstr ""
239
 
240
+ #: admin.inc.php:294
241
  msgid "Use timthumb to generate thumbnails? "
242
  msgstr ""
243
 
244
+ #: admin.inc.php:295
245
  msgid ""
246
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
247
  "\">timthumb</a> will be used to generate thumbnails"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:297
251
  msgid "Post thumbnail meta field name: "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:298
255
  msgid ""
256
  "The value of this field should contain the image source and is set in the "
257
  "<em>Add New Post</em> screen"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:300
261
  msgid ""
262
  "If the postmeta is not set, then should the plugin extract the first image "
263
  "from the post?"
264
  msgstr ""
265
 
266
+ #: admin.inc.php:301
267
  msgid ""
268
  "This could slow down the loading of your page if the first image in the "
269
  "related posts is large in file-size"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:303
273
  msgid "Use default thumbnail? "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:304
277
  msgid ""
278
  "If checked, when no thumbnail is found, show a default one from the URL "
279
  "below. If not checked and no thumbnail is found, no image will be shown."
280
  msgstr ""
281
 
282
+ #: admin.inc.php:306
283
  msgid "Default thumbnail: "
284
  msgstr ""
285
 
286
+ #: admin.inc.php:307
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:313
294
  msgid "Custom Styles"
295
  msgstr ""
296
 
297
+ #: admin.inc.php:316
298
  msgid "Custom CSS to add to header:"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:319
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:326
309
  msgid "Maintenance"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:330
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:331
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:334
327
  msgid "Enable scheduled maintenance of daily tables:"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:338
331
  msgid "Time to run maintenance"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:341
335
  msgid "How often should the maintenance be run:"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:345
339
  msgid "Daily"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:349
343
  msgid "Weekly"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:353
347
  msgid "Fortnightly"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:357
351
  msgid "Monthly"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:366
355
  msgid "The cron job has been scheduled. Maintenance will run "
356
  msgstr ""
357
 
358
+ #: admin.inc.php:371
359
  msgid "The cron job is missing. Please resave this page to add the job"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:376
363
  msgid "Maintenance is turned off"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:384
367
  msgid "Save Options"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:385
371
  msgid "Default Options"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:385
375
  msgid "Do you want to set options to Default?"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:389
379
  msgid "Reset count"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:392
383
  msgid ""
384
  "This cannot be reversed. Make sure that your database has been backed up "
385
  "before proceeding"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:395
389
  msgid "Reset Popular Posts"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:395
393
  msgid "Are you sure you want to reset the popular posts?"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:396
397
  msgid "Reset Daily Popular Posts"
398
  msgstr ""
399
 
400
+ #: admin.inc.php:396
401
  msgid "Are you sure you want to reset the daily popular posts?"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:397
405
  msgid "Clear duplicates"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:397
409
  msgid "This will delete the duplicate entries in the tables. Proceed?"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
413
  msgid "Popular Posts"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:441 admin.inc.php:528
417
  msgid "Daily Popular Posts"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:469
421
  msgid "Support the development"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:477
425
  msgid "Enter amount in USD: "
426
  msgstr ""
427
 
428
+ #: admin.inc.php:481
429
  msgid "Send your donation to the author of"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:487
433
  msgid "Follow us"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:493
437
  msgid "Quick Links"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:495
441
  msgid "Top 10 plugin page"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:496
445
  msgid "Other plugins"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:497
449
  msgid "Ajay's blog"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:498 top-10.php:899
453
  msgid "Support"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:502
 
 
 
 
457
  msgid "Recent developments"
458
  msgstr ""
459
 
460
+ #: admin.inc.php:519 admin.inc.php:522
461
  msgid "Top 10 Settings"
462
  msgstr ""
463
 
464
+ #: admin.inc.php:519
465
  msgid "Top 10"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:525
469
  msgid "Overall Popular Posts"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:667
473
  msgid "Results"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:669 admin.inc.php:675
477
  msgid "of"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:673
481
  msgid "Page"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:687
485
  msgid "View Daily Popular Posts"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:690 admin.inc.php:703
489
  msgid "Results per-page:"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:700
493
  msgid "View Overall Popular Posts"
494
  msgstr ""
495
 
496
+ #: admin.inc.php:729
497
  msgid "Previous"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:747
501
  msgid "Next"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:788
505
  msgid "Daily Popular"
506
  msgstr ""
507
 
508
+ #: admin.inc.php:804
509
  msgid "Total / Today's Views"
510
  msgstr ""
511
 
512
+ #: top-10.php:382
513
  msgid "Display the posts popular this week"
514
  msgstr ""
515
 
516
+ #: top-10.php:396
517
  msgid "Title"
518
  msgstr ""
519
 
520
+ #: top-10.php:401
521
  msgid "No. of posts"
522
  msgstr ""
523
 
524
+ #: top-10.php:406
525
  msgid "Overall"
526
  msgstr ""
527
 
528
+ #: top-10.php:407
529
  msgid "Custom time period (Enter below)"
530
  msgstr ""
531
 
532
+ #: top-10.php:412
533
  msgid "Range in number of days (applies only to custom option above)"
534
  msgstr ""
535
 
536
+ #: top-10.php:416
537
  msgid "Thumbnail options"
538
  msgstr ""
539
 
540
+ #: top-10.php:418
541
  msgid "Thumbnails inline, before title"
542
  msgstr ""
543
 
544
+ #: top-10.php:419
545
  msgid "Thumbnails inline, after title"
546
  msgstr ""
547
 
548
+ #: top-10.php:420
549
  msgid "Only thumbnails, no text"
550
  msgstr ""
551
 
552
+ #: top-10.php:421
553
  msgid "No thumbnails, only text."
554
  msgstr ""
555
 
556
+ #: top-10.php:426
557
  msgid " Show excerpt?"
558
  msgstr ""
559
 
560
+ #: top-10.php:501
561
  msgid "<h3>Popular Posts</h3>"
562
  msgstr ""
563
 
564
+ #: top-10.php:502
565
  msgid "<h3>Daily Popular</h3>"
566
  msgstr ""
567
 
568
+ #: top-10.php:503
569
  msgid "No top posts yet"
570
  msgstr ""
571
 
572
+ #: top-10.php:865
573
  msgid "Once Weekly"
574
  msgstr ""
575
 
576
+ #: top-10.php:866
577
  msgid "Once Fortnightly"
578
  msgstr ""
579
 
580
+ #: top-10.php:867
581
  msgid "Once Monthly"
582
  msgstr ""
583
 
584
+ #: top-10.php:887
585
  msgid "Settings"
586
  msgstr ""
587
 
588
+ #: top-10.php:900
589
  msgid "Donate"
590
  msgstr ""
languages/tptn-es_ES.mo CHANGED
Binary file
languages/tptn-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,53 +15,61 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,71 +77,71 @@ msgstr ""
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,16 +151,16 @@ msgstr ""
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,113 +172,113 @@ msgstr ""
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,7 +289,7 @@ msgstr ""
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,11 +300,11 @@ msgstr ""
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,109 +314,109 @@ msgstr ""
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
  #, fuzzy
395
  msgid "Save Options"
396
  msgstr "Los parametros"
397
 
398
- #: admin.inc.php:363
399
  #, fuzzy
400
  msgid "Default Options"
401
  msgstr "Los Parámetros Resultantes"
402
 
403
- #: admin.inc.php:363
404
  msgid "Do you want to set options to Default?"
405
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
406
 
407
- #: admin.inc.php:367
408
  msgid "Reset count"
409
  msgstr "Reiniciar los ajustes"
410
 
411
- #: admin.inc.php:370
412
  msgid ""
413
  "This cannot be reversed. Make sure that your database has been backed up "
414
  "before proceeding"
@@ -416,228 +424,227 @@ msgstr ""
416
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
417
  "sido creada una copia de seguridad para su base de datos."
418
 
419
- #: admin.inc.php:373
420
  #, fuzzy
421
  msgid "Reset Popular Posts"
422
  msgstr "Los posts más populares"
423
 
424
- #: admin.inc.php:373
425
  msgid "Are you sure you want to reset the popular posts?"
426
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
427
 
428
- #: admin.inc.php:374
429
  #, fuzzy
430
  msgid "Reset Daily Popular Posts"
431
  msgstr "Los posts diarios más populares"
432
 
433
- #: admin.inc.php:374
434
  msgid "Are you sure you want to reset the daily popular posts?"
435
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
436
 
437
- #: admin.inc.php:375
438
  msgid "Clear duplicates"
439
  msgstr ""
440
 
441
- #: admin.inc.php:375
442
  msgid "This will delete the duplicate entries in the tables. Proceed?"
443
  msgstr ""
444
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
445
 
446
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
555
  msgid "Display the posts popular this week"
556
  msgstr "Mostrar los posts populares de esta semana"
557
 
558
- #: top-10.php:342
559
  msgid "Title"
560
  msgstr ""
561
 
562
- #: top-10.php:347
563
  msgid "No. of posts"
564
  msgstr ""
565
 
566
- #: top-10.php:352
567
  msgid "Overall"
568
  msgstr ""
569
 
570
- #: top-10.php:353
571
  msgid "Custom time period (Enter below)"
572
  msgstr ""
573
 
574
- #: top-10.php:358
575
  msgid "Range in number of days (applies only to custom option above)"
576
  msgstr ""
577
 
578
- #: top-10.php:362
579
  #, fuzzy
580
  msgid "Thumbnail options"
581
  msgstr "Los parámetros del thumbnail:"
582
 
583
- #: top-10.php:364
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:365
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:366
594
  #, fuzzy
595
  msgid "Only thumbnails, no text"
596
  msgstr "Mostrar solamente thumbnails, no el texto"
597
 
598
- #: top-10.php:367
599
  #, fuzzy
600
  msgid "No thumbnails, only text."
601
  msgstr "No mostrar thumbnails, sólo el texto"
602
 
603
- #: top-10.php:372
604
  #, fuzzy
605
  msgid " Show excerpt?"
606
  msgstr "¿Mostrar un fragmento del post en la lista?"
607
 
608
- #: top-10.php:441
609
  msgid "<h3>Popular Posts</h3>"
610
  msgstr "Los posts populares"
611
 
612
- #: top-10.php:442
613
  msgid "<h3>Daily Popular</h3>"
614
  msgstr "Diario Populares"
615
 
616
- #: top-10.php:443
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:731
622
  msgid "Once Weekly"
623
  msgstr ""
624
 
625
- #: top-10.php:732
626
  msgid "Once Fortnightly"
627
  msgstr ""
628
 
629
- #: top-10.php:733
630
  msgid "Once Monthly"
631
  msgstr ""
632
 
633
- #: top-10.php:754
634
  msgid "Settings"
635
  msgstr "Los ajustes"
636
 
637
- #: top-10.php:767
638
  msgid "Donate"
639
  msgstr "Subvencionar"
640
 
 
 
 
641
  #~ msgid "Tables cleaned of duplicate rows"
642
  #~ msgstr "Las filas duplicadas han sido eliminadas"
643
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Configuraciones guardadas con éxito"
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Los parametros se configuran de manera predeterminada"
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Reiniciar el Top de los 10 posts más populares"
37
 
38
+ #: admin.inc.php:109
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:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Mostrar el número de posts más populares"
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
  "Los post diarios más populares deben contener el número de visitas al día"
66
 
67
+ #: admin.inc.php:159
68
  #, fuzzy
69
  msgid "Exclude Pages?"
70
  msgstr "Excluir las Categorías"
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "¿Excluir la Páginas que muestran los posts más Populares? También será "
78
  "contado el número de visitas"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr "Excluir las Categorías"
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "La página"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
124
  "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
125
  "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
126
 
127
+ #: admin.inc.php:199
128
  msgid "Track visits of authors on their own posts?"
129
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
130
 
131
+ #: admin.inc.php:202
132
  #, fuzzy
133
  msgid "Track visits of admins?"
134
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
135
 
136
+ #: admin.inc.php:205
137
  msgid "Display page views on Posts > All Posts in Admin"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:208
141
  msgid "Link to Top 10 plugin page"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:210
145
  #, fuzzy
146
  msgid ""
147
  "A link to the plugin is added as an extra list item to the list of popular "
151
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
152
  "agradeceríamos al hacerlo!"
153
 
154
+ #: admin.inc.php:217
155
  #, fuzzy
156
  msgid "Output Options"
157
  msgstr "Los Parámetros Resultantes"
158
 
159
+ #: admin.inc.php:220
160
  msgid "Format to display the count in: "
161
  msgstr "El formato de visualización de la cuenta: "
162
 
163
+ #: admin.inc.php:222
164
  #, fuzzy
165
  msgid ""
166
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
172
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
173
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
174
 
175
+ #: admin.inc.php:225
176
  msgid "Title of popular posts: "
177
  msgstr "El título de los posts más populares"
178
 
179
+ #: admin.inc.php:228
180
  msgid "Title of daily popular posts: "
181
  msgstr "El título de los posts diarios más populares"
182
 
183
+ #: admin.inc.php:231
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:235
188
  msgid "Blank Output"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:239
192
  msgid "Display:"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:243
196
  msgid "Show post excerpt in list?"
197
  msgstr "¿Mostrar un fragmento del post en la lista?"
198
 
199
+ #: admin.inc.php:246
200
  msgid "Length of excerpt (in words): "
201
  msgstr "La longitud del fragmento(en palabras):"
202
 
203
+ #: admin.inc.php:249
204
  msgid "Display number of page views in popular lists?"
205
  msgstr ""
206
  "¿Mostrar el número de visitas de la página en las listas más populares?"
207
 
208
+ #: admin.inc.php:252
209
  msgid "Customize the output:"
210
  msgstr "Personalizar el resultado:"
211
 
212
+ #: admin.inc.php:254
213
  msgid "HTML to display before the list of posts: "
214
  msgstr "HTML mostrar antes de la lista de posts:"
215
 
216
+ #: admin.inc.php:257
217
  msgid "HTML to display before each list item: "
218
  msgstr "HTML mostrar ante cada elemento de la lista:"
219
 
220
+ #: admin.inc.php:260
221
  msgid "HTML to display after each list item: "
222
  msgstr "HTML mostrar después de cada elemento de la lista:"
223
 
224
+ #: admin.inc.php:263
225
  msgid "HTML to display after the list of posts: "
226
  msgstr "HTML mostrar después de la lista de posts:"
227
 
228
+ #: admin.inc.php:266
229
  msgid "Post thumbnail options:"
230
  msgstr "Los parámetros del thumbnail:"
231
 
232
+ #: admin.inc.php:268
233
  msgid "Location of post thumbnail:"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:272
237
  msgid "Display thumbnails inline with posts, before title"
238
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
239
 
240
+ #: admin.inc.php:276
241
  msgid "Display thumbnails inline with posts, after title"
242
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
243
 
244
+ #: admin.inc.php:280
245
  msgid "Display only thumbnails, no text"
246
  msgstr "Mostrar solamente thumbnails, no el texto"
247
 
248
+ #: admin.inc.php:284
249
  msgid "Do not display thumbnails, only text."
250
  msgstr "No mostrar thumbnails, sólo el texto"
251
 
252
+ #: admin.inc.php:288
253
  msgid "Maximum width of the thumbnail: "
254
  msgstr ""
255
 
256
+ #: admin.inc.php:291
257
  msgid "Maximum height of the thumbnail: "
258
  msgstr ""
259
 
260
+ #: admin.inc.php:294
261
  msgid "Use timthumb to generate thumbnails? "
262
  msgstr ""
263
 
264
+ #: admin.inc.php:295
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:297
271
  #, fuzzy
272
  msgid "Post thumbnail meta field name: "
273
  msgstr "Los parámetros del thumbnail:"
274
 
275
+ #: admin.inc.php:298
276
  msgid ""
277
  "The value of this field should contain the image source and is set in the "
278
  "<em>Add New Post</em> screen"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:300
282
  #, fuzzy
283
  msgid ""
284
  "If the postmeta is not set, then should the plugin extract the first image "
289
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
290
  "tamaño de archivo "
291
 
292
+ #: admin.inc.php:301
293
  #, fuzzy
294
  msgid ""
295
  "This could slow down the loading of your page if the first image in the "
300
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
301
  "tamaño de archivo "
302
 
303
+ #: admin.inc.php:303
304
  msgid "Use default thumbnail? "
305
  msgstr ""
306
 
307
+ #: admin.inc.php:304
308
  msgid ""
309
  "If checked, when no thumbnail is found, show a default one from the URL "
310
  "below. If not checked and no thumbnail is found, no image will be shown."
314
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
315
  "hay que mostrarla."
316
 
317
+ #: admin.inc.php:306
318
  msgid "Default thumbnail: "
319
  msgstr ""
320
 
321
+ #: admin.inc.php:307
322
  msgid ""
323
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
324
  "then it will check the meta field. If this is not available, then it will "
325
  "show the default image as specified above"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:313
329
  msgid "Custom Styles"
330
  msgstr ""
331
 
332
+ #: admin.inc.php:316
333
  msgid "Custom CSS to add to header:"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:319
337
  msgid ""
338
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
339
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
340
  "available CSS classes to style."
341
  msgstr ""
342
 
343
+ #: admin.inc.php:326
344
  msgid "Maintenance"
345
  msgstr ""
346
 
347
+ #: admin.inc.php:330
348
  msgid ""
349
  "Over time the Daily Top 10 database grows in size, which reduces the "
350
  "performance of the plugin. Cleaning the database at regular intervals could "
351
  "improve performance, especially on high traffic blogs."
352
  msgstr ""
353
 
354
+ #: admin.inc.php:331
355
  msgid ""
356
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
357
  "everytime the job is rescheduled (i.e. you change the settings below). This "
358
  "causes the daily posts table to reset."
359
  msgstr ""
360
 
361
+ #: admin.inc.php:334
362
  msgid "Enable scheduled maintenance of daily tables:"
363
  msgstr ""
364
 
365
+ #: admin.inc.php:338
366
  msgid "Time to run maintenance"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:341
370
  msgid "How often should the maintenance be run:"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:345
374
  msgid "Daily"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:349
378
  msgid "Weekly"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:353
382
  msgid "Fortnightly"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:357
386
  msgid "Monthly"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:366
390
  msgid "The cron job has been scheduled. Maintenance will run "
391
  msgstr ""
392
 
393
+ #: admin.inc.php:371
394
  msgid "The cron job is missing. Please resave this page to add the job"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:376
398
  msgid "Maintenance is turned off"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:384
402
  #, fuzzy
403
  msgid "Save Options"
404
  msgstr "Los parametros"
405
 
406
+ #: admin.inc.php:385
407
  #, fuzzy
408
  msgid "Default Options"
409
  msgstr "Los Parámetros Resultantes"
410
 
411
+ #: admin.inc.php:385
412
  msgid "Do you want to set options to Default?"
413
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
414
 
415
+ #: admin.inc.php:389
416
  msgid "Reset count"
417
  msgstr "Reiniciar los ajustes"
418
 
419
+ #: admin.inc.php:392
420
  msgid ""
421
  "This cannot be reversed. Make sure that your database has been backed up "
422
  "before proceeding"
424
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
425
  "sido creada una copia de seguridad para su base de datos."
426
 
427
+ #: admin.inc.php:395
428
  #, fuzzy
429
  msgid "Reset Popular Posts"
430
  msgstr "Los posts más populares"
431
 
432
+ #: admin.inc.php:395
433
  msgid "Are you sure you want to reset the popular posts?"
434
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
435
 
436
+ #: admin.inc.php:396
437
  #, fuzzy
438
  msgid "Reset Daily Popular Posts"
439
  msgstr "Los posts diarios más populares"
440
 
441
+ #: admin.inc.php:396
442
  msgid "Are you sure you want to reset the daily popular posts?"
443
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
444
 
445
+ #: admin.inc.php:397
446
  msgid "Clear duplicates"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:397
450
  msgid "This will delete the duplicate entries in the tables. Proceed?"
451
  msgstr ""
452
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
453
 
454
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
455
  msgid "Popular Posts"
456
  msgstr "Los posts más populares"
457
 
458
+ #: admin.inc.php:441 admin.inc.php:528
459
  msgid "Daily Popular Posts"
460
  msgstr "Los posts diarios más populares"
461
 
462
+ #: admin.inc.php:469
463
  msgid "Support the development"
464
  msgstr "Apoyar al elaborador"
465
 
466
+ #: admin.inc.php:477
467
  msgid "Enter amount in USD: "
468
  msgstr "Ingresar las cifras en USD"
469
 
470
+ #: admin.inc.php:481
471
  msgid "Send your donation to the author of"
472
  msgstr "Enviar su subvención al autor"
473
 
474
+ #: admin.inc.php:487
475
  msgid "Follow us"
476
  msgstr ""
477
 
478
+ #: admin.inc.php:493
479
  #, fuzzy
480
  msgid "Quick Links"
481
  msgstr "Enlaces rápidos"
482
 
483
+ #: admin.inc.php:495
484
  #, fuzzy
485
  msgid "Top 10 plugin page"
486
  msgstr "página plugin"
487
 
488
+ #: admin.inc.php:496
489
  msgid "Other plugins"
490
  msgstr "Otros plugins"
491
 
492
+ #: admin.inc.php:497
493
  msgid "Ajay's blog"
494
  msgstr "Blog de Ajay"
495
 
496
+ #: admin.inc.php:498 top-10.php:899
497
  msgid "Support"
498
  msgstr "Apoyo"
499
 
500
+ #: admin.inc.php:502
 
 
 
 
501
  msgid "Recent developments"
502
  msgstr "Evolución reciente"
503
 
504
+ #: admin.inc.php:519 admin.inc.php:522
505
  #, fuzzy
506
  msgid "Top 10 Settings"
507
  msgstr "Los ajustes"
508
 
509
+ #: admin.inc.php:519
510
  msgid "Top 10"
511
  msgstr "Тоp 10"
512
 
513
+ #: admin.inc.php:525
514
  #, fuzzy
515
  msgid "Overall Popular Posts"
516
  msgstr "Ver los posts más populares"
517
 
518
+ #: admin.inc.php:667
519
  msgid "Results"
520
  msgstr "Resultados"
521
 
522
+ #: admin.inc.php:669 admin.inc.php:675
523
  msgid "of"
524
  msgstr "de, a "
525
 
526
+ #: admin.inc.php:673
527
  msgid "Page"
528
  msgstr "La página"
529
 
530
+ #: admin.inc.php:687
531
  msgid "View Daily Popular Posts"
532
  msgstr "Ver los posts diarios más populares"
533
 
534
+ #: admin.inc.php:690 admin.inc.php:703
535
  msgid "Results per-page:"
536
  msgstr "Los resultados por página:"
537
 
538
+ #: admin.inc.php:700
539
  msgid "View Overall Popular Posts"
540
  msgstr "Ver los posts más populares"
541
 
542
+ #: admin.inc.php:729
543
  msgid "Previous"
544
  msgstr "Precedentes"
545
 
546
+ #: admin.inc.php:747
547
  msgid "Next"
548
  msgstr "Siguientes"
549
 
550
+ #: admin.inc.php:788
551
  msgid "Daily Popular"
552
  msgstr "Diario Populares"
553
 
554
+ #: admin.inc.php:804
555
  msgid "Total / Today's Views"
556
  msgstr "Total/Visitas de hoy"
557
 
558
+ #: top-10.php:382
559
  msgid "Display the posts popular this week"
560
  msgstr "Mostrar los posts populares de esta semana"
561
 
562
+ #: top-10.php:396
563
  msgid "Title"
564
  msgstr ""
565
 
566
+ #: top-10.php:401
567
  msgid "No. of posts"
568
  msgstr ""
569
 
570
+ #: top-10.php:406
571
  msgid "Overall"
572
  msgstr ""
573
 
574
+ #: top-10.php:407
575
  msgid "Custom time period (Enter below)"
576
  msgstr ""
577
 
578
+ #: top-10.php:412
579
  msgid "Range in number of days (applies only to custom option above)"
580
  msgstr ""
581
 
582
+ #: top-10.php:416
583
  #, fuzzy
584
  msgid "Thumbnail options"
585
  msgstr "Los parámetros del thumbnail:"
586
 
587
+ #: top-10.php:418
588
  #, fuzzy
589
  msgid "Thumbnails inline, before title"
590
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
591
 
592
+ #: top-10.php:419
593
  #, fuzzy
594
  msgid "Thumbnails inline, after title"
595
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
596
 
597
+ #: top-10.php:420
598
  #, fuzzy
599
  msgid "Only thumbnails, no text"
600
  msgstr "Mostrar solamente thumbnails, no el texto"
601
 
602
+ #: top-10.php:421
603
  #, fuzzy
604
  msgid "No thumbnails, only text."
605
  msgstr "No mostrar thumbnails, sólo el texto"
606
 
607
+ #: top-10.php:426
608
  #, fuzzy
609
  msgid " Show excerpt?"
610
  msgstr "¿Mostrar un fragmento del post en la lista?"
611
 
612
+ #: top-10.php:501
613
  msgid "<h3>Popular Posts</h3>"
614
  msgstr "Los posts populares"
615
 
616
+ #: top-10.php:502
617
  msgid "<h3>Daily Popular</h3>"
618
  msgstr "Diario Populares"
619
 
620
+ #: top-10.php:503
621
  #, fuzzy
622
  msgid "No top posts yet"
623
  msgstr "Reiniciar el Top de los 10 posts más populares"
624
 
625
+ #: top-10.php:865
626
  msgid "Once Weekly"
627
  msgstr ""
628
 
629
+ #: top-10.php:866
630
  msgid "Once Fortnightly"
631
  msgstr ""
632
 
633
+ #: top-10.php:867
634
  msgid "Once Monthly"
635
  msgstr ""
636
 
637
+ #: top-10.php:887
638
  msgid "Settings"
639
  msgstr "Los ajustes"
640
 
641
+ #: top-10.php:900
642
  msgid "Donate"
643
  msgstr "Subvencionar"
644
 
645
+ #~ msgid "Follow @ajaydsouza on Twitter"
646
+ #~ msgstr "Seguir @ajaydsouza en Twitter"
647
+
648
  #~ msgid "Tables cleaned of duplicate rows"
649
  #~ msgstr "Las filas duplicadas han sido eliminadas"
650
 
languages/tptn-fr_FR.mo CHANGED
Binary file
languages/tptn-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -15,53 +15,61 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,47 +77,47 @@ msgstr ""
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 ""
@@ -117,24 +125,24 @@ msgstr ""
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,16 +152,16 @@ msgstr ""
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,113 +174,113 @@ msgstr ""
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,7 +291,7 @@ msgstr ""
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,11 +302,11 @@ msgstr ""
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,109 +315,109 @@ msgstr ""
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
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Options:"
398
 
399
- #: admin.inc.php:363
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Paramètres de sortie"
403
 
404
- #: admin.inc.php:363
405
  msgid "Do you want to set options to Default?"
406
  msgstr "Définir les paramètres par défaut?"
407
 
408
- #: admin.inc.php:367
409
  msgid "Reset count"
410
  msgstr "Réinitialiser le compteur"
411
 
412
- #: admin.inc.php:370
413
  msgid ""
414
  "This cannot be reversed. Make sure that your database has been backed up "
415
  "before proceeding"
@@ -417,228 +425,227 @@ msgstr ""
417
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
418
  "sauvegardée avant de poursuivre."
419
 
420
- #: admin.inc.php:373
421
  #, fuzzy
422
  msgid "Reset Popular Posts"
423
  msgstr "Postes populaires"
424
 
425
- #: admin.inc.php:373
426
  msgid "Are you sure you want to reset the popular posts?"
427
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
428
 
429
- #: admin.inc.php:374
430
  #, fuzzy
431
  msgid "Reset Daily Popular Posts"
432
  msgstr "Postes populaires journaliers"
433
 
434
- #: admin.inc.php:374
435
  msgid "Are you sure you want to reset the daily popular posts?"
436
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
437
 
438
- #: admin.inc.php:375
439
  msgid "Clear duplicates"
440
  msgstr ""
441
 
442
- #: admin.inc.php:375
443
  msgid "This will delete the duplicate entries in the tables. Proceed?"
444
  msgstr ""
445
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
446
 
447
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
556
  msgid "Display the posts popular this week"
557
  msgstr "Afficher les postes populaires de la semaine"
558
 
559
- #: top-10.php:342
560
  msgid "Title"
561
  msgstr ""
562
 
563
- #: top-10.php:347
564
  msgid "No. of posts"
565
  msgstr ""
566
 
567
- #: top-10.php:352
568
  msgid "Overall"
569
  msgstr ""
570
 
571
- #: top-10.php:353
572
  msgid "Custom time period (Enter below)"
573
  msgstr ""
574
 
575
- #: top-10.php:358
576
  msgid "Range in number of days (applies only to custom option above)"
577
  msgstr ""
578
 
579
- #: top-10.php:362
580
  #, fuzzy
581
  msgid "Thumbnail options"
582
  msgstr "Options thumbnail des messages:"
583
 
584
- #: top-10.php:364
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:365
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:366
595
  #, fuzzy
596
  msgid "Only thumbnails, no text"
597
  msgstr "Afficher uniquement le thumbnail, sans le texte"
598
 
599
- #: top-10.php:367
600
  #, fuzzy
601
  msgid "No thumbnails, only text."
602
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
603
 
604
- #: top-10.php:372
605
  #, fuzzy
606
  msgid " Show excerpt?"
607
  msgstr "Afficher le fragment du message dans la liste?"
608
 
609
- #: top-10.php:441
610
  msgid "<h3>Popular Posts</h3>"
611
  msgstr "<h3>Postes populaires</h3>"
612
 
613
- #: top-10.php:442
614
  msgid "<h3>Daily Popular</h3>"
615
  msgstr "<h3>Populaires Journaliers</h3>"
616
 
617
- #: top-10.php:443
618
  #, fuzzy
619
  msgid "No top posts yet"
620
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
621
 
622
- #: top-10.php:731
623
  msgid "Once Weekly"
624
  msgstr ""
625
 
626
- #: top-10.php:732
627
  msgid "Once Fortnightly"
628
  msgstr ""
629
 
630
- #: top-10.php:733
631
  msgid "Once Monthly"
632
  msgstr ""
633
 
634
- #: top-10.php:754
635
  msgid "Settings"
636
  msgstr "Paramètres"
637
 
638
- #: top-10.php:767
639
  msgid "Donate"
640
  msgstr "Conribuer"
641
 
 
 
 
642
  #~ msgid "Tables cleaned of duplicate rows"
643
  #~ msgstr "Supprimer les lignes répétitives du tableau"
644
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Les options sont sauvegardées avec succès"
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Options par défaut sont définies"
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
37
 
38
+ #: admin.inc.php:109
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:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Le nombre de populaires sur le forum"
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
66
 
67
+ #: admin.inc.php:159
68
  #, fuzzy
69
  msgid "Exclude Pages?"
70
  msgstr "Exclure les catégories:"
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "Éliminer d'affichage les pages du message populaire? Le nombre des "
78
  "visionnage des pages qui seront toujours prises en compte."
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr "Exclure les catégories:"
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "Afficher le nombre des visionnages du message?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "Page"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
125
  "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
126
  "la page"
127
 
128
+ #: admin.inc.php:199
129
  msgid "Track visits of authors on their own posts?"
130
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
131
 
132
+ #: admin.inc.php:202
133
  #, fuzzy
134
  msgid "Track visits of admins?"
135
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
136
 
137
+ #: admin.inc.php:205
138
  msgid "Display page views on Posts > All Posts in Admin"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:208
142
  msgid "Link to Top 10 plugin page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:210
146
  #, fuzzy
147
  msgid ""
148
  "A link to the plugin is added as an extra list item to the list of popular "
152
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
153
  "mais nous vous y remercions!"
154
 
155
+ #: admin.inc.php:217
156
  #, fuzzy
157
  msgid "Output Options"
158
  msgstr "Paramètres de sortie"
159
 
160
+ #: admin.inc.php:220
161
  msgid "Format to display the count in: "
162
  msgstr "Format d’affichage de la quantité en:"
163
 
164
+ #: admin.inc.php:222
165
  #, fuzzy
166
  msgid ""
167
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
174
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
175
  "123 times, 23 visits today)</code>"
176
 
177
+ #: admin.inc.php:225
178
  msgid "Title of popular posts: "
179
  msgstr "Les en-têtes des messages populaires"
180
 
181
+ #: admin.inc.php:228
182
  msgid "Title of daily popular posts: "
183
  msgstr "Les en-têtes des messages populaires journaliers"
184
 
185
+ #: admin.inc.php:231
186
  msgid "When there are no posts, what should be shown?"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:235
190
  msgid "Blank Output"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:239
194
  msgid "Display:"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:243
198
  msgid "Show post excerpt in list?"
199
  msgstr "Afficher le fragment du message dans la liste?"
200
 
201
+ #: admin.inc.php:246
202
  msgid "Length of excerpt (in words): "
203
  msgstr "Longueur du fragment (mots):"
204
 
205
+ #: admin.inc.php:249
206
  msgid "Display number of page views in popular lists?"
207
  msgstr ""
208
  "Afficher le nombre des visionnages des pages dans les listes de popularité?"
209
 
210
+ #: admin.inc.php:252
211
  msgid "Customize the output:"
212
  msgstr "Paramétrer la sortie:"
213
 
214
+ #: admin.inc.php:254
215
  msgid "HTML to display before the list of posts: "
216
  msgstr "HTML d'affichage avant la liste des messages:"
217
 
218
+ #: admin.inc.php:257
219
  msgid "HTML to display before each list item: "
220
  msgstr "HTML d'affichage avant chaque élément de la liste:"
221
 
222
+ #: admin.inc.php:260
223
  msgid "HTML to display after each list item: "
224
  msgstr "HTML d'affichage après chaque élément de la liste:"
225
 
226
+ #: admin.inc.php:263
227
  msgid "HTML to display after the list of posts: "
228
  msgstr "HTML d'affichage après la liste des messages:"
229
 
230
+ #: admin.inc.php:266
231
  msgid "Post thumbnail options:"
232
  msgstr "Options thumbnail des messages:"
233
 
234
+ #: admin.inc.php:268
235
  msgid "Location of post thumbnail:"
236
  msgstr ""
237
 
238
+ #: admin.inc.php:272
239
  msgid "Display thumbnails inline with posts, before title"
240
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
241
 
242
+ #: admin.inc.php:276
243
  msgid "Display thumbnails inline with posts, after title"
244
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
245
 
246
+ #: admin.inc.php:280
247
  msgid "Display only thumbnails, no text"
248
  msgstr "Afficher uniquement le thumbnail, sans le texte"
249
 
250
+ #: admin.inc.php:284
251
  msgid "Do not display thumbnails, only text."
252
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
253
 
254
+ #: admin.inc.php:288
255
  msgid "Maximum width of the thumbnail: "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:291
259
  msgid "Maximum height of the thumbnail: "
260
  msgstr ""
261
 
262
+ #: admin.inc.php:294
263
  msgid "Use timthumb to generate thumbnails? "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:295
267
  msgid ""
268
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
269
  "\">timthumb</a> will be used to generate thumbnails"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:297
273
  #, fuzzy
274
  msgid "Post thumbnail meta field name: "
275
  msgstr "Options thumbnail des messages:"
276
 
277
+ #: admin.inc.php:298
278
  msgid ""
279
  "The value of this field should contain the image source and is set in the "
280
  "<em>Add New Post</em> screen"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:300
284
  #, fuzzy
285
  msgid ""
286
  "If the postmeta is not set, then should the plugin extract the first image "
291
  "première image de la résolution correspondante du fichier est de taille "
292
  "supérieure"
293
 
294
+ #: admin.inc.php:301
295
  #, fuzzy
296
  msgid ""
297
  "This could slow down the loading of your page if the first image in the "
302
  "première image de la résolution correspondante du fichier est de taille "
303
  "supérieure"
304
 
305
+ #: admin.inc.php:303
306
  msgid "Use default thumbnail? "
307
  msgstr ""
308
 
309
+ #: admin.inc.php:304
310
  msgid ""
311
  "If checked, when no thumbnail is found, show a default one from the URL "
312
  "below. If not checked and no thumbnail is found, no image will be shown."
315
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
316
  "été retrouvé, ne pas afficher l'image."
317
 
318
+ #: admin.inc.php:306
319
  msgid "Default thumbnail: "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:307
323
  msgid ""
324
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
325
  "then it will check the meta field. If this is not available, then it will "
326
  "show the default image as specified above"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:313
330
  msgid "Custom Styles"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:316
334
  msgid "Custom CSS to add to header:"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:319
338
  msgid ""
339
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
340
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
341
  "available CSS classes to style."
342
  msgstr ""
343
 
344
+ #: admin.inc.php:326
345
  msgid "Maintenance"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:330
349
  msgid ""
350
  "Over time the Daily Top 10 database grows in size, which reduces the "
351
  "performance of the plugin. Cleaning the database at regular intervals could "
352
  "improve performance, especially on high traffic blogs."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:331
356
  msgid ""
357
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
358
  "everytime the job is rescheduled (i.e. you change the settings below). This "
359
  "causes the daily posts table to reset."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:334
363
  msgid "Enable scheduled maintenance of daily tables:"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:338
367
  msgid "Time to run maintenance"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:341
371
  msgid "How often should the maintenance be run:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:345
375
  msgid "Daily"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:349
379
  msgid "Weekly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:353
383
  msgid "Fortnightly"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:357
387
  msgid "Monthly"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:366
391
  msgid "The cron job has been scheduled. Maintenance will run "
392
  msgstr ""
393
 
394
+ #: admin.inc.php:371
395
  msgid "The cron job is missing. Please resave this page to add the job"
396
  msgstr ""
397
 
398
+ #: admin.inc.php:376
399
  msgid "Maintenance is turned off"
400
  msgstr ""
401
 
402
+ #: admin.inc.php:384
403
  #, fuzzy
404
  msgid "Save Options"
405
  msgstr "Options:"
406
 
407
+ #: admin.inc.php:385
408
  #, fuzzy
409
  msgid "Default Options"
410
  msgstr "Paramètres de sortie"
411
 
412
+ #: admin.inc.php:385
413
  msgid "Do you want to set options to Default?"
414
  msgstr "Définir les paramètres par défaut?"
415
 
416
+ #: admin.inc.php:389
417
  msgid "Reset count"
418
  msgstr "Réinitialiser le compteur"
419
 
420
+ #: admin.inc.php:392
421
  msgid ""
422
  "This cannot be reversed. Make sure that your database has been backed up "
423
  "before proceeding"
425
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
426
  "sauvegardée avant de poursuivre."
427
 
428
+ #: admin.inc.php:395
429
  #, fuzzy
430
  msgid "Reset Popular Posts"
431
  msgstr "Postes populaires"
432
 
433
+ #: admin.inc.php:395
434
  msgid "Are you sure you want to reset the popular posts?"
435
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
436
 
437
+ #: admin.inc.php:396
438
  #, fuzzy
439
  msgid "Reset Daily Popular Posts"
440
  msgstr "Postes populaires journaliers"
441
 
442
+ #: admin.inc.php:396
443
  msgid "Are you sure you want to reset the daily popular posts?"
444
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
445
 
446
+ #: admin.inc.php:397
447
  msgid "Clear duplicates"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:397
451
  msgid "This will delete the duplicate entries in the tables. Proceed?"
452
  msgstr ""
453
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
454
 
455
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
456
  msgid "Popular Posts"
457
  msgstr "Postes populaires"
458
 
459
+ #: admin.inc.php:441 admin.inc.php:528
460
  msgid "Daily Popular Posts"
461
  msgstr "Postes populaires journaliers"
462
 
463
+ #: admin.inc.php:469
464
  msgid "Support the development"
465
  msgstr "Soutenir le projet"
466
 
467
+ #: admin.inc.php:477
468
  msgid "Enter amount in USD: "
469
  msgstr "Saisir le montant en dollars US"
470
 
471
+ #: admin.inc.php:481
472
  msgid "Send your donation to the author of"
473
  msgstr "Envoyer sa dotation à l'auteur"
474
 
475
+ #: admin.inc.php:487
476
  msgid "Follow us"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:493
480
  #, fuzzy
481
  msgid "Quick Links"
482
  msgstr "Liens rapides"
483
 
484
+ #: admin.inc.php:495
485
  #, fuzzy
486
  msgid "Top 10 plugin page"
487
  msgstr "Page de plugin"
488
 
489
+ #: admin.inc.php:496
490
  msgid "Other plugins"
491
  msgstr "Autres plugins"
492
 
493
+ #: admin.inc.php:497
494
  msgid "Ajay's blog"
495
  msgstr "Blog Ajay"
496
 
497
+ #: admin.inc.php:498 top-10.php:899
498
  msgid "Support"
499
  msgstr "Service d'assistance"
500
 
501
+ #: admin.inc.php:502
 
 
 
 
502
  msgid "Recent developments"
503
  msgstr "Les derniers projets"
504
 
505
+ #: admin.inc.php:519 admin.inc.php:522
506
  #, fuzzy
507
  msgid "Top 10 Settings"
508
  msgstr "Paramètres"
509
 
510
+ #: admin.inc.php:519
511
  msgid "Top 10"
512
  msgstr "Тоp 10"
513
 
514
+ #: admin.inc.php:525
515
  #, fuzzy
516
  msgid "Overall Popular Posts"
517
  msgstr "Voir tous les postes populaires"
518
 
519
+ #: admin.inc.php:667
520
  msgid "Results"
521
  msgstr "Résultats"
522
 
523
+ #: admin.inc.php:669 admin.inc.php:675
524
  msgid "of"
525
  msgstr "de, du, de la, des"
526
 
527
+ #: admin.inc.php:673
528
  msgid "Page"
529
  msgstr "Page"
530
 
531
+ #: admin.inc.php:687
532
  msgid "View Daily Popular Posts"
533
  msgstr "Voir les postes populaires journaliers"
534
 
535
+ #: admin.inc.php:690 admin.inc.php:703
536
  msgid "Results per-page:"
537
  msgstr "Résultats par page:"
538
 
539
+ #: admin.inc.php:700
540
  msgid "View Overall Popular Posts"
541
  msgstr "Voir tous les postes populaires"
542
 
543
+ #: admin.inc.php:729
544
  msgid "Previous"
545
  msgstr "Précédente"
546
 
547
+ #: admin.inc.php:747
548
  msgid "Next"
549
  msgstr "Suivante"
550
 
551
+ #: admin.inc.php:788
552
  msgid "Daily Popular"
553
  msgstr "Populaires journaliers"
554
 
555
+ #: admin.inc.php:804
556
  msgid "Total / Today's Views"
557
  msgstr "Total/aujourd'hui visionnages"
558
 
559
+ #: top-10.php:382
560
  msgid "Display the posts popular this week"
561
  msgstr "Afficher les postes populaires de la semaine"
562
 
563
+ #: top-10.php:396
564
  msgid "Title"
565
  msgstr ""
566
 
567
+ #: top-10.php:401
568
  msgid "No. of posts"
569
  msgstr ""
570
 
571
+ #: top-10.php:406
572
  msgid "Overall"
573
  msgstr ""
574
 
575
+ #: top-10.php:407
576
  msgid "Custom time period (Enter below)"
577
  msgstr ""
578
 
579
+ #: top-10.php:412
580
  msgid "Range in number of days (applies only to custom option above)"
581
  msgstr ""
582
 
583
+ #: top-10.php:416
584
  #, fuzzy
585
  msgid "Thumbnail options"
586
  msgstr "Options thumbnail des messages:"
587
 
588
+ #: top-10.php:418
589
  #, fuzzy
590
  msgid "Thumbnails inline, before title"
591
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
592
 
593
+ #: top-10.php:419
594
  #, fuzzy
595
  msgid "Thumbnails inline, after title"
596
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
597
 
598
+ #: top-10.php:420
599
  #, fuzzy
600
  msgid "Only thumbnails, no text"
601
  msgstr "Afficher uniquement le thumbnail, sans le texte"
602
 
603
+ #: top-10.php:421
604
  #, fuzzy
605
  msgid "No thumbnails, only text."
606
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
607
 
608
+ #: top-10.php:426
609
  #, fuzzy
610
  msgid " Show excerpt?"
611
  msgstr "Afficher le fragment du message dans la liste?"
612
 
613
+ #: top-10.php:501
614
  msgid "<h3>Popular Posts</h3>"
615
  msgstr "<h3>Postes populaires</h3>"
616
 
617
+ #: top-10.php:502
618
  msgid "<h3>Daily Popular</h3>"
619
  msgstr "<h3>Populaires Journaliers</h3>"
620
 
621
+ #: top-10.php:503
622
  #, fuzzy
623
  msgid "No top posts yet"
624
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
625
 
626
+ #: top-10.php:865
627
  msgid "Once Weekly"
628
  msgstr ""
629
 
630
+ #: top-10.php:866
631
  msgid "Once Fortnightly"
632
  msgstr ""
633
 
634
+ #: top-10.php:867
635
  msgid "Once Monthly"
636
  msgstr ""
637
 
638
+ #: top-10.php:887
639
  msgid "Settings"
640
  msgstr "Paramètres"
641
 
642
+ #: top-10.php:900
643
  msgid "Donate"
644
  msgstr "Conribuer"
645
 
646
+ #~ msgid "Follow @ajaydsouza on Twitter"
647
+ #~ msgstr "Follow @ajaydsouza sur Twitter"
648
+
649
  #~ msgid "Tables cleaned of duplicate rows"
650
  #~ msgstr "Supprimer les lignes répétitives du tableau"
651
 
languages/tptn-ga_IR.mo CHANGED
Binary file
languages/tptn-ga_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
@@ -15,53 +15,61 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,47 +77,47 @@ msgstr ""
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 ""
@@ -117,24 +125,24 @@ msgstr ""
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,16 +151,16 @@ msgstr ""
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,464 +173,460 @@ msgstr ""
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
  #, fuzzy
388
  msgid "Save Options"
389
  msgstr "roghanna"
390
 
391
- #: admin.inc.php:363
392
  #, fuzzy
393
  msgid "Default Options"
394
  msgstr "roghanna"
395
 
396
- #: admin.inc.php:363
397
  msgid "Do you want to set options to Default?"
398
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
399
 
400
- #: admin.inc.php:367
401
  msgid "Reset count"
402
  msgstr ""
403
 
404
- #: admin.inc.php:370
405
  msgid ""
406
  "This cannot be reversed. Make sure that your database has been backed up "
407
  "before proceeding"
408
  msgstr ""
409
 
410
- #: admin.inc.php:373
411
  #, fuzzy
412
  msgid "Reset Popular Posts"
413
  msgstr "Poist Coitianta"
414
 
415
- #: admin.inc.php:373
416
  msgid "Are you sure you want to reset the popular posts?"
417
  msgstr ""
418
 
419
- #: admin.inc.php:374
420
  #, fuzzy
421
  msgid "Reset Daily Popular Posts"
422
  msgstr "Poist Coitianta Laethúil"
423
 
424
- #: admin.inc.php:374
425
  msgid "Are you sure you want to reset the daily popular posts?"
426
  msgstr ""
427
 
428
- #: admin.inc.php:375
429
  msgid "Clear duplicates"
430
  msgstr ""
431
 
432
- #: admin.inc.php:375
433
  msgid "This will delete the duplicate entries in the tables. Proceed?"
434
  msgstr ""
435
 
436
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
545
  msgid "Display the posts popular this week"
546
  msgstr ""
547
 
548
- #: top-10.php:342
549
  msgid "Title"
550
  msgstr ""
551
 
552
- #: top-10.php:347
553
  msgid "No. of posts"
554
  msgstr ""
555
 
556
- #: top-10.php:352
557
  msgid "Overall"
558
  msgstr ""
559
 
560
- #: top-10.php:353
561
  msgid "Custom time period (Enter below)"
562
  msgstr ""
563
 
564
- #: top-10.php:358
565
  msgid "Range in number of days (applies only to custom option above)"
566
  msgstr ""
567
 
568
- #: top-10.php:362
569
  msgid "Thumbnail options"
570
  msgstr ""
571
 
572
- #: top-10.php:364
573
  #, fuzzy
574
  msgid "Thumbnails inline, before title"
575
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
576
 
577
- #: top-10.php:365
578
  #, fuzzy
579
  msgid "Thumbnails inline, after title"
580
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
581
 
582
- #: top-10.php:366
583
  #, fuzzy
584
  msgid "Only thumbnails, no text"
585
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
586
 
587
- #: top-10.php:367
588
  #, fuzzy
589
  msgid "No thumbnails, only text."
590
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
591
 
592
- #: top-10.php:372
593
  msgid " Show excerpt?"
594
  msgstr ""
595
 
596
- #: top-10.php:441
597
  msgid "<h3>Popular Posts</h3>"
598
  msgstr "<h3>Poist Coitianta </ h3>"
599
 
600
- #: top-10.php:442
601
  msgid "<h3>Daily Popular</h3>"
602
  msgstr "<h3> laethúil Coitianta </ h3>"
603
 
604
- #: top-10.php:443
605
  #, fuzzy
606
  msgid "No top posts yet"
607
  msgstr "Teideal an post tóir:"
608
 
609
- #: top-10.php:731
610
  msgid "Once Weekly"
611
  msgstr ""
612
 
613
- #: top-10.php:732
614
  msgid "Once Fortnightly"
615
  msgstr ""
616
 
617
- #: top-10.php:733
618
  msgid "Once Monthly"
619
  msgstr ""
620
 
621
- #: top-10.php:754
622
  msgid "Settings"
623
  msgstr ""
624
 
625
- #: top-10.php:767
626
  msgid "Donate"
627
  msgstr ""
628
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Roghanna shábháil go rathúil."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Roghanna leagtha chun Réamhshocrú."
33
 
34
+ #: admin.inc.php:103
35
  #, fuzzy
36
  msgid "Top 10 popular posts reset"
37
  msgstr "Teideal an post tóir:"
38
 
39
+ #: admin.inc.php:109
40
  #, fuzzy
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Teideal ar tóir an bpost:"
43
 
44
+ #: admin.inc.php:116
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:137
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:141
53
+ msgid "Enable Overall stats"
54
+ msgstr ""
55
+
56
+ #: admin.inc.php:146
57
+ msgid "Enable Daily stats"
58
+ msgstr ""
59
+
60
+ #: admin.inc.php:151
61
  msgid "Number of popular posts to display: "
62
  msgstr "An líon post tóir a thaispeáint:"
63
 
64
+ #: admin.inc.php:155
65
  msgid "Daily Popular should contain views of how many days? "
66
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
67
 
68
+ #: admin.inc.php:159
69
  msgid "Exclude Pages?"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir "
78
  "Leathanaigh ar aghaidh a chur san áireamh."
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr ""
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "Leathanach"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
125
  "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
126
  "luchtú leathanach"
127
 
128
+ #: admin.inc.php:199
129
  msgid "Track visits of authors on their own posts?"
130
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
131
 
132
+ #: admin.inc.php:202
133
  #, fuzzy
134
  msgid "Track visits of admins?"
135
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
136
 
137
+ #: admin.inc.php:205
138
  msgid "Display page views on Posts > All Posts in Admin"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:208
142
  msgid "Link to Top 10 plugin page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:210
146
  #, fuzzy
147
  msgid ""
148
  "A link to the plugin is added as an extra list item to the list of popular "
151
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
152
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
153
 
154
+ #: admin.inc.php:217
155
  #, fuzzy
156
  msgid "Output Options"
157
  msgstr "roghanna"
158
 
159
+ #: admin.inc.php:220
160
  msgid "Format to display the count in: "
161
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
162
 
163
+ #: admin.inc.php:222
164
  #, fuzzy
165
  msgid ""
166
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
173
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
174
  "123 amanna, 23 cuairt inniu) </ cód>"
175
 
176
+ #: admin.inc.php:225
177
  msgid "Title of popular posts: "
178
  msgstr "Teideal an post tóir:"
179
 
180
+ #: admin.inc.php:228
181
  msgid "Title of daily popular posts: "
182
  msgstr "Teideal ar tóir an bpost:"
183
 
184
+ #: admin.inc.php:231
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:235
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:239
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:243
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:246
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:249
205
  msgid "Display number of page views in popular lists?"
206
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
207
 
208
+ #: admin.inc.php:252
209
  msgid "Customize the output:"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:254
213
  #, fuzzy
214
  msgid "HTML to display before the list of posts: "
215
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
216
 
217
+ #: admin.inc.php:257
218
  #, fuzzy
219
  msgid "HTML to display before each list item: "
220
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
221
 
222
+ #: admin.inc.php:260
223
  #, fuzzy
224
  msgid "HTML to display after each list item: "
225
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
226
 
227
+ #: admin.inc.php:263
228
  #, fuzzy
229
  msgid "HTML to display after the list of posts: "
230
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
231
 
232
+ #: admin.inc.php:266
233
  msgid "Post thumbnail options:"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:268
237
  msgid "Location of post thumbnail:"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:272
241
  #, fuzzy
242
  msgid "Display thumbnails inline with posts, before title"
243
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
244
 
245
+ #: admin.inc.php:276
246
  #, fuzzy
247
  msgid "Display thumbnails inline with posts, after title"
248
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
249
 
250
+ #: admin.inc.php:280
251
  #, fuzzy
252
  msgid "Display only thumbnails, no text"
253
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
254
 
255
+ #: admin.inc.php:284
256
  #, fuzzy
257
  msgid "Do not display thumbnails, only text."
258
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
259
 
260
+ #: admin.inc.php:288
261
  msgid "Maximum width of the thumbnail: "
262
  msgstr ""
263
 
264
+ #: admin.inc.php:291
265
  msgid "Maximum height of the thumbnail: "
266
  msgstr ""
267
 
268
+ #: admin.inc.php:294
269
  msgid "Use timthumb to generate thumbnails? "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:295
273
  msgid ""
274
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
275
  "\">timthumb</a> will be used to generate thumbnails"
276
  msgstr ""
277
 
278
+ #: admin.inc.php:297
279
  msgid "Post thumbnail meta field name: "
280
  msgstr ""
281
 
282
+ #: admin.inc.php:298
283
  msgid ""
284
  "The value of this field should contain the image source and is set in the "
285
  "<em>Add New Post</em> screen"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:300
289
  msgid ""
290
  "If the postmeta is not set, then should the plugin extract the first image "
291
  "from the post?"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:301
295
  msgid ""
296
  "This could slow down the loading of your page if the first image in the "
297
  "related posts is large in file-size"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:303
301
  msgid "Use default thumbnail? "
302
  msgstr ""
303
 
304
+ #: admin.inc.php:304
305
  msgid ""
306
  "If checked, when no thumbnail is found, show a default one from the URL "
307
  "below. If not checked and no thumbnail is found, no image will be shown."
308
  msgstr ""
309
 
310
+ #: admin.inc.php:306
311
  msgid "Default thumbnail: "
312
  msgstr ""
313
 
314
+ #: admin.inc.php:307
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:313
322
  msgid "Custom Styles"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:316
326
  msgid "Custom CSS to add to header:"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:319
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:326
337
  msgid "Maintenance"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:330
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:331
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:334
355
  msgid "Enable scheduled maintenance of daily tables:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:338
359
  msgid "Time to run maintenance"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:341
363
  msgid "How often should the maintenance be run:"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:345
367
  msgid "Daily"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:349
371
  msgid "Weekly"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:353
375
  msgid "Fortnightly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:357
379
  msgid "Monthly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:366
383
  msgid "The cron job has been scheduled. Maintenance will run "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:371
387
  msgid "The cron job is missing. Please resave this page to add the job"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:376
391
  msgid "Maintenance is turned off"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:384
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "roghanna"
398
 
399
+ #: admin.inc.php:385
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "roghanna"
403
 
404
+ #: admin.inc.php:385
405
  msgid "Do you want to set options to Default?"
406
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
407
 
408
+ #: admin.inc.php:389
409
  msgid "Reset count"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:392
413
  msgid ""
414
  "This cannot be reversed. Make sure that your database has been backed up "
415
  "before proceeding"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:395
419
  #, fuzzy
420
  msgid "Reset Popular Posts"
421
  msgstr "Poist Coitianta"
422
 
423
+ #: admin.inc.php:395
424
  msgid "Are you sure you want to reset the popular posts?"
425
  msgstr ""
426
 
427
+ #: admin.inc.php:396
428
  #, fuzzy
429
  msgid "Reset Daily Popular Posts"
430
  msgstr "Poist Coitianta Laethúil"
431
 
432
+ #: admin.inc.php:396
433
  msgid "Are you sure you want to reset the daily popular posts?"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:397
437
  msgid "Clear duplicates"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:397
441
  msgid "This will delete the duplicate entries in the tables. Proceed?"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
445
  msgid "Popular Posts"
446
  msgstr "Poist Coitianta"
447
 
448
+ #: admin.inc.php:441 admin.inc.php:528
449
  msgid "Daily Popular Posts"
450
  msgstr "Poist Coitianta Laethúil"
451
 
452
+ #: admin.inc.php:469
453
  #, fuzzy
454
  msgid "Support the development"
455
  msgstr "Tacú le Forbairt"
456
 
457
+ #: admin.inc.php:477
458
  msgid "Enter amount in USD: "
459
  msgstr ""
460
 
461
+ #: admin.inc.php:481
462
  msgid "Send your donation to the author of"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:487
466
  msgid "Follow us"
467
  msgstr ""
468
 
469
+ #: admin.inc.php:493
470
  msgid "Quick Links"
471
  msgstr ""
472
 
473
+ #: admin.inc.php:495
474
  msgid "Top 10 plugin page"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:496
478
  msgid "Other plugins"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:497
482
  msgid "Ajay's blog"
483
  msgstr ""
484
 
485
+ #: admin.inc.php:498 top-10.php:899
486
  msgid "Support"
487
  msgstr ""
488
 
489
+ #: admin.inc.php:502
 
 
 
 
490
  #, fuzzy
491
  msgid "Recent developments"
492
  msgstr "Tacú le Forbairt"
493
 
494
+ #: admin.inc.php:519 admin.inc.php:522
495
  #, fuzzy
496
  msgid "Top 10 Settings"
497
  msgstr "Top 10"
498
 
499
+ #: admin.inc.php:519
500
  msgid "Top 10"
501
  msgstr "Top 10"
502
 
503
+ #: admin.inc.php:525
504
  #, fuzzy
505
  msgid "Overall Popular Posts"
506
  msgstr "Féach ar Poist Coitianta Foriomlán"
507
 
508
+ #: admin.inc.php:667
509
  msgid "Results"
510
  msgstr "torthaí"
511
 
512
+ #: admin.inc.php:669 admin.inc.php:675
513
  msgid "of"
514
  msgstr "de"
515
 
516
+ #: admin.inc.php:673
517
  msgid "Page"
518
  msgstr "Leathanach"
519
 
520
+ #: admin.inc.php:687
521
  msgid "View Daily Popular Posts"
522
  msgstr "Féach ar Poist sa lá Coitianta"
523
 
524
+ #: admin.inc.php:690 admin.inc.php:703
525
  msgid "Results per-page:"
526
  msgstr "Torthaí in aghaidh an-leathanach:"
527
 
528
+ #: admin.inc.php:700
529
  msgid "View Overall Popular Posts"
530
  msgstr "Féach ar Poist Coitianta Foriomlán"
531
 
532
+ #: admin.inc.php:729
533
  msgid "Previous"
534
  msgstr "roimhe Seo"
535
 
536
+ #: admin.inc.php:747
537
  msgid "Next"
538
  msgstr "Ar Aghaidh"
539
 
540
+ #: admin.inc.php:788
541
  msgid "Daily Popular"
542
  msgstr "laethúil Coitianta"
543
 
544
+ #: admin.inc.php:804
545
  msgid "Total / Today's Views"
546
  msgstr "laethúil Coitianta"
547
 
548
+ #: top-10.php:382
549
  msgid "Display the posts popular this week"
550
  msgstr ""
551
 
552
+ #: top-10.php:396
553
  msgid "Title"
554
  msgstr ""
555
 
556
+ #: top-10.php:401
557
  msgid "No. of posts"
558
  msgstr ""
559
 
560
+ #: top-10.php:406
561
  msgid "Overall"
562
  msgstr ""
563
 
564
+ #: top-10.php:407
565
  msgid "Custom time period (Enter below)"
566
  msgstr ""
567
 
568
+ #: top-10.php:412
569
  msgid "Range in number of days (applies only to custom option above)"
570
  msgstr ""
571
 
572
+ #: top-10.php:416
573
  msgid "Thumbnail options"
574
  msgstr ""
575
 
576
+ #: top-10.php:418
577
  #, fuzzy
578
  msgid "Thumbnails inline, before title"
579
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
580
 
581
+ #: top-10.php:419
582
  #, fuzzy
583
  msgid "Thumbnails inline, after title"
584
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
585
 
586
+ #: top-10.php:420
587
  #, fuzzy
588
  msgid "Only thumbnails, no text"
589
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
590
 
591
+ #: top-10.php:421
592
  #, fuzzy
593
  msgid "No thumbnails, only text."
594
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
595
 
596
+ #: top-10.php:426
597
  msgid " Show excerpt?"
598
  msgstr ""
599
 
600
+ #: top-10.php:501
601
  msgid "<h3>Popular Posts</h3>"
602
  msgstr "<h3>Poist Coitianta </ h3>"
603
 
604
+ #: top-10.php:502
605
  msgid "<h3>Daily Popular</h3>"
606
  msgstr "<h3> laethúil Coitianta </ h3>"
607
 
608
+ #: top-10.php:503
609
  #, fuzzy
610
  msgid "No top posts yet"
611
  msgstr "Teideal an post tóir:"
612
 
613
+ #: top-10.php:865
614
  msgid "Once Weekly"
615
  msgstr ""
616
 
617
+ #: top-10.php:866
618
  msgid "Once Fortnightly"
619
  msgstr ""
620
 
621
+ #: top-10.php:867
622
  msgid "Once Monthly"
623
  msgstr ""
624
 
625
+ #: top-10.php:887
626
  msgid "Settings"
627
  msgstr ""
628
 
629
+ #: top-10.php:900
630
  msgid "Donate"
631
  msgstr ""
632
 
languages/tptn-hi_IN.mo CHANGED
Binary file
languages/tptn-hi_IN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
@@ -16,53 +16,61 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\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 +78,71 @@ msgstr ""
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,16 +151,16 @@ msgstr ""
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,456 +172,452 @@ msgstr ""
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
  #, fuzzy
382
  msgid "Save Options"
383
  msgstr "विकल्प हैं:"
384
 
385
- #: admin.inc.php:363
386
  #, fuzzy
387
  msgid "Default Options"
388
  msgstr "विकल्प हैं:"
389
 
390
- #: admin.inc.php:363
391
  msgid "Do you want to set options to Default?"
392
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
393
 
394
- #: admin.inc.php:367
395
  msgid "Reset count"
396
  msgstr ""
397
 
398
- #: admin.inc.php:370
399
  msgid ""
400
  "This cannot be reversed. Make sure that your database has been backed up "
401
  "before proceeding"
402
  msgstr ""
403
 
404
- #: admin.inc.php:373
405
  #, fuzzy
406
  msgid "Reset Popular Posts"
407
  msgstr "लोकप्रिय पोस्ट्स "
408
 
409
- #: admin.inc.php:373
410
  msgid "Are you sure you want to reset the popular posts?"
411
  msgstr ""
412
 
413
- #: admin.inc.php:374
414
  #, fuzzy
415
  msgid "Reset Daily Popular Posts"
416
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
417
 
418
- #: admin.inc.php:374
419
  msgid "Are you sure you want to reset the daily popular posts?"
420
  msgstr ""
421
 
422
- #: admin.inc.php:375
423
  msgid "Clear duplicates"
424
  msgstr ""
425
 
426
- #: admin.inc.php:375
427
  msgid "This will delete the duplicate entries in the tables. Proceed?"
428
  msgstr ""
429
 
430
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
538
  msgid "Display the posts popular this week"
539
  msgstr ""
540
 
541
- #: top-10.php:342
542
  msgid "Title"
543
  msgstr ""
544
 
545
- #: top-10.php:347
546
  msgid "No. of posts"
547
  msgstr ""
548
 
549
- #: top-10.php:352
550
  msgid "Overall"
551
  msgstr ""
552
 
553
- #: top-10.php:353
554
  msgid "Custom time period (Enter below)"
555
  msgstr ""
556
 
557
- #: top-10.php:358
558
  msgid "Range in number of days (applies only to custom option above)"
559
  msgstr ""
560
 
561
- #: top-10.php:362
562
  msgid "Thumbnail options"
563
  msgstr ""
564
 
565
- #: top-10.php:364
566
  #, fuzzy
567
  msgid "Thumbnails inline, before title"
568
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
569
 
570
- #: top-10.php:365
571
  #, fuzzy
572
  msgid "Thumbnails inline, after title"
573
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
574
 
575
- #: top-10.php:366
576
  msgid "Only thumbnails, no text"
577
  msgstr ""
578
 
579
- #: top-10.php:367
580
  msgid "No thumbnails, only text."
581
  msgstr ""
582
 
583
- #: top-10.php:372
584
  msgid " Show excerpt?"
585
  msgstr ""
586
 
587
- #: top-10.php:441
588
  msgid "<h3>Popular Posts</h3>"
589
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
590
 
591
- #: top-10.php:442
592
  msgid "<h3>Daily Popular</h3>"
593
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
594
 
595
- #: top-10.php:443
596
  #, fuzzy
597
  msgid "No top posts yet"
598
  msgstr "लोकप्रिय पदों का शीर्षक:"
599
 
600
- #: top-10.php:731
601
  msgid "Once Weekly"
602
  msgstr ""
603
 
604
- #: top-10.php:732
605
  msgid "Once Fortnightly"
606
  msgstr ""
607
 
608
- #: top-10.php:733
609
  msgid "Once Monthly"
610
  msgstr ""
611
 
612
- #: top-10.php:754
613
  msgid "Settings"
614
  msgstr ""
615
 
616
- #: top-10.php:767
617
  msgid "Donate"
618
  msgstr ""
619
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:79
20
  msgid "Scheduled maintenance enabled / modified"
21
  msgstr ""
22
 
23
+ #: admin.inc.php:83
24
  msgid "Scheduled maintenance disabled"
25
  msgstr ""
26
 
27
+ #: admin.inc.php:88
28
  msgid "Options saved successfully."
29
  msgstr "विकल्प सफलतापूर्वक बचाया."
30
 
31
+ #: admin.inc.php:97
32
  msgid "Options set to Default."
33
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
34
 
35
+ #: admin.inc.php:103
36
  #, fuzzy
37
  msgid "Top 10 popular posts reset"
38
  msgstr "लोकप्रिय पदों का शीर्षक:"
39
 
40
+ #: admin.inc.php:109
41
  #, fuzzy
42
  msgid "Top 10 daily popular posts reset"
43
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
44
 
45
+ #: admin.inc.php:116
46
  msgid "Duplicate rows cleaned from tables"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:137
50
  msgid "General options"
51
  msgstr ""
52
 
53
+ #: admin.inc.php:141
54
+ msgid "Enable Overall stats"
55
+ msgstr ""
56
+
57
+ #: admin.inc.php:146
58
+ msgid "Enable Daily stats"
59
+ msgstr ""
60
+
61
+ #: admin.inc.php:151
62
  msgid "Number of popular posts to display: "
63
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
64
 
65
+ #: admin.inc.php:155
66
  msgid "Daily Popular should contain views of how many days? "
67
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
68
 
69
+ #: admin.inc.php:159
70
  msgid "Exclude Pages?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:160
74
  msgid ""
75
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
76
  "continue to be counted."
78
  "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी "
79
  "रहेगी."
80
 
81
+ #: admin.inc.php:163
82
  msgid "Exclude Categories: "
83
  msgstr ""
84
 
85
+ #: admin.inc.php:178
86
  msgid ""
87
  "Comma separated list of category slugs. The field above has an autocomplete "
88
  "so simply start typing in the starting letters and it will prompt you with "
89
  "options"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:183
93
  #, fuzzy
94
  msgid "Display number of views on:"
95
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
96
 
97
+ #: admin.inc.php:185
98
  msgid "Posts"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:186
102
  #, fuzzy
103
  msgid "Pages"
104
  msgstr "पृष्ठ"
105
 
106
+ #: admin.inc.php:189
107
  msgid "Always display latest post count"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:191
111
  msgid ""
112
  "This option uses JavaScript and will increase your page load time. Turn this "
113
  "off if you are not using caching plugins or are OK with displaying older "
114
  "cached counts"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:194
118
  msgid "Always display latest post count in the daily lists"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:196
122
  #, fuzzy
123
  msgid "This option uses JavaScript and will increase your page load time"
124
  msgstr ""
125
  "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
126
  "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
127
 
128
+ #: admin.inc.php:199
129
  msgid "Track visits of authors on their own posts?"
130
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
131
 
132
+ #: admin.inc.php:202
133
  #, fuzzy
134
  msgid "Track visits of admins?"
135
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
136
 
137
+ #: admin.inc.php:205
138
  msgid "Display page views on Posts > All Posts in Admin"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:208
142
  msgid "Link to Top 10 plugin page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:210
146
  #, fuzzy
147
  msgid ""
148
  "A link to the plugin is added as an extra list item to the list of popular "
151
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
152
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
153
 
154
+ #: admin.inc.php:217
155
  #, fuzzy
156
  msgid "Output Options"
157
  msgstr "विकल्प हैं:"
158
 
159
+ #: admin.inc.php:220
160
  msgid "Format to display the count in: "
161
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
162
 
163
+ #: admin.inc.php:222
164
  #, fuzzy
165
  msgid ""
166
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
172
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
173
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
174
 
175
+ #: admin.inc.php:225
176
  msgid "Title of popular posts: "
177
  msgstr "लोकप्रिय पदों का शीर्षक:"
178
 
179
+ #: admin.inc.php:228
180
  msgid "Title of daily popular posts: "
181
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
182
 
183
+ #: admin.inc.php:231
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:235
188
  msgid "Blank Output"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:239
192
  msgid "Display:"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:243
196
  msgid "Show post excerpt in list?"
197
  msgstr ""
198
 
199
+ #: admin.inc.php:246
200
  msgid "Length of excerpt (in words): "
201
  msgstr ""
202
 
203
+ #: admin.inc.php:249
204
  msgid "Display number of page views in popular lists?"
205
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
206
 
207
+ #: admin.inc.php:252
208
  msgid "Customize the output:"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:254
212
  msgid "HTML to display before the list of posts: "
213
  msgstr ""
214
 
215
+ #: admin.inc.php:257
216
  msgid "HTML to display before each list item: "
217
  msgstr ""
218
 
219
+ #: admin.inc.php:260
220
  #, fuzzy
221
  msgid "HTML to display after each list item: "
222
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
223
 
224
+ #: admin.inc.php:263
225
  msgid "HTML to display after the list of posts: "
226
  msgstr ""
227
 
228
+ #: admin.inc.php:266
229
  msgid "Post thumbnail options:"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:268
233
  msgid "Location of post thumbnail:"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:272
237
  #, fuzzy
238
  msgid "Display thumbnails inline with posts, before title"
239
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
240
 
241
+ #: admin.inc.php:276
242
  #, fuzzy
243
  msgid "Display thumbnails inline with posts, after title"
244
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
245
 
246
+ #: admin.inc.php:280
247
  msgid "Display only thumbnails, no text"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:284
251
  msgid "Do not display thumbnails, only text."
252
  msgstr ""
253
 
254
+ #: admin.inc.php:288
255
  msgid "Maximum width of the thumbnail: "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:291
259
  msgid "Maximum height of the thumbnail: "
260
  msgstr ""
261
 
262
+ #: admin.inc.php:294
263
  msgid "Use timthumb to generate thumbnails? "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:295
267
  msgid ""
268
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
269
  "\">timthumb</a> will be used to generate thumbnails"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:297
273
  msgid "Post thumbnail meta field name: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:298
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:300
283
  msgid ""
284
  "If the postmeta is not set, then should the plugin extract the first image "
285
  "from the post?"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:301
289
  msgid ""
290
  "This could slow down the loading of your page if the first image in the "
291
  "related posts is large in file-size"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:303
295
  msgid "Use default thumbnail? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:304
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."
302
  msgstr ""
303
 
304
+ #: admin.inc.php:306
305
  msgid "Default thumbnail: "
306
  msgstr ""
307
 
308
+ #: admin.inc.php:307
309
  msgid ""
310
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
311
  "then it will check the meta field. If this is not available, then it will "
312
  "show the default image as specified above"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:313
316
  msgid "Custom Styles"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:316
320
  msgid "Custom CSS to add to header:"
321
  msgstr ""
322
 
323
+ #: admin.inc.php:319
324
  msgid ""
325
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
326
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
327
  "available CSS classes to style."
328
  msgstr ""
329
 
330
+ #: admin.inc.php:326
331
  msgid "Maintenance"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:330
335
  msgid ""
336
  "Over time the Daily Top 10 database grows in size, which reduces the "
337
  "performance of the plugin. Cleaning the database at regular intervals could "
338
  "improve performance, especially on high traffic blogs."
339
  msgstr ""
340
 
341
+ #: admin.inc.php:331
342
  msgid ""
343
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
344
  "everytime the job is rescheduled (i.e. you change the settings below). This "
345
  "causes the daily posts table to reset."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:334
349
  msgid "Enable scheduled maintenance of daily tables:"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:338
353
  msgid "Time to run maintenance"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:341
357
  msgid "How often should the maintenance be run:"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:345
361
  msgid "Daily"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:349
365
  msgid "Weekly"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:353
369
  msgid "Fortnightly"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:357
373
  msgid "Monthly"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:366
377
  msgid "The cron job has been scheduled. Maintenance will run "
378
  msgstr ""
379
 
380
+ #: admin.inc.php:371
381
  msgid "The cron job is missing. Please resave this page to add the job"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:376
385
  msgid "Maintenance is turned off"
386
  msgstr ""
387
 
388
+ #: admin.inc.php:384
389
  #, fuzzy
390
  msgid "Save Options"
391
  msgstr "विकल्प हैं:"
392
 
393
+ #: admin.inc.php:385
394
  #, fuzzy
395
  msgid "Default Options"
396
  msgstr "विकल्प हैं:"
397
 
398
+ #: admin.inc.php:385
399
  msgid "Do you want to set options to Default?"
400
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
401
 
402
+ #: admin.inc.php:389
403
  msgid "Reset count"
404
  msgstr ""
405
 
406
+ #: admin.inc.php:392
407
  msgid ""
408
  "This cannot be reversed. Make sure that your database has been backed up "
409
  "before proceeding"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:395
413
  #, fuzzy
414
  msgid "Reset Popular Posts"
415
  msgstr "लोकप्रिय पोस्ट्स "
416
 
417
+ #: admin.inc.php:395
418
  msgid "Are you sure you want to reset the popular posts?"
419
  msgstr ""
420
 
421
+ #: admin.inc.php:396
422
  #, fuzzy
423
  msgid "Reset Daily Popular Posts"
424
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
425
 
426
+ #: admin.inc.php:396
427
  msgid "Are you sure you want to reset the daily popular posts?"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:397
431
  msgid "Clear duplicates"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:397
435
  msgid "This will delete the duplicate entries in the tables. Proceed?"
436
  msgstr ""
437
 
438
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
439
  msgid "Popular Posts"
440
  msgstr "लोकप्रिय पोस्ट्स "
441
 
442
+ #: admin.inc.php:441 admin.inc.php:528
443
  msgid "Daily Popular Posts"
444
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
445
 
446
+ #: admin.inc.php:469
447
  #, fuzzy
448
  msgid "Support the development"
449
  msgstr "समर्थन विकास"
450
 
451
+ #: admin.inc.php:477
452
  msgid "Enter amount in USD: "
453
  msgstr ""
454
 
455
+ #: admin.inc.php:481
456
  msgid "Send your donation to the author of"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:487
460
  msgid "Follow us"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:493
464
  msgid "Quick Links"
465
  msgstr ""
466
 
467
+ #: admin.inc.php:495
468
  msgid "Top 10 plugin page"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:496
472
  msgid "Other plugins"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:497
476
  msgid "Ajay's blog"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:498 top-10.php:899
480
  msgid "Support"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:502
 
 
 
 
484
  msgid "Recent developments"
485
  msgstr ""
486
 
487
+ #: admin.inc.php:519 admin.inc.php:522
488
  #, fuzzy
489
  msgid "Top 10 Settings"
490
  msgstr "शीर्ष 10"
491
 
492
+ #: admin.inc.php:519
493
  msgid "Top 10"
494
  msgstr "शीर्ष 10"
495
 
496
+ #: admin.inc.php:525
497
  #, fuzzy
498
  msgid "Overall Popular Posts"
499
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
500
 
501
+ #: admin.inc.php:667
502
  msgid "Results"
503
  msgstr "परिणाम"
504
 
505
+ #: admin.inc.php:669 admin.inc.php:675
506
  msgid "of"
507
  msgstr "का"
508
 
509
+ #: admin.inc.php:673
510
  msgid "Page"
511
  msgstr "पृष्ठ"
512
 
513
+ #: admin.inc.php:687
514
  msgid "View Daily Popular Posts"
515
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
516
 
517
+ #: admin.inc.php:690 admin.inc.php:703
518
  msgid "Results per-page:"
519
  msgstr "प्रति परिणाम पृष्ठ:"
520
 
521
+ #: admin.inc.php:700
522
  msgid "View Overall Popular Posts"
523
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
524
 
525
+ #: admin.inc.php:729
526
  msgid "Previous"
527
  msgstr "पिछला"
528
 
529
+ #: admin.inc.php:747
530
  msgid "Next"
531
  msgstr "अगला"
532
 
533
+ #: admin.inc.php:788
534
  msgid "Daily Popular"
535
  msgstr "दैनिक लोकप्रिय"
536
 
537
+ #: admin.inc.php:804
538
  msgid "Total / Today's Views"
539
  msgstr "कुल / आज दर्शाव"
540
 
541
+ #: top-10.php:382
542
  msgid "Display the posts popular this week"
543
  msgstr ""
544
 
545
+ #: top-10.php:396
546
  msgid "Title"
547
  msgstr ""
548
 
549
+ #: top-10.php:401
550
  msgid "No. of posts"
551
  msgstr ""
552
 
553
+ #: top-10.php:406
554
  msgid "Overall"
555
  msgstr ""
556
 
557
+ #: top-10.php:407
558
  msgid "Custom time period (Enter below)"
559
  msgstr ""
560
 
561
+ #: top-10.php:412
562
  msgid "Range in number of days (applies only to custom option above)"
563
  msgstr ""
564
 
565
+ #: top-10.php:416
566
  msgid "Thumbnail options"
567
  msgstr ""
568
 
569
+ #: top-10.php:418
570
  #, fuzzy
571
  msgid "Thumbnails inline, before title"
572
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
573
 
574
+ #: top-10.php:419
575
  #, fuzzy
576
  msgid "Thumbnails inline, after title"
577
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
578
 
579
+ #: top-10.php:420
580
  msgid "Only thumbnails, no text"
581
  msgstr ""
582
 
583
+ #: top-10.php:421
584
  msgid "No thumbnails, only text."
585
  msgstr ""
586
 
587
+ #: top-10.php:426
588
  msgid " Show excerpt?"
589
  msgstr ""
590
 
591
+ #: top-10.php:501
592
  msgid "<h3>Popular Posts</h3>"
593
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
594
 
595
+ #: top-10.php:502
596
  msgid "<h3>Daily Popular</h3>"
597
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
598
 
599
+ #: top-10.php:503
600
  #, fuzzy
601
  msgid "No top posts yet"
602
  msgstr "लोकप्रिय पदों का शीर्षक:"
603
 
604
+ #: top-10.php:865
605
  msgid "Once Weekly"
606
  msgstr ""
607
 
608
+ #: top-10.php:866
609
  msgid "Once Fortnightly"
610
  msgstr ""
611
 
612
+ #: top-10.php:867
613
  msgid "Once Monthly"
614
  msgstr ""
615
 
616
+ #: top-10.php:887
617
  msgid "Settings"
618
  msgstr ""
619
 
620
+ #: top-10.php:900
621
  msgid "Donate"
622
  msgstr ""
623
 
languages/tptn-it_IT.mo CHANGED
Binary file
languages/tptn-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
@@ -15,54 +15,62 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,47 +79,47 @@ msgstr ""
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 ""
@@ -119,28 +127,28 @@ msgstr ""
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,16 +158,16 @@ msgstr ""
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,114 +180,114 @@ msgstr ""
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,7 +298,7 @@ msgstr ""
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,11 +309,11 @@ msgstr ""
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,11 +321,11 @@ msgstr ""
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,98 +337,98 @@ msgstr ""
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
  #, fuzzy
407
  msgid "Save Options"
408
  msgstr "Opzioni:"
409
 
410
- #: admin.inc.php:363
411
  #, fuzzy
412
  msgid "Default Options"
413
  msgstr "Opzioni output:"
414
 
415
- #: admin.inc.php:363
416
  msgid "Do you want to set options to Default?"
417
  msgstr "Desideri ripristinare alle predefinite?"
418
 
419
- #: admin.inc.php:367
420
  msgid "Reset count"
421
  msgstr "Ripristino conteggio"
422
 
423
- #: admin.inc.php:370
424
  msgid ""
425
  "This cannot be reversed. Make sure that your database has been backed up "
426
  "before proceeding"
@@ -428,227 +436,226 @@ msgstr ""
428
  "Questa operazione non é reversibile. Effettua il backup del database prima "
429
  "di procedere"
430
 
431
- #: admin.inc.php:373
432
  #, fuzzy
433
  msgid "Reset Popular Posts"
434
  msgstr "Gli articoli più popolari"
435
 
436
- #: admin.inc.php:373
437
  msgid "Are you sure you want to reset the popular posts?"
438
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
439
 
440
- #: admin.inc.php:374
441
  #, fuzzy
442
  msgid "Reset Daily Popular Posts"
443
  msgstr "Gli articoli più popolari di oggi"
444
 
445
- #: admin.inc.php:374
446
  msgid "Are you sure you want to reset the daily popular posts?"
447
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
448
 
449
- #: admin.inc.php:375
450
  msgid "Clear duplicates"
451
  msgstr ""
452
 
453
- #: admin.inc.php:375
454
  msgid "This will delete the duplicate entries in the tables. Proceed?"
455
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
456
 
457
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
566
  msgid "Display the posts popular this week"
567
  msgstr "Mostra articoli più popolari settimana in corso"
568
 
569
- #: top-10.php:342
570
  msgid "Title"
571
  msgstr ""
572
 
573
- #: top-10.php:347
574
  msgid "No. of posts"
575
  msgstr ""
576
 
577
- #: top-10.php:352
578
  msgid "Overall"
579
  msgstr ""
580
 
581
- #: top-10.php:353
582
  msgid "Custom time period (Enter below)"
583
  msgstr ""
584
 
585
- #: top-10.php:358
586
  msgid "Range in number of days (applies only to custom option above)"
587
  msgstr ""
588
 
589
- #: top-10.php:362
590
  #, fuzzy
591
  msgid "Thumbnail options"
592
  msgstr "Opzioni miniature articolo:"
593
 
594
- #: top-10.php:364
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:365
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:366
605
  #, fuzzy
606
  msgid "Only thumbnails, no text"
607
  msgstr "Mostra le sole miniature, nessun testo"
608
 
609
- #: top-10.php:367
610
  #, fuzzy
611
  msgid "No thumbnails, only text."
612
  msgstr "Non mostrare le miniature, solo testo."
613
 
614
- #: top-10.php:372
615
  #, fuzzy
616
  msgid " Show excerpt?"
617
  msgstr "Desideri mostrare gli estratti?"
618
 
619
- #: top-10.php:441
620
  msgid "<h3>Popular Posts</h3>"
621
  msgstr "<h3>Articoli più letti</h3>"
622
 
623
- #: top-10.php:442
624
  msgid "<h3>Daily Popular</h3>"
625
  msgstr "<h3>I più letti di oggi</h3>"
626
 
627
- #: top-10.php:443
628
  #, fuzzy
629
  msgid "No top posts yet"
630
  msgstr "Ripristino 10 articoli più popolari"
631
 
632
- #: top-10.php:731
633
  msgid "Once Weekly"
634
  msgstr ""
635
 
636
- #: top-10.php:732
637
  msgid "Once Fortnightly"
638
  msgstr ""
639
 
640
- #: top-10.php:733
641
  msgid "Once Monthly"
642
  msgstr ""
643
 
644
- #: top-10.php:754
645
  msgid "Settings"
646
  msgstr "Impostazioni"
647
 
648
- #: top-10.php:767
649
  msgid "Donate"
650
  msgstr "Donazione"
651
 
 
 
 
652
  #~ msgid "Tables cleaned of duplicate rows"
653
  #~ msgstr "I duplicati sono stati rimossi dalle tabelle"
654
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Le opzioni sono state salvate con successo."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Opzioni impostate alle predefinite."
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Ripristino 10 articoli più popolari"
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Ripristino 10 articoli più popolari del giorno"
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Numero degli articoli più popolari da mostrare:"
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
  "Quanti giorni desideri siano considerati per il computo delle "
66
  "visualizzazioni per articoli più popolari del giorno?"
67
 
68
+ #: admin.inc.php:159
69
  #, fuzzy
70
  msgid "Exclude Pages?"
71
  msgstr "Escludi categorie:"
72
 
73
+ #: admin.inc.php:160
74
  msgid ""
75
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
76
  "continue to be counted."
79
  "popolari? Il numero delle visualizzazioni continuerà ad essere comunque "
80
  "aggiornato."
81
 
82
+ #: admin.inc.php:163
83
  msgid "Exclude Categories: "
84
  msgstr "Escludi categorie:"
85
 
86
+ #: admin.inc.php:178
87
  msgid ""
88
  "Comma separated list of category slugs. The field above has an autocomplete "
89
  "so simply start typing in the starting letters and it will prompt you with "
90
  "options"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:183
94
  #, fuzzy
95
  msgid "Display number of views on:"
96
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
97
 
98
+ #: admin.inc.php:185
99
  msgid "Posts"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:186
103
  #, fuzzy
104
  msgid "Pages"
105
  msgstr "Pagina"
106
 
107
+ #: admin.inc.php:189
108
  msgid "Always display latest post count"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:191
112
  msgid ""
113
  "This option uses JavaScript and will increase your page load time. Turn this "
114
  "off if you are not using caching plugins or are OK with displaying older "
115
  "cached counts"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:194
119
  msgid "Always display latest post count in the daily lists"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:196
123
  #, fuzzy
124
  msgid "This option uses JavaScript and will increase your page load time"
125
  msgstr ""
127
  "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
128
  "potrà fare aumentare i tempi di caricamento della stessa pagina"
129
 
130
+ #: admin.inc.php:199
131
  msgid "Track visits of authors on their own posts?"
132
  msgstr ""
133
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
134
  "del sito?"
135
 
136
+ #: admin.inc.php:202
137
  #, fuzzy
138
  msgid "Track visits of admins?"
139
  msgstr ""
140
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
141
  "del sito?"
142
 
143
+ #: admin.inc.php:205
144
  msgid "Display page views on Posts > All Posts in Admin"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:208
148
  msgid "Link to Top 10 plugin page"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:210
152
  #, fuzzy
153
  msgid ""
154
  "A link to the plugin is added as an extra list item to the list of popular "
158
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
159
  "opzione!"
160
 
161
+ #: admin.inc.php:217
162
  #, fuzzy
163
  msgid "Output Options"
164
  msgstr "Opzioni output:"
165
 
166
+ #: admin.inc.php:220
167
  msgid "Format to display the count in: "
168
  msgstr "Formato per il conteggio:"
169
 
170
+ #: admin.inc.php:222
171
  #, fuzzy
172
  msgid ""
173
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
180
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
181
  "123 volte, 23 visite odierne)</code>"
182
 
183
+ #: admin.inc.php:225
184
  msgid "Title of popular posts: "
185
  msgstr "Titolo per gli articoli più popolari:"
186
 
187
+ #: admin.inc.php:228
188
  msgid "Title of daily popular posts: "
189
  msgstr "Titolo per gli articoli più popolari del giorno:"
190
 
191
+ #: admin.inc.php:231
192
  msgid "When there are no posts, what should be shown?"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:235
196
  msgid "Blank Output"
197
  msgstr ""
198
 
199
+ #: admin.inc.php:239
200
  msgid "Display:"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:243
204
  msgid "Show post excerpt in list?"
205
  msgstr "Desideri mostrare gli estratti?"
206
 
207
+ #: admin.inc.php:246
208
  msgid "Length of excerpt (in words): "
209
  msgstr "Lunghezza estratto (in parole):"
210
 
211
+ #: admin.inc.php:249
212
  msgid "Display number of page views in popular lists?"
213
  msgstr ""
214
  "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
215
  "più popolari?"
216
 
217
+ #: admin.inc.php:252
218
  msgid "Customize the output:"
219
  msgstr "Personalizzazione output:"
220
 
221
+ #: admin.inc.php:254
222
  msgid "HTML to display before the list of posts: "
223
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
224
 
225
+ #: admin.inc.php:257
226
  msgid "HTML to display before each list item: "
227
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
228
 
229
+ #: admin.inc.php:260
230
  msgid "HTML to display after each list item: "
231
  msgstr "HTML da mostrare dopo ogni lista:"
232
 
233
+ #: admin.inc.php:263
234
  msgid "HTML to display after the list of posts: "
235
  msgstr "HTML da mostrare dopo la lista degli articoli:"
236
 
237
+ #: admin.inc.php:266
238
  msgid "Post thumbnail options:"
239
  msgstr "Opzioni miniature articolo:"
240
 
241
+ #: admin.inc.php:268
242
  msgid "Location of post thumbnail:"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:272
246
  msgid "Display thumbnails inline with posts, before title"
247
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
248
 
249
+ #: admin.inc.php:276
250
  msgid "Display thumbnails inline with posts, after title"
251
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
252
 
253
+ #: admin.inc.php:280
254
  msgid "Display only thumbnails, no text"
255
  msgstr "Mostra le sole miniature, nessun testo"
256
 
257
+ #: admin.inc.php:284
258
  msgid "Do not display thumbnails, only text."
259
  msgstr "Non mostrare le miniature, solo testo."
260
 
261
+ #: admin.inc.php:288
262
  msgid "Maximum width of the thumbnail: "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:291
266
  msgid "Maximum height of the thumbnail: "
267
  msgstr ""
268
 
269
+ #: admin.inc.php:294
270
  msgid "Use timthumb to generate thumbnails? "
271
  msgstr ""
272
 
273
+ #: admin.inc.php:295
274
  msgid ""
275
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
276
  "\">timthumb</a> will be used to generate thumbnails"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:297
280
  #, fuzzy
281
  msgid "Post thumbnail meta field name: "
282
  msgstr "Opzioni miniature articolo:"
283
 
284
+ #: admin.inc.php:298
285
  msgid ""
286
  "The value of this field should contain the image source and is set in the "
287
  "<em>Add New Post</em> screen"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:300
291
  #, fuzzy
292
  msgid ""
293
  "If the postmeta is not set, then should the plugin extract the first image "
298
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
299
  "dimensioni"
300
 
301
+ #: admin.inc.php:301
302
  #, fuzzy
303
  msgid ""
304
  "This could slow down the loading of your page if the first image in the "
309
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
310
  "dimensioni"
311
 
312
+ #: admin.inc.php:303
313
  msgid "Use default thumbnail? "
314
  msgstr ""
315
 
316
+ #: admin.inc.php:304
317
  msgid ""
318
  "If checked, when no thumbnail is found, show a default one from the URL "
319
  "below. If not checked and no thumbnail is found, no image will be shown."
321
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
322
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
323
 
324
+ #: admin.inc.php:306
325
  msgid "Default thumbnail: "
326
  msgstr ""
327
 
328
+ #: admin.inc.php:307
329
  #, fuzzy
330
  msgid ""
331
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
337
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
338
  "specificato qui sotto:"
339
 
340
+ #: admin.inc.php:313
341
  msgid "Custom Styles"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:316
345
  msgid "Custom CSS to add to header:"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:319
349
  msgid ""
350
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
351
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
352
  "available CSS classes to style."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:326
356
  msgid "Maintenance"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:330
360
  msgid ""
361
  "Over time the Daily Top 10 database grows in size, which reduces the "
362
  "performance of the plugin. Cleaning the database at regular intervals could "
363
  "improve performance, especially on high traffic blogs."
364
  msgstr ""
365
 
366
+ #: admin.inc.php:331
367
  msgid ""
368
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
369
  "everytime the job is rescheduled (i.e. you change the settings below). This "
370
  "causes the daily posts table to reset."
371
  msgstr ""
372
 
373
+ #: admin.inc.php:334
374
  msgid "Enable scheduled maintenance of daily tables:"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:338
378
  msgid "Time to run maintenance"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:341
382
  msgid "How often should the maintenance be run:"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:345
386
  msgid "Daily"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:349
390
  msgid "Weekly"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:353
394
  msgid "Fortnightly"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:357
398
  msgid "Monthly"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:366
402
  msgid "The cron job has been scheduled. Maintenance will run "
403
  msgstr ""
404
 
405
+ #: admin.inc.php:371
406
  msgid "The cron job is missing. Please resave this page to add the job"
407
  msgstr ""
408
 
409
+ #: admin.inc.php:376
410
  msgid "Maintenance is turned off"
411
  msgstr ""
412
 
413
+ #: admin.inc.php:384
414
  #, fuzzy
415
  msgid "Save Options"
416
  msgstr "Opzioni:"
417
 
418
+ #: admin.inc.php:385
419
  #, fuzzy
420
  msgid "Default Options"
421
  msgstr "Opzioni output:"
422
 
423
+ #: admin.inc.php:385
424
  msgid "Do you want to set options to Default?"
425
  msgstr "Desideri ripristinare alle predefinite?"
426
 
427
+ #: admin.inc.php:389
428
  msgid "Reset count"
429
  msgstr "Ripristino conteggio"
430
 
431
+ #: admin.inc.php:392
432
  msgid ""
433
  "This cannot be reversed. Make sure that your database has been backed up "
434
  "before proceeding"
436
  "Questa operazione non é reversibile. Effettua il backup del database prima "
437
  "di procedere"
438
 
439
+ #: admin.inc.php:395
440
  #, fuzzy
441
  msgid "Reset Popular Posts"
442
  msgstr "Gli articoli più popolari"
443
 
444
+ #: admin.inc.php:395
445
  msgid "Are you sure you want to reset the popular posts?"
446
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
447
 
448
+ #: admin.inc.php:396
449
  #, fuzzy
450
  msgid "Reset Daily Popular Posts"
451
  msgstr "Gli articoli più popolari di oggi"
452
 
453
+ #: admin.inc.php:396
454
  msgid "Are you sure you want to reset the daily popular posts?"
455
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
456
 
457
+ #: admin.inc.php:397
458
  msgid "Clear duplicates"
459
  msgstr ""
460
 
461
+ #: admin.inc.php:397
462
  msgid "This will delete the duplicate entries in the tables. Proceed?"
463
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
464
 
465
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
466
  msgid "Popular Posts"
467
  msgstr "Gli articoli più popolari"
468
 
469
+ #: admin.inc.php:441 admin.inc.php:528
470
  msgid "Daily Popular Posts"
471
  msgstr "Gli articoli più popolari di oggi"
472
 
473
+ #: admin.inc.php:469
474
  msgid "Support the development"
475
  msgstr "Sostieni lo sviluppo"
476
 
477
+ #: admin.inc.php:477
478
  msgid "Enter amount in USD: "
479
  msgstr "Inserisci la cifra in USD: "
480
 
481
+ #: admin.inc.php:481
482
  msgid "Send your donation to the author of"
483
  msgstr "Invia la tua donazione all'autore di"
484
 
485
+ #: admin.inc.php:487
486
  msgid "Follow us"
487
  msgstr ""
488
 
489
+ #: admin.inc.php:493
490
  #, fuzzy
491
  msgid "Quick Links"
492
  msgstr "Collegamenti veloci"
493
 
494
+ #: admin.inc.php:495
495
  #, fuzzy
496
  msgid "Top 10 plugin page"
497
  msgstr "pagina plugin"
498
 
499
+ #: admin.inc.php:496
500
  msgid "Other plugins"
501
  msgstr "Altri plugin"
502
 
503
+ #: admin.inc.php:497
504
  msgid "Ajay's blog"
505
  msgstr "Il blog di Ajay"
506
 
507
+ #: admin.inc.php:498 top-10.php:899
508
  msgid "Support"
509
  msgstr "Supporto"
510
 
511
+ #: admin.inc.php:502
 
 
 
 
512
  msgid "Recent developments"
513
  msgstr "Sviluppi recenti"
514
 
515
+ #: admin.inc.php:519 admin.inc.php:522
516
  #, fuzzy
517
  msgid "Top 10 Settings"
518
  msgstr "Impostazioni"
519
 
520
+ #: admin.inc.php:519
521
  msgid "Top 10"
522
  msgstr "Top 10"
523
 
524
+ #: admin.inc.php:525
525
  #, fuzzy
526
  msgid "Overall Popular Posts"
527
  msgstr "Visualizza panoramica articoli più popolari"
528
 
529
+ #: admin.inc.php:667
530
  msgid "Results"
531
  msgstr "Risultati"
532
 
533
+ #: admin.inc.php:669 admin.inc.php:675
534
  msgid "of"
535
  msgstr "di"
536
 
537
+ #: admin.inc.php:673
538
  msgid "Page"
539
  msgstr "Pagina"
540
 
541
+ #: admin.inc.php:687
542
  msgid "View Daily Popular Posts"
543
  msgstr "Visualizza gli articoli più letti di oggi"
544
 
545
+ #: admin.inc.php:690 admin.inc.php:703
546
  msgid "Results per-page:"
547
  msgstr "Risultati per pagina:"
548
 
549
+ #: admin.inc.php:700
550
  msgid "View Overall Popular Posts"
551
  msgstr "Visualizza panoramica articoli più popolari"
552
 
553
+ #: admin.inc.php:729
554
  msgid "Previous"
555
  msgstr "Precedente"
556
 
557
+ #: admin.inc.php:747
558
  msgid "Next"
559
  msgstr "Successiva"
560
 
561
+ #: admin.inc.php:788
562
  msgid "Daily Popular"
563
  msgstr "I più letti di oggi"
564
 
565
+ #: admin.inc.php:804
566
  msgid "Total / Today's Views"
567
  msgstr "Totale / Visualizzazioni odierne"
568
 
569
+ #: top-10.php:382
570
  msgid "Display the posts popular this week"
571
  msgstr "Mostra articoli più popolari settimana in corso"
572
 
573
+ #: top-10.php:396
574
  msgid "Title"
575
  msgstr ""
576
 
577
+ #: top-10.php:401
578
  msgid "No. of posts"
579
  msgstr ""
580
 
581
+ #: top-10.php:406
582
  msgid "Overall"
583
  msgstr ""
584
 
585
+ #: top-10.php:407
586
  msgid "Custom time period (Enter below)"
587
  msgstr ""
588
 
589
+ #: top-10.php:412
590
  msgid "Range in number of days (applies only to custom option above)"
591
  msgstr ""
592
 
593
+ #: top-10.php:416
594
  #, fuzzy
595
  msgid "Thumbnail options"
596
  msgstr "Opzioni miniature articolo:"
597
 
598
+ #: top-10.php:418
599
  #, fuzzy
600
  msgid "Thumbnails inline, before title"
601
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
602
 
603
+ #: top-10.php:419
604
  #, fuzzy
605
  msgid "Thumbnails inline, after title"
606
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
607
 
608
+ #: top-10.php:420
609
  #, fuzzy
610
  msgid "Only thumbnails, no text"
611
  msgstr "Mostra le sole miniature, nessun testo"
612
 
613
+ #: top-10.php:421
614
  #, fuzzy
615
  msgid "No thumbnails, only text."
616
  msgstr "Non mostrare le miniature, solo testo."
617
 
618
+ #: top-10.php:426
619
  #, fuzzy
620
  msgid " Show excerpt?"
621
  msgstr "Desideri mostrare gli estratti?"
622
 
623
+ #: top-10.php:501
624
  msgid "<h3>Popular Posts</h3>"
625
  msgstr "<h3>Articoli più letti</h3>"
626
 
627
+ #: top-10.php:502
628
  msgid "<h3>Daily Popular</h3>"
629
  msgstr "<h3>I più letti di oggi</h3>"
630
 
631
+ #: top-10.php:503
632
  #, fuzzy
633
  msgid "No top posts yet"
634
  msgstr "Ripristino 10 articoli più popolari"
635
 
636
+ #: top-10.php:865
637
  msgid "Once Weekly"
638
  msgstr ""
639
 
640
+ #: top-10.php:866
641
  msgid "Once Fortnightly"
642
  msgstr ""
643
 
644
+ #: top-10.php:867
645
  msgid "Once Monthly"
646
  msgstr ""
647
 
648
+ #: top-10.php:887
649
  msgid "Settings"
650
  msgstr "Impostazioni"
651
 
652
+ #: top-10.php:900
653
  msgid "Donate"
654
  msgstr "Donazione"
655
 
656
+ #~ msgid "Follow @ajaydsouza on Twitter"
657
+ #~ msgstr "Segui @ajaydsouza su Twitter"
658
+
659
  #~ msgid "Tables cleaned of duplicate rows"
660
  #~ msgstr "I duplicati sono stati rimossi dalle tabelle"
661
 
languages/tptn-nl_NL.mo CHANGED
Binary file
languages/tptn-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
@@ -17,51 +17,59 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.5\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,71 +77,71 @@ msgstr ""
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,16 +151,16 @@ msgstr ""
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,114 +172,114 @@ msgstr ""
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,7 +290,7 @@ msgstr ""
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,21 +301,21 @@ msgstr ""
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,98 +327,98 @@ msgstr ""
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
  #, fuzzy
397
  msgid "Save Options"
398
  msgstr "Opties:"
399
 
400
- #: admin.inc.php:363
401
  #, fuzzy
402
  msgid "Default Options"
403
  msgstr "Output Opties:"
404
 
405
- #: admin.inc.php:363
406
  msgid "Do you want to set options to Default?"
407
  msgstr "Wil je de opties terugzetten naar standaard?"
408
 
409
- #: admin.inc.php:367
410
  msgid "Reset count"
411
  msgstr "Reset telling"
412
 
413
- #: admin.inc.php:370
414
  msgid ""
415
  "This cannot be reversed. Make sure that your database has been backed up "
416
  "before proceeding"
@@ -418,228 +426,227 @@ msgstr ""
418
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
419
  "database gemaakt hebt voordat je verder gaat"
420
 
421
- #: admin.inc.php:373
422
  #, fuzzy
423
  msgid "Reset Popular Posts"
424
  msgstr "Populaire Berichten"
425
 
426
- #: admin.inc.php:373
427
  msgid "Are you sure you want to reset the popular posts?"
428
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
429
 
430
- #: admin.inc.php:374
431
  #, fuzzy
432
  msgid "Reset Daily Popular Posts"
433
  msgstr "Dagelijkse Populaire Berichten"
434
 
435
- #: admin.inc.php:374
436
  msgid "Are you sure you want to reset the daily popular posts?"
437
  msgstr ""
438
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
439
 
440
- #: admin.inc.php:375
441
  msgid "Clear duplicates"
442
  msgstr ""
443
 
444
- #: admin.inc.php:375
445
  msgid "This will delete the duplicate entries in the tables. Proceed?"
446
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
447
 
448
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
557
  msgid "Display the posts popular this week"
558
  msgstr ""
559
 
560
- #: top-10.php:342
561
  msgid "Title"
562
  msgstr ""
563
 
564
- #: top-10.php:347
565
  msgid "No. of posts"
566
  msgstr ""
567
 
568
- #: top-10.php:352
569
  msgid "Overall"
570
  msgstr ""
571
 
572
- #: top-10.php:353
573
  msgid "Custom time period (Enter below)"
574
  msgstr ""
575
 
576
- #: top-10.php:358
577
  msgid "Range in number of days (applies only to custom option above)"
578
  msgstr ""
579
 
580
- #: top-10.php:362
581
  #, fuzzy
582
  msgid "Thumbnail options"
583
  msgstr "Bericht miniatuurafbeelding opties:"
584
 
585
- #: top-10.php:364
586
  #, fuzzy
587
  msgid "Thumbnails inline, before title"
588
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
589
 
590
- #: top-10.php:365
591
  #, fuzzy
592
  msgid "Thumbnails inline, after title"
593
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
594
 
595
- #: top-10.php:366
596
  #, fuzzy
597
  msgid "Only thumbnails, no text"
598
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
599
 
600
- #: top-10.php:367
601
  #, fuzzy
602
  msgid "No thumbnails, only text."
603
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
604
 
605
- #: top-10.php:372
606
  #, fuzzy
607
  msgid " Show excerpt?"
608
  msgstr "Laat bericht samenvatting zien in lijst?"
609
 
610
- #: top-10.php:441
611
  msgid "<h3>Popular Posts</h3>"
612
  msgstr "<h3>Populaire Berichten</h3>"
613
 
614
- #: top-10.php:442
615
  msgid "<h3>Daily Popular</h3>"
616
  msgstr "<h3>Dagelijks Populair</h3>"
617
 
618
- #: top-10.php:443
619
  #, fuzzy
620
  msgid "No top posts yet"
621
  msgstr "Reset Top 10 populaire berichten"
622
 
623
- #: top-10.php:731
624
  msgid "Once Weekly"
625
  msgstr ""
626
 
627
- #: top-10.php:732
628
  msgid "Once Fortnightly"
629
  msgstr ""
630
 
631
- #: top-10.php:733
632
  msgid "Once Monthly"
633
  msgstr ""
634
 
635
- #: top-10.php:754
636
  msgid "Settings"
637
  msgstr "Instellingen"
638
 
639
- #: top-10.php:767
640
  msgid "Donate"
641
  msgstr "Doneer"
642
 
 
 
 
643
  #~ msgid "Tables cleaned of duplicate rows"
644
  #~ msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
645
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
17
  "X-Generator: Poedit 1.5.5\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:79
21
  msgid "Scheduled maintenance enabled / modified"
22
  msgstr ""
23
 
24
+ #: admin.inc.php:83
25
  msgid "Scheduled maintenance disabled"
26
  msgstr ""
27
 
28
+ #: admin.inc.php:88
29
  msgid "Options saved successfully."
30
  msgstr "Opties succesvol opgeslagen."
31
 
32
+ #: admin.inc.php:97
33
  msgid "Options set to Default."
34
  msgstr "Opties ingesteld op Standaard."
35
 
36
+ #: admin.inc.php:103
37
  msgid "Top 10 popular posts reset"
38
  msgstr "Reset Top 10 populaire berichten"
39
 
40
+ #: admin.inc.php:109
41
  msgid "Top 10 daily popular posts reset"
42
  msgstr "Reset Top 10 dagelijkse populaire berichten"
43
 
44
+ #: admin.inc.php:116
45
  msgid "Duplicate rows cleaned from tables"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:137
49
  msgid "General options"
50
  msgstr ""
51
 
52
+ #: admin.inc.php:141
53
+ msgid "Enable Overall stats"
54
+ msgstr ""
55
+
56
+ #: admin.inc.php:146
57
+ msgid "Enable Daily stats"
58
+ msgstr ""
59
+
60
+ #: admin.inc.php:151
61
  msgid "Number of popular posts to display: "
62
  msgstr "Aantal populaire berichten om weer te geven:"
63
 
64
+ #: admin.inc.php:155
65
  msgid "Daily Popular should contain views of how many days? "
66
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
67
 
68
+ #: admin.inc.php:159
69
  msgid "Exclude Pages?"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal "
78
  "bekeken pagina's zal verder worden geteld."
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr ""
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "Geef het aantal berichtweergaves weer?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "Pagina"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
124
  "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
125
  "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
126
 
127
+ #: admin.inc.php:199
128
  msgid "Track visits of authors on their own posts?"
129
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
130
 
131
+ #: admin.inc.php:202
132
  #, fuzzy
133
  msgid "Track visits of admins?"
134
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
135
 
136
+ #: admin.inc.php:205
137
  msgid "Display page views on Posts > All Posts in Admin"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:208
141
  msgid "Link to Top 10 plugin page"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:210
145
  #, fuzzy
146
  msgid ""
147
  "A link to the plugin is added as an extra list item to the list of popular "
151
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
152
  "gewaardeerd!"
153
 
154
+ #: admin.inc.php:217
155
  #, fuzzy
156
  msgid "Output Options"
157
  msgstr "Output Opties:"
158
 
159
+ #: admin.inc.php:220
160
  msgid "Format to display the count in: "
161
  msgstr "Formaat om de optelling te laten zien:"
162
 
163
+ #: admin.inc.php:222
164
  #, fuzzy
165
  msgid ""
166
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
172
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
173
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
174
 
175
+ #: admin.inc.php:225
176
  msgid "Title of popular posts: "
177
  msgstr "Titel van populaire berichten:"
178
 
179
+ #: admin.inc.php:228
180
  msgid "Title of daily popular posts: "
181
  msgstr "Titel van dagelijkse populaire berichten:"
182
 
183
+ #: admin.inc.php:231
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:235
188
  msgid "Blank Output"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:239
192
  msgid "Display:"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:243
196
  msgid "Show post excerpt in list?"
197
  msgstr "Laat bericht samenvatting zien in lijst?"
198
 
199
+ #: admin.inc.php:246
200
  msgid "Length of excerpt (in words): "
201
  msgstr "Lengte van de samenvatting (in woorden):"
202
 
203
+ #: admin.inc.php:249
204
  msgid "Display number of page views in popular lists?"
205
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
206
 
207
+ #: admin.inc.php:252
208
  msgid "Customize the output:"
209
  msgstr "Aanpassen van de output:"
210
 
211
+ #: admin.inc.php:254
212
  msgid "HTML to display before the list of posts: "
213
  msgstr "Te weergeven HTML voor de lijst met berichten:"
214
 
215
+ #: admin.inc.php:257
216
  msgid "HTML to display before each list item: "
217
  msgstr "Te weergeven HTML voor elk lijst item:"
218
 
219
+ #: admin.inc.php:260
220
  msgid "HTML to display after each list item: "
221
  msgstr "Te weergeven HTML na elk lijst item:"
222
 
223
+ #: admin.inc.php:263
224
  msgid "HTML to display after the list of posts: "
225
  msgstr "Te weergeven HTML na de lijst met berichten:"
226
 
227
+ #: admin.inc.php:266
228
  msgid "Post thumbnail options:"
229
  msgstr "Bericht miniatuurafbeelding opties:"
230
 
231
+ #: admin.inc.php:268
232
  msgid "Location of post thumbnail:"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:272
236
  #, fuzzy
237
  msgid "Display thumbnails inline with posts, before title"
238
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
239
 
240
+ #: admin.inc.php:276
241
  #, fuzzy
242
  msgid "Display thumbnails inline with posts, after title"
243
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
244
 
245
+ #: admin.inc.php:280
246
  msgid "Display only thumbnails, no text"
247
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
248
 
249
+ #: admin.inc.php:284
250
  msgid "Do not display thumbnails, only text."
251
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
252
 
253
+ #: admin.inc.php:288
254
  msgid "Maximum width of the thumbnail: "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:291
258
  msgid "Maximum height of the thumbnail: "
259
  msgstr ""
260
 
261
+ #: admin.inc.php:294
262
  msgid "Use timthumb to generate thumbnails? "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:295
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:297
272
  #, fuzzy
273
  msgid "Post thumbnail meta field name: "
274
  msgstr "Bericht miniatuurafbeelding opties:"
275
 
276
+ #: admin.inc.php:298
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:300
283
  #, fuzzy
284
  msgid ""
285
  "If the postmeta is not set, then should the plugin extract the first image "
290
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
291
  "qua bestandsgrootte"
292
 
293
+ #: admin.inc.php:301
294
  #, fuzzy
295
  msgid ""
296
  "This could slow down the loading of your page if the first image in the "
301
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
302
  "qua bestandsgrootte"
303
 
304
+ #: admin.inc.php:303
305
  msgid "Use default thumbnail? "
306
  msgstr ""
307
 
308
+ #: admin.inc.php:304
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."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:306
315
  msgid "Default thumbnail: "
316
  msgstr ""
317
 
318
+ #: admin.inc.php:307
319
  #, fuzzy
320
  msgid ""
321
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
327
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
328
  "standaard afbeelding zoals hieronder aangegeven:"
329
 
330
+ #: admin.inc.php:313
331
  msgid "Custom Styles"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:316
335
  msgid "Custom CSS to add to header:"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:319
339
  msgid ""
340
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
341
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
342
  "available CSS classes to style."
343
  msgstr ""
344
 
345
+ #: admin.inc.php:326
346
  msgid "Maintenance"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:330
350
  msgid ""
351
  "Over time the Daily Top 10 database grows in size, which reduces the "
352
  "performance of the plugin. Cleaning the database at regular intervals could "
353
  "improve performance, especially on high traffic blogs."
354
  msgstr ""
355
 
356
+ #: admin.inc.php:331
357
  msgid ""
358
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
359
  "everytime the job is rescheduled (i.e. you change the settings below). This "
360
  "causes the daily posts table to reset."
361
  msgstr ""
362
 
363
+ #: admin.inc.php:334
364
  msgid "Enable scheduled maintenance of daily tables:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:338
368
  msgid "Time to run maintenance"
369
  msgstr ""
370
 
371
+ #: admin.inc.php:341
372
  msgid "How often should the maintenance be run:"
373
  msgstr ""
374
 
375
+ #: admin.inc.php:345
376
  msgid "Daily"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:349
380
  msgid "Weekly"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:353
384
  msgid "Fortnightly"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:357
388
  msgid "Monthly"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:366
392
  msgid "The cron job has been scheduled. Maintenance will run "
393
  msgstr ""
394
 
395
+ #: admin.inc.php:371
396
  msgid "The cron job is missing. Please resave this page to add the job"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:376
400
  msgid "Maintenance is turned off"
401
  msgstr ""
402
 
403
+ #: admin.inc.php:384
404
  #, fuzzy
405
  msgid "Save Options"
406
  msgstr "Opties:"
407
 
408
+ #: admin.inc.php:385
409
  #, fuzzy
410
  msgid "Default Options"
411
  msgstr "Output Opties:"
412
 
413
+ #: admin.inc.php:385
414
  msgid "Do you want to set options to Default?"
415
  msgstr "Wil je de opties terugzetten naar standaard?"
416
 
417
+ #: admin.inc.php:389
418
  msgid "Reset count"
419
  msgstr "Reset telling"
420
 
421
+ #: admin.inc.php:392
422
  msgid ""
423
  "This cannot be reversed. Make sure that your database has been backed up "
424
  "before proceeding"
426
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
427
  "database gemaakt hebt voordat je verder gaat"
428
 
429
+ #: admin.inc.php:395
430
  #, fuzzy
431
  msgid "Reset Popular Posts"
432
  msgstr "Populaire Berichten"
433
 
434
+ #: admin.inc.php:395
435
  msgid "Are you sure you want to reset the popular posts?"
436
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
437
 
438
+ #: admin.inc.php:396
439
  #, fuzzy
440
  msgid "Reset Daily Popular Posts"
441
  msgstr "Dagelijkse Populaire Berichten"
442
 
443
+ #: admin.inc.php:396
444
  msgid "Are you sure you want to reset the daily popular posts?"
445
  msgstr ""
446
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
447
 
448
+ #: admin.inc.php:397
449
  msgid "Clear duplicates"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:397
453
  msgid "This will delete the duplicate entries in the tables. Proceed?"
454
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
455
 
456
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
457
  msgid "Popular Posts"
458
  msgstr "Populaire Berichten"
459
 
460
+ #: admin.inc.php:441 admin.inc.php:528
461
  msgid "Daily Popular Posts"
462
  msgstr "Dagelijkse Populaire Berichten"
463
 
464
+ #: admin.inc.php:469
465
  msgid "Support the development"
466
  msgstr "Ondersteun de ontwikkeling"
467
 
468
+ #: admin.inc.php:477
469
  msgid "Enter amount in USD: "
470
  msgstr "Voer het bedrag in in USD:"
471
 
472
+ #: admin.inc.php:481
473
  msgid "Send your donation to the author of"
474
  msgstr "Zend je donatie naar de auteur van "
475
 
476
+ #: admin.inc.php:487
477
  msgid "Follow us"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:493
481
  #, fuzzy
482
  msgid "Quick Links"
483
  msgstr "Quick links"
484
 
485
+ #: admin.inc.php:495
486
  #, fuzzy
487
  msgid "Top 10 plugin page"
488
  msgstr "plugin pagina"
489
 
490
+ #: admin.inc.php:496
491
  msgid "Other plugins"
492
  msgstr "Andere plugins"
493
 
494
+ #: admin.inc.php:497
495
  msgid "Ajay's blog"
496
  msgstr "De blog van Ajay"
497
 
498
+ #: admin.inc.php:498 top-10.php:899
499
  msgid "Support"
500
  msgstr "Ondersteuning"
501
 
502
+ #: admin.inc.php:502
 
 
 
 
503
  msgid "Recent developments"
504
  msgstr "Recente ontwikkelingen"
505
 
506
+ #: admin.inc.php:519 admin.inc.php:522
507
  #, fuzzy
508
  msgid "Top 10 Settings"
509
  msgstr "Instellingen"
510
 
511
+ #: admin.inc.php:519
512
  msgid "Top 10"
513
  msgstr "Top 10"
514
 
515
+ #: admin.inc.php:525
516
  #, fuzzy
517
  msgid "Overall Popular Posts"
518
  msgstr "Bekijk het Totaal Populaire Berichten"
519
 
520
+ #: admin.inc.php:667
521
  msgid "Results"
522
  msgstr "Resultaten"
523
 
524
+ #: admin.inc.php:669 admin.inc.php:675
525
  msgid "of"
526
  msgstr "van"
527
 
528
+ #: admin.inc.php:673
529
  msgid "Page"
530
  msgstr "Pagina"
531
 
532
+ #: admin.inc.php:687
533
  msgid "View Daily Popular Posts"
534
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
535
 
536
+ #: admin.inc.php:690 admin.inc.php:703
537
  msgid "Results per-page:"
538
  msgstr "Resultaten per pagina:"
539
 
540
+ #: admin.inc.php:700
541
  msgid "View Overall Popular Posts"
542
  msgstr "Bekijk het Totaal Populaire Berichten"
543
 
544
+ #: admin.inc.php:729
545
  msgid "Previous"
546
  msgstr "Vorige"
547
 
548
+ #: admin.inc.php:747
549
  msgid "Next"
550
  msgstr "Volgende"
551
 
552
+ #: admin.inc.php:788
553
  msgid "Daily Popular"
554
  msgstr "Dagelijks Populair"
555
 
556
+ #: admin.inc.php:804
557
  msgid "Total / Today's Views"
558
  msgstr "Totale Weergaves / Weergaves van Vandaag"
559
 
560
+ #: top-10.php:382
561
  msgid "Display the posts popular this week"
562
  msgstr ""
563
 
564
+ #: top-10.php:396
565
  msgid "Title"
566
  msgstr ""
567
 
568
+ #: top-10.php:401
569
  msgid "No. of posts"
570
  msgstr ""
571
 
572
+ #: top-10.php:406
573
  msgid "Overall"
574
  msgstr ""
575
 
576
+ #: top-10.php:407
577
  msgid "Custom time period (Enter below)"
578
  msgstr ""
579
 
580
+ #: top-10.php:412
581
  msgid "Range in number of days (applies only to custom option above)"
582
  msgstr ""
583
 
584
+ #: top-10.php:416
585
  #, fuzzy
586
  msgid "Thumbnail options"
587
  msgstr "Bericht miniatuurafbeelding opties:"
588
 
589
+ #: top-10.php:418
590
  #, fuzzy
591
  msgid "Thumbnails inline, before title"
592
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
593
 
594
+ #: top-10.php:419
595
  #, fuzzy
596
  msgid "Thumbnails inline, after title"
597
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
598
 
599
+ #: top-10.php:420
600
  #, fuzzy
601
  msgid "Only thumbnails, no text"
602
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
603
 
604
+ #: top-10.php:421
605
  #, fuzzy
606
  msgid "No thumbnails, only text."
607
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
608
 
609
+ #: top-10.php:426
610
  #, fuzzy
611
  msgid " Show excerpt?"
612
  msgstr "Laat bericht samenvatting zien in lijst?"
613
 
614
+ #: top-10.php:501
615
  msgid "<h3>Popular Posts</h3>"
616
  msgstr "<h3>Populaire Berichten</h3>"
617
 
618
+ #: top-10.php:502
619
  msgid "<h3>Daily Popular</h3>"
620
  msgstr "<h3>Dagelijks Populair</h3>"
621
 
622
+ #: top-10.php:503
623
  #, fuzzy
624
  msgid "No top posts yet"
625
  msgstr "Reset Top 10 populaire berichten"
626
 
627
+ #: top-10.php:865
628
  msgid "Once Weekly"
629
  msgstr ""
630
 
631
+ #: top-10.php:866
632
  msgid "Once Fortnightly"
633
  msgstr ""
634
 
635
+ #: top-10.php:867
636
  msgid "Once Monthly"
637
  msgstr ""
638
 
639
+ #: top-10.php:887
640
  msgid "Settings"
641
  msgstr "Instellingen"
642
 
643
+ #: top-10.php:900
644
  msgid "Donate"
645
  msgstr "Doneer"
646
 
647
+ #~ msgid "Follow @ajaydsouza on Twitter"
648
+ #~ msgstr "Volg @ajaydsouza via Twitter"
649
+
650
  #~ msgid "Tables cleaned of duplicate rows"
651
  #~ msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
652
 
languages/tptn-ro_RO.mo CHANGED
Binary file
languages/tptn-ro_RO.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
@@ -15,52 +15,60 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,47 +76,47 @@ msgstr ""
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 ""
@@ -116,24 +124,24 @@ msgstr ""
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,16 +150,16 @@ msgstr ""
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,112 +171,112 @@ msgstr ""
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,7 +287,7 @@ msgstr ""
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,11 +298,11 @@ msgstr ""
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,109 +311,109 @@ msgstr ""
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
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Opţiuni:"
394
 
395
- #: admin.inc.php:363
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Opţiuni de ieşire:"
399
 
400
- #: admin.inc.php:363
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
403
 
404
- #: admin.inc.php:367
405
  msgid "Reset count"
406
  msgstr "Reiniţializare count"
407
 
408
- #: admin.inc.php:370
409
  msgid ""
410
  "This cannot be reversed. Make sure that your database has been backed up "
411
  "before proceeding"
@@ -413,227 +421,226 @@ msgstr ""
413
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
414
  "înainte de a continua"
415
 
416
- #: admin.inc.php:373
417
  #, fuzzy
418
  msgid "Reset Popular Posts"
419
  msgstr "Posturi populare"
420
 
421
- #: admin.inc.php:373
422
  msgid "Are you sure you want to reset the popular posts?"
423
  msgstr "Sigur reiniţializaţi posturi populare?"
424
 
425
- #: admin.inc.php:374
426
  #, fuzzy
427
  msgid "Reset Daily Popular Posts"
428
  msgstr "Posturi populare de zi cu zi"
429
 
430
- #: admin.inc.php:374
431
  msgid "Are you sure you want to reset the daily popular posts?"
432
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
433
 
434
- #: admin.inc.php:375
435
  msgid "Clear duplicates"
436
  msgstr ""
437
 
438
- #: admin.inc.php:375
439
  msgid "This will delete the duplicate entries in the tables. Proceed?"
440
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
441
 
442
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
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:342
555
  msgid "Title"
556
  msgstr ""
557
 
558
- #: top-10.php:347
559
  msgid "No. of posts"
560
  msgstr ""
561
 
562
- #: top-10.php:352
563
  msgid "Overall"
564
  msgstr ""
565
 
566
- #: top-10.php:353
567
  msgid "Custom time period (Enter below)"
568
  msgstr ""
569
 
570
- #: top-10.php:358
571
  msgid "Range in number of days (applies only to custom option above)"
572
  msgstr ""
573
 
574
- #: top-10.php:362
575
  #, fuzzy
576
  msgid "Thumbnail options"
577
  msgstr "Post Opţiuni pictograme:"
578
 
579
- #: top-10.php:364
580
  #, fuzzy
581
  msgid "Thumbnails inline, before title"
582
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
583
 
584
- #: top-10.php:365
585
  #, fuzzy
586
  msgid "Thumbnails inline, after title"
587
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
588
 
589
- #: top-10.php:366
590
  #, fuzzy
591
  msgid "Only thumbnails, no text"
592
  msgstr "Afişa numai miniaturi, nici un text"
593
 
594
- #: top-10.php:367
595
  #, fuzzy
596
  msgid "No thumbnails, only text."
597
  msgstr "Nu se afişează miniaturi, numai textul."
598
 
599
- #: top-10.php:372
600
  #, fuzzy
601
  msgid " Show excerpt?"
602
  msgstr "Afişează post extras din lista?"
603
 
604
- #: top-10.php:441
605
  msgid "<h3>Popular Posts</h3>"
606
  msgstr "<h3>Posturi populare</h3>"
607
 
608
- #: top-10.php:442
609
  msgid "<h3>Daily Popular</h3>"
610
  msgstr "<h3>Daily populare</h3>"
611
 
612
- #: top-10.php:443
613
  #, fuzzy
614
  msgid "No top posts yet"
615
  msgstr "Top 10 populare posturi Resetare"
616
 
617
- #: top-10.php:731
618
  msgid "Once Weekly"
619
  msgstr ""
620
 
621
- #: top-10.php:732
622
  msgid "Once Fortnightly"
623
  msgstr ""
624
 
625
- #: top-10.php:733
626
  msgid "Once Monthly"
627
  msgstr ""
628
 
629
- #: top-10.php:754
630
  msgid "Settings"
631
  msgstr "Setări"
632
 
633
- #: top-10.php:767
634
  msgid "Donate"
635
  msgstr "Dona"
636
 
 
 
 
637
  #~ msgid "Tables cleaned of duplicate rows"
638
  #~ msgstr "Tabelele curățate de rânduri duplicat"
639
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Opţiuni salvat cu succes."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Opţiunile setate la valorile implicite."
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Top 10 populare posturi Resetare"
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Top 10 posturi populare daily Reiniţializare"
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Numărul de posturi populare pentru a afişa: "
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
65
 
66
+ #: admin.inc.php:159
67
  #, fuzzy
68
  msgid "Exclude Pages?"
69
  msgstr "Excludeţi categorii: "
70
 
71
+ #: admin.inc.php:160
72
  msgid ""
73
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
74
  "continue to be counted."
76
  "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe "
77
  "pagini va continua să fie numărate."
78
 
79
+ #: admin.inc.php:163
80
  msgid "Exclude Categories: "
81
  msgstr "Excludeţi categorii: "
82
 
83
+ #: admin.inc.php:178
84
  msgid ""
85
  "Comma separated list of category slugs. The field above has an autocomplete "
86
  "so simply start typing in the starting letters and it will prompt you with "
87
  "options"
88
  msgstr ""
89
 
90
+ #: admin.inc.php:183
91
  #, fuzzy
92
  msgid "Display number of views on:"
93
  msgstr "Afişează numărul de vizualizări pe posturi?"
94
 
95
+ #: admin.inc.php:185
96
  msgid "Posts"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:186
100
  #, fuzzy
101
  msgid "Pages"
102
  msgstr "Pagină"
103
 
104
+ #: admin.inc.php:189
105
  msgid "Always display latest post count"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:191
109
  msgid ""
110
  "This option uses JavaScript and will increase your page load time. Turn this "
111
  "off if you are not using caching plugins or are OK with displaying older "
112
  "cached counts"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:194
116
  msgid "Always display latest post count in the daily lists"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:196
120
  #, fuzzy
121
  msgid "This option uses JavaScript and will increase your page load time"
122
  msgstr ""
124
  "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
125
  "pagină"
126
 
127
+ #: admin.inc.php:199
128
  msgid "Track visits of authors on their own posts?"
129
  msgstr "Track vizite de autori pe posturile lor proprii?"
130
 
131
+ #: admin.inc.php:202
132
  #, fuzzy
133
  msgid "Track visits of admins?"
134
  msgstr "Track vizite de autori pe posturile lor proprii?"
135
 
136
+ #: admin.inc.php:205
137
  msgid "Display page views on Posts > All Posts in Admin"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:208
141
  msgid "Link to Top 10 plugin page"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:210
145
  #, fuzzy
146
  msgid ""
147
  "A link to the plugin is added as an extra list item to the list of popular "
150
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
151
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
152
 
153
+ #: admin.inc.php:217
154
  #, fuzzy
155
  msgid "Output Options"
156
  msgstr "Opţiuni de ieşire:"
157
 
158
+ #: admin.inc.php:220
159
  msgid "Format to display the count in: "
160
  msgstr "Format pentru a afişa numărul în: "
161
 
162
+ #: admin.inc.php:222
163
  #, fuzzy
164
  msgid ""
165
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
171
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
172
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
173
 
174
+ #: admin.inc.php:225
175
  msgid "Title of popular posts: "
176
  msgstr "Titlul de posturi populare: "
177
 
178
+ #: admin.inc.php:228
179
  msgid "Title of daily popular posts: "
180
  msgstr "Titlul de zi cu zi de posturi populare: "
181
 
182
+ #: admin.inc.php:231
183
  msgid "When there are no posts, what should be shown?"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:235
187
  msgid "Blank Output"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:239
191
  msgid "Display:"
192
  msgstr ""
193
 
194
+ #: admin.inc.php:243
195
  msgid "Show post excerpt in list?"
196
  msgstr "Afişează post extras din lista?"
197
 
198
+ #: admin.inc.php:246
199
  msgid "Length of excerpt (in words): "
200
  msgstr "Lungimea extras (în cuvinte): "
201
 
202
+ #: admin.inc.php:249
203
  msgid "Display number of page views in popular lists?"
204
  msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
205
 
206
+ #: admin.inc.php:252
207
  msgid "Customize the output:"
208
  msgstr "Personaliza ieşire:"
209
 
210
+ #: admin.inc.php:254
211
  msgid "HTML to display before the list of posts: "
212
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
213
 
214
+ #: admin.inc.php:257
215
  msgid "HTML to display before each list item: "
216
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
217
 
218
+ #: admin.inc.php:260
219
  msgid "HTML to display after each list item: "
220
  msgstr "HTML pentru a afişa după fiecare element din listă: "
221
 
222
+ #: admin.inc.php:263
223
  msgid "HTML to display after the list of posts: "
224
  msgstr "HTML pentru a afişa după lista de posturi: "
225
 
226
+ #: admin.inc.php:266
227
  msgid "Post thumbnail options:"
228
  msgstr "Post Opţiuni pictograme:"
229
 
230
+ #: admin.inc.php:268
231
  msgid "Location of post thumbnail:"
232
  msgstr ""
233
 
234
+ #: admin.inc.php:272
235
  msgid "Display thumbnails inline with posts, before title"
236
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
237
 
238
+ #: admin.inc.php:276
239
  msgid "Display thumbnails inline with posts, after title"
240
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
241
 
242
+ #: admin.inc.php:280
243
  msgid "Display only thumbnails, no text"
244
  msgstr "Afişa numai miniaturi, nici un text"
245
 
246
+ #: admin.inc.php:284
247
  msgid "Do not display thumbnails, only text."
248
  msgstr "Nu se afişează miniaturi, numai textul."
249
 
250
+ #: admin.inc.php:288
251
  msgid "Maximum width of the thumbnail: "
252
  msgstr ""
253
 
254
+ #: admin.inc.php:291
255
  msgid "Maximum height of the thumbnail: "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:294
259
  msgid "Use timthumb to generate thumbnails? "
260
  msgstr ""
261
 
262
+ #: admin.inc.php:295
263
  msgid ""
264
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
265
  "\">timthumb</a> will be used to generate thumbnails"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:297
269
  #, fuzzy
270
  msgid "Post thumbnail meta field name: "
271
  msgstr "Post Opţiuni pictograme:"
272
 
273
+ #: admin.inc.php:298
274
  msgid ""
275
  "The value of this field should contain the image source and is set in the "
276
  "<em>Add New Post</em> screen"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:300
280
  #, fuzzy
281
  msgid ""
282
  "If the postmeta is not set, then should the plugin extract the first image "
287
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
288
  "fişier"
289
 
290
+ #: admin.inc.php:301
291
  #, fuzzy
292
  msgid ""
293
  "This could slow down the loading of your page if the first image in the "
298
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
299
  "fişier"
300
 
301
+ #: admin.inc.php:303
302
  msgid "Use default thumbnail? "
303
  msgstr ""
304
 
305
+ #: admin.inc.php:304
306
  msgid ""
307
  "If checked, when no thumbnail is found, show a default one from the URL "
308
  "below. If not checked and no thumbnail is found, no image will be shown."
311
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
312
  "thumbnail, imaginea nu va fi indicat."
313
 
314
+ #: admin.inc.php:306
315
  msgid "Default thumbnail: "
316
  msgstr ""
317
 
318
+ #: admin.inc.php:307
319
  msgid ""
320
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
321
  "then it will check the meta field. If this is not available, then it will "
322
  "show the default image as specified above"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:313
326
  msgid "Custom Styles"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:316
330
  msgid "Custom CSS to add to header:"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:319
334
  msgid ""
335
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
336
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
337
  "available CSS classes to style."
338
  msgstr ""
339
 
340
+ #: admin.inc.php:326
341
  msgid "Maintenance"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:330
345
  msgid ""
346
  "Over time the Daily Top 10 database grows in size, which reduces the "
347
  "performance of the plugin. Cleaning the database at regular intervals could "
348
  "improve performance, especially on high traffic blogs."
349
  msgstr ""
350
 
351
+ #: admin.inc.php:331
352
  msgid ""
353
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
354
  "everytime the job is rescheduled (i.e. you change the settings below). This "
355
  "causes the daily posts table to reset."
356
  msgstr ""
357
 
358
+ #: admin.inc.php:334
359
  msgid "Enable scheduled maintenance of daily tables:"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:338
363
  msgid "Time to run maintenance"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:341
367
  msgid "How often should the maintenance be run:"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:345
371
  msgid "Daily"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:349
375
  msgid "Weekly"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:353
379
  msgid "Fortnightly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:357
383
  msgid "Monthly"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:366
387
  msgid "The cron job has been scheduled. Maintenance will run "
388
  msgstr ""
389
 
390
+ #: admin.inc.php:371
391
  msgid "The cron job is missing. Please resave this page to add the job"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:376
395
  msgid "Maintenance is turned off"
396
  msgstr ""
397
 
398
+ #: admin.inc.php:384
399
  #, fuzzy
400
  msgid "Save Options"
401
  msgstr "Opţiuni:"
402
 
403
+ #: admin.inc.php:385
404
  #, fuzzy
405
  msgid "Default Options"
406
  msgstr "Opţiuni de ieşire:"
407
 
408
+ #: admin.inc.php:385
409
  msgid "Do you want to set options to Default?"
410
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
411
 
412
+ #: admin.inc.php:389
413
  msgid "Reset count"
414
  msgstr "Reiniţializare count"
415
 
416
+ #: admin.inc.php:392
417
  msgid ""
418
  "This cannot be reversed. Make sure that your database has been backed up "
419
  "before proceeding"
421
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
422
  "înainte de a continua"
423
 
424
+ #: admin.inc.php:395
425
  #, fuzzy
426
  msgid "Reset Popular Posts"
427
  msgstr "Posturi populare"
428
 
429
+ #: admin.inc.php:395
430
  msgid "Are you sure you want to reset the popular posts?"
431
  msgstr "Sigur reiniţializaţi posturi populare?"
432
 
433
+ #: admin.inc.php:396
434
  #, fuzzy
435
  msgid "Reset Daily Popular Posts"
436
  msgstr "Posturi populare de zi cu zi"
437
 
438
+ #: admin.inc.php:396
439
  msgid "Are you sure you want to reset the daily popular posts?"
440
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
441
 
442
+ #: admin.inc.php:397
443
  msgid "Clear duplicates"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:397
447
  msgid "This will delete the duplicate entries in the tables. Proceed?"
448
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
449
 
450
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
451
  msgid "Popular Posts"
452
  msgstr "Posturi populare"
453
 
454
+ #: admin.inc.php:441 admin.inc.php:528
455
  msgid "Daily Popular Posts"
456
  msgstr "Posturi populare de zi cu zi"
457
 
458
+ #: admin.inc.php:469
459
  msgid "Support the development"
460
  msgstr "Sprijinirea dezvoltării"
461
 
462
+ #: admin.inc.php:477
463
  msgid "Enter amount in USD: "
464
  msgstr "Introduceţi valoarea în USD: "
465
 
466
+ #: admin.inc.php:481
467
  msgid "Send your donation to the author of"
468
  msgstr "Trimite donatie autorului"
469
 
470
+ #: admin.inc.php:487
471
  msgid "Follow us"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:493
475
  #, fuzzy
476
  msgid "Quick Links"
477
  msgstr "Legături rapide pentru"
478
 
479
+ #: admin.inc.php:495
480
  #, fuzzy
481
  msgid "Top 10 plugin page"
482
  msgstr "plug-in pagina"
483
 
484
+ #: admin.inc.php:496
485
  msgid "Other plugins"
486
  msgstr "Alte plugin-uri"
487
 
488
+ #: admin.inc.php:497
489
  msgid "Ajay's blog"
490
  msgstr "Ajay's blog"
491
 
492
+ #: admin.inc.php:498 top-10.php:899
493
  msgid "Support"
494
  msgstr "Suport"
495
 
496
+ #: admin.inc.php:502
 
 
 
 
497
  msgid "Recent developments"
498
  msgstr "Evoluţiile recente"
499
 
500
+ #: admin.inc.php:519 admin.inc.php:522
501
  #, fuzzy
502
  msgid "Top 10 Settings"
503
  msgstr "Setări"
504
 
505
+ #: admin.inc.php:519
506
  msgid "Top 10"
507
  msgstr "Top 10"
508
 
509
+ #: admin.inc.php:525
510
  #, fuzzy
511
  msgid "Overall Popular Posts"
512
  msgstr "Vedere de ansamblu posturi populare"
513
 
514
+ #: admin.inc.php:667
515
  msgid "Results"
516
  msgstr "Rezultatele"
517
 
518
+ #: admin.inc.php:669 admin.inc.php:675
519
  msgid "of"
520
  msgstr "de"
521
 
522
+ #: admin.inc.php:673
523
  msgid "Page"
524
  msgstr "Pagină"
525
 
526
+ #: admin.inc.php:687
527
  msgid "View Daily Popular Posts"
528
  msgstr "Vizualizare zi posturi populare"
529
 
530
+ #: admin.inc.php:690 admin.inc.php:703
531
  msgid "Results per-page:"
532
  msgstr "Rezultate pe pagină:"
533
 
534
+ #: admin.inc.php:700
535
  msgid "View Overall Popular Posts"
536
  msgstr "Vedere de ansamblu posturi populare"
537
 
538
+ #: admin.inc.php:729
539
  msgid "Previous"
540
  msgstr "Anterioară"
541
 
542
+ #: admin.inc.php:747
543
  msgid "Next"
544
  msgstr "Următorul"
545
 
546
+ #: admin.inc.php:788
547
  msgid "Daily Popular"
548
  msgstr "Daily populare"
549
 
550
+ #: admin.inc.php:804
551
  msgid "Total / Today's Views"
552
  msgstr "Total / astăzi lui vizitări"
553
 
554
+ #: top-10.php:382
555
  msgid "Display the posts popular this week"
556
  msgstr "Afişa posturi populare în această săptămână"
557
 
558
+ #: top-10.php:396
559
  msgid "Title"
560
  msgstr ""
561
 
562
+ #: top-10.php:401
563
  msgid "No. of posts"
564
  msgstr ""
565
 
566
+ #: top-10.php:406
567
  msgid "Overall"
568
  msgstr ""
569
 
570
+ #: top-10.php:407
571
  msgid "Custom time period (Enter below)"
572
  msgstr ""
573
 
574
+ #: top-10.php:412
575
  msgid "Range in number of days (applies only to custom option above)"
576
  msgstr ""
577
 
578
+ #: top-10.php:416
579
  #, fuzzy
580
  msgid "Thumbnail options"
581
  msgstr "Post Opţiuni pictograme:"
582
 
583
+ #: top-10.php:418
584
  #, fuzzy
585
  msgid "Thumbnails inline, before title"
586
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
587
 
588
+ #: top-10.php:419
589
  #, fuzzy
590
  msgid "Thumbnails inline, after title"
591
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
592
 
593
+ #: top-10.php:420
594
  #, fuzzy
595
  msgid "Only thumbnails, no text"
596
  msgstr "Afişa numai miniaturi, nici un text"
597
 
598
+ #: top-10.php:421
599
  #, fuzzy
600
  msgid "No thumbnails, only text."
601
  msgstr "Nu se afişează miniaturi, numai textul."
602
 
603
+ #: top-10.php:426
604
  #, fuzzy
605
  msgid " Show excerpt?"
606
  msgstr "Afişează post extras din lista?"
607
 
608
+ #: top-10.php:501
609
  msgid "<h3>Popular Posts</h3>"
610
  msgstr "<h3>Posturi populare</h3>"
611
 
612
+ #: top-10.php:502
613
  msgid "<h3>Daily Popular</h3>"
614
  msgstr "<h3>Daily populare</h3>"
615
 
616
+ #: top-10.php:503
617
  #, fuzzy
618
  msgid "No top posts yet"
619
  msgstr "Top 10 populare posturi Resetare"
620
 
621
+ #: top-10.php:865
622
  msgid "Once Weekly"
623
  msgstr ""
624
 
625
+ #: top-10.php:866
626
  msgid "Once Fortnightly"
627
  msgstr ""
628
 
629
+ #: top-10.php:867
630
  msgid "Once Monthly"
631
  msgstr ""
632
 
633
+ #: top-10.php:887
634
  msgid "Settings"
635
  msgstr "Setări"
636
 
637
+ #: top-10.php:900
638
  msgid "Donate"
639
  msgstr "Dona"
640
 
641
+ #~ msgid "Follow @ajaydsouza on Twitter"
642
+ #~ msgstr "Urmaţi @ ajaydsouza pe Twitter"
643
+
644
  #~ msgid "Tables cleaned of duplicate rows"
645
  #~ msgstr "Tabelele curățate de rânduri duplicat"
646
 
languages/tptn-ru_RU.mo CHANGED
Binary file
languages/tptn-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:26-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
@@ -15,53 +15,61 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,71 +77,71 @@ msgstr ""
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,18 +150,18 @@ msgstr ""
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,113 +173,113 @@ msgstr ""
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,7 +289,7 @@ msgstr ""
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,11 +299,11 @@ msgstr ""
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,11 +312,11 @@ msgstr ""
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,98 +327,98 @@ msgstr ""
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
  #, fuzzy
397
  msgid "Save Options"
398
  msgstr "Настройки плагина:"
399
 
400
- #: admin.inc.php:363
401
  #, fuzzy
402
  msgid "Default Options"
403
  msgstr "Настройки плагина:"
404
 
405
- #: admin.inc.php:363
406
  msgid "Do you want to set options to Default?"
407
  msgstr "Сбросить настройки плагина?"
408
 
409
- #: admin.inc.php:367
410
  msgid "Reset count"
411
  msgstr "Сбросить статистику"
412
 
413
- #: admin.inc.php:370
414
  msgid ""
415
  "This cannot be reversed. Make sure that your database has been backed up "
416
  "before proceeding"
@@ -418,229 +426,228 @@ msgstr ""
418
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
419
  "убедитесь, что у вас есть копия вашей базы данных!"
420
 
421
- #: admin.inc.php:373
422
  #, fuzzy
423
  msgid "Reset Popular Posts"
424
  msgstr "Популярные записи"
425
 
426
- #: admin.inc.php:373
427
  msgid "Are you sure you want to reset the popular posts?"
428
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
429
 
430
- #: admin.inc.php:374
431
  #, fuzzy
432
  msgid "Reset Daily Popular Posts"
433
  msgstr "Популярные сегодня записи"
434
 
435
- #: admin.inc.php:374
436
  msgid "Are you sure you want to reset the daily popular posts?"
437
  msgstr ""
438
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
439
 
440
- #: admin.inc.php:375
441
  msgid "Clear duplicates"
442
  msgstr ""
443
 
444
- #: admin.inc.php:375
445
  msgid "This will delete the duplicate entries in the tables. Proceed?"
446
  msgstr ""
447
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
448
 
449
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
558
  msgid "Display the posts popular this week"
559
  msgstr "Отображать списки популярных записей за неделю"
560
 
561
- #: top-10.php:342
562
  msgid "Title"
563
  msgstr ""
564
 
565
- #: top-10.php:347
566
  msgid "No. of posts"
567
  msgstr ""
568
 
569
- #: top-10.php:352
570
  msgid "Overall"
571
  msgstr ""
572
 
573
- #: top-10.php:353
574
  msgid "Custom time period (Enter below)"
575
  msgstr ""
576
 
577
- #: top-10.php:358
578
  msgid "Range in number of days (applies only to custom option above)"
579
  msgstr ""
580
 
581
- #: top-10.php:362
582
  #, fuzzy
583
  msgid "Thumbnail options"
584
  msgstr "Настройки превью к записям:"
585
 
586
- #: top-10.php:364
587
  #, fuzzy
588
  msgid "Thumbnails inline, before title"
589
  msgstr "Отображать превью к записи сразу перед заголовком"
590
 
591
- #: top-10.php:365
592
  #, fuzzy
593
  msgid "Thumbnails inline, after title"
594
  msgstr "Отображать превью к записи сразу после заголовка"
595
 
596
- #: top-10.php:366
597
  #, fuzzy
598
  msgid "Only thumbnails, no text"
599
  msgstr "Отображать только превью, без текста"
600
 
601
- #: top-10.php:367
602
  #, fuzzy
603
  msgid "No thumbnails, only text."
604
  msgstr "Отображать только текст, без превью"
605
 
606
- #: top-10.php:372
607
  #, fuzzy
608
  msgid " Show excerpt?"
609
  msgstr "Показывать текст записи в списке?"
610
 
611
- #: top-10.php:441
612
  msgid "<h3>Popular Posts</h3>"
613
  msgstr "<h3>Популярные записи</h3>"
614
 
615
- #: top-10.php:442
616
  msgid "<h3>Daily Popular</h3>"
617
  msgstr "<h3>Популярные сегодня записи</h3>"
618
 
619
- #: top-10.php:443
620
  #, fuzzy
621
  msgid "No top posts yet"
622
  msgstr "Сбросить статистику популярных записей"
623
 
624
- #: top-10.php:731
625
  msgid "Once Weekly"
626
  msgstr ""
627
 
628
- #: top-10.php:732
629
  msgid "Once Fortnightly"
630
  msgstr ""
631
 
632
- #: top-10.php:733
633
  msgid "Once Monthly"
634
  msgstr ""
635
 
636
- #: top-10.php:754
637
  msgid "Settings"
638
  msgstr "Настроки плагина"
639
 
640
- #: top-10.php:767
641
  msgid "Donate"
642
  msgstr "Сделать пожертвование"
643
 
 
 
 
644
  #~ msgid "Tables cleaned of duplicate rows"
645
  #~ msgstr "Все повторяющиеся записи в статистике были удалены"
646
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Настройки сохранены."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Настройки сброшены."
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Сбросить статистику популярных записей"
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Сбросить статистику популярных записей за сегодня"
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Количество Популярных записей в списке:"
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
66
 
67
+ #: admin.inc.php:159
68
  #, fuzzy
69
  msgid "Exclude Pages?"
70
  msgstr "Исключить рубрики:"
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "Исключить страницы из списка Популярных записей? Количество просмотров для "
78
  "страниц будет продолжать подсчитываться"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr "Исключить рубрики:"
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "Страница"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
124
  "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
125
  "и это может увеличить время загрузки страниц"
126
 
127
+ #: admin.inc.php:199
128
  msgid "Track visits of authors on their own posts?"
129
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
130
 
131
+ #: admin.inc.php:202
132
  #, fuzzy
133
  msgid "Track visits of admins?"
134
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
135
 
136
+ #: admin.inc.php:205
137
  msgid "Display page views on Posts > All Posts in Admin"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:208
141
  msgid "Link to Top 10 plugin page"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:210
145
  #, fuzzy
146
  msgid ""
147
  "A link to the plugin is added as an extra list item to the list of popular "
150
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
151
  "бы очень благодарен Вам, если Вы ее все же оставите!"
152
 
153
+ #: admin.inc.php:217
154
  #, fuzzy
155
  msgid "Output Options"
156
  msgstr "Настройки плагина:"
157
 
158
+ #: admin.inc.php:220
159
  msgid "Format to display the count in: "
160
  msgstr ""
161
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
162
  "день, за все время для записей/страниц:"
163
 
164
+ #: admin.inc.php:222
165
  #, fuzzy
166
  msgid ""
167
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
173
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
174
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
175
 
176
+ #: admin.inc.php:225
177
  msgid "Title of popular posts: "
178
  msgstr "Заголовок списка Популярных записей:"
179
 
180
+ #: admin.inc.php:228
181
  msgid "Title of daily popular posts: "
182
  msgstr "Заголовок списка Популярных сегодня записей:"
183
 
184
+ #: admin.inc.php:231
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:235
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:239
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:243
197
  msgid "Show post excerpt in list?"
198
  msgstr "Показывать текст записи в списке?"
199
 
200
+ #: admin.inc.php:246
201
  msgid "Length of excerpt (in words): "
202
  msgstr "Длина выводимого текста (в словах):"
203
 
204
+ #: admin.inc.php:249
205
  msgid "Display number of page views in popular lists?"
206
  msgstr ""
207
  "Показывать количество просмотров записей/страниц в списке Популярных записей?"
208
 
209
+ #: admin.inc.php:252
210
  msgid "Customize the output:"
211
  msgstr "Настройки оформления списка:"
212
 
213
+ #: admin.inc.php:254
214
  msgid "HTML to display before the list of posts: "
215
  msgstr "HTML-тег, используемый перед списком:"
216
 
217
+ #: admin.inc.php:257
218
  msgid "HTML to display before each list item: "
219
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
220
 
221
+ #: admin.inc.php:260
222
  msgid "HTML to display after each list item: "
223
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
224
 
225
+ #: admin.inc.php:263
226
  msgid "HTML to display after the list of posts: "
227
  msgstr "HTML-тег, используемый после списка:"
228
 
229
+ #: admin.inc.php:266
230
  msgid "Post thumbnail options:"
231
  msgstr "Настройки превью к записям:"
232
 
233
+ #: admin.inc.php:268
234
  msgid "Location of post thumbnail:"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:272
238
  msgid "Display thumbnails inline with posts, before title"
239
  msgstr "Отображать превью к записи сразу перед заголовком"
240
 
241
+ #: admin.inc.php:276
242
  msgid "Display thumbnails inline with posts, after title"
243
  msgstr "Отображать превью к записи сразу после заголовка"
244
 
245
+ #: admin.inc.php:280
246
  msgid "Display only thumbnails, no text"
247
  msgstr "Отображать только превью, без текста"
248
 
249
+ #: admin.inc.php:284
250
  msgid "Do not display thumbnails, only text."
251
  msgstr "Отображать только текст, без превью"
252
 
253
+ #: admin.inc.php:288
254
  msgid "Maximum width of the thumbnail: "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:291
258
  msgid "Maximum height of the thumbnail: "
259
  msgstr ""
260
 
261
+ #: admin.inc.php:294
262
  msgid "Use timthumb to generate thumbnails? "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:295
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:297
272
  #, fuzzy
273
  msgid "Post thumbnail meta field name: "
274
  msgstr "Настройки превью к записям:"
275
 
276
+ #: admin.inc.php:298
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:300
283
  #, fuzzy
284
  msgid ""
285
  "If the postmeta is not set, then should the plugin extract the first image "
289
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
290
  "как будет создаваться уменьшенная копия изображения"
291
 
292
+ #: admin.inc.php:301
293
  #, fuzzy
294
  msgid ""
295
  "This could slow down the loading of your page if the first image in the "
299
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
300
  "как будет создаваться уменьшенная копия изображения"
301
 
302
+ #: admin.inc.php:303
303
  msgid "Use default thumbnail? "
304
  msgstr ""
305
 
306
+ #: admin.inc.php:304
307
  msgid ""
308
  "If checked, when no thumbnail is found, show a default one from the URL "
309
  "below. If not checked and no thumbnail is found, no image will be shown."
312
  "добавлено стандартное изображение. Если превью задано к записи - будет "
313
  "отображаться только оно."
314
 
315
+ #: admin.inc.php:306
316
  msgid "Default thumbnail: "
317
  msgstr ""
318
 
319
+ #: admin.inc.php:307
320
  #, fuzzy
321
  msgid ""
322
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
327
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
328
  "выводиться картинка по-умолчанию:"
329
 
330
+ #: admin.inc.php:313
331
  msgid "Custom Styles"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:316
335
  msgid "Custom CSS to add to header:"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:319
339
  msgid ""
340
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
341
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
342
  "available CSS classes to style."
343
  msgstr ""
344
 
345
+ #: admin.inc.php:326
346
  msgid "Maintenance"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:330
350
  msgid ""
351
  "Over time the Daily Top 10 database grows in size, which reduces the "
352
  "performance of the plugin. Cleaning the database at regular intervals could "
353
  "improve performance, especially on high traffic blogs."
354
  msgstr ""
355
 
356
+ #: admin.inc.php:331
357
  msgid ""
358
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
359
  "everytime the job is rescheduled (i.e. you change the settings below). This "
360
  "causes the daily posts table to reset."
361
  msgstr ""
362
 
363
+ #: admin.inc.php:334
364
  msgid "Enable scheduled maintenance of daily tables:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:338
368
  msgid "Time to run maintenance"
369
  msgstr ""
370
 
371
+ #: admin.inc.php:341
372
  msgid "How often should the maintenance be run:"
373
  msgstr ""
374
 
375
+ #: admin.inc.php:345
376
  msgid "Daily"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:349
380
  msgid "Weekly"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:353
384
  msgid "Fortnightly"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:357
388
  msgid "Monthly"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:366
392
  msgid "The cron job has been scheduled. Maintenance will run "
393
  msgstr ""
394
 
395
+ #: admin.inc.php:371
396
  msgid "The cron job is missing. Please resave this page to add the job"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:376
400
  msgid "Maintenance is turned off"
401
  msgstr ""
402
 
403
+ #: admin.inc.php:384
404
  #, fuzzy
405
  msgid "Save Options"
406
  msgstr "Настройки плагина:"
407
 
408
+ #: admin.inc.php:385
409
  #, fuzzy
410
  msgid "Default Options"
411
  msgstr "Настройки плагина:"
412
 
413
+ #: admin.inc.php:385
414
  msgid "Do you want to set options to Default?"
415
  msgstr "Сбросить настройки плагина?"
416
 
417
+ #: admin.inc.php:389
418
  msgid "Reset count"
419
  msgstr "Сбросить статистику"
420
 
421
+ #: admin.inc.php:392
422
  msgid ""
423
  "This cannot be reversed. Make sure that your database has been backed up "
424
  "before proceeding"
426
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
427
  "убедитесь, что у вас есть копия вашей базы данных!"
428
 
429
+ #: admin.inc.php:395
430
  #, fuzzy
431
  msgid "Reset Popular Posts"
432
  msgstr "Популярные записи"
433
 
434
+ #: admin.inc.php:395
435
  msgid "Are you sure you want to reset the popular posts?"
436
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
437
 
438
+ #: admin.inc.php:396
439
  #, fuzzy
440
  msgid "Reset Daily Popular Posts"
441
  msgstr "Популярные сегодня записи"
442
 
443
+ #: admin.inc.php:396
444
  msgid "Are you sure you want to reset the daily popular posts?"
445
  msgstr ""
446
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
447
 
448
+ #: admin.inc.php:397
449
  msgid "Clear duplicates"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:397
453
  msgid "This will delete the duplicate entries in the tables. Proceed?"
454
  msgstr ""
455
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
456
 
457
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
458
  msgid "Popular Posts"
459
  msgstr "Популярные записи"
460
 
461
+ #: admin.inc.php:441 admin.inc.php:528
462
  msgid "Daily Popular Posts"
463
  msgstr "Популярные сегодня записи"
464
 
465
+ #: admin.inc.php:469
466
  msgid "Support the development"
467
  msgstr "Поддержать автора плагина"
468
 
469
+ #: admin.inc.php:477
470
  msgid "Enter amount in USD: "
471
  msgstr "Сколько вы готовы пожертвовать (в USD):"
472
 
473
+ #: admin.inc.php:481
474
  msgid "Send your donation to the author of"
475
  msgstr "Отправьте пожертвование автору"
476
 
477
+ #: admin.inc.php:487
478
  msgid "Follow us"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:493
482
  #, fuzzy
483
  msgid "Quick Links"
484
  msgstr "Полезные ссылки"
485
 
486
+ #: admin.inc.php:495
487
  #, fuzzy
488
  msgid "Top 10 plugin page"
489
  msgstr "страница плагина"
490
 
491
+ #: admin.inc.php:496
492
  msgid "Other plugins"
493
  msgstr "Другие плагины автора"
494
 
495
+ #: admin.inc.php:497
496
  msgid "Ajay's blog"
497
  msgstr "Блог Ajay"
498
 
499
+ #: admin.inc.php:498 top-10.php:899
500
  msgid "Support"
501
  msgstr "Поддержка (англ.)"
502
 
503
+ #: admin.inc.php:502
 
 
 
 
504
  msgid "Recent developments"
505
  msgstr "Последние разработки"
506
 
507
+ #: admin.inc.php:519 admin.inc.php:522
508
  #, fuzzy
509
  msgid "Top 10 Settings"
510
  msgstr "Настроки плагина"
511
 
512
+ #: admin.inc.php:519
513
  msgid "Top 10"
514
  msgstr "Топ 10 записей"
515
 
516
+ #: admin.inc.php:525
517
  #, fuzzy
518
  msgid "Overall Popular Posts"
519
  msgstr "Посмотреть все Популярные записи"
520
 
521
+ #: admin.inc.php:667
522
  msgid "Results"
523
  msgstr "Результаты"
524
 
525
+ #: admin.inc.php:669 admin.inc.php:675
526
  msgid "of"
527
  msgstr "из"
528
 
529
+ #: admin.inc.php:673
530
  msgid "Page"
531
  msgstr "Страница"
532
 
533
+ #: admin.inc.php:687
534
  msgid "View Daily Popular Posts"
535
  msgstr "Посмотреть все Популярные сегодня записи"
536
 
537
+ #: admin.inc.php:690 admin.inc.php:703
538
  msgid "Results per-page:"
539
  msgstr "Результатов на страницу:"
540
 
541
+ #: admin.inc.php:700
542
  msgid "View Overall Popular Posts"
543
  msgstr "Посмотреть все Популярные записи"
544
 
545
+ #: admin.inc.php:729
546
  msgid "Previous"
547
  msgstr "Предыдущая страница"
548
 
549
+ #: admin.inc.php:747
550
  msgid "Next"
551
  msgstr "Следующая страница"
552
 
553
+ #: admin.inc.php:788
554
  msgid "Daily Popular"
555
  msgstr "Популярные сегодня записи"
556
 
557
+ #: admin.inc.php:804
558
  msgid "Total / Today's Views"
559
  msgstr "Всего/Сегодня"
560
 
561
+ #: top-10.php:382
562
  msgid "Display the posts popular this week"
563
  msgstr "Отображать списки популярных записей за неделю"
564
 
565
+ #: top-10.php:396
566
  msgid "Title"
567
  msgstr ""
568
 
569
+ #: top-10.php:401
570
  msgid "No. of posts"
571
  msgstr ""
572
 
573
+ #: top-10.php:406
574
  msgid "Overall"
575
  msgstr ""
576
 
577
+ #: top-10.php:407
578
  msgid "Custom time period (Enter below)"
579
  msgstr ""
580
 
581
+ #: top-10.php:412
582
  msgid "Range in number of days (applies only to custom option above)"
583
  msgstr ""
584
 
585
+ #: top-10.php:416
586
  #, fuzzy
587
  msgid "Thumbnail options"
588
  msgstr "Настройки превью к записям:"
589
 
590
+ #: top-10.php:418
591
  #, fuzzy
592
  msgid "Thumbnails inline, before title"
593
  msgstr "Отображать превью к записи сразу перед заголовком"
594
 
595
+ #: top-10.php:419
596
  #, fuzzy
597
  msgid "Thumbnails inline, after title"
598
  msgstr "Отображать превью к записи сразу после заголовка"
599
 
600
+ #: top-10.php:420
601
  #, fuzzy
602
  msgid "Only thumbnails, no text"
603
  msgstr "Отображать только превью, без текста"
604
 
605
+ #: top-10.php:421
606
  #, fuzzy
607
  msgid "No thumbnails, only text."
608
  msgstr "Отображать только текст, без превью"
609
 
610
+ #: top-10.php:426
611
  #, fuzzy
612
  msgid " Show excerpt?"
613
  msgstr "Показывать текст записи в списке?"
614
 
615
+ #: top-10.php:501
616
  msgid "<h3>Popular Posts</h3>"
617
  msgstr "<h3>Популярные записи</h3>"
618
 
619
+ #: top-10.php:502
620
  msgid "<h3>Daily Popular</h3>"
621
  msgstr "<h3>Популярные сегодня записи</h3>"
622
 
623
+ #: top-10.php:503
624
  #, fuzzy
625
  msgid "No top posts yet"
626
  msgstr "Сбросить статистику популярных записей"
627
 
628
+ #: top-10.php:865
629
  msgid "Once Weekly"
630
  msgstr ""
631
 
632
+ #: top-10.php:866
633
  msgid "Once Fortnightly"
634
  msgstr ""
635
 
636
+ #: top-10.php:867
637
  msgid "Once Monthly"
638
  msgstr ""
639
 
640
+ #: top-10.php:887
641
  msgid "Settings"
642
  msgstr "Настроки плагина"
643
 
644
+ #: top-10.php:900
645
  msgid "Donate"
646
  msgstr "Сделать пожертвование"
647
 
648
+ #~ msgid "Follow @ajaydsouza on Twitter"
649
+ #~ msgstr "Следуй за @ajaydsouza в Twitter"
650
+
651
  #~ msgid "Tables cleaned of duplicate rows"
652
  #~ msgstr "Все повторяющиеся записи в статистике были удалены"
653
 
languages/tptn-ua_UA.mo CHANGED
Binary file
languages/tptn-ua_UA.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-28 23:26-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
@@ -15,53 +15,61 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.5\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,71 +77,71 @@ msgstr ""
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,18 +150,18 @@ msgstr ""
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,115 +173,115 @@ msgstr ""
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,7 +291,7 @@ msgstr ""
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,21 +301,21 @@ msgstr ""
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,98 +326,98 @@ msgstr ""
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
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Установки плагіна:"
398
 
399
- #: admin.inc.php:363
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Установки плагіна:"
403
 
404
- #: admin.inc.php:363
405
  msgid "Do you want to set options to Default?"
406
  msgstr "Скинути налаштування плагіна?"
407
 
408
- #: admin.inc.php:367
409
  msgid "Reset count"
410
  msgstr "Скинути статистику"
411
 
412
- #: admin.inc.php:370
413
  msgid ""
414
  "This cannot be reversed. Make sure that your database has been backed up "
415
  "before proceeding"
@@ -417,228 +425,227 @@ msgstr ""
417
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
418
  "переконайтесь, що у вас є копія вашої бази даних!"
419
 
420
- #: admin.inc.php:373
421
  #, fuzzy
422
  msgid "Reset Popular Posts"
423
  msgstr "Популярні записи"
424
 
425
- #: admin.inc.php:373
426
  msgid "Are you sure you want to reset the popular posts?"
427
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
428
 
429
- #: admin.inc.php:374
430
  #, fuzzy
431
  msgid "Reset Daily Popular Posts"
432
  msgstr "Популярні сьогодні записи"
433
 
434
- #: admin.inc.php:374
435
  msgid "Are you sure you want to reset the daily popular posts?"
436
  msgstr ""
437
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
438
 
439
- #: admin.inc.php:375
440
  msgid "Clear duplicates"
441
  msgstr ""
442
 
443
- #: admin.inc.php:375
444
  msgid "This will delete the duplicate entries in the tables. Proceed?"
445
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
446
 
447
- #: admin.inc.php:406 admin.inc.php:697 top-10.php:329
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:766
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:328
556
  msgid "Display the posts popular this week"
557
  msgstr ""
558
 
559
- #: top-10.php:342
560
  msgid "Title"
561
  msgstr ""
562
 
563
- #: top-10.php:347
564
  msgid "No. of posts"
565
  msgstr ""
566
 
567
- #: top-10.php:352
568
  msgid "Overall"
569
  msgstr ""
570
 
571
- #: top-10.php:353
572
  msgid "Custom time period (Enter below)"
573
  msgstr ""
574
 
575
- #: top-10.php:358
576
  msgid "Range in number of days (applies only to custom option above)"
577
  msgstr ""
578
 
579
- #: top-10.php:362
580
  #, fuzzy
581
  msgid "Thumbnail options"
582
  msgstr "Установки превью до записів:"
583
 
584
- #: top-10.php:364
585
  #, fuzzy
586
  msgid "Thumbnails inline, before title"
587
  msgstr "Відображати і превью, і текст"
588
 
589
- #: top-10.php:365
590
  #, fuzzy
591
  msgid "Thumbnails inline, after title"
592
  msgstr "Відображати і превью, і текст"
593
 
594
- #: top-10.php:366
595
  #, fuzzy
596
  msgid "Only thumbnails, no text"
597
  msgstr "Показувати тільки превью, без тексту"
598
 
599
- #: top-10.php:367
600
  #, fuzzy
601
  msgid "No thumbnails, only text."
602
  msgstr "Показувати лише текст, без превью"
603
 
604
- #: top-10.php:372
605
  #, fuzzy
606
  msgid " Show excerpt?"
607
  msgstr "Показувати текст запису в списку?"
608
 
609
- #: top-10.php:441
610
  msgid "<h3>Popular Posts</h3>"
611
  msgstr "<h3>Популярні записи</h3>"
612
 
613
- #: top-10.php:442
614
  msgid "<h3>Daily Popular</h3>"
615
  msgstr "<h3>Популярні сьогодні записи</h3>"
616
 
617
- #: top-10.php:443
618
  #, fuzzy
619
  msgid "No top posts yet"
620
  msgstr "Скинути статистику найпопулярніших записів"
621
 
622
- #: top-10.php:731
623
  msgid "Once Weekly"
624
  msgstr ""
625
 
626
- #: top-10.php:732
627
  msgid "Once Fortnightly"
628
  msgstr ""
629
 
630
- #: top-10.php:733
631
  msgid "Once Monthly"
632
  msgstr ""
633
 
634
- #: top-10.php:754
635
  msgid "Settings"
636
  msgstr "Налаштування плагіна"
637
 
638
- #: top-10.php:767
639
  msgid "Donate"
640
  msgstr "Зробити внесок"
641
 
 
 
 
642
  #~ msgid "Tables cleaned of duplicate rows"
643
  #~ msgstr "Все повторювані записи в статистиці були видалені"
644
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-12 07:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
15
  "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:79
19
  msgid "Scheduled maintenance enabled / modified"
20
  msgstr ""
21
 
22
+ #: admin.inc.php:83
23
  msgid "Scheduled maintenance disabled"
24
  msgstr ""
25
 
26
+ #: admin.inc.php:88
27
  msgid "Options saved successfully."
28
  msgstr "Установки збережені."
29
 
30
+ #: admin.inc.php:97
31
  msgid "Options set to Default."
32
  msgstr "Установки скинуті."
33
 
34
+ #: admin.inc.php:103
35
  msgid "Top 10 popular posts reset"
36
  msgstr "Скинути статистику найпопулярніших записів"
37
 
38
+ #: admin.inc.php:109
39
  msgid "Top 10 daily popular posts reset"
40
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
41
 
42
+ #: admin.inc.php:116
43
  msgid "Duplicate rows cleaned from tables"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:137
47
  msgid "General options"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:141
51
+ msgid "Enable Overall stats"
52
+ msgstr ""
53
+
54
+ #: admin.inc.php:146
55
+ msgid "Enable Daily stats"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:151
59
  msgid "Number of popular posts to display: "
60
  msgstr "Кількість Популярних записів у списку:"
61
 
62
+ #: admin.inc.php:155
63
  msgid "Daily Popular should contain views of how many days? "
64
  msgstr ""
65
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
66
 
67
+ #: admin.inc.php:159
68
  #, fuzzy
69
  msgid "Exclude Pages?"
70
  msgstr "Виключити Категорії:"
71
 
72
+ #: admin.inc.php:160
73
  msgid ""
74
  "Exclude Pages in display of Popular Posts? Number of views on Pages will "
75
  "continue to be counted."
77
  "Виключити сторінки зі списку Популярних записів? Кількість переглядів для "
78
  "сторінок продовжуватиме підраховуватися"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Exclude Categories: "
82
  msgstr "Виключити Категорії:"
83
 
84
+ #: admin.inc.php:178
85
  msgid ""
86
  "Comma separated list of category slugs. The field above has an autocomplete "
87
  "so simply start typing in the starting letters and it will prompt you with "
88
  "options"
89
  msgstr ""
90
 
91
+ #: admin.inc.php:183
92
  #, fuzzy
93
  msgid "Display number of views on:"
94
  msgstr "Показувати кількість переглядів запису?"
95
 
96
+ #: admin.inc.php:185
97
  msgid "Posts"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:186
101
  #, fuzzy
102
  msgid "Pages"
103
  msgstr "Сторінка"
104
 
105
+ #: admin.inc.php:189
106
  msgid "Always display latest post count"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:191
110
  msgid ""
111
  "This option uses JavaScript and will increase your page load time. Turn this "
112
  "off if you are not using caching plugins or are OK with displaying older "
113
  "cached counts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:194
117
  msgid "Always display latest post count in the daily lists"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:196
121
  #, fuzzy
122
  msgid "This option uses JavaScript and will increase your page load time"
123
  msgstr ""
124
  "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
125
  "і це може збільшити час завантаження сторінок"
126
 
127
+ #: admin.inc.php:199
128
  msgid "Track visits of authors on their own posts?"
129
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
130
 
131
+ #: admin.inc.php:202
132
  #, fuzzy
133
  msgid "Track visits of admins?"
134
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
135
 
136
+ #: admin.inc.php:205
137
  msgid "Display page views on Posts > All Posts in Admin"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:208
141
  msgid "Link to Top 10 plugin page"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:210
145
  #, fuzzy
146
  msgid ""
147
  "A link to the plugin is added as an extra list item to the list of popular "
150
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
151
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
152
 
153
+ #: admin.inc.php:217
154
  #, fuzzy
155
  msgid "Output Options"
156
  msgstr "Установки плагіна:"
157
 
158
+ #: admin.inc.php:220
159
  msgid "Format to display the count in: "
160
  msgstr ""
161
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
162
  "за день, за весь час для записів/сторінок:"
163
 
164
+ #: admin.inc.php:222
165
  #, fuzzy
166
  msgid ""
167
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
173
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
174
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
175
 
176
+ #: admin.inc.php:225
177
  msgid "Title of popular posts: "
178
  msgstr "Заголовок списку Популярних записів:"
179
 
180
+ #: admin.inc.php:228
181
  msgid "Title of daily popular posts: "
182
  msgstr "Заголовок списку Популярних сьогодні записів:"
183
 
184
+ #: admin.inc.php:231
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:235
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:239
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:243
197
  msgid "Show post excerpt in list?"
198
  msgstr "Показувати текст запису в списку?"
199
 
200
+ #: admin.inc.php:246
201
  msgid "Length of excerpt (in words): "
202
  msgstr "Довжина виведеного тексту (в словах):"
203
 
204
+ #: admin.inc.php:249
205
  msgid "Display number of page views in popular lists?"
206
  msgstr ""
207
  "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
208
 
209
+ #: admin.inc.php:252
210
  msgid "Customize the output:"
211
  msgstr "Установки оформлення списку:"
212
 
213
+ #: admin.inc.php:254
214
  msgid "HTML to display before the list of posts: "
215
  msgstr "HTML-тег, який використовується перед списком:"
216
 
217
+ #: admin.inc.php:257
218
  msgid "HTML to display before each list item: "
219
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
220
 
221
+ #: admin.inc.php:260
222
  msgid "HTML to display after each list item: "
223
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
224
 
225
+ #: admin.inc.php:263
226
  msgid "HTML to display after the list of posts: "
227
  msgstr "HTML-тег, який використовується після списку:"
228
 
229
+ #: admin.inc.php:266
230
  msgid "Post thumbnail options:"
231
  msgstr "Установки превью до записів:"
232
 
233
+ #: admin.inc.php:268
234
  msgid "Location of post thumbnail:"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:272
238
  #, fuzzy
239
  msgid "Display thumbnails inline with posts, before title"
240
  msgstr "Відображати і превью, і текст"
241
 
242
+ #: admin.inc.php:276
243
  #, fuzzy
244
  msgid "Display thumbnails inline with posts, after title"
245
  msgstr "Відображати і превью, і текст"
246
 
247
+ #: admin.inc.php:280
248
  msgid "Display only thumbnails, no text"
249
  msgstr "Показувати тільки превью, без тексту"
250
 
251
+ #: admin.inc.php:284
252
  msgid "Do not display thumbnails, only text."
253
  msgstr "Показувати лише текст, без превью"
254
 
255
+ #: admin.inc.php:288
256
  msgid "Maximum width of the thumbnail: "
257
  msgstr ""
258
 
259
+ #: admin.inc.php:291
260
  msgid "Maximum height of the thumbnail: "
261
  msgstr ""
262
 
263
+ #: admin.inc.php:294
264
  msgid "Use timthumb to generate thumbnails? "
265
  msgstr ""
266
 
267
+ #: admin.inc.php:295
268
  msgid ""
269
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
270
  "\">timthumb</a> will be used to generate thumbnails"
271
  msgstr ""
272
 
273
+ #: admin.inc.php:297
274
  #, fuzzy
275
  msgid "Post thumbnail meta field name: "
276
  msgstr "Установки превью до записів:"
277
 
278
+ #: admin.inc.php:298
279
  msgid ""
280
  "The value of this field should contain the image source and is set in the "
281
  "<em>Add New Post</em> screen"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:300
285
  #, fuzzy
286
  msgid ""
287
  "If the postmeta is not set, then should the plugin extract the first image "
291
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
292
  "так як буде створюватися зменшена копія зображення"
293
 
294
+ #: admin.inc.php:301
295
  #, fuzzy
296
  msgid ""
297
  "This could slow down the loading of your page if the first image in the "
301
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
302
  "так як буде створюватися зменшена копія зображення"
303
 
304
+ #: admin.inc.php:303
305
  msgid "Use default thumbnail? "
306
  msgstr ""
307
 
308
+ #: admin.inc.php:304
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."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:306
315
  msgid "Default thumbnail: "
316
  msgstr ""
317
 
318
+ #: admin.inc.php:307
319
  #, fuzzy
320
  msgid ""
321
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
326
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
327
  "замовчунням:"
328
 
329
+ #: admin.inc.php:313
330
  msgid "Custom Styles"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:316
334
  msgid "Custom CSS to add to header:"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:319
338
  msgid ""
339
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
340
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
341
  "available CSS classes to style."
342
  msgstr ""
343
 
344
+ #: admin.inc.php:326
345
  msgid "Maintenance"
346
  msgstr ""
347
 
348
+ #: admin.inc.php:330
349
  msgid ""
350
  "Over time the Daily Top 10 database grows in size, which reduces the "
351
  "performance of the plugin. Cleaning the database at regular intervals could "
352
  "improve performance, especially on high traffic blogs."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:331
356
  msgid ""
357
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
358
  "everytime the job is rescheduled (i.e. you change the settings below). This "
359
  "causes the daily posts table to reset."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:334
363
  msgid "Enable scheduled maintenance of daily tables:"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:338
367
  msgid "Time to run maintenance"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:341
371
  msgid "How often should the maintenance be run:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:345
375
  msgid "Daily"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:349
379
  msgid "Weekly"
380
  msgstr ""
381
 
382
+ #: admin.inc.php:353
383
  msgid "Fortnightly"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:357
387
  msgid "Monthly"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:366
391
  msgid "The cron job has been scheduled. Maintenance will run "
392
  msgstr ""
393
 
394
+ #: admin.inc.php:371
395
  msgid "The cron job is missing. Please resave this page to add the job"
396
  msgstr ""
397
 
398
+ #: admin.inc.php:376
399
  msgid "Maintenance is turned off"
400
  msgstr ""
401
 
402
+ #: admin.inc.php:384
403
  #, fuzzy
404
  msgid "Save Options"
405
  msgstr "Установки плагіна:"
406
 
407
+ #: admin.inc.php:385
408
  #, fuzzy
409
  msgid "Default Options"
410
  msgstr "Установки плагіна:"
411
 
412
+ #: admin.inc.php:385
413
  msgid "Do you want to set options to Default?"
414
  msgstr "Скинути налаштування плагіна?"
415
 
416
+ #: admin.inc.php:389
417
  msgid "Reset count"
418
  msgstr "Скинути статистику"
419
 
420
+ #: admin.inc.php:392
421
  msgid ""
422
  "This cannot be reversed. Make sure that your database has been backed up "
423
  "before proceeding"
425
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
426
  "переконайтесь, що у вас є копія вашої бази даних!"
427
 
428
+ #: admin.inc.php:395
429
  #, fuzzy
430
  msgid "Reset Popular Posts"
431
  msgstr "Популярні записи"
432
 
433
+ #: admin.inc.php:395
434
  msgid "Are you sure you want to reset the popular posts?"
435
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
436
 
437
+ #: admin.inc.php:396
438
  #, fuzzy
439
  msgid "Reset Daily Popular Posts"
440
  msgstr "Популярні сьогодні записи"
441
 
442
+ #: admin.inc.php:396
443
  msgid "Are you sure you want to reset the daily popular posts?"
444
  msgstr ""
445
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
446
 
447
+ #: admin.inc.php:397
448
  msgid "Clear duplicates"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:397
452
  msgid "This will delete the duplicate entries in the tables. Proceed?"
453
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
454
 
455
+ #: admin.inc.php:441 admin.inc.php:787 top-10.php:383
456
  msgid "Popular Posts"
457
  msgstr "Популярні записи"
458
 
459
+ #: admin.inc.php:441 admin.inc.php:528
460
  msgid "Daily Popular Posts"
461
  msgstr "Популярні сьогодні записи"
462
 
463
+ #: admin.inc.php:469
464
  msgid "Support the development"
465
  msgstr "Підтримати автора плагіна"
466
 
467
+ #: admin.inc.php:477
468
  msgid "Enter amount in USD: "
469
  msgstr "Скільки ви готові пожертвувати (в USD):"
470
 
471
+ #: admin.inc.php:481
472
  msgid "Send your donation to the author of"
473
  msgstr "Відправте пожертву автору"
474
 
475
+ #: admin.inc.php:487
476
  msgid "Follow us"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:493
480
  #, fuzzy
481
  msgid "Quick Links"
482
  msgstr "Корисні посилання"
483
 
484
+ #: admin.inc.php:495
485
  #, fuzzy
486
  msgid "Top 10 plugin page"
487
  msgstr "Сторінка плагіна"
488
 
489
+ #: admin.inc.php:496
490
  msgid "Other plugins"
491
  msgstr "Інші плагіни автора"
492
 
493
+ #: admin.inc.php:497
494
  msgid "Ajay's blog"
495
  msgstr "Блог Ajay"
496
 
497
+ #: admin.inc.php:498 top-10.php:899
498
  msgid "Support"
499
  msgstr "Підтримка (англ.)"
500
 
501
+ #: admin.inc.php:502
 
 
 
 
502
  msgid "Recent developments"
503
  msgstr "Останні розробки"
504
 
505
+ #: admin.inc.php:519 admin.inc.php:522
506
  #, fuzzy
507
  msgid "Top 10 Settings"
508
  msgstr "Налаштування плагіна"
509
 
510
+ #: admin.inc.php:519
511
  msgid "Top 10"
512
  msgstr "Топ 10 записів"
513
 
514
+ #: admin.inc.php:525
515
  #, fuzzy
516
  msgid "Overall Popular Posts"
517
  msgstr "Подивитися всі Популярні записи"
518
 
519
+ #: admin.inc.php:667
520
  msgid "Results"
521
  msgstr "Результати"
522
 
523
+ #: admin.inc.php:669 admin.inc.php:675
524
  msgid "of"
525
  msgstr "з"
526
 
527
+ #: admin.inc.php:673
528
  msgid "Page"
529
  msgstr "Сторінка"
530
 
531
+ #: admin.inc.php:687
532
  msgid "View Daily Popular Posts"
533
  msgstr "Подивитися всі Популярні сьогодні записи"
534
 
535
+ #: admin.inc.php:690 admin.inc.php:703
536
  msgid "Results per-page:"
537
  msgstr "Результатів на сторінку:"
538
 
539
+ #: admin.inc.php:700
540
  msgid "View Overall Popular Posts"
541
  msgstr "Подивитися всі Популярні записи"
542
 
543
+ #: admin.inc.php:729
544
  msgid "Previous"
545
  msgstr "Попередня сторінка"
546
 
547
+ #: admin.inc.php:747
548
  msgid "Next"
549
  msgstr "Наступна сторінка"
550
 
551
+ #: admin.inc.php:788
552
  msgid "Daily Popular"
553
  msgstr "Популярні сьогодні записи"
554
 
555
+ #: admin.inc.php:804
556
  msgid "Total / Today's Views"
557
  msgstr "Всього/Сьогодні"
558
 
559
+ #: top-10.php:382
560
  msgid "Display the posts popular this week"
561
  msgstr ""
562
 
563
+ #: top-10.php:396
564
  msgid "Title"
565
  msgstr ""
566
 
567
+ #: top-10.php:401
568
  msgid "No. of posts"
569
  msgstr ""
570
 
571
+ #: top-10.php:406
572
  msgid "Overall"
573
  msgstr ""
574
 
575
+ #: top-10.php:407
576
  msgid "Custom time period (Enter below)"
577
  msgstr ""
578
 
579
+ #: top-10.php:412
580
  msgid "Range in number of days (applies only to custom option above)"
581
  msgstr ""
582
 
583
+ #: top-10.php:416
584
  #, fuzzy
585
  msgid "Thumbnail options"
586
  msgstr "Установки превью до записів:"
587
 
588
+ #: top-10.php:418
589
  #, fuzzy
590
  msgid "Thumbnails inline, before title"
591
  msgstr "Відображати і превью, і текст"
592
 
593
+ #: top-10.php:419
594
  #, fuzzy
595
  msgid "Thumbnails inline, after title"
596
  msgstr "Відображати і превью, і текст"
597
 
598
+ #: top-10.php:420
599
  #, fuzzy
600
  msgid "Only thumbnails, no text"
601
  msgstr "Показувати тільки превью, без тексту"
602
 
603
+ #: top-10.php:421
604
  #, fuzzy
605
  msgid "No thumbnails, only text."
606
  msgstr "Показувати лише текст, без превью"
607
 
608
+ #: top-10.php:426
609
  #, fuzzy
610
  msgid " Show excerpt?"
611
  msgstr "Показувати текст запису в списку?"
612
 
613
+ #: top-10.php:501
614
  msgid "<h3>Popular Posts</h3>"
615
  msgstr "<h3>Популярні записи</h3>"
616
 
617
+ #: top-10.php:502
618
  msgid "<h3>Daily Popular</h3>"
619
  msgstr "<h3>Популярні сьогодні записи</h3>"
620
 
621
+ #: top-10.php:503
622
  #, fuzzy
623
  msgid "No top posts yet"
624
  msgstr "Скинути статистику найпопулярніших записів"
625
 
626
+ #: top-10.php:865
627
  msgid "Once Weekly"
628
  msgstr ""
629
 
630
+ #: top-10.php:866
631
  msgid "Once Fortnightly"
632
  msgstr ""
633
 
634
+ #: top-10.php:867
635
  msgid "Once Monthly"
636
  msgstr ""
637
 
638
+ #: top-10.php:887
639
  msgid "Settings"
640
  msgstr "Налаштування плагіна"
641
 
642
+ #: top-10.php:900
643
  msgid "Donate"
644
  msgstr "Зробити внесок"
645
 
646
+ #~ msgid "Follow @ajaydsouza on Twitter"
647
+ #~ msgstr "Йди за @ajaydsouza в Twitter"
648
+
649
  #~ msgid "Tables cleaned of duplicate rows"
650
  #~ msgstr "Все повторювані записи в статистиці були видалені"
651
 
readme.txt CHANGED
@@ -45,25 +45,32 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
45
 
46
  == Upgrade Notice ==
47
 
48
- = 1.9.4 =
49
- * IMPORTANT security update: Fixed possible XSS vulnerability; bug fixes
 
50
 
51
 
52
  == Changelog ==
53
 
 
 
 
 
 
 
 
54
  = 1.9.4 =
55
  * Fixes a bug in the widget introduces in 1.9.3
56
 
57
-
58
  = 1.9.3 =
59
  * Important security update: Fixed possible XSS vulnerability
60
  * Fixed: Exclude categories was not excluding posts correctly
61
- * Added: Classes `tptn_posts` and `tptn_posts_daily` for the widgets that let you easily style the lists
62
 
63
  = 1.9.2 =
64
- * 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"
65
- * Added: New classes **tptn_counter** and **tptn_list_count** to style the displayed count
66
- * 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.
67
  * Fixed: PHP notices when WP_DEBUG is turned on
68
  * Modified: Updated timthumb.php
69
 
@@ -73,12 +80,12 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
73
  * Modified: Extra check for post featured thumbnails to ensure that the src is not missed
74
 
75
  = 1.9 =
76
- * Added: Option to use timthumb to resize thumbnails
77
- * Added: New variable **%overallcount%** that will display the total pageviews on the blog across all posts
78
- * Added: Post thumbnails are now properly resized based on width and height settings in the Top 10 settings page
79
- * Added: Customise what to display when there are no top posts detected
80
- * Added: New scheduled maintenance to clear up daily tables and optimise performance
81
- * Added: Custom CSS code to style the output. Check out the available styles in the <a href="http://wordpress.org/extend/plugins/top-10/faq/">FAQ</a>.
82
  * Modified: New "default.png" file based on from KDE’s <a href="http://www.oxygen-icons.org/">Oxygen icon set</a>
83
  * Modified: Dashboard list of posts now displays all the top posts and pages instead of the filtered list based on Settings.
84
  * Modified: Dashboard widget now has options to customise the widget. Old widgets have been deleted
@@ -89,32 +96,32 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
89
  * Fixed: Dashboard widgets linking
90
 
91
  = 1.8 =
92
- * Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
93
- * Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
94
- * Added: Option to display thumbnails before or after the title
95
- * Added: Option to not display thumbnails instead of the default thumbnail
96
- * Added: Counts are now neatly formatted with commas
97
  * Modified: Minor tweaks to improve performance
98
 
99
  = 1.7.6 =
100
  * Fixed: Bug with Daily posts widget created an extra header tag in certain themes
101
 
102
  = 1.7.5 =
103
- * Added: Now supports multiple WordPress widgets
104
 
105
  = 1.7 =
106
- * Added: Exclude posts in the top lists from select categories
107
  * Modified: Performance improvements
108
  * Modified: Better compatibility with the latest versions of WordPress. If you are using the sidebar widgets, please readd them to your theme under Appearance > Widgets
109
 
110
  = 1.6.3 =
111
  * Fixed: PHP errors on certain installs
112
- * Added: Dutch language
113
 
114
  = 1.6.2 =
115
  * Fixed: Multiple rows being created for same ID
116
  * Fixed: Counter display
117
- * Added: New button to clear the duplicate rows in the tables
118
  * Fixed: Top 10 should be lighter on the server now
119
 
120
  = 1.6.1 =
@@ -124,13 +131,13 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
124
  * Fixed: Display of caching plugin compliant daily top posts lists
125
 
126
  = 1.6 =
127
- * Added: Added support for excerpts and detection of first image in the post
128
- * Added: Daily posts are tracked using the blog time instead of server time
129
  * Fixed: On the first visit, display 1 instead of 0
130
  * Fixed: Fixed uninstall script
131
 
132
  = 1.5.3 =
133
- * Added: You can now use HTML in the counter display
134
 
135
  = 1.5.2 =
136
  * Fixed: Fixed display of post thumbnails using postmeta field
45
 
46
  == Upgrade Notice ==
47
 
48
+ = 1.9.5 =
49
+ * New: Disable daily or overall counters, bug fixes;
50
+ Check out the Changelog for complete details
51
 
52
 
53
  == Changelog ==
54
 
55
+ = 1.9.5 =
56
+ * New: CSS class `tptn_title` that can be used to style the title of the posts
57
+ * New: Option to disable Daily or Overall counters
58
+ * Fixed: Counter to work with different directory structures. *Thanks Nathan for the fix*
59
+ * Fixed: To make it work with W3 Total Cache. *Thanks Angelo for the fix*
60
+ * Modified: timthumb will now work if you have JetPack Proton activated
61
+
62
  = 1.9.4 =
63
  * Fixes a bug in the widget introduces in 1.9.3
64
 
 
65
  = 1.9.3 =
66
  * Important security update: Fixed possible XSS vulnerability
67
  * Fixed: Exclude categories was not excluding posts correctly
68
+ * New: Classes `tptn_posts` and `tptn_posts_daily` for the widgets that let you easily style the lists
69
 
70
  = 1.9.2 =
71
+ * New: 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"
72
+ * New: New classes **tptn_counter** and **tptn_list_count** to style the displayed count
73
+ * New: 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.
74
  * Fixed: PHP notices when WP_DEBUG is turned on
75
  * Modified: Updated timthumb.php
76
 
80
  * Modified: Extra check for post featured thumbnails to ensure that the src is not missed
81
 
82
  = 1.9 =
83
+ * New: Option to use timthumb to resize thumbnails
84
+ * New: New variable **%overallcount%** that will display the total pageviews on the blog across all posts
85
+ * New: Post thumbnails are now properly resized based on width and height settings in the Top 10 settings page
86
+ * New: Customise what to display when there are no top posts detected
87
+ * New: New scheduled maintenance to clear up daily tables and optimise performance
88
+ * New: Custom CSS code to style the output. Check out the available styles in the <a href="http://wordpress.org/extend/plugins/top-10/faq/">FAQ</a>.
89
  * Modified: New "default.png" file based on from KDE’s <a href="http://www.oxygen-icons.org/">Oxygen icon set</a>
90
  * Modified: Dashboard list of posts now displays all the top posts and pages instead of the filtered list based on Settings.
91
  * Modified: Dashboard widget now has options to customise the widget. Old widgets have been deleted
96
  * Fixed: Dashboard widgets linking
97
 
98
  = 1.8 =
99
+ * New: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
100
+ * New: Thumbnail settings now reflect max width and max height instead of fixed width and height
101
+ * New: Option to display thumbnails before or after the title
102
+ * New: Option to not display thumbnails instead of the default thumbnail
103
+ * New: Counts are now neatly formatted with commas
104
  * Modified: Minor tweaks to improve performance
105
 
106
  = 1.7.6 =
107
  * Fixed: Bug with Daily posts widget created an extra header tag in certain themes
108
 
109
  = 1.7.5 =
110
+ * New: Now supports multiple WordPress widgets
111
 
112
  = 1.7 =
113
+ * New: Exclude posts in the top lists from select categories
114
  * Modified: Performance improvements
115
  * Modified: Better compatibility with the latest versions of WordPress. If you are using the sidebar widgets, please readd them to your theme under Appearance > Widgets
116
 
117
  = 1.6.3 =
118
  * Fixed: PHP errors on certain installs
119
+ * New: Dutch language
120
 
121
  = 1.6.2 =
122
  * Fixed: Multiple rows being created for same ID
123
  * Fixed: Counter display
124
+ * New: New button to clear the duplicate rows in the tables
125
  * Fixed: Top 10 should be lighter on the server now
126
 
127
  = 1.6.1 =
131
  * Fixed: Display of caching plugin compliant daily top posts lists
132
 
133
  = 1.6 =
134
+ * New: Added support for excerpts and detection of first image in the post
135
+ * New: Daily posts are tracked using the blog time instead of server time
136
  * Fixed: On the first visit, display 1 instead of 0
137
  * Fixed: Fixed uninstall script
138
 
139
  = 1.5.3 =
140
+ * New: You can now use HTML in the counter display
141
 
142
  = 1.5.2 =
143
  * Fixed: Fixed display of post thumbnails using postmeta field
screenshot-1.png CHANGED
Binary file
timthumb/timthumb.php CHANGED
@@ -133,6 +133,9 @@ if(! isset($ALLOWED_SITES)){
133
  'imgur.com',
134
  'imageshack.us',
135
  'tinypic.com',
 
 
 
136
  );
137
  }
138
  // -------------------------------------------------------------
133
  'imgur.com',
134
  'imageshack.us',
135
  'tinypic.com',
136
+ 'wordpress.com',
137
+ 'wordpress.org',
138
+ 'wp.com',
139
  );
140
  }
141
  // -------------------------------------------------------------
top-10-addcount.js.php CHANGED
@@ -5,22 +5,12 @@ Header("content-type: application/x-javascript");
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();
26
  function tptn_inc_count() {
@@ -29,10 +19,11 @@ function tptn_inc_count() {
29
  $top_ten_daily = $wpdb->prefix . "top_ten_daily";
30
 
31
  $id = intval($_GET['top_ten_id']);
 
32
  if($id > 0) {
33
- $wpdb->query("INSERT INTO $table_name (postnumber, cntaccess) VALUES('$id', '1') ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ");
34
  $current_date = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
35
- $wpdb->query("INSERT INTO $top_ten_daily (postnumber, cntaccess, dp_date) VALUES('$id', '1', '$current_date' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ");
36
  }
37
  }
38
 
5
  // Force a short-init since we just need core WP, not the entire framework stack
6
  define( 'SHORTINIT', true );
7
 
8
+ // bootstrap WordPress
9
+ require_once('wp-bootstrap.php');
 
 
 
 
 
 
 
 
 
10
 
11
  // Include the now instantiated global $wpdb Class for use
12
  global $wpdb;
13
 
 
14
  // Ajax Increment Counter
15
  tptn_inc_count();
16
  function tptn_inc_count() {
19
  $top_ten_daily = $wpdb->prefix . "top_ten_daily";
20
 
21
  $id = intval($_GET['top_ten_id']);
22
+ $activate_counter = intval($_GET['activate_counter']);
23
  if($id > 0) {
24
+ if ( ($activate_counter == 1) || ($activate_counter == 11) ) $wpdb->query("INSERT INTO $table_name (postnumber, cntaccess) VALUES('$id', '1') ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ");
25
  $current_date = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
26
+ if ( $activate_counter == 10 ) $wpdb->query("INSERT INTO $top_ten_daily (postnumber, cntaccess, dp_date) VALUES('$id', '1', '$current_date' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ");
27
  }
28
  }
29
 
top-10-counter.js.php CHANGED
@@ -2,17 +2,8 @@
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;
2
  //"top-10-counter.js.php" Display number of page views
3
  Header("content-type: application/x-javascript");
4
 
5
+ // bootstrap WordPress
6
+ require_once('wp-bootstrap.php');
 
 
 
 
 
 
 
 
 
7
 
8
  // Include the now instantiated global $wpdb Class for use
9
  global $wpdb;
top-10-daily.js.php CHANGED
@@ -3,12 +3,8 @@
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 Top 10 Daily list
3
  Header("content-type: application/x-javascript");
4
 
5
  if (!function_exists('add_action')) {
6
+ // bootstrap WordPress
7
+ require_once('wp-bootstrap.php');
 
 
 
 
8
  }
9
 
10
  // Display Top 10 Daily list
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.9.4
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
@@ -12,33 +12,19 @@ if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
12
  define('ALD_TPTN_DIR', dirname(__FILE__));
13
  define('TPTN_LOCAL_NAME', 'tptn');
14
 
15
- // Pre-2.6 compatibility
16
- if ( ! defined( 'WP_CONTENT_URL' ) )
17
- define( 'WP_CONTENT_URL', get_option( 'siteurl' ) . '/wp-content' );
18
- if ( ! defined( 'WP_CONTENT_DIR' ) )
19
- define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' );
20
- if ( ! defined( 'WP_PLUGIN_URL' ) )
21
- define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
22
- if ( ! defined( 'WP_PLUGIN_DIR' ) )
23
- define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' );
24
-
25
  // Guess the location
26
- $tptn_path = WP_PLUGIN_DIR.'/'.plugin_basename(dirname(__FILE__));
27
- $tptn_url = WP_PLUGIN_URL.'/'.plugin_basename(dirname(__FILE__));
28
- $ald_url = WP_PLUGIN_URL.'/'.plugin_basename(dirname(__FILE__));
29
-
30
- if (!function_exists('add_action')) {
31
- $wp_root = '../../..';
32
- if (file_exists($wp_root.'/wp-load.php')) {
33
- require_once($wp_root.'/wp-load.php');
34
- } else {
35
- require_once($wp_root.'/wp-config.php');
36
- }
37
- }
38
 
39
  global $tptn_db_version;
40
  $tptn_db_version = "3.0";
41
 
 
 
 
 
 
 
42
  function ald_tptn_init() {
43
  //* Begin Localization Code */
44
  $tc_localizationName = TPTN_LOCAL_NAME;
@@ -56,8 +42,13 @@ global $tptn_settings;
56
  $tptn_settings = tptn_read_options();
57
 
58
 
59
- // Update post views
60
- add_filter('the_content','tptn_add_viewed_count');
 
 
 
 
 
61
  function tptn_add_viewed_count($content) {
62
  global $post, $wpdb, $single,$tptn_url,$tptn_path;
63
  $table_name = $wpdb->prefix . "top_ten";
@@ -75,8 +66,11 @@ function tptn_add_viewed_count($content) {
75
  if ( ($current_user_admin) && (!$tptn_settings['track_admins']) ) $include_code = false;
76
 
77
  if ($include_code) {
 
78
  $id = intval($post->ID);
79
- $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'"></script>';
 
 
80
  return $content.$output;
81
  } else {
82
  return $content;
@@ -85,9 +79,16 @@ function tptn_add_viewed_count($content) {
85
  return $content;
86
  }
87
  }
 
88
 
89
 
90
- // Function to add count to content
 
 
 
 
 
 
91
  function tptn_pc_content($content) {
92
  global $single, $post,$tptn_url,$tptn_path;
93
  global $tptn_settings;
@@ -103,7 +104,14 @@ function tptn_pc_content($content) {
103
  }
104
  add_filter('the_content', 'tptn_pc_content');
105
 
106
- // Function to manually display count
 
 
 
 
 
 
 
107
  function echo_tptn_post_count($echo=1) {
108
  global $post,$tptn_url,$tptn_path;
109
  global $tptn_settings;
@@ -113,7 +121,7 @@ function echo_tptn_post_count($echo=1) {
113
  $nonce = wp_create_nonce($nonce_action);
114
 
115
  if ($tptn_settings['dynamic_post_count']) {
116
- $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>';
117
  } else {
118
  $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'">'.get_tptn_post_count($id).'</div>';
119
  }
@@ -125,7 +133,14 @@ function echo_tptn_post_count($echo=1) {
125
  }
126
  }
127
 
128
- // Return the post count
 
 
 
 
 
 
 
129
  function get_tptn_post_count($id) {
130
  global $wpdb;
131
 
@@ -169,7 +184,14 @@ function get_tptn_post_count($id) {
169
  }
170
  }
171
 
172
- // Function to return popular posts
 
 
 
 
 
 
 
173
  function tptn_pop_posts( $args ) {
174
  $defaults = array(
175
  'is_widget' => FALSE,
@@ -191,6 +213,18 @@ function tptn_pop_posts( $args ) {
191
  }
192
  }
193
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $show_excerpt = false, $post_thumb_op = 'text_only', $daily_range = '1' ) {
195
  global $wpdb, $siteurl, $tableposts, $id;
196
  if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
@@ -229,9 +263,9 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
229
 
230
  if (!$widget) {
231
  if (!$daily) {
232
- $output .= '<div id="tptn_related">'.$tptn_settings['title'];
233
  } else {
234
- $output .= '<div id="tptn_related_daily">'.$tptn_settings['title_daily'];
235
  }
236
  } else {
237
  if (!$daily) {
@@ -259,13 +293,13 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
259
 
260
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark" class="tptn_link">'; // Add beginning of link
261
  if ($post_thumb_op=='after') {
262
- $output .= $title; // Add title if post thumbnail is to be displayed after
263
  }
264
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
265
  $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');
266
  }
267
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
268
- $output .= $title; // Add title when required by settings
269
  }
270
  $output .= '</a>'; // Close the link
271
  if ($show_excerpt) {
@@ -288,12 +322,24 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
288
  return $output;
289
  }
290
 
291
- // Function to show popular posts
 
 
 
 
 
 
292
  function tptn_show_pop_posts() {
293
  echo tptn_pop_posts('daily=0&is_widget=0');
294
  }
295
 
296
- // Function to show daily popular posts
 
 
 
 
 
 
297
  function tptn_show_daily_pop_posts() {
298
  global $tptn_url;
299
  global $tptn_settings;
@@ -304,8 +350,13 @@ function tptn_show_daily_pop_posts() {
304
  }
305
  }
306
 
307
- // Header function
308
- add_action('wp_head','tptn_header');
 
 
 
 
 
309
  function tptn_header() {
310
  global $wpdb, $post, $single;
311
 
@@ -317,10 +368,13 @@ function tptn_header() {
317
  echo '<style type="text/css">'.$tptn_custom_CSS.'</style>';
318
  }
319
  }
 
320
 
321
- /*********************************************************************
322
- * WordPress Widgets *
323
- ********************************************************************/
 
 
324
  class WidgetTopTen extends WP_Widget
325
  {
326
  function WidgetTopTen()
@@ -411,8 +465,7 @@ class WidgetTopTen extends WP_Widget
411
  $output .= tptn_pop_posts('daily=1&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
412
  }
413
  } else {
414
- // $output .= tptn_pop_posts('daily=0&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
415
- $output .= get_tptn_pop_posts( $daily = 0 , $widget = 1, $limit, $show_excerpt, $post_thumb_op, $daily_range );
416
  }
417
 
418
  $output .= $after_widget;
@@ -422,7 +475,12 @@ class WidgetTopTen extends WP_Widget
422
  } //ending function widget
423
  }
424
 
425
- // Initialise the plugin
 
 
 
 
 
426
  function init_tptn(){
427
 
428
  if (function_exists('register_widget')) {
@@ -432,10 +490,12 @@ function init_tptn(){
432
  add_action('init', 'init_tptn', 1);
433
 
434
 
435
- /*********************************************************************
436
- * Default options *
437
- ********************************************************************/
438
- // Default Options
 
 
439
  function tptn_default_options() {
440
  global $tptn_url;
441
  $title = __('<h3>Popular Posts</h3>',TPTN_LOCAL_NAME);
@@ -482,11 +542,19 @@ function tptn_default_options() {
482
  'cron_hour' => '0', // Cron Hour
483
  'cron_min' => '0', // Cron Minute
484
  'cron_recurrence' => 'weekly', // Frequency of cron
 
 
485
  );
486
  return $tptn_settings;
487
  }
488
 
489
- // Function to read options from the database
 
 
 
 
 
 
490
  function tptn_read_options() {
491
 
492
  // Upgrade table code
@@ -515,7 +583,13 @@ function tptn_read_options() {
515
 
516
  }
517
 
518
- // Create tables to store pageviews
 
 
 
 
 
 
519
  function tptn_install() {
520
  global $wpdb;
521
  global $tptn_db_version;
@@ -574,6 +648,12 @@ function tptn_install() {
574
  if (function_exists('register_activation_hook')) {
575
  register_activation_hook(__FILE__,'tptn_install');
576
  }
 
 
 
 
 
 
577
  function tptn_update_db_check() {
578
  global $tptn_db_version;
579
  if (get_site_option('tptn_db_version') != $tptn_db_version) {
@@ -583,7 +663,13 @@ function tptn_update_db_check() {
583
  add_action('plugins_loaded', 'tptn_update_db_check');
584
 
585
 
586
- // Function to delete all rows in the posts table
 
 
 
 
 
 
587
  function tptn_trunc_count($daily = false) {
588
  global $wpdb;
589
  $table_name = $wpdb->prefix . "top_ten";
@@ -596,12 +682,21 @@ function tptn_trunc_count($daily = false) {
596
  /*********************************************************************
597
  * Utility Functions *
598
  ********************************************************************/
599
- // Filter function to resize post thumbnail. Filters out tp10_postimage
 
 
 
 
 
 
 
 
 
600
  function tptn_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb) {
601
- global $ald_url;
602
 
603
  if ($thumb_timthumb) {
604
- $new_pi = $ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
605
  } else {
606
  $new_pi = $postimage;
607
  }
@@ -609,10 +704,17 @@ function tptn_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timth
609
  }
610
  add_filter('tptn_postimage', 'tptn_scale_thumbs', 10, 4);
611
 
612
- // Function to get the post thumbnail
 
 
 
 
 
 
 
613
  function tptn_get_the_post_thumbnail($args = array()) {
614
 
615
- global $ald_url;
616
  $defaults = array(
617
  'postid' => '',
618
  'thumb_height' => '50', // Max height of thumbnails
@@ -644,7 +746,6 @@ function tptn_get_the_post_thumbnail($args = array()) {
644
  $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb );
645
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
646
 
647
- // $output .= get_the_post_thumbnail($result->ID, array($thumb_width,$thumb_height), array('title' => $title,'alt' => $title, 'class' => $class, 'border' => '0'));
648
  } else {
649
  $postimage = get_post_meta($result->ID, $thumb_meta, true); // Check
650
  if (!$postimage && $scan_images) {
@@ -660,7 +761,7 @@ function tptn_get_the_post_thumbnail($args = array()) {
660
  if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
661
  if ($postimage) {
662
  if ($thumb_timthumb) {
663
- $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.'" />';
664
  } else {
665
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
666
  }
@@ -670,7 +771,15 @@ function tptn_get_the_post_thumbnail($args = array()) {
670
  return $output;
671
  }
672
 
673
- // Function to create an excerpt for the post
 
 
 
 
 
 
 
 
674
  function tptn_excerpt($postid,$excerpt_length){
675
  $content = get_post($postid)->post_excerpt;
676
  if ($content=='') $content = get_post($postid)->post_content;
@@ -696,13 +805,27 @@ function tptn_excerpt($postid,$excerpt_length){
696
  /*********************************************************************
697
  * Cron Functions *
698
  ********************************************************************/
699
- // Function to truncate daily run
700
- add_action('ald_tptn_hook', 'ald_tptn');
 
 
 
 
701
  function ald_tptn() {
702
  tptn_trunc_count(true);
703
  }
 
704
 
705
- // Function to enable run or actions
 
 
 
 
 
 
 
 
 
706
  function tptn_enable_run($hour, $min, $recurrence) {
707
  if (function_exists('wp_schedule_event')) {
708
  // Invoke WordPress internal cron
@@ -715,7 +838,13 @@ function tptn_enable_run($hour, $min, $recurrence) {
715
  }
716
  }
717
 
718
- // Function to disable daily run or actions
 
 
 
 
 
 
719
  function tptn_disable_run() {
720
  if (function_exists('wp_schedule_event')) {
721
  if (wp_next_scheduled('ald_tptn_hook')) {
@@ -724,8 +853,13 @@ function tptn_disable_run() {
724
  }
725
  }
726
 
727
- // Function to add weekly and fortnightly recurrences - Sample Code courtesy http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/
728
  if (!function_exists('ald_more_reccurences')) {
 
 
 
 
 
 
729
  function ald_more_reccurences() {
730
  return array(
731
  'weekly' => array('interval' => 604800, 'display' => __( 'Once Weekly', TPTN_LOCAL_NAME )),
@@ -740,7 +874,6 @@ add_filter('cron_schedules', 'ald_more_reccurences');
740
  /*********************************************************************
741
  * Admin interface *
742
  ********************************************************************/
743
-
744
  // This function adds an Options page in WP Admin
745
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
746
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9.5
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
12
  define('ALD_TPTN_DIR', dirname(__FILE__));
13
  define('TPTN_LOCAL_NAME', 'tptn');
14
 
 
 
 
 
 
 
 
 
 
 
15
  // Guess the location
16
+ $tptn_path = plugin_dir_path(__FILE__);
17
+ $tptn_url = plugins_url().'/'.plugin_basename(dirname(__FILE__));
 
 
 
 
 
 
 
 
 
 
18
 
19
  global $tptn_db_version;
20
  $tptn_db_version = "3.0";
21
 
22
+ /**
23
+ * Function to load translation files.
24
+ *
25
+ * @access public
26
+ * @return void
27
+ */
28
  function ald_tptn_init() {
29
  //* Begin Localization Code */
30
  $tc_localizationName = TPTN_LOCAL_NAME;
42
  $tptn_settings = tptn_read_options();
43
 
44
 
45
+ /**
46
+ * Filter for content to update post views.
47
+ *
48
+ * @access public
49
+ * @param string $content Post content
50
+ * @return string Filtered content
51
+ */
52
  function tptn_add_viewed_count($content) {
53
  global $post, $wpdb, $single,$tptn_url,$tptn_path;
54
  $table_name = $wpdb->prefix . "top_ten";
66
  if ( ($current_user_admin) && (!$tptn_settings['track_admins']) ) $include_code = false;
67
 
68
  if ($include_code) {
69
+ $output = '';
70
  $id = intval($post->ID);
71
+ $activate_counter = ($tptn_settings['activate_overall'] ? 1 : 0);
72
+ $activate_counter = $activate_counter + ($tptn_settings['activate_daily'] ? 10 : 0 );
73
+ if ($activate_counter>0) $output = '<script type="text/javascript">jQuery.ajax("' .$tptn_url. '/top-10-addcount.js.php?top_ten_id=' .$id. '&activate_counter=' . $activate_counter . '&top10_rnd=" + (new Date()).getTime() + "-" + Math.floor(Math.random()*100000));</script>';
74
  return $content.$output;
75
  } else {
76
  return $content;
79
  return $content;
80
  }
81
  }
82
+ add_filter('the_content','tptn_add_viewed_count');
83
 
84
 
85
+ /**
86
+ * Filter to add count to content.
87
+ *
88
+ * @access public
89
+ * @param string $content
90
+ * @return string
91
+ */
92
  function tptn_pc_content($content) {
93
  global $single, $post,$tptn_url,$tptn_path;
94
  global $tptn_settings;
104
  }
105
  add_filter('the_content', 'tptn_pc_content');
106
 
107
+
108
+ /**
109
+ * Function to manually display count.
110
+ *
111
+ * @access public
112
+ * @param int|boolean $echo (default: 1)
113
+ * @return string
114
+ */
115
  function echo_tptn_post_count($echo=1) {
116
  global $post,$tptn_url,$tptn_path;
117
  global $tptn_settings;
121
  $nonce = wp_create_nonce($nonce_action);
122
 
123
  if ($tptn_settings['dynamic_post_count']) {
124
+ $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'"><script type="text/javascript" data-cfasync="false" src="'.$tptn_url.'/top-10-counter.js.php?top_ten_id='.$id.'&amp;_wpnonce='.$nonce.'"></script></div>';
125
  } else {
126
  $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'">'.get_tptn_post_count($id).'</div>';
127
  }
133
  }
134
  }
135
 
136
+
137
+ /**
138
+ * Return the post count.
139
+ *
140
+ * @access public
141
+ * @param int|string $id Post ID
142
+ * @return int Post count
143
+ */
144
  function get_tptn_post_count($id) {
145
  global $wpdb;
146
 
184
  }
185
  }
186
 
187
+
188
+ /**
189
+ * Function to return popular posts.
190
+ *
191
+ * @access public
192
+ * @param mixed $args
193
+ * @return void
194
+ */
195
  function tptn_pop_posts( $args ) {
196
  $defaults = array(
197
  'is_widget' => FALSE,
213
  }
214
  }
215
 
216
+ /**
217
+ * Get the popular posts.
218
+ *
219
+ * @access public
220
+ * @param bool $daily (default: false)
221
+ * @param bool $widget (default: false)
222
+ * @param string $limit (default: '10')
223
+ * @param bool $show_excerpt (default: false)
224
+ * @param string $post_thumb_op (default: 'text_only')
225
+ * @param string $daily_range (default: '1')
226
+ * @return string Output of posts
227
+ */
228
  function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $show_excerpt = false, $post_thumb_op = 'text_only', $daily_range = '1' ) {
229
  global $wpdb, $siteurl, $tableposts, $id;
230
  if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
263
 
264
  if (!$widget) {
265
  if (!$daily) {
266
+ $output .= '<div id="tptn_related" class="tptn_posts">'.apply_filters('tptn_heading_title',$tptn_settings['title']);
267
  } else {
268
+ $output .= '<div id="tptn_related_daily" class="tptn_posts_daily">'.apply_filters('tptn_heading_title',$tptn_settings['title_daily']);
269
  }
270
  } else {
271
  if (!$daily) {
293
 
294
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark" class="tptn_link">'; // Add beginning of link
295
  if ($post_thumb_op=='after') {
296
+ $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
297
  }
298
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
299
  $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');
300
  }
301
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
302
+ $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
303
  }
304
  $output .= '</a>'; // Close the link
305
  if ($show_excerpt) {
322
  return $output;
323
  }
324
 
325
+
326
+ /**
327
+ * Function to echo popular posts.
328
+ *
329
+ * @access public
330
+ * @return void
331
+ */
332
  function tptn_show_pop_posts() {
333
  echo tptn_pop_posts('daily=0&is_widget=0');
334
  }
335
 
336
+
337
+ /**
338
+ * Function to show daily popular posts.
339
+ *
340
+ * @access public
341
+ * @return void
342
+ */
343
  function tptn_show_daily_pop_posts() {
344
  global $tptn_url;
345
  global $tptn_settings;
350
  }
351
  }
352
 
353
+
354
+ /**
355
+ * Function to add CSS to header.
356
+ *
357
+ * @access public
358
+ * @return void
359
+ */
360
  function tptn_header() {
361
  global $wpdb, $post, $single;
362
 
368
  echo '<style type="text/css">'.$tptn_custom_CSS.'</style>';
369
  }
370
  }
371
+ add_action('wp_head','tptn_header');
372
 
373
+ /**
374
+ * Top 10 Widget.
375
+ *
376
+ * @extends WP_Widget
377
+ */
378
  class WidgetTopTen extends WP_Widget
379
  {
380
  function WidgetTopTen()
465
  $output .= tptn_pop_posts('daily=1&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
466
  }
467
  } else {
468
+ $output .= tptn_pop_posts('daily=0&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
 
469
  }
470
 
471
  $output .= $after_widget;
475
  } //ending function widget
476
  }
477
 
478
+ /**
479
+ * Initialise the plugin.
480
+ *
481
+ * @access public
482
+ * @return void
483
+ */
484
  function init_tptn(){
485
 
486
  if (function_exists('register_widget')) {
490
  add_action('init', 'init_tptn', 1);
491
 
492
 
493
+ /**
494
+ * Default Options.
495
+ *
496
+ * @access public
497
+ * @return void
498
+ */
499
  function tptn_default_options() {
500
  global $tptn_url;
501
  $title = __('<h3>Popular Posts</h3>',TPTN_LOCAL_NAME);
542
  'cron_hour' => '0', // Cron Hour
543
  'cron_min' => '0', // Cron Minute
544
  'cron_recurrence' => 'weekly', // Frequency of cron
545
+ 'activate_daily' => true, // Activate the daily count
546
+ 'activate_overall' => true, // activate overall count
547
  );
548
  return $tptn_settings;
549
  }
550
 
551
+
552
+ /**
553
+ * Function to read options from the database.
554
+ *
555
+ * @access public
556
+ * @return void
557
+ */
558
  function tptn_read_options() {
559
 
560
  // Upgrade table code
583
 
584
  }
585
 
586
+
587
+ /**
588
+ * Create tables to store pageviews.
589
+ *
590
+ * @access public
591
+ * @return void
592
+ */
593
  function tptn_install() {
594
  global $wpdb;
595
  global $tptn_db_version;
648
  if (function_exists('register_activation_hook')) {
649
  register_activation_hook(__FILE__,'tptn_install');
650
  }
651
+ /**
652
+ * Function to call install function if needed.
653
+ *
654
+ * @access public
655
+ * @return void
656
+ */
657
  function tptn_update_db_check() {
658
  global $tptn_db_version;
659
  if (get_site_option('tptn_db_version') != $tptn_db_version) {
663
  add_action('plugins_loaded', 'tptn_update_db_check');
664
 
665
 
666
+ /**
667
+ * Function to delete all rows in the posts table.
668
+ *
669
+ * @access public
670
+ * @param bool $daily (default: false)
671
+ * @return void
672
+ */
673
  function tptn_trunc_count($daily = false) {
674
  global $wpdb;
675
  $table_name = $wpdb->prefix . "top_ten";
682
  /*********************************************************************
683
  * Utility Functions *
684
  ********************************************************************/
685
+ /**
686
+ * Filter function to resize post thumbnail. Filters out tp10_postimage.
687
+ *
688
+ * @access public
689
+ * @param string $postimage
690
+ * @param string|int $thumb_width
691
+ * @param string|int $thumb_height
692
+ * @param string|int $thumb_timthumb
693
+ * @return string
694
+ */
695
  function tptn_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb) {
696
+ global $tptn_url;
697
 
698
  if ($thumb_timthumb) {
699
+ $new_pi = $tptn_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
700
  } else {
701
  $new_pi = $postimage;
702
  }
704
  }
705
  add_filter('tptn_postimage', 'tptn_scale_thumbs', 10, 4);
706
 
707
+
708
+ /**
709
+ * Function to get the post thumbnail.
710
+ *
711
+ * @access public
712
+ * @param array $args (default: array()) Query string of options related to thumbnails
713
+ * @return string
714
+ */
715
  function tptn_get_the_post_thumbnail($args = array()) {
716
 
717
+ global $tptn_url;
718
  $defaults = array(
719
  'postid' => '',
720
  'thumb_height' => '50', // Max height of thumbnails
746
  $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb );
747
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
748
 
 
749
  } else {
750
  $postimage = get_post_meta($result->ID, $thumb_meta, true); // Check
751
  if (!$postimage && $scan_images) {
761
  if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
762
  if ($postimage) {
763
  if ($thumb_timthumb) {
764
+ $output .= '<img src="'.$tptn_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.'" />';
765
  } else {
766
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
767
  }
771
  return $output;
772
  }
773
 
774
+
775
+ /**
776
+ * Function to create an excerpt for the post.
777
+ *
778
+ * @access public
779
+ * @param string|int $postid Post ID
780
+ * @param int $excerpt_length Length of the excerpt
781
+ * @return string Formatted excerpt
782
+ */
783
  function tptn_excerpt($postid,$excerpt_length){
784
  $content = get_post($postid)->post_excerpt;
785
  if ($content=='') $content = get_post($postid)->post_content;
805
  /*********************************************************************
806
  * Cron Functions *
807
  ********************************************************************/
808
+ /**
809
+ * Function to truncate daily run.
810
+ *
811
+ * @access public
812
+ * @return void
813
+ */
814
  function ald_tptn() {
815
  tptn_trunc_count(true);
816
  }
817
+ add_action('ald_tptn_hook', 'ald_tptn');
818
 
819
+
820
+ /**
821
+ * Function to enable run or actions.
822
+ *
823
+ * @access public
824
+ * @param int $hour
825
+ * @param int $min
826
+ * @param int $recurrence
827
+ * @return void
828
+ */
829
  function tptn_enable_run($hour, $min, $recurrence) {
830
  if (function_exists('wp_schedule_event')) {
831
  // Invoke WordPress internal cron
838
  }
839
  }
840
 
841
+
842
+ /**
843
+ * Function to disable daily run or actions.
844
+ *
845
+ * @access public
846
+ * @return void
847
+ */
848
  function tptn_disable_run() {
849
  if (function_exists('wp_schedule_event')) {
850
  if (wp_next_scheduled('ald_tptn_hook')) {
853
  }
854
  }
855
 
 
856
  if (!function_exists('ald_more_reccurences')) {
857
+ /**
858
+ * Function to add weekly and fortnightly recurrences - Sample Code courtesy http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/.
859
+ *
860
+ * @access public
861
+ * @return void
862
+ */
863
  function ald_more_reccurences() {
864
  return array(
865
  'weekly' => array('interval' => 604800, 'display' => __( 'Once Weekly', TPTN_LOCAL_NAME )),
874
  /*********************************************************************
875
  * Admin interface *
876
  ********************************************************************/
 
877
  // This function adds an Options page in WP Admin
878
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
879
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
wp-bootstrap.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ This file finds the proper path back to the main WordPress directory and
5
+ includes the wp-load.php file so WordPress functions are accessible.
6
+ */
7
+
8
+ // Build the wp-config.php path from a plugin/theme
9
+ $wp_load_file = preg_replace( '/\/wp-content\/.*$/i', '/wp-load.php', __FILE__ );
10
+
11
+ // Require the wp-load.php file
12
+ require_once( $wp_load_file );