Top 10 – Popular posts plugin for WordPress - Version 2.1.0

Version Description

  • Fixed: Bug fixes; New button to merge post counts; deprecated timthumb; Check the Changelog for more details

=

Download this release

Release Info

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

Code changes from version 2.0.3 to 2.1.0

README.md CHANGED
@@ -1,6 +1,6 @@
1
  # Top 10 - Popular posts plugin for WordPress
2
 
3
- __Requires:__ 3.0
4
 
5
  __Tested up to:__ 4.2
6
 
@@ -35,10 +35,10 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
35
  * **Exclusions**: Exclude posts from select categories from appearing in the top posts list. Also exclude posts by ID from appearing in the list
36
  * **Admin interface**: View list of daily and/or overall popular posts from within the dashboard. Top 10 will also add two sortable columns to your All Posts and All Pages pages in your WordPress Admin area
37
  * **Works with caching plugins** like WP-Super-Cache, W3 Total Cache or Quick Cache
38
- * **Clean uninstall**: If you choose to delete the plugin from within WP-Admin, the plugin will remove all its data. But why would you?
39
 
40
 
41
- If you're looking for a plugin to display related, look no further than my other plugin <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts">Contextual Related Posts</a>.
42
 
43
 
44
  ## Screenshots
1
  # Top 10 - Popular posts plugin for WordPress
2
 
3
+ __Requires:__ 3.5
4
 
5
  __Tested up to:__ 4.2
6
 
35
  * **Exclusions**: Exclude posts from select categories from appearing in the top posts list. Also exclude posts by ID from appearing in the list
36
  * **Admin interface**: View list of daily and/or overall popular posts from within the dashboard. Top 10 will also add two sortable columns to your All Posts and All Pages pages in your WordPress Admin area
37
  * **Works with caching plugins** like WP-Super-Cache, W3 Total Cache or Quick Cache
38
+ * **Clean uninstall**: If you choose to delete the plugin from within WP-Admin, the plugin will remove all its data if you want. But why would you?
39
 
40
 
41
+ If you're looking for a plugin to display related posts, look no further than <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts">Contextual Related Posts</a>.
42
 
43
 
44
  ## Screenshots
admin/admin-columns.php CHANGED
@@ -53,11 +53,13 @@ add_filter( 'manage_pages_columns', 'tptn_column' );
53
  function tptn_value( $column_name, $id ) {
54
  global $wpdb, $tptn_settings;
55
 
 
 
56
  // Add Total count
57
  if ( ( $column_name == 'tptn_total' ) && ( $tptn_settings['pv_in_admin'] ) ) {
58
  $table_name = $wpdb->base_prefix . "top_ten";
59
 
60
- $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, cntaccess from {$table_name} WHERE postnumber = %d", $id ) );
61
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->cntaccess : 0 ) );
62
  echo $cntaccess;
63
  }
@@ -79,7 +81,7 @@ function tptn_value( $column_name, $id ) {
79
  $from_date = gmdate( 'Y-m-d H' , $from_date );
80
  }
81
 
82
- $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' GROUP BY postnumber ", $id, $from_date ) );
83
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
84
 
85
  echo $cntaccess;
@@ -89,7 +91,7 @@ function tptn_value( $column_name, $id ) {
89
  if ( ( $column_name == 'tptn_both' ) && ( $tptn_settings['pv_in_admin'] ) ) {
90
  $table_name = $wpdb->base_prefix . "top_ten";
91
 
92
- $resultscount = $wpdb->get_row( $wpdb->prepare("SELECT postnumber, cntaccess from {$table_name} WHERE postnumber = %d", $id ) );
93
  $cntaccess = number_format_i18n((($resultscount) ? $resultscount->cntaccess : 0));
94
 
95
  $table_name = $wpdb->base_prefix . "top_ten_daily";
@@ -107,8 +109,8 @@ function tptn_value( $column_name, $id ) {
107
  $from_date = gmdate( 'Y-m-d H' , $from_date );
108
  }
109
 
110
- $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' GROUP BY postnumber ", $id, $from_date ) );
111
- $cntaccess .= ' / '.number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
112
 
113
  echo $cntaccess;
114
  }
53
  function tptn_value( $column_name, $id ) {
54
  global $wpdb, $tptn_settings;
55
 
56
+ $blog_id = get_current_blog_id();
57
+
58
  // Add Total count
59
  if ( ( $column_name == 'tptn_total' ) && ( $tptn_settings['pv_in_admin'] ) ) {
60
  $table_name = $wpdb->base_prefix . "top_ten";
61
 
62
+ $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, cntaccess FROM {$table_name} WHERE postnumber = %d AND blog_id = %d ", $id, $blog_id ) );
63
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->cntaccess : 0 ) );
64
  echo $cntaccess;
65
  }
81
  $from_date = gmdate( 'Y-m-d H' , $from_date );
82
  }
83
 
84
+ $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' AND blog_id = %d GROUP BY postnumber ", $id, $from_date, $blog_id ) );
85
  $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
86
 
87
  echo $cntaccess;
91
  if ( ( $column_name == 'tptn_both' ) && ( $tptn_settings['pv_in_admin'] ) ) {
92
  $table_name = $wpdb->base_prefix . "top_ten";
93
 
94
+ $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, cntaccess FROM {$table_name} WHERE postnumber = %d AND blog_id = %d ", $id, $blog_id ) );
95
  $cntaccess = number_format_i18n((($resultscount) ? $resultscount->cntaccess : 0));
96
 
97
  $table_name = $wpdb->base_prefix . "top_ten_daily";
109
  $from_date = gmdate( 'Y-m-d H' , $from_date );
110
  }
111
 
112
+ $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, SUM(cntaccess) as sumCount FROM {$table_name} WHERE postnumber = %d AND dp_date >= '%s' AND blog_id = %d GROUP BY postnumber ", $id, $from_date, $blog_id ) );
113
+ $cntaccess .= ' / ' . number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
114
 
115
  echo $cntaccess;
116
  }
admin/admin.php CHANGED
@@ -26,15 +26,17 @@ if ( ! defined( 'WPINC' ) ) {
26
  function tptn_options() {
27
 
28
  global $wpdb, $network_wide, $tptn_url;
29
- $poststable = $wpdb->posts;
30
 
31
  $tptn_settings = tptn_read_options();
32
- parse_str( $tptn_settings['post_types'],$post_types );
 
 
33
  $wp_post_types = get_post_types( array(
34
  'public' => true,
35
  ) );
36
  $posts_types_inc = array_intersect( $wp_post_types, $post_types );
37
 
 
38
  if ( ( isset( $_POST['tptn_save'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
39
 
40
  /* General options */
@@ -107,8 +109,6 @@ function tptn_options() {
107
  $tptn_settings['title_length'] = intval( $_POST['title_length'] );
108
  $tptn_settings['disp_list_count'] = isset( $_POST['disp_list_count'] ) ? true : false;
109
 
110
- $tptn_settings['d_use_js'] = isset( $_POST['d_use_js'] ) ? true : false; // This needs to be deprecated
111
-
112
  $tptn_settings['link_new_window'] = isset( $_POST['link_new_window'] ) ? true : false;
113
  $tptn_settings['link_nofollow'] = isset( $_POST['link_nofollow'] ) ? true : false;
114
  $tptn_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
@@ -127,17 +127,15 @@ function tptn_options() {
127
  $tptn_settings['thumb_crop'] = ( isset( $_POST['thumb_crop'] ) ? true : false );
128
  $tptn_settings['thumb_html'] = $_POST['thumb_html'];
129
 
130
- $tptn_settings['thumb_timthumb'] = isset( $_POST['thumb_timthumb'] ) ? true : false; // To be deprecated
131
- $tptn_settings['thumb_timthumb_q'] = intval( $_POST['thumb_timthumb_q'] ); // To be deprecated
132
-
133
  $tptn_settings['thumb_meta'] = '' == $_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta'];
134
  $tptn_settings['scan_images'] = isset( $_POST['scan_images'] ) ? true : false;
135
  $tptn_settings['thumb_default_show'] = isset( $_POST['thumb_default_show'] ) ? true : false;
136
- $tptn_settings['thumb_default'] = ( ( '' == $_POST['thumb_default'] ) || ( '\/default.png' == $_POST['thumb_default'] ) ) ? $_POST['thumb_default'] : $tptn_url . '/default.png';
137
 
138
  /* Custom styles */
139
  $tptn_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
140
 
 
141
  if ( isset( $_POST['include_default_style'] ) ) {
142
  $tptn_settings['include_default_style'] = true;
143
  $tptn_settings['post_thumb_op'] = 'inline';
@@ -151,6 +149,16 @@ function tptn_options() {
151
  $tptn_settings['include_default_style'] = false;
152
  }
153
 
 
 
 
 
 
 
 
 
 
 
154
  /* Update the options */
155
  update_option( 'ald_tptn_settings', $tptn_settings );
156
 
@@ -160,10 +168,19 @@ function tptn_options() {
160
  $posts_types_inc = array_intersect( $wp_post_types, $post_types );
161
 
162
  /* Echo a success message */
163
- $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', TPTN_LOCAL_NAME ) . '</p></div>';
 
 
 
 
 
 
 
 
164
  echo $str;
165
  }
166
 
 
167
  if ( ( isset( $_POST['tptn_default'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
168
  delete_option( 'ald_tptn_settings' );
169
  $tptn_settings = tptn_default_options();
@@ -174,18 +191,21 @@ function tptn_options() {
174
  echo $str;
175
  }
176
 
 
177
  if ( ( isset( $_POST['tptn_trunc_all'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
178
  tptn_trunc_count( false );
179
  $str = '<div id="message" class="updated fade"><p>'. __( 'Top 10 popular posts reset', TPTN_LOCAL_NAME ) .'</p></div>';
180
  echo $str;
181
  }
182
 
 
183
  if ( ( isset( $_POST['tptn_trunc_daily'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
184
  tptn_trunc_count( true );
185
  $str = '<div id="message" class="updated fade"><p>'. __( 'Top 10 daily popular posts reset', TPTN_LOCAL_NAME ) .'</p></div>';
186
  echo $str;
187
  }
188
 
 
189
  if ( ( isset( $_POST['tptn_clean_duplicates'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
190
  tptn_clean_duplicates( true );
191
  tptn_clean_duplicates( false );
@@ -193,6 +213,15 @@ function tptn_options() {
193
  echo $str;
194
  }
195
 
 
 
 
 
 
 
 
 
 
196
  if ( ( isset( $_POST['tptn_mnts_save'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
197
  $tptn_settings['cron_hour'] = min( 23, intval( $_POST['cron_hour'] ) );
198
  $tptn_settings['cron_min'] = min( 59, intval( $_POST['cron_min'] ) );
@@ -533,13 +562,15 @@ function tptn_options() {
533
  <tr>
534
  <th scope="row"><?php _e( 'Post types to include in results (including custom post types)', TPTN_LOCAL_NAME ); ?></th>
535
  <td>
536
- <?php foreach ( $wp_post_types as $wp_post_type ) {
537
- $post_type_op = '<input type="checkbox" name="post_types[]" value="'.$wp_post_type.'" ';
538
- if ( in_array( $wp_post_type, $posts_types_inc ) ) $post_type_op .= ' checked="checked" ';
539
- $post_type_op .= ' />'.$wp_post_type.'&nbsp;&nbsp;';
540
- echo $post_type_op;
541
- }
542
- ?>
 
 
543
  </td>
544
  </tr>
545
  <tr>
@@ -597,6 +628,10 @@ function tptn_options() {
597
  <th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', TPTN_LOCAL_NAME ); ?></label></th>
598
  <td>
599
  <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $tptn_settings['show_excerpt'] ) echo 'checked="checked"' ?> />
 
 
 
 
600
  </td>
601
  </tr>
602
  <tr>
@@ -609,12 +644,20 @@ function tptn_options() {
609
  <th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', TPTN_LOCAL_NAME ); ?></label></th>
610
  <td>
611
  <input type="checkbox" name="show_author" id="show_author" <?php if ( $tptn_settings['show_author'] ) echo 'checked="checked"' ?> />
 
 
 
 
612
  </td>
613
  </tr>
614
  <tr>
615
  <th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', TPTN_LOCAL_NAME ); ?></label></th>
616
  <td>
617
  <input type="checkbox" name="show_date" id="show_date" <?php if ( $tptn_settings['show_date'] ) echo 'checked="checked"' ?> />
 
 
 
 
618
  </td>
619
  </tr>
620
  <tr>
@@ -629,13 +672,6 @@ function tptn_options() {
629
  <input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ( $tptn_settings['disp_list_count'] ) echo 'checked="checked"' ?> />
630
  </td>
631
  </tr>
632
- <tr>
633
- <th scope="row"><label for="d_use_js"><?php _e( 'Always display latest post count in the daily lists?', TPTN_LOCAL_NAME ); ?></label></th>
634
- <td>
635
- <input type="checkbox" name="d_use_js" id="d_use_js" <?php if ( $tptn_settings['d_use_js'] ) echo 'checked="checked"' ?> />
636
- <p class="description"><?php _e( 'This option uses JavaScript and will increase your page load time. When you enable this option, the daily widget will not use the options set there, but options will need to be set on this screen.', TPTN_LOCAL_NAME ); ?></p>
637
- </td>
638
- </tr>
639
  <tr>
640
  <th scope="row"><label for="link_new_window "><?php _e( 'Open links in new window', TPTN_LOCAL_NAME ); ?></label></th>
641
  <td>
@@ -739,6 +775,10 @@ function tptn_options() {
739
  <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ( 'text_only' == $tptn_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
740
  <?php _e( 'Do not display thumbnails, only text.', TPTN_LOCAL_NAME ); ?>
741
  </label>
 
 
 
 
742
  </td>
743
  </tr>
744
  <tr><th scope="row"><?php _e( 'Thumbnail size:', TPTN_LOCAL_NAME ); ?></th>
@@ -770,7 +810,7 @@ function tptn_options() {
770
  <p class="description">
771
  <?php _e( 'You can choose from existing image sizes above or create a custom size. If you have chosen Custom size above, then enter the width, height and crop settings below. For best results, use a cropped image.', TPTN_LOCAL_NAME ); ?><br />
772
  <?php _e( "If you change the width and/or height below, existing images will not be automatically resized.", TPTN_LOCAL_NAME ); ?>
773
- <?php printf( __( "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to regenerate all image sizes.", TPTN_LOCAL_NAME ), 'https://wordpress.org/plugins/force-regenerate-thumbnails/', 'https://wordpress.org/plugins/regenerate-thumbnails/' ); ?>
774
  </p>
775
  </td>
776
  <tr><th scope="row"><label for="thumb_width"><?php _e( 'Width of custom thumbnail:', TPTN_LOCAL_NAME ); ?></label></th>
@@ -789,8 +829,9 @@ function tptn_options() {
789
  <p class="description">
790
  <?php _e( "By default, thumbnails will be proportionately cropped. Check this box to hard crop the thumbnails.", TPTN_LOCAL_NAME ); ?>
791
  <?php printf( __( "<a href='%s' target='_blank'>Difference between soft and hard crop</a>", TPTN_LOCAL_NAME ), esc_url( 'http://www.davidtan.org/wordpress-hard-crop-vs-soft-crop-difference-comparison-example/' ) ); ?>
 
792
  <?php if ( $tptn_settings['include_default_style'] ) { ?>
793
- <p class="description"><?php _e( "Since you're using the default styles set under the Custom Styles section, the width and height is fixed at 65px and crop mode is enabled.", TPTN_LOCAL_NAME ); ?></p>
794
  <?php } ?>
795
  </p>
796
  </td>
@@ -808,18 +849,6 @@ function tptn_options() {
808
  </label>
809
  </td>
810
  </tr>
811
- <tr><th scope="row"><label for="thumb_timthumb"><?php _e( 'Use timthumb to generate thumbnails? ', TPTN_LOCAL_NAME ); ?></label></th>
812
- <td>
813
- <input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ( $tptn_settings['thumb_timthumb'] ) echo 'checked="checked"' ?> />
814
- <p class="description"><?php _e( 'If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/" target="_blank">timthumb</a> will be used to generate thumbnails', TPTN_LOCAL_NAME ); ?></p>
815
- </td>
816
- </tr>
817
- <tr><th scope="row"><label for="thumb_timthumb_q"><?php _e( 'Quality of thumbnails generated by timthumb:', TPTN_LOCAL_NAME ); ?></label></th>
818
- <td>
819
- <input type="textbox" name="thumb_timthumb_q" id="thumb_timthumb_q" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_timthumb_q'] ) ); ?>" style="width:50px" />
820
- <p class="description"><?php _e( 'Enter values between 0 and 100 only. 100 is highest quality and the highest file size. Suggested maximum value is 95. Default is 75.', TPTN_LOCAL_NAME ); ?></p>
821
- </td>
822
- </tr>
823
  <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name: ', TPTN_LOCAL_NAME ); ?></label></th>
824
  <td>
825
  <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_meta'] ) ); ?>">
@@ -998,7 +1027,7 @@ function tptn_options() {
998
 
999
  <form method="post" id="tptn_reset_options" name="tptn_reset_options" onsubmit="return checkForm()">
1000
  <div id="resetopdiv" class="postbox"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
1001
- <h3 class='hndle'><span><?php _e( 'Reset count', TPTN_LOCAL_NAME ); ?></span></h3>
1002
  <div class="inside">
1003
  <p class="description">
1004
  <?php _e( 'This cannot be reversed. Make sure that your database has been backed up before proceeding', TPTN_LOCAL_NAME ); ?>
@@ -1006,7 +1035,18 @@ function tptn_options() {
1006
  <p>
1007
  <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e( 'Reset Popular Posts', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" style="color:#f00" onclick="if (!confirm('<?php _e( "Are you sure you want to reset the popular posts?", TPTN_LOCAL_NAME ); ?>')) return false;" />
1008
  <input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="<?php _e( 'Reset Daily Popular Posts', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" style="color:#f00" onclick="if (!confirm('<?php _e( "Are you sure you want to reset the daily popular posts?", TPTN_LOCAL_NAME ); ?>')) return false;" />
1009
- <input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="<?php _e( 'Clear duplicates', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e( "This will delete the duplicate entries in the tables. Proceed?", TPTN_LOCAL_NAME ); ?>')) return false;" />
 
 
 
 
 
 
 
 
 
 
 
1010
  </p>
1011
  </div>
1012
  </div>
@@ -1014,6 +1054,10 @@ function tptn_options() {
1014
  </form>
1015
 
1016
  <?php
 
 
 
 
1017
  if ( is_multisite() ) {
1018
  ?>
1019
 
@@ -1287,6 +1331,10 @@ function tptn_adminhead() {
1287
  wp_enqueue_script( 'common' );
1288
  wp_enqueue_script( 'wp-lists' );
1289
  wp_enqueue_script( 'postbox' );
 
 
 
 
1290
  ?>
1291
  <style type="text/css">
1292
  .postbox .handlediv:before {
@@ -1430,4 +1478,49 @@ function tptn_clean_duplicates( $daily = false ) {
1430
  }
1431
 
1432
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1433
  ?>
26
  function tptn_options() {
27
 
28
  global $wpdb, $network_wide, $tptn_url;
 
29
 
30
  $tptn_settings = tptn_read_options();
31
+
32
+ /* Parse post types */
33
+ parse_str( $tptn_settings['post_types'], $post_types );
34
  $wp_post_types = get_post_types( array(
35
  'public' => true,
36
  ) );
37
  $posts_types_inc = array_intersect( $wp_post_types, $post_types );
38
 
39
+ /* Save options has been triggered */
40
  if ( ( isset( $_POST['tptn_save'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
41
 
42
  /* General options */
109
  $tptn_settings['title_length'] = intval( $_POST['title_length'] );
110
  $tptn_settings['disp_list_count'] = isset( $_POST['disp_list_count'] ) ? true : false;
111
 
 
 
112
  $tptn_settings['link_new_window'] = isset( $_POST['link_new_window'] ) ? true : false;
113
  $tptn_settings['link_nofollow'] = isset( $_POST['link_nofollow'] ) ? true : false;
114
  $tptn_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
127
  $tptn_settings['thumb_crop'] = ( isset( $_POST['thumb_crop'] ) ? true : false );
128
  $tptn_settings['thumb_html'] = $_POST['thumb_html'];
129
 
 
 
 
130
  $tptn_settings['thumb_meta'] = '' == $_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta'];
131
  $tptn_settings['scan_images'] = isset( $_POST['scan_images'] ) ? true : false;
132
  $tptn_settings['thumb_default_show'] = isset( $_POST['thumb_default_show'] ) ? true : false;
133
+ $tptn_settings['thumb_default'] = ( ( '' == $_POST['thumb_default'] ) || ( "/default.png" == $_POST['thumb_default'] ) ) ? $tptn_url . '/default.png' : $_POST['thumb_default'];
134
 
135
  /* Custom styles */
136
  $tptn_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
137
 
138
+ /* If default style is selected, enforce fixed width, height of thumbnail. Disable author, excerpt and date display */
139
  if ( isset( $_POST['include_default_style'] ) ) {
140
  $tptn_settings['include_default_style'] = true;
141
  $tptn_settings['post_thumb_op'] = 'inline';
149
  $tptn_settings['include_default_style'] = false;
150
  }
151
 
152
+ /**
153
+ * Filter the settings array just before saving them to the database
154
+ *
155
+ * @since 2.0.4
156
+ *
157
+ * @param array $tptn_settings Settings array
158
+ */
159
+ $tptn_settings = apply_filters( 'tptn_save_options', $tptn_settings );
160
+
161
+
162
  /* Update the options */
163
  update_option( 'ald_tptn_settings', $tptn_settings );
164
 
168
  $posts_types_inc = array_intersect( $wp_post_types, $post_types );
169
 
170
  /* Echo a success message */
171
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', TPTN_LOCAL_NAME ) . '</p>';
172
+
173
+ if ( isset( $_POST['include_default_style'] ) ) {
174
+ $str .= '<p>'. __( 'Default styles selected. Thumbnail width, height and crop settings have been fixed. Author, Excerpt and Date will not be displayed.', TPTN_LOCAL_NAME ) . '</p>';
175
+
176
+ }
177
+
178
+ $str .= '</div>';
179
+
180
  echo $str;
181
  }
182
 
183
+ /* Default options has been triggered */
184
  if ( ( isset( $_POST['tptn_default'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
185
  delete_option( 'ald_tptn_settings' );
186
  $tptn_settings = tptn_default_options();
191
  echo $str;
192
  }
193
 
194
+ /* Truncate overall posts table */
195
  if ( ( isset( $_POST['tptn_trunc_all'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
196
  tptn_trunc_count( false );
197
  $str = '<div id="message" class="updated fade"><p>'. __( 'Top 10 popular posts reset', TPTN_LOCAL_NAME ) .'</p></div>';
198
  echo $str;
199
  }
200
 
201
+ /* Truncate daily posts table */
202
  if ( ( isset( $_POST['tptn_trunc_daily'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
203
  tptn_trunc_count( true );
204
  $str = '<div id="message" class="updated fade"><p>'. __( 'Top 10 daily popular posts reset', TPTN_LOCAL_NAME ) .'</p></div>';
205
  echo $str;
206
  }
207
 
208
+ /* Clean duplicates */
209
  if ( ( isset( $_POST['tptn_clean_duplicates'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
210
  tptn_clean_duplicates( true );
211
  tptn_clean_duplicates( false );
213
  echo $str;
214
  }
215
 
216
+ /* Merge blog IDs */
217
+ if ( ( isset( $_POST['tptn_merge_blogids'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
218
+ tptn_merge_blogids( true );
219
+ tptn_merge_blogids( false );
220
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Post counts across blog IDs 0 and 1 have been merged', TPTN_LOCAL_NAME ) .'</p></div>';
221
+ echo $str;
222
+ }
223
+
224
+ /* Save maintenance options */
225
  if ( ( isset( $_POST['tptn_mnts_save'] ) ) && ( check_admin_referer( 'tptn-plugin-settings' ) ) ) {
226
  $tptn_settings['cron_hour'] = min( 23, intval( $_POST['cron_hour'] ) );
227
  $tptn_settings['cron_min'] = min( 59, intval( $_POST['cron_min'] ) );
562
  <tr>
563
  <th scope="row"><?php _e( 'Post types to include in results (including custom post types)', TPTN_LOCAL_NAME ); ?></th>
564
  <td>
565
+ <?php foreach ( $wp_post_types as $wp_post_type ) { ?>
566
+
567
+ <label>
568
+ <input type="checkbox" name="post_types[]" value="<?php echo $wp_post_type; ?>" <?php if ( in_array( $wp_post_type, $posts_types_inc ) ) echo 'checked="checked"' ?> />
569
+ <?php echo $wp_post_type; ?>
570
+ </label>
571
+ <br />
572
+
573
+ <?php } ?>
574
  </td>
575
  </tr>
576
  <tr>
628
  <th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', TPTN_LOCAL_NAME ); ?></label></th>
629
  <td>
630
  <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $tptn_settings['show_excerpt'] ) echo 'checked="checked"' ?> />
631
+
632
+ <?php if ( $tptn_settings['include_default_style'] ) { ?>
633
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Excerpt display is disabled.", TPTN_LOCAL_NAME ); ?></p>
634
+ <?php } ?>
635
  </td>
636
  </tr>
637
  <tr>
644
  <th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', TPTN_LOCAL_NAME ); ?></label></th>
645
  <td>
646
  <input type="checkbox" name="show_author" id="show_author" <?php if ( $tptn_settings['show_author'] ) echo 'checked="checked"' ?> />
647
+
648
+ <?php if ( $tptn_settings['include_default_style'] ) { ?>
649
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Author display is disabled.", TPTN_LOCAL_NAME ); ?></p>
650
+ <?php } ?>
651
  </td>
652
  </tr>
653
  <tr>
654
  <th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', TPTN_LOCAL_NAME ); ?></label></th>
655
  <td>
656
  <input type="checkbox" name="show_date" id="show_date" <?php if ( $tptn_settings['show_date'] ) echo 'checked="checked"' ?> />
657
+
658
+ <?php if ( $tptn_settings['include_default_style'] ) { ?>
659
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Date display is disabled.", TPTN_LOCAL_NAME ); ?></p>
660
+ <?php } ?>
661
  </td>
662
  </tr>
663
  <tr>
672
  <input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ( $tptn_settings['disp_list_count'] ) echo 'checked="checked"' ?> />
673
  </td>
674
  </tr>
 
 
 
 
 
 
 
675
  <tr>
676
  <th scope="row"><label for="link_new_window "><?php _e( 'Open links in new window', TPTN_LOCAL_NAME ); ?></label></th>
677
  <td>
775
  <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ( 'text_only' == $tptn_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
776
  <?php _e( 'Do not display thumbnails, only text.', TPTN_LOCAL_NAME ); ?>
777
  </label>
778
+
779
+ <?php if ( $tptn_settings['include_default_style'] ) { ?>
780
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Location of thumbnail forced to be inline before title", TPTN_LOCAL_NAME ); ?></p>
781
+ <?php } ?>
782
  </td>
783
  </tr>
784
  <tr><th scope="row"><?php _e( 'Thumbnail size:', TPTN_LOCAL_NAME ); ?></th>
810
  <p class="description">
811
  <?php _e( 'You can choose from existing image sizes above or create a custom size. If you have chosen Custom size above, then enter the width, height and crop settings below. For best results, use a cropped image.', TPTN_LOCAL_NAME ); ?><br />
812
  <?php _e( "If you change the width and/or height below, existing images will not be automatically resized.", TPTN_LOCAL_NAME ); ?>
813
+ <?php printf( __( "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate all image sizes.", TPTN_LOCAL_NAME ), self_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin=otf-regenerate-thumbnails&amp;TB_iframe=true&amp;width=600&amp;height=550' ), self_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin=regenerate-thumbnails&amp;TB_iframe=true&amp;width=600&amp;height=550' ) ); ?>
814
  </p>
815
  </td>
816
  <tr><th scope="row"><label for="thumb_width"><?php _e( 'Width of custom thumbnail:', TPTN_LOCAL_NAME ); ?></label></th>
829
  <p class="description">
830
  <?php _e( "By default, thumbnails will be proportionately cropped. Check this box to hard crop the thumbnails.", TPTN_LOCAL_NAME ); ?>
831
  <?php printf( __( "<a href='%s' target='_blank'>Difference between soft and hard crop</a>", TPTN_LOCAL_NAME ), esc_url( 'http://www.davidtan.org/wordpress-hard-crop-vs-soft-crop-difference-comparison-example/' ) ); ?>
832
+
833
  <?php if ( $tptn_settings['include_default_style'] ) { ?>
834
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Thumbnail width and height is fixed at 65px and crop mode is enabled.", TPTN_LOCAL_NAME ); ?></p>
835
  <?php } ?>
836
  </p>
837
  </td>
849
  </label>
850
  </td>
851
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
852
  <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name: ', TPTN_LOCAL_NAME ); ?></label></th>
853
  <td>
854
  <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_meta'] ) ); ?>">
1027
 
1028
  <form method="post" id="tptn_reset_options" name="tptn_reset_options" onsubmit="return checkForm()">
1029
  <div id="resetopdiv" class="postbox"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
1030
+ <h3 class='hndle'><span><?php _e( 'Reset count and other tools', TPTN_LOCAL_NAME ); ?></span></h3>
1031
  <div class="inside">
1032
  <p class="description">
1033
  <?php _e( 'This cannot be reversed. Make sure that your database has been backed up before proceeding', TPTN_LOCAL_NAME ); ?>
1035
  <p>
1036
  <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e( 'Reset Popular Posts', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" style="color:#f00" onclick="if (!confirm('<?php _e( "Are you sure you want to reset the popular posts?", TPTN_LOCAL_NAME ); ?>')) return false;" />
1037
  <input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="<?php _e( 'Reset Daily Popular Posts', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" style="color:#f00" onclick="if (!confirm('<?php _e( "Are you sure you want to reset the daily popular posts?", TPTN_LOCAL_NAME ); ?>')) return false;" />
1038
+ </p>
1039
+ <p class="description">
1040
+ <?php _e( 'This will merge post counts for posts with table entries of 0 and 1', TPTN_LOCAL_NAME ); ?>
1041
+ </p>
1042
+ <p>
1043
+ <input name="tptn_merge_blogids" type="submit" id="tptn_merge_blogids" value="<?php _e( 'Merge blog ID 0 and 1 post counts', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e( "This will merge post counts for blog IDs 0 and 1. Proceed?", TPTN_LOCAL_NAME ); ?>')) return false;" />
1044
+ </p>
1045
+ <p class="description">
1046
+ <?php _e( 'In older versions, the plugin created entries with duplicate post IDs. Clicking the button below will merge these duplicate IDs', TPTN_LOCAL_NAME ); ?>
1047
+ </p>
1048
+ <p>
1049
+ <input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="<?php _e( 'Merge duplicates across blog IDs', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e( "This will delete the duplicate entries in the tables. Proceed?", TPTN_LOCAL_NAME ); ?>')) return false;" />
1050
  </p>
1051
  </div>
1052
  </div>
1054
  </form>
1055
 
1056
  <?php
1057
+ /**
1058
+ * Only show the below options if it is multisite
1059
+ *
1060
+ */
1061
  if ( is_multisite() ) {
1062
  ?>
1063
 
1331
  wp_enqueue_script( 'common' );
1332
  wp_enqueue_script( 'wp-lists' );
1333
  wp_enqueue_script( 'postbox' );
1334
+ wp_enqueue_script( 'plugin-install' );
1335
+
1336
+ add_thickbox();
1337
+
1338
  ?>
1339
  <style type="text/css">
1340
  .postbox .handlediv:before {
1478
  }
1479
 
1480
 
1481
+ /**
1482
+ * Function to merge counts with post numbers of blog ID 0 and 1 respectively.
1483
+ *
1484
+ * @since 2.0.4
1485
+ *
1486
+ * @param bool $daily Daily flag
1487
+ */
1488
+ function tptn_merge_blogids( $daily = false ) {
1489
+ global $wpdb;
1490
+
1491
+ $table_name = $wpdb->base_prefix . "top_ten";
1492
+ if ( $daily ) {
1493
+ $table_name .= "_daily";
1494
+ }
1495
+
1496
+ if ( $daily ) {
1497
+ $wpdb->query( "
1498
+ INSERT INTO `$table_name` (postnumber, cntaccess, dp_date, blog_id) (
1499
+ SELECT
1500
+ postnumber,
1501
+ SUM(cntaccess) as sumCount,
1502
+ dp_date,
1503
+ 1
1504
+ FROM `$table_name`
1505
+ WHERE blog_ID IN (0,1)
1506
+ GROUP BY postnumber, dp_date
1507
+ ) ON DUPLICATE KEY UPDATE cntaccess = VALUES(cntaccess);
1508
+ " );
1509
+ } else {
1510
+ $wpdb->query( "
1511
+ INSERT INTO `$table_name` (postnumber, cntaccess, blog_id) (
1512
+ SELECT
1513
+ postnumber,
1514
+ SUM(cntaccess) as sumCount,
1515
+ 1
1516
+ FROM `$table_name`
1517
+ WHERE blog_ID IN (0,1)
1518
+ GROUP BY postnumber
1519
+ ) ON DUPLICATE KEY UPDATE cntaccess = VALUES(cntaccess);
1520
+ " );
1521
+ }
1522
+
1523
+ $wpdb->query( "DELETE FROM $table_name WHERE blog_id = 0" );
1524
+ }
1525
+
1526
  ?>
includes/class-top-10-widget.php CHANGED
@@ -53,6 +53,18 @@ class Top_Ten_Widget extends WP_Widget {
53
  $daily = isset( $instance['daily'] ) ? esc_attr( $instance['daily'] ) : 'overall';
54
  $daily_range = isset( $instance['daily_range'] ) ? esc_attr( $instance['daily_range'] ) : '';
55
  $hour_range = isset( $instance['hour_range'] ) ? esc_attr( $instance['hour_range'] ) : '';
 
 
 
 
 
 
 
 
 
 
 
 
56
  ?>
57
  <p>
58
  <label for="<?php echo $this->get_field_id( 'title' ); ?>">
@@ -96,7 +108,7 @@ class Top_Ten_Widget extends WP_Widget {
96
  </p>
97
  <p>
98
  <label for="<?php echo $this->get_field_id( 'show_date' ); ?>">
99
- <input id="<?php echo $this->get_field_id( 'show_date' ); ?>" name="<?php echo $this->get_field_name( 'show_date' ); ?>" type="checkbox" <?php if ( $show_date ) echo 'checked="checked"' ?> /> <?php _e( 'Show date?', TPTN_LOCAL_NAME ); ?>
100
  </label>
101
  </p>
102
  <p>
@@ -110,15 +122,30 @@ class Top_Ten_Widget extends WP_Widget {
110
  </p>
111
  <p>
112
  <label for="<?php echo $this->get_field_id( 'thumb_height' ); ?>">
113
- <?php _e( 'Thumbnail height', TPTN_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'thumb_height' ); ?>" name="<?php echo $this->get_field_name( 'thumb_height' ); ?>" type="text" value="<?php echo esc_attr($thumb_height); ?>" />
 
114
  </label>
115
  </p>
116
  <p>
117
  <label for="<?php echo $this->get_field_id( 'thumb_width' ); ?>">
118
- <?php _e( 'Thumbnail width', TPTN_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'thumb_width' ); ?>" name="<?php echo $this->get_field_name( 'thumb_width' ); ?>" type="text" value="<?php echo esc_attr( $thumb_width ); ?>" />
 
119
  </label>
120
  </p>
121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  <?php
123
  /**
124
  * Fires after Top 10 widget options.
@@ -158,6 +185,14 @@ class Top_Ten_Widget extends WP_Widget {
158
  $instance['thumb_height'] = $new_instance['thumb_height'];
159
  $instance['thumb_width'] = $new_instance['thumb_width'];
160
 
 
 
 
 
 
 
 
 
161
  /**
162
  * Filters Update widget options array.
163
  *
@@ -182,6 +217,7 @@ class Top_Ten_Widget extends WP_Widget {
182
  extract( $args, EXTR_SKIP );
183
 
184
  $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? strip_tags( $tptn_settings['title'] ) : $instance['title'] );
 
185
  $limit = isset( $instance['limit'] ) ? $instance['limit'] : $tptn_settings['limit'];
186
  if ( empty( $limit ) ) {
187
  $limit = $tptn_settings['limit'];
@@ -202,6 +238,7 @@ class Top_Ten_Widget extends WP_Widget {
202
  $show_excerpt = isset( $instance['show_excerpt'] ) ? esc_attr( $instance['show_excerpt'] ) : '';
203
  $show_author = isset( $instance['show_author'] ) ? esc_attr( $instance['show_author'] ) : '';
204
  $show_date = isset( $instance['show_date'] ) ? esc_attr( $instance['show_date'] ) : '';
 
205
 
206
  $arguments = array(
207
  'is_widget' => 1,
@@ -217,6 +254,7 @@ class Top_Ten_Widget extends WP_Widget {
217
  'thumb_height' => $thumb_height,
218
  'thumb_width' => $thumb_width,
219
  'disp_list_count' => $disp_list_count,
 
220
  );
221
 
222
  /**
@@ -228,15 +266,7 @@ class Top_Ten_Widget extends WP_Widget {
228
  */
229
  $arguments = apply_filters( 'tptn_widget_options' , $arguments );
230
 
231
- if ( $daily ) {
232
- if ( $tptn_settings['d_use_js'] ) {
233
- $output .= '<script type="text/javascript" src="' . $tptn_url . '/top-10-daily.js.php?widget=1"></script>';
234
- } else {
235
- $output .= tptn_pop_posts( $arguments );
236
- }
237
- } else {
238
- $output .= tptn_pop_posts( $arguments );
239
- }
240
 
241
  $output .= $after_widget;
242
 
53
  $daily = isset( $instance['daily'] ) ? esc_attr( $instance['daily'] ) : 'overall';
54
  $daily_range = isset( $instance['daily_range'] ) ? esc_attr( $instance['daily_range'] ) : '';
55
  $hour_range = isset( $instance['hour_range'] ) ? esc_attr( $instance['hour_range'] ) : '';
56
+
57
+ // Parse the Post types
58
+ $post_types = array();
59
+ if ( isset( $instance['post_types'] ) ) {
60
+ $post_types = $instance['post_types'];
61
+ parse_str( $post_types, $post_types ); // Save post types in $post_types variable
62
+ }
63
+ $wp_post_types = get_post_types( array(
64
+ 'public' => true,
65
+ ) );
66
+ $posts_types_inc = array_intersect( $wp_post_types, $post_types );
67
+
68
  ?>
69
  <p>
70
  <label for="<?php echo $this->get_field_id( 'title' ); ?>">
108
  </p>
109
  <p>
110
  <label for="<?php echo $this->get_field_id( 'show_date' ); ?>">
111
+ <input id="<?php echo $this->get_field_id( 'show_date' ); ?>" name="<?php echo $this->get_field_name( 'show_date' ); ?>" type="checkbox" <?php if ( $show_date ) echo 'checked="checked"' ?> /> <?php _e( 'Show date?', TPTN_LOCAL_NAME ); ?>
112
  </label>
113
  </p>
114
  <p>
122
  </p>
123
  <p>
124
  <label for="<?php echo $this->get_field_id( 'thumb_height' ); ?>">
125
+ <?php _e( 'Thumbnail height', TPTN_LOCAL_NAME ); ?>:
126
+ <input class="widefat" id="<?php echo $this->get_field_id( 'thumb_height' ); ?>" name="<?php echo $this->get_field_name( 'thumb_height' ); ?>" type="text" value="<?php echo esc_attr($thumb_height); ?>" />
127
  </label>
128
  </p>
129
  <p>
130
  <label for="<?php echo $this->get_field_id( 'thumb_width' ); ?>">
131
+ <?php _e( 'Thumbnail width', TPTN_LOCAL_NAME ); ?>:
132
+ <input class="widefat" id="<?php echo $this->get_field_id( 'thumb_width' ); ?>" name="<?php echo $this->get_field_name( 'thumb_width' ); ?>" type="text" value="<?php echo esc_attr( $thumb_width ); ?>" />
133
  </label>
134
  </p>
135
 
136
+ <p><?php _e( 'Post types to include:', TPTN_LOCAL_NAME ); ?><br />
137
+
138
+ <?php foreach ( $wp_post_types as $wp_post_type ) { ?>
139
+
140
+ <label>
141
+ <input id="<?php echo $this->get_field_id( 'post_types' ); ?>" name="<?php echo $this->get_field_name( 'post_types' ); ?>[]" type="checkbox" value="<?php echo $wp_post_type; ?>" <?php if ( in_array( $wp_post_type, $posts_types_inc ) ) echo 'checked="checked"' ?> />
142
+ <?php echo $wp_post_type; ?>
143
+ </label>
144
+ <br />
145
+
146
+ <?php } ?>
147
+ </p>
148
+
149
  <?php
150
  /**
151
  * Fires after Top 10 widget options.
185
  $instance['thumb_height'] = $new_instance['thumb_height'];
186
  $instance['thumb_width'] = $new_instance['thumb_width'];
187
 
188
+ // Process post types to be selected
189
+ $wp_post_types = get_post_types( array(
190
+ 'public' => true,
191
+ ) );
192
+ $post_types = ( isset( $new_instance['post_types'] ) ) ? $new_instance['post_types'] : array();
193
+ $post_types = array_intersect( $wp_post_types, $post_types );
194
+ $instance['post_types'] = http_build_query( $post_types, '', '&' );
195
+
196
  /**
197
  * Filters Update widget options array.
198
  *
217
  extract( $args, EXTR_SKIP );
218
 
219
  $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? strip_tags( $tptn_settings['title'] ) : $instance['title'] );
220
+
221
  $limit = isset( $instance['limit'] ) ? $instance['limit'] : $tptn_settings['limit'];
222
  if ( empty( $limit ) ) {
223
  $limit = $tptn_settings['limit'];
238
  $show_excerpt = isset( $instance['show_excerpt'] ) ? esc_attr( $instance['show_excerpt'] ) : '';
239
  $show_author = isset( $instance['show_author'] ) ? esc_attr( $instance['show_author'] ) : '';
240
  $show_date = isset( $instance['show_date'] ) ? esc_attr( $instance['show_date'] ) : '';
241
+ $post_types = isset( $instance['post_types'] ) ? $instance['post_types'] : $tptn_settings['post_types'];
242
 
243
  $arguments = array(
244
  'is_widget' => 1,
254
  'thumb_height' => $thumb_height,
255
  'thumb_width' => $thumb_width,
256
  'disp_list_count' => $disp_list_count,
257
+ 'post_types' => $post_types,
258
  );
259
 
260
  /**
266
  */
267
  $arguments = apply_filters( 'tptn_widget_options' , $arguments );
268
 
269
+ $output .= tptn_pop_posts( $arguments );
 
 
 
 
 
 
 
 
270
 
271
  $output .= $after_widget;
272
 
includes/deprecated.php CHANGED
@@ -8,28 +8,6 @@
8
  */
9
 
10
 
11
- /**
12
- * Filter function to resize post thumbnail. Filters tptn_postimage.
13
- *
14
- * @since 1.9.2
15
- * @param string $postimage Post Image URL
16
- * @param string|int $thumb_width Thumbnail width
17
- * @param string|int $thumb_height Thumbnail height
18
- * @param string|int $thumb_timthumb Timthumb flag
19
- * @param strint|int $thumb_timthumb_q Quality of the thumbnail
20
- * @return string Post image output Post image
21
- */
22
- function tptn_scale_thumbs( $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $post ) {
23
- global $tptn_url;
24
-
25
- if ( $thumb_timthumb ) {
26
- $new_pi = $tptn_url . '/timthumb/timthumb.php?src=' . urlencode( $postimage ) . '&amp;w=' . $thumb_width . '&amp;h=' . $thumb_height . '&amp;zc=1&amp;q=' . $thumb_timthumb_q;
27
- } else {
28
- $new_pi = $postimage;
29
- }
30
- return $new_pi;
31
- }
32
- add_filter( 'tptn_postimage', 'tptn_scale_thumbs', 10, 6 );
33
 
34
 
35
  ?>
8
  */
9
 
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
 
13
  ?>
includes/top-10-daily.js.php DELETED
@@ -1,37 +0,0 @@
1
- <?php
2
- /**
3
- * Display the daily popular lists.
4
- *
5
- * @package Top_Ten
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2008-2015 Ajay D'Souza
10
- */
11
- Header( "content-type: application/x-javascript" );
12
-
13
- if ( ! function_exists('add_action') ) {
14
- $wp_root = '../../../..';
15
- if ( file_exists($wp_root.'/wp-load.php') ) {
16
- require_once( $wp_root . '/wp-load.php' );
17
- } else {
18
- require_once( $wp_root . '/wp-config.php' );
19
- }
20
- }
21
-
22
- // Display Top 10 Daily list
23
- function tptn_daily_lists() {
24
- global $wpdb, $id;
25
-
26
- $is_widget = intval( $_GET['is_widget'] );
27
-
28
- if ( $is_widget ) {
29
- $output = tptn_pop_posts( 'daily=1&is_widget=1' );
30
- } else {
31
- $output = tptn_pop_posts( 'daily=1&is_widget=0' );
32
- }
33
-
34
- echo "document.write('" . $output . "')";
35
- }
36
- tptn_daily_lists();
37
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-01-03 01:54-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
@@ -61,7 +61,7 @@ msgstr "Əvvəlki"
61
  msgid "Next"
62
  msgstr "Sonrakı"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Populyar yazılar"
67
 
@@ -69,7 +69,7 @@ msgstr "Populyar yazılar"
69
  msgid "Daily Popular"
70
  msgstr "Gündəlik Populyar"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Top 10 yazılar"
75
 
@@ -99,125 +99,135 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
105
 
106
- #: admin/admin.php:173
 
 
 
 
 
 
107
  msgid "Options set to Default."
108
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
109
 
110
- #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "10 populyar yazı statisticasını pozmaq"
113
 
114
- #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
117
 
118
- #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:204
 
 
 
 
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Kökləmələr"
144
 
145
- #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:295 admin/admin.php:706
158
- #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -264,59 +274,59 @@ msgstr ""
264
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
265
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
266
 
267
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Opsiyalar:"
272
 
273
- #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
277
 
278
- #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
- #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Səhifə"
286
 
287
- #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
- #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
- #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
- #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
- #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
- #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
- #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Miqdarı göstərən format:"
318
 
319
- #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -324,11 +334,11 @@ msgid ""
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
- #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
- #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -336,313 +346,303 @@ msgid ""
336
  "option."
337
  msgstr ""
338
 
339
- #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
- #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
- #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
353
 
354
- #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
- #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
363
 
364
- #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
- #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
372
 
373
- #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
- #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
- #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
- #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
391
 
392
- #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
- #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "Populyar postların miqdarının nümayişi:"
401
 
402
- #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
- #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
- #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
- #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
- #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr ""
423
 
424
- #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
- #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Populyar yazılarının başlığı:"
434
 
435
- #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Gündəlik populyual yazılışların başlığı:"
438
 
439
- #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
- #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
- #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
- #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
454
 
455
- #: admin/admin.php:603
 
 
 
 
 
456
  msgid "Length of excerpt (in words): "
457
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
458
 
459
- #: admin/admin.php:609
460
  #, fuzzy
461
  msgid "Show post author in list?"
462
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
463
 
464
- #: admin/admin.php:615
 
 
 
 
 
465
  #, fuzzy
466
  msgid "Show post date in list?"
467
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
468
 
469
- #: admin/admin.php:621
 
 
 
 
 
470
  msgid "Limit post title length (in characters)"
471
  msgstr ""
472
 
473
- #: admin/admin.php:627
474
  #, fuzzy
475
  msgid "Show view count in list?"
476
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
477
 
478
- #: admin/admin.php:633
479
- msgid "Always display latest post count in the daily lists?"
480
- msgstr ""
481
-
482
- #: admin/admin.php:636
483
- msgid ""
484
- "This option uses JavaScript and will increase your page load time. When you "
485
- "enable this option, the daily widget will not use the options set there, but "
486
- "options will need to be set on this screen."
487
- msgstr ""
488
-
489
- #: admin/admin.php:640
490
  msgid "Open links in new window"
491
  msgstr ""
492
 
493
- #: admin/admin.php:646
494
  msgid "Add nofollow attribute to links in the list"
495
  msgstr ""
496
 
497
- #: admin/admin.php:652
498
  msgid "Exclude display of related posts on these posts / pages"
499
  msgstr ""
500
 
501
- #: admin/admin.php:659
502
  #, fuzzy
503
  msgid "Customise the list HTML"
504
  msgstr "Suiyahı formasının kökləmələri:"
505
 
506
- #: admin/admin.php:662
507
  msgid "HTML to display before the list of posts: "
508
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
509
 
510
- #: admin/admin.php:668
511
  msgid "HTML to display before each list item: "
512
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
513
 
514
- #: admin/admin.php:674
515
  msgid "HTML to display after each list item: "
516
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
517
 
518
- #: admin/admin.php:680
519
  msgid "HTML to display after the list of posts: "
520
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
521
 
522
- #: admin/admin.php:721
523
  msgid "Location of post thumbnail:"
524
  msgstr ""
525
 
526
- #: admin/admin.php:725
527
  #, fuzzy
528
  msgid "Display thumbnails inline with posts, before title"
529
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
530
 
531
- #: admin/admin.php:730
532
  #, fuzzy
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
535
 
536
- #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
539
 
540
- #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
543
 
544
- #: admin/admin.php:744
 
 
 
 
 
 
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
- #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
- #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
569
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
570
- "regenerate all image sizes."
571
  msgstr ""
572
 
573
- #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
- #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
- #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
- #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
- #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
- #: admin/admin.php:793
597
  msgid ""
598
- "Since you're using the default styles set under the Custom Styles section, "
599
- "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
- #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
- #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
- #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
- #: admin/admin.php:811
615
- msgid "Use timthumb to generate thumbnails? "
616
- msgstr ""
617
-
618
- #: admin/admin.php:814
619
- msgid ""
620
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
- msgstr ""
623
-
624
- #: admin/admin.php:817
625
- msgid "Quality of thumbnails generated by timthumb:"
626
- msgstr ""
627
-
628
- #: admin/admin.php:820
629
- msgid ""
630
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
- "file size. Suggested maximum value is 95. Default is 75."
632
- msgstr ""
633
-
634
- #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
638
 
639
- #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
- #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -652,7 +652,7 @@ msgstr ""
652
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
653
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
654
 
655
- #: admin/admin.php:832
656
  #, fuzzy
657
  msgid ""
658
  "This could slow down the loading of your page if the first image in the "
@@ -662,21 +662,21 @@ msgstr ""
662
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
663
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
664
 
665
- #: admin/admin.php:835
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
- #: admin/admin.php:838
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
673
  msgstr ""
674
 
675
- #: admin/admin.php:841
676
  msgid "Default thumbnail: "
677
  msgstr ""
678
 
679
- #: admin/admin.php:845
680
  #, fuzzy
681
  msgid ""
682
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -687,54 +687,54 @@ msgstr ""
687
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
688
  "onda standard şəkil çıxarılacaq:"
689
 
690
- #: admin/admin.php:869
691
  msgid "Custom CSS"
692
  msgstr ""
693
 
694
- #: admin/admin.php:884
695
  msgid "Use default style included in the plugin?"
696
  msgstr ""
697
 
698
- #: admin/admin.php:887
699
  msgid ""
700
  "Top 10 includes a default style that makes your popular posts list to look "
701
  "beautiful. Check the box above if you want to use this."
702
  msgstr ""
703
 
704
- #: admin/admin.php:888
705
  msgid ""
706
  "Enabling this option will turn on the thumbnails and set their width and "
707
  "height to 65px. It will also turn off the display of the author, excerpt and "
708
  "date if already enabled. Disabling this option will not revert any settings."
709
  msgstr ""
710
 
711
- #: admin/admin.php:889
712
  #, php-format
713
  msgid ""
714
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
715
  msgstr ""
716
 
717
- #: admin/admin.php:892
718
  msgid "Custom CSS to add to header:"
719
  msgstr ""
720
 
721
- #: admin/admin.php:897
722
  msgid ""
723
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
724
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
725
  "available CSS classes to style."
726
  msgstr ""
727
 
728
- #: admin/admin.php:917
729
  #, fuzzy
730
  msgid "Default Options"
731
  msgstr "Plaginin kökləmələri:"
732
 
733
- #: admin/admin.php:917
734
  msgid "Do you want to set options to Default?"
735
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
736
 
737
- #: admin/admin.php:941
738
  msgid ""
739
  "Over time the Daily Top 10 database grows in size, which reduces the "
740
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -742,65 +742,65 @@ msgid ""
742
  "will automatically delete entries older than 90 days."
743
  msgstr ""
744
 
745
- #: admin/admin.php:942
746
  msgid ""
747
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
748
  "everytime the job is rescheduled (i.e. you change the settings below)."
749
  msgstr ""
750
 
751
- #: admin/admin.php:945
752
  msgid "Enable scheduled maintenance of daily tables:"
753
  msgstr ""
754
 
755
- #: admin/admin.php:949
756
  msgid "Time to run maintenance"
757
  msgstr ""
758
 
759
- #: admin/admin.php:950
760
  msgid "hrs"
761
  msgstr ""
762
 
763
- #: admin/admin.php:950
764
  msgid "min"
765
  msgstr ""
766
 
767
- #: admin/admin.php:952
768
  msgid "How often should the maintenance be run:"
769
  msgstr ""
770
 
771
- #: admin/admin.php:956
772
  msgid "Daily"
773
  msgstr ""
774
 
775
- #: admin/admin.php:960
776
  msgid "Weekly"
777
  msgstr ""
778
 
779
- #: admin/admin.php:964
780
  msgid "Fortnightly"
781
  msgstr ""
782
 
783
- #: admin/admin.php:968
784
  msgid "Monthly"
785
  msgstr ""
786
 
787
- #: admin/admin.php:977
788
  msgid "The cron job has been scheduled. Maintenance will run "
789
  msgstr ""
790
 
791
- #: admin/admin.php:982
792
  msgid "The cron job is missing. Please resave this page to add the job"
793
  msgstr ""
794
 
795
- #: admin/admin.php:987
796
  msgid "Maintenance is turned off"
797
  msgstr ""
798
 
799
- #: admin/admin.php:1001
800
- msgid "Reset count"
801
- msgstr "Statistikanı sbros etmək"
802
 
803
- #: admin/admin.php:1004
804
  msgid ""
805
  "This cannot be reversed. Make sure that your database has been backed up "
806
  "before proceeding"
@@ -808,170 +808,188 @@ msgstr ""
808
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
809
  "ki, Sizin məlumat bazasının kopiyası var!"
810
 
811
- #: admin/admin.php:1007
812
  #, fuzzy
813
  msgid "Reset Popular Posts"
814
  msgstr "Populyar yazılar"
815
 
816
- #: admin/admin.php:1007
817
  msgid "Are you sure you want to reset the popular posts?"
818
  msgstr ""
819
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
820
 
821
- #: admin/admin.php:1008
822
  #, fuzzy
823
  msgid "Reset Daily Popular Posts"
824
  msgstr "Gündəlik Populyar Yazılar"
825
 
826
- #: admin/admin.php:1008
827
  msgid "Are you sure you want to reset the daily popular posts?"
828
  msgstr ""
829
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
830
  "istəyirsiniz?"
831
 
832
- #: admin/admin.php:1009
833
- msgid "Clear duplicates"
 
 
 
 
834
  msgstr ""
835
 
836
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
837
  msgid "This will delete the duplicate entries in the tables. Proceed?"
838
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
839
 
840
- #: admin/admin.php:1022
841
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
842
  msgstr ""
843
 
844
- #: admin/admin.php:1025
845
  msgid ""
846
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
847
  "activate the plugin independently for each site. This would have resulted in "
848
  "two tables being created for each site in the network."
849
  msgstr ""
850
 
851
- #: admin/admin.php:1026
852
  msgid ""
853
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
854
  "your database clean. You can use this tool to import the recorded counts "
855
  "from v1.x tables to the new v2.x table format."
856
  msgstr ""
857
 
858
- #: admin/admin.php:1029
859
  msgid ""
860
  "If you do not see any tables below, then it means that either all data has "
861
  "already been imported or no relevant information has been found."
862
  msgstr ""
863
 
864
- #: admin/admin.php:1032
865
  msgid ""
866
  "After running the importer, please verify that all the counts have been "
867
  "successfully imported. Only then should you delete any old tables!"
868
  msgstr ""
869
 
870
- #: admin/admin.php:1066
871
  msgid "Blog ID"
872
  msgstr ""
873
 
874
- #: admin/admin.php:1069
875
  msgid "Status"
876
  msgstr ""
877
 
878
- #: admin/admin.php:1072
879
  msgid "Select to import"
880
  msgstr ""
881
 
882
- #: admin/admin.php:1082
883
  msgid "Blog #"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1092
887
  msgid "Not imported"
888
  msgstr ""
889
 
890
- #: admin/admin.php:1096
891
  msgid "Imported"
892
  msgstr ""
893
 
894
- #: admin/admin.php:1117
895
  msgid "Begin import"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1118
899
  msgid "Delete selected tables"
900
  msgstr ""
901
 
902
- #: admin/admin.php:1119
903
  msgid "Delete all imported tables"
904
  msgstr ""
905
 
906
- #: admin/admin.php:1176 admin/admin.php:1272
907
  msgid "Daily Popular Posts"
908
  msgstr "Gündəlik Populyar Yazılar"
909
 
910
- #: admin/admin.php:1206
911
  msgid "Support the development"
912
  msgstr "İnkişafı dəstək vermək"
913
 
914
- #: admin/admin.php:1213
915
  msgid "Donation for Top 10"
916
  msgstr ""
917
 
918
- #: admin/admin.php:1215
919
  msgid "Enter amount in USD: "
920
  msgstr "Miiqdarı USD ilə daxil et:"
921
 
922
- #: admin/admin.php:1219
923
  #, fuzzy
924
  msgid "Send your donation to the author of Top 10"
925
  msgstr "Müəlifə ianə göndərin "
926
 
927
- #: admin/admin.php:1226
928
  msgid "Follow me"
929
  msgstr ""
930
 
931
- #: admin/admin.php:1236
932
  #, fuzzy
933
  msgid "Quick links"
934
  msgstr "Faydalı istenadlar"
935
 
936
- #: admin/admin.php:1240
937
  #, fuzzy
938
  msgid "Top 10 plugin page"
939
  msgstr "plaginin səhifəsi"
940
 
941
- #: admin/admin.php:1241
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
- #: admin/admin.php:1242
946
  msgid "Other plugins"
947
  msgstr "Digər plaginlər"
948
 
949
- #: admin/admin.php:1243
950
  msgid "Ajay's blog"
951
  msgstr "Ajay-in blogu"
952
 
953
- #: admin/admin.php:1244
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
- #: admin/admin.php:1245 admin/admin.php:1403
958
  msgid "Support"
959
  msgstr "Dəstək"
960
 
961
- #: admin/admin.php:1246
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
- #: admin/admin.php:1269
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Bütün Populyar Yazılara Baxmaq"
969
 
970
- #: admin/admin.php:1380
971
  msgid "Settings"
972
  msgstr "Kökləmələr"
973
 
974
- #: admin/admin.php:1404
975
  msgid "Donate"
976
  msgstr "İanə etmək"
977
 
@@ -985,122 +1003,141 @@ msgstr "Populyar yazılar"
985
  msgid "Display popular posts"
986
  msgstr "Gündəlik Populyar Yazılar"
987
 
988
- #: includes/class-top-10-widget.php:59
989
  msgid "Title"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:64
993
  msgid "No. of posts"
994
  msgstr ""
995
 
996
- #: includes/class-top-10-widget.php:69
997
  msgid "Overall"
998
  msgstr ""
999
 
1000
- #: includes/class-top-10-widget.php:70
1001
  msgid "Custom time period (Enter below)"
1002
  msgstr ""
1003
 
1004
- #: includes/class-top-10-widget.php:74
1005
  msgid "In days and hours (applies only to custom option above)"
1006
  msgstr ""
1007
 
1008
- #: includes/class-top-10-widget.php:76
1009
  msgid "days"
1010
  msgstr ""
1011
 
1012
- #: includes/class-top-10-widget.php:79
1013
  msgid "hours"
1014
  msgstr ""
1015
 
1016
- #: includes/class-top-10-widget.php:84
1017
  #, fuzzy
1018
  msgid "Show count?"
1019
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1020
 
1021
- #: includes/class-top-10-widget.php:89
1022
  #, fuzzy
1023
  msgid "Show excerpt?"
1024
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1025
 
1026
- #: includes/class-top-10-widget.php:94
1027
  #, fuzzy
1028
  msgid "Show author?"
1029
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1030
 
1031
- #: includes/class-top-10-widget.php:99
1032
  #, fuzzy
1033
  msgid "Show date?"
1034
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1035
 
1036
- #: includes/class-top-10-widget.php:105
1037
  #, fuzzy
1038
  msgid "Thumbnails inline, before title"
1039
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
1040
 
1041
- #: includes/class-top-10-widget.php:106
1042
  #, fuzzy
1043
  msgid "Thumbnails inline, after title"
1044
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
1045
 
1046
- #: includes/class-top-10-widget.php:107
1047
  #, fuzzy
1048
  msgid "Only thumbnails, no text"
1049
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
1050
 
1051
- #: includes/class-top-10-widget.php:108
1052
  #, fuzzy
1053
  msgid "No thumbnails, only text."
1054
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
1055
 
1056
- #: includes/class-top-10-widget.php:113
1057
  #, fuzzy
1058
  msgid "Thumbnail height"
1059
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1060
 
1061
- #: includes/class-top-10-widget.php:118
1062
  #, fuzzy
1063
  msgid "Thumbnail width"
1064
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1065
 
1066
- #: top-10.php:879
 
 
 
 
1067
  msgid " by "
1068
  msgstr ""
1069
 
1070
- #: top-10.php:930
1071
  #, php-format
1072
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1073
  msgstr ""
1074
 
1075
- #: top-10.php:1029
1076
  msgid "<h3>Popular Posts</h3>"
1077
  msgstr "<h3>Populyar yazılar</h3>"
1078
 
1079
- #: top-10.php:1030
1080
  msgid "<h3>Daily Popular</h3>"
1081
  msgstr "<h3>Gündəlik Populyar</h3>"
1082
 
1083
- #: top-10.php:1031
1084
  #, fuzzy
1085
  msgid "No top posts yet"
1086
  msgstr "10 populyar yazı statisticasını pozmaq"
1087
 
1088
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1089
  msgid "Once Weekly"
1090
  msgstr ""
1091
 
1092
- #: top-10.php:1694
1093
  msgid "Once Fortnightly"
1094
  msgstr ""
1095
 
1096
- #: top-10.php:1698
1097
  msgid "Once Monthly"
1098
  msgstr ""
1099
 
1100
- #: top-10.php:1702
1101
  msgid "Once quarterly"
1102
  msgstr ""
1103
 
 
 
 
1104
  #~ msgid "Daily Popular should contain views of how many days? "
1105
  #~ msgstr ""
1106
  #~ "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks "
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
61
  msgid "Next"
62
  msgstr "Sonrakı"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Populyar yazılar"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Gündəlik Populyar"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Top 10 yazılar"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:171
103
  msgid "Options saved successfully."
104
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
105
 
106
+ #: admin/admin.php:174
107
+ msgid ""
108
+ "Default styles selected. Thumbnail width, height and crop settings have been "
109
+ "fixed. Author, Excerpt and Date will not be displayed."
110
+ msgstr ""
111
+
112
+ #: admin/admin.php:190
113
  msgid "Options set to Default."
114
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
115
 
116
+ #: admin/admin.php:197
117
  msgid "Top 10 popular posts reset"
118
  msgstr "10 populyar yazı statisticasını pozmaq"
119
 
120
+ #: admin/admin.php:204
121
  msgid "Top 10 daily popular posts reset"
122
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
123
 
124
+ #: admin/admin.php:212
125
  msgid "Duplicate rows cleaned from tables"
126
  msgstr ""
127
 
128
+ #: admin/admin.php:220
129
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
130
+ msgstr ""
131
+
132
+ #: admin/admin.php:233
133
  msgid "Scheduled maintenance enabled / modified"
134
  msgstr ""
135
 
136
+ #: admin/admin.php:237
137
  msgid "Scheduled maintenance disabled"
138
  msgstr ""
139
 
140
+ #: admin/admin.php:276
141
  msgid "Counts from selected sites have been imported."
142
  msgstr ""
143
 
144
+ #: admin/admin.php:301
145
  msgid ""
146
  "Selected tables have been deleted. Note that only imported tables have been "
147
  "deleted."
148
  msgstr ""
149
 
150
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
151
  #, fuzzy
152
  msgid "Top 10 Settings"
153
  msgstr "Kökləmələr"
154
 
155
+ #: admin/admin.php:321 admin/admin.php:343
156
  msgid "General options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:322 admin/admin.php:435
160
  msgid "Counter and tracker options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:323 admin/admin.php:540
164
  msgid "Popular post list options"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:324 admin/admin.php:742
168
+ #: includes/class-top-10-widget.php:115
169
  #, fuzzy
170
  msgid "Thumbnail options"
171
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
274
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
275
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
276
 
277
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
278
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
279
  #, fuzzy
280
  msgid "Save Options"
281
  msgstr "Opsiyalar:"
282
 
283
+ #: admin/admin.php:451
284
  #, fuzzy
285
  msgid "Display number of views on:"
286
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
287
 
288
+ #: admin/admin.php:453
289
  msgid "Posts"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:454
293
  #, fuzzy
294
  msgid "Pages"
295
  msgstr "Səhifə"
296
 
297
+ #: admin/admin.php:455
298
  msgid "Home page"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:456
302
  msgid "Feeds"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:457
306
  msgid "Category archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:458
310
  msgid "Tag archives"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:459
314
  msgid "Other archives"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:460
318
  msgid ""
319
  "If you choose to disable this, please add <code>&lt;?php if "
320
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
321
  "</code> to your template file where you want it displayed"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:464
325
  #, fuzzy
326
  msgid "Format to display the post views:"
327
  msgstr "Miqdarı göstərən format:"
328
 
329
+ #: admin/admin.php:467
330
  msgid ""
331
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
332
  "%</code> to display the daily count and <code>%overallcount%</code> to "
334
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
335
  msgstr ""
336
 
337
+ #: admin/admin.php:471
338
  msgid "What do display when there are no visits?"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:474
342
  msgid ""
343
  "This text applies only when there are 0 hits for the post and it isn't a "
344
  "single page. e.g. if you display post views on the homepage or archives then "
346
  "option."
347
  msgstr ""
348
 
349
+ #: admin/admin.php:478
350
  msgid "Always display latest post count"
351
  msgstr ""
352
 
353
+ #: admin/admin.php:481
354
  msgid ""
355
  "This option uses JavaScript and will increase your page load time. Turn this "
356
  "off if you are not using caching plugins or are OK with displaying older "
357
  "cached counts."
358
  msgstr ""
359
 
360
+ #: admin/admin.php:485
361
  msgid "Track visits of authors on their own posts?"
362
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
363
 
364
+ #: admin/admin.php:488
365
  msgid ""
366
  "Disabling this option will stop authors visits tracked on their own posts"
367
  msgstr ""
368
 
369
+ #: admin/admin.php:492
370
  #, fuzzy
371
  msgid "Track visits of admins?"
372
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
373
 
374
+ #: admin/admin.php:495
375
  msgid "Disabling this option will stop admin visits being tracked."
376
  msgstr ""
377
 
378
+ #: admin/admin.php:499
379
  #, fuzzy
380
  msgid "Track visits of Editors?"
381
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
382
 
383
+ #: admin/admin.php:502
384
  msgid "Disabling this option will stop editor visits being tracked."
385
  msgstr ""
386
 
387
+ #: admin/admin.php:506
388
  msgid "Display page views on Posts and Pages in Admin"
389
  msgstr ""
390
 
391
+ #: admin/admin.php:509
392
  msgid ""
393
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
394
  "and All Pages"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:513
398
  #, fuzzy
399
  msgid "Show number of views to non-admins"
400
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
401
 
402
+ #: admin/admin.php:516
403
  msgid ""
404
  "If you disable this then non-admins won't see the above columns or view the "
405
  "independent pages with the top posts"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:556
409
  msgid "Number of popular posts to display: "
410
  msgstr "Populyar postların miqdarının nümayişi:"
411
 
412
+ #: admin/admin.php:559
413
  msgid ""
414
  "Maximum number of posts that will be displayed in the list. This option is "
415
  "used if you don't specify the number of posts in the widget or shortcodes"
416
  msgstr ""
417
 
418
+ #: admin/admin.php:563
419
  msgid "Post types to include in results (including custom post types)"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:577
423
  msgid "List of post or page IDs to exclude from the results: "
424
  msgstr ""
425
 
426
+ #: admin/admin.php:579 admin/admin.php:691
427
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
428
  msgstr ""
429
 
430
+ #: admin/admin.php:583
431
  msgid "Exclude Categories: "
432
  msgstr ""
433
 
434
+ #: admin/admin.php:598
435
  msgid ""
436
  "Comma separated list of category slugs. The field above has an autocomplete "
437
  "so simply start typing in the starting letters and it will prompt you with "
438
  "options"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:603
442
  msgid "Title of popular posts: "
443
  msgstr "Populyar yazılarının başlığı:"
444
 
445
+ #: admin/admin.php:609
446
  msgid "Title of daily popular posts: "
447
  msgstr "Gündəlik populyual yazılışların başlığı:"
448
 
449
+ #: admin/admin.php:615
450
  msgid "When there are no posts, what should be shown?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:619
454
  msgid "Blank Output"
455
  msgstr ""
456
 
457
+ #: admin/admin.php:623
458
  msgid "Display:"
459
  msgstr ""
460
 
461
+ #: admin/admin.php:628
462
  msgid "Show post excerpt in list?"
463
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
464
 
465
+ #: admin/admin.php:633
466
+ msgid ""
467
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
468
+ msgstr ""
469
+
470
+ #: admin/admin.php:638
471
  msgid "Length of excerpt (in words): "
472
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
473
 
474
+ #: admin/admin.php:644
475
  #, fuzzy
476
  msgid "Show post author in list?"
477
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
478
 
479
+ #: admin/admin.php:649
480
+ msgid ""
481
+ "Default style selected under the Custom Styles. Author display is disabled."
482
+ msgstr ""
483
+
484
+ #: admin/admin.php:654
485
  #, fuzzy
486
  msgid "Show post date in list?"
487
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
488
 
489
+ #: admin/admin.php:659
490
+ msgid ""
491
+ "Default style selected under the Custom Styles. Date display is disabled."
492
+ msgstr ""
493
+
494
+ #: admin/admin.php:664
495
  msgid "Limit post title length (in characters)"
496
  msgstr ""
497
 
498
+ #: admin/admin.php:670
499
  #, fuzzy
500
  msgid "Show view count in list?"
501
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
502
 
503
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
504
  msgid "Open links in new window"
505
  msgstr ""
506
 
507
+ #: admin/admin.php:682
508
  msgid "Add nofollow attribute to links in the list"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:688
512
  msgid "Exclude display of related posts on these posts / pages"
513
  msgstr ""
514
 
515
+ #: admin/admin.php:695
516
  #, fuzzy
517
  msgid "Customise the list HTML"
518
  msgstr "Suiyahı formasının kökləmələri:"
519
 
520
+ #: admin/admin.php:698
521
  msgid "HTML to display before the list of posts: "
522
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
523
 
524
+ #: admin/admin.php:704
525
  msgid "HTML to display before each list item: "
526
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
527
 
528
+ #: admin/admin.php:710
529
  msgid "HTML to display after each list item: "
530
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
531
 
532
+ #: admin/admin.php:716
533
  msgid "HTML to display after the list of posts: "
534
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
535
 
536
+ #: admin/admin.php:757
537
  msgid "Location of post thumbnail:"
538
  msgstr ""
539
 
540
+ #: admin/admin.php:761
541
  #, fuzzy
542
  msgid "Display thumbnails inline with posts, before title"
543
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
544
 
545
+ #: admin/admin.php:766
546
  #, fuzzy
547
  msgid "Display thumbnails inline with posts, after title"
548
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
549
 
550
+ #: admin/admin.php:771
551
  msgid "Display only thumbnails, no text"
552
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
553
 
554
+ #: admin/admin.php:776
555
  msgid "Do not display thumbnails, only text."
556
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
557
 
558
+ #: admin/admin.php:780
559
+ msgid ""
560
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
561
+ "to be inline before title"
562
+ msgstr ""
563
+
564
+ #: admin/admin.php:784
565
  msgid "Thumbnail size:"
566
  msgstr ""
567
 
568
+ #: admin/admin.php:808
569
  msgid "Custom size"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:811
573
  msgid ""
574
  "You can choose from existing image sizes above or create a custom size. If "
575
  "you have chosen Custom size above, then enter the width, height and crop "
576
  "settings below. For best results, use a cropped image."
577
  msgstr ""
578
 
579
+ #: admin/admin.php:812
580
  msgid ""
581
  "If you change the width and/or height below, existing images will not be "
582
  "automatically resized."
583
  msgstr ""
584
 
585
+ #: admin/admin.php:813
586
  #, php-format
587
  msgid ""
588
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
589
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
590
+ "all image sizes."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:816
594
  msgid "Width of custom thumbnail:"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:821
598
  msgid "Height of custom thumbnail"
599
  msgstr ""
600
 
601
+ #: admin/admin.php:826
602
  msgid "Crop mode:"
603
  msgstr ""
604
 
605
+ #: admin/admin.php:830
606
  msgid ""
607
  "By default, thumbnails will be proportionately cropped. Check this box to "
608
  "hard crop the thumbnails."
609
  msgstr ""
610
 
611
+ #: admin/admin.php:831
612
  #, php-format
613
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
614
  msgstr ""
615
 
616
+ #: admin/admin.php:834
617
  msgid ""
618
+ "Default style selected under the Custom Styles. Thumbnail width and height "
619
+ "is fixed at 65px and crop mode is enabled."
620
  msgstr ""
621
 
622
+ #: admin/admin.php:839
623
  msgid "Style attributes / Width and Height HTML attributes:"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:843
627
  msgid "Style attributes are used for width and height."
628
  msgstr ""
629
 
630
+ #: admin/admin.php:848
631
  msgid "HTML width and height attributes are used for width and height."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
638
 
639
+ #: admin/admin.php:855
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:858
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
652
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
653
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
654
 
655
+ #: admin/admin.php:861
656
  #, fuzzy
657
  msgid ""
658
  "This could slow down the loading of your page if the first image in the "
662
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
663
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
664
 
665
+ #: admin/admin.php:864
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
+ #: admin/admin.php:867
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
673
  msgstr ""
674
 
675
+ #: admin/admin.php:870
676
  msgid "Default thumbnail: "
677
  msgstr ""
678
 
679
+ #: admin/admin.php:874
680
  #, fuzzy
681
  msgid ""
682
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
687
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
688
  "onda standard şəkil çıxarılacaq:"
689
 
690
+ #: admin/admin.php:898
691
  msgid "Custom CSS"
692
  msgstr ""
693
 
694
+ #: admin/admin.php:913
695
  msgid "Use default style included in the plugin?"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:916
699
  msgid ""
700
  "Top 10 includes a default style that makes your popular posts list to look "
701
  "beautiful. Check the box above if you want to use this."
702
  msgstr ""
703
 
704
+ #: admin/admin.php:917
705
  msgid ""
706
  "Enabling this option will turn on the thumbnails and set their width and "
707
  "height to 65px. It will also turn off the display of the author, excerpt and "
708
  "date if already enabled. Disabling this option will not revert any settings."
709
  msgstr ""
710
 
711
+ #: admin/admin.php:918
712
  #, php-format
713
  msgid ""
714
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
715
  msgstr ""
716
 
717
+ #: admin/admin.php:921
718
  msgid "Custom CSS to add to header:"
719
  msgstr ""
720
 
721
+ #: admin/admin.php:926
722
  msgid ""
723
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
724
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
725
  "available CSS classes to style."
726
  msgstr ""
727
 
728
+ #: admin/admin.php:946
729
  #, fuzzy
730
  msgid "Default Options"
731
  msgstr "Plaginin kökləmələri:"
732
 
733
+ #: admin/admin.php:946
734
  msgid "Do you want to set options to Default?"
735
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
736
 
737
+ #: admin/admin.php:970
738
  msgid ""
739
  "Over time the Daily Top 10 database grows in size, which reduces the "
740
  "performance of the plugin. Cleaning the database at regular intervals could "
742
  "will automatically delete entries older than 90 days."
743
  msgstr ""
744
 
745
+ #: admin/admin.php:971
746
  msgid ""
747
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
748
  "everytime the job is rescheduled (i.e. you change the settings below)."
749
  msgstr ""
750
 
751
+ #: admin/admin.php:974
752
  msgid "Enable scheduled maintenance of daily tables:"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:978
756
  msgid "Time to run maintenance"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:979
760
  msgid "hrs"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:979
764
  msgid "min"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:981
768
  msgid "How often should the maintenance be run:"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:985
772
  msgid "Daily"
773
  msgstr ""
774
 
775
+ #: admin/admin.php:989
776
  msgid "Weekly"
777
  msgstr ""
778
 
779
+ #: admin/admin.php:993
780
  msgid "Fortnightly"
781
  msgstr ""
782
 
783
+ #: admin/admin.php:997
784
  msgid "Monthly"
785
  msgstr ""
786
 
787
+ #: admin/admin.php:1006
788
  msgid "The cron job has been scheduled. Maintenance will run "
789
  msgstr ""
790
 
791
+ #: admin/admin.php:1011
792
  msgid "The cron job is missing. Please resave this page to add the job"
793
  msgstr ""
794
 
795
+ #: admin/admin.php:1016
796
  msgid "Maintenance is turned off"
797
  msgstr ""
798
 
799
+ #: admin/admin.php:1030
800
+ msgid "Reset count and other tools"
801
+ msgstr ""
802
 
803
+ #: admin/admin.php:1033
804
  msgid ""
805
  "This cannot be reversed. Make sure that your database has been backed up "
806
  "before proceeding"
808
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
809
  "ki, Sizin məlumat bazasının kopiyası var!"
810
 
811
+ #: admin/admin.php:1036
812
  #, fuzzy
813
  msgid "Reset Popular Posts"
814
  msgstr "Populyar yazılar"
815
 
816
+ #: admin/admin.php:1036
817
  msgid "Are you sure you want to reset the popular posts?"
818
  msgstr ""
819
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
820
 
821
+ #: admin/admin.php:1037
822
  #, fuzzy
823
  msgid "Reset Daily Popular Posts"
824
  msgstr "Gündəlik Populyar Yazılar"
825
 
826
+ #: admin/admin.php:1037
827
  msgid "Are you sure you want to reset the daily popular posts?"
828
  msgstr ""
829
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
830
  "istəyirsiniz?"
831
 
832
+ #: admin/admin.php:1040
833
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
834
+ msgstr ""
835
+
836
+ #: admin/admin.php:1043
837
+ msgid "Merge blog ID 0 and 1 post counts"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1043
841
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
842
+ msgstr ""
843
+
844
+ #: admin/admin.php:1046
845
+ msgid ""
846
+ "In older versions, the plugin created entries with duplicate post IDs. "
847
+ "Clicking the button below will merge these duplicate IDs"
848
+ msgstr ""
849
+
850
+ #: admin/admin.php:1049
851
+ msgid "Merge duplicates across blog IDs"
852
+ msgstr ""
853
+
854
+ #: admin/admin.php:1049
855
  msgid "This will delete the duplicate entries in the tables. Proceed?"
856
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
857
 
858
+ #: admin/admin.php:1066
859
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1069
863
  msgid ""
864
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
865
  "activate the plugin independently for each site. This would have resulted in "
866
  "two tables being created for each site in the network."
867
  msgstr ""
868
 
869
+ #: admin/admin.php:1070
870
  msgid ""
871
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
872
  "your database clean. You can use this tool to import the recorded counts "
873
  "from v1.x tables to the new v2.x table format."
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1073
877
  msgid ""
878
  "If you do not see any tables below, then it means that either all data has "
879
  "already been imported or no relevant information has been found."
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1076
883
  msgid ""
884
  "After running the importer, please verify that all the counts have been "
885
  "successfully imported. Only then should you delete any old tables!"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1110
889
  msgid "Blog ID"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1113
893
  msgid "Status"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1116
897
  msgid "Select to import"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1126
901
  msgid "Blog #"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1136
905
  msgid "Not imported"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1140
909
  msgid "Imported"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1161
913
  msgid "Begin import"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1162
917
  msgid "Delete selected tables"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1163
921
  msgid "Delete all imported tables"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1220 admin/admin.php:1316
925
  msgid "Daily Popular Posts"
926
  msgstr "Gündəlik Populyar Yazılar"
927
 
928
+ #: admin/admin.php:1250
929
  msgid "Support the development"
930
  msgstr "İnkişafı dəstək vermək"
931
 
932
+ #: admin/admin.php:1257
933
  msgid "Donation for Top 10"
934
  msgstr ""
935
 
936
+ #: admin/admin.php:1259
937
  msgid "Enter amount in USD: "
938
  msgstr "Miiqdarı USD ilə daxil et:"
939
 
940
+ #: admin/admin.php:1263
941
  #, fuzzy
942
  msgid "Send your donation to the author of Top 10"
943
  msgstr "Müəlifə ianə göndərin "
944
 
945
+ #: admin/admin.php:1270
946
  msgid "Follow me"
947
  msgstr ""
948
 
949
+ #: admin/admin.php:1280
950
  #, fuzzy
951
  msgid "Quick links"
952
  msgstr "Faydalı istenadlar"
953
 
954
+ #: admin/admin.php:1284
955
  #, fuzzy
956
  msgid "Top 10 plugin page"
957
  msgstr "plaginin səhifəsi"
958
 
959
+ #: admin/admin.php:1285
960
  msgid "Top 10 Github page"
961
  msgstr ""
962
 
963
+ #: admin/admin.php:1286
964
  msgid "Other plugins"
965
  msgstr "Digər plaginlər"
966
 
967
+ #: admin/admin.php:1287
968
  msgid "Ajay's blog"
969
  msgstr "Ajay-in blogu"
970
 
971
+ #: admin/admin.php:1288
972
  msgid "FAQ"
973
  msgstr ""
974
 
975
+ #: admin/admin.php:1289 admin/admin.php:1451
976
  msgid "Support"
977
  msgstr "Dəstək"
978
 
979
+ #: admin/admin.php:1290
980
  msgid "Reviews"
981
  msgstr ""
982
 
983
+ #: admin/admin.php:1313
984
  #, fuzzy
985
  msgid "Overall Popular Posts"
986
  msgstr "Bütün Populyar Yazılara Baxmaq"
987
 
988
+ #: admin/admin.php:1428
989
  msgid "Settings"
990
  msgstr "Kökləmələr"
991
 
992
+ #: admin/admin.php:1452
993
  msgid "Donate"
994
  msgstr "İanə etmək"
995
 
1003
  msgid "Display popular posts"
1004
  msgstr "Gündəlik Populyar Yazılar"
1005
 
1006
+ #: includes/class-top-10-widget.php:71
1007
  msgid "Title"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-top-10-widget.php:76
1011
  msgid "No. of posts"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-top-10-widget.php:81
1015
  msgid "Overall"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-top-10-widget.php:82
1019
  msgid "Custom time period (Enter below)"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-top-10-widget.php:86
1023
  msgid "In days and hours (applies only to custom option above)"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-top-10-widget.php:88
1027
  msgid "days"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-top-10-widget.php:91
1031
  msgid "hours"
1032
  msgstr ""
1033
 
1034
+ #: includes/class-top-10-widget.php:96
1035
  #, fuzzy
1036
  msgid "Show count?"
1037
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1038
 
1039
+ #: includes/class-top-10-widget.php:101
1040
  #, fuzzy
1041
  msgid "Show excerpt?"
1042
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1043
 
1044
+ #: includes/class-top-10-widget.php:106
1045
  #, fuzzy
1046
  msgid "Show author?"
1047
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1048
 
1049
+ #: includes/class-top-10-widget.php:111
1050
  #, fuzzy
1051
  msgid "Show date?"
1052
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
1053
 
1054
+ #: includes/class-top-10-widget.php:117
1055
  #, fuzzy
1056
  msgid "Thumbnails inline, before title"
1057
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
1058
 
1059
+ #: includes/class-top-10-widget.php:118
1060
  #, fuzzy
1061
  msgid "Thumbnails inline, after title"
1062
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
1063
 
1064
+ #: includes/class-top-10-widget.php:119
1065
  #, fuzzy
1066
  msgid "Only thumbnails, no text"
1067
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
1068
 
1069
+ #: includes/class-top-10-widget.php:120
1070
  #, fuzzy
1071
  msgid "No thumbnails, only text."
1072
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
1073
 
1074
+ #: includes/class-top-10-widget.php:125
1075
  #, fuzzy
1076
  msgid "Thumbnail height"
1077
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1078
 
1079
+ #: includes/class-top-10-widget.php:131
1080
  #, fuzzy
1081
  msgid "Thumbnail width"
1082
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
1083
 
1084
+ #: includes/class-top-10-widget.php:136
1085
+ msgid "Post types to include:"
1086
+ msgstr ""
1087
+
1088
+ #: top-10.php:756
1089
  msgid " by "
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:823
1093
  #, php-format
1094
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1095
  msgstr ""
1096
 
1097
+ #: top-10.php:1113
1098
  msgid "<h3>Popular Posts</h3>"
1099
  msgstr "<h3>Populyar yazılar</h3>"
1100
 
1101
+ #: top-10.php:1114
1102
  msgid "<h3>Daily Popular</h3>"
1103
  msgstr "<h3>Gündəlik Populyar</h3>"
1104
 
1105
+ #: top-10.php:1115
1106
  #, fuzzy
1107
  msgid "No top posts yet"
1108
  msgstr "10 populyar yazı statisticasını pozmaq"
1109
 
1110
+ #: top-10.php:1507
1111
+ msgid "thumb_timthumb argument has been deprecated"
1112
+ msgstr ""
1113
+
1114
+ #: top-10.php:1511
1115
+ msgid "thumb_timthumb_q argument has been deprecated"
1116
+ msgstr ""
1117
+
1118
+ #: top-10.php:1515
1119
+ msgid "filter argument has been deprecated"
1120
+ msgstr ""
1121
+
1122
+ #: top-10.php:1853
1123
  msgid "Once Weekly"
1124
  msgstr ""
1125
 
1126
+ #: top-10.php:1857
1127
  msgid "Once Fortnightly"
1128
  msgstr ""
1129
 
1130
+ #: top-10.php:1861
1131
  msgid "Once Monthly"
1132
  msgstr ""
1133
 
1134
+ #: top-10.php:1865
1135
  msgid "Once quarterly"
1136
  msgstr ""
1137
 
1138
+ #~ msgid "Reset count"
1139
+ #~ msgstr "Statistikanı sbros etmək"
1140
+
1141
  #~ msgid "Daily Popular should contain views of how many days? "
1142
  #~ msgstr ""
1143
  #~ "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks "
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: 2015-01-03 01:54-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
@@ -61,7 +61,7 @@ msgstr "Папярэдняя старонка"
61
  msgid "Next"
62
  msgstr "Наступная старонка"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Папулярныя запісы"
67
 
@@ -69,7 +69,7 @@ msgstr "Папулярныя запісы"
69
  msgid "Daily Popular"
70
  msgstr "Папулярныя сёння запісы"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Топ 10 запісаў"
75
 
@@ -98,126 +98,136 @@ msgstr ""
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
- #: admin/admin.php:163
102
  msgid "Options saved successfully."
103
  msgstr "Налады захаваны."
104
 
105
- #: admin/admin.php:173
 
 
 
 
 
 
106
  msgid "Options set to Default."
107
  msgstr "Налады скінуты."
108
 
109
- #: admin/admin.php:179
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Загаловак блока Папулярных запісаў:"
113
 
114
- #: admin/admin.php:185
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Загаловак блока Папулярных сёння запісаў:"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Топ 10 запісаў"
145
 
146
- #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:295 admin/admin.php:706
159
- #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -264,59 +274,59 @@ msgstr ""
264
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
265
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
266
 
267
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Налады ўбудовы:"
272
 
273
- #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
277
 
278
- #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
- #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Старонка"
286
 
287
- #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
- #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
- #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
- #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
- #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
- #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
- #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Фармат адлюстравання колькасці праглядаў:"
318
 
319
- #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -324,11 +334,11 @@ msgid ""
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
- #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
- #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -336,389 +346,379 @@ msgid ""
336
  "option."
337
  msgstr ""
338
 
339
- #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
- #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
- #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
353
 
354
- #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
- #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
363
 
364
- #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
- #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
372
 
373
- #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
- #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
- #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
- #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
391
 
392
- #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
- #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "Колькасць Папулярных запісаў у спісе:"
401
 
402
- #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
- #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
- #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
- #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
- #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr ""
423
 
424
- #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
- #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Загаловак блока Папулярных запісаў:"
434
 
435
- #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Загаловак блока Папулярных сёння запісаў:"
438
 
439
- #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
- #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
- #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
- #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr ""
454
 
455
- #: admin/admin.php:603
 
 
 
 
 
456
  msgid "Length of excerpt (in words): "
457
  msgstr ""
458
 
459
- #: admin/admin.php:609
460
  msgid "Show post author in list?"
461
  msgstr ""
462
 
463
- #: admin/admin.php:615
464
- msgid "Show post date in list?"
 
465
  msgstr ""
466
 
467
- #: admin/admin.php:621
468
- msgid "Limit post title length (in characters)"
469
  msgstr ""
470
 
471
- #: admin/admin.php:627
472
- msgid "Show view count in list?"
 
473
  msgstr ""
474
 
475
- #: admin/admin.php:633
476
- msgid "Always display latest post count in the daily lists?"
477
  msgstr ""
478
 
479
- #: admin/admin.php:636
480
- msgid ""
481
- "This option uses JavaScript and will increase your page load time. When you "
482
- "enable this option, the daily widget will not use the options set there, but "
483
- "options will need to be set on this screen."
484
  msgstr ""
485
 
486
- #: admin/admin.php:640
487
  msgid "Open links in new window"
488
  msgstr ""
489
 
490
- #: admin/admin.php:646
491
  msgid "Add nofollow attribute to links in the list"
492
  msgstr ""
493
 
494
- #: admin/admin.php:652
495
  msgid "Exclude display of related posts on these posts / pages"
496
  msgstr ""
497
 
498
- #: admin/admin.php:659
499
  msgid "Customise the list HTML"
500
  msgstr ""
501
 
502
- #: admin/admin.php:662
503
  msgid "HTML to display before the list of posts: "
504
  msgstr ""
505
 
506
- #: admin/admin.php:668
507
  msgid "HTML to display before each list item: "
508
  msgstr ""
509
 
510
- #: admin/admin.php:674
511
  #, fuzzy
512
  msgid "HTML to display after each list item: "
513
  msgstr "Фармат адлюстравання колькасці праглядаў:"
514
 
515
- #: admin/admin.php:680
516
  msgid "HTML to display after the list of posts: "
517
  msgstr ""
518
 
519
- #: admin/admin.php:721
520
  msgid "Location of post thumbnail:"
521
  msgstr ""
522
 
523
- #: admin/admin.php:725
524
  #, fuzzy
525
  msgid "Display thumbnails inline with posts, before title"
526
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
527
 
528
- #: admin/admin.php:730
529
  #, fuzzy
530
  msgid "Display thumbnails inline with posts, after title"
531
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
532
 
533
- #: admin/admin.php:735
534
  msgid "Display only thumbnails, no text"
535
  msgstr ""
536
 
537
- #: admin/admin.php:740
538
  msgid "Do not display thumbnails, only text."
539
  msgstr ""
540
 
541
- #: admin/admin.php:744
 
 
 
 
 
 
542
  msgid "Thumbnail size:"
543
  msgstr ""
544
 
545
- #: admin/admin.php:768
546
  msgid "Custom size"
547
  msgstr ""
548
 
549
- #: admin/admin.php:771
550
  msgid ""
551
  "You can choose from existing image sizes above or create a custom size. If "
552
  "you have chosen Custom size above, then enter the width, height and crop "
553
  "settings below. For best results, use a cropped image."
554
  msgstr ""
555
 
556
- #: admin/admin.php:772
557
  msgid ""
558
  "If you change the width and/or height below, existing images will not be "
559
  "automatically resized."
560
  msgstr ""
561
 
562
- #: admin/admin.php:773
563
  #, php-format
564
  msgid ""
565
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
566
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
567
- "regenerate all image sizes."
568
  msgstr ""
569
 
570
- #: admin/admin.php:776
571
  msgid "Width of custom thumbnail:"
572
  msgstr ""
573
 
574
- #: admin/admin.php:781
575
  msgid "Height of custom thumbnail"
576
  msgstr ""
577
 
578
- #: admin/admin.php:786
579
  msgid "Crop mode:"
580
  msgstr ""
581
 
582
- #: admin/admin.php:790
583
  msgid ""
584
  "By default, thumbnails will be proportionately cropped. Check this box to "
585
  "hard crop the thumbnails."
586
  msgstr ""
587
 
588
- #: admin/admin.php:791
589
  #, php-format
590
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
591
  msgstr ""
592
 
593
- #: admin/admin.php:793
594
  msgid ""
595
- "Since you're using the default styles set under the Custom Styles section, "
596
- "the width and height is fixed at 65px and crop mode is enabled."
597
  msgstr ""
598
 
599
- #: admin/admin.php:798
600
  msgid "Style attributes / Width and Height HTML attributes:"
601
  msgstr ""
602
 
603
- #: admin/admin.php:802
604
  msgid "Style attributes are used for width and height."
605
  msgstr ""
606
 
607
- #: admin/admin.php:807
608
  msgid "HTML width and height attributes are used for width and height."
609
  msgstr ""
610
 
611
- #: admin/admin.php:811
612
- msgid "Use timthumb to generate thumbnails? "
613
- msgstr ""
614
-
615
- #: admin/admin.php:814
616
- msgid ""
617
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
618
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
619
- msgstr ""
620
-
621
- #: admin/admin.php:817
622
- msgid "Quality of thumbnails generated by timthumb:"
623
- msgstr ""
624
-
625
- #: admin/admin.php:820
626
- msgid ""
627
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
628
- "file size. Suggested maximum value is 95. Default is 75."
629
- msgstr ""
630
-
631
- #: admin/admin.php:823
632
  msgid "Post thumbnail meta field name: "
633
  msgstr ""
634
 
635
- #: admin/admin.php:826
636
  msgid ""
637
  "The value of this field should contain the image source and is set in the "
638
  "<em>Add New Post</em> screen"
639
  msgstr ""
640
 
641
- #: admin/admin.php:829
642
  msgid ""
643
  "If the postmeta is not set, then should the plugin extract the first image "
644
  "from the post?"
645
  msgstr ""
646
 
647
- #: admin/admin.php:832
648
  msgid ""
649
  "This could slow down the loading of your page if the first image in the "
650
  "related posts is large in file-size"
651
  msgstr ""
652
 
653
- #: admin/admin.php:835
654
  msgid "Use default thumbnail? "
655
  msgstr ""
656
 
657
- #: admin/admin.php:838
658
  msgid ""
659
  "If checked, when no thumbnail is found, show a default one from the URL "
660
  "below. If not checked and no thumbnail is found, no image will be shown."
661
  msgstr ""
662
 
663
- #: admin/admin.php:841
664
  msgid "Default thumbnail: "
665
  msgstr ""
666
 
667
- #: admin/admin.php:845
668
  msgid ""
669
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
670
  "then it will check the meta field. If this is not available, then it will "
671
  "show the default image as specified above"
672
  msgstr ""
673
 
674
- #: admin/admin.php:869
675
  msgid "Custom CSS"
676
  msgstr ""
677
 
678
- #: admin/admin.php:884
679
  msgid "Use default style included in the plugin?"
680
  msgstr ""
681
 
682
- #: admin/admin.php:887
683
  msgid ""
684
  "Top 10 includes a default style that makes your popular posts list to look "
685
  "beautiful. Check the box above if you want to use this."
686
  msgstr ""
687
 
688
- #: admin/admin.php:888
689
  msgid ""
690
  "Enabling this option will turn on the thumbnails and set their width and "
691
  "height to 65px. It will also turn off the display of the author, excerpt and "
692
  "date if already enabled. Disabling this option will not revert any settings."
693
  msgstr ""
694
 
695
- #: admin/admin.php:889
696
  #, php-format
697
  msgid ""
698
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
699
  msgstr ""
700
 
701
- #: admin/admin.php:892
702
  msgid "Custom CSS to add to header:"
703
  msgstr ""
704
 
705
- #: admin/admin.php:897
706
  msgid ""
707
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
708
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
709
  "available CSS classes to style."
710
  msgstr ""
711
 
712
- #: admin/admin.php:917
713
  #, fuzzy
714
  msgid "Default Options"
715
  msgstr "Налады ўбудовы:"
716
 
717
- #: admin/admin.php:917
718
  msgid "Do you want to set options to Default?"
719
  msgstr "Скінуць налады ўбудовы?"
720
 
721
- #: admin/admin.php:941
722
  msgid ""
723
  "Over time the Daily Top 10 database grows in size, which reduces the "
724
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -726,229 +726,247 @@ msgid ""
726
  "will automatically delete entries older than 90 days."
727
  msgstr ""
728
 
729
- #: admin/admin.php:942
730
  msgid ""
731
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
732
  "everytime the job is rescheduled (i.e. you change the settings below)."
733
  msgstr ""
734
 
735
- #: admin/admin.php:945
736
  msgid "Enable scheduled maintenance of daily tables:"
737
  msgstr ""
738
 
739
- #: admin/admin.php:949
740
  msgid "Time to run maintenance"
741
  msgstr ""
742
 
743
- #: admin/admin.php:950
744
  msgid "hrs"
745
  msgstr ""
746
 
747
- #: admin/admin.php:950
748
  msgid "min"
749
  msgstr ""
750
 
751
- #: admin/admin.php:952
752
  msgid "How often should the maintenance be run:"
753
  msgstr ""
754
 
755
- #: admin/admin.php:956
756
  msgid "Daily"
757
  msgstr ""
758
 
759
- #: admin/admin.php:960
760
  msgid "Weekly"
761
  msgstr ""
762
 
763
- #: admin/admin.php:964
764
  msgid "Fortnightly"
765
  msgstr ""
766
 
767
- #: admin/admin.php:968
768
  msgid "Monthly"
769
  msgstr ""
770
 
771
- #: admin/admin.php:977
772
  msgid "The cron job has been scheduled. Maintenance will run "
773
  msgstr ""
774
 
775
- #: admin/admin.php:982
776
  msgid "The cron job is missing. Please resave this page to add the job"
777
  msgstr ""
778
 
779
- #: admin/admin.php:987
780
  msgid "Maintenance is turned off"
781
  msgstr ""
782
 
783
- #: admin/admin.php:1001
784
- msgid "Reset count"
785
  msgstr ""
786
 
787
- #: admin/admin.php:1004
788
  msgid ""
789
  "This cannot be reversed. Make sure that your database has been backed up "
790
  "before proceeding"
791
  msgstr ""
792
 
793
- #: admin/admin.php:1007
794
  #, fuzzy
795
  msgid "Reset Popular Posts"
796
  msgstr "Папулярныя запісы"
797
 
798
- #: admin/admin.php:1007
799
  msgid "Are you sure you want to reset the popular posts?"
800
  msgstr ""
801
 
802
- #: admin/admin.php:1008
803
  #, fuzzy
804
  msgid "Reset Daily Popular Posts"
805
  msgstr "Папулярныя сёння запісы"
806
 
807
- #: admin/admin.php:1008
808
  msgid "Are you sure you want to reset the daily popular posts?"
809
  msgstr ""
810
 
811
- #: admin/admin.php:1009
812
- msgid "Clear duplicates"
813
  msgstr ""
814
 
815
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
  msgid "This will delete the duplicate entries in the tables. Proceed?"
817
  msgstr ""
818
 
819
- #: admin/admin.php:1022
820
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
821
  msgstr ""
822
 
823
- #: admin/admin.php:1025
824
  msgid ""
825
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
826
  "activate the plugin independently for each site. This would have resulted in "
827
  "two tables being created for each site in the network."
828
  msgstr ""
829
 
830
- #: admin/admin.php:1026
831
  msgid ""
832
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
833
  "your database clean. You can use this tool to import the recorded counts "
834
  "from v1.x tables to the new v2.x table format."
835
  msgstr ""
836
 
837
- #: admin/admin.php:1029
838
  msgid ""
839
  "If you do not see any tables below, then it means that either all data has "
840
  "already been imported or no relevant information has been found."
841
  msgstr ""
842
 
843
- #: admin/admin.php:1032
844
  msgid ""
845
  "After running the importer, please verify that all the counts have been "
846
  "successfully imported. Only then should you delete any old tables!"
847
  msgstr ""
848
 
849
- #: admin/admin.php:1066
850
  msgid "Blog ID"
851
  msgstr ""
852
 
853
- #: admin/admin.php:1069
854
  msgid "Status"
855
  msgstr ""
856
 
857
- #: admin/admin.php:1072
858
  msgid "Select to import"
859
  msgstr ""
860
 
861
- #: admin/admin.php:1082
862
  msgid "Blog #"
863
  msgstr ""
864
 
865
- #: admin/admin.php:1092
866
  msgid "Not imported"
867
  msgstr ""
868
 
869
- #: admin/admin.php:1096
870
  msgid "Imported"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1117
874
  msgid "Begin import"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1118
878
  msgid "Delete selected tables"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1119
882
  msgid "Delete all imported tables"
883
  msgstr ""
884
 
885
- #: admin/admin.php:1176 admin/admin.php:1272
886
  msgid "Daily Popular Posts"
887
  msgstr "Папулярныя сёння запісы"
888
 
889
- #: admin/admin.php:1206
890
  #, fuzzy
891
  msgid "Support the development"
892
  msgstr "Падтрымаеце стваральніка ўбудовы"
893
 
894
- #: admin/admin.php:1213
895
  msgid "Donation for Top 10"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1215
899
  msgid "Enter amount in USD: "
900
  msgstr ""
901
 
902
- #: admin/admin.php:1219
903
  msgid "Send your donation to the author of Top 10"
904
  msgstr ""
905
 
906
- #: admin/admin.php:1226
907
  msgid "Follow me"
908
  msgstr ""
909
 
910
- #: admin/admin.php:1236
911
  msgid "Quick links"
912
  msgstr ""
913
 
914
- #: admin/admin.php:1240
915
  msgid "Top 10 plugin page"
916
  msgstr ""
917
 
918
- #: admin/admin.php:1241
919
  msgid "Top 10 Github page"
920
  msgstr ""
921
 
922
- #: admin/admin.php:1242
923
  msgid "Other plugins"
924
  msgstr ""
925
 
926
- #: admin/admin.php:1243
927
  msgid "Ajay's blog"
928
  msgstr ""
929
 
930
- #: admin/admin.php:1244
931
  msgid "FAQ"
932
  msgstr ""
933
 
934
- #: admin/admin.php:1245 admin/admin.php:1403
935
  msgid "Support"
936
  msgstr ""
937
 
938
- #: admin/admin.php:1246
939
  msgid "Reviews"
940
  msgstr ""
941
 
942
- #: admin/admin.php:1269
943
  #, fuzzy
944
  msgid "Overall Popular Posts"
945
  msgstr "Паглядзець усе Папулярныя запісы"
946
 
947
- #: admin/admin.php:1380
948
  msgid "Settings"
949
  msgstr ""
950
 
951
- #: admin/admin.php:1404
952
  msgid "Donate"
953
  msgstr ""
954
 
@@ -962,111 +980,127 @@ msgstr "Папулярныя запісы"
962
  msgid "Display popular posts"
963
  msgstr "Папулярныя сёння запісы"
964
 
965
- #: includes/class-top-10-widget.php:59
966
  msgid "Title"
967
  msgstr ""
968
 
969
- #: includes/class-top-10-widget.php:64
970
  msgid "No. of posts"
971
  msgstr ""
972
 
973
- #: includes/class-top-10-widget.php:69
974
  msgid "Overall"
975
  msgstr ""
976
 
977
- #: includes/class-top-10-widget.php:70
978
  msgid "Custom time period (Enter below)"
979
  msgstr ""
980
 
981
- #: includes/class-top-10-widget.php:74
982
  msgid "In days and hours (applies only to custom option above)"
983
  msgstr ""
984
 
985
- #: includes/class-top-10-widget.php:76
986
  msgid "days"
987
  msgstr ""
988
 
989
- #: includes/class-top-10-widget.php:79
990
  msgid "hours"
991
  msgstr ""
992
 
993
- #: includes/class-top-10-widget.php:84
994
  msgid "Show count?"
995
  msgstr ""
996
 
997
- #: includes/class-top-10-widget.php:89
998
  msgid "Show excerpt?"
999
  msgstr ""
1000
 
1001
- #: includes/class-top-10-widget.php:94
1002
  msgid "Show author?"
1003
  msgstr ""
1004
 
1005
- #: includes/class-top-10-widget.php:99
1006
  msgid "Show date?"
1007
  msgstr ""
1008
 
1009
- #: includes/class-top-10-widget.php:105
1010
  #, fuzzy
1011
  msgid "Thumbnails inline, before title"
1012
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
1013
 
1014
- #: includes/class-top-10-widget.php:106
1015
  #, fuzzy
1016
  msgid "Thumbnails inline, after title"
1017
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
1018
 
1019
- #: includes/class-top-10-widget.php:107
1020
  msgid "Only thumbnails, no text"
1021
  msgstr ""
1022
 
1023
- #: includes/class-top-10-widget.php:108
1024
  msgid "No thumbnails, only text."
1025
  msgstr ""
1026
 
1027
- #: includes/class-top-10-widget.php:113
1028
  msgid "Thumbnail height"
1029
  msgstr ""
1030
 
1031
- #: includes/class-top-10-widget.php:118
1032
  msgid "Thumbnail width"
1033
  msgstr ""
1034
 
1035
- #: top-10.php:879
 
 
 
 
1036
  msgid " by "
1037
  msgstr ""
1038
 
1039
- #: top-10.php:930
1040
  #, php-format
1041
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1042
  msgstr ""
1043
 
1044
- #: top-10.php:1029
1045
  msgid "<h3>Popular Posts</h3>"
1046
  msgstr "<h3>Папулярныя запісы</h3>"
1047
 
1048
- #: top-10.php:1030
1049
  msgid "<h3>Daily Popular</h3>"
1050
  msgstr "<h3>Папулярныя сёння запісы</h3>"
1051
 
1052
- #: top-10.php:1031
1053
  #, fuzzy
1054
  msgid "No top posts yet"
1055
  msgstr "Загаловак блока Папулярных запісаў:"
1056
 
1057
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1058
  msgid "Once Weekly"
1059
  msgstr ""
1060
 
1061
- #: top-10.php:1694
1062
  msgid "Once Fortnightly"
1063
  msgstr ""
1064
 
1065
- #: top-10.php:1698
1066
  msgid "Once Monthly"
1067
  msgstr ""
1068
 
1069
- #: top-10.php:1702
1070
  msgid "Once quarterly"
1071
  msgstr ""
1072
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
61
  msgid "Next"
62
  msgstr "Наступная старонка"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Папулярныя запісы"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Папулярныя сёння запісы"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Топ 10 запісаў"
75
 
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:171
102
  msgid "Options saved successfully."
103
  msgstr "Налады захаваны."
104
 
105
+ #: admin/admin.php:174
106
+ msgid ""
107
+ "Default styles selected. Thumbnail width, height and crop settings have been "
108
+ "fixed. Author, Excerpt and Date will not be displayed."
109
+ msgstr ""
110
+
111
+ #: admin/admin.php:190
112
  msgid "Options set to Default."
113
  msgstr "Налады скінуты."
114
 
115
+ #: admin/admin.php:197
116
  #, fuzzy
117
  msgid "Top 10 popular posts reset"
118
  msgstr "Загаловак блока Папулярных запісаў:"
119
 
120
+ #: admin/admin.php:204
121
  #, fuzzy
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "Загаловак блока Папулярных сёння запісаў:"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr ""
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid ""
147
  "Selected tables have been deleted. Note that only imported tables have been "
148
  "deleted."
149
  msgstr ""
150
 
151
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
152
  #, fuzzy
153
  msgid "Top 10 Settings"
154
  msgstr "Топ 10 запісаў"
155
 
156
+ #: admin/admin.php:321 admin/admin.php:343
157
  msgid "General options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:322 admin/admin.php:435
161
  msgid "Counter and tracker options"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:323 admin/admin.php:540
165
  msgid "Popular post list options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:324 admin/admin.php:742
169
+ #: includes/class-top-10-widget.php:115
170
  msgid "Thumbnail options"
171
  msgstr ""
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
274
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
275
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
276
 
277
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
278
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
279
  #, fuzzy
280
  msgid "Save Options"
281
  msgstr "Налады ўбудовы:"
282
 
283
+ #: admin/admin.php:451
284
  #, fuzzy
285
  msgid "Display number of views on:"
286
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
287
 
288
+ #: admin/admin.php:453
289
  msgid "Posts"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:454
293
  #, fuzzy
294
  msgid "Pages"
295
  msgstr "Старонка"
296
 
297
+ #: admin/admin.php:455
298
  msgid "Home page"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:456
302
  msgid "Feeds"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:457
306
  msgid "Category archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:458
310
  msgid "Tag archives"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:459
314
  msgid "Other archives"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:460
318
  msgid ""
319
  "If you choose to disable this, please add <code>&lt;?php if "
320
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
321
  "</code> to your template file where you want it displayed"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:464
325
  #, fuzzy
326
  msgid "Format to display the post views:"
327
  msgstr "Фармат адлюстравання колькасці праглядаў:"
328
 
329
+ #: admin/admin.php:467
330
  msgid ""
331
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
332
  "%</code> to display the daily count and <code>%overallcount%</code> to "
334
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
335
  msgstr ""
336
 
337
+ #: admin/admin.php:471
338
  msgid "What do display when there are no visits?"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:474
342
  msgid ""
343
  "This text applies only when there are 0 hits for the post and it isn't a "
344
  "single page. e.g. if you display post views on the homepage or archives then "
346
  "option."
347
  msgstr ""
348
 
349
+ #: admin/admin.php:478
350
  msgid "Always display latest post count"
351
  msgstr ""
352
 
353
+ #: admin/admin.php:481
354
  msgid ""
355
  "This option uses JavaScript and will increase your page load time. Turn this "
356
  "off if you are not using caching plugins or are OK with displaying older "
357
  "cached counts."
358
  msgstr ""
359
 
360
+ #: admin/admin.php:485
361
  msgid "Track visits of authors on their own posts?"
362
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
363
 
364
+ #: admin/admin.php:488
365
  msgid ""
366
  "Disabling this option will stop authors visits tracked on their own posts"
367
  msgstr ""
368
 
369
+ #: admin/admin.php:492
370
  #, fuzzy
371
  msgid "Track visits of admins?"
372
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
373
 
374
+ #: admin/admin.php:495
375
  msgid "Disabling this option will stop admin visits being tracked."
376
  msgstr ""
377
 
378
+ #: admin/admin.php:499
379
  #, fuzzy
380
  msgid "Track visits of Editors?"
381
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
382
 
383
+ #: admin/admin.php:502
384
  msgid "Disabling this option will stop editor visits being tracked."
385
  msgstr ""
386
 
387
+ #: admin/admin.php:506
388
  msgid "Display page views on Posts and Pages in Admin"
389
  msgstr ""
390
 
391
+ #: admin/admin.php:509
392
  msgid ""
393
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
394
  "and All Pages"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:513
398
  #, fuzzy
399
  msgid "Show number of views to non-admins"
400
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
401
 
402
+ #: admin/admin.php:516
403
  msgid ""
404
  "If you disable this then non-admins won't see the above columns or view the "
405
  "independent pages with the top posts"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:556
409
  msgid "Number of popular posts to display: "
410
  msgstr "Колькасць Папулярных запісаў у спісе:"
411
 
412
+ #: admin/admin.php:559
413
  msgid ""
414
  "Maximum number of posts that will be displayed in the list. This option is "
415
  "used if you don't specify the number of posts in the widget or shortcodes"
416
  msgstr ""
417
 
418
+ #: admin/admin.php:563
419
  msgid "Post types to include in results (including custom post types)"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:577
423
  msgid "List of post or page IDs to exclude from the results: "
424
  msgstr ""
425
 
426
+ #: admin/admin.php:579 admin/admin.php:691
427
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
428
  msgstr ""
429
 
430
+ #: admin/admin.php:583
431
  msgid "Exclude Categories: "
432
  msgstr ""
433
 
434
+ #: admin/admin.php:598
435
  msgid ""
436
  "Comma separated list of category slugs. The field above has an autocomplete "
437
  "so simply start typing in the starting letters and it will prompt you with "
438
  "options"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:603
442
  msgid "Title of popular posts: "
443
  msgstr "Загаловак блока Папулярных запісаў:"
444
 
445
+ #: admin/admin.php:609
446
  msgid "Title of daily popular posts: "
447
  msgstr "Загаловак блока Папулярных сёння запісаў:"
448
 
449
+ #: admin/admin.php:615
450
  msgid "When there are no posts, what should be shown?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:619
454
  msgid "Blank Output"
455
  msgstr ""
456
 
457
+ #: admin/admin.php:623
458
  msgid "Display:"
459
  msgstr ""
460
 
461
+ #: admin/admin.php:628
462
  msgid "Show post excerpt in list?"
463
  msgstr ""
464
 
465
+ #: admin/admin.php:633
466
+ msgid ""
467
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
468
+ msgstr ""
469
+
470
+ #: admin/admin.php:638
471
  msgid "Length of excerpt (in words): "
472
  msgstr ""
473
 
474
+ #: admin/admin.php:644
475
  msgid "Show post author in list?"
476
  msgstr ""
477
 
478
+ #: admin/admin.php:649
479
+ msgid ""
480
+ "Default style selected under the Custom Styles. Author display is disabled."
481
  msgstr ""
482
 
483
+ #: admin/admin.php:654
484
+ msgid "Show post date in list?"
485
  msgstr ""
486
 
487
+ #: admin/admin.php:659
488
+ msgid ""
489
+ "Default style selected under the Custom Styles. Date display is disabled."
490
  msgstr ""
491
 
492
+ #: admin/admin.php:664
493
+ msgid "Limit post title length (in characters)"
494
  msgstr ""
495
 
496
+ #: admin/admin.php:670
497
+ msgid "Show view count in list?"
 
 
 
498
  msgstr ""
499
 
500
+ #: admin/admin.php:676
501
  msgid "Open links in new window"
502
  msgstr ""
503
 
504
+ #: admin/admin.php:682
505
  msgid "Add nofollow attribute to links in the list"
506
  msgstr ""
507
 
508
+ #: admin/admin.php:688
509
  msgid "Exclude display of related posts on these posts / pages"
510
  msgstr ""
511
 
512
+ #: admin/admin.php:695
513
  msgid "Customise the list HTML"
514
  msgstr ""
515
 
516
+ #: admin/admin.php:698
517
  msgid "HTML to display before the list of posts: "
518
  msgstr ""
519
 
520
+ #: admin/admin.php:704
521
  msgid "HTML to display before each list item: "
522
  msgstr ""
523
 
524
+ #: admin/admin.php:710
525
  #, fuzzy
526
  msgid "HTML to display after each list item: "
527
  msgstr "Фармат адлюстравання колькасці праглядаў:"
528
 
529
+ #: admin/admin.php:716
530
  msgid "HTML to display after the list of posts: "
531
  msgstr ""
532
 
533
+ #: admin/admin.php:757
534
  msgid "Location of post thumbnail:"
535
  msgstr ""
536
 
537
+ #: admin/admin.php:761
538
  #, fuzzy
539
  msgid "Display thumbnails inline with posts, before title"
540
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
541
 
542
+ #: admin/admin.php:766
543
  #, fuzzy
544
  msgid "Display thumbnails inline with posts, after title"
545
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
546
 
547
+ #: admin/admin.php:771
548
  msgid "Display only thumbnails, no text"
549
  msgstr ""
550
 
551
+ #: admin/admin.php:776
552
  msgid "Do not display thumbnails, only text."
553
  msgstr ""
554
 
555
+ #: admin/admin.php:780
556
+ msgid ""
557
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
558
+ "to be inline before title"
559
+ msgstr ""
560
+
561
+ #: admin/admin.php:784
562
  msgid "Thumbnail size:"
563
  msgstr ""
564
 
565
+ #: admin/admin.php:808
566
  msgid "Custom size"
567
  msgstr ""
568
 
569
+ #: admin/admin.php:811
570
  msgid ""
571
  "You can choose from existing image sizes above or create a custom size. If "
572
  "you have chosen Custom size above, then enter the width, height and crop "
573
  "settings below. For best results, use a cropped image."
574
  msgstr ""
575
 
576
+ #: admin/admin.php:812
577
  msgid ""
578
  "If you change the width and/or height below, existing images will not be "
579
  "automatically resized."
580
  msgstr ""
581
 
582
+ #: admin/admin.php:813
583
  #, php-format
584
  msgid ""
585
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
586
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
587
+ "all image sizes."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:816
591
  msgid "Width of custom thumbnail:"
592
  msgstr ""
593
 
594
+ #: admin/admin.php:821
595
  msgid "Height of custom thumbnail"
596
  msgstr ""
597
 
598
+ #: admin/admin.php:826
599
  msgid "Crop mode:"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:830
603
  msgid ""
604
  "By default, thumbnails will be proportionately cropped. Check this box to "
605
  "hard crop the thumbnails."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:831
609
  #, php-format
610
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
611
  msgstr ""
612
 
613
+ #: admin/admin.php:834
614
  msgid ""
615
+ "Default style selected under the Custom Styles. Thumbnail width and height "
616
+ "is fixed at 65px and crop mode is enabled."
617
  msgstr ""
618
 
619
+ #: admin/admin.php:839
620
  msgid "Style attributes / Width and Height HTML attributes:"
621
  msgstr ""
622
 
623
+ #: admin/admin.php:843
624
  msgid "Style attributes are used for width and height."
625
  msgstr ""
626
 
627
+ #: admin/admin.php:848
628
  msgid "HTML width and height attributes are used for width and height."
629
  msgstr ""
630
 
631
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  msgid "Post thumbnail meta field name: "
633
  msgstr ""
634
 
635
+ #: admin/admin.php:855
636
  msgid ""
637
  "The value of this field should contain the image source and is set in the "
638
  "<em>Add New Post</em> screen"
639
  msgstr ""
640
 
641
+ #: admin/admin.php:858
642
  msgid ""
643
  "If the postmeta is not set, then should the plugin extract the first image "
644
  "from the post?"
645
  msgstr ""
646
 
647
+ #: admin/admin.php:861
648
  msgid ""
649
  "This could slow down the loading of your page if the first image in the "
650
  "related posts is large in file-size"
651
  msgstr ""
652
 
653
+ #: admin/admin.php:864
654
  msgid "Use default thumbnail? "
655
  msgstr ""
656
 
657
+ #: admin/admin.php:867
658
  msgid ""
659
  "If checked, when no thumbnail is found, show a default one from the URL "
660
  "below. If not checked and no thumbnail is found, no image will be shown."
661
  msgstr ""
662
 
663
+ #: admin/admin.php:870
664
  msgid "Default thumbnail: "
665
  msgstr ""
666
 
667
+ #: admin/admin.php:874
668
  msgid ""
669
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
670
  "then it will check the meta field. If this is not available, then it will "
671
  "show the default image as specified above"
672
  msgstr ""
673
 
674
+ #: admin/admin.php:898
675
  msgid "Custom CSS"
676
  msgstr ""
677
 
678
+ #: admin/admin.php:913
679
  msgid "Use default style included in the plugin?"
680
  msgstr ""
681
 
682
+ #: admin/admin.php:916
683
  msgid ""
684
  "Top 10 includes a default style that makes your popular posts list to look "
685
  "beautiful. Check the box above if you want to use this."
686
  msgstr ""
687
 
688
+ #: admin/admin.php:917
689
  msgid ""
690
  "Enabling this option will turn on the thumbnails and set their width and "
691
  "height to 65px. It will also turn off the display of the author, excerpt and "
692
  "date if already enabled. Disabling this option will not revert any settings."
693
  msgstr ""
694
 
695
+ #: admin/admin.php:918
696
  #, php-format
697
  msgid ""
698
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
699
  msgstr ""
700
 
701
+ #: admin/admin.php:921
702
  msgid "Custom CSS to add to header:"
703
  msgstr ""
704
 
705
+ #: admin/admin.php:926
706
  msgid ""
707
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
708
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
709
  "available CSS classes to style."
710
  msgstr ""
711
 
712
+ #: admin/admin.php:946
713
  #, fuzzy
714
  msgid "Default Options"
715
  msgstr "Налады ўбудовы:"
716
 
717
+ #: admin/admin.php:946
718
  msgid "Do you want to set options to Default?"
719
  msgstr "Скінуць налады ўбудовы?"
720
 
721
+ #: admin/admin.php:970
722
  msgid ""
723
  "Over time the Daily Top 10 database grows in size, which reduces the "
724
  "performance of the plugin. Cleaning the database at regular intervals could "
726
  "will automatically delete entries older than 90 days."
727
  msgstr ""
728
 
729
+ #: admin/admin.php:971
730
  msgid ""
731
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
732
  "everytime the job is rescheduled (i.e. you change the settings below)."
733
  msgstr ""
734
 
735
+ #: admin/admin.php:974
736
  msgid "Enable scheduled maintenance of daily tables:"
737
  msgstr ""
738
 
739
+ #: admin/admin.php:978
740
  msgid "Time to run maintenance"
741
  msgstr ""
742
 
743
+ #: admin/admin.php:979
744
  msgid "hrs"
745
  msgstr ""
746
 
747
+ #: admin/admin.php:979
748
  msgid "min"
749
  msgstr ""
750
 
751
+ #: admin/admin.php:981
752
  msgid "How often should the maintenance be run:"
753
  msgstr ""
754
 
755
+ #: admin/admin.php:985
756
  msgid "Daily"
757
  msgstr ""
758
 
759
+ #: admin/admin.php:989
760
  msgid "Weekly"
761
  msgstr ""
762
 
763
+ #: admin/admin.php:993
764
  msgid "Fortnightly"
765
  msgstr ""
766
 
767
+ #: admin/admin.php:997
768
  msgid "Monthly"
769
  msgstr ""
770
 
771
+ #: admin/admin.php:1006
772
  msgid "The cron job has been scheduled. Maintenance will run "
773
  msgstr ""
774
 
775
+ #: admin/admin.php:1011
776
  msgid "The cron job is missing. Please resave this page to add the job"
777
  msgstr ""
778
 
779
+ #: admin/admin.php:1016
780
  msgid "Maintenance is turned off"
781
  msgstr ""
782
 
783
+ #: admin/admin.php:1030
784
+ msgid "Reset count and other tools"
785
  msgstr ""
786
 
787
+ #: admin/admin.php:1033
788
  msgid ""
789
  "This cannot be reversed. Make sure that your database has been backed up "
790
  "before proceeding"
791
  msgstr ""
792
 
793
+ #: admin/admin.php:1036
794
  #, fuzzy
795
  msgid "Reset Popular Posts"
796
  msgstr "Папулярныя запісы"
797
 
798
+ #: admin/admin.php:1036
799
  msgid "Are you sure you want to reset the popular posts?"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1037
803
  #, fuzzy
804
  msgid "Reset Daily Popular Posts"
805
  msgstr "Папулярныя сёння запісы"
806
 
807
+ #: admin/admin.php:1037
808
  msgid "Are you sure you want to reset the daily popular posts?"
809
  msgstr ""
810
 
811
+ #: admin/admin.php:1040
812
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
813
  msgstr ""
814
 
815
+ #: admin/admin.php:1043
816
+ msgid "Merge blog ID 0 and 1 post counts"
817
+ msgstr ""
818
+
819
+ #: admin/admin.php:1043
820
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
821
+ msgstr ""
822
+
823
+ #: admin/admin.php:1046
824
+ msgid ""
825
+ "In older versions, the plugin created entries with duplicate post IDs. "
826
+ "Clicking the button below will merge these duplicate IDs"
827
+ msgstr ""
828
+
829
+ #: admin/admin.php:1049
830
+ msgid "Merge duplicates across blog IDs"
831
+ msgstr ""
832
+
833
+ #: admin/admin.php:1049
834
  msgid "This will delete the duplicate entries in the tables. Proceed?"
835
  msgstr ""
836
 
837
+ #: admin/admin.php:1066
838
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
839
  msgstr ""
840
 
841
+ #: admin/admin.php:1069
842
  msgid ""
843
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
844
  "activate the plugin independently for each site. This would have resulted in "
845
  "two tables being created for each site in the network."
846
  msgstr ""
847
 
848
+ #: admin/admin.php:1070
849
  msgid ""
850
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
851
  "your database clean. You can use this tool to import the recorded counts "
852
  "from v1.x tables to the new v2.x table format."
853
  msgstr ""
854
 
855
+ #: admin/admin.php:1073
856
  msgid ""
857
  "If you do not see any tables below, then it means that either all data has "
858
  "already been imported or no relevant information has been found."
859
  msgstr ""
860
 
861
+ #: admin/admin.php:1076
862
  msgid ""
863
  "After running the importer, please verify that all the counts have been "
864
  "successfully imported. Only then should you delete any old tables!"
865
  msgstr ""
866
 
867
+ #: admin/admin.php:1110
868
  msgid "Blog ID"
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1113
872
  msgid "Status"
873
  msgstr ""
874
 
875
+ #: admin/admin.php:1116
876
  msgid "Select to import"
877
  msgstr ""
878
 
879
+ #: admin/admin.php:1126
880
  msgid "Blog #"
881
  msgstr ""
882
 
883
+ #: admin/admin.php:1136
884
  msgid "Not imported"
885
  msgstr ""
886
 
887
+ #: admin/admin.php:1140
888
  msgid "Imported"
889
  msgstr ""
890
 
891
+ #: admin/admin.php:1161
892
  msgid "Begin import"
893
  msgstr ""
894
 
895
+ #: admin/admin.php:1162
896
  msgid "Delete selected tables"
897
  msgstr ""
898
 
899
+ #: admin/admin.php:1163
900
  msgid "Delete all imported tables"
901
  msgstr ""
902
 
903
+ #: admin/admin.php:1220 admin/admin.php:1316
904
  msgid "Daily Popular Posts"
905
  msgstr "Папулярныя сёння запісы"
906
 
907
+ #: admin/admin.php:1250
908
  #, fuzzy
909
  msgid "Support the development"
910
  msgstr "Падтрымаеце стваральніка ўбудовы"
911
 
912
+ #: admin/admin.php:1257
913
  msgid "Donation for Top 10"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1259
917
  msgid "Enter amount in USD: "
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1263
921
  msgid "Send your donation to the author of Top 10"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1270
925
  msgid "Follow me"
926
  msgstr ""
927
 
928
+ #: admin/admin.php:1280
929
  msgid "Quick links"
930
  msgstr ""
931
 
932
+ #: admin/admin.php:1284
933
  msgid "Top 10 plugin page"
934
  msgstr ""
935
 
936
+ #: admin/admin.php:1285
937
  msgid "Top 10 Github page"
938
  msgstr ""
939
 
940
+ #: admin/admin.php:1286
941
  msgid "Other plugins"
942
  msgstr ""
943
 
944
+ #: admin/admin.php:1287
945
  msgid "Ajay's blog"
946
  msgstr ""
947
 
948
+ #: admin/admin.php:1288
949
  msgid "FAQ"
950
  msgstr ""
951
 
952
+ #: admin/admin.php:1289 admin/admin.php:1451
953
  msgid "Support"
954
  msgstr ""
955
 
956
+ #: admin/admin.php:1290
957
  msgid "Reviews"
958
  msgstr ""
959
 
960
+ #: admin/admin.php:1313
961
  #, fuzzy
962
  msgid "Overall Popular Posts"
963
  msgstr "Паглядзець усе Папулярныя запісы"
964
 
965
+ #: admin/admin.php:1428
966
  msgid "Settings"
967
  msgstr ""
968
 
969
+ #: admin/admin.php:1452
970
  msgid "Donate"
971
  msgstr ""
972
 
980
  msgid "Display popular posts"
981
  msgstr "Папулярныя сёння запісы"
982
 
983
+ #: includes/class-top-10-widget.php:71
984
  msgid "Title"
985
  msgstr ""
986
 
987
+ #: includes/class-top-10-widget.php:76
988
  msgid "No. of posts"
989
  msgstr ""
990
 
991
+ #: includes/class-top-10-widget.php:81
992
  msgid "Overall"
993
  msgstr ""
994
 
995
+ #: includes/class-top-10-widget.php:82
996
  msgid "Custom time period (Enter below)"
997
  msgstr ""
998
 
999
+ #: includes/class-top-10-widget.php:86
1000
  msgid "In days and hours (applies only to custom option above)"
1001
  msgstr ""
1002
 
1003
+ #: includes/class-top-10-widget.php:88
1004
  msgid "days"
1005
  msgstr ""
1006
 
1007
+ #: includes/class-top-10-widget.php:91
1008
  msgid "hours"
1009
  msgstr ""
1010
 
1011
+ #: includes/class-top-10-widget.php:96
1012
  msgid "Show count?"
1013
  msgstr ""
1014
 
1015
+ #: includes/class-top-10-widget.php:101
1016
  msgid "Show excerpt?"
1017
  msgstr ""
1018
 
1019
+ #: includes/class-top-10-widget.php:106
1020
  msgid "Show author?"
1021
  msgstr ""
1022
 
1023
+ #: includes/class-top-10-widget.php:111
1024
  msgid "Show date?"
1025
  msgstr ""
1026
 
1027
+ #: includes/class-top-10-widget.php:117
1028
  #, fuzzy
1029
  msgid "Thumbnails inline, before title"
1030
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
1031
 
1032
+ #: includes/class-top-10-widget.php:118
1033
  #, fuzzy
1034
  msgid "Thumbnails inline, after title"
1035
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
1036
 
1037
+ #: includes/class-top-10-widget.php:119
1038
  msgid "Only thumbnails, no text"
1039
  msgstr ""
1040
 
1041
+ #: includes/class-top-10-widget.php:120
1042
  msgid "No thumbnails, only text."
1043
  msgstr ""
1044
 
1045
+ #: includes/class-top-10-widget.php:125
1046
  msgid "Thumbnail height"
1047
  msgstr ""
1048
 
1049
+ #: includes/class-top-10-widget.php:131
1050
  msgid "Thumbnail width"
1051
  msgstr ""
1052
 
1053
+ #: includes/class-top-10-widget.php:136
1054
+ msgid "Post types to include:"
1055
+ msgstr ""
1056
+
1057
+ #: top-10.php:756
1058
  msgid " by "
1059
  msgstr ""
1060
 
1061
+ #: top-10.php:823
1062
  #, php-format
1063
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1064
  msgstr ""
1065
 
1066
+ #: top-10.php:1113
1067
  msgid "<h3>Popular Posts</h3>"
1068
  msgstr "<h3>Папулярныя запісы</h3>"
1069
 
1070
+ #: top-10.php:1114
1071
  msgid "<h3>Daily Popular</h3>"
1072
  msgstr "<h3>Папулярныя сёння запісы</h3>"
1073
 
1074
+ #: top-10.php:1115
1075
  #, fuzzy
1076
  msgid "No top posts yet"
1077
  msgstr "Загаловак блока Папулярных запісаў:"
1078
 
1079
+ #: top-10.php:1507
1080
+ msgid "thumb_timthumb argument has been deprecated"
1081
+ msgstr ""
1082
+
1083
+ #: top-10.php:1511
1084
+ msgid "thumb_timthumb_q argument has been deprecated"
1085
+ msgstr ""
1086
+
1087
+ #: top-10.php:1515
1088
+ msgid "filter argument has been deprecated"
1089
+ msgstr ""
1090
+
1091
+ #: top-10.php:1853
1092
  msgid "Once Weekly"
1093
  msgstr ""
1094
 
1095
+ #: top-10.php:1857
1096
  msgid "Once Fortnightly"
1097
  msgstr ""
1098
 
1099
+ #: top-10.php:1861
1100
  msgid "Once Monthly"
1101
  msgstr ""
1102
 
1103
+ #: top-10.php:1865
1104
  msgid "Once quarterly"
1105
  msgstr ""
1106
 
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: 2015-01-03 01:53-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
@@ -59,7 +59,7 @@ msgstr ""
59
  msgid "Next"
60
  msgstr ""
61
 
62
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
@@ -67,7 +67,7 @@ msgstr ""
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
- #: admin/admin-metabox.php:38 admin/admin.php:1263
71
  msgid "Top 10"
72
  msgstr ""
73
 
@@ -96,123 +96,133 @@ msgstr ""
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
- #: admin/admin.php:163
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
- #: admin/admin.php:173
 
 
 
 
 
 
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
- #: admin/admin.php:179
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
- #: admin/admin.php:185
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
- #: admin/admin.php:192
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
- #: admin/admin.php:204
 
 
 
 
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
- #: admin/admin.php:208
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
- #: admin/admin.php:247
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
- #: admin/admin.php:272
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
- #: admin/admin.php:292 admin/admin.php:314
142
  msgid "General options"
143
  msgstr ""
144
 
145
- #: admin/admin.php:293 admin/admin.php:406
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:294 admin/admin.php:511
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:295 admin/admin.php:706
154
- #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:296
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
- #: admin/admin.php:297 admin/admin.php:937
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
167
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
168
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
169
- #: admin/admin.php:1225 admin/admin.php:1235
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
- #: admin/admin.php:330
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
- #: admin/admin.php:336
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
- #: admin/admin.php:342
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
- #: admin/admin.php:345
186
  msgid ""
187
  "This will try to prevent W3 Total Cache and other caching plugins from "
188
  "caching the tracker script of the plugin. Try toggling this option in case "
189
  "you find that your posts are not tracked."
190
  msgstr ""
191
 
192
- #: admin/admin.php:349
193
  msgid "Start daily counts from midnight:"
194
  msgstr ""
195
 
196
- #: admin/admin.php:352
197
  msgid ""
198
  "Daily counter will display number of visits from midnight. This option is "
199
  "checked by default and mimics the way most normal counters work. Turning "
200
  "this off will allow you to use the hourly setting in the next option."
201
  msgstr ""
202
 
203
- #: admin/admin.php:356
204
  msgid "Daily popular contains top posts over:"
205
  msgstr ""
206
 
207
- #: admin/admin.php:358
208
  msgid "day(s)"
209
  msgstr ""
210
 
211
- #: admin/admin.php:359
212
  msgid "hour(s)"
213
  msgstr ""
214
 
215
- #: admin/admin.php:360
216
  msgid ""
217
  "Think of Daily Popular has a custom date range applied as a global setting. "
218
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -220,91 +230,91 @@ msgid ""
220
  "overridden in the widget."
221
  msgstr ""
222
 
223
- #: admin/admin.php:364
224
  msgid "Delete options on uninstall"
225
  msgstr ""
226
 
227
- #: admin/admin.php:367
228
  msgid ""
229
  "If this is checked, all settings related to Top 10 are removed from the "
230
  "database if you choose to uninstall/delete the plugin."
231
  msgstr ""
232
 
233
- #: admin/admin.php:371
234
  msgid "Delete counter data on uninstall"
235
  msgstr ""
236
 
237
- #: admin/admin.php:374
238
  msgid ""
239
  "If this is checked, the tables containing the counter statistics are removed "
240
  "from the database if you choose to uninstall/delete the plugin."
241
  msgstr ""
242
 
243
- #: admin/admin.php:375
244
  msgid ""
245
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
246
  "lose your counter data."
247
  msgstr ""
248
 
249
- #: admin/admin.php:379
250
  msgid "Link to Top 10 plugin page"
251
  msgstr ""
252
 
253
- #: admin/admin.php:382
254
  msgid ""
255
  "A link to the plugin is added as an extra list item to the list of popular "
256
  "posts"
257
  msgstr ""
258
 
259
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
260
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
261
  msgid "Save Options"
262
  msgstr ""
263
 
264
- #: admin/admin.php:422
265
  msgid "Display number of views on:"
266
  msgstr ""
267
 
268
- #: admin/admin.php:424
269
  msgid "Posts"
270
  msgstr ""
271
 
272
- #: admin/admin.php:425
273
  msgid "Pages"
274
  msgstr ""
275
 
276
- #: admin/admin.php:426
277
  msgid "Home page"
278
  msgstr ""
279
 
280
- #: admin/admin.php:427
281
  msgid "Feeds"
282
  msgstr ""
283
 
284
- #: admin/admin.php:428
285
  msgid "Category archives"
286
  msgstr ""
287
 
288
- #: admin/admin.php:429
289
  msgid "Tag archives"
290
  msgstr ""
291
 
292
- #: admin/admin.php:430
293
  msgid "Other archives"
294
  msgstr ""
295
 
296
- #: admin/admin.php:431
297
  msgid ""
298
  "If you choose to disable this, please add <code>&lt;?php if "
299
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
300
  "</code> to your template file where you want it displayed"
301
  msgstr ""
302
 
303
- #: admin/admin.php:435
304
  msgid "Format to display the post views:"
305
  msgstr ""
306
 
307
- #: admin/admin.php:438
308
  msgid ""
309
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
310
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -312,11 +322,11 @@ msgid ""
312
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
313
  msgstr ""
314
 
315
- #: admin/admin.php:442
316
  msgid "What do display when there are no visits?"
317
  msgstr ""
318
 
319
- #: admin/admin.php:445
320
  msgid ""
321
  "This text applies only when there are 0 hits for the post and it isn't a "
322
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -324,382 +334,372 @@ msgid ""
324
  "option."
325
  msgstr ""
326
 
327
- #: admin/admin.php:449
328
  msgid "Always display latest post count"
329
  msgstr ""
330
 
331
- #: admin/admin.php:452
332
  msgid ""
333
  "This option uses JavaScript and will increase your page load time. Turn this "
334
  "off if you are not using caching plugins or are OK with displaying older "
335
  "cached counts."
336
  msgstr ""
337
 
338
- #: admin/admin.php:456
339
  msgid "Track visits of authors on their own posts?"
340
  msgstr ""
341
 
342
- #: admin/admin.php:459
343
  msgid ""
344
  "Disabling this option will stop authors visits tracked on their own posts"
345
  msgstr ""
346
 
347
- #: admin/admin.php:463
348
  msgid "Track visits of admins?"
349
  msgstr ""
350
 
351
- #: admin/admin.php:466
352
  msgid "Disabling this option will stop admin visits being tracked."
353
  msgstr ""
354
 
355
- #: admin/admin.php:470
356
  msgid "Track visits of Editors?"
357
  msgstr ""
358
 
359
- #: admin/admin.php:473
360
  msgid "Disabling this option will stop editor visits being tracked."
361
  msgstr ""
362
 
363
- #: admin/admin.php:477
364
  msgid "Display page views on Posts and Pages in Admin"
365
  msgstr ""
366
 
367
- #: admin/admin.php:480
368
  msgid ""
369
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
370
  "and All Pages"
371
  msgstr ""
372
 
373
- #: admin/admin.php:484
374
  msgid "Show number of views to non-admins"
375
  msgstr ""
376
 
377
- #: admin/admin.php:487
378
  msgid ""
379
  "If you disable this then non-admins won't see the above columns or view the "
380
  "independent pages with the top posts"
381
  msgstr ""
382
 
383
- #: admin/admin.php:527
384
  msgid "Number of popular posts to display: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:530
388
  msgid ""
389
  "Maximum number of posts that will be displayed in the list. This option is "
390
  "used if you don't specify the number of posts in the widget or shortcodes"
391
  msgstr ""
392
 
393
- #: admin/admin.php:534
394
  msgid "Post types to include in results (including custom post types)"
395
  msgstr ""
396
 
397
- #: admin/admin.php:546
398
  msgid "List of post or page IDs to exclude from the results: "
399
  msgstr ""
400
 
401
- #: admin/admin.php:548 admin/admin.php:655
402
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
403
  msgstr ""
404
 
405
- #: admin/admin.php:552
406
  msgid "Exclude Categories: "
407
  msgstr ""
408
 
409
- #: admin/admin.php:567
410
  msgid ""
411
  "Comma separated list of category slugs. The field above has an autocomplete "
412
  "so simply start typing in the starting letters and it will prompt you with "
413
  "options"
414
  msgstr ""
415
 
416
- #: admin/admin.php:572
417
  msgid "Title of popular posts: "
418
  msgstr ""
419
 
420
- #: admin/admin.php:578
421
  msgid "Title of daily popular posts: "
422
  msgstr ""
423
 
424
- #: admin/admin.php:584
425
  msgid "When there are no posts, what should be shown?"
426
  msgstr ""
427
 
428
- #: admin/admin.php:588
429
  msgid "Blank Output"
430
  msgstr ""
431
 
432
- #: admin/admin.php:592
433
  msgid "Display:"
434
  msgstr ""
435
 
436
- #: admin/admin.php:597
437
  msgid "Show post excerpt in list?"
438
  msgstr ""
439
 
440
- #: admin/admin.php:603
 
 
 
 
 
441
  msgid "Length of excerpt (in words): "
442
  msgstr ""
443
 
444
- #: admin/admin.php:609
445
  msgid "Show post author in list?"
446
  msgstr ""
447
 
448
- #: admin/admin.php:615
449
- msgid "Show post date in list?"
 
450
  msgstr ""
451
 
452
- #: admin/admin.php:621
453
- msgid "Limit post title length (in characters)"
454
  msgstr ""
455
 
456
- #: admin/admin.php:627
457
- msgid "Show view count in list?"
 
458
  msgstr ""
459
 
460
- #: admin/admin.php:633
461
- msgid "Always display latest post count in the daily lists?"
462
  msgstr ""
463
 
464
- #: admin/admin.php:636
465
- msgid ""
466
- "This option uses JavaScript and will increase your page load time. When you "
467
- "enable this option, the daily widget will not use the options set there, but "
468
- "options will need to be set on this screen."
469
  msgstr ""
470
 
471
- #: admin/admin.php:640
472
  msgid "Open links in new window"
473
  msgstr ""
474
 
475
- #: admin/admin.php:646
476
  msgid "Add nofollow attribute to links in the list"
477
  msgstr ""
478
 
479
- #: admin/admin.php:652
480
  msgid "Exclude display of related posts on these posts / pages"
481
  msgstr ""
482
 
483
- #: admin/admin.php:659
484
  msgid "Customise the list HTML"
485
  msgstr ""
486
 
487
- #: admin/admin.php:662
488
  msgid "HTML to display before the list of posts: "
489
  msgstr ""
490
 
491
- #: admin/admin.php:668
492
  msgid "HTML to display before each list item: "
493
  msgstr ""
494
 
495
- #: admin/admin.php:674
496
  msgid "HTML to display after each list item: "
497
  msgstr ""
498
 
499
- #: admin/admin.php:680
500
  msgid "HTML to display after the list of posts: "
501
  msgstr ""
502
 
503
- #: admin/admin.php:721
504
  msgid "Location of post thumbnail:"
505
  msgstr ""
506
 
507
- #: admin/admin.php:725
508
  msgid "Display thumbnails inline with posts, before title"
509
  msgstr ""
510
 
511
- #: admin/admin.php:730
512
  msgid "Display thumbnails inline with posts, after title"
513
  msgstr ""
514
 
515
- #: admin/admin.php:735
516
  msgid "Display only thumbnails, no text"
517
  msgstr ""
518
 
519
- #: admin/admin.php:740
520
  msgid "Do not display thumbnails, only text."
521
  msgstr ""
522
 
523
- #: admin/admin.php:744
 
 
 
 
 
 
524
  msgid "Thumbnail size:"
525
  msgstr ""
526
 
527
- #: admin/admin.php:768
528
  msgid "Custom size"
529
  msgstr ""
530
 
531
- #: admin/admin.php:771
532
  msgid ""
533
  "You can choose from existing image sizes above or create a custom size. If "
534
  "you have chosen Custom size above, then enter the width, height and crop "
535
  "settings below. For best results, use a cropped image."
536
  msgstr ""
537
 
538
- #: admin/admin.php:772
539
  msgid ""
540
  "If you change the width and/or height below, existing images will not be "
541
  "automatically resized."
542
  msgstr ""
543
 
544
- #: admin/admin.php:773
545
  #, php-format
546
  msgid ""
547
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
548
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
549
- "regenerate all image sizes."
550
  msgstr ""
551
 
552
- #: admin/admin.php:776
553
  msgid "Width of custom thumbnail:"
554
  msgstr ""
555
 
556
- #: admin/admin.php:781
557
  msgid "Height of custom thumbnail"
558
  msgstr ""
559
 
560
- #: admin/admin.php:786
561
  msgid "Crop mode:"
562
  msgstr ""
563
 
564
- #: admin/admin.php:790
565
  msgid ""
566
  "By default, thumbnails will be proportionately cropped. Check this box to "
567
  "hard crop the thumbnails."
568
  msgstr ""
569
 
570
- #: admin/admin.php:791
571
  #, php-format
572
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
573
  msgstr ""
574
 
575
- #: admin/admin.php:793
576
  msgid ""
577
- "Since you're using the default styles set under the Custom Styles section, "
578
- "the width and height is fixed at 65px and crop mode is enabled."
579
  msgstr ""
580
 
581
- #: admin/admin.php:798
582
  msgid "Style attributes / Width and Height HTML attributes:"
583
  msgstr ""
584
 
585
- #: admin/admin.php:802
586
  msgid "Style attributes are used for width and height."
587
  msgstr ""
588
 
589
- #: admin/admin.php:807
590
  msgid "HTML width and height attributes are used for width and height."
591
  msgstr ""
592
 
593
- #: admin/admin.php:811
594
- msgid "Use timthumb to generate thumbnails? "
595
- msgstr ""
596
-
597
- #: admin/admin.php:814
598
- msgid ""
599
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
600
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
601
- msgstr ""
602
-
603
- #: admin/admin.php:817
604
- msgid "Quality of thumbnails generated by timthumb:"
605
- msgstr ""
606
-
607
- #: admin/admin.php:820
608
- msgid ""
609
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
610
- "file size. Suggested maximum value is 95. Default is 75."
611
- msgstr ""
612
-
613
- #: admin/admin.php:823
614
  msgid "Post thumbnail meta field name: "
615
  msgstr ""
616
 
617
- #: admin/admin.php:826
618
  msgid ""
619
  "The value of this field should contain the image source and is set in the "
620
  "<em>Add New Post</em> screen"
621
  msgstr ""
622
 
623
- #: admin/admin.php:829
624
  msgid ""
625
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "from the post?"
627
  msgstr ""
628
 
629
- #: admin/admin.php:832
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
632
  "related posts is large in file-size"
633
  msgstr ""
634
 
635
- #: admin/admin.php:835
636
  msgid "Use default thumbnail? "
637
  msgstr ""
638
 
639
- #: admin/admin.php:838
640
  msgid ""
641
  "If checked, when no thumbnail is found, show a default one from the URL "
642
  "below. If not checked and no thumbnail is found, no image will be shown."
643
  msgstr ""
644
 
645
- #: admin/admin.php:841
646
  msgid "Default thumbnail: "
647
  msgstr ""
648
 
649
- #: admin/admin.php:845
650
  msgid ""
651
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
652
  "then it will check the meta field. If this is not available, then it will "
653
  "show the default image as specified above"
654
  msgstr ""
655
 
656
- #: admin/admin.php:869
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
- #: admin/admin.php:884
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
- #: admin/admin.php:887
665
  msgid ""
666
  "Top 10 includes a default style that makes your popular posts list to look "
667
  "beautiful. Check the box above if you want to use this."
668
  msgstr ""
669
 
670
- #: admin/admin.php:888
671
  msgid ""
672
  "Enabling this option will turn on the thumbnails and set their width and "
673
  "height to 65px. It will also turn off the display of the author, excerpt and "
674
  "date if already enabled. Disabling this option will not revert any settings."
675
  msgstr ""
676
 
677
- #: admin/admin.php:889
678
  #, php-format
679
  msgid ""
680
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
681
  msgstr ""
682
 
683
- #: admin/admin.php:892
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
- #: admin/admin.php:897
688
  msgid ""
689
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
690
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
691
  "available CSS classes to style."
692
  msgstr ""
693
 
694
- #: admin/admin.php:917
695
  msgid "Default Options"
696
  msgstr ""
697
 
698
- #: admin/admin.php:917
699
  msgid "Do you want to set options to Default?"
700
  msgstr ""
701
 
702
- #: admin/admin.php:941
703
  msgid ""
704
  "Over time the Daily Top 10 database grows in size, which reduces the "
705
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -707,225 +707,243 @@ msgid ""
707
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
- #: admin/admin.php:942
711
  msgid ""
712
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
713
  "everytime the job is rescheduled (i.e. you change the settings below)."
714
  msgstr ""
715
 
716
- #: admin/admin.php:945
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
- #: admin/admin.php:949
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
- #: admin/admin.php:950
725
  msgid "hrs"
726
  msgstr ""
727
 
728
- #: admin/admin.php:950
729
  msgid "min"
730
  msgstr ""
731
 
732
- #: admin/admin.php:952
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
- #: admin/admin.php:956
737
  msgid "Daily"
738
  msgstr ""
739
 
740
- #: admin/admin.php:960
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
- #: admin/admin.php:964
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
- #: admin/admin.php:968
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
- #: admin/admin.php:977
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
- #: admin/admin.php:982
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
- #: admin/admin.php:987
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
- #: admin/admin.php:1001
765
- msgid "Reset count"
766
  msgstr ""
767
 
768
- #: admin/admin.php:1004
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
772
  msgstr ""
773
 
774
- #: admin/admin.php:1007
775
  msgid "Reset Popular Posts"
776
  msgstr ""
777
 
778
- #: admin/admin.php:1007
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
- #: admin/admin.php:1008
783
  msgid "Reset Daily Popular Posts"
784
  msgstr ""
785
 
786
- #: admin/admin.php:1008
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
- #: admin/admin.php:1009
791
- msgid "Clear duplicates"
792
  msgstr ""
793
 
794
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  msgid "This will delete the duplicate entries in the tables. Proceed?"
796
  msgstr ""
797
 
798
- #: admin/admin.php:1022
799
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
800
  msgstr ""
801
 
802
- #: admin/admin.php:1025
803
  msgid ""
804
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
805
  "activate the plugin independently for each site. This would have resulted in "
806
  "two tables being created for each site in the network."
807
  msgstr ""
808
 
809
- #: admin/admin.php:1026
810
  msgid ""
811
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
812
  "your database clean. You can use this tool to import the recorded counts "
813
  "from v1.x tables to the new v2.x table format."
814
  msgstr ""
815
 
816
- #: admin/admin.php:1029
817
  msgid ""
818
  "If you do not see any tables below, then it means that either all data has "
819
  "already been imported or no relevant information has been found."
820
  msgstr ""
821
 
822
- #: admin/admin.php:1032
823
  msgid ""
824
  "After running the importer, please verify that all the counts have been "
825
  "successfully imported. Only then should you delete any old tables!"
826
  msgstr ""
827
 
828
- #: admin/admin.php:1066
829
  msgid "Blog ID"
830
  msgstr ""
831
 
832
- #: admin/admin.php:1069
833
  msgid "Status"
834
  msgstr ""
835
 
836
- #: admin/admin.php:1072
837
  msgid "Select to import"
838
  msgstr ""
839
 
840
- #: admin/admin.php:1082
841
  msgid "Blog #"
842
  msgstr ""
843
 
844
- #: admin/admin.php:1092
845
  msgid "Not imported"
846
  msgstr ""
847
 
848
- #: admin/admin.php:1096
849
  msgid "Imported"
850
  msgstr ""
851
 
852
- #: admin/admin.php:1117
853
  msgid "Begin import"
854
  msgstr ""
855
 
856
- #: admin/admin.php:1118
857
  msgid "Delete selected tables"
858
  msgstr ""
859
 
860
- #: admin/admin.php:1119
861
  msgid "Delete all imported tables"
862
  msgstr ""
863
 
864
- #: admin/admin.php:1176 admin/admin.php:1272
865
  msgid "Daily Popular Posts"
866
  msgstr ""
867
 
868
- #: admin/admin.php:1206
869
  msgid "Support the development"
870
  msgstr ""
871
 
872
- #: admin/admin.php:1213
873
  msgid "Donation for Top 10"
874
  msgstr ""
875
 
876
- #: admin/admin.php:1215
877
  msgid "Enter amount in USD: "
878
  msgstr ""
879
 
880
- #: admin/admin.php:1219
881
  msgid "Send your donation to the author of Top 10"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1226
885
  msgid "Follow me"
886
  msgstr ""
887
 
888
- #: admin/admin.php:1236
889
  msgid "Quick links"
890
  msgstr ""
891
 
892
- #: admin/admin.php:1240
893
  msgid "Top 10 plugin page"
894
  msgstr ""
895
 
896
- #: admin/admin.php:1241
897
  msgid "Top 10 Github page"
898
  msgstr ""
899
 
900
- #: admin/admin.php:1242
901
  msgid "Other plugins"
902
  msgstr ""
903
 
904
- #: admin/admin.php:1243
905
  msgid "Ajay's blog"
906
  msgstr ""
907
 
908
- #: admin/admin.php:1244
909
  msgid "FAQ"
910
  msgstr ""
911
 
912
- #: admin/admin.php:1245 admin/admin.php:1403
913
  msgid "Support"
914
  msgstr ""
915
 
916
- #: admin/admin.php:1246
917
  msgid "Reviews"
918
  msgstr ""
919
 
920
- #: admin/admin.php:1269
921
  msgid "Overall Popular Posts"
922
  msgstr ""
923
 
924
- #: admin/admin.php:1380
925
  msgid "Settings"
926
  msgstr ""
927
 
928
- #: admin/admin.php:1404
929
  msgid "Donate"
930
  msgstr ""
931
 
@@ -937,107 +955,123 @@ msgstr ""
937
  msgid "Display popular posts"
938
  msgstr ""
939
 
940
- #: includes/class-top-10-widget.php:59
941
  msgid "Title"
942
  msgstr ""
943
 
944
- #: includes/class-top-10-widget.php:64
945
  msgid "No. of posts"
946
  msgstr ""
947
 
948
- #: includes/class-top-10-widget.php:69
949
  msgid "Overall"
950
  msgstr ""
951
 
952
- #: includes/class-top-10-widget.php:70
953
  msgid "Custom time period (Enter below)"
954
  msgstr ""
955
 
956
- #: includes/class-top-10-widget.php:74
957
  msgid "In days and hours (applies only to custom option above)"
958
  msgstr ""
959
 
960
- #: includes/class-top-10-widget.php:76
961
  msgid "days"
962
  msgstr ""
963
 
964
- #: includes/class-top-10-widget.php:79
965
  msgid "hours"
966
  msgstr ""
967
 
968
- #: includes/class-top-10-widget.php:84
969
  msgid "Show count?"
970
  msgstr ""
971
 
972
- #: includes/class-top-10-widget.php:89
973
  msgid "Show excerpt?"
974
  msgstr ""
975
 
976
- #: includes/class-top-10-widget.php:94
977
  msgid "Show author?"
978
  msgstr ""
979
 
980
- #: includes/class-top-10-widget.php:99
981
  msgid "Show date?"
982
  msgstr ""
983
 
984
- #: includes/class-top-10-widget.php:105
985
  msgid "Thumbnails inline, before title"
986
  msgstr ""
987
 
988
- #: includes/class-top-10-widget.php:106
989
  msgid "Thumbnails inline, after title"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:107
993
  msgid "Only thumbnails, no text"
994
  msgstr ""
995
 
996
- #: includes/class-top-10-widget.php:108
997
  msgid "No thumbnails, only text."
998
  msgstr ""
999
 
1000
- #: includes/class-top-10-widget.php:113
1001
  msgid "Thumbnail height"
1002
  msgstr ""
1003
 
1004
- #: includes/class-top-10-widget.php:118
1005
  msgid "Thumbnail width"
1006
  msgstr ""
1007
 
1008
- #: top-10.php:879
 
 
 
 
1009
  msgid " by "
1010
  msgstr ""
1011
 
1012
- #: top-10.php:930
1013
  #, php-format
1014
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1015
  msgstr ""
1016
 
1017
- #: top-10.php:1029
1018
  msgid "<h3>Popular Posts</h3>"
1019
  msgstr ""
1020
 
1021
- #: top-10.php:1030
1022
  msgid "<h3>Daily Popular</h3>"
1023
  msgstr ""
1024
 
1025
- #: top-10.php:1031
1026
  msgid "No top posts yet"
1027
  msgstr ""
1028
 
1029
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1030
  msgid "Once Weekly"
1031
  msgstr ""
1032
 
1033
- #: top-10.php:1694
1034
  msgid "Once Fortnightly"
1035
  msgstr ""
1036
 
1037
- #: top-10.php:1698
1038
  msgid "Once Monthly"
1039
  msgstr ""
1040
 
1041
- #: top-10.php:1702
1042
  msgid "Once quarterly"
1043
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:46-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
59
  msgid "Next"
60
  msgstr ""
61
 
62
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
71
  msgid "Top 10"
72
  msgstr ""
73
 
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
+ #: admin/admin.php:171
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
+ #: admin/admin.php:174
104
+ msgid ""
105
+ "Default styles selected. Thumbnail width, height and crop settings have been "
106
+ "fixed. Author, Excerpt and Date will not be displayed."
107
+ msgstr ""
108
+
109
+ #: admin/admin.php:190
110
  msgid "Options set to Default."
111
  msgstr ""
112
 
113
+ #: admin/admin.php:197
114
  msgid "Top 10 popular posts reset"
115
  msgstr ""
116
 
117
+ #: admin/admin.php:204
118
  msgid "Top 10 daily popular posts reset"
119
  msgstr ""
120
 
121
+ #: admin/admin.php:212
122
  msgid "Duplicate rows cleaned from tables"
123
  msgstr ""
124
 
125
+ #: admin/admin.php:220
126
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
127
+ msgstr ""
128
+
129
+ #: admin/admin.php:233
130
  msgid "Scheduled maintenance enabled / modified"
131
  msgstr ""
132
 
133
+ #: admin/admin.php:237
134
  msgid "Scheduled maintenance disabled"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:276
138
  msgid "Counts from selected sites have been imported."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:301
142
  msgid ""
143
  "Selected tables have been deleted. Note that only imported tables have been "
144
  "deleted."
145
  msgstr ""
146
 
147
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
148
  msgid "Top 10 Settings"
149
  msgstr ""
150
 
151
+ #: admin/admin.php:321 admin/admin.php:343
152
  msgid "General options"
153
  msgstr ""
154
 
155
+ #: admin/admin.php:322 admin/admin.php:435
156
  msgid "Counter and tracker options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:323 admin/admin.php:540
160
  msgid "Popular post list options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:324 admin/admin.php:742
164
+ #: includes/class-top-10-widget.php:115
165
  msgid "Thumbnail options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:325
169
  msgid "Custom styles"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:326 admin/admin.php:966
173
  msgid "Maintenance"
174
  msgstr ""
175
 
176
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
177
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
178
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
179
+ #: admin/admin.php:1269 admin/admin.php:1279
180
  msgid "Click to toggle"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:359
184
  msgid "Enable Overall stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:365
188
  msgid "Enable Daily stats"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:371
192
  msgid "Cache fix:"
193
  msgstr ""
194
 
195
+ #: admin/admin.php:374
196
  msgid ""
197
  "This will try to prevent W3 Total Cache and other caching plugins from "
198
  "caching the tracker script of the plugin. Try toggling this option in case "
199
  "you find that your posts are not tracked."
200
  msgstr ""
201
 
202
+ #: admin/admin.php:378
203
  msgid "Start daily counts from midnight:"
204
  msgstr ""
205
 
206
+ #: admin/admin.php:381
207
  msgid ""
208
  "Daily counter will display number of visits from midnight. This option is "
209
  "checked by default and mimics the way most normal counters work. Turning "
210
  "this off will allow you to use the hourly setting in the next option."
211
  msgstr ""
212
 
213
+ #: admin/admin.php:385
214
  msgid "Daily popular contains top posts over:"
215
  msgstr ""
216
 
217
+ #: admin/admin.php:387
218
  msgid "day(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:388
222
  msgid "hour(s)"
223
  msgstr ""
224
 
225
+ #: admin/admin.php:389
226
  msgid ""
227
  "Think of Daily Popular has a custom date range applied as a global setting. "
228
  "Instead of displaying popular posts from the past day, this setting lets you "
230
  "overridden in the widget."
231
  msgstr ""
232
 
233
+ #: admin/admin.php:393
234
  msgid "Delete options on uninstall"
235
  msgstr ""
236
 
237
+ #: admin/admin.php:396
238
  msgid ""
239
  "If this is checked, all settings related to Top 10 are removed from the "
240
  "database if you choose to uninstall/delete the plugin."
241
  msgstr ""
242
 
243
+ #: admin/admin.php:400
244
  msgid "Delete counter data on uninstall"
245
  msgstr ""
246
 
247
+ #: admin/admin.php:403
248
  msgid ""
249
  "If this is checked, the tables containing the counter statistics are removed "
250
  "from the database if you choose to uninstall/delete the plugin."
251
  msgstr ""
252
 
253
+ #: admin/admin.php:404
254
  msgid ""
255
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
256
  "lose your counter data."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:408
260
  msgid "Link to Top 10 plugin page"
261
  msgstr ""
262
 
263
+ #: admin/admin.php:411
264
  msgid ""
265
  "A link to the plugin is added as an extra list item to the list of popular "
266
  "posts"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
270
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
271
  msgid "Save Options"
272
  msgstr ""
273
 
274
+ #: admin/admin.php:451
275
  msgid "Display number of views on:"
276
  msgstr ""
277
 
278
+ #: admin/admin.php:453
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:454
283
  msgid "Pages"
284
  msgstr ""
285
 
286
+ #: admin/admin.php:455
287
  msgid "Home page"
288
  msgstr ""
289
 
290
+ #: admin/admin.php:456
291
  msgid "Feeds"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:457
295
  msgid "Category archives"
296
  msgstr ""
297
 
298
+ #: admin/admin.php:458
299
  msgid "Tag archives"
300
  msgstr ""
301
 
302
+ #: admin/admin.php:459
303
  msgid "Other archives"
304
  msgstr ""
305
 
306
+ #: admin/admin.php:460
307
  msgid ""
308
  "If you choose to disable this, please add <code>&lt;?php if "
309
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
310
  "</code> to your template file where you want it displayed"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:464
314
  msgid "Format to display the post views:"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:467
318
  msgid ""
319
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
320
  "%</code> to display the daily count and <code>%overallcount%</code> to "
322
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
323
  msgstr ""
324
 
325
+ #: admin/admin.php:471
326
  msgid "What do display when there are no visits?"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:474
330
  msgid ""
331
  "This text applies only when there are 0 hits for the post and it isn't a "
332
  "single page. e.g. if you display post views on the homepage or archives then "
334
  "option."
335
  msgstr ""
336
 
337
+ #: admin/admin.php:478
338
  msgid "Always display latest post count"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:481
342
  msgid ""
343
  "This option uses JavaScript and will increase your page load time. Turn this "
344
  "off if you are not using caching plugins or are OK with displaying older "
345
  "cached counts."
346
  msgstr ""
347
 
348
+ #: admin/admin.php:485
349
  msgid "Track visits of authors on their own posts?"
350
  msgstr ""
351
 
352
+ #: admin/admin.php:488
353
  msgid ""
354
  "Disabling this option will stop authors visits tracked on their own posts"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:492
358
  msgid "Track visits of admins?"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:495
362
  msgid "Disabling this option will stop admin visits being tracked."
363
  msgstr ""
364
 
365
+ #: admin/admin.php:499
366
  msgid "Track visits of Editors?"
367
  msgstr ""
368
 
369
+ #: admin/admin.php:502
370
  msgid "Disabling this option will stop editor visits being tracked."
371
  msgstr ""
372
 
373
+ #: admin/admin.php:506
374
  msgid "Display page views on Posts and Pages in Admin"
375
  msgstr ""
376
 
377
+ #: admin/admin.php:509
378
  msgid ""
379
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
380
  "and All Pages"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:513
384
  msgid "Show number of views to non-admins"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:516
388
  msgid ""
389
  "If you disable this then non-admins won't see the above columns or view the "
390
  "independent pages with the top posts"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:556
394
  msgid "Number of popular posts to display: "
395
  msgstr ""
396
 
397
+ #: admin/admin.php:559
398
  msgid ""
399
  "Maximum number of posts that will be displayed in the list. This option is "
400
  "used if you don't specify the number of posts in the widget or shortcodes"
401
  msgstr ""
402
 
403
+ #: admin/admin.php:563
404
  msgid "Post types to include in results (including custom post types)"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:577
408
  msgid "List of post or page IDs to exclude from the results: "
409
  msgstr ""
410
 
411
+ #: admin/admin.php:579 admin/admin.php:691
412
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
413
  msgstr ""
414
 
415
+ #: admin/admin.php:583
416
  msgid "Exclude Categories: "
417
  msgstr ""
418
 
419
+ #: admin/admin.php:598
420
  msgid ""
421
  "Comma separated list of category slugs. The field above has an autocomplete "
422
  "so simply start typing in the starting letters and it will prompt you with "
423
  "options"
424
  msgstr ""
425
 
426
+ #: admin/admin.php:603
427
  msgid "Title of popular posts: "
428
  msgstr ""
429
 
430
+ #: admin/admin.php:609
431
  msgid "Title of daily popular posts: "
432
  msgstr ""
433
 
434
+ #: admin/admin.php:615
435
  msgid "When there are no posts, what should be shown?"
436
  msgstr ""
437
 
438
+ #: admin/admin.php:619
439
  msgid "Blank Output"
440
  msgstr ""
441
 
442
+ #: admin/admin.php:623
443
  msgid "Display:"
444
  msgstr ""
445
 
446
+ #: admin/admin.php:628
447
  msgid "Show post excerpt in list?"
448
  msgstr ""
449
 
450
+ #: admin/admin.php:633
451
+ msgid ""
452
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
453
+ msgstr ""
454
+
455
+ #: admin/admin.php:638
456
  msgid "Length of excerpt (in words): "
457
  msgstr ""
458
 
459
+ #: admin/admin.php:644
460
  msgid "Show post author in list?"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:649
464
+ msgid ""
465
+ "Default style selected under the Custom Styles. Author display is disabled."
466
  msgstr ""
467
 
468
+ #: admin/admin.php:654
469
+ msgid "Show post date in list?"
470
  msgstr ""
471
 
472
+ #: admin/admin.php:659
473
+ msgid ""
474
+ "Default style selected under the Custom Styles. Date display is disabled."
475
  msgstr ""
476
 
477
+ #: admin/admin.php:664
478
+ msgid "Limit post title length (in characters)"
479
  msgstr ""
480
 
481
+ #: admin/admin.php:670
482
+ msgid "Show view count in list?"
 
 
 
483
  msgstr ""
484
 
485
+ #: admin/admin.php:676
486
  msgid "Open links in new window"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:682
490
  msgid "Add nofollow attribute to links in the list"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:688
494
  msgid "Exclude display of related posts on these posts / pages"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:695
498
  msgid "Customise the list HTML"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:698
502
  msgid "HTML to display before the list of posts: "
503
  msgstr ""
504
 
505
+ #: admin/admin.php:704
506
  msgid "HTML to display before each list item: "
507
  msgstr ""
508
 
509
+ #: admin/admin.php:710
510
  msgid "HTML to display after each list item: "
511
  msgstr ""
512
 
513
+ #: admin/admin.php:716
514
  msgid "HTML to display after the list of posts: "
515
  msgstr ""
516
 
517
+ #: admin/admin.php:757
518
  msgid "Location of post thumbnail:"
519
  msgstr ""
520
 
521
+ #: admin/admin.php:761
522
  msgid "Display thumbnails inline with posts, before title"
523
  msgstr ""
524
 
525
+ #: admin/admin.php:766
526
  msgid "Display thumbnails inline with posts, after title"
527
  msgstr ""
528
 
529
+ #: admin/admin.php:771
530
  msgid "Display only thumbnails, no text"
531
  msgstr ""
532
 
533
+ #: admin/admin.php:776
534
  msgid "Do not display thumbnails, only text."
535
  msgstr ""
536
 
537
+ #: admin/admin.php:780
538
+ msgid ""
539
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
540
+ "to be inline before title"
541
+ msgstr ""
542
+
543
+ #: admin/admin.php:784
544
  msgid "Thumbnail size:"
545
  msgstr ""
546
 
547
+ #: admin/admin.php:808
548
  msgid "Custom size"
549
  msgstr ""
550
 
551
+ #: admin/admin.php:811
552
  msgid ""
553
  "You can choose from existing image sizes above or create a custom size. If "
554
  "you have chosen Custom size above, then enter the width, height and crop "
555
  "settings below. For best results, use a cropped image."
556
  msgstr ""
557
 
558
+ #: admin/admin.php:812
559
  msgid ""
560
  "If you change the width and/or height below, existing images will not be "
561
  "automatically resized."
562
  msgstr ""
563
 
564
+ #: admin/admin.php:813
565
  #, php-format
566
  msgid ""
567
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
568
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
569
+ "all image sizes."
570
  msgstr ""
571
 
572
+ #: admin/admin.php:816
573
  msgid "Width of custom thumbnail:"
574
  msgstr ""
575
 
576
+ #: admin/admin.php:821
577
  msgid "Height of custom thumbnail"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:826
581
  msgid "Crop mode:"
582
  msgstr ""
583
 
584
+ #: admin/admin.php:830
585
  msgid ""
586
  "By default, thumbnails will be proportionately cropped. Check this box to "
587
  "hard crop the thumbnails."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:831
591
  #, php-format
592
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
593
  msgstr ""
594
 
595
+ #: admin/admin.php:834
596
  msgid ""
597
+ "Default style selected under the Custom Styles. Thumbnail width and height "
598
+ "is fixed at 65px and crop mode is enabled."
599
  msgstr ""
600
 
601
+ #: admin/admin.php:839
602
  msgid "Style attributes / Width and Height HTML attributes:"
603
  msgstr ""
604
 
605
+ #: admin/admin.php:843
606
  msgid "Style attributes are used for width and height."
607
  msgstr ""
608
 
609
+ #: admin/admin.php:848
610
  msgid "HTML width and height attributes are used for width and height."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
614
  msgid "Post thumbnail meta field name: "
615
  msgstr ""
616
 
617
+ #: admin/admin.php:855
618
  msgid ""
619
  "The value of this field should contain the image source and is set in the "
620
  "<em>Add New Post</em> screen"
621
  msgstr ""
622
 
623
+ #: admin/admin.php:858
624
  msgid ""
625
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "from the post?"
627
  msgstr ""
628
 
629
+ #: admin/admin.php:861
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
632
  "related posts is large in file-size"
633
  msgstr ""
634
 
635
+ #: admin/admin.php:864
636
  msgid "Use default thumbnail? "
637
  msgstr ""
638
 
639
+ #: admin/admin.php:867
640
  msgid ""
641
  "If checked, when no thumbnail is found, show a default one from the URL "
642
  "below. If not checked and no thumbnail is found, no image will be shown."
643
  msgstr ""
644
 
645
+ #: admin/admin.php:870
646
  msgid "Default thumbnail: "
647
  msgstr ""
648
 
649
+ #: admin/admin.php:874
650
  msgid ""
651
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
652
  "then it will check the meta field. If this is not available, then it will "
653
  "show the default image as specified above"
654
  msgstr ""
655
 
656
+ #: admin/admin.php:898
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
+ #: admin/admin.php:913
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
+ #: admin/admin.php:916
665
  msgid ""
666
  "Top 10 includes a default style that makes your popular posts list to look "
667
  "beautiful. Check the box above if you want to use this."
668
  msgstr ""
669
 
670
+ #: admin/admin.php:917
671
  msgid ""
672
  "Enabling this option will turn on the thumbnails and set their width and "
673
  "height to 65px. It will also turn off the display of the author, excerpt and "
674
  "date if already enabled. Disabling this option will not revert any settings."
675
  msgstr ""
676
 
677
+ #: admin/admin.php:918
678
  #, php-format
679
  msgid ""
680
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
681
  msgstr ""
682
 
683
+ #: admin/admin.php:921
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:926
688
  msgid ""
689
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
690
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
691
  "available CSS classes to style."
692
  msgstr ""
693
 
694
+ #: admin/admin.php:946
695
  msgid "Default Options"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:946
699
  msgid "Do you want to set options to Default?"
700
  msgstr ""
701
 
702
+ #: admin/admin.php:970
703
  msgid ""
704
  "Over time the Daily Top 10 database grows in size, which reduces the "
705
  "performance of the plugin. Cleaning the database at regular intervals could "
707
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:971
711
  msgid ""
712
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
713
  "everytime the job is rescheduled (i.e. you change the settings below)."
714
  msgstr ""
715
 
716
+ #: admin/admin.php:974
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:978
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:979
725
  msgid "hrs"
726
  msgstr ""
727
 
728
+ #: admin/admin.php:979
729
  msgid "min"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:981
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:985
737
  msgid "Daily"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:989
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:993
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:997
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:1006
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
+ #: admin/admin.php:1011
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:1016
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:1030
765
+ msgid "Reset count and other tools"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:1033
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:1036
775
  msgid "Reset Popular Posts"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:1036
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:1037
783
  msgid "Reset Daily Popular Posts"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:1037
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:1040
791
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1043
795
+ msgid "Merge blog ID 0 and 1 post counts"
796
+ msgstr ""
797
+
798
+ #: admin/admin.php:1043
799
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
800
+ msgstr ""
801
+
802
+ #: admin/admin.php:1046
803
+ msgid ""
804
+ "In older versions, the plugin created entries with duplicate post IDs. "
805
+ "Clicking the button below will merge these duplicate IDs"
806
+ msgstr ""
807
+
808
+ #: admin/admin.php:1049
809
+ msgid "Merge duplicates across blog IDs"
810
+ msgstr ""
811
+
812
+ #: admin/admin.php:1049
813
  msgid "This will delete the duplicate entries in the tables. Proceed?"
814
  msgstr ""
815
 
816
+ #: admin/admin.php:1066
817
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
818
  msgstr ""
819
 
820
+ #: admin/admin.php:1069
821
  msgid ""
822
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
823
  "activate the plugin independently for each site. This would have resulted in "
824
  "two tables being created for each site in the network."
825
  msgstr ""
826
 
827
+ #: admin/admin.php:1070
828
  msgid ""
829
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
830
  "your database clean. You can use this tool to import the recorded counts "
831
  "from v1.x tables to the new v2.x table format."
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1073
835
  msgid ""
836
  "If you do not see any tables below, then it means that either all data has "
837
  "already been imported or no relevant information has been found."
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1076
841
  msgid ""
842
  "After running the importer, please verify that all the counts have been "
843
  "successfully imported. Only then should you delete any old tables!"
844
  msgstr ""
845
 
846
+ #: admin/admin.php:1110
847
  msgid "Blog ID"
848
  msgstr ""
849
 
850
+ #: admin/admin.php:1113
851
  msgid "Status"
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1116
855
  msgid "Select to import"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1126
859
  msgid "Blog #"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1136
863
  msgid "Not imported"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1140
867
  msgid "Imported"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1161
871
  msgid "Begin import"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1162
875
  msgid "Delete selected tables"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1163
879
  msgid "Delete all imported tables"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1220 admin/admin.php:1316
883
  msgid "Daily Popular Posts"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1250
887
  msgid "Support the development"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1257
891
  msgid "Donation for Top 10"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1259
895
  msgid "Enter amount in USD: "
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1263
899
  msgid "Send your donation to the author of Top 10"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1270
903
  msgid "Follow me"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1280
907
  msgid "Quick links"
908
  msgstr ""
909
 
910
+ #: admin/admin.php:1284
911
  msgid "Top 10 plugin page"
912
  msgstr ""
913
 
914
+ #: admin/admin.php:1285
915
  msgid "Top 10 Github page"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1286
919
  msgid "Other plugins"
920
  msgstr ""
921
 
922
+ #: admin/admin.php:1287
923
  msgid "Ajay's blog"
924
  msgstr ""
925
 
926
+ #: admin/admin.php:1288
927
  msgid "FAQ"
928
  msgstr ""
929
 
930
+ #: admin/admin.php:1289 admin/admin.php:1451
931
  msgid "Support"
932
  msgstr ""
933
 
934
+ #: admin/admin.php:1290
935
  msgid "Reviews"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1313
939
  msgid "Overall Popular Posts"
940
  msgstr ""
941
 
942
+ #: admin/admin.php:1428
943
  msgid "Settings"
944
  msgstr ""
945
 
946
+ #: admin/admin.php:1452
947
  msgid "Donate"
948
  msgstr ""
949
 
955
  msgid "Display popular posts"
956
  msgstr ""
957
 
958
+ #: includes/class-top-10-widget.php:71
959
  msgid "Title"
960
  msgstr ""
961
 
962
+ #: includes/class-top-10-widget.php:76
963
  msgid "No. of posts"
964
  msgstr ""
965
 
966
+ #: includes/class-top-10-widget.php:81
967
  msgid "Overall"
968
  msgstr ""
969
 
970
+ #: includes/class-top-10-widget.php:82
971
  msgid "Custom time period (Enter below)"
972
  msgstr ""
973
 
974
+ #: includes/class-top-10-widget.php:86
975
  msgid "In days and hours (applies only to custom option above)"
976
  msgstr ""
977
 
978
+ #: includes/class-top-10-widget.php:88
979
  msgid "days"
980
  msgstr ""
981
 
982
+ #: includes/class-top-10-widget.php:91
983
  msgid "hours"
984
  msgstr ""
985
 
986
+ #: includes/class-top-10-widget.php:96
987
  msgid "Show count?"
988
  msgstr ""
989
 
990
+ #: includes/class-top-10-widget.php:101
991
  msgid "Show excerpt?"
992
  msgstr ""
993
 
994
+ #: includes/class-top-10-widget.php:106
995
  msgid "Show author?"
996
  msgstr ""
997
 
998
+ #: includes/class-top-10-widget.php:111
999
  msgid "Show date?"
1000
  msgstr ""
1001
 
1002
+ #: includes/class-top-10-widget.php:117
1003
  msgid "Thumbnails inline, before title"
1004
  msgstr ""
1005
 
1006
+ #: includes/class-top-10-widget.php:118
1007
  msgid "Thumbnails inline, after title"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-top-10-widget.php:119
1011
  msgid "Only thumbnails, no text"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-top-10-widget.php:120
1015
  msgid "No thumbnails, only text."
1016
  msgstr ""
1017
 
1018
+ #: includes/class-top-10-widget.php:125
1019
  msgid "Thumbnail height"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-top-10-widget.php:131
1023
  msgid "Thumbnail width"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-top-10-widget.php:136
1027
+ msgid "Post types to include:"
1028
+ msgstr ""
1029
+
1030
+ #: top-10.php:756
1031
  msgid " by "
1032
  msgstr ""
1033
 
1034
+ #: top-10.php:823
1035
  #, php-format
1036
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1037
  msgstr ""
1038
 
1039
+ #: top-10.php:1113
1040
  msgid "<h3>Popular Posts</h3>"
1041
  msgstr ""
1042
 
1043
+ #: top-10.php:1114
1044
  msgid "<h3>Daily Popular</h3>"
1045
  msgstr ""
1046
 
1047
+ #: top-10.php:1115
1048
  msgid "No top posts yet"
1049
  msgstr ""
1050
 
1051
+ #: top-10.php:1507
1052
+ msgid "thumb_timthumb argument has been deprecated"
1053
+ msgstr ""
1054
+
1055
+ #: top-10.php:1511
1056
+ msgid "thumb_timthumb_q argument has been deprecated"
1057
+ msgstr ""
1058
+
1059
+ #: top-10.php:1515
1060
+ msgid "filter argument has been deprecated"
1061
+ msgstr ""
1062
+
1063
+ #: top-10.php:1853
1064
  msgid "Once Weekly"
1065
  msgstr ""
1066
 
1067
+ #: top-10.php:1857
1068
  msgid "Once Fortnightly"
1069
  msgstr ""
1070
 
1071
+ #: top-10.php:1861
1072
  msgid "Once Monthly"
1073
  msgstr ""
1074
 
1075
+ #: top-10.php:1865
1076
  msgid "Once quarterly"
1077
  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: 2015-01-03 01:53-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
@@ -59,7 +59,7 @@ msgstr ""
59
  msgid "Next"
60
  msgstr ""
61
 
62
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
@@ -67,7 +67,7 @@ msgstr ""
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
- #: admin/admin-metabox.php:38 admin/admin.php:1263
71
  msgid "Top 10"
72
  msgstr ""
73
 
@@ -96,123 +96,133 @@ msgstr ""
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
- #: admin/admin.php:163
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
- #: admin/admin.php:173
 
 
 
 
 
 
104
  msgid "Options set to Default."
105
  msgstr ""
106
 
107
- #: admin/admin.php:179
108
  msgid "Top 10 popular posts reset"
109
  msgstr ""
110
 
111
- #: admin/admin.php:185
112
  msgid "Top 10 daily popular posts reset"
113
  msgstr ""
114
 
115
- #: admin/admin.php:192
116
  msgid "Duplicate rows cleaned from tables"
117
  msgstr ""
118
 
119
- #: admin/admin.php:204
 
 
 
 
120
  msgid "Scheduled maintenance enabled / modified"
121
  msgstr ""
122
 
123
- #: admin/admin.php:208
124
  msgid "Scheduled maintenance disabled"
125
  msgstr ""
126
 
127
- #: admin/admin.php:247
128
  msgid "Counts from selected sites have been imported."
129
  msgstr ""
130
 
131
- #: admin/admin.php:272
132
  msgid ""
133
  "Selected tables have been deleted. Note that only imported tables have been "
134
  "deleted."
135
  msgstr ""
136
 
137
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
138
  msgid "Top 10 Settings"
139
  msgstr ""
140
 
141
- #: admin/admin.php:292 admin/admin.php:314
142
  msgid "General options"
143
  msgstr ""
144
 
145
- #: admin/admin.php:293 admin/admin.php:406
146
  msgid "Counter and tracker options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:294 admin/admin.php:511
150
  msgid "Popular post list options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:295 admin/admin.php:706
154
- #: includes/class-top-10-widget.php:103
155
  msgid "Thumbnail options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:296
159
  msgid "Custom styles"
160
  msgstr ""
161
 
162
- #: admin/admin.php:297 admin/admin.php:937
163
  msgid "Maintenance"
164
  msgstr ""
165
 
166
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
167
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
168
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
169
- #: admin/admin.php:1225 admin/admin.php:1235
170
  msgid "Click to toggle"
171
  msgstr ""
172
 
173
- #: admin/admin.php:330
174
  msgid "Enable Overall stats"
175
  msgstr ""
176
 
177
- #: admin/admin.php:336
178
  msgid "Enable Daily stats"
179
  msgstr ""
180
 
181
- #: admin/admin.php:342
182
  msgid "Cache fix:"
183
  msgstr ""
184
 
185
- #: admin/admin.php:345
186
  msgid ""
187
  "This will try to prevent W3 Total Cache and other caching plugins from "
188
  "caching the tracker script of the plugin. Try toggling this option in case "
189
  "you find that your posts are not tracked."
190
  msgstr ""
191
 
192
- #: admin/admin.php:349
193
  msgid "Start daily counts from midnight:"
194
  msgstr ""
195
 
196
- #: admin/admin.php:352
197
  msgid ""
198
  "Daily counter will display number of visits from midnight. This option is "
199
  "checked by default and mimics the way most normal counters work. Turning "
200
  "this off will allow you to use the hourly setting in the next option."
201
  msgstr ""
202
 
203
- #: admin/admin.php:356
204
  msgid "Daily popular contains top posts over:"
205
  msgstr ""
206
 
207
- #: admin/admin.php:358
208
  msgid "day(s)"
209
  msgstr ""
210
 
211
- #: admin/admin.php:359
212
  msgid "hour(s)"
213
  msgstr ""
214
 
215
- #: admin/admin.php:360
216
  msgid ""
217
  "Think of Daily Popular has a custom date range applied as a global setting. "
218
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -220,91 +230,91 @@ msgid ""
220
  "overridden in the widget."
221
  msgstr ""
222
 
223
- #: admin/admin.php:364
224
  msgid "Delete options on uninstall"
225
  msgstr ""
226
 
227
- #: admin/admin.php:367
228
  msgid ""
229
  "If this is checked, all settings related to Top 10 are removed from the "
230
  "database if you choose to uninstall/delete the plugin."
231
  msgstr ""
232
 
233
- #: admin/admin.php:371
234
  msgid "Delete counter data on uninstall"
235
  msgstr ""
236
 
237
- #: admin/admin.php:374
238
  msgid ""
239
  "If this is checked, the tables containing the counter statistics are removed "
240
  "from the database if you choose to uninstall/delete the plugin."
241
  msgstr ""
242
 
243
- #: admin/admin.php:375
244
  msgid ""
245
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
246
  "lose your counter data."
247
  msgstr ""
248
 
249
- #: admin/admin.php:379
250
  msgid "Link to Top 10 plugin page"
251
  msgstr ""
252
 
253
- #: admin/admin.php:382
254
  msgid ""
255
  "A link to the plugin is added as an extra list item to the list of popular "
256
  "posts"
257
  msgstr ""
258
 
259
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
260
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
261
  msgid "Save Options"
262
  msgstr ""
263
 
264
- #: admin/admin.php:422
265
  msgid "Display number of views on:"
266
  msgstr ""
267
 
268
- #: admin/admin.php:424
269
  msgid "Posts"
270
  msgstr ""
271
 
272
- #: admin/admin.php:425
273
  msgid "Pages"
274
  msgstr ""
275
 
276
- #: admin/admin.php:426
277
  msgid "Home page"
278
  msgstr ""
279
 
280
- #: admin/admin.php:427
281
  msgid "Feeds"
282
  msgstr ""
283
 
284
- #: admin/admin.php:428
285
  msgid "Category archives"
286
  msgstr ""
287
 
288
- #: admin/admin.php:429
289
  msgid "Tag archives"
290
  msgstr ""
291
 
292
- #: admin/admin.php:430
293
  msgid "Other archives"
294
  msgstr ""
295
 
296
- #: admin/admin.php:431
297
  msgid ""
298
  "If you choose to disable this, please add <code>&lt;?php if "
299
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
300
  "</code> to your template file where you want it displayed"
301
  msgstr ""
302
 
303
- #: admin/admin.php:435
304
  msgid "Format to display the post views:"
305
  msgstr ""
306
 
307
- #: admin/admin.php:438
308
  msgid ""
309
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
310
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -312,11 +322,11 @@ msgid ""
312
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
313
  msgstr ""
314
 
315
- #: admin/admin.php:442
316
  msgid "What do display when there are no visits?"
317
  msgstr ""
318
 
319
- #: admin/admin.php:445
320
  msgid ""
321
  "This text applies only when there are 0 hits for the post and it isn't a "
322
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -324,382 +334,372 @@ msgid ""
324
  "option."
325
  msgstr ""
326
 
327
- #: admin/admin.php:449
328
  msgid "Always display latest post count"
329
  msgstr ""
330
 
331
- #: admin/admin.php:452
332
  msgid ""
333
  "This option uses JavaScript and will increase your page load time. Turn this "
334
  "off if you are not using caching plugins or are OK with displaying older "
335
  "cached counts."
336
  msgstr ""
337
 
338
- #: admin/admin.php:456
339
  msgid "Track visits of authors on their own posts?"
340
  msgstr ""
341
 
342
- #: admin/admin.php:459
343
  msgid ""
344
  "Disabling this option will stop authors visits tracked on their own posts"
345
  msgstr ""
346
 
347
- #: admin/admin.php:463
348
  msgid "Track visits of admins?"
349
  msgstr ""
350
 
351
- #: admin/admin.php:466
352
  msgid "Disabling this option will stop admin visits being tracked."
353
  msgstr ""
354
 
355
- #: admin/admin.php:470
356
  msgid "Track visits of Editors?"
357
  msgstr ""
358
 
359
- #: admin/admin.php:473
360
  msgid "Disabling this option will stop editor visits being tracked."
361
  msgstr ""
362
 
363
- #: admin/admin.php:477
364
  msgid "Display page views on Posts and Pages in Admin"
365
  msgstr ""
366
 
367
- #: admin/admin.php:480
368
  msgid ""
369
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
370
  "and All Pages"
371
  msgstr ""
372
 
373
- #: admin/admin.php:484
374
  msgid "Show number of views to non-admins"
375
  msgstr ""
376
 
377
- #: admin/admin.php:487
378
  msgid ""
379
  "If you disable this then non-admins won't see the above columns or view the "
380
  "independent pages with the top posts"
381
  msgstr ""
382
 
383
- #: admin/admin.php:527
384
  msgid "Number of popular posts to display: "
385
  msgstr ""
386
 
387
- #: admin/admin.php:530
388
  msgid ""
389
  "Maximum number of posts that will be displayed in the list. This option is "
390
  "used if you don't specify the number of posts in the widget or shortcodes"
391
  msgstr ""
392
 
393
- #: admin/admin.php:534
394
  msgid "Post types to include in results (including custom post types)"
395
  msgstr ""
396
 
397
- #: admin/admin.php:546
398
  msgid "List of post or page IDs to exclude from the results: "
399
  msgstr ""
400
 
401
- #: admin/admin.php:548 admin/admin.php:655
402
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
403
  msgstr ""
404
 
405
- #: admin/admin.php:552
406
  msgid "Exclude Categories: "
407
  msgstr ""
408
 
409
- #: admin/admin.php:567
410
  msgid ""
411
  "Comma separated list of category slugs. The field above has an autocomplete "
412
  "so simply start typing in the starting letters and it will prompt you with "
413
  "options"
414
  msgstr ""
415
 
416
- #: admin/admin.php:572
417
  msgid "Title of popular posts: "
418
  msgstr ""
419
 
420
- #: admin/admin.php:578
421
  msgid "Title of daily popular posts: "
422
  msgstr ""
423
 
424
- #: admin/admin.php:584
425
  msgid "When there are no posts, what should be shown?"
426
  msgstr ""
427
 
428
- #: admin/admin.php:588
429
  msgid "Blank Output"
430
  msgstr ""
431
 
432
- #: admin/admin.php:592
433
  msgid "Display:"
434
  msgstr ""
435
 
436
- #: admin/admin.php:597
437
  msgid "Show post excerpt in list?"
438
  msgstr ""
439
 
440
- #: admin/admin.php:603
 
 
 
 
 
441
  msgid "Length of excerpt (in words): "
442
  msgstr ""
443
 
444
- #: admin/admin.php:609
445
  msgid "Show post author in list?"
446
  msgstr ""
447
 
448
- #: admin/admin.php:615
449
- msgid "Show post date in list?"
 
450
  msgstr ""
451
 
452
- #: admin/admin.php:621
453
- msgid "Limit post title length (in characters)"
454
  msgstr ""
455
 
456
- #: admin/admin.php:627
457
- msgid "Show view count in list?"
 
458
  msgstr ""
459
 
460
- #: admin/admin.php:633
461
- msgid "Always display latest post count in the daily lists?"
462
  msgstr ""
463
 
464
- #: admin/admin.php:636
465
- msgid ""
466
- "This option uses JavaScript and will increase your page load time. When you "
467
- "enable this option, the daily widget will not use the options set there, but "
468
- "options will need to be set on this screen."
469
  msgstr ""
470
 
471
- #: admin/admin.php:640
472
  msgid "Open links in new window"
473
  msgstr ""
474
 
475
- #: admin/admin.php:646
476
  msgid "Add nofollow attribute to links in the list"
477
  msgstr ""
478
 
479
- #: admin/admin.php:652
480
  msgid "Exclude display of related posts on these posts / pages"
481
  msgstr ""
482
 
483
- #: admin/admin.php:659
484
  msgid "Customise the list HTML"
485
  msgstr ""
486
 
487
- #: admin/admin.php:662
488
  msgid "HTML to display before the list of posts: "
489
  msgstr ""
490
 
491
- #: admin/admin.php:668
492
  msgid "HTML to display before each list item: "
493
  msgstr ""
494
 
495
- #: admin/admin.php:674
496
  msgid "HTML to display after each list item: "
497
  msgstr ""
498
 
499
- #: admin/admin.php:680
500
  msgid "HTML to display after the list of posts: "
501
  msgstr ""
502
 
503
- #: admin/admin.php:721
504
  msgid "Location of post thumbnail:"
505
  msgstr ""
506
 
507
- #: admin/admin.php:725
508
  msgid "Display thumbnails inline with posts, before title"
509
  msgstr ""
510
 
511
- #: admin/admin.php:730
512
  msgid "Display thumbnails inline with posts, after title"
513
  msgstr ""
514
 
515
- #: admin/admin.php:735
516
  msgid "Display only thumbnails, no text"
517
  msgstr ""
518
 
519
- #: admin/admin.php:740
520
  msgid "Do not display thumbnails, only text."
521
  msgstr ""
522
 
523
- #: admin/admin.php:744
 
 
 
 
 
 
524
  msgid "Thumbnail size:"
525
  msgstr ""
526
 
527
- #: admin/admin.php:768
528
  msgid "Custom size"
529
  msgstr ""
530
 
531
- #: admin/admin.php:771
532
  msgid ""
533
  "You can choose from existing image sizes above or create a custom size. If "
534
  "you have chosen Custom size above, then enter the width, height and crop "
535
  "settings below. For best results, use a cropped image."
536
  msgstr ""
537
 
538
- #: admin/admin.php:772
539
  msgid ""
540
  "If you change the width and/or height below, existing images will not be "
541
  "automatically resized."
542
  msgstr ""
543
 
544
- #: admin/admin.php:773
545
  #, php-format
546
  msgid ""
547
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
548
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
549
- "regenerate all image sizes."
550
  msgstr ""
551
 
552
- #: admin/admin.php:776
553
  msgid "Width of custom thumbnail:"
554
  msgstr ""
555
 
556
- #: admin/admin.php:781
557
  msgid "Height of custom thumbnail"
558
  msgstr ""
559
 
560
- #: admin/admin.php:786
561
  msgid "Crop mode:"
562
  msgstr ""
563
 
564
- #: admin/admin.php:790
565
  msgid ""
566
  "By default, thumbnails will be proportionately cropped. Check this box to "
567
  "hard crop the thumbnails."
568
  msgstr ""
569
 
570
- #: admin/admin.php:791
571
  #, php-format
572
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
573
  msgstr ""
574
 
575
- #: admin/admin.php:793
576
  msgid ""
577
- "Since you're using the default styles set under the Custom Styles section, "
578
- "the width and height is fixed at 65px and crop mode is enabled."
579
  msgstr ""
580
 
581
- #: admin/admin.php:798
582
  msgid "Style attributes / Width and Height HTML attributes:"
583
  msgstr ""
584
 
585
- #: admin/admin.php:802
586
  msgid "Style attributes are used for width and height."
587
  msgstr ""
588
 
589
- #: admin/admin.php:807
590
  msgid "HTML width and height attributes are used for width and height."
591
  msgstr ""
592
 
593
- #: admin/admin.php:811
594
- msgid "Use timthumb to generate thumbnails? "
595
- msgstr ""
596
-
597
- #: admin/admin.php:814
598
- msgid ""
599
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
600
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
601
- msgstr ""
602
-
603
- #: admin/admin.php:817
604
- msgid "Quality of thumbnails generated by timthumb:"
605
- msgstr ""
606
-
607
- #: admin/admin.php:820
608
- msgid ""
609
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
610
- "file size. Suggested maximum value is 95. Default is 75."
611
- msgstr ""
612
-
613
- #: admin/admin.php:823
614
  msgid "Post thumbnail meta field name: "
615
  msgstr ""
616
 
617
- #: admin/admin.php:826
618
  msgid ""
619
  "The value of this field should contain the image source and is set in the "
620
  "<em>Add New Post</em> screen"
621
  msgstr ""
622
 
623
- #: admin/admin.php:829
624
  msgid ""
625
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "from the post?"
627
  msgstr ""
628
 
629
- #: admin/admin.php:832
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
632
  "related posts is large in file-size"
633
  msgstr ""
634
 
635
- #: admin/admin.php:835
636
  msgid "Use default thumbnail? "
637
  msgstr ""
638
 
639
- #: admin/admin.php:838
640
  msgid ""
641
  "If checked, when no thumbnail is found, show a default one from the URL "
642
  "below. If not checked and no thumbnail is found, no image will be shown."
643
  msgstr ""
644
 
645
- #: admin/admin.php:841
646
  msgid "Default thumbnail: "
647
  msgstr ""
648
 
649
- #: admin/admin.php:845
650
  msgid ""
651
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
652
  "then it will check the meta field. If this is not available, then it will "
653
  "show the default image as specified above"
654
  msgstr ""
655
 
656
- #: admin/admin.php:869
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
- #: admin/admin.php:884
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
- #: admin/admin.php:887
665
  msgid ""
666
  "Top 10 includes a default style that makes your popular posts list to look "
667
  "beautiful. Check the box above if you want to use this."
668
  msgstr ""
669
 
670
- #: admin/admin.php:888
671
  msgid ""
672
  "Enabling this option will turn on the thumbnails and set their width and "
673
  "height to 65px. It will also turn off the display of the author, excerpt and "
674
  "date if already enabled. Disabling this option will not revert any settings."
675
  msgstr ""
676
 
677
- #: admin/admin.php:889
678
  #, php-format
679
  msgid ""
680
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
681
  msgstr ""
682
 
683
- #: admin/admin.php:892
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
- #: admin/admin.php:897
688
  msgid ""
689
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
690
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
691
  "available CSS classes to style."
692
  msgstr ""
693
 
694
- #: admin/admin.php:917
695
  msgid "Default Options"
696
  msgstr ""
697
 
698
- #: admin/admin.php:917
699
  msgid "Do you want to set options to Default?"
700
  msgstr ""
701
 
702
- #: admin/admin.php:941
703
  msgid ""
704
  "Over time the Daily Top 10 database grows in size, which reduces the "
705
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -707,225 +707,243 @@ msgid ""
707
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
- #: admin/admin.php:942
711
  msgid ""
712
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
713
  "everytime the job is rescheduled (i.e. you change the settings below)."
714
  msgstr ""
715
 
716
- #: admin/admin.php:945
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
- #: admin/admin.php:949
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
- #: admin/admin.php:950
725
  msgid "hrs"
726
  msgstr ""
727
 
728
- #: admin/admin.php:950
729
  msgid "min"
730
  msgstr ""
731
 
732
- #: admin/admin.php:952
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
- #: admin/admin.php:956
737
  msgid "Daily"
738
  msgstr ""
739
 
740
- #: admin/admin.php:960
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
- #: admin/admin.php:964
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
- #: admin/admin.php:968
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
- #: admin/admin.php:977
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
- #: admin/admin.php:982
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
- #: admin/admin.php:987
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
- #: admin/admin.php:1001
765
- msgid "Reset count"
766
  msgstr ""
767
 
768
- #: admin/admin.php:1004
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
772
  msgstr ""
773
 
774
- #: admin/admin.php:1007
775
  msgid "Reset Popular Posts"
776
  msgstr ""
777
 
778
- #: admin/admin.php:1007
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
- #: admin/admin.php:1008
783
  msgid "Reset Daily Popular Posts"
784
  msgstr ""
785
 
786
- #: admin/admin.php:1008
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
- #: admin/admin.php:1009
791
- msgid "Clear duplicates"
792
  msgstr ""
793
 
794
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
  msgid "This will delete the duplicate entries in the tables. Proceed?"
796
  msgstr ""
797
 
798
- #: admin/admin.php:1022
799
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
800
  msgstr ""
801
 
802
- #: admin/admin.php:1025
803
  msgid ""
804
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
805
  "activate the plugin independently for each site. This would have resulted in "
806
  "two tables being created for each site in the network."
807
  msgstr ""
808
 
809
- #: admin/admin.php:1026
810
  msgid ""
811
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
812
  "your database clean. You can use this tool to import the recorded counts "
813
  "from v1.x tables to the new v2.x table format."
814
  msgstr ""
815
 
816
- #: admin/admin.php:1029
817
  msgid ""
818
  "If you do not see any tables below, then it means that either all data has "
819
  "already been imported or no relevant information has been found."
820
  msgstr ""
821
 
822
- #: admin/admin.php:1032
823
  msgid ""
824
  "After running the importer, please verify that all the counts have been "
825
  "successfully imported. Only then should you delete any old tables!"
826
  msgstr ""
827
 
828
- #: admin/admin.php:1066
829
  msgid "Blog ID"
830
  msgstr ""
831
 
832
- #: admin/admin.php:1069
833
  msgid "Status"
834
  msgstr ""
835
 
836
- #: admin/admin.php:1072
837
  msgid "Select to import"
838
  msgstr ""
839
 
840
- #: admin/admin.php:1082
841
  msgid "Blog #"
842
  msgstr ""
843
 
844
- #: admin/admin.php:1092
845
  msgid "Not imported"
846
  msgstr ""
847
 
848
- #: admin/admin.php:1096
849
  msgid "Imported"
850
  msgstr ""
851
 
852
- #: admin/admin.php:1117
853
  msgid "Begin import"
854
  msgstr ""
855
 
856
- #: admin/admin.php:1118
857
  msgid "Delete selected tables"
858
  msgstr ""
859
 
860
- #: admin/admin.php:1119
861
  msgid "Delete all imported tables"
862
  msgstr ""
863
 
864
- #: admin/admin.php:1176 admin/admin.php:1272
865
  msgid "Daily Popular Posts"
866
  msgstr ""
867
 
868
- #: admin/admin.php:1206
869
  msgid "Support the development"
870
  msgstr ""
871
 
872
- #: admin/admin.php:1213
873
  msgid "Donation for Top 10"
874
  msgstr ""
875
 
876
- #: admin/admin.php:1215
877
  msgid "Enter amount in USD: "
878
  msgstr ""
879
 
880
- #: admin/admin.php:1219
881
  msgid "Send your donation to the author of Top 10"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1226
885
  msgid "Follow me"
886
  msgstr ""
887
 
888
- #: admin/admin.php:1236
889
  msgid "Quick links"
890
  msgstr ""
891
 
892
- #: admin/admin.php:1240
893
  msgid "Top 10 plugin page"
894
  msgstr ""
895
 
896
- #: admin/admin.php:1241
897
  msgid "Top 10 Github page"
898
  msgstr ""
899
 
900
- #: admin/admin.php:1242
901
  msgid "Other plugins"
902
  msgstr ""
903
 
904
- #: admin/admin.php:1243
905
  msgid "Ajay's blog"
906
  msgstr ""
907
 
908
- #: admin/admin.php:1244
909
  msgid "FAQ"
910
  msgstr ""
911
 
912
- #: admin/admin.php:1245 admin/admin.php:1403
913
  msgid "Support"
914
  msgstr ""
915
 
916
- #: admin/admin.php:1246
917
  msgid "Reviews"
918
  msgstr ""
919
 
920
- #: admin/admin.php:1269
921
  msgid "Overall Popular Posts"
922
  msgstr ""
923
 
924
- #: admin/admin.php:1380
925
  msgid "Settings"
926
  msgstr ""
927
 
928
- #: admin/admin.php:1404
929
  msgid "Donate"
930
  msgstr ""
931
 
@@ -937,107 +955,123 @@ msgstr ""
937
  msgid "Display popular posts"
938
  msgstr ""
939
 
940
- #: includes/class-top-10-widget.php:59
941
  msgid "Title"
942
  msgstr ""
943
 
944
- #: includes/class-top-10-widget.php:64
945
  msgid "No. of posts"
946
  msgstr ""
947
 
948
- #: includes/class-top-10-widget.php:69
949
  msgid "Overall"
950
  msgstr ""
951
 
952
- #: includes/class-top-10-widget.php:70
953
  msgid "Custom time period (Enter below)"
954
  msgstr ""
955
 
956
- #: includes/class-top-10-widget.php:74
957
  msgid "In days and hours (applies only to custom option above)"
958
  msgstr ""
959
 
960
- #: includes/class-top-10-widget.php:76
961
  msgid "days"
962
  msgstr ""
963
 
964
- #: includes/class-top-10-widget.php:79
965
  msgid "hours"
966
  msgstr ""
967
 
968
- #: includes/class-top-10-widget.php:84
969
  msgid "Show count?"
970
  msgstr ""
971
 
972
- #: includes/class-top-10-widget.php:89
973
  msgid "Show excerpt?"
974
  msgstr ""
975
 
976
- #: includes/class-top-10-widget.php:94
977
  msgid "Show author?"
978
  msgstr ""
979
 
980
- #: includes/class-top-10-widget.php:99
981
  msgid "Show date?"
982
  msgstr ""
983
 
984
- #: includes/class-top-10-widget.php:105
985
  msgid "Thumbnails inline, before title"
986
  msgstr ""
987
 
988
- #: includes/class-top-10-widget.php:106
989
  msgid "Thumbnails inline, after title"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:107
993
  msgid "Only thumbnails, no text"
994
  msgstr ""
995
 
996
- #: includes/class-top-10-widget.php:108
997
  msgid "No thumbnails, only text."
998
  msgstr ""
999
 
1000
- #: includes/class-top-10-widget.php:113
1001
  msgid "Thumbnail height"
1002
  msgstr ""
1003
 
1004
- #: includes/class-top-10-widget.php:118
1005
  msgid "Thumbnail width"
1006
  msgstr ""
1007
 
1008
- #: top-10.php:879
 
 
 
 
1009
  msgid " by "
1010
  msgstr ""
1011
 
1012
- #: top-10.php:930
1013
  #, php-format
1014
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1015
  msgstr ""
1016
 
1017
- #: top-10.php:1029
1018
  msgid "<h3>Popular Posts</h3>"
1019
  msgstr ""
1020
 
1021
- #: top-10.php:1030
1022
  msgid "<h3>Daily Popular</h3>"
1023
  msgstr ""
1024
 
1025
- #: top-10.php:1031
1026
  msgid "No top posts yet"
1027
  msgstr ""
1028
 
1029
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1030
  msgid "Once Weekly"
1031
  msgstr ""
1032
 
1033
- #: top-10.php:1694
1034
  msgid "Once Fortnightly"
1035
  msgstr ""
1036
 
1037
- #: top-10.php:1698
1038
  msgid "Once Monthly"
1039
  msgstr ""
1040
 
1041
- #: top-10.php:1702
1042
  msgid "Once quarterly"
1043
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:46-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay DSouza <me@ajaydsouza.com>\n"
59
  msgid "Next"
60
  msgstr ""
61
 
62
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
63
  msgid "Popular Posts"
64
  msgstr ""
65
 
67
  msgid "Daily Popular"
68
  msgstr ""
69
 
70
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
71
  msgid "Top 10"
72
  msgstr ""
73
 
96
  msgid "The URL above is saved in the meta field: "
97
  msgstr ""
98
 
99
+ #: admin/admin.php:171
100
  msgid "Options saved successfully."
101
  msgstr ""
102
 
103
+ #: admin/admin.php:174
104
+ msgid ""
105
+ "Default styles selected. Thumbnail width, height and crop settings have been "
106
+ "fixed. Author, Excerpt and Date will not be displayed."
107
+ msgstr ""
108
+
109
+ #: admin/admin.php:190
110
  msgid "Options set to Default."
111
  msgstr ""
112
 
113
+ #: admin/admin.php:197
114
  msgid "Top 10 popular posts reset"
115
  msgstr ""
116
 
117
+ #: admin/admin.php:204
118
  msgid "Top 10 daily popular posts reset"
119
  msgstr ""
120
 
121
+ #: admin/admin.php:212
122
  msgid "Duplicate rows cleaned from tables"
123
  msgstr ""
124
 
125
+ #: admin/admin.php:220
126
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
127
+ msgstr ""
128
+
129
+ #: admin/admin.php:233
130
  msgid "Scheduled maintenance enabled / modified"
131
  msgstr ""
132
 
133
+ #: admin/admin.php:237
134
  msgid "Scheduled maintenance disabled"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:276
138
  msgid "Counts from selected sites have been imported."
139
  msgstr ""
140
 
141
+ #: admin/admin.php:301
142
  msgid ""
143
  "Selected tables have been deleted. Note that only imported tables have been "
144
  "deleted."
145
  msgstr ""
146
 
147
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
148
  msgid "Top 10 Settings"
149
  msgstr ""
150
 
151
+ #: admin/admin.php:321 admin/admin.php:343
152
  msgid "General options"
153
  msgstr ""
154
 
155
+ #: admin/admin.php:322 admin/admin.php:435
156
  msgid "Counter and tracker options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:323 admin/admin.php:540
160
  msgid "Popular post list options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:324 admin/admin.php:742
164
+ #: includes/class-top-10-widget.php:115
165
  msgid "Thumbnail options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:325
169
  msgid "Custom styles"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:326 admin/admin.php:966
173
  msgid "Maintenance"
174
  msgstr ""
175
 
176
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
177
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
178
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
179
+ #: admin/admin.php:1269 admin/admin.php:1279
180
  msgid "Click to toggle"
181
  msgstr ""
182
 
183
+ #: admin/admin.php:359
184
  msgid "Enable Overall stats"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:365
188
  msgid "Enable Daily stats"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:371
192
  msgid "Cache fix:"
193
  msgstr ""
194
 
195
+ #: admin/admin.php:374
196
  msgid ""
197
  "This will try to prevent W3 Total Cache and other caching plugins from "
198
  "caching the tracker script of the plugin. Try toggling this option in case "
199
  "you find that your posts are not tracked."
200
  msgstr ""
201
 
202
+ #: admin/admin.php:378
203
  msgid "Start daily counts from midnight:"
204
  msgstr ""
205
 
206
+ #: admin/admin.php:381
207
  msgid ""
208
  "Daily counter will display number of visits from midnight. This option is "
209
  "checked by default and mimics the way most normal counters work. Turning "
210
  "this off will allow you to use the hourly setting in the next option."
211
  msgstr ""
212
 
213
+ #: admin/admin.php:385
214
  msgid "Daily popular contains top posts over:"
215
  msgstr ""
216
 
217
+ #: admin/admin.php:387
218
  msgid "day(s)"
219
  msgstr ""
220
 
221
+ #: admin/admin.php:388
222
  msgid "hour(s)"
223
  msgstr ""
224
 
225
+ #: admin/admin.php:389
226
  msgid ""
227
  "Think of Daily Popular has a custom date range applied as a global setting. "
228
  "Instead of displaying popular posts from the past day, this setting lets you "
230
  "overridden in the widget."
231
  msgstr ""
232
 
233
+ #: admin/admin.php:393
234
  msgid "Delete options on uninstall"
235
  msgstr ""
236
 
237
+ #: admin/admin.php:396
238
  msgid ""
239
  "If this is checked, all settings related to Top 10 are removed from the "
240
  "database if you choose to uninstall/delete the plugin."
241
  msgstr ""
242
 
243
+ #: admin/admin.php:400
244
  msgid "Delete counter data on uninstall"
245
  msgstr ""
246
 
247
+ #: admin/admin.php:403
248
  msgid ""
249
  "If this is checked, the tables containing the counter statistics are removed "
250
  "from the database if you choose to uninstall/delete the plugin."
251
  msgstr ""
252
 
253
+ #: admin/admin.php:404
254
  msgid ""
255
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
256
  "lose your counter data."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:408
260
  msgid "Link to Top 10 plugin page"
261
  msgstr ""
262
 
263
+ #: admin/admin.php:411
264
  msgid ""
265
  "A link to the plugin is added as an extra list item to the list of popular "
266
  "posts"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
270
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
271
  msgid "Save Options"
272
  msgstr ""
273
 
274
+ #: admin/admin.php:451
275
  msgid "Display number of views on:"
276
  msgstr ""
277
 
278
+ #: admin/admin.php:453
279
  msgid "Posts"
280
  msgstr ""
281
 
282
+ #: admin/admin.php:454
283
  msgid "Pages"
284
  msgstr ""
285
 
286
+ #: admin/admin.php:455
287
  msgid "Home page"
288
  msgstr ""
289
 
290
+ #: admin/admin.php:456
291
  msgid "Feeds"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:457
295
  msgid "Category archives"
296
  msgstr ""
297
 
298
+ #: admin/admin.php:458
299
  msgid "Tag archives"
300
  msgstr ""
301
 
302
+ #: admin/admin.php:459
303
  msgid "Other archives"
304
  msgstr ""
305
 
306
+ #: admin/admin.php:460
307
  msgid ""
308
  "If you choose to disable this, please add <code>&lt;?php if "
309
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
310
  "</code> to your template file where you want it displayed"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:464
314
  msgid "Format to display the post views:"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:467
318
  msgid ""
319
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
320
  "%</code> to display the daily count and <code>%overallcount%</code> to "
322
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
323
  msgstr ""
324
 
325
+ #: admin/admin.php:471
326
  msgid "What do display when there are no visits?"
327
  msgstr ""
328
 
329
+ #: admin/admin.php:474
330
  msgid ""
331
  "This text applies only when there are 0 hits for the post and it isn't a "
332
  "single page. e.g. if you display post views on the homepage or archives then "
334
  "option."
335
  msgstr ""
336
 
337
+ #: admin/admin.php:478
338
  msgid "Always display latest post count"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:481
342
  msgid ""
343
  "This option uses JavaScript and will increase your page load time. Turn this "
344
  "off if you are not using caching plugins or are OK with displaying older "
345
  "cached counts."
346
  msgstr ""
347
 
348
+ #: admin/admin.php:485
349
  msgid "Track visits of authors on their own posts?"
350
  msgstr ""
351
 
352
+ #: admin/admin.php:488
353
  msgid ""
354
  "Disabling this option will stop authors visits tracked on their own posts"
355
  msgstr ""
356
 
357
+ #: admin/admin.php:492
358
  msgid "Track visits of admins?"
359
  msgstr ""
360
 
361
+ #: admin/admin.php:495
362
  msgid "Disabling this option will stop admin visits being tracked."
363
  msgstr ""
364
 
365
+ #: admin/admin.php:499
366
  msgid "Track visits of Editors?"
367
  msgstr ""
368
 
369
+ #: admin/admin.php:502
370
  msgid "Disabling this option will stop editor visits being tracked."
371
  msgstr ""
372
 
373
+ #: admin/admin.php:506
374
  msgid "Display page views on Posts and Pages in Admin"
375
  msgstr ""
376
 
377
+ #: admin/admin.php:509
378
  msgid ""
379
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
380
  "and All Pages"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:513
384
  msgid "Show number of views to non-admins"
385
  msgstr ""
386
 
387
+ #: admin/admin.php:516
388
  msgid ""
389
  "If you disable this then non-admins won't see the above columns or view the "
390
  "independent pages with the top posts"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:556
394
  msgid "Number of popular posts to display: "
395
  msgstr ""
396
 
397
+ #: admin/admin.php:559
398
  msgid ""
399
  "Maximum number of posts that will be displayed in the list. This option is "
400
  "used if you don't specify the number of posts in the widget or shortcodes"
401
  msgstr ""
402
 
403
+ #: admin/admin.php:563
404
  msgid "Post types to include in results (including custom post types)"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:577
408
  msgid "List of post or page IDs to exclude from the results: "
409
  msgstr ""
410
 
411
+ #: admin/admin.php:579 admin/admin.php:691
412
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
413
  msgstr ""
414
 
415
+ #: admin/admin.php:583
416
  msgid "Exclude Categories: "
417
  msgstr ""
418
 
419
+ #: admin/admin.php:598
420
  msgid ""
421
  "Comma separated list of category slugs. The field above has an autocomplete "
422
  "so simply start typing in the starting letters and it will prompt you with "
423
  "options"
424
  msgstr ""
425
 
426
+ #: admin/admin.php:603
427
  msgid "Title of popular posts: "
428
  msgstr ""
429
 
430
+ #: admin/admin.php:609
431
  msgid "Title of daily popular posts: "
432
  msgstr ""
433
 
434
+ #: admin/admin.php:615
435
  msgid "When there are no posts, what should be shown?"
436
  msgstr ""
437
 
438
+ #: admin/admin.php:619
439
  msgid "Blank Output"
440
  msgstr ""
441
 
442
+ #: admin/admin.php:623
443
  msgid "Display:"
444
  msgstr ""
445
 
446
+ #: admin/admin.php:628
447
  msgid "Show post excerpt in list?"
448
  msgstr ""
449
 
450
+ #: admin/admin.php:633
451
+ msgid ""
452
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
453
+ msgstr ""
454
+
455
+ #: admin/admin.php:638
456
  msgid "Length of excerpt (in words): "
457
  msgstr ""
458
 
459
+ #: admin/admin.php:644
460
  msgid "Show post author in list?"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:649
464
+ msgid ""
465
+ "Default style selected under the Custom Styles. Author display is disabled."
466
  msgstr ""
467
 
468
+ #: admin/admin.php:654
469
+ msgid "Show post date in list?"
470
  msgstr ""
471
 
472
+ #: admin/admin.php:659
473
+ msgid ""
474
+ "Default style selected under the Custom Styles. Date display is disabled."
475
  msgstr ""
476
 
477
+ #: admin/admin.php:664
478
+ msgid "Limit post title length (in characters)"
479
  msgstr ""
480
 
481
+ #: admin/admin.php:670
482
+ msgid "Show view count in list?"
 
 
 
483
  msgstr ""
484
 
485
+ #: admin/admin.php:676
486
  msgid "Open links in new window"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:682
490
  msgid "Add nofollow attribute to links in the list"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:688
494
  msgid "Exclude display of related posts on these posts / pages"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:695
498
  msgid "Customise the list HTML"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:698
502
  msgid "HTML to display before the list of posts: "
503
  msgstr ""
504
 
505
+ #: admin/admin.php:704
506
  msgid "HTML to display before each list item: "
507
  msgstr ""
508
 
509
+ #: admin/admin.php:710
510
  msgid "HTML to display after each list item: "
511
  msgstr ""
512
 
513
+ #: admin/admin.php:716
514
  msgid "HTML to display after the list of posts: "
515
  msgstr ""
516
 
517
+ #: admin/admin.php:757
518
  msgid "Location of post thumbnail:"
519
  msgstr ""
520
 
521
+ #: admin/admin.php:761
522
  msgid "Display thumbnails inline with posts, before title"
523
  msgstr ""
524
 
525
+ #: admin/admin.php:766
526
  msgid "Display thumbnails inline with posts, after title"
527
  msgstr ""
528
 
529
+ #: admin/admin.php:771
530
  msgid "Display only thumbnails, no text"
531
  msgstr ""
532
 
533
+ #: admin/admin.php:776
534
  msgid "Do not display thumbnails, only text."
535
  msgstr ""
536
 
537
+ #: admin/admin.php:780
538
+ msgid ""
539
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
540
+ "to be inline before title"
541
+ msgstr ""
542
+
543
+ #: admin/admin.php:784
544
  msgid "Thumbnail size:"
545
  msgstr ""
546
 
547
+ #: admin/admin.php:808
548
  msgid "Custom size"
549
  msgstr ""
550
 
551
+ #: admin/admin.php:811
552
  msgid ""
553
  "You can choose from existing image sizes above or create a custom size. If "
554
  "you have chosen Custom size above, then enter the width, height and crop "
555
  "settings below. For best results, use a cropped image."
556
  msgstr ""
557
 
558
+ #: admin/admin.php:812
559
  msgid ""
560
  "If you change the width and/or height below, existing images will not be "
561
  "automatically resized."
562
  msgstr ""
563
 
564
+ #: admin/admin.php:813
565
  #, php-format
566
  msgid ""
567
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
568
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
569
+ "all image sizes."
570
  msgstr ""
571
 
572
+ #: admin/admin.php:816
573
  msgid "Width of custom thumbnail:"
574
  msgstr ""
575
 
576
+ #: admin/admin.php:821
577
  msgid "Height of custom thumbnail"
578
  msgstr ""
579
 
580
+ #: admin/admin.php:826
581
  msgid "Crop mode:"
582
  msgstr ""
583
 
584
+ #: admin/admin.php:830
585
  msgid ""
586
  "By default, thumbnails will be proportionately cropped. Check this box to "
587
  "hard crop the thumbnails."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:831
591
  #, php-format
592
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
593
  msgstr ""
594
 
595
+ #: admin/admin.php:834
596
  msgid ""
597
+ "Default style selected under the Custom Styles. Thumbnail width and height "
598
+ "is fixed at 65px and crop mode is enabled."
599
  msgstr ""
600
 
601
+ #: admin/admin.php:839
602
  msgid "Style attributes / Width and Height HTML attributes:"
603
  msgstr ""
604
 
605
+ #: admin/admin.php:843
606
  msgid "Style attributes are used for width and height."
607
  msgstr ""
608
 
609
+ #: admin/admin.php:848
610
  msgid "HTML width and height attributes are used for width and height."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
614
  msgid "Post thumbnail meta field name: "
615
  msgstr ""
616
 
617
+ #: admin/admin.php:855
618
  msgid ""
619
  "The value of this field should contain the image source and is set in the "
620
  "<em>Add New Post</em> screen"
621
  msgstr ""
622
 
623
+ #: admin/admin.php:858
624
  msgid ""
625
  "If the postmeta is not set, then should the plugin extract the first image "
626
  "from the post?"
627
  msgstr ""
628
 
629
+ #: admin/admin.php:861
630
  msgid ""
631
  "This could slow down the loading of your page if the first image in the "
632
  "related posts is large in file-size"
633
  msgstr ""
634
 
635
+ #: admin/admin.php:864
636
  msgid "Use default thumbnail? "
637
  msgstr ""
638
 
639
+ #: admin/admin.php:867
640
  msgid ""
641
  "If checked, when no thumbnail is found, show a default one from the URL "
642
  "below. If not checked and no thumbnail is found, no image will be shown."
643
  msgstr ""
644
 
645
+ #: admin/admin.php:870
646
  msgid "Default thumbnail: "
647
  msgstr ""
648
 
649
+ #: admin/admin.php:874
650
  msgid ""
651
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
652
  "then it will check the meta field. If this is not available, then it will "
653
  "show the default image as specified above"
654
  msgstr ""
655
 
656
+ #: admin/admin.php:898
657
  msgid "Custom CSS"
658
  msgstr ""
659
 
660
+ #: admin/admin.php:913
661
  msgid "Use default style included in the plugin?"
662
  msgstr ""
663
 
664
+ #: admin/admin.php:916
665
  msgid ""
666
  "Top 10 includes a default style that makes your popular posts list to look "
667
  "beautiful. Check the box above if you want to use this."
668
  msgstr ""
669
 
670
+ #: admin/admin.php:917
671
  msgid ""
672
  "Enabling this option will turn on the thumbnails and set their width and "
673
  "height to 65px. It will also turn off the display of the author, excerpt and "
674
  "date if already enabled. Disabling this option will not revert any settings."
675
  msgstr ""
676
 
677
+ #: admin/admin.php:918
678
  #, php-format
679
  msgid ""
680
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
681
  msgstr ""
682
 
683
+ #: admin/admin.php:921
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:926
688
  msgid ""
689
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
690
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
691
  "available CSS classes to style."
692
  msgstr ""
693
 
694
+ #: admin/admin.php:946
695
  msgid "Default Options"
696
  msgstr ""
697
 
698
+ #: admin/admin.php:946
699
  msgid "Do you want to set options to Default?"
700
  msgstr ""
701
 
702
+ #: admin/admin.php:970
703
  msgid ""
704
  "Over time the Daily Top 10 database grows in size, which reduces the "
705
  "performance of the plugin. Cleaning the database at regular intervals could "
707
  "will automatically delete entries older than 90 days."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:971
711
  msgid ""
712
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
713
  "everytime the job is rescheduled (i.e. you change the settings below)."
714
  msgstr ""
715
 
716
+ #: admin/admin.php:974
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:978
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:979
725
  msgid "hrs"
726
  msgstr ""
727
 
728
+ #: admin/admin.php:979
729
  msgid "min"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:981
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:985
737
  msgid "Daily"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:989
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:993
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:997
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:1006
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
+ #: admin/admin.php:1011
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:1016
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:1030
765
+ msgid "Reset count and other tools"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:1033
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up "
771
  "before proceeding"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:1036
775
  msgid "Reset Popular Posts"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:1036
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:1037
783
  msgid "Reset Daily Popular Posts"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:1037
787
  msgid "Are you sure you want to reset the daily popular posts?"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:1040
791
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1043
795
+ msgid "Merge blog ID 0 and 1 post counts"
796
+ msgstr ""
797
+
798
+ #: admin/admin.php:1043
799
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
800
+ msgstr ""
801
+
802
+ #: admin/admin.php:1046
803
+ msgid ""
804
+ "In older versions, the plugin created entries with duplicate post IDs. "
805
+ "Clicking the button below will merge these duplicate IDs"
806
+ msgstr ""
807
+
808
+ #: admin/admin.php:1049
809
+ msgid "Merge duplicates across blog IDs"
810
+ msgstr ""
811
+
812
+ #: admin/admin.php:1049
813
  msgid "This will delete the duplicate entries in the tables. Proceed?"
814
  msgstr ""
815
 
816
+ #: admin/admin.php:1066
817
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
818
  msgstr ""
819
 
820
+ #: admin/admin.php:1069
821
  msgid ""
822
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
823
  "activate the plugin independently for each site. This would have resulted in "
824
  "two tables being created for each site in the network."
825
  msgstr ""
826
 
827
+ #: admin/admin.php:1070
828
  msgid ""
829
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
830
  "your database clean. You can use this tool to import the recorded counts "
831
  "from v1.x tables to the new v2.x table format."
832
  msgstr ""
833
 
834
+ #: admin/admin.php:1073
835
  msgid ""
836
  "If you do not see any tables below, then it means that either all data has "
837
  "already been imported or no relevant information has been found."
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1076
841
  msgid ""
842
  "After running the importer, please verify that all the counts have been "
843
  "successfully imported. Only then should you delete any old tables!"
844
  msgstr ""
845
 
846
+ #: admin/admin.php:1110
847
  msgid "Blog ID"
848
  msgstr ""
849
 
850
+ #: admin/admin.php:1113
851
  msgid "Status"
852
  msgstr ""
853
 
854
+ #: admin/admin.php:1116
855
  msgid "Select to import"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1126
859
  msgid "Blog #"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1136
863
  msgid "Not imported"
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1140
867
  msgid "Imported"
868
  msgstr ""
869
 
870
+ #: admin/admin.php:1161
871
  msgid "Begin import"
872
  msgstr ""
873
 
874
+ #: admin/admin.php:1162
875
  msgid "Delete selected tables"
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1163
879
  msgid "Delete all imported tables"
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1220 admin/admin.php:1316
883
  msgid "Daily Popular Posts"
884
  msgstr ""
885
 
886
+ #: admin/admin.php:1250
887
  msgid "Support the development"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1257
891
  msgid "Donation for Top 10"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1259
895
  msgid "Enter amount in USD: "
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1263
899
  msgid "Send your donation to the author of Top 10"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1270
903
  msgid "Follow me"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1280
907
  msgid "Quick links"
908
  msgstr ""
909
 
910
+ #: admin/admin.php:1284
911
  msgid "Top 10 plugin page"
912
  msgstr ""
913
 
914
+ #: admin/admin.php:1285
915
  msgid "Top 10 Github page"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1286
919
  msgid "Other plugins"
920
  msgstr ""
921
 
922
+ #: admin/admin.php:1287
923
  msgid "Ajay's blog"
924
  msgstr ""
925
 
926
+ #: admin/admin.php:1288
927
  msgid "FAQ"
928
  msgstr ""
929
 
930
+ #: admin/admin.php:1289 admin/admin.php:1451
931
  msgid "Support"
932
  msgstr ""
933
 
934
+ #: admin/admin.php:1290
935
  msgid "Reviews"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1313
939
  msgid "Overall Popular Posts"
940
  msgstr ""
941
 
942
+ #: admin/admin.php:1428
943
  msgid "Settings"
944
  msgstr ""
945
 
946
+ #: admin/admin.php:1452
947
  msgid "Donate"
948
  msgstr ""
949
 
955
  msgid "Display popular posts"
956
  msgstr ""
957
 
958
+ #: includes/class-top-10-widget.php:71
959
  msgid "Title"
960
  msgstr ""
961
 
962
+ #: includes/class-top-10-widget.php:76
963
  msgid "No. of posts"
964
  msgstr ""
965
 
966
+ #: includes/class-top-10-widget.php:81
967
  msgid "Overall"
968
  msgstr ""
969
 
970
+ #: includes/class-top-10-widget.php:82
971
  msgid "Custom time period (Enter below)"
972
  msgstr ""
973
 
974
+ #: includes/class-top-10-widget.php:86
975
  msgid "In days and hours (applies only to custom option above)"
976
  msgstr ""
977
 
978
+ #: includes/class-top-10-widget.php:88
979
  msgid "days"
980
  msgstr ""
981
 
982
+ #: includes/class-top-10-widget.php:91
983
  msgid "hours"
984
  msgstr ""
985
 
986
+ #: includes/class-top-10-widget.php:96
987
  msgid "Show count?"
988
  msgstr ""
989
 
990
+ #: includes/class-top-10-widget.php:101
991
  msgid "Show excerpt?"
992
  msgstr ""
993
 
994
+ #: includes/class-top-10-widget.php:106
995
  msgid "Show author?"
996
  msgstr ""
997
 
998
+ #: includes/class-top-10-widget.php:111
999
  msgid "Show date?"
1000
  msgstr ""
1001
 
1002
+ #: includes/class-top-10-widget.php:117
1003
  msgid "Thumbnails inline, before title"
1004
  msgstr ""
1005
 
1006
+ #: includes/class-top-10-widget.php:118
1007
  msgid "Thumbnails inline, after title"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-top-10-widget.php:119
1011
  msgid "Only thumbnails, no text"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-top-10-widget.php:120
1015
  msgid "No thumbnails, only text."
1016
  msgstr ""
1017
 
1018
+ #: includes/class-top-10-widget.php:125
1019
  msgid "Thumbnail height"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-top-10-widget.php:131
1023
  msgid "Thumbnail width"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-top-10-widget.php:136
1027
+ msgid "Post types to include:"
1028
+ msgstr ""
1029
+
1030
+ #: top-10.php:756
1031
  msgid " by "
1032
  msgstr ""
1033
 
1034
+ #: top-10.php:823
1035
  #, php-format
1036
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1037
  msgstr ""
1038
 
1039
+ #: top-10.php:1113
1040
  msgid "<h3>Popular Posts</h3>"
1041
  msgstr ""
1042
 
1043
+ #: top-10.php:1114
1044
  msgid "<h3>Daily Popular</h3>"
1045
  msgstr ""
1046
 
1047
+ #: top-10.php:1115
1048
  msgid "No top posts yet"
1049
  msgstr ""
1050
 
1051
+ #: top-10.php:1507
1052
+ msgid "thumb_timthumb argument has been deprecated"
1053
+ msgstr ""
1054
+
1055
+ #: top-10.php:1511
1056
+ msgid "thumb_timthumb_q argument has been deprecated"
1057
+ msgstr ""
1058
+
1059
+ #: top-10.php:1515
1060
+ msgid "filter argument has been deprecated"
1061
+ msgstr ""
1062
+
1063
+ #: top-10.php:1853
1064
  msgid "Once Weekly"
1065
  msgstr ""
1066
 
1067
+ #: top-10.php:1857
1068
  msgid "Once Fortnightly"
1069
  msgstr ""
1070
 
1071
+ #: top-10.php:1861
1072
  msgid "Once Monthly"
1073
  msgstr ""
1074
 
1075
+ #: top-10.php:1865
1076
  msgid "Once quarterly"
1077
  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: 2015-01-03 01:53-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"
@@ -62,7 +62,7 @@ msgstr "Precedentes"
62
  msgid "Next"
63
  msgstr "Siguientes"
64
 
65
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
66
  msgid "Popular Posts"
67
  msgstr "Los posts más populares"
68
 
@@ -70,7 +70,7 @@ msgstr "Los posts más populares"
70
  msgid "Daily Popular"
71
  msgstr "Diario Populares"
72
 
73
- #: admin/admin-metabox.php:38 admin/admin.php:1263
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
@@ -100,125 +100,135 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Configuraciones guardadas con éxito"
106
 
107
- #: admin/admin.php:173
 
 
 
 
 
 
108
  msgid "Options set to Default."
109
  msgstr "Los parametros se configuran de manera predeterminada"
110
 
111
- #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reiniciar el Top de los 10 posts más populares"
114
 
115
- #: admin/admin.php:185
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Los ajustes"
145
 
146
- #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:295 admin/admin.php:706
159
- #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Los parámetros del thumbnail:"
163
 
164
- #: admin/admin.php:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
- #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
- #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
- #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:345
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
- #: admin/admin.php:352
203
  msgid ""
204
  "Daily counter will display number of visits from midnight. This option is "
205
  "checked by default and mimics the way most normal counters work. Turning "
206
  "this off will allow you to use the hourly setting in the next option."
207
  msgstr ""
208
 
209
- #: admin/admin.php:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
- #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
- #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
- #: admin/admin.php:360
222
  msgid ""
223
  "Think of Daily Popular has a custom date range applied as a global setting. "
224
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -226,37 +236,37 @@ msgid ""
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
- #: admin/admin.php:364
230
  msgid "Delete options on uninstall"
231
  msgstr ""
232
 
233
- #: admin/admin.php:367
234
  msgid ""
235
  "If this is checked, all settings related to Top 10 are removed from the "
236
  "database if you choose to uninstall/delete the plugin."
237
  msgstr ""
238
 
239
- #: admin/admin.php:371
240
  msgid "Delete counter data on uninstall"
241
  msgstr ""
242
 
243
- #: admin/admin.php:374
244
  msgid ""
245
  "If this is checked, the tables containing the counter statistics are removed "
246
  "from the database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
- #: admin/admin.php:375
250
  msgid ""
251
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
  "lose your counter data."
253
  msgstr ""
254
 
255
- #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr ""
258
 
259
- #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -266,59 +276,59 @@ msgstr ""
266
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
267
  "agradeceríamos al hacerlo!"
268
 
269
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Los parametros"
274
 
275
- #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
279
 
280
- #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr ""
283
 
284
- #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "La página"
288
 
289
- #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr ""
292
 
293
- #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr ""
296
 
297
- #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr ""
300
 
301
- #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr ""
304
 
305
- #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr ""
308
 
309
- #: admin/admin.php:431
310
  msgid ""
311
  "If you choose to disable this, please add <code>&lt;?php if "
312
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
313
  "</code> to your template file where you want it displayed"
314
  msgstr ""
315
 
316
- #: admin/admin.php:435
317
  #, fuzzy
318
  msgid "Format to display the post views:"
319
  msgstr "El formato de visualización de la cuenta: "
320
 
321
- #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -326,11 +336,11 @@ msgid ""
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
- #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
- #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -338,311 +348,301 @@ msgid ""
338
  "option."
339
  msgstr ""
340
 
341
- #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
- #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
- #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
355
 
356
- #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
- #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
365
 
366
- #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
- #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
374
 
375
- #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
- #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
- #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
- #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "¿Mostrar el número de accesos a las páginas?"
393
 
394
- #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
- #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Mostrar el número de posts más populares"
403
 
404
- #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
- #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
- #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
- #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
- #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Excluir las Categorías"
425
 
426
- #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
- #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "El título de los posts más populares"
436
 
437
- #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "El título de los posts diarios más populares"
440
 
441
- #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
- #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
- #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "¿Mostrar un fragmento del post en la lista?"
456
 
457
- #: admin/admin.php:603
 
 
 
 
 
458
  msgid "Length of excerpt (in words): "
459
  msgstr "La longitud del fragmento(en palabras):"
460
 
461
- #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "¿Mostrar un fragmento del post en la lista?"
465
 
466
- #: admin/admin.php:615
 
 
 
 
 
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "¿Mostrar un fragmento del post en la lista?"
470
 
471
- #: admin/admin.php:621
 
 
 
 
 
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
- #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "¿Mostrar un fragmento del post en la lista?"
479
 
480
- #: admin/admin.php:633
481
- msgid "Always display latest post count in the daily lists?"
482
- msgstr ""
483
-
484
- #: admin/admin.php:636
485
- msgid ""
486
- "This option uses JavaScript and will increase your page load time. When you "
487
- "enable this option, the daily widget will not use the options set there, but "
488
- "options will need to be set on this screen."
489
- msgstr ""
490
-
491
- #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
- #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
- #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
- #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Personalizar el resultado:"
507
 
508
- #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML mostrar antes de la lista de posts:"
511
 
512
- #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML mostrar ante cada elemento de la lista:"
515
 
516
- #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML mostrar después de cada elemento de la lista:"
519
 
520
- #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML mostrar después de la lista de posts:"
523
 
524
- #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
- #: admin/admin.php:725
529
  msgid "Display thumbnails inline with posts, before title"
530
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
531
 
532
- #: admin/admin.php:730
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
535
 
536
- #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Mostrar solamente thumbnails, no el texto"
539
 
540
- #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "No mostrar thumbnails, sólo el texto"
543
 
544
- #: admin/admin.php:744
 
 
 
 
 
 
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
- #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
- #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
569
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
570
- "regenerate all image sizes."
571
  msgstr ""
572
 
573
- #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
- #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
- #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
- #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
- #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
- #: admin/admin.php:793
597
  msgid ""
598
- "Since you're using the default styles set under the Custom Styles section, "
599
- "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
- #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
- #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
- #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
- #: admin/admin.php:811
615
- msgid "Use timthumb to generate thumbnails? "
616
- msgstr ""
617
-
618
- #: admin/admin.php:814
619
- msgid ""
620
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
- msgstr ""
623
-
624
- #: admin/admin.php:817
625
- msgid "Quality of thumbnails generated by timthumb:"
626
- msgstr ""
627
-
628
- #: admin/admin.php:820
629
- msgid ""
630
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
- "file size. Suggested maximum value is 95. Default is 75."
632
- msgstr ""
633
-
634
- #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Los parámetros del thumbnail:"
638
 
639
- #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
- #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -653,7 +653,7 @@ msgstr ""
653
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
654
  "tamaño de archivo "
655
 
656
- #: admin/admin.php:832
657
  #, fuzzy
658
  msgid ""
659
  "This could slow down the loading of your page if the first image in the "
@@ -664,11 +664,11 @@ msgstr ""
664
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
665
  "tamaño de archivo "
666
 
667
- #: admin/admin.php:835
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
- #: admin/admin.php:838
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -678,65 +678,65 @@ msgstr ""
678
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
679
  "hay que mostrarla."
680
 
681
- #: admin/admin.php:841
682
  msgid "Default thumbnail: "
683
  msgstr ""
684
 
685
- #: admin/admin.php:845
686
  msgid ""
687
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
688
  "then it will check the meta field. If this is not available, then it will "
689
  "show the default image as specified above"
690
  msgstr ""
691
 
692
- #: admin/admin.php:869
693
  msgid "Custom CSS"
694
  msgstr ""
695
 
696
- #: admin/admin.php:884
697
  msgid "Use default style included in the plugin?"
698
  msgstr ""
699
 
700
- #: admin/admin.php:887
701
  msgid ""
702
  "Top 10 includes a default style that makes your popular posts list to look "
703
  "beautiful. Check the box above if you want to use this."
704
  msgstr ""
705
 
706
- #: admin/admin.php:888
707
  msgid ""
708
  "Enabling this option will turn on the thumbnails and set their width and "
709
  "height to 65px. It will also turn off the display of the author, excerpt and "
710
  "date if already enabled. Disabling this option will not revert any settings."
711
  msgstr ""
712
 
713
- #: admin/admin.php:889
714
  #, php-format
715
  msgid ""
716
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
717
  msgstr ""
718
 
719
- #: admin/admin.php:892
720
  msgid "Custom CSS to add to header:"
721
  msgstr ""
722
 
723
- #: admin/admin.php:897
724
  msgid ""
725
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
727
  "available CSS classes to style."
728
  msgstr ""
729
 
730
- #: admin/admin.php:917
731
  #, fuzzy
732
  msgid "Default Options"
733
  msgstr "Los Parámetros Resultantes"
734
 
735
- #: admin/admin.php:917
736
  msgid "Do you want to set options to Default?"
737
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
738
 
739
- #: admin/admin.php:941
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
742
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -744,65 +744,65 @@ msgid ""
744
  "will automatically delete entries older than 90 days."
745
  msgstr ""
746
 
747
- #: admin/admin.php:942
748
  msgid ""
749
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
750
  "everytime the job is rescheduled (i.e. you change the settings below)."
751
  msgstr ""
752
 
753
- #: admin/admin.php:945
754
  msgid "Enable scheduled maintenance of daily tables:"
755
  msgstr ""
756
 
757
- #: admin/admin.php:949
758
  msgid "Time to run maintenance"
759
  msgstr ""
760
 
761
- #: admin/admin.php:950
762
  msgid "hrs"
763
  msgstr ""
764
 
765
- #: admin/admin.php:950
766
  msgid "min"
767
  msgstr ""
768
 
769
- #: admin/admin.php:952
770
  msgid "How often should the maintenance be run:"
771
  msgstr ""
772
 
773
- #: admin/admin.php:956
774
  msgid "Daily"
775
  msgstr ""
776
 
777
- #: admin/admin.php:960
778
  msgid "Weekly"
779
  msgstr ""
780
 
781
- #: admin/admin.php:964
782
  msgid "Fortnightly"
783
  msgstr ""
784
 
785
- #: admin/admin.php:968
786
  msgid "Monthly"
787
  msgstr ""
788
 
789
- #: admin/admin.php:977
790
  msgid "The cron job has been scheduled. Maintenance will run "
791
  msgstr ""
792
 
793
- #: admin/admin.php:982
794
  msgid "The cron job is missing. Please resave this page to add the job"
795
  msgstr ""
796
 
797
- #: admin/admin.php:987
798
  msgid "Maintenance is turned off"
799
  msgstr ""
800
 
801
- #: admin/admin.php:1001
802
- msgid "Reset count"
803
- msgstr "Reiniciar los ajustes"
804
 
805
- #: admin/admin.php:1004
806
  msgid ""
807
  "This cannot be reversed. Make sure that your database has been backed up "
808
  "before proceeding"
@@ -810,168 +810,186 @@ msgstr ""
810
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
811
  "sido creada una copia de seguridad para su base de datos."
812
 
813
- #: admin/admin.php:1007
814
  #, fuzzy
815
  msgid "Reset Popular Posts"
816
  msgstr "Los posts más populares"
817
 
818
- #: admin/admin.php:1007
819
  msgid "Are you sure you want to reset the popular posts?"
820
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
821
 
822
- #: admin/admin.php:1008
823
  #, fuzzy
824
  msgid "Reset Daily Popular Posts"
825
  msgstr "Los posts diarios más populares"
826
 
827
- #: admin/admin.php:1008
828
  msgid "Are you sure you want to reset the daily popular posts?"
829
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
830
 
831
- #: admin/admin.php:1009
832
- msgid "Clear duplicates"
 
 
 
 
833
  msgstr ""
834
 
835
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
836
  msgid "This will delete the duplicate entries in the tables. Proceed?"
837
  msgstr ""
838
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
839
 
840
- #: admin/admin.php:1022
841
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
842
  msgstr ""
843
 
844
- #: admin/admin.php:1025
845
  msgid ""
846
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
847
  "activate the plugin independently for each site. This would have resulted in "
848
  "two tables being created for each site in the network."
849
  msgstr ""
850
 
851
- #: admin/admin.php:1026
852
  msgid ""
853
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
854
  "your database clean. You can use this tool to import the recorded counts "
855
  "from v1.x tables to the new v2.x table format."
856
  msgstr ""
857
 
858
- #: admin/admin.php:1029
859
  msgid ""
860
  "If you do not see any tables below, then it means that either all data has "
861
  "already been imported or no relevant information has been found."
862
  msgstr ""
863
 
864
- #: admin/admin.php:1032
865
  msgid ""
866
  "After running the importer, please verify that all the counts have been "
867
  "successfully imported. Only then should you delete any old tables!"
868
  msgstr ""
869
 
870
- #: admin/admin.php:1066
871
  msgid "Blog ID"
872
  msgstr ""
873
 
874
- #: admin/admin.php:1069
875
  msgid "Status"
876
  msgstr ""
877
 
878
- #: admin/admin.php:1072
879
  msgid "Select to import"
880
  msgstr ""
881
 
882
- #: admin/admin.php:1082
883
  msgid "Blog #"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1092
887
  msgid "Not imported"
888
  msgstr ""
889
 
890
- #: admin/admin.php:1096
891
  msgid "Imported"
892
  msgstr ""
893
 
894
- #: admin/admin.php:1117
895
  msgid "Begin import"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1118
899
  msgid "Delete selected tables"
900
  msgstr ""
901
 
902
- #: admin/admin.php:1119
903
  msgid "Delete all imported tables"
904
  msgstr ""
905
 
906
- #: admin/admin.php:1176 admin/admin.php:1272
907
  msgid "Daily Popular Posts"
908
  msgstr "Los posts diarios más populares"
909
 
910
- #: admin/admin.php:1206
911
  msgid "Support the development"
912
  msgstr "Apoyar al elaborador"
913
 
914
- #: admin/admin.php:1213
915
  msgid "Donation for Top 10"
916
  msgstr ""
917
 
918
- #: admin/admin.php:1215
919
  msgid "Enter amount in USD: "
920
  msgstr "Ingresar las cifras en USD"
921
 
922
- #: admin/admin.php:1219
923
  #, fuzzy
924
  msgid "Send your donation to the author of Top 10"
925
  msgstr "Enviar su subvención al autor"
926
 
927
- #: admin/admin.php:1226
928
  msgid "Follow me"
929
  msgstr ""
930
 
931
- #: admin/admin.php:1236
932
  #, fuzzy
933
  msgid "Quick links"
934
  msgstr "Enlaces rápidos"
935
 
936
- #: admin/admin.php:1240
937
  #, fuzzy
938
  msgid "Top 10 plugin page"
939
  msgstr "página plugin"
940
 
941
- #: admin/admin.php:1241
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
- #: admin/admin.php:1242
946
  msgid "Other plugins"
947
  msgstr "Otros plugins"
948
 
949
- #: admin/admin.php:1243
950
  msgid "Ajay's blog"
951
  msgstr "Blog de Ajay"
952
 
953
- #: admin/admin.php:1244
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
- #: admin/admin.php:1245 admin/admin.php:1403
958
  msgid "Support"
959
  msgstr "Apoyo"
960
 
961
- #: admin/admin.php:1246
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
- #: admin/admin.php:1269
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Ver los posts más populares"
969
 
970
- #: admin/admin.php:1380
971
  msgid "Settings"
972
  msgstr "Los ajustes"
973
 
974
- #: admin/admin.php:1404
975
  msgid "Donate"
976
  msgstr "Subvencionar"
977
 
@@ -985,122 +1003,141 @@ msgstr "Los posts más populares"
985
  msgid "Display popular posts"
986
  msgstr "Los posts diarios más populares"
987
 
988
- #: includes/class-top-10-widget.php:59
989
  msgid "Title"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:64
993
  msgid "No. of posts"
994
  msgstr ""
995
 
996
- #: includes/class-top-10-widget.php:69
997
  msgid "Overall"
998
  msgstr ""
999
 
1000
- #: includes/class-top-10-widget.php:70
1001
  msgid "Custom time period (Enter below)"
1002
  msgstr ""
1003
 
1004
- #: includes/class-top-10-widget.php:74
1005
  msgid "In days and hours (applies only to custom option above)"
1006
  msgstr ""
1007
 
1008
- #: includes/class-top-10-widget.php:76
1009
  msgid "days"
1010
  msgstr ""
1011
 
1012
- #: includes/class-top-10-widget.php:79
1013
  msgid "hours"
1014
  msgstr ""
1015
 
1016
- #: includes/class-top-10-widget.php:84
1017
  #, fuzzy
1018
  msgid "Show count?"
1019
  msgstr "¿Mostrar un fragmento del post en la lista?"
1020
 
1021
- #: includes/class-top-10-widget.php:89
1022
  #, fuzzy
1023
  msgid "Show excerpt?"
1024
  msgstr "¿Mostrar un fragmento del post en la lista?"
1025
 
1026
- #: includes/class-top-10-widget.php:94
1027
  #, fuzzy
1028
  msgid "Show author?"
1029
  msgstr "¿Mostrar un fragmento del post en la lista?"
1030
 
1031
- #: includes/class-top-10-widget.php:99
1032
  #, fuzzy
1033
  msgid "Show date?"
1034
  msgstr "¿Mostrar un fragmento del post en la lista?"
1035
 
1036
- #: includes/class-top-10-widget.php:105
1037
  #, fuzzy
1038
  msgid "Thumbnails inline, before title"
1039
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
1040
 
1041
- #: includes/class-top-10-widget.php:106
1042
  #, fuzzy
1043
  msgid "Thumbnails inline, after title"
1044
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
1045
 
1046
- #: includes/class-top-10-widget.php:107
1047
  #, fuzzy
1048
  msgid "Only thumbnails, no text"
1049
  msgstr "Mostrar solamente thumbnails, no el texto"
1050
 
1051
- #: includes/class-top-10-widget.php:108
1052
  #, fuzzy
1053
  msgid "No thumbnails, only text."
1054
  msgstr "No mostrar thumbnails, sólo el texto"
1055
 
1056
- #: includes/class-top-10-widget.php:113
1057
  #, fuzzy
1058
  msgid "Thumbnail height"
1059
  msgstr "Los parámetros del thumbnail:"
1060
 
1061
- #: includes/class-top-10-widget.php:118
1062
  #, fuzzy
1063
  msgid "Thumbnail width"
1064
  msgstr "Los parámetros del thumbnail:"
1065
 
1066
- #: top-10.php:879
 
 
 
 
1067
  msgid " by "
1068
  msgstr ""
1069
 
1070
- #: top-10.php:930
1071
  #, php-format
1072
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1073
  msgstr ""
1074
 
1075
- #: top-10.php:1029
1076
  msgid "<h3>Popular Posts</h3>"
1077
  msgstr "Los posts populares"
1078
 
1079
- #: top-10.php:1030
1080
  msgid "<h3>Daily Popular</h3>"
1081
  msgstr "Diario Populares"
1082
 
1083
- #: top-10.php:1031
1084
  #, fuzzy
1085
  msgid "No top posts yet"
1086
  msgstr "Reiniciar el Top de los 10 posts más populares"
1087
 
1088
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1089
  msgid "Once Weekly"
1090
  msgstr ""
1091
 
1092
- #: top-10.php:1694
1093
  msgid "Once Fortnightly"
1094
  msgstr ""
1095
 
1096
- #: top-10.php:1698
1097
  msgid "Once Monthly"
1098
  msgstr ""
1099
 
1100
- #: top-10.php:1702
1101
  msgid "Once quarterly"
1102
  msgstr ""
1103
 
 
 
 
1104
  #~ msgid "Daily Popular should contain views of how many days? "
1105
  #~ msgstr ""
1106
  #~ "Los post diarios más populares deben contener el número de visitas al día"
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
62
  msgid "Next"
63
  msgstr "Siguientes"
64
 
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
66
  msgid "Popular Posts"
67
  msgstr "Los posts más populares"
68
 
70
  msgid "Daily Popular"
71
  msgstr "Diario Populares"
72
 
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:171
104
  msgid "Options saved successfully."
105
  msgstr "Configuraciones guardadas con éxito"
106
 
107
+ #: admin/admin.php:174
108
+ msgid ""
109
+ "Default styles selected. Thumbnail width, height and crop settings have been "
110
+ "fixed. Author, Excerpt and Date will not be displayed."
111
+ msgstr ""
112
+
113
+ #: admin/admin.php:190
114
  msgid "Options set to Default."
115
  msgstr "Los parametros se configuran de manera predeterminada"
116
 
117
+ #: admin/admin.php:197
118
  msgid "Top 10 popular posts reset"
119
  msgstr "Reiniciar el Top de los 10 posts más populares"
120
 
121
+ #: admin/admin.php:204
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr ""
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid ""
147
  "Selected tables have been deleted. Note that only imported tables have been "
148
  "deleted."
149
  msgstr ""
150
 
151
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
152
  #, fuzzy
153
  msgid "Top 10 Settings"
154
  msgstr "Los ajustes"
155
 
156
+ #: admin/admin.php:321 admin/admin.php:343
157
  msgid "General options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:322 admin/admin.php:435
161
  msgid "Counter and tracker options"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:323 admin/admin.php:540
165
  msgid "Popular post list options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:324 admin/admin.php:742
169
+ #: includes/class-top-10-widget.php:115
170
  #, fuzzy
171
  msgid "Thumbnail options"
172
  msgstr "Los parámetros del thumbnail:"
173
 
174
+ #: admin/admin.php:325
175
  msgid "Custom styles"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:326 admin/admin.php:966
179
  msgid "Maintenance"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
183
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
184
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
185
+ #: admin/admin.php:1269 admin/admin.php:1279
186
  msgid "Click to toggle"
187
  msgstr ""
188
 
189
+ #: admin/admin.php:359
190
  msgid "Enable Overall stats"
191
  msgstr ""
192
 
193
+ #: admin/admin.php:365
194
  msgid "Enable Daily stats"
195
  msgstr ""
196
 
197
+ #: admin/admin.php:371
198
  msgid "Cache fix:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:374
202
  msgid ""
203
  "This will try to prevent W3 Total Cache and other caching plugins from "
204
  "caching the tracker script of the plugin. Try toggling this option in case "
205
  "you find that your posts are not tracked."
206
  msgstr ""
207
 
208
+ #: admin/admin.php:378
209
  msgid "Start daily counts from midnight:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:381
213
  msgid ""
214
  "Daily counter will display number of visits from midnight. This option is "
215
  "checked by default and mimics the way most normal counters work. Turning "
216
  "this off will allow you to use the hourly setting in the next option."
217
  msgstr ""
218
 
219
+ #: admin/admin.php:385
220
  msgid "Daily popular contains top posts over:"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:387
224
  msgid "day(s)"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:388
228
  msgid "hour(s)"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:389
232
  msgid ""
233
  "Think of Daily Popular has a custom date range applied as a global setting. "
234
  "Instead of displaying popular posts from the past day, this setting lets you "
236
  "overridden in the widget."
237
  msgstr ""
238
 
239
+ #: admin/admin.php:393
240
  msgid "Delete options on uninstall"
241
  msgstr ""
242
 
243
+ #: admin/admin.php:396
244
  msgid ""
245
  "If this is checked, all settings related to Top 10 are removed from the "
246
  "database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
+ #: admin/admin.php:400
250
  msgid "Delete counter data on uninstall"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:403
254
  msgid ""
255
  "If this is checked, the tables containing the counter statistics are removed "
256
  "from the database if you choose to uninstall/delete the plugin."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:404
260
  msgid ""
261
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
262
  "lose your counter data."
263
  msgstr ""
264
 
265
+ #: admin/admin.php:408
266
  msgid "Link to Top 10 plugin page"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  #, fuzzy
271
  msgid ""
272
  "A link to the plugin is added as an extra list item to the list of popular "
276
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
277
  "agradeceríamos al hacerlo!"
278
 
279
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
280
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
281
  #, fuzzy
282
  msgid "Save Options"
283
  msgstr "Los parametros"
284
 
285
+ #: admin/admin.php:451
286
  #, fuzzy
287
  msgid "Display number of views on:"
288
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
289
 
290
+ #: admin/admin.php:453
291
  msgid "Posts"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:454
295
  #, fuzzy
296
  msgid "Pages"
297
  msgstr "La página"
298
 
299
+ #: admin/admin.php:455
300
  msgid "Home page"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:456
304
  msgid "Feeds"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:457
308
  msgid "Category archives"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:458
312
  msgid "Tag archives"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:459
316
  msgid "Other archives"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:460
320
  msgid ""
321
  "If you choose to disable this, please add <code>&lt;?php if "
322
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
323
  "</code> to your template file where you want it displayed"
324
  msgstr ""
325
 
326
+ #: admin/admin.php:464
327
  #, fuzzy
328
  msgid "Format to display the post views:"
329
  msgstr "El formato de visualización de la cuenta: "
330
 
331
+ #: admin/admin.php:467
332
  msgid ""
333
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
334
  "%</code> to display the daily count and <code>%overallcount%</code> to "
336
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:471
340
  msgid "What do display when there are no visits?"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:474
344
  msgid ""
345
  "This text applies only when there are 0 hits for the post and it isn't a "
346
  "single page. e.g. if you display post views on the homepage or archives then "
348
  "option."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:478
352
  msgid "Always display latest post count"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:481
356
  msgid ""
357
  "This option uses JavaScript and will increase your page load time. Turn this "
358
  "off if you are not using caching plugins or are OK with displaying older "
359
  "cached counts."
360
  msgstr ""
361
 
362
+ #: admin/admin.php:485
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
365
 
366
+ #: admin/admin.php:488
367
  msgid ""
368
  "Disabling this option will stop authors visits tracked on their own posts"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:492
372
  #, fuzzy
373
  msgid "Track visits of admins?"
374
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
375
 
376
+ #: admin/admin.php:495
377
  msgid "Disabling this option will stop admin visits being tracked."
378
  msgstr ""
379
 
380
+ #: admin/admin.php:499
381
  #, fuzzy
382
  msgid "Track visits of Editors?"
383
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
384
 
385
+ #: admin/admin.php:502
386
  msgid "Disabling this option will stop editor visits being tracked."
387
  msgstr ""
388
 
389
+ #: admin/admin.php:506
390
  msgid "Display page views on Posts and Pages in Admin"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:509
394
  msgid ""
395
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
396
  "and All Pages"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:513
400
  #, fuzzy
401
  msgid "Show number of views to non-admins"
402
  msgstr "¿Mostrar el número de accesos a las páginas?"
403
 
404
+ #: admin/admin.php:516
405
  msgid ""
406
  "If you disable this then non-admins won't see the above columns or view the "
407
  "independent pages with the top posts"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:556
411
  msgid "Number of popular posts to display: "
412
  msgstr "Mostrar el número de posts más populares"
413
 
414
+ #: admin/admin.php:559
415
  msgid ""
416
  "Maximum number of posts that will be displayed in the list. This option is "
417
  "used if you don't specify the number of posts in the widget or shortcodes"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:563
421
  msgid "Post types to include in results (including custom post types)"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:577
425
  msgid "List of post or page IDs to exclude from the results: "
426
  msgstr ""
427
 
428
+ #: admin/admin.php:579 admin/admin.php:691
429
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:583
433
  msgid "Exclude Categories: "
434
  msgstr "Excluir las Categorías"
435
 
436
+ #: admin/admin.php:598
437
  msgid ""
438
  "Comma separated list of category slugs. The field above has an autocomplete "
439
  "so simply start typing in the starting letters and it will prompt you with "
440
  "options"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:603
444
  msgid "Title of popular posts: "
445
  msgstr "El título de los posts más populares"
446
 
447
+ #: admin/admin.php:609
448
  msgid "Title of daily popular posts: "
449
  msgstr "El título de los posts diarios más populares"
450
 
451
+ #: admin/admin.php:615
452
  msgid "When there are no posts, what should be shown?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:619
456
  msgid "Blank Output"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:623
460
  msgid "Display:"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:628
464
  msgid "Show post excerpt in list?"
465
  msgstr "¿Mostrar un fragmento del post en la lista?"
466
 
467
+ #: admin/admin.php:633
468
+ msgid ""
469
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
470
+ msgstr ""
471
+
472
+ #: admin/admin.php:638
473
  msgid "Length of excerpt (in words): "
474
  msgstr "La longitud del fragmento(en palabras):"
475
 
476
+ #: admin/admin.php:644
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "¿Mostrar un fragmento del post en la lista?"
480
 
481
+ #: admin/admin.php:649
482
+ msgid ""
483
+ "Default style selected under the Custom Styles. Author display is disabled."
484
+ msgstr ""
485
+
486
+ #: admin/admin.php:654
487
  #, fuzzy
488
  msgid "Show post date in list?"
489
  msgstr "¿Mostrar un fragmento del post en la lista?"
490
 
491
+ #: admin/admin.php:659
492
+ msgid ""
493
+ "Default style selected under the Custom Styles. Date display is disabled."
494
+ msgstr ""
495
+
496
+ #: admin/admin.php:664
497
  msgid "Limit post title length (in characters)"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:670
501
  #, fuzzy
502
  msgid "Show view count in list?"
503
  msgstr "¿Mostrar un fragmento del post en la lista?"
504
 
505
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "Open links in new window"
507
  msgstr ""
508
 
509
+ #: admin/admin.php:682
510
  msgid "Add nofollow attribute to links in the list"
511
  msgstr ""
512
 
513
+ #: admin/admin.php:688
514
  msgid "Exclude display of related posts on these posts / pages"
515
  msgstr ""
516
 
517
+ #: admin/admin.php:695
518
  #, fuzzy
519
  msgid "Customise the list HTML"
520
  msgstr "Personalizar el resultado:"
521
 
522
+ #: admin/admin.php:698
523
  msgid "HTML to display before the list of posts: "
524
  msgstr "HTML mostrar antes de la lista de posts:"
525
 
526
+ #: admin/admin.php:704
527
  msgid "HTML to display before each list item: "
528
  msgstr "HTML mostrar ante cada elemento de la lista:"
529
 
530
+ #: admin/admin.php:710
531
  msgid "HTML to display after each list item: "
532
  msgstr "HTML mostrar después de cada elemento de la lista:"
533
 
534
+ #: admin/admin.php:716
535
  msgid "HTML to display after the list of posts: "
536
  msgstr "HTML mostrar después de la lista de posts:"
537
 
538
+ #: admin/admin.php:757
539
  msgid "Location of post thumbnail:"
540
  msgstr ""
541
 
542
+ #: admin/admin.php:761
543
  msgid "Display thumbnails inline with posts, before title"
544
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
545
 
546
+ #: admin/admin.php:766
547
  msgid "Display thumbnails inline with posts, after title"
548
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
549
 
550
+ #: admin/admin.php:771
551
  msgid "Display only thumbnails, no text"
552
  msgstr "Mostrar solamente thumbnails, no el texto"
553
 
554
+ #: admin/admin.php:776
555
  msgid "Do not display thumbnails, only text."
556
  msgstr "No mostrar thumbnails, sólo el texto"
557
 
558
+ #: admin/admin.php:780
559
+ msgid ""
560
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
561
+ "to be inline before title"
562
+ msgstr ""
563
+
564
+ #: admin/admin.php:784
565
  msgid "Thumbnail size:"
566
  msgstr ""
567
 
568
+ #: admin/admin.php:808
569
  msgid "Custom size"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:811
573
  msgid ""
574
  "You can choose from existing image sizes above or create a custom size. If "
575
  "you have chosen Custom size above, then enter the width, height and crop "
576
  "settings below. For best results, use a cropped image."
577
  msgstr ""
578
 
579
+ #: admin/admin.php:812
580
  msgid ""
581
  "If you change the width and/or height below, existing images will not be "
582
  "automatically resized."
583
  msgstr ""
584
 
585
+ #: admin/admin.php:813
586
  #, php-format
587
  msgid ""
588
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
589
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
590
+ "all image sizes."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:816
594
  msgid "Width of custom thumbnail:"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:821
598
  msgid "Height of custom thumbnail"
599
  msgstr ""
600
 
601
+ #: admin/admin.php:826
602
  msgid "Crop mode:"
603
  msgstr ""
604
 
605
+ #: admin/admin.php:830
606
  msgid ""
607
  "By default, thumbnails will be proportionately cropped. Check this box to "
608
  "hard crop the thumbnails."
609
  msgstr ""
610
 
611
+ #: admin/admin.php:831
612
  #, php-format
613
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
614
  msgstr ""
615
 
616
+ #: admin/admin.php:834
617
  msgid ""
618
+ "Default style selected under the Custom Styles. Thumbnail width and height "
619
+ "is fixed at 65px and crop mode is enabled."
620
  msgstr ""
621
 
622
+ #: admin/admin.php:839
623
  msgid "Style attributes / Width and Height HTML attributes:"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:843
627
  msgid "Style attributes are used for width and height."
628
  msgstr ""
629
 
630
+ #: admin/admin.php:848
631
  msgid "HTML width and height attributes are used for width and height."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Los parámetros del thumbnail:"
638
 
639
+ #: admin/admin.php:855
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:858
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
653
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
654
  "tamaño de archivo "
655
 
656
+ #: admin/admin.php:861
657
  #, fuzzy
658
  msgid ""
659
  "This could slow down the loading of your page if the first image in the "
664
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
665
  "tamaño de archivo "
666
 
667
+ #: admin/admin.php:864
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
+ #: admin/admin.php:867
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
678
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
679
  "hay que mostrarla."
680
 
681
+ #: admin/admin.php:870
682
  msgid "Default thumbnail: "
683
  msgstr ""
684
 
685
+ #: admin/admin.php:874
686
  msgid ""
687
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
688
  "then it will check the meta field. If this is not available, then it will "
689
  "show the default image as specified above"
690
  msgstr ""
691
 
692
+ #: admin/admin.php:898
693
  msgid "Custom CSS"
694
  msgstr ""
695
 
696
+ #: admin/admin.php:913
697
  msgid "Use default style included in the plugin?"
698
  msgstr ""
699
 
700
+ #: admin/admin.php:916
701
  msgid ""
702
  "Top 10 includes a default style that makes your popular posts list to look "
703
  "beautiful. Check the box above if you want to use this."
704
  msgstr ""
705
 
706
+ #: admin/admin.php:917
707
  msgid ""
708
  "Enabling this option will turn on the thumbnails and set their width and "
709
  "height to 65px. It will also turn off the display of the author, excerpt and "
710
  "date if already enabled. Disabling this option will not revert any settings."
711
  msgstr ""
712
 
713
+ #: admin/admin.php:918
714
  #, php-format
715
  msgid ""
716
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
717
  msgstr ""
718
 
719
+ #: admin/admin.php:921
720
  msgid "Custom CSS to add to header:"
721
  msgstr ""
722
 
723
+ #: admin/admin.php:926
724
  msgid ""
725
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
727
  "available CSS classes to style."
728
  msgstr ""
729
 
730
+ #: admin/admin.php:946
731
  #, fuzzy
732
  msgid "Default Options"
733
  msgstr "Los Parámetros Resultantes"
734
 
735
+ #: admin/admin.php:946
736
  msgid "Do you want to set options to Default?"
737
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
738
 
739
+ #: admin/admin.php:970
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
742
  "performance of the plugin. Cleaning the database at regular intervals could "
744
  "will automatically delete entries older than 90 days."
745
  msgstr ""
746
 
747
+ #: admin/admin.php:971
748
  msgid ""
749
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
750
  "everytime the job is rescheduled (i.e. you change the settings below)."
751
  msgstr ""
752
 
753
+ #: admin/admin.php:974
754
  msgid "Enable scheduled maintenance of daily tables:"
755
  msgstr ""
756
 
757
+ #: admin/admin.php:978
758
  msgid "Time to run maintenance"
759
  msgstr ""
760
 
761
+ #: admin/admin.php:979
762
  msgid "hrs"
763
  msgstr ""
764
 
765
+ #: admin/admin.php:979
766
  msgid "min"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:981
770
  msgid "How often should the maintenance be run:"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:985
774
  msgid "Daily"
775
  msgstr ""
776
 
777
+ #: admin/admin.php:989
778
  msgid "Weekly"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:993
782
  msgid "Fortnightly"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:997
786
  msgid "Monthly"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:1006
790
  msgid "The cron job has been scheduled. Maintenance will run "
791
  msgstr ""
792
 
793
+ #: admin/admin.php:1011
794
  msgid "The cron job is missing. Please resave this page to add the job"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:1016
798
  msgid "Maintenance is turned off"
799
  msgstr ""
800
 
801
+ #: admin/admin.php:1030
802
+ msgid "Reset count and other tools"
803
+ msgstr ""
804
 
805
+ #: admin/admin.php:1033
806
  msgid ""
807
  "This cannot be reversed. Make sure that your database has been backed up "
808
  "before proceeding"
810
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
811
  "sido creada una copia de seguridad para su base de datos."
812
 
813
+ #: admin/admin.php:1036
814
  #, fuzzy
815
  msgid "Reset Popular Posts"
816
  msgstr "Los posts más populares"
817
 
818
+ #: admin/admin.php:1036
819
  msgid "Are you sure you want to reset the popular posts?"
820
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
821
 
822
+ #: admin/admin.php:1037
823
  #, fuzzy
824
  msgid "Reset Daily Popular Posts"
825
  msgstr "Los posts diarios más populares"
826
 
827
+ #: admin/admin.php:1037
828
  msgid "Are you sure you want to reset the daily popular posts?"
829
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
830
 
831
+ #: admin/admin.php:1040
832
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
833
+ msgstr ""
834
+
835
+ #: admin/admin.php:1043
836
+ msgid "Merge blog ID 0 and 1 post counts"
837
  msgstr ""
838
 
839
+ #: admin/admin.php:1043
840
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
841
+ msgstr ""
842
+
843
+ #: admin/admin.php:1046
844
+ msgid ""
845
+ "In older versions, the plugin created entries with duplicate post IDs. "
846
+ "Clicking the button below will merge these duplicate IDs"
847
+ msgstr ""
848
+
849
+ #: admin/admin.php:1049
850
+ msgid "Merge duplicates across blog IDs"
851
+ msgstr ""
852
+
853
+ #: admin/admin.php:1049
854
  msgid "This will delete the duplicate entries in the tables. Proceed?"
855
  msgstr ""
856
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
857
 
858
+ #: admin/admin.php:1066
859
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1069
863
  msgid ""
864
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
865
  "activate the plugin independently for each site. This would have resulted in "
866
  "two tables being created for each site in the network."
867
  msgstr ""
868
 
869
+ #: admin/admin.php:1070
870
  msgid ""
871
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
872
  "your database clean. You can use this tool to import the recorded counts "
873
  "from v1.x tables to the new v2.x table format."
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1073
877
  msgid ""
878
  "If you do not see any tables below, then it means that either all data has "
879
  "already been imported or no relevant information has been found."
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1076
883
  msgid ""
884
  "After running the importer, please verify that all the counts have been "
885
  "successfully imported. Only then should you delete any old tables!"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1110
889
  msgid "Blog ID"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1113
893
  msgid "Status"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1116
897
  msgid "Select to import"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1126
901
  msgid "Blog #"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1136
905
  msgid "Not imported"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1140
909
  msgid "Imported"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1161
913
  msgid "Begin import"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1162
917
  msgid "Delete selected tables"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1163
921
  msgid "Delete all imported tables"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1220 admin/admin.php:1316
925
  msgid "Daily Popular Posts"
926
  msgstr "Los posts diarios más populares"
927
 
928
+ #: admin/admin.php:1250
929
  msgid "Support the development"
930
  msgstr "Apoyar al elaborador"
931
 
932
+ #: admin/admin.php:1257
933
  msgid "Donation for Top 10"
934
  msgstr ""
935
 
936
+ #: admin/admin.php:1259
937
  msgid "Enter amount in USD: "
938
  msgstr "Ingresar las cifras en USD"
939
 
940
+ #: admin/admin.php:1263
941
  #, fuzzy
942
  msgid "Send your donation to the author of Top 10"
943
  msgstr "Enviar su subvención al autor"
944
 
945
+ #: admin/admin.php:1270
946
  msgid "Follow me"
947
  msgstr ""
948
 
949
+ #: admin/admin.php:1280
950
  #, fuzzy
951
  msgid "Quick links"
952
  msgstr "Enlaces rápidos"
953
 
954
+ #: admin/admin.php:1284
955
  #, fuzzy
956
  msgid "Top 10 plugin page"
957
  msgstr "página plugin"
958
 
959
+ #: admin/admin.php:1285
960
  msgid "Top 10 Github page"
961
  msgstr ""
962
 
963
+ #: admin/admin.php:1286
964
  msgid "Other plugins"
965
  msgstr "Otros plugins"
966
 
967
+ #: admin/admin.php:1287
968
  msgid "Ajay's blog"
969
  msgstr "Blog de Ajay"
970
 
971
+ #: admin/admin.php:1288
972
  msgid "FAQ"
973
  msgstr ""
974
 
975
+ #: admin/admin.php:1289 admin/admin.php:1451
976
  msgid "Support"
977
  msgstr "Apoyo"
978
 
979
+ #: admin/admin.php:1290
980
  msgid "Reviews"
981
  msgstr ""
982
 
983
+ #: admin/admin.php:1313
984
  #, fuzzy
985
  msgid "Overall Popular Posts"
986
  msgstr "Ver los posts más populares"
987
 
988
+ #: admin/admin.php:1428
989
  msgid "Settings"
990
  msgstr "Los ajustes"
991
 
992
+ #: admin/admin.php:1452
993
  msgid "Donate"
994
  msgstr "Subvencionar"
995
 
1003
  msgid "Display popular posts"
1004
  msgstr "Los posts diarios más populares"
1005
 
1006
+ #: includes/class-top-10-widget.php:71
1007
  msgid "Title"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-top-10-widget.php:76
1011
  msgid "No. of posts"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-top-10-widget.php:81
1015
  msgid "Overall"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-top-10-widget.php:82
1019
  msgid "Custom time period (Enter below)"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-top-10-widget.php:86
1023
  msgid "In days and hours (applies only to custom option above)"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-top-10-widget.php:88
1027
  msgid "days"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-top-10-widget.php:91
1031
  msgid "hours"
1032
  msgstr ""
1033
 
1034
+ #: includes/class-top-10-widget.php:96
1035
  #, fuzzy
1036
  msgid "Show count?"
1037
  msgstr "¿Mostrar un fragmento del post en la lista?"
1038
 
1039
+ #: includes/class-top-10-widget.php:101
1040
  #, fuzzy
1041
  msgid "Show excerpt?"
1042
  msgstr "¿Mostrar un fragmento del post en la lista?"
1043
 
1044
+ #: includes/class-top-10-widget.php:106
1045
  #, fuzzy
1046
  msgid "Show author?"
1047
  msgstr "¿Mostrar un fragmento del post en la lista?"
1048
 
1049
+ #: includes/class-top-10-widget.php:111
1050
  #, fuzzy
1051
  msgid "Show date?"
1052
  msgstr "¿Mostrar un fragmento del post en la lista?"
1053
 
1054
+ #: includes/class-top-10-widget.php:117
1055
  #, fuzzy
1056
  msgid "Thumbnails inline, before title"
1057
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
1058
 
1059
+ #: includes/class-top-10-widget.php:118
1060
  #, fuzzy
1061
  msgid "Thumbnails inline, after title"
1062
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
1063
 
1064
+ #: includes/class-top-10-widget.php:119
1065
  #, fuzzy
1066
  msgid "Only thumbnails, no text"
1067
  msgstr "Mostrar solamente thumbnails, no el texto"
1068
 
1069
+ #: includes/class-top-10-widget.php:120
1070
  #, fuzzy
1071
  msgid "No thumbnails, only text."
1072
  msgstr "No mostrar thumbnails, sólo el texto"
1073
 
1074
+ #: includes/class-top-10-widget.php:125
1075
  #, fuzzy
1076
  msgid "Thumbnail height"
1077
  msgstr "Los parámetros del thumbnail:"
1078
 
1079
+ #: includes/class-top-10-widget.php:131
1080
  #, fuzzy
1081
  msgid "Thumbnail width"
1082
  msgstr "Los parámetros del thumbnail:"
1083
 
1084
+ #: includes/class-top-10-widget.php:136
1085
+ msgid "Post types to include:"
1086
+ msgstr ""
1087
+
1088
+ #: top-10.php:756
1089
  msgid " by "
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:823
1093
  #, php-format
1094
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1095
  msgstr ""
1096
 
1097
+ #: top-10.php:1113
1098
  msgid "<h3>Popular Posts</h3>"
1099
  msgstr "Los posts populares"
1100
 
1101
+ #: top-10.php:1114
1102
  msgid "<h3>Daily Popular</h3>"
1103
  msgstr "Diario Populares"
1104
 
1105
+ #: top-10.php:1115
1106
  #, fuzzy
1107
  msgid "No top posts yet"
1108
  msgstr "Reiniciar el Top de los 10 posts más populares"
1109
 
1110
+ #: top-10.php:1507
1111
+ msgid "thumb_timthumb argument has been deprecated"
1112
+ msgstr ""
1113
+
1114
+ #: top-10.php:1511
1115
+ msgid "thumb_timthumb_q argument has been deprecated"
1116
+ msgstr ""
1117
+
1118
+ #: top-10.php:1515
1119
+ msgid "filter argument has been deprecated"
1120
+ msgstr ""
1121
+
1122
+ #: top-10.php:1853
1123
  msgid "Once Weekly"
1124
  msgstr ""
1125
 
1126
+ #: top-10.php:1857
1127
  msgid "Once Fortnightly"
1128
  msgstr ""
1129
 
1130
+ #: top-10.php:1861
1131
  msgid "Once Monthly"
1132
  msgstr ""
1133
 
1134
+ #: top-10.php:1865
1135
  msgid "Once quarterly"
1136
  msgstr ""
1137
 
1138
+ #~ msgid "Reset count"
1139
+ #~ msgstr "Reiniciar los ajustes"
1140
+
1141
  #~ msgid "Daily Popular should contain views of how many days? "
1142
  #~ msgstr ""
1143
  #~ "Los post diarios más populares deben contener el número de visitas al día"
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: 2015-01-03 01:53-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"
@@ -62,7 +62,7 @@ msgstr "Précédente"
62
  msgid "Next"
63
  msgstr "Suivante"
64
 
65
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
66
  msgid "Popular Posts"
67
  msgstr "Postes populaires"
68
 
@@ -70,7 +70,7 @@ msgstr "Postes populaires"
70
  msgid "Daily Popular"
71
  msgstr "Populaires journaliers"
72
 
73
- #: admin/admin-metabox.php:38 admin/admin.php:1263
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
@@ -100,125 +100,135 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Les options sont sauvegardées avec succès"
106
 
107
- #: admin/admin.php:173
 
 
 
 
 
 
108
  msgid "Options set to Default."
109
  msgstr "Options par défaut sont définies"
110
 
111
- #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
114
 
115
- #: admin/admin.php:185
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
- #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:295 admin/admin.php:706
159
- #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Options thumbnail des messages:"
163
 
164
- #: admin/admin.php:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
- #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
- #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
- #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:345
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
- #: admin/admin.php:352
203
  msgid ""
204
  "Daily counter will display number of visits from midnight. This option is "
205
  "checked by default and mimics the way most normal counters work. Turning "
206
  "this off will allow you to use the hourly setting in the next option."
207
  msgstr ""
208
 
209
- #: admin/admin.php:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
- #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
- #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
- #: admin/admin.php:360
222
  msgid ""
223
  "Think of Daily Popular has a custom date range applied as a global setting. "
224
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -226,37 +236,37 @@ msgid ""
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
- #: admin/admin.php:364
230
  msgid "Delete options on uninstall"
231
  msgstr ""
232
 
233
- #: admin/admin.php:367
234
  msgid ""
235
  "If this is checked, all settings related to Top 10 are removed from the "
236
  "database if you choose to uninstall/delete the plugin."
237
  msgstr ""
238
 
239
- #: admin/admin.php:371
240
  msgid "Delete counter data on uninstall"
241
  msgstr ""
242
 
243
- #: admin/admin.php:374
244
  msgid ""
245
  "If this is checked, the tables containing the counter statistics are removed "
246
  "from the database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
- #: admin/admin.php:375
250
  msgid ""
251
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
  "lose your counter data."
253
  msgstr ""
254
 
255
- #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr ""
258
 
259
- #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -266,59 +276,59 @@ msgstr ""
266
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
267
  "mais nous vous y remercions!"
268
 
269
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Options:"
274
 
275
- #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "Afficher le nombre des visionnages du message?"
279
 
280
- #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr ""
283
 
284
- #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "Page"
288
 
289
- #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr ""
292
 
293
- #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr ""
296
 
297
- #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr ""
300
 
301
- #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr ""
304
 
305
- #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr ""
308
 
309
- #: admin/admin.php:431
310
  msgid ""
311
  "If you choose to disable this, please add <code>&lt;?php if "
312
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
313
  "</code> to your template file where you want it displayed"
314
  msgstr ""
315
 
316
- #: admin/admin.php:435
317
  #, fuzzy
318
  msgid "Format to display the post views:"
319
  msgstr "Format d’affichage de la quantité en:"
320
 
321
- #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -326,11 +336,11 @@ msgid ""
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
- #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
- #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -338,311 +348,301 @@ msgid ""
338
  "option."
339
  msgstr ""
340
 
341
- #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
- #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
- #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
355
 
356
- #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
- #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
365
 
366
- #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
- #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
374
 
375
- #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
- #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
- #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
- #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Afficher le nombre des visionnages sur les pages?"
393
 
394
- #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
- #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Le nombre de populaires sur le forum"
403
 
404
- #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
- #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
- #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
- #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
- #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Exclure les catégories:"
425
 
426
- #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
- #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Les en-têtes des messages populaires"
436
 
437
- #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Les en-têtes des messages populaires journaliers"
440
 
441
- #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
- #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
- #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Afficher le fragment du message dans la liste?"
456
 
457
- #: admin/admin.php:603
 
 
 
 
 
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Longueur du fragment (mots):"
460
 
461
- #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Afficher le fragment du message dans la liste?"
465
 
466
- #: admin/admin.php:615
 
 
 
 
 
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Afficher le fragment du message dans la liste?"
470
 
471
- #: admin/admin.php:621
 
 
 
 
 
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
- #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Afficher le fragment du message dans la liste?"
479
 
480
- #: admin/admin.php:633
481
- msgid "Always display latest post count in the daily lists?"
482
- msgstr ""
483
-
484
- #: admin/admin.php:636
485
- msgid ""
486
- "This option uses JavaScript and will increase your page load time. When you "
487
- "enable this option, the daily widget will not use the options set there, but "
488
- "options will need to be set on this screen."
489
- msgstr ""
490
-
491
- #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
- #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
- #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
- #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Paramétrer la sortie:"
507
 
508
- #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML d'affichage avant la liste des messages:"
511
 
512
- #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML d'affichage avant chaque élément de la liste:"
515
 
516
- #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML d'affichage après chaque élément de la liste:"
519
 
520
- #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML d'affichage après la liste des messages:"
523
 
524
- #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
- #: admin/admin.php:725
529
  msgid "Display thumbnails inline with posts, before title"
530
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
531
 
532
- #: admin/admin.php:730
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
535
 
536
- #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Afficher uniquement le thumbnail, sans le texte"
539
 
540
- #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
543
 
544
- #: admin/admin.php:744
 
 
 
 
 
 
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
- #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
- #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
569
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
570
- "regenerate all image sizes."
571
  msgstr ""
572
 
573
- #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
- #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
- #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
- #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
- #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
- #: admin/admin.php:793
597
  msgid ""
598
- "Since you're using the default styles set under the Custom Styles section, "
599
- "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
- #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
- #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
- #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
- #: admin/admin.php:811
615
- msgid "Use timthumb to generate thumbnails? "
616
- msgstr ""
617
-
618
- #: admin/admin.php:814
619
- msgid ""
620
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
- msgstr ""
623
-
624
- #: admin/admin.php:817
625
- msgid "Quality of thumbnails generated by timthumb:"
626
- msgstr ""
627
-
628
- #: admin/admin.php:820
629
- msgid ""
630
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
- "file size. Suggested maximum value is 95. Default is 75."
632
- msgstr ""
633
-
634
- #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Options thumbnail des messages:"
638
 
639
- #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
- #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -653,7 +653,7 @@ msgstr ""
653
  "première image de la résolution correspondante du fichier est de taille "
654
  "supérieure"
655
 
656
- #: admin/admin.php:832
657
  #, fuzzy
658
  msgid ""
659
  "This could slow down the loading of your page if the first image in the "
@@ -664,11 +664,11 @@ msgstr ""
664
  "première image de la résolution correspondante du fichier est de taille "
665
  "supérieure"
666
 
667
- #: admin/admin.php:835
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
- #: admin/admin.php:838
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -677,65 +677,65 @@ msgstr ""
677
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
678
  "été retrouvé, ne pas afficher l'image."
679
 
680
- #: admin/admin.php:841
681
  msgid "Default thumbnail: "
682
  msgstr ""
683
 
684
- #: admin/admin.php:845
685
  msgid ""
686
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
687
  "then it will check the meta field. If this is not available, then it will "
688
  "show the default image as specified above"
689
  msgstr ""
690
 
691
- #: admin/admin.php:869
692
  msgid "Custom CSS"
693
  msgstr ""
694
 
695
- #: admin/admin.php:884
696
  msgid "Use default style included in the plugin?"
697
  msgstr ""
698
 
699
- #: admin/admin.php:887
700
  msgid ""
701
  "Top 10 includes a default style that makes your popular posts list to look "
702
  "beautiful. Check the box above if you want to use this."
703
  msgstr ""
704
 
705
- #: admin/admin.php:888
706
  msgid ""
707
  "Enabling this option will turn on the thumbnails and set their width and "
708
  "height to 65px. It will also turn off the display of the author, excerpt and "
709
  "date if already enabled. Disabling this option will not revert any settings."
710
  msgstr ""
711
 
712
- #: admin/admin.php:889
713
  #, php-format
714
  msgid ""
715
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
716
  msgstr ""
717
 
718
- #: admin/admin.php:892
719
  msgid "Custom CSS to add to header:"
720
  msgstr ""
721
 
722
- #: admin/admin.php:897
723
  msgid ""
724
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
725
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
726
  "available CSS classes to style."
727
  msgstr ""
728
 
729
- #: admin/admin.php:917
730
  #, fuzzy
731
  msgid "Default Options"
732
  msgstr "Paramètres de sortie"
733
 
734
- #: admin/admin.php:917
735
  msgid "Do you want to set options to Default?"
736
  msgstr "Définir les paramètres par défaut?"
737
 
738
- #: admin/admin.php:941
739
  msgid ""
740
  "Over time the Daily Top 10 database grows in size, which reduces the "
741
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -743,65 +743,65 @@ msgid ""
743
  "will automatically delete entries older than 90 days."
744
  msgstr ""
745
 
746
- #: admin/admin.php:942
747
  msgid ""
748
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
749
  "everytime the job is rescheduled (i.e. you change the settings below)."
750
  msgstr ""
751
 
752
- #: admin/admin.php:945
753
  msgid "Enable scheduled maintenance of daily tables:"
754
  msgstr ""
755
 
756
- #: admin/admin.php:949
757
  msgid "Time to run maintenance"
758
  msgstr ""
759
 
760
- #: admin/admin.php:950
761
  msgid "hrs"
762
  msgstr ""
763
 
764
- #: admin/admin.php:950
765
  msgid "min"
766
  msgstr ""
767
 
768
- #: admin/admin.php:952
769
  msgid "How often should the maintenance be run:"
770
  msgstr ""
771
 
772
- #: admin/admin.php:956
773
  msgid "Daily"
774
  msgstr ""
775
 
776
- #: admin/admin.php:960
777
  msgid "Weekly"
778
  msgstr ""
779
 
780
- #: admin/admin.php:964
781
  msgid "Fortnightly"
782
  msgstr ""
783
 
784
- #: admin/admin.php:968
785
  msgid "Monthly"
786
  msgstr ""
787
 
788
- #: admin/admin.php:977
789
  msgid "The cron job has been scheduled. Maintenance will run "
790
  msgstr ""
791
 
792
- #: admin/admin.php:982
793
  msgid "The cron job is missing. Please resave this page to add the job"
794
  msgstr ""
795
 
796
- #: admin/admin.php:987
797
  msgid "Maintenance is turned off"
798
  msgstr ""
799
 
800
- #: admin/admin.php:1001
801
- msgid "Reset count"
802
- msgstr "Réinitialiser le compteur"
803
 
804
- #: admin/admin.php:1004
805
  msgid ""
806
  "This cannot be reversed. Make sure that your database has been backed up "
807
  "before proceeding"
@@ -809,168 +809,186 @@ msgstr ""
809
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
810
  "sauvegardée avant de poursuivre."
811
 
812
- #: admin/admin.php:1007
813
  #, fuzzy
814
  msgid "Reset Popular Posts"
815
  msgstr "Postes populaires"
816
 
817
- #: admin/admin.php:1007
818
  msgid "Are you sure you want to reset the popular posts?"
819
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
820
 
821
- #: admin/admin.php:1008
822
  #, fuzzy
823
  msgid "Reset Daily Popular Posts"
824
  msgstr "Postes populaires journaliers"
825
 
826
- #: admin/admin.php:1008
827
  msgid "Are you sure you want to reset the daily popular posts?"
828
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
829
 
830
- #: admin/admin.php:1009
831
- msgid "Clear duplicates"
 
 
 
 
832
  msgstr ""
833
 
834
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
835
  msgid "This will delete the duplicate entries in the tables. Proceed?"
836
  msgstr ""
837
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
838
 
839
- #: admin/admin.php:1022
840
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
841
  msgstr ""
842
 
843
- #: admin/admin.php:1025
844
  msgid ""
845
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
846
  "activate the plugin independently for each site. This would have resulted in "
847
  "two tables being created for each site in the network."
848
  msgstr ""
849
 
850
- #: admin/admin.php:1026
851
  msgid ""
852
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
853
  "your database clean. You can use this tool to import the recorded counts "
854
  "from v1.x tables to the new v2.x table format."
855
  msgstr ""
856
 
857
- #: admin/admin.php:1029
858
  msgid ""
859
  "If you do not see any tables below, then it means that either all data has "
860
  "already been imported or no relevant information has been found."
861
  msgstr ""
862
 
863
- #: admin/admin.php:1032
864
  msgid ""
865
  "After running the importer, please verify that all the counts have been "
866
  "successfully imported. Only then should you delete any old tables!"
867
  msgstr ""
868
 
869
- #: admin/admin.php:1066
870
  msgid "Blog ID"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1069
874
  msgid "Status"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1072
878
  msgid "Select to import"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1082
882
  msgid "Blog #"
883
  msgstr ""
884
 
885
- #: admin/admin.php:1092
886
  msgid "Not imported"
887
  msgstr ""
888
 
889
- #: admin/admin.php:1096
890
  msgid "Imported"
891
  msgstr ""
892
 
893
- #: admin/admin.php:1117
894
  msgid "Begin import"
895
  msgstr ""
896
 
897
- #: admin/admin.php:1118
898
  msgid "Delete selected tables"
899
  msgstr ""
900
 
901
- #: admin/admin.php:1119
902
  msgid "Delete all imported tables"
903
  msgstr ""
904
 
905
- #: admin/admin.php:1176 admin/admin.php:1272
906
  msgid "Daily Popular Posts"
907
  msgstr "Postes populaires journaliers"
908
 
909
- #: admin/admin.php:1206
910
  msgid "Support the development"
911
  msgstr "Soutenir le projet"
912
 
913
- #: admin/admin.php:1213
914
  msgid "Donation for Top 10"
915
  msgstr ""
916
 
917
- #: admin/admin.php:1215
918
  msgid "Enter amount in USD: "
919
  msgstr "Saisir le montant en dollars US"
920
 
921
- #: admin/admin.php:1219
922
  #, fuzzy
923
  msgid "Send your donation to the author of Top 10"
924
  msgstr "Envoyer sa dotation à l'auteur"
925
 
926
- #: admin/admin.php:1226
927
  msgid "Follow me"
928
  msgstr ""
929
 
930
- #: admin/admin.php:1236
931
  #, fuzzy
932
  msgid "Quick links"
933
  msgstr "Liens rapides"
934
 
935
- #: admin/admin.php:1240
936
  #, fuzzy
937
  msgid "Top 10 plugin page"
938
  msgstr "Page de plugin"
939
 
940
- #: admin/admin.php:1241
941
  msgid "Top 10 Github page"
942
  msgstr ""
943
 
944
- #: admin/admin.php:1242
945
  msgid "Other plugins"
946
  msgstr "Autres plugins"
947
 
948
- #: admin/admin.php:1243
949
  msgid "Ajay's blog"
950
  msgstr "Blog Ajay"
951
 
952
- #: admin/admin.php:1244
953
  msgid "FAQ"
954
  msgstr ""
955
 
956
- #: admin/admin.php:1245 admin/admin.php:1403
957
  msgid "Support"
958
  msgstr "Service d'assistance"
959
 
960
- #: admin/admin.php:1246
961
  msgid "Reviews"
962
  msgstr ""
963
 
964
- #: admin/admin.php:1269
965
  #, fuzzy
966
  msgid "Overall Popular Posts"
967
  msgstr "Voir tous les postes populaires"
968
 
969
- #: admin/admin.php:1380
970
  msgid "Settings"
971
  msgstr "Paramètres"
972
 
973
- #: admin/admin.php:1404
974
  msgid "Donate"
975
  msgstr "Conribuer"
976
 
@@ -984,122 +1002,141 @@ msgstr "Postes populaires"
984
  msgid "Display popular posts"
985
  msgstr "Postes populaires journaliers"
986
 
987
- #: includes/class-top-10-widget.php:59
988
  msgid "Title"
989
  msgstr ""
990
 
991
- #: includes/class-top-10-widget.php:64
992
  msgid "No. of posts"
993
  msgstr ""
994
 
995
- #: includes/class-top-10-widget.php:69
996
  msgid "Overall"
997
  msgstr ""
998
 
999
- #: includes/class-top-10-widget.php:70
1000
  msgid "Custom time period (Enter below)"
1001
  msgstr ""
1002
 
1003
- #: includes/class-top-10-widget.php:74
1004
  msgid "In days and hours (applies only to custom option above)"
1005
  msgstr ""
1006
 
1007
- #: includes/class-top-10-widget.php:76
1008
  msgid "days"
1009
  msgstr ""
1010
 
1011
- #: includes/class-top-10-widget.php:79
1012
  msgid "hours"
1013
  msgstr ""
1014
 
1015
- #: includes/class-top-10-widget.php:84
1016
  #, fuzzy
1017
  msgid "Show count?"
1018
  msgstr "Afficher le fragment du message dans la liste?"
1019
 
1020
- #: includes/class-top-10-widget.php:89
1021
  #, fuzzy
1022
  msgid "Show excerpt?"
1023
  msgstr "Afficher le fragment du message dans la liste?"
1024
 
1025
- #: includes/class-top-10-widget.php:94
1026
  #, fuzzy
1027
  msgid "Show author?"
1028
  msgstr "Afficher le fragment du message dans la liste?"
1029
 
1030
- #: includes/class-top-10-widget.php:99
1031
  #, fuzzy
1032
  msgid "Show date?"
1033
  msgstr "Afficher le fragment du message dans la liste?"
1034
 
1035
- #: includes/class-top-10-widget.php:105
1036
  #, fuzzy
1037
  msgid "Thumbnails inline, before title"
1038
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
1039
 
1040
- #: includes/class-top-10-widget.php:106
1041
  #, fuzzy
1042
  msgid "Thumbnails inline, after title"
1043
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
1044
 
1045
- #: includes/class-top-10-widget.php:107
1046
  #, fuzzy
1047
  msgid "Only thumbnails, no text"
1048
  msgstr "Afficher uniquement le thumbnail, sans le texte"
1049
 
1050
- #: includes/class-top-10-widget.php:108
1051
  #, fuzzy
1052
  msgid "No thumbnails, only text."
1053
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
1054
 
1055
- #: includes/class-top-10-widget.php:113
1056
  #, fuzzy
1057
  msgid "Thumbnail height"
1058
  msgstr "Options thumbnail des messages:"
1059
 
1060
- #: includes/class-top-10-widget.php:118
1061
  #, fuzzy
1062
  msgid "Thumbnail width"
1063
  msgstr "Options thumbnail des messages:"
1064
 
1065
- #: top-10.php:879
 
 
 
 
1066
  msgid " by "
1067
  msgstr ""
1068
 
1069
- #: top-10.php:930
1070
  #, php-format
1071
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1072
  msgstr ""
1073
 
1074
- #: top-10.php:1029
1075
  msgid "<h3>Popular Posts</h3>"
1076
  msgstr "<h3>Postes populaires</h3>"
1077
 
1078
- #: top-10.php:1030
1079
  msgid "<h3>Daily Popular</h3>"
1080
  msgstr "<h3>Populaires Journaliers</h3>"
1081
 
1082
- #: top-10.php:1031
1083
  #, fuzzy
1084
  msgid "No top posts yet"
1085
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1086
 
1087
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1088
  msgid "Once Weekly"
1089
  msgstr ""
1090
 
1091
- #: top-10.php:1694
1092
  msgid "Once Fortnightly"
1093
  msgstr ""
1094
 
1095
- #: top-10.php:1698
1096
  msgid "Once Monthly"
1097
  msgstr ""
1098
 
1099
- #: top-10.php:1702
1100
  msgid "Once quarterly"
1101
  msgstr ""
1102
 
 
 
 
1103
  #~ msgid "Daily Popular should contain views of how many days? "
1104
  #~ msgstr ""
1105
  #~ "Le populaire journalier doit contenir l'information sur le nombre des "
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
62
  msgid "Next"
63
  msgstr "Suivante"
64
 
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
66
  msgid "Popular Posts"
67
  msgstr "Postes populaires"
68
 
70
  msgid "Daily Popular"
71
  msgstr "Populaires journaliers"
72
 
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
74
  msgid "Top 10"
75
  msgstr "Тоp 10"
76
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:171
104
  msgid "Options saved successfully."
105
  msgstr "Les options sont sauvegardées avec succès"
106
 
107
+ #: admin/admin.php:174
108
+ msgid ""
109
+ "Default styles selected. Thumbnail width, height and crop settings have been "
110
+ "fixed. Author, Excerpt and Date will not be displayed."
111
+ msgstr ""
112
+
113
+ #: admin/admin.php:190
114
  msgid "Options set to Default."
115
  msgstr "Options par défaut sont définies"
116
 
117
+ #: admin/admin.php:197
118
  msgid "Top 10 popular posts reset"
119
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
120
 
121
+ #: admin/admin.php:204
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr ""
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid ""
147
  "Selected tables have been deleted. Note that only imported tables have been "
148
  "deleted."
149
  msgstr ""
150
 
151
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
152
  #, fuzzy
153
  msgid "Top 10 Settings"
154
  msgstr "Paramètres"
155
 
156
+ #: admin/admin.php:321 admin/admin.php:343
157
  msgid "General options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:322 admin/admin.php:435
161
  msgid "Counter and tracker options"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:323 admin/admin.php:540
165
  msgid "Popular post list options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:324 admin/admin.php:742
169
+ #: includes/class-top-10-widget.php:115
170
  #, fuzzy
171
  msgid "Thumbnail options"
172
  msgstr "Options thumbnail des messages:"
173
 
174
+ #: admin/admin.php:325
175
  msgid "Custom styles"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:326 admin/admin.php:966
179
  msgid "Maintenance"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
183
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
184
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
185
+ #: admin/admin.php:1269 admin/admin.php:1279
186
  msgid "Click to toggle"
187
  msgstr ""
188
 
189
+ #: admin/admin.php:359
190
  msgid "Enable Overall stats"
191
  msgstr ""
192
 
193
+ #: admin/admin.php:365
194
  msgid "Enable Daily stats"
195
  msgstr ""
196
 
197
+ #: admin/admin.php:371
198
  msgid "Cache fix:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:374
202
  msgid ""
203
  "This will try to prevent W3 Total Cache and other caching plugins from "
204
  "caching the tracker script of the plugin. Try toggling this option in case "
205
  "you find that your posts are not tracked."
206
  msgstr ""
207
 
208
+ #: admin/admin.php:378
209
  msgid "Start daily counts from midnight:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:381
213
  msgid ""
214
  "Daily counter will display number of visits from midnight. This option is "
215
  "checked by default and mimics the way most normal counters work. Turning "
216
  "this off will allow you to use the hourly setting in the next option."
217
  msgstr ""
218
 
219
+ #: admin/admin.php:385
220
  msgid "Daily popular contains top posts over:"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:387
224
  msgid "day(s)"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:388
228
  msgid "hour(s)"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:389
232
  msgid ""
233
  "Think of Daily Popular has a custom date range applied as a global setting. "
234
  "Instead of displaying popular posts from the past day, this setting lets you "
236
  "overridden in the widget."
237
  msgstr ""
238
 
239
+ #: admin/admin.php:393
240
  msgid "Delete options on uninstall"
241
  msgstr ""
242
 
243
+ #: admin/admin.php:396
244
  msgid ""
245
  "If this is checked, all settings related to Top 10 are removed from the "
246
  "database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
+ #: admin/admin.php:400
250
  msgid "Delete counter data on uninstall"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:403
254
  msgid ""
255
  "If this is checked, the tables containing the counter statistics are removed "
256
  "from the database if you choose to uninstall/delete the plugin."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:404
260
  msgid ""
261
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
262
  "lose your counter data."
263
  msgstr ""
264
 
265
+ #: admin/admin.php:408
266
  msgid "Link to Top 10 plugin page"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  #, fuzzy
271
  msgid ""
272
  "A link to the plugin is added as an extra list item to the list of popular "
276
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
277
  "mais nous vous y remercions!"
278
 
279
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
280
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
281
  #, fuzzy
282
  msgid "Save Options"
283
  msgstr "Options:"
284
 
285
+ #: admin/admin.php:451
286
  #, fuzzy
287
  msgid "Display number of views on:"
288
  msgstr "Afficher le nombre des visionnages du message?"
289
 
290
+ #: admin/admin.php:453
291
  msgid "Posts"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:454
295
  #, fuzzy
296
  msgid "Pages"
297
  msgstr "Page"
298
 
299
+ #: admin/admin.php:455
300
  msgid "Home page"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:456
304
  msgid "Feeds"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:457
308
  msgid "Category archives"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:458
312
  msgid "Tag archives"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:459
316
  msgid "Other archives"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:460
320
  msgid ""
321
  "If you choose to disable this, please add <code>&lt;?php if "
322
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
323
  "</code> to your template file where you want it displayed"
324
  msgstr ""
325
 
326
+ #: admin/admin.php:464
327
  #, fuzzy
328
  msgid "Format to display the post views:"
329
  msgstr "Format d’affichage de la quantité en:"
330
 
331
+ #: admin/admin.php:467
332
  msgid ""
333
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
334
  "%</code> to display the daily count and <code>%overallcount%</code> to "
336
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:471
340
  msgid "What do display when there are no visits?"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:474
344
  msgid ""
345
  "This text applies only when there are 0 hits for the post and it isn't a "
346
  "single page. e.g. if you display post views on the homepage or archives then "
348
  "option."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:478
352
  msgid "Always display latest post count"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:481
356
  msgid ""
357
  "This option uses JavaScript and will increase your page load time. Turn this "
358
  "off if you are not using caching plugins or are OK with displaying older "
359
  "cached counts."
360
  msgstr ""
361
 
362
+ #: admin/admin.php:485
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
365
 
366
+ #: admin/admin.php:488
367
  msgid ""
368
  "Disabling this option will stop authors visits tracked on their own posts"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:492
372
  #, fuzzy
373
  msgid "Track visits of admins?"
374
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
375
 
376
+ #: admin/admin.php:495
377
  msgid "Disabling this option will stop admin visits being tracked."
378
  msgstr ""
379
 
380
+ #: admin/admin.php:499
381
  #, fuzzy
382
  msgid "Track visits of Editors?"
383
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
384
 
385
+ #: admin/admin.php:502
386
  msgid "Disabling this option will stop editor visits being tracked."
387
  msgstr ""
388
 
389
+ #: admin/admin.php:506
390
  msgid "Display page views on Posts and Pages in Admin"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:509
394
  msgid ""
395
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
396
  "and All Pages"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:513
400
  #, fuzzy
401
  msgid "Show number of views to non-admins"
402
  msgstr "Afficher le nombre des visionnages sur les pages?"
403
 
404
+ #: admin/admin.php:516
405
  msgid ""
406
  "If you disable this then non-admins won't see the above columns or view the "
407
  "independent pages with the top posts"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:556
411
  msgid "Number of popular posts to display: "
412
  msgstr "Le nombre de populaires sur le forum"
413
 
414
+ #: admin/admin.php:559
415
  msgid ""
416
  "Maximum number of posts that will be displayed in the list. This option is "
417
  "used if you don't specify the number of posts in the widget or shortcodes"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:563
421
  msgid "Post types to include in results (including custom post types)"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:577
425
  msgid "List of post or page IDs to exclude from the results: "
426
  msgstr ""
427
 
428
+ #: admin/admin.php:579 admin/admin.php:691
429
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:583
433
  msgid "Exclude Categories: "
434
  msgstr "Exclure les catégories:"
435
 
436
+ #: admin/admin.php:598
437
  msgid ""
438
  "Comma separated list of category slugs. The field above has an autocomplete "
439
  "so simply start typing in the starting letters and it will prompt you with "
440
  "options"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:603
444
  msgid "Title of popular posts: "
445
  msgstr "Les en-têtes des messages populaires"
446
 
447
+ #: admin/admin.php:609
448
  msgid "Title of daily popular posts: "
449
  msgstr "Les en-têtes des messages populaires journaliers"
450
 
451
+ #: admin/admin.php:615
452
  msgid "When there are no posts, what should be shown?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:619
456
  msgid "Blank Output"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:623
460
  msgid "Display:"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:628
464
  msgid "Show post excerpt in list?"
465
  msgstr "Afficher le fragment du message dans la liste?"
466
 
467
+ #: admin/admin.php:633
468
+ msgid ""
469
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
470
+ msgstr ""
471
+
472
+ #: admin/admin.php:638
473
  msgid "Length of excerpt (in words): "
474
  msgstr "Longueur du fragment (mots):"
475
 
476
+ #: admin/admin.php:644
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "Afficher le fragment du message dans la liste?"
480
 
481
+ #: admin/admin.php:649
482
+ msgid ""
483
+ "Default style selected under the Custom Styles. Author display is disabled."
484
+ msgstr ""
485
+
486
+ #: admin/admin.php:654
487
  #, fuzzy
488
  msgid "Show post date in list?"
489
  msgstr "Afficher le fragment du message dans la liste?"
490
 
491
+ #: admin/admin.php:659
492
+ msgid ""
493
+ "Default style selected under the Custom Styles. Date display is disabled."
494
+ msgstr ""
495
+
496
+ #: admin/admin.php:664
497
  msgid "Limit post title length (in characters)"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:670
501
  #, fuzzy
502
  msgid "Show view count in list?"
503
  msgstr "Afficher le fragment du message dans la liste?"
504
 
505
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "Open links in new window"
507
  msgstr ""
508
 
509
+ #: admin/admin.php:682
510
  msgid "Add nofollow attribute to links in the list"
511
  msgstr ""
512
 
513
+ #: admin/admin.php:688
514
  msgid "Exclude display of related posts on these posts / pages"
515
  msgstr ""
516
 
517
+ #: admin/admin.php:695
518
  #, fuzzy
519
  msgid "Customise the list HTML"
520
  msgstr "Paramétrer la sortie:"
521
 
522
+ #: admin/admin.php:698
523
  msgid "HTML to display before the list of posts: "
524
  msgstr "HTML d'affichage avant la liste des messages:"
525
 
526
+ #: admin/admin.php:704
527
  msgid "HTML to display before each list item: "
528
  msgstr "HTML d'affichage avant chaque élément de la liste:"
529
 
530
+ #: admin/admin.php:710
531
  msgid "HTML to display after each list item: "
532
  msgstr "HTML d'affichage après chaque élément de la liste:"
533
 
534
+ #: admin/admin.php:716
535
  msgid "HTML to display after the list of posts: "
536
  msgstr "HTML d'affichage après la liste des messages:"
537
 
538
+ #: admin/admin.php:757
539
  msgid "Location of post thumbnail:"
540
  msgstr ""
541
 
542
+ #: admin/admin.php:761
543
  msgid "Display thumbnails inline with posts, before title"
544
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
545
 
546
+ #: admin/admin.php:766
547
  msgid "Display thumbnails inline with posts, after title"
548
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
549
 
550
+ #: admin/admin.php:771
551
  msgid "Display only thumbnails, no text"
552
  msgstr "Afficher uniquement le thumbnail, sans le texte"
553
 
554
+ #: admin/admin.php:776
555
  msgid "Do not display thumbnails, only text."
556
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
557
 
558
+ #: admin/admin.php:780
559
+ msgid ""
560
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
561
+ "to be inline before title"
562
+ msgstr ""
563
+
564
+ #: admin/admin.php:784
565
  msgid "Thumbnail size:"
566
  msgstr ""
567
 
568
+ #: admin/admin.php:808
569
  msgid "Custom size"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:811
573
  msgid ""
574
  "You can choose from existing image sizes above or create a custom size. If "
575
  "you have chosen Custom size above, then enter the width, height and crop "
576
  "settings below. For best results, use a cropped image."
577
  msgstr ""
578
 
579
+ #: admin/admin.php:812
580
  msgid ""
581
  "If you change the width and/or height below, existing images will not be "
582
  "automatically resized."
583
  msgstr ""
584
 
585
+ #: admin/admin.php:813
586
  #, php-format
587
  msgid ""
588
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
589
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
590
+ "all image sizes."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:816
594
  msgid "Width of custom thumbnail:"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:821
598
  msgid "Height of custom thumbnail"
599
  msgstr ""
600
 
601
+ #: admin/admin.php:826
602
  msgid "Crop mode:"
603
  msgstr ""
604
 
605
+ #: admin/admin.php:830
606
  msgid ""
607
  "By default, thumbnails will be proportionately cropped. Check this box to "
608
  "hard crop the thumbnails."
609
  msgstr ""
610
 
611
+ #: admin/admin.php:831
612
  #, php-format
613
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
614
  msgstr ""
615
 
616
+ #: admin/admin.php:834
617
  msgid ""
618
+ "Default style selected under the Custom Styles. Thumbnail width and height "
619
+ "is fixed at 65px and crop mode is enabled."
620
  msgstr ""
621
 
622
+ #: admin/admin.php:839
623
  msgid "Style attributes / Width and Height HTML attributes:"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:843
627
  msgid "Style attributes are used for width and height."
628
  msgstr ""
629
 
630
+ #: admin/admin.php:848
631
  msgid "HTML width and height attributes are used for width and height."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Options thumbnail des messages:"
638
 
639
+ #: admin/admin.php:855
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:858
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
653
  "première image de la résolution correspondante du fichier est de taille "
654
  "supérieure"
655
 
656
+ #: admin/admin.php:861
657
  #, fuzzy
658
  msgid ""
659
  "This could slow down the loading of your page if the first image in the "
664
  "première image de la résolution correspondante du fichier est de taille "
665
  "supérieure"
666
 
667
+ #: admin/admin.php:864
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
+ #: admin/admin.php:867
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
677
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
678
  "été retrouvé, ne pas afficher l'image."
679
 
680
+ #: admin/admin.php:870
681
  msgid "Default thumbnail: "
682
  msgstr ""
683
 
684
+ #: admin/admin.php:874
685
  msgid ""
686
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
687
  "then it will check the meta field. If this is not available, then it will "
688
  "show the default image as specified above"
689
  msgstr ""
690
 
691
+ #: admin/admin.php:898
692
  msgid "Custom CSS"
693
  msgstr ""
694
 
695
+ #: admin/admin.php:913
696
  msgid "Use default style included in the plugin?"
697
  msgstr ""
698
 
699
+ #: admin/admin.php:916
700
  msgid ""
701
  "Top 10 includes a default style that makes your popular posts list to look "
702
  "beautiful. Check the box above if you want to use this."
703
  msgstr ""
704
 
705
+ #: admin/admin.php:917
706
  msgid ""
707
  "Enabling this option will turn on the thumbnails and set their width and "
708
  "height to 65px. It will also turn off the display of the author, excerpt and "
709
  "date if already enabled. Disabling this option will not revert any settings."
710
  msgstr ""
711
 
712
+ #: admin/admin.php:918
713
  #, php-format
714
  msgid ""
715
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
716
  msgstr ""
717
 
718
+ #: admin/admin.php:921
719
  msgid "Custom CSS to add to header:"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:926
723
  msgid ""
724
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
725
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
726
  "available CSS classes to style."
727
  msgstr ""
728
 
729
+ #: admin/admin.php:946
730
  #, fuzzy
731
  msgid "Default Options"
732
  msgstr "Paramètres de sortie"
733
 
734
+ #: admin/admin.php:946
735
  msgid "Do you want to set options to Default?"
736
  msgstr "Définir les paramètres par défaut?"
737
 
738
+ #: admin/admin.php:970
739
  msgid ""
740
  "Over time the Daily Top 10 database grows in size, which reduces the "
741
  "performance of the plugin. Cleaning the database at regular intervals could "
743
  "will automatically delete entries older than 90 days."
744
  msgstr ""
745
 
746
+ #: admin/admin.php:971
747
  msgid ""
748
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
749
  "everytime the job is rescheduled (i.e. you change the settings below)."
750
  msgstr ""
751
 
752
+ #: admin/admin.php:974
753
  msgid "Enable scheduled maintenance of daily tables:"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:978
757
  msgid "Time to run maintenance"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:979
761
  msgid "hrs"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:979
765
  msgid "min"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:981
769
  msgid "How often should the maintenance be run:"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:985
773
  msgid "Daily"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:989
777
  msgid "Weekly"
778
  msgstr ""
779
 
780
+ #: admin/admin.php:993
781
  msgid "Fortnightly"
782
  msgstr ""
783
 
784
+ #: admin/admin.php:997
785
  msgid "Monthly"
786
  msgstr ""
787
 
788
+ #: admin/admin.php:1006
789
  msgid "The cron job has been scheduled. Maintenance will run "
790
  msgstr ""
791
 
792
+ #: admin/admin.php:1011
793
  msgid "The cron job is missing. Please resave this page to add the job"
794
  msgstr ""
795
 
796
+ #: admin/admin.php:1016
797
  msgid "Maintenance is turned off"
798
  msgstr ""
799
 
800
+ #: admin/admin.php:1030
801
+ msgid "Reset count and other tools"
802
+ msgstr ""
803
 
804
+ #: admin/admin.php:1033
805
  msgid ""
806
  "This cannot be reversed. Make sure that your database has been backed up "
807
  "before proceeding"
809
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
810
  "sauvegardée avant de poursuivre."
811
 
812
+ #: admin/admin.php:1036
813
  #, fuzzy
814
  msgid "Reset Popular Posts"
815
  msgstr "Postes populaires"
816
 
817
+ #: admin/admin.php:1036
818
  msgid "Are you sure you want to reset the popular posts?"
819
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
820
 
821
+ #: admin/admin.php:1037
822
  #, fuzzy
823
  msgid "Reset Daily Popular Posts"
824
  msgstr "Postes populaires journaliers"
825
 
826
+ #: admin/admin.php:1037
827
  msgid "Are you sure you want to reset the daily popular posts?"
828
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
829
 
830
+ #: admin/admin.php:1040
831
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
832
+ msgstr ""
833
+
834
+ #: admin/admin.php:1043
835
+ msgid "Merge blog ID 0 and 1 post counts"
836
  msgstr ""
837
 
838
+ #: admin/admin.php:1043
839
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
840
+ msgstr ""
841
+
842
+ #: admin/admin.php:1046
843
+ msgid ""
844
+ "In older versions, the plugin created entries with duplicate post IDs. "
845
+ "Clicking the button below will merge these duplicate IDs"
846
+ msgstr ""
847
+
848
+ #: admin/admin.php:1049
849
+ msgid "Merge duplicates across blog IDs"
850
+ msgstr ""
851
+
852
+ #: admin/admin.php:1049
853
  msgid "This will delete the duplicate entries in the tables. Proceed?"
854
  msgstr ""
855
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
856
 
857
+ #: admin/admin.php:1066
858
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
859
  msgstr ""
860
 
861
+ #: admin/admin.php:1069
862
  msgid ""
863
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
864
  "activate the plugin independently for each site. This would have resulted in "
865
  "two tables being created for each site in the network."
866
  msgstr ""
867
 
868
+ #: admin/admin.php:1070
869
  msgid ""
870
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
871
  "your database clean. You can use this tool to import the recorded counts "
872
  "from v1.x tables to the new v2.x table format."
873
  msgstr ""
874
 
875
+ #: admin/admin.php:1073
876
  msgid ""
877
  "If you do not see any tables below, then it means that either all data has "
878
  "already been imported or no relevant information has been found."
879
  msgstr ""
880
 
881
+ #: admin/admin.php:1076
882
  msgid ""
883
  "After running the importer, please verify that all the counts have been "
884
  "successfully imported. Only then should you delete any old tables!"
885
  msgstr ""
886
 
887
+ #: admin/admin.php:1110
888
  msgid "Blog ID"
889
  msgstr ""
890
 
891
+ #: admin/admin.php:1113
892
  msgid "Status"
893
  msgstr ""
894
 
895
+ #: admin/admin.php:1116
896
  msgid "Select to import"
897
  msgstr ""
898
 
899
+ #: admin/admin.php:1126
900
  msgid "Blog #"
901
  msgstr ""
902
 
903
+ #: admin/admin.php:1136
904
  msgid "Not imported"
905
  msgstr ""
906
 
907
+ #: admin/admin.php:1140
908
  msgid "Imported"
909
  msgstr ""
910
 
911
+ #: admin/admin.php:1161
912
  msgid "Begin import"
913
  msgstr ""
914
 
915
+ #: admin/admin.php:1162
916
  msgid "Delete selected tables"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1163
920
  msgid "Delete all imported tables"
921
  msgstr ""
922
 
923
+ #: admin/admin.php:1220 admin/admin.php:1316
924
  msgid "Daily Popular Posts"
925
  msgstr "Postes populaires journaliers"
926
 
927
+ #: admin/admin.php:1250
928
  msgid "Support the development"
929
  msgstr "Soutenir le projet"
930
 
931
+ #: admin/admin.php:1257
932
  msgid "Donation for Top 10"
933
  msgstr ""
934
 
935
+ #: admin/admin.php:1259
936
  msgid "Enter amount in USD: "
937
  msgstr "Saisir le montant en dollars US"
938
 
939
+ #: admin/admin.php:1263
940
  #, fuzzy
941
  msgid "Send your donation to the author of Top 10"
942
  msgstr "Envoyer sa dotation à l'auteur"
943
 
944
+ #: admin/admin.php:1270
945
  msgid "Follow me"
946
  msgstr ""
947
 
948
+ #: admin/admin.php:1280
949
  #, fuzzy
950
  msgid "Quick links"
951
  msgstr "Liens rapides"
952
 
953
+ #: admin/admin.php:1284
954
  #, fuzzy
955
  msgid "Top 10 plugin page"
956
  msgstr "Page de plugin"
957
 
958
+ #: admin/admin.php:1285
959
  msgid "Top 10 Github page"
960
  msgstr ""
961
 
962
+ #: admin/admin.php:1286
963
  msgid "Other plugins"
964
  msgstr "Autres plugins"
965
 
966
+ #: admin/admin.php:1287
967
  msgid "Ajay's blog"
968
  msgstr "Blog Ajay"
969
 
970
+ #: admin/admin.php:1288
971
  msgid "FAQ"
972
  msgstr ""
973
 
974
+ #: admin/admin.php:1289 admin/admin.php:1451
975
  msgid "Support"
976
  msgstr "Service d'assistance"
977
 
978
+ #: admin/admin.php:1290
979
  msgid "Reviews"
980
  msgstr ""
981
 
982
+ #: admin/admin.php:1313
983
  #, fuzzy
984
  msgid "Overall Popular Posts"
985
  msgstr "Voir tous les postes populaires"
986
 
987
+ #: admin/admin.php:1428
988
  msgid "Settings"
989
  msgstr "Paramètres"
990
 
991
+ #: admin/admin.php:1452
992
  msgid "Donate"
993
  msgstr "Conribuer"
994
 
1002
  msgid "Display popular posts"
1003
  msgstr "Postes populaires journaliers"
1004
 
1005
+ #: includes/class-top-10-widget.php:71
1006
  msgid "Title"
1007
  msgstr ""
1008
 
1009
+ #: includes/class-top-10-widget.php:76
1010
  msgid "No. of posts"
1011
  msgstr ""
1012
 
1013
+ #: includes/class-top-10-widget.php:81
1014
  msgid "Overall"
1015
  msgstr ""
1016
 
1017
+ #: includes/class-top-10-widget.php:82
1018
  msgid "Custom time period (Enter below)"
1019
  msgstr ""
1020
 
1021
+ #: includes/class-top-10-widget.php:86
1022
  msgid "In days and hours (applies only to custom option above)"
1023
  msgstr ""
1024
 
1025
+ #: includes/class-top-10-widget.php:88
1026
  msgid "days"
1027
  msgstr ""
1028
 
1029
+ #: includes/class-top-10-widget.php:91
1030
  msgid "hours"
1031
  msgstr ""
1032
 
1033
+ #: includes/class-top-10-widget.php:96
1034
  #, fuzzy
1035
  msgid "Show count?"
1036
  msgstr "Afficher le fragment du message dans la liste?"
1037
 
1038
+ #: includes/class-top-10-widget.php:101
1039
  #, fuzzy
1040
  msgid "Show excerpt?"
1041
  msgstr "Afficher le fragment du message dans la liste?"
1042
 
1043
+ #: includes/class-top-10-widget.php:106
1044
  #, fuzzy
1045
  msgid "Show author?"
1046
  msgstr "Afficher le fragment du message dans la liste?"
1047
 
1048
+ #: includes/class-top-10-widget.php:111
1049
  #, fuzzy
1050
  msgid "Show date?"
1051
  msgstr "Afficher le fragment du message dans la liste?"
1052
 
1053
+ #: includes/class-top-10-widget.php:117
1054
  #, fuzzy
1055
  msgid "Thumbnails inline, before title"
1056
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
1057
 
1058
+ #: includes/class-top-10-widget.php:118
1059
  #, fuzzy
1060
  msgid "Thumbnails inline, after title"
1061
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
1062
 
1063
+ #: includes/class-top-10-widget.php:119
1064
  #, fuzzy
1065
  msgid "Only thumbnails, no text"
1066
  msgstr "Afficher uniquement le thumbnail, sans le texte"
1067
 
1068
+ #: includes/class-top-10-widget.php:120
1069
  #, fuzzy
1070
  msgid "No thumbnails, only text."
1071
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
1072
 
1073
+ #: includes/class-top-10-widget.php:125
1074
  #, fuzzy
1075
  msgid "Thumbnail height"
1076
  msgstr "Options thumbnail des messages:"
1077
 
1078
+ #: includes/class-top-10-widget.php:131
1079
  #, fuzzy
1080
  msgid "Thumbnail width"
1081
  msgstr "Options thumbnail des messages:"
1082
 
1083
+ #: includes/class-top-10-widget.php:136
1084
+ msgid "Post types to include:"
1085
+ msgstr ""
1086
+
1087
+ #: top-10.php:756
1088
  msgid " by "
1089
  msgstr ""
1090
 
1091
+ #: top-10.php:823
1092
  #, php-format
1093
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1094
  msgstr ""
1095
 
1096
+ #: top-10.php:1113
1097
  msgid "<h3>Popular Posts</h3>"
1098
  msgstr "<h3>Postes populaires</h3>"
1099
 
1100
+ #: top-10.php:1114
1101
  msgid "<h3>Daily Popular</h3>"
1102
  msgstr "<h3>Populaires Journaliers</h3>"
1103
 
1104
+ #: top-10.php:1115
1105
  #, fuzzy
1106
  msgid "No top posts yet"
1107
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1108
 
1109
+ #: top-10.php:1507
1110
+ msgid "thumb_timthumb argument has been deprecated"
1111
+ msgstr ""
1112
+
1113
+ #: top-10.php:1511
1114
+ msgid "thumb_timthumb_q argument has been deprecated"
1115
+ msgstr ""
1116
+
1117
+ #: top-10.php:1515
1118
+ msgid "filter argument has been deprecated"
1119
+ msgstr ""
1120
+
1121
+ #: top-10.php:1853
1122
  msgid "Once Weekly"
1123
  msgstr ""
1124
 
1125
+ #: top-10.php:1857
1126
  msgid "Once Fortnightly"
1127
  msgstr ""
1128
 
1129
+ #: top-10.php:1861
1130
  msgid "Once Monthly"
1131
  msgstr ""
1132
 
1133
+ #: top-10.php:1865
1134
  msgid "Once quarterly"
1135
  msgstr ""
1136
 
1137
+ #~ msgid "Reset count"
1138
+ #~ msgstr "Réinitialiser le compteur"
1139
+
1140
  #~ msgid "Daily Popular should contain views of how many days? "
1141
  #~ msgstr ""
1142
  #~ "Le populaire journalier doit contenir l'information sur le nombre des "
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: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-01-03 01:53-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"
@@ -61,7 +61,7 @@ msgstr "roimhe Seo"
61
  msgid "Next"
62
  msgstr "Ar Aghaidh"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Poist Coitianta"
67
 
@@ -69,7 +69,7 @@ msgstr "Poist Coitianta"
69
  msgid "Daily Popular"
70
  msgstr "laethúil Coitianta"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -98,126 +98,136 @@ msgstr ""
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
- #: admin/admin.php:163
102
  msgid "Options saved successfully."
103
  msgstr "Roghanna shábháil go rathúil."
104
 
105
- #: admin/admin.php:173
 
 
 
 
 
 
106
  msgid "Options set to Default."
107
  msgstr "Roghanna leagtha chun Réamhshocrú."
108
 
109
- #: admin/admin.php:179
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Teideal an post tóir:"
113
 
114
- #: admin/admin.php:185
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Teideal ar tóir an bpost:"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Top 10"
145
 
146
- #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:295 admin/admin.php:706
159
- #: includes/class-top-10-widget.php:103
160
  msgid "Thumbnail options"
161
  msgstr ""
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -264,59 +274,59 @@ msgstr ""
264
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
265
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
266
 
267
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "roghanna"
272
 
273
- #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
277
 
278
- #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
- #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Leathanach"
286
 
287
- #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
- #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
- #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
- #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
- #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
- #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
- #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
318
 
319
- #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -324,11 +334,11 @@ msgid ""
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
- #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
- #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -336,394 +346,384 @@ msgid ""
336
  "option."
337
  msgstr ""
338
 
339
- #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
- #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
- #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
353
 
354
- #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
- #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
363
 
364
- #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
- #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
372
 
373
- #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
- #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
- #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
- #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
391
 
392
- #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
- #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "An líon post tóir a thaispeáint:"
401
 
402
- #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
- #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
- #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
- #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
- #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr ""
423
 
424
- #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
- #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Teideal an post tóir:"
434
 
435
- #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Teideal ar tóir an bpost:"
438
 
439
- #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
- #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
- #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
- #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr ""
454
 
455
- #: admin/admin.php:603
 
 
 
 
 
456
  msgid "Length of excerpt (in words): "
457
  msgstr ""
458
 
459
- #: admin/admin.php:609
460
  msgid "Show post author in list?"
461
  msgstr ""
462
 
463
- #: admin/admin.php:615
464
- msgid "Show post date in list?"
 
465
  msgstr ""
466
 
467
- #: admin/admin.php:621
468
- msgid "Limit post title length (in characters)"
469
  msgstr ""
470
 
471
- #: admin/admin.php:627
472
- msgid "Show view count in list?"
 
473
  msgstr ""
474
 
475
- #: admin/admin.php:633
476
- msgid "Always display latest post count in the daily lists?"
477
  msgstr ""
478
 
479
- #: admin/admin.php:636
480
- msgid ""
481
- "This option uses JavaScript and will increase your page load time. When you "
482
- "enable this option, the daily widget will not use the options set there, but "
483
- "options will need to be set on this screen."
484
  msgstr ""
485
 
486
- #: admin/admin.php:640
487
  msgid "Open links in new window"
488
  msgstr ""
489
 
490
- #: admin/admin.php:646
491
  msgid "Add nofollow attribute to links in the list"
492
  msgstr ""
493
 
494
- #: admin/admin.php:652
495
  msgid "Exclude display of related posts on these posts / pages"
496
  msgstr ""
497
 
498
- #: admin/admin.php:659
499
  msgid "Customise the list HTML"
500
  msgstr ""
501
 
502
- #: admin/admin.php:662
503
  #, fuzzy
504
  msgid "HTML to display before the list of posts: "
505
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
506
 
507
- #: admin/admin.php:668
508
  #, fuzzy
509
  msgid "HTML to display before each list item: "
510
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
511
 
512
- #: admin/admin.php:674
513
  #, fuzzy
514
  msgid "HTML to display after each list item: "
515
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
516
 
517
- #: admin/admin.php:680
518
  #, fuzzy
519
  msgid "HTML to display after the list of posts: "
520
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
521
 
522
- #: admin/admin.php:721
523
  msgid "Location of post thumbnail:"
524
  msgstr ""
525
 
526
- #: admin/admin.php:725
527
  #, fuzzy
528
  msgid "Display thumbnails inline with posts, before title"
529
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
530
 
531
- #: admin/admin.php:730
532
  #, fuzzy
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
535
 
536
- #: admin/admin.php:735
537
  #, fuzzy
538
  msgid "Display only thumbnails, no text"
539
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
540
 
541
- #: admin/admin.php:740
542
  #, fuzzy
543
  msgid "Do not display thumbnails, only text."
544
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
545
 
546
- #: admin/admin.php:744
 
 
 
 
 
 
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
- #: admin/admin.php:768
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
- #: admin/admin.php:771
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If "
557
  "you have chosen Custom size above, then enter the width, height and crop "
558
  "settings below. For best results, use a cropped image."
559
  msgstr ""
560
 
561
- #: admin/admin.php:772
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be "
564
  "automatically resized."
565
  msgstr ""
566
 
567
- #: admin/admin.php:773
568
  #, php-format
569
  msgid ""
570
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
571
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
572
- "regenerate all image sizes."
573
  msgstr ""
574
 
575
- #: admin/admin.php:776
576
  msgid "Width of custom thumbnail:"
577
  msgstr ""
578
 
579
- #: admin/admin.php:781
580
  msgid "Height of custom thumbnail"
581
  msgstr ""
582
 
583
- #: admin/admin.php:786
584
  msgid "Crop mode:"
585
  msgstr ""
586
 
587
- #: admin/admin.php:790
588
  msgid ""
589
  "By default, thumbnails will be proportionately cropped. Check this box to "
590
  "hard crop the thumbnails."
591
  msgstr ""
592
 
593
- #: admin/admin.php:791
594
  #, php-format
595
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
596
  msgstr ""
597
 
598
- #: admin/admin.php:793
599
  msgid ""
600
- "Since you're using the default styles set under the Custom Styles section, "
601
- "the width and height is fixed at 65px and crop mode is enabled."
602
  msgstr ""
603
 
604
- #: admin/admin.php:798
605
  msgid "Style attributes / Width and Height HTML attributes:"
606
  msgstr ""
607
 
608
- #: admin/admin.php:802
609
  msgid "Style attributes are used for width and height."
610
  msgstr ""
611
 
612
- #: admin/admin.php:807
613
  msgid "HTML width and height attributes are used for width and height."
614
  msgstr ""
615
 
616
- #: admin/admin.php:811
617
- msgid "Use timthumb to generate thumbnails? "
618
- msgstr ""
619
-
620
- #: admin/admin.php:814
621
- msgid ""
622
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
623
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
624
- msgstr ""
625
-
626
- #: admin/admin.php:817
627
- msgid "Quality of thumbnails generated by timthumb:"
628
- msgstr ""
629
-
630
- #: admin/admin.php:820
631
- msgid ""
632
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
633
- "file size. Suggested maximum value is 95. Default is 75."
634
- msgstr ""
635
-
636
- #: admin/admin.php:823
637
  msgid "Post thumbnail meta field name: "
638
  msgstr ""
639
 
640
- #: admin/admin.php:826
641
  msgid ""
642
  "The value of this field should contain the image source and is set in the "
643
  "<em>Add New Post</em> screen"
644
  msgstr ""
645
 
646
- #: admin/admin.php:829
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
649
  "from the post?"
650
  msgstr ""
651
 
652
- #: admin/admin.php:832
653
  msgid ""
654
  "This could slow down the loading of your page if the first image in the "
655
  "related posts is large in file-size"
656
  msgstr ""
657
 
658
- #: admin/admin.php:835
659
  msgid "Use default thumbnail? "
660
  msgstr ""
661
 
662
- #: admin/admin.php:838
663
  msgid ""
664
  "If checked, when no thumbnail is found, show a default one from the URL "
665
  "below. If not checked and no thumbnail is found, no image will be shown."
666
  msgstr ""
667
 
668
- #: admin/admin.php:841
669
  msgid "Default thumbnail: "
670
  msgstr ""
671
 
672
- #: admin/admin.php:845
673
  msgid ""
674
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
675
  "then it will check the meta field. If this is not available, then it will "
676
  "show the default image as specified above"
677
  msgstr ""
678
 
679
- #: admin/admin.php:869
680
  msgid "Custom CSS"
681
  msgstr ""
682
 
683
- #: admin/admin.php:884
684
  msgid "Use default style included in the plugin?"
685
  msgstr ""
686
 
687
- #: admin/admin.php:887
688
  msgid ""
689
  "Top 10 includes a default style that makes your popular posts list to look "
690
  "beautiful. Check the box above if you want to use this."
691
  msgstr ""
692
 
693
- #: admin/admin.php:888
694
  msgid ""
695
  "Enabling this option will turn on the thumbnails and set their width and "
696
  "height to 65px. It will also turn off the display of the author, excerpt and "
697
  "date if already enabled. Disabling this option will not revert any settings."
698
  msgstr ""
699
 
700
- #: admin/admin.php:889
701
  #, php-format
702
  msgid ""
703
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
704
  msgstr ""
705
 
706
- #: admin/admin.php:892
707
  msgid "Custom CSS to add to header:"
708
  msgstr ""
709
 
710
- #: admin/admin.php:897
711
  msgid ""
712
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
713
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
714
  "available CSS classes to style."
715
  msgstr ""
716
 
717
- #: admin/admin.php:917
718
  #, fuzzy
719
  msgid "Default Options"
720
  msgstr "roghanna"
721
 
722
- #: admin/admin.php:917
723
  msgid "Do you want to set options to Default?"
724
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
725
 
726
- #: admin/admin.php:941
727
  msgid ""
728
  "Over time the Daily Top 10 database grows in size, which reduces the "
729
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -731,229 +731,247 @@ msgid ""
731
  "will automatically delete entries older than 90 days."
732
  msgstr ""
733
 
734
- #: admin/admin.php:942
735
  msgid ""
736
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
737
  "everytime the job is rescheduled (i.e. you change the settings below)."
738
  msgstr ""
739
 
740
- #: admin/admin.php:945
741
  msgid "Enable scheduled maintenance of daily tables:"
742
  msgstr ""
743
 
744
- #: admin/admin.php:949
745
  msgid "Time to run maintenance"
746
  msgstr ""
747
 
748
- #: admin/admin.php:950
749
  msgid "hrs"
750
  msgstr ""
751
 
752
- #: admin/admin.php:950
753
  msgid "min"
754
  msgstr ""
755
 
756
- #: admin/admin.php:952
757
  msgid "How often should the maintenance be run:"
758
  msgstr ""
759
 
760
- #: admin/admin.php:956
761
  msgid "Daily"
762
  msgstr ""
763
 
764
- #: admin/admin.php:960
765
  msgid "Weekly"
766
  msgstr ""
767
 
768
- #: admin/admin.php:964
769
  msgid "Fortnightly"
770
  msgstr ""
771
 
772
- #: admin/admin.php:968
773
  msgid "Monthly"
774
  msgstr ""
775
 
776
- #: admin/admin.php:977
777
  msgid "The cron job has been scheduled. Maintenance will run "
778
  msgstr ""
779
 
780
- #: admin/admin.php:982
781
  msgid "The cron job is missing. Please resave this page to add the job"
782
  msgstr ""
783
 
784
- #: admin/admin.php:987
785
  msgid "Maintenance is turned off"
786
  msgstr ""
787
 
788
- #: admin/admin.php:1001
789
- msgid "Reset count"
790
  msgstr ""
791
 
792
- #: admin/admin.php:1004
793
  msgid ""
794
  "This cannot be reversed. Make sure that your database has been backed up "
795
  "before proceeding"
796
  msgstr ""
797
 
798
- #: admin/admin.php:1007
799
  #, fuzzy
800
  msgid "Reset Popular Posts"
801
  msgstr "Poist Coitianta"
802
 
803
- #: admin/admin.php:1007
804
  msgid "Are you sure you want to reset the popular posts?"
805
  msgstr ""
806
 
807
- #: admin/admin.php:1008
808
  #, fuzzy
809
  msgid "Reset Daily Popular Posts"
810
  msgstr "Poist Coitianta Laethúil"
811
 
812
- #: admin/admin.php:1008
813
  msgid "Are you sure you want to reset the daily popular posts?"
814
  msgstr ""
815
 
816
- #: admin/admin.php:1009
817
- msgid "Clear duplicates"
818
  msgstr ""
819
 
820
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
821
  msgid "This will delete the duplicate entries in the tables. Proceed?"
822
  msgstr ""
823
 
824
- #: admin/admin.php:1022
825
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
826
  msgstr ""
827
 
828
- #: admin/admin.php:1025
829
  msgid ""
830
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
831
  "activate the plugin independently for each site. This would have resulted in "
832
  "two tables being created for each site in the network."
833
  msgstr ""
834
 
835
- #: admin/admin.php:1026
836
  msgid ""
837
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
838
  "your database clean. You can use this tool to import the recorded counts "
839
  "from v1.x tables to the new v2.x table format."
840
  msgstr ""
841
 
842
- #: admin/admin.php:1029
843
  msgid ""
844
  "If you do not see any tables below, then it means that either all data has "
845
  "already been imported or no relevant information has been found."
846
  msgstr ""
847
 
848
- #: admin/admin.php:1032
849
  msgid ""
850
  "After running the importer, please verify that all the counts have been "
851
  "successfully imported. Only then should you delete any old tables!"
852
  msgstr ""
853
 
854
- #: admin/admin.php:1066
855
  msgid "Blog ID"
856
  msgstr ""
857
 
858
- #: admin/admin.php:1069
859
  msgid "Status"
860
  msgstr ""
861
 
862
- #: admin/admin.php:1072
863
  msgid "Select to import"
864
  msgstr ""
865
 
866
- #: admin/admin.php:1082
867
  msgid "Blog #"
868
  msgstr ""
869
 
870
- #: admin/admin.php:1092
871
  msgid "Not imported"
872
  msgstr ""
873
 
874
- #: admin/admin.php:1096
875
  msgid "Imported"
876
  msgstr ""
877
 
878
- #: admin/admin.php:1117
879
  msgid "Begin import"
880
  msgstr ""
881
 
882
- #: admin/admin.php:1118
883
  msgid "Delete selected tables"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1119
887
  msgid "Delete all imported tables"
888
  msgstr ""
889
 
890
- #: admin/admin.php:1176 admin/admin.php:1272
891
  msgid "Daily Popular Posts"
892
  msgstr "Poist Coitianta Laethúil"
893
 
894
- #: admin/admin.php:1206
895
  #, fuzzy
896
  msgid "Support the development"
897
  msgstr "Tacú le Forbairt"
898
 
899
- #: admin/admin.php:1213
900
  msgid "Donation for Top 10"
901
  msgstr ""
902
 
903
- #: admin/admin.php:1215
904
  msgid "Enter amount in USD: "
905
  msgstr ""
906
 
907
- #: admin/admin.php:1219
908
  msgid "Send your donation to the author of Top 10"
909
  msgstr ""
910
 
911
- #: admin/admin.php:1226
912
  msgid "Follow me"
913
  msgstr ""
914
 
915
- #: admin/admin.php:1236
916
  msgid "Quick links"
917
  msgstr ""
918
 
919
- #: admin/admin.php:1240
920
  msgid "Top 10 plugin page"
921
  msgstr ""
922
 
923
- #: admin/admin.php:1241
924
  msgid "Top 10 Github page"
925
  msgstr ""
926
 
927
- #: admin/admin.php:1242
928
  msgid "Other plugins"
929
  msgstr ""
930
 
931
- #: admin/admin.php:1243
932
  msgid "Ajay's blog"
933
  msgstr ""
934
 
935
- #: admin/admin.php:1244
936
  msgid "FAQ"
937
  msgstr ""
938
 
939
- #: admin/admin.php:1245 admin/admin.php:1403
940
  msgid "Support"
941
  msgstr ""
942
 
943
- #: admin/admin.php:1246
944
  msgid "Reviews"
945
  msgstr ""
946
 
947
- #: admin/admin.php:1269
948
  #, fuzzy
949
  msgid "Overall Popular Posts"
950
  msgstr "Féach ar Poist Coitianta Foriomlán"
951
 
952
- #: admin/admin.php:1380
953
  msgid "Settings"
954
  msgstr ""
955
 
956
- #: admin/admin.php:1404
957
  msgid "Donate"
958
  msgstr ""
959
 
@@ -967,113 +985,129 @@ msgstr "Poist Coitianta"
967
  msgid "Display popular posts"
968
  msgstr "Poist Coitianta Laethúil"
969
 
970
- #: includes/class-top-10-widget.php:59
971
  msgid "Title"
972
  msgstr ""
973
 
974
- #: includes/class-top-10-widget.php:64
975
  msgid "No. of posts"
976
  msgstr ""
977
 
978
- #: includes/class-top-10-widget.php:69
979
  msgid "Overall"
980
  msgstr ""
981
 
982
- #: includes/class-top-10-widget.php:70
983
  msgid "Custom time period (Enter below)"
984
  msgstr ""
985
 
986
- #: includes/class-top-10-widget.php:74
987
  msgid "In days and hours (applies only to custom option above)"
988
  msgstr ""
989
 
990
- #: includes/class-top-10-widget.php:76
991
  msgid "days"
992
  msgstr ""
993
 
994
- #: includes/class-top-10-widget.php:79
995
  msgid "hours"
996
  msgstr ""
997
 
998
- #: includes/class-top-10-widget.php:84
999
  msgid "Show count?"
1000
  msgstr ""
1001
 
1002
- #: includes/class-top-10-widget.php:89
1003
  msgid "Show excerpt?"
1004
  msgstr ""
1005
 
1006
- #: includes/class-top-10-widget.php:94
1007
  msgid "Show author?"
1008
  msgstr ""
1009
 
1010
- #: includes/class-top-10-widget.php:99
1011
  msgid "Show date?"
1012
  msgstr ""
1013
 
1014
- #: includes/class-top-10-widget.php:105
1015
  #, fuzzy
1016
  msgid "Thumbnails inline, before title"
1017
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1018
 
1019
- #: includes/class-top-10-widget.php:106
1020
  #, fuzzy
1021
  msgid "Thumbnails inline, after title"
1022
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1023
 
1024
- #: includes/class-top-10-widget.php:107
1025
  #, fuzzy
1026
  msgid "Only thumbnails, no text"
1027
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1028
 
1029
- #: includes/class-top-10-widget.php:108
1030
  #, fuzzy
1031
  msgid "No thumbnails, only text."
1032
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1033
 
1034
- #: includes/class-top-10-widget.php:113
1035
  msgid "Thumbnail height"
1036
  msgstr ""
1037
 
1038
- #: includes/class-top-10-widget.php:118
1039
  msgid "Thumbnail width"
1040
  msgstr ""
1041
 
1042
- #: top-10.php:879
 
 
 
 
1043
  msgid " by "
1044
  msgstr ""
1045
 
1046
- #: top-10.php:930
1047
  #, php-format
1048
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1049
  msgstr ""
1050
 
1051
- #: top-10.php:1029
1052
  msgid "<h3>Popular Posts</h3>"
1053
  msgstr "<h3>Poist Coitianta </ h3>"
1054
 
1055
- #: top-10.php:1030
1056
  msgid "<h3>Daily Popular</h3>"
1057
  msgstr "<h3> laethúil Coitianta </ h3>"
1058
 
1059
- #: top-10.php:1031
1060
  #, fuzzy
1061
  msgid "No top posts yet"
1062
  msgstr "Teideal an post tóir:"
1063
 
1064
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1065
  msgid "Once Weekly"
1066
  msgstr ""
1067
 
1068
- #: top-10.php:1694
1069
  msgid "Once Fortnightly"
1070
  msgstr ""
1071
 
1072
- #: top-10.php:1698
1073
  msgid "Once Monthly"
1074
  msgstr ""
1075
 
1076
- #: top-10.php:1702
1077
  msgid "Once quarterly"
1078
  msgstr ""
1079
 
2
  msgstr ""
3
  "Project-Id-Version: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
61
  msgid "Next"
62
  msgstr "Ar Aghaidh"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Poist Coitianta"
67
 
69
  msgid "Daily Popular"
70
  msgstr "laethúil Coitianta"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:171
102
  msgid "Options saved successfully."
103
  msgstr "Roghanna shábháil go rathúil."
104
 
105
+ #: admin/admin.php:174
106
+ msgid ""
107
+ "Default styles selected. Thumbnail width, height and crop settings have been "
108
+ "fixed. Author, Excerpt and Date will not be displayed."
109
+ msgstr ""
110
+
111
+ #: admin/admin.php:190
112
  msgid "Options set to Default."
113
  msgstr "Roghanna leagtha chun Réamhshocrú."
114
 
115
+ #: admin/admin.php:197
116
  #, fuzzy
117
  msgid "Top 10 popular posts reset"
118
  msgstr "Teideal an post tóir:"
119
 
120
+ #: admin/admin.php:204
121
  #, fuzzy
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "Teideal ar tóir an bpost:"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr ""
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid ""
147
  "Selected tables have been deleted. Note that only imported tables have been "
148
  "deleted."
149
  msgstr ""
150
 
151
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
152
  #, fuzzy
153
  msgid "Top 10 Settings"
154
  msgstr "Top 10"
155
 
156
+ #: admin/admin.php:321 admin/admin.php:343
157
  msgid "General options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:322 admin/admin.php:435
161
  msgid "Counter and tracker options"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:323 admin/admin.php:540
165
  msgid "Popular post list options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:324 admin/admin.php:742
169
+ #: includes/class-top-10-widget.php:115
170
  msgid "Thumbnail options"
171
  msgstr ""
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
274
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
275
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
276
 
277
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
278
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
279
  #, fuzzy
280
  msgid "Save Options"
281
  msgstr "roghanna"
282
 
283
+ #: admin/admin.php:451
284
  #, fuzzy
285
  msgid "Display number of views on:"
286
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
287
 
288
+ #: admin/admin.php:453
289
  msgid "Posts"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:454
293
  #, fuzzy
294
  msgid "Pages"
295
  msgstr "Leathanach"
296
 
297
+ #: admin/admin.php:455
298
  msgid "Home page"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:456
302
  msgid "Feeds"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:457
306
  msgid "Category archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:458
310
  msgid "Tag archives"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:459
314
  msgid "Other archives"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:460
318
  msgid ""
319
  "If you choose to disable this, please add <code>&lt;?php if "
320
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
321
  "</code> to your template file where you want it displayed"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:464
325
  #, fuzzy
326
  msgid "Format to display the post views:"
327
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
328
 
329
+ #: admin/admin.php:467
330
  msgid ""
331
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
332
  "%</code> to display the daily count and <code>%overallcount%</code> to "
334
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
335
  msgstr ""
336
 
337
+ #: admin/admin.php:471
338
  msgid "What do display when there are no visits?"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:474
342
  msgid ""
343
  "This text applies only when there are 0 hits for the post and it isn't a "
344
  "single page. e.g. if you display post views on the homepage or archives then "
346
  "option."
347
  msgstr ""
348
 
349
+ #: admin/admin.php:478
350
  msgid "Always display latest post count"
351
  msgstr ""
352
 
353
+ #: admin/admin.php:481
354
  msgid ""
355
  "This option uses JavaScript and will increase your page load time. Turn this "
356
  "off if you are not using caching plugins or are OK with displaying older "
357
  "cached counts."
358
  msgstr ""
359
 
360
+ #: admin/admin.php:485
361
  msgid "Track visits of authors on their own posts?"
362
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
363
 
364
+ #: admin/admin.php:488
365
  msgid ""
366
  "Disabling this option will stop authors visits tracked on their own posts"
367
  msgstr ""
368
 
369
+ #: admin/admin.php:492
370
  #, fuzzy
371
  msgid "Track visits of admins?"
372
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
373
 
374
+ #: admin/admin.php:495
375
  msgid "Disabling this option will stop admin visits being tracked."
376
  msgstr ""
377
 
378
+ #: admin/admin.php:499
379
  #, fuzzy
380
  msgid "Track visits of Editors?"
381
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
382
 
383
+ #: admin/admin.php:502
384
  msgid "Disabling this option will stop editor visits being tracked."
385
  msgstr ""
386
 
387
+ #: admin/admin.php:506
388
  msgid "Display page views on Posts and Pages in Admin"
389
  msgstr ""
390
 
391
+ #: admin/admin.php:509
392
  msgid ""
393
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
394
  "and All Pages"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:513
398
  #, fuzzy
399
  msgid "Show number of views to non-admins"
400
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
401
 
402
+ #: admin/admin.php:516
403
  msgid ""
404
  "If you disable this then non-admins won't see the above columns or view the "
405
  "independent pages with the top posts"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:556
409
  msgid "Number of popular posts to display: "
410
  msgstr "An líon post tóir a thaispeáint:"
411
 
412
+ #: admin/admin.php:559
413
  msgid ""
414
  "Maximum number of posts that will be displayed in the list. This option is "
415
  "used if you don't specify the number of posts in the widget or shortcodes"
416
  msgstr ""
417
 
418
+ #: admin/admin.php:563
419
  msgid "Post types to include in results (including custom post types)"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:577
423
  msgid "List of post or page IDs to exclude from the results: "
424
  msgstr ""
425
 
426
+ #: admin/admin.php:579 admin/admin.php:691
427
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
428
  msgstr ""
429
 
430
+ #: admin/admin.php:583
431
  msgid "Exclude Categories: "
432
  msgstr ""
433
 
434
+ #: admin/admin.php:598
435
  msgid ""
436
  "Comma separated list of category slugs. The field above has an autocomplete "
437
  "so simply start typing in the starting letters and it will prompt you with "
438
  "options"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:603
442
  msgid "Title of popular posts: "
443
  msgstr "Teideal an post tóir:"
444
 
445
+ #: admin/admin.php:609
446
  msgid "Title of daily popular posts: "
447
  msgstr "Teideal ar tóir an bpost:"
448
 
449
+ #: admin/admin.php:615
450
  msgid "When there are no posts, what should be shown?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:619
454
  msgid "Blank Output"
455
  msgstr ""
456
 
457
+ #: admin/admin.php:623
458
  msgid "Display:"
459
  msgstr ""
460
 
461
+ #: admin/admin.php:628
462
  msgid "Show post excerpt in list?"
463
  msgstr ""
464
 
465
+ #: admin/admin.php:633
466
+ msgid ""
467
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
468
+ msgstr ""
469
+
470
+ #: admin/admin.php:638
471
  msgid "Length of excerpt (in words): "
472
  msgstr ""
473
 
474
+ #: admin/admin.php:644
475
  msgid "Show post author in list?"
476
  msgstr ""
477
 
478
+ #: admin/admin.php:649
479
+ msgid ""
480
+ "Default style selected under the Custom Styles. Author display is disabled."
481
  msgstr ""
482
 
483
+ #: admin/admin.php:654
484
+ msgid "Show post date in list?"
485
  msgstr ""
486
 
487
+ #: admin/admin.php:659
488
+ msgid ""
489
+ "Default style selected under the Custom Styles. Date display is disabled."
490
  msgstr ""
491
 
492
+ #: admin/admin.php:664
493
+ msgid "Limit post title length (in characters)"
494
  msgstr ""
495
 
496
+ #: admin/admin.php:670
497
+ msgid "Show view count in list?"
 
 
 
498
  msgstr ""
499
 
500
+ #: admin/admin.php:676
501
  msgid "Open links in new window"
502
  msgstr ""
503
 
504
+ #: admin/admin.php:682
505
  msgid "Add nofollow attribute to links in the list"
506
  msgstr ""
507
 
508
+ #: admin/admin.php:688
509
  msgid "Exclude display of related posts on these posts / pages"
510
  msgstr ""
511
 
512
+ #: admin/admin.php:695
513
  msgid "Customise the list HTML"
514
  msgstr ""
515
 
516
+ #: admin/admin.php:698
517
  #, fuzzy
518
  msgid "HTML to display before the list of posts: "
519
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
520
 
521
+ #: admin/admin.php:704
522
  #, fuzzy
523
  msgid "HTML to display before each list item: "
524
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
525
 
526
+ #: admin/admin.php:710
527
  #, fuzzy
528
  msgid "HTML to display after each list item: "
529
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
530
 
531
+ #: admin/admin.php:716
532
  #, fuzzy
533
  msgid "HTML to display after the list of posts: "
534
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
535
 
536
+ #: admin/admin.php:757
537
  msgid "Location of post thumbnail:"
538
  msgstr ""
539
 
540
+ #: admin/admin.php:761
541
  #, fuzzy
542
  msgid "Display thumbnails inline with posts, before title"
543
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
544
 
545
+ #: admin/admin.php:766
546
  #, fuzzy
547
  msgid "Display thumbnails inline with posts, after title"
548
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
549
 
550
+ #: admin/admin.php:771
551
  #, fuzzy
552
  msgid "Display only thumbnails, no text"
553
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
554
 
555
+ #: admin/admin.php:776
556
  #, fuzzy
557
  msgid "Do not display thumbnails, only text."
558
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
559
 
560
+ #: admin/admin.php:780
561
+ msgid ""
562
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
563
+ "to be inline before title"
564
+ msgstr ""
565
+
566
+ #: admin/admin.php:784
567
  msgid "Thumbnail size:"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:808
571
  msgid "Custom size"
572
  msgstr ""
573
 
574
+ #: admin/admin.php:811
575
  msgid ""
576
  "You can choose from existing image sizes above or create a custom size. If "
577
  "you have chosen Custom size above, then enter the width, height and crop "
578
  "settings below. For best results, use a cropped image."
579
  msgstr ""
580
 
581
+ #: admin/admin.php:812
582
  msgid ""
583
  "If you change the width and/or height below, existing images will not be "
584
  "automatically resized."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:813
588
  #, php-format
589
  msgid ""
590
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
591
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
592
+ "all image sizes."
593
  msgstr ""
594
 
595
+ #: admin/admin.php:816
596
  msgid "Width of custom thumbnail:"
597
  msgstr ""
598
 
599
+ #: admin/admin.php:821
600
  msgid "Height of custom thumbnail"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:826
604
  msgid "Crop mode:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:830
608
  msgid ""
609
  "By default, thumbnails will be proportionately cropped. Check this box to "
610
  "hard crop the thumbnails."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:831
614
  #, php-format
615
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
616
  msgstr ""
617
 
618
+ #: admin/admin.php:834
619
  msgid ""
620
+ "Default style selected under the Custom Styles. Thumbnail width and height "
621
+ "is fixed at 65px and crop mode is enabled."
622
  msgstr ""
623
 
624
+ #: admin/admin.php:839
625
  msgid "Style attributes / Width and Height HTML attributes:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:843
629
  msgid "Style attributes are used for width and height."
630
  msgstr ""
631
 
632
+ #: admin/admin.php:848
633
  msgid "HTML width and height attributes are used for width and height."
634
  msgstr ""
635
 
636
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
  msgid "Post thumbnail meta field name: "
638
  msgstr ""
639
 
640
+ #: admin/admin.php:855
641
  msgid ""
642
  "The value of this field should contain the image source and is set in the "
643
  "<em>Add New Post</em> screen"
644
  msgstr ""
645
 
646
+ #: admin/admin.php:858
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
649
  "from the post?"
650
  msgstr ""
651
 
652
+ #: admin/admin.php:861
653
  msgid ""
654
  "This could slow down the loading of your page if the first image in the "
655
  "related posts is large in file-size"
656
  msgstr ""
657
 
658
+ #: admin/admin.php:864
659
  msgid "Use default thumbnail? "
660
  msgstr ""
661
 
662
+ #: admin/admin.php:867
663
  msgid ""
664
  "If checked, when no thumbnail is found, show a default one from the URL "
665
  "below. If not checked and no thumbnail is found, no image will be shown."
666
  msgstr ""
667
 
668
+ #: admin/admin.php:870
669
  msgid "Default thumbnail: "
670
  msgstr ""
671
 
672
+ #: admin/admin.php:874
673
  msgid ""
674
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
675
  "then it will check the meta field. If this is not available, then it will "
676
  "show the default image as specified above"
677
  msgstr ""
678
 
679
+ #: admin/admin.php:898
680
  msgid "Custom CSS"
681
  msgstr ""
682
 
683
+ #: admin/admin.php:913
684
  msgid "Use default style included in the plugin?"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:916
688
  msgid ""
689
  "Top 10 includes a default style that makes your popular posts list to look "
690
  "beautiful. Check the box above if you want to use this."
691
  msgstr ""
692
 
693
+ #: admin/admin.php:917
694
  msgid ""
695
  "Enabling this option will turn on the thumbnails and set their width and "
696
  "height to 65px. It will also turn off the display of the author, excerpt and "
697
  "date if already enabled. Disabling this option will not revert any settings."
698
  msgstr ""
699
 
700
+ #: admin/admin.php:918
701
  #, php-format
702
  msgid ""
703
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
704
  msgstr ""
705
 
706
+ #: admin/admin.php:921
707
  msgid "Custom CSS to add to header:"
708
  msgstr ""
709
 
710
+ #: admin/admin.php:926
711
  msgid ""
712
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
713
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
714
  "available CSS classes to style."
715
  msgstr ""
716
 
717
+ #: admin/admin.php:946
718
  #, fuzzy
719
  msgid "Default Options"
720
  msgstr "roghanna"
721
 
722
+ #: admin/admin.php:946
723
  msgid "Do you want to set options to Default?"
724
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
725
 
726
+ #: admin/admin.php:970
727
  msgid ""
728
  "Over time the Daily Top 10 database grows in size, which reduces the "
729
  "performance of the plugin. Cleaning the database at regular intervals could "
731
  "will automatically delete entries older than 90 days."
732
  msgstr ""
733
 
734
+ #: admin/admin.php:971
735
  msgid ""
736
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
737
  "everytime the job is rescheduled (i.e. you change the settings below)."
738
  msgstr ""
739
 
740
+ #: admin/admin.php:974
741
  msgid "Enable scheduled maintenance of daily tables:"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:978
745
  msgid "Time to run maintenance"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:979
749
  msgid "hrs"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:979
753
  msgid "min"
754
  msgstr ""
755
 
756
+ #: admin/admin.php:981
757
  msgid "How often should the maintenance be run:"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:985
761
  msgid "Daily"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:989
765
  msgid "Weekly"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:993
769
  msgid "Fortnightly"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:997
773
  msgid "Monthly"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:1006
777
  msgid "The cron job has been scheduled. Maintenance will run "
778
  msgstr ""
779
 
780
+ #: admin/admin.php:1011
781
  msgid "The cron job is missing. Please resave this page to add the job"
782
  msgstr ""
783
 
784
+ #: admin/admin.php:1016
785
  msgid "Maintenance is turned off"
786
  msgstr ""
787
 
788
+ #: admin/admin.php:1030
789
+ msgid "Reset count and other tools"
790
  msgstr ""
791
 
792
+ #: admin/admin.php:1033
793
  msgid ""
794
  "This cannot be reversed. Make sure that your database has been backed up "
795
  "before proceeding"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1036
799
  #, fuzzy
800
  msgid "Reset Popular Posts"
801
  msgstr "Poist Coitianta"
802
 
803
+ #: admin/admin.php:1036
804
  msgid "Are you sure you want to reset the popular posts?"
805
  msgstr ""
806
 
807
+ #: admin/admin.php:1037
808
  #, fuzzy
809
  msgid "Reset Daily Popular Posts"
810
  msgstr "Poist Coitianta Laethúil"
811
 
812
+ #: admin/admin.php:1037
813
  msgid "Are you sure you want to reset the daily popular posts?"
814
  msgstr ""
815
 
816
+ #: admin/admin.php:1040
817
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
818
  msgstr ""
819
 
820
+ #: admin/admin.php:1043
821
+ msgid "Merge blog ID 0 and 1 post counts"
822
+ msgstr ""
823
+
824
+ #: admin/admin.php:1043
825
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
826
+ msgstr ""
827
+
828
+ #: admin/admin.php:1046
829
+ msgid ""
830
+ "In older versions, the plugin created entries with duplicate post IDs. "
831
+ "Clicking the button below will merge these duplicate IDs"
832
+ msgstr ""
833
+
834
+ #: admin/admin.php:1049
835
+ msgid "Merge duplicates across blog IDs"
836
+ msgstr ""
837
+
838
+ #: admin/admin.php:1049
839
  msgid "This will delete the duplicate entries in the tables. Proceed?"
840
  msgstr ""
841
 
842
+ #: admin/admin.php:1066
843
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
844
  msgstr ""
845
 
846
+ #: admin/admin.php:1069
847
  msgid ""
848
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
849
  "activate the plugin independently for each site. This would have resulted in "
850
  "two tables being created for each site in the network."
851
  msgstr ""
852
 
853
+ #: admin/admin.php:1070
854
  msgid ""
855
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
856
  "your database clean. You can use this tool to import the recorded counts "
857
  "from v1.x tables to the new v2.x table format."
858
  msgstr ""
859
 
860
+ #: admin/admin.php:1073
861
  msgid ""
862
  "If you do not see any tables below, then it means that either all data has "
863
  "already been imported or no relevant information has been found."
864
  msgstr ""
865
 
866
+ #: admin/admin.php:1076
867
  msgid ""
868
  "After running the importer, please verify that all the counts have been "
869
  "successfully imported. Only then should you delete any old tables!"
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1110
873
  msgid "Blog ID"
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1113
877
  msgid "Status"
878
  msgstr ""
879
 
880
+ #: admin/admin.php:1116
881
  msgid "Select to import"
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1126
885
  msgid "Blog #"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1136
889
  msgid "Not imported"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1140
893
  msgid "Imported"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1161
897
  msgid "Begin import"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1162
901
  msgid "Delete selected tables"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1163
905
  msgid "Delete all imported tables"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1220 admin/admin.php:1316
909
  msgid "Daily Popular Posts"
910
  msgstr "Poist Coitianta Laethúil"
911
 
912
+ #: admin/admin.php:1250
913
  #, fuzzy
914
  msgid "Support the development"
915
  msgstr "Tacú le Forbairt"
916
 
917
+ #: admin/admin.php:1257
918
  msgid "Donation for Top 10"
919
  msgstr ""
920
 
921
+ #: admin/admin.php:1259
922
  msgid "Enter amount in USD: "
923
  msgstr ""
924
 
925
+ #: admin/admin.php:1263
926
  msgid "Send your donation to the author of Top 10"
927
  msgstr ""
928
 
929
+ #: admin/admin.php:1270
930
  msgid "Follow me"
931
  msgstr ""
932
 
933
+ #: admin/admin.php:1280
934
  msgid "Quick links"
935
  msgstr ""
936
 
937
+ #: admin/admin.php:1284
938
  msgid "Top 10 plugin page"
939
  msgstr ""
940
 
941
+ #: admin/admin.php:1285
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
+ #: admin/admin.php:1286
946
  msgid "Other plugins"
947
  msgstr ""
948
 
949
+ #: admin/admin.php:1287
950
  msgid "Ajay's blog"
951
  msgstr ""
952
 
953
+ #: admin/admin.php:1288
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
+ #: admin/admin.php:1289 admin/admin.php:1451
958
  msgid "Support"
959
  msgstr ""
960
 
961
+ #: admin/admin.php:1290
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
+ #: admin/admin.php:1313
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Féach ar Poist Coitianta Foriomlán"
969
 
970
+ #: admin/admin.php:1428
971
  msgid "Settings"
972
  msgstr ""
973
 
974
+ #: admin/admin.php:1452
975
  msgid "Donate"
976
  msgstr ""
977
 
985
  msgid "Display popular posts"
986
  msgstr "Poist Coitianta Laethúil"
987
 
988
+ #: includes/class-top-10-widget.php:71
989
  msgid "Title"
990
  msgstr ""
991
 
992
+ #: includes/class-top-10-widget.php:76
993
  msgid "No. of posts"
994
  msgstr ""
995
 
996
+ #: includes/class-top-10-widget.php:81
997
  msgid "Overall"
998
  msgstr ""
999
 
1000
+ #: includes/class-top-10-widget.php:82
1001
  msgid "Custom time period (Enter below)"
1002
  msgstr ""
1003
 
1004
+ #: includes/class-top-10-widget.php:86
1005
  msgid "In days and hours (applies only to custom option above)"
1006
  msgstr ""
1007
 
1008
+ #: includes/class-top-10-widget.php:88
1009
  msgid "days"
1010
  msgstr ""
1011
 
1012
+ #: includes/class-top-10-widget.php:91
1013
  msgid "hours"
1014
  msgstr ""
1015
 
1016
+ #: includes/class-top-10-widget.php:96
1017
  msgid "Show count?"
1018
  msgstr ""
1019
 
1020
+ #: includes/class-top-10-widget.php:101
1021
  msgid "Show excerpt?"
1022
  msgstr ""
1023
 
1024
+ #: includes/class-top-10-widget.php:106
1025
  msgid "Show author?"
1026
  msgstr ""
1027
 
1028
+ #: includes/class-top-10-widget.php:111
1029
  msgid "Show date?"
1030
  msgstr ""
1031
 
1032
+ #: includes/class-top-10-widget.php:117
1033
  #, fuzzy
1034
  msgid "Thumbnails inline, before title"
1035
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1036
 
1037
+ #: includes/class-top-10-widget.php:118
1038
  #, fuzzy
1039
  msgid "Thumbnails inline, after title"
1040
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1041
 
1042
+ #: includes/class-top-10-widget.php:119
1043
  #, fuzzy
1044
  msgid "Only thumbnails, no text"
1045
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1046
 
1047
+ #: includes/class-top-10-widget.php:120
1048
  #, fuzzy
1049
  msgid "No thumbnails, only text."
1050
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
1051
 
1052
+ #: includes/class-top-10-widget.php:125
1053
  msgid "Thumbnail height"
1054
  msgstr ""
1055
 
1056
+ #: includes/class-top-10-widget.php:131
1057
  msgid "Thumbnail width"
1058
  msgstr ""
1059
 
1060
+ #: includes/class-top-10-widget.php:136
1061
+ msgid "Post types to include:"
1062
+ msgstr ""
1063
+
1064
+ #: top-10.php:756
1065
  msgid " by "
1066
  msgstr ""
1067
 
1068
+ #: top-10.php:823
1069
  #, php-format
1070
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1071
  msgstr ""
1072
 
1073
+ #: top-10.php:1113
1074
  msgid "<h3>Popular Posts</h3>"
1075
  msgstr "<h3>Poist Coitianta </ h3>"
1076
 
1077
+ #: top-10.php:1114
1078
  msgid "<h3>Daily Popular</h3>"
1079
  msgstr "<h3> laethúil Coitianta </ h3>"
1080
 
1081
+ #: top-10.php:1115
1082
  #, fuzzy
1083
  msgid "No top posts yet"
1084
  msgstr "Teideal an post tóir:"
1085
 
1086
+ #: top-10.php:1507
1087
+ msgid "thumb_timthumb argument has been deprecated"
1088
+ msgstr ""
1089
+
1090
+ #: top-10.php:1511
1091
+ msgid "thumb_timthumb_q argument has been deprecated"
1092
+ msgstr ""
1093
+
1094
+ #: top-10.php:1515
1095
+ msgid "filter argument has been deprecated"
1096
+ msgstr ""
1097
+
1098
+ #: top-10.php:1853
1099
  msgid "Once Weekly"
1100
  msgstr ""
1101
 
1102
+ #: top-10.php:1857
1103
  msgid "Once Fortnightly"
1104
  msgstr ""
1105
 
1106
+ #: top-10.php:1861
1107
  msgid "Once Monthly"
1108
  msgstr ""
1109
 
1110
+ #: top-10.php:1865
1111
  msgid "Once quarterly"
1112
  msgstr ""
1113
 
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: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-01-03 01:53-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"
@@ -61,7 +61,7 @@ msgstr "पिछला"
61
  msgid "Next"
62
  msgstr "अगला"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "लोकप्रिय पोस्ट्स "
67
 
@@ -69,7 +69,7 @@ msgstr "लोकप्रिय पोस्ट्स "
69
  msgid "Daily Popular"
70
  msgstr "दैनिक लोकप्रिय"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "शीर्ष 10"
75
 
@@ -98,218 +98,228 @@ msgstr ""
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
- #: admin/admin.php:163
102
  msgid "Options saved successfully."
103
  msgstr "विकल्प सफलतापूर्वक बचाया."
104
 
105
- #: admin/admin.php:173
 
 
 
 
 
 
106
  msgid "Options set to Default."
107
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
108
 
109
- #: admin/admin.php:179
110
  #, fuzzy
111
  msgid "Top 10 popular posts reset"
112
  msgstr "लोकप्रिय पदों का शीर्षक:"
113
 
114
- #: admin/admin.php:185
115
  #, fuzzy
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid "Selected tables have been deleted. Note that only imported tables have been deleted."
137
  msgstr ""
138
 
139
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
140
  #, fuzzy
141
  msgid "Top 10 Settings"
142
  msgstr "शीर्ष 10"
143
 
144
- #: admin/admin.php:292 admin/admin.php:314
145
  msgid "General options"
146
  msgstr ""
147
 
148
- #: admin/admin.php:293 admin/admin.php:406
149
  msgid "Counter and tracker options"
150
  msgstr ""
151
 
152
- #: admin/admin.php:294 admin/admin.php:511
153
  msgid "Popular post list options"
154
  msgstr ""
155
 
156
- #: admin/admin.php:295 admin/admin.php:706 includes/class-top-10-widget.php:103
157
  msgid "Thumbnail options"
158
  msgstr ""
159
 
160
- #: admin/admin.php:296
161
  msgid "Custom styles"
162
  msgstr ""
163
 
164
- #: admin/admin.php:297 admin/admin.php:937
165
  msgid "Maintenance"
166
  msgstr ""
167
 
168
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510 admin/admin.php:705
169
- #: admin/admin.php:868 admin/admin.php:936 admin/admin.php:1000 admin/admin.php:1021
170
- #: admin/admin.php:1205 admin/admin.php:1225 admin/admin.php:1235
171
  msgid "Click to toggle"
172
  msgstr ""
173
 
174
- #: admin/admin.php:330
175
  msgid "Enable Overall stats"
176
  msgstr ""
177
 
178
- #: admin/admin.php:336
179
  msgid "Enable Daily stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:342
183
  msgid "Cache fix:"
184
  msgstr ""
185
 
186
- #: admin/admin.php:345
187
  msgid ""
188
  "This will try to prevent W3 Total Cache and other caching plugins from caching the tracker "
189
  "script of the plugin. Try toggling this option in case you find that your posts are not "
190
  "tracked."
191
  msgstr ""
192
 
193
- #: admin/admin.php:349
194
  msgid "Start daily counts from midnight:"
195
  msgstr ""
196
 
197
- #: admin/admin.php:352
198
  msgid ""
199
  "Daily counter will display number of visits from midnight. This option is checked by "
200
  "default and mimics the way most normal counters work. Turning this off will allow you to "
201
  "use the hourly setting in the next option."
202
  msgstr ""
203
 
204
- #: admin/admin.php:356
205
  msgid "Daily popular contains top posts over:"
206
  msgstr ""
207
 
208
- #: admin/admin.php:358
209
  msgid "day(s)"
210
  msgstr ""
211
 
212
- #: admin/admin.php:359
213
  msgid "hour(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:360
217
  msgid ""
218
  "Think of Daily Popular has a custom date range applied as a global setting. Instead of "
219
  "displaying popular posts from the past day, this setting lets you display posts for as "
220
  "many days or as few hours as you want. This can be overridden in the widget."
221
  msgstr ""
222
 
223
- #: admin/admin.php:364
224
  msgid "Delete options on uninstall"
225
  msgstr ""
226
 
227
- #: admin/admin.php:367
228
  msgid ""
229
  "If this is checked, all settings related to Top 10 are removed from the database if you "
230
  "choose to uninstall/delete the plugin."
231
  msgstr ""
232
 
233
- #: admin/admin.php:371
234
  msgid "Delete counter data on uninstall"
235
  msgstr ""
236
 
237
- #: admin/admin.php:374
238
  msgid ""
239
  "If this is checked, the tables containing the counter statistics are removed from the "
240
  "database if you choose to uninstall/delete the plugin."
241
  msgstr ""
242
 
243
- #: admin/admin.php:375
244
  msgid ""
245
  "Keep this unchecked if you choose to reinstall the plugin and don't want to lose your "
246
  "counter data."
247
  msgstr ""
248
 
249
- #: admin/admin.php:379
250
  msgid "Link to Top 10 plugin page"
251
  msgstr ""
252
 
253
- #: admin/admin.php:382
254
  #, fuzzy
255
  msgid "A link to the plugin is added as an extra list item to the list of popular posts"
256
  msgstr ""
257
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य "
258
  "है, लेकिन धन्यवाद यदि तुम इसे करो!"
259
 
260
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687 admin/admin.php:850
261
- #: admin/admin.php:916 admin/admin.php:993
262
  #, fuzzy
263
  msgid "Save Options"
264
  msgstr "विकल्प हैं:"
265
 
266
- #: admin/admin.php:422
267
  #, fuzzy
268
  msgid "Display number of views on:"
269
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
270
 
271
- #: admin/admin.php:424
272
  msgid "Posts"
273
  msgstr ""
274
 
275
- #: admin/admin.php:425
276
  #, fuzzy
277
  msgid "Pages"
278
  msgstr "पृष्ठ"
279
 
280
- #: admin/admin.php:426
281
  msgid "Home page"
282
  msgstr ""
283
 
284
- #: admin/admin.php:427
285
  msgid "Feeds"
286
  msgstr ""
287
 
288
- #: admin/admin.php:428
289
  msgid "Category archives"
290
  msgstr ""
291
 
292
- #: admin/admin.php:429
293
  msgid "Tag archives"
294
  msgstr ""
295
 
296
- #: admin/admin.php:430
297
  msgid "Other archives"
298
  msgstr ""
299
 
300
- #: admin/admin.php:431
301
  msgid ""
302
  "If you choose to disable this, please add <code>&lt;?php if ( function_exists "
303
  "( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;</code> to your template file "
304
  "where you want it displayed"
305
  msgstr ""
306
 
307
- #: admin/admin.php:435
308
  #, fuzzy
309
  msgid "Format to display the post views:"
310
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
311
 
312
- #: admin/admin.php:438
313
  msgid ""
314
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to "
315
  "display the daily count and <code>%overallcount%</code> to display the overall count "
@@ -317,392 +327,379 @@ msgid ""
317
  "23 visits today]</code>"
318
  msgstr ""
319
 
320
- #: admin/admin.php:442
321
  msgid "What do display when there are no visits?"
322
  msgstr ""
323
 
324
- #: admin/admin.php:445
325
  msgid ""
326
  "This text applies only when there are 0 hits for the post and it isn't a single page. e.g. "
327
  "if you display post views on the homepage or archives then this text will be used. To "
328
  "override this, just enter the same text as above option."
329
  msgstr ""
330
 
331
- #: admin/admin.php:449
332
  msgid "Always display latest post count"
333
  msgstr ""
334
 
335
- #: admin/admin.php:452
336
  msgid ""
337
  "This option uses JavaScript and will increase your page load time. Turn this off if you "
338
  "are not using caching plugins or are OK with displaying older cached counts."
339
  msgstr ""
340
 
341
- #: admin/admin.php:456
342
  msgid "Track visits of authors on their own posts?"
343
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
344
 
345
- #: admin/admin.php:459
346
  msgid "Disabling this option will stop authors visits tracked on their own posts"
347
  msgstr ""
348
 
349
- #: admin/admin.php:463
350
  #, fuzzy
351
  msgid "Track visits of admins?"
352
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
353
 
354
- #: admin/admin.php:466
355
  msgid "Disabling this option will stop admin visits being tracked."
356
  msgstr ""
357
 
358
- #: admin/admin.php:470
359
  #, fuzzy
360
  msgid "Track visits of Editors?"
361
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
362
 
363
- #: admin/admin.php:473
364
  msgid "Disabling this option will stop editor visits being tracked."
365
  msgstr ""
366
 
367
- #: admin/admin.php:477
368
  msgid "Display page views on Posts and Pages in Admin"
369
  msgstr ""
370
 
371
- #: admin/admin.php:480
372
  msgid ""
373
  "Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages"
374
  msgstr ""
375
 
376
- #: admin/admin.php:484
377
  #, fuzzy
378
  msgid "Show number of views to non-admins"
379
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
380
 
381
- #: admin/admin.php:487
382
  msgid ""
383
  "If you disable this then non-admins won't see the above columns or view the independent "
384
  "pages with the top posts"
385
  msgstr ""
386
 
387
- #: admin/admin.php:527
388
  msgid "Number of popular posts to display: "
389
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
390
 
391
- #: admin/admin.php:530
392
  msgid ""
393
  "Maximum number of posts that will be displayed in the list. This option is used if you "
394
  "don't specify the number of posts in the widget or shortcodes"
395
  msgstr ""
396
 
397
- #: admin/admin.php:534
398
  msgid "Post types to include in results (including custom post types)"
399
  msgstr ""
400
 
401
- #: admin/admin.php:546
402
  msgid "List of post or page IDs to exclude from the results: "
403
  msgstr ""
404
 
405
- #: admin/admin.php:548 admin/admin.php:655
406
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
407
  msgstr ""
408
 
409
- #: admin/admin.php:552
410
  msgid "Exclude Categories: "
411
  msgstr ""
412
 
413
- #: admin/admin.php:567
414
  msgid ""
415
  "Comma separated list of category slugs. The field above has an autocomplete so simply "
416
  "start typing in the starting letters and it will prompt you with options"
417
  msgstr ""
418
 
419
- #: admin/admin.php:572
420
  msgid "Title of popular posts: "
421
  msgstr "लोकप्रिय पदों का शीर्षक:"
422
 
423
- #: admin/admin.php:578
424
  msgid "Title of daily popular posts: "
425
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
426
 
427
- #: admin/admin.php:584
428
  msgid "When there are no posts, what should be shown?"
429
  msgstr ""
430
 
431
- #: admin/admin.php:588
432
  msgid "Blank Output"
433
  msgstr ""
434
 
435
- #: admin/admin.php:592
436
  msgid "Display:"
437
  msgstr ""
438
 
439
- #: admin/admin.php:597
440
  msgid "Show post excerpt in list?"
441
  msgstr ""
442
 
443
- #: admin/admin.php:603
 
 
 
 
444
  msgid "Length of excerpt (in words): "
445
  msgstr ""
446
 
447
- #: admin/admin.php:609
448
  msgid "Show post author in list?"
449
  msgstr ""
450
 
451
- #: admin/admin.php:615
452
- msgid "Show post date in list?"
453
  msgstr ""
454
 
455
- #: admin/admin.php:621
456
- msgid "Limit post title length (in characters)"
457
  msgstr ""
458
 
459
- #: admin/admin.php:627
460
- msgid "Show view count in list?"
461
  msgstr ""
462
 
463
- #: admin/admin.php:633
464
- msgid "Always display latest post count in the daily lists?"
465
  msgstr ""
466
 
467
- #: admin/admin.php:636
468
- msgid ""
469
- "This option uses JavaScript and will increase your page load time. When you enable this "
470
- "option, the daily widget will not use the options set there, but options will need to be "
471
- "set on this screen."
472
  msgstr ""
473
 
474
- #: admin/admin.php:640
475
  msgid "Open links in new window"
476
  msgstr ""
477
 
478
- #: admin/admin.php:646
479
  msgid "Add nofollow attribute to links in the list"
480
  msgstr ""
481
 
482
- #: admin/admin.php:652
483
  msgid "Exclude display of related posts on these posts / pages"
484
  msgstr ""
485
 
486
- #: admin/admin.php:659
487
  msgid "Customise the list HTML"
488
  msgstr ""
489
 
490
- #: admin/admin.php:662
491
  msgid "HTML to display before the list of posts: "
492
  msgstr ""
493
 
494
- #: admin/admin.php:668
495
  msgid "HTML to display before each list item: "
496
  msgstr ""
497
 
498
- #: admin/admin.php:674
499
  #, fuzzy
500
  msgid "HTML to display after each list item: "
501
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
502
 
503
- #: admin/admin.php:680
504
  msgid "HTML to display after the list of posts: "
505
  msgstr ""
506
 
507
- #: admin/admin.php:721
508
  msgid "Location of post thumbnail:"
509
  msgstr ""
510
 
511
- #: admin/admin.php:725
512
  #, fuzzy
513
  msgid "Display thumbnails inline with posts, before title"
514
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
515
 
516
- #: admin/admin.php:730
517
  #, fuzzy
518
  msgid "Display thumbnails inline with posts, after title"
519
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
520
 
521
- #: admin/admin.php:735
522
  msgid "Display only thumbnails, no text"
523
  msgstr ""
524
 
525
- #: admin/admin.php:740
526
  msgid "Do not display thumbnails, only text."
527
  msgstr ""
528
 
529
- #: admin/admin.php:744
 
 
 
 
 
 
530
  msgid "Thumbnail size:"
531
  msgstr ""
532
 
533
- #: admin/admin.php:768
534
  msgid "Custom size"
535
  msgstr ""
536
 
537
- #: admin/admin.php:771
538
  msgid ""
539
  "You can choose from existing image sizes above or create a custom size. If you have chosen "
540
  "Custom size above, then enter the width, height and crop settings below. For best results, "
541
  "use a cropped image."
542
  msgstr ""
543
 
544
- #: admin/admin.php:772
545
  msgid ""
546
  "If you change the width and/or height below, existing images will not be automatically "
547
  "resized."
548
  msgstr ""
549
 
550
- #: admin/admin.php:773
551
  #, php-format
552
  msgid ""
553
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> or <a "
554
- "href='%s' target='_blank'>Force Regenerate Thumbnails</a> to regenerate all image sizes."
555
  msgstr ""
556
 
557
- #: admin/admin.php:776
558
  msgid "Width of custom thumbnail:"
559
  msgstr ""
560
 
561
- #: admin/admin.php:781
562
  msgid "Height of custom thumbnail"
563
  msgstr ""
564
 
565
- #: admin/admin.php:786
566
  msgid "Crop mode:"
567
  msgstr ""
568
 
569
- #: admin/admin.php:790
570
  msgid ""
571
  "By default, thumbnails will be proportionately cropped. Check this box to hard crop the "
572
  "thumbnails."
573
  msgstr ""
574
 
575
- #: admin/admin.php:791
576
  #, php-format
577
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
578
  msgstr ""
579
 
580
- #: admin/admin.php:793
581
  msgid ""
582
- "Since you're using the default styles set under the Custom Styles section, the width and "
583
- "height is fixed at 65px and crop mode is enabled."
584
  msgstr ""
585
 
586
- #: admin/admin.php:798
587
  msgid "Style attributes / Width and Height HTML attributes:"
588
  msgstr ""
589
 
590
- #: admin/admin.php:802
591
  msgid "Style attributes are used for width and height."
592
  msgstr ""
593
 
594
- #: admin/admin.php:807
595
  msgid "HTML width and height attributes are used for width and height."
596
  msgstr ""
597
 
598
- #: admin/admin.php:811
599
- msgid "Use timthumb to generate thumbnails? "
600
- msgstr ""
601
-
602
- #: admin/admin.php:814
603
- msgid ""
604
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" target=\"_blank"
605
- "\">timthumb</a> will be used to generate thumbnails"
606
- msgstr ""
607
-
608
- #: admin/admin.php:817
609
- msgid "Quality of thumbnails generated by timthumb:"
610
- msgstr ""
611
-
612
- #: admin/admin.php:820
613
- msgid ""
614
- "Enter values between 0 and 100 only. 100 is highest quality and the highest file size. "
615
- "Suggested maximum value is 95. Default is 75."
616
- msgstr ""
617
-
618
- #: admin/admin.php:823
619
  msgid "Post thumbnail meta field name: "
620
  msgstr ""
621
 
622
- #: admin/admin.php:826
623
  msgid ""
624
  "The value of this field should contain the image source and is set in the <em>Add New "
625
  "Post</em> screen"
626
  msgstr ""
627
 
628
- #: admin/admin.php:829
629
  msgid ""
630
  "If the postmeta is not set, then should the plugin extract the first image from the post?"
631
  msgstr ""
632
 
633
- #: admin/admin.php:832
634
  msgid ""
635
  "This could slow down the loading of your page if the first image in the related posts is "
636
  "large in file-size"
637
  msgstr ""
638
 
639
- #: admin/admin.php:835
640
  msgid "Use default thumbnail? "
641
  msgstr ""
642
 
643
- #: admin/admin.php:838
644
  msgid ""
645
  "If checked, when no thumbnail is found, show a default one from the URL below. If not "
646
  "checked and no thumbnail is found, no image will be shown."
647
  msgstr ""
648
 
649
- #: admin/admin.php:841
650
  msgid "Default thumbnail: "
651
  msgstr ""
652
 
653
- #: admin/admin.php:845
654
  msgid ""
655
  "The plugin will first check if the post contains a thumbnail. If it doesn't then it will "
656
  "check the meta field. If this is not available, then it will show the default image as "
657
  "specified above"
658
  msgstr ""
659
 
660
- #: admin/admin.php:869
661
  msgid "Custom CSS"
662
  msgstr ""
663
 
664
- #: admin/admin.php:884
665
  msgid "Use default style included in the plugin?"
666
  msgstr ""
667
 
668
- #: admin/admin.php:887
669
  msgid ""
670
  "Top 10 includes a default style that makes your popular posts list to look beautiful. "
671
  "Check the box above if you want to use this."
672
  msgstr ""
673
 
674
- #: admin/admin.php:888
675
  msgid ""
676
  "Enabling this option will turn on the thumbnails and set their width and height to 65px. "
677
  "It will also turn off the display of the author, excerpt and date if already enabled. "
678
  "Disabling this option will not revert any settings."
679
  msgstr ""
680
 
681
- #: admin/admin.php:889
682
  #, php-format
683
  msgid "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
684
  msgstr ""
685
 
686
- #: admin/admin.php:892
687
  msgid "Custom CSS to add to header:"
688
  msgstr ""
689
 
690
- #: admin/admin.php:897
691
  msgid ""
692
  "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/"
693
  "extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for available CSS classes to style."
694
  msgstr ""
695
 
696
- #: admin/admin.php:917
697
  #, fuzzy
698
  msgid "Default Options"
699
  msgstr "विकल्प हैं:"
700
 
701
- #: admin/admin.php:917
702
  msgid "Do you want to set options to Default?"
703
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
704
 
705
- #: admin/admin.php:941
706
  msgid ""
707
  "Over time the Daily Top 10 database grows in size, which reduces the performance of the "
708
  "plugin. Cleaning the database at regular intervals could improve performance, especially "
@@ -710,228 +707,246 @@ msgid ""
710
  "90 days."
711
  msgstr ""
712
 
713
- #: admin/admin.php:942
714
  msgid ""
715
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the "
716
  "job is rescheduled (i.e. you change the settings below)."
717
  msgstr ""
718
 
719
- #: admin/admin.php:945
720
  msgid "Enable scheduled maintenance of daily tables:"
721
  msgstr ""
722
 
723
- #: admin/admin.php:949
724
  msgid "Time to run maintenance"
725
  msgstr ""
726
 
727
- #: admin/admin.php:950
728
  msgid "hrs"
729
  msgstr ""
730
 
731
- #: admin/admin.php:950
732
  msgid "min"
733
  msgstr ""
734
 
735
- #: admin/admin.php:952
736
  msgid "How often should the maintenance be run:"
737
  msgstr ""
738
 
739
- #: admin/admin.php:956
740
  msgid "Daily"
741
  msgstr ""
742
 
743
- #: admin/admin.php:960
744
  msgid "Weekly"
745
  msgstr ""
746
 
747
- #: admin/admin.php:964
748
  msgid "Fortnightly"
749
  msgstr ""
750
 
751
- #: admin/admin.php:968
752
  msgid "Monthly"
753
  msgstr ""
754
 
755
- #: admin/admin.php:977
756
  msgid "The cron job has been scheduled. Maintenance will run "
757
  msgstr ""
758
 
759
- #: admin/admin.php:982
760
  msgid "The cron job is missing. Please resave this page to add the job"
761
  msgstr ""
762
 
763
- #: admin/admin.php:987
764
  msgid "Maintenance is turned off"
765
  msgstr ""
766
 
767
- #: admin/admin.php:1001
768
- msgid "Reset count"
769
  msgstr ""
770
 
771
- #: admin/admin.php:1004
772
  msgid ""
773
  "This cannot be reversed. Make sure that your database has been backed up before proceeding"
774
  msgstr ""
775
 
776
- #: admin/admin.php:1007
777
  #, fuzzy
778
  msgid "Reset Popular Posts"
779
  msgstr "लोकप्रिय पोस्ट्स "
780
 
781
- #: admin/admin.php:1007
782
  msgid "Are you sure you want to reset the popular posts?"
783
  msgstr ""
784
 
785
- #: admin/admin.php:1008
786
  #, fuzzy
787
  msgid "Reset Daily Popular Posts"
788
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
789
 
790
- #: admin/admin.php:1008
791
  msgid "Are you sure you want to reset the daily popular posts?"
792
  msgstr ""
793
 
794
- #: admin/admin.php:1009
795
- msgid "Clear duplicates"
796
  msgstr ""
797
 
798
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
  msgid "This will delete the duplicate entries in the tables. Proceed?"
800
  msgstr ""
801
 
802
- #: admin/admin.php:1022
803
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
804
  msgstr ""
805
 
806
- #: admin/admin.php:1025
807
  msgid ""
808
  "If you've been using Top 10 v1.x on multisite, you would have needed to activate the "
809
  "plugin independently for each site. This would have resulted in two tables being created "
810
  "for each site in the network."
811
  msgstr ""
812
 
813
- #: admin/admin.php:1026
814
  msgid ""
815
  "Top 10 v2.x onwards uses only a single table to record the count, keeping your database "
816
  "clean. You can use this tool to import the recorded counts from v1.x tables to the new v2."
817
  "x table format."
818
  msgstr ""
819
 
820
- #: admin/admin.php:1029
821
  msgid ""
822
  "If you do not see any tables below, then it means that either all data has already been "
823
  "imported or no relevant information has been found."
824
  msgstr ""
825
 
826
- #: admin/admin.php:1032
827
  msgid ""
828
  "After running the importer, please verify that all the counts have been successfully "
829
  "imported. Only then should you delete any old tables!"
830
  msgstr ""
831
 
832
- #: admin/admin.php:1066
833
  msgid "Blog ID"
834
  msgstr ""
835
 
836
- #: admin/admin.php:1069
837
  msgid "Status"
838
  msgstr ""
839
 
840
- #: admin/admin.php:1072
841
  msgid "Select to import"
842
  msgstr ""
843
 
844
- #: admin/admin.php:1082
845
  msgid "Blog #"
846
  msgstr ""
847
 
848
- #: admin/admin.php:1092
849
  msgid "Not imported"
850
  msgstr ""
851
 
852
- #: admin/admin.php:1096
853
  msgid "Imported"
854
  msgstr ""
855
 
856
- #: admin/admin.php:1117
857
  msgid "Begin import"
858
  msgstr ""
859
 
860
- #: admin/admin.php:1118
861
  msgid "Delete selected tables"
862
  msgstr ""
863
 
864
- #: admin/admin.php:1119
865
  msgid "Delete all imported tables"
866
  msgstr ""
867
 
868
- #: admin/admin.php:1176 admin/admin.php:1272
869
  msgid "Daily Popular Posts"
870
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
871
 
872
- #: admin/admin.php:1206
873
  #, fuzzy
874
  msgid "Support the development"
875
  msgstr "समर्थन विकास"
876
 
877
- #: admin/admin.php:1213
878
  msgid "Donation for Top 10"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1215
882
  msgid "Enter amount in USD: "
883
  msgstr ""
884
 
885
- #: admin/admin.php:1219
886
  msgid "Send your donation to the author of Top 10"
887
  msgstr ""
888
 
889
- #: admin/admin.php:1226
890
  msgid "Follow me"
891
  msgstr ""
892
 
893
- #: admin/admin.php:1236
894
  msgid "Quick links"
895
  msgstr ""
896
 
897
- #: admin/admin.php:1240
898
  msgid "Top 10 plugin page"
899
  msgstr ""
900
 
901
- #: admin/admin.php:1241
902
  msgid "Top 10 Github page"
903
  msgstr ""
904
 
905
- #: admin/admin.php:1242
906
  msgid "Other plugins"
907
  msgstr ""
908
 
909
- #: admin/admin.php:1243
910
  msgid "Ajay's blog"
911
  msgstr ""
912
 
913
- #: admin/admin.php:1244
914
  msgid "FAQ"
915
  msgstr ""
916
 
917
- #: admin/admin.php:1245 admin/admin.php:1403
918
  msgid "Support"
919
  msgstr ""
920
 
921
- #: admin/admin.php:1246
922
  msgid "Reviews"
923
  msgstr ""
924
 
925
- #: admin/admin.php:1269
926
  #, fuzzy
927
  msgid "Overall Popular Posts"
928
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
929
 
930
- #: admin/admin.php:1380
931
  msgid "Settings"
932
  msgstr ""
933
 
934
- #: admin/admin.php:1404
935
  msgid "Donate"
936
  msgstr ""
937
 
@@ -945,111 +960,127 @@ msgstr "लोकप्रिय पोस्ट्स "
945
  msgid "Display popular posts"
946
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
947
 
948
- #: includes/class-top-10-widget.php:59
949
  msgid "Title"
950
  msgstr ""
951
 
952
- #: includes/class-top-10-widget.php:64
953
  msgid "No. of posts"
954
  msgstr ""
955
 
956
- #: includes/class-top-10-widget.php:69
957
  msgid "Overall"
958
  msgstr ""
959
 
960
- #: includes/class-top-10-widget.php:70
961
  msgid "Custom time period (Enter below)"
962
  msgstr ""
963
 
964
- #: includes/class-top-10-widget.php:74
965
  msgid "In days and hours (applies only to custom option above)"
966
  msgstr ""
967
 
968
- #: includes/class-top-10-widget.php:76
969
  msgid "days"
970
  msgstr ""
971
 
972
- #: includes/class-top-10-widget.php:79
973
  msgid "hours"
974
  msgstr ""
975
 
976
- #: includes/class-top-10-widget.php:84
977
  msgid "Show count?"
978
  msgstr ""
979
 
980
- #: includes/class-top-10-widget.php:89
981
  msgid "Show excerpt?"
982
  msgstr ""
983
 
984
- #: includes/class-top-10-widget.php:94
985
  msgid "Show author?"
986
  msgstr ""
987
 
988
- #: includes/class-top-10-widget.php:99
989
  msgid "Show date?"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:105
993
  #, fuzzy
994
  msgid "Thumbnails inline, before title"
995
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
996
 
997
- #: includes/class-top-10-widget.php:106
998
  #, fuzzy
999
  msgid "Thumbnails inline, after title"
1000
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
1001
 
1002
- #: includes/class-top-10-widget.php:107
1003
  msgid "Only thumbnails, no text"
1004
  msgstr ""
1005
 
1006
- #: includes/class-top-10-widget.php:108
1007
  msgid "No thumbnails, only text."
1008
  msgstr ""
1009
 
1010
- #: includes/class-top-10-widget.php:113
1011
  msgid "Thumbnail height"
1012
  msgstr ""
1013
 
1014
- #: includes/class-top-10-widget.php:118
1015
  msgid "Thumbnail width"
1016
  msgstr ""
1017
 
1018
- #: top-10.php:879
 
 
 
 
1019
  msgid " by "
1020
  msgstr ""
1021
 
1022
- #: top-10.php:930
1023
  #, php-format
1024
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1025
  msgstr ""
1026
 
1027
- #: top-10.php:1029
1028
  msgid "<h3>Popular Posts</h3>"
1029
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
1030
 
1031
- #: top-10.php:1030
1032
  msgid "<h3>Daily Popular</h3>"
1033
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
1034
 
1035
- #: top-10.php:1031
1036
  #, fuzzy
1037
  msgid "No top posts yet"
1038
  msgstr "लोकप्रिय पदों का शीर्षक:"
1039
 
1040
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1041
  msgid "Once Weekly"
1042
  msgstr ""
1043
 
1044
- #: top-10.php:1694
1045
  msgid "Once Fortnightly"
1046
  msgstr ""
1047
 
1048
- #: top-10.php:1698
1049
  msgid "Once Monthly"
1050
  msgstr ""
1051
 
1052
- #: top-10.php:1702
1053
  msgid "Once quarterly"
1054
  msgstr ""
1055
 
2
  msgstr ""
3
  "Project-Id-Version: Тоp 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
61
  msgid "Next"
62
  msgstr "अगला"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "लोकप्रिय पोस्ट्स "
67
 
69
  msgid "Daily Popular"
70
  msgstr "दैनिक लोकप्रिय"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "शीर्ष 10"
75
 
98
  msgid "The URL above is saved in the meta field: "
99
  msgstr ""
100
 
101
+ #: admin/admin.php:171
102
  msgid "Options saved successfully."
103
  msgstr "विकल्प सफलतापूर्वक बचाया."
104
 
105
+ #: admin/admin.php:174
106
+ msgid ""
107
+ "Default styles selected. Thumbnail width, height and crop settings have been fixed. "
108
+ "Author, Excerpt and Date will not be displayed."
109
+ msgstr ""
110
+
111
+ #: admin/admin.php:190
112
  msgid "Options set to Default."
113
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
114
 
115
+ #: admin/admin.php:197
116
  #, fuzzy
117
  msgid "Top 10 popular posts reset"
118
  msgstr "लोकप्रिय पदों का शीर्षक:"
119
 
120
+ #: admin/admin.php:204
121
  #, fuzzy
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr ""
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid "Selected tables have been deleted. Note that only imported tables have been deleted."
147
  msgstr ""
148
 
149
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
150
  #, fuzzy
151
  msgid "Top 10 Settings"
152
  msgstr "शीर्ष 10"
153
 
154
+ #: admin/admin.php:321 admin/admin.php:343
155
  msgid "General options"
156
  msgstr ""
157
 
158
+ #: admin/admin.php:322 admin/admin.php:435
159
  msgid "Counter and tracker options"
160
  msgstr ""
161
 
162
+ #: admin/admin.php:323 admin/admin.php:540
163
  msgid "Popular post list options"
164
  msgstr ""
165
 
166
+ #: admin/admin.php:324 admin/admin.php:742 includes/class-top-10-widget.php:115
167
  msgid "Thumbnail options"
168
  msgstr ""
169
 
170
+ #: admin/admin.php:325
171
  msgid "Custom styles"
172
  msgstr ""
173
 
174
+ #: admin/admin.php:326 admin/admin.php:966
175
  msgid "Maintenance"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539 admin/admin.php:741
179
+ #: admin/admin.php:897 admin/admin.php:965 admin/admin.php:1029 admin/admin.php:1065
180
+ #: admin/admin.php:1249 admin/admin.php:1269 admin/admin.php:1279
181
  msgid "Click to toggle"
182
  msgstr ""
183
 
184
+ #: admin/admin.php:359
185
  msgid "Enable Overall stats"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:365
189
  msgid "Enable Daily stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:371
193
  msgid "Cache fix:"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:374
197
  msgid ""
198
  "This will try to prevent W3 Total Cache and other caching plugins from caching the tracker "
199
  "script of the plugin. Try toggling this option in case you find that your posts are not "
200
  "tracked."
201
  msgstr ""
202
 
203
+ #: admin/admin.php:378
204
  msgid "Start daily counts from midnight:"
205
  msgstr ""
206
 
207
+ #: admin/admin.php:381
208
  msgid ""
209
  "Daily counter will display number of visits from midnight. This option is checked by "
210
  "default and mimics the way most normal counters work. Turning this off will allow you to "
211
  "use the hourly setting in the next option."
212
  msgstr ""
213
 
214
+ #: admin/admin.php:385
215
  msgid "Daily popular contains top posts over:"
216
  msgstr ""
217
 
218
+ #: admin/admin.php:387
219
  msgid "day(s)"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:388
223
  msgid "hour(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:389
227
  msgid ""
228
  "Think of Daily Popular has a custom date range applied as a global setting. Instead of "
229
  "displaying popular posts from the past day, this setting lets you display posts for as "
230
  "many days or as few hours as you want. This can be overridden in the widget."
231
  msgstr ""
232
 
233
+ #: admin/admin.php:393
234
  msgid "Delete options on uninstall"
235
  msgstr ""
236
 
237
+ #: admin/admin.php:396
238
  msgid ""
239
  "If this is checked, all settings related to Top 10 are removed from the database if you "
240
  "choose to uninstall/delete the plugin."
241
  msgstr ""
242
 
243
+ #: admin/admin.php:400
244
  msgid "Delete counter data on uninstall"
245
  msgstr ""
246
 
247
+ #: admin/admin.php:403
248
  msgid ""
249
  "If this is checked, the tables containing the counter statistics are removed from the "
250
  "database if you choose to uninstall/delete the plugin."
251
  msgstr ""
252
 
253
+ #: admin/admin.php:404
254
  msgid ""
255
  "Keep this unchecked if you choose to reinstall the plugin and don't want to lose your "
256
  "counter data."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:408
260
  msgid "Link to Top 10 plugin page"
261
  msgstr ""
262
 
263
+ #: admin/admin.php:411
264
  #, fuzzy
265
  msgid "A link to the plugin is added as an extra list item to the list of popular posts"
266
  msgstr ""
267
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य "
268
  "है, लेकिन धन्यवाद यदि तुम इसे करो!"
269
 
270
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723 admin/admin.php:879
271
+ #: admin/admin.php:945 admin/admin.php:1022
272
  #, fuzzy
273
  msgid "Save Options"
274
  msgstr "विकल्प हैं:"
275
 
276
+ #: admin/admin.php:451
277
  #, fuzzy
278
  msgid "Display number of views on:"
279
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
280
 
281
+ #: admin/admin.php:453
282
  msgid "Posts"
283
  msgstr ""
284
 
285
+ #: admin/admin.php:454
286
  #, fuzzy
287
  msgid "Pages"
288
  msgstr "पृष्ठ"
289
 
290
+ #: admin/admin.php:455
291
  msgid "Home page"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:456
295
  msgid "Feeds"
296
  msgstr ""
297
 
298
+ #: admin/admin.php:457
299
  msgid "Category archives"
300
  msgstr ""
301
 
302
+ #: admin/admin.php:458
303
  msgid "Tag archives"
304
  msgstr ""
305
 
306
+ #: admin/admin.php:459
307
  msgid "Other archives"
308
  msgstr ""
309
 
310
+ #: admin/admin.php:460
311
  msgid ""
312
  "If you choose to disable this, please add <code>&lt;?php if ( function_exists "
313
  "( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;</code> to your template file "
314
  "where you want it displayed"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:464
318
  #, fuzzy
319
  msgid "Format to display the post views:"
320
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
321
 
322
+ #: admin/admin.php:467
323
  msgid ""
324
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to "
325
  "display the daily count and <code>%overallcount%</code> to display the overall count "
327
  "23 visits today]</code>"
328
  msgstr ""
329
 
330
+ #: admin/admin.php:471
331
  msgid "What do display when there are no visits?"
332
  msgstr ""
333
 
334
+ #: admin/admin.php:474
335
  msgid ""
336
  "This text applies only when there are 0 hits for the post and it isn't a single page. e.g. "
337
  "if you display post views on the homepage or archives then this text will be used. To "
338
  "override this, just enter the same text as above option."
339
  msgstr ""
340
 
341
+ #: admin/admin.php:478
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
+ #: admin/admin.php:481
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this off if you "
348
  "are not using caching plugins or are OK with displaying older cached counts."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:485
352
  msgid "Track visits of authors on their own posts?"
353
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
354
 
355
+ #: admin/admin.php:488
356
  msgid "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
+ #: admin/admin.php:492
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
363
 
364
+ #: admin/admin.php:495
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
+ #: admin/admin.php:499
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
372
 
373
+ #: admin/admin.php:502
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
+ #: admin/admin.php:506
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
+ #: admin/admin.php:509
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages"
384
  msgstr ""
385
 
386
+ #: admin/admin.php:513
387
  #, fuzzy
388
  msgid "Show number of views to non-admins"
389
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
390
 
391
+ #: admin/admin.php:516
392
  msgid ""
393
  "If you disable this then non-admins won't see the above columns or view the independent "
394
  "pages with the top posts"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:556
398
  msgid "Number of popular posts to display: "
399
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
400
 
401
+ #: admin/admin.php:559
402
  msgid ""
403
  "Maximum number of posts that will be displayed in the list. This option is used if you "
404
  "don't specify the number of posts in the widget or shortcodes"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:563
408
  msgid "Post types to include in results (including custom post types)"
409
  msgstr ""
410
 
411
+ #: admin/admin.php:577
412
  msgid "List of post or page IDs to exclude from the results: "
413
  msgstr ""
414
 
415
+ #: admin/admin.php:579 admin/admin.php:691
416
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:583
420
  msgid "Exclude Categories: "
421
  msgstr ""
422
 
423
+ #: admin/admin.php:598
424
  msgid ""
425
  "Comma separated list of category slugs. The field above has an autocomplete so simply "
426
  "start typing in the starting letters and it will prompt you with options"
427
  msgstr ""
428
 
429
+ #: admin/admin.php:603
430
  msgid "Title of popular posts: "
431
  msgstr "लोकप्रिय पदों का शीर्षक:"
432
 
433
+ #: admin/admin.php:609
434
  msgid "Title of daily popular posts: "
435
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
436
 
437
+ #: admin/admin.php:615
438
  msgid "When there are no posts, what should be shown?"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:619
442
  msgid "Blank Output"
443
  msgstr ""
444
 
445
+ #: admin/admin.php:623
446
  msgid "Display:"
447
  msgstr ""
448
 
449
+ #: admin/admin.php:628
450
  msgid "Show post excerpt in list?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:633
454
+ msgid "Default style selected under the Custom Styles. Excerpt display is disabled."
455
+ msgstr ""
456
+
457
+ #: admin/admin.php:638
458
  msgid "Length of excerpt (in words): "
459
  msgstr ""
460
 
461
+ #: admin/admin.php:644
462
  msgid "Show post author in list?"
463
  msgstr ""
464
 
465
+ #: admin/admin.php:649
466
+ msgid "Default style selected under the Custom Styles. Author display is disabled."
467
  msgstr ""
468
 
469
+ #: admin/admin.php:654
470
+ msgid "Show post date in list?"
471
  msgstr ""
472
 
473
+ #: admin/admin.php:659
474
+ msgid "Default style selected under the Custom Styles. Date display is disabled."
475
  msgstr ""
476
 
477
+ #: admin/admin.php:664
478
+ msgid "Limit post title length (in characters)"
479
  msgstr ""
480
 
481
+ #: admin/admin.php:670
482
+ msgid "Show view count in list?"
 
 
 
483
  msgstr ""
484
 
485
+ #: admin/admin.php:676
486
  msgid "Open links in new window"
487
  msgstr ""
488
 
489
+ #: admin/admin.php:682
490
  msgid "Add nofollow attribute to links in the list"
491
  msgstr ""
492
 
493
+ #: admin/admin.php:688
494
  msgid "Exclude display of related posts on these posts / pages"
495
  msgstr ""
496
 
497
+ #: admin/admin.php:695
498
  msgid "Customise the list HTML"
499
  msgstr ""
500
 
501
+ #: admin/admin.php:698
502
  msgid "HTML to display before the list of posts: "
503
  msgstr ""
504
 
505
+ #: admin/admin.php:704
506
  msgid "HTML to display before each list item: "
507
  msgstr ""
508
 
509
+ #: admin/admin.php:710
510
  #, fuzzy
511
  msgid "HTML to display after each list item: "
512
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
513
 
514
+ #: admin/admin.php:716
515
  msgid "HTML to display after the list of posts: "
516
  msgstr ""
517
 
518
+ #: admin/admin.php:757
519
  msgid "Location of post thumbnail:"
520
  msgstr ""
521
 
522
+ #: admin/admin.php:761
523
  #, fuzzy
524
  msgid "Display thumbnails inline with posts, before title"
525
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
526
 
527
+ #: admin/admin.php:766
528
  #, fuzzy
529
  msgid "Display thumbnails inline with posts, after title"
530
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
531
 
532
+ #: admin/admin.php:771
533
  msgid "Display only thumbnails, no text"
534
  msgstr ""
535
 
536
+ #: admin/admin.php:776
537
  msgid "Do not display thumbnails, only text."
538
  msgstr ""
539
 
540
+ #: admin/admin.php:780
541
+ msgid ""
542
+ "Default style selected under the Custom Styles. Location of thumbnail forced to be inline "
543
+ "before title"
544
+ msgstr ""
545
+
546
+ #: admin/admin.php:784
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
+ #: admin/admin.php:808
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
+ #: admin/admin.php:811
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If you have chosen "
557
  "Custom size above, then enter the width, height and crop settings below. For best results, "
558
  "use a cropped image."
559
  msgstr ""
560
 
561
+ #: admin/admin.php:812
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be automatically "
564
  "resized."
565
  msgstr ""
566
 
567
+ #: admin/admin.php:813
568
  #, php-format
569
  msgid ""
570
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</a> or <a "
571
+ "href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate all image sizes."
572
  msgstr ""
573
 
574
+ #: admin/admin.php:816
575
  msgid "Width of custom thumbnail:"
576
  msgstr ""
577
 
578
+ #: admin/admin.php:821
579
  msgid "Height of custom thumbnail"
580
  msgstr ""
581
 
582
+ #: admin/admin.php:826
583
  msgid "Crop mode:"
584
  msgstr ""
585
 
586
+ #: admin/admin.php:830
587
  msgid ""
588
  "By default, thumbnails will be proportionately cropped. Check this box to hard crop the "
589
  "thumbnails."
590
  msgstr ""
591
 
592
+ #: admin/admin.php:831
593
  #, php-format
594
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:834
598
  msgid ""
599
+ "Default style selected under the Custom Styles. Thumbnail width and height is fixed at "
600
+ "65px and crop mode is enabled."
601
  msgstr ""
602
 
603
+ #: admin/admin.php:839
604
  msgid "Style attributes / Width and Height HTML attributes:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:843
608
  msgid "Style attributes are used for width and height."
609
  msgstr ""
610
 
611
+ #: admin/admin.php:848
612
  msgid "HTML width and height attributes are used for width and height."
613
  msgstr ""
614
 
615
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
  msgid "Post thumbnail meta field name: "
617
  msgstr ""
618
 
619
+ #: admin/admin.php:855
620
  msgid ""
621
  "The value of this field should contain the image source and is set in the <em>Add New "
622
  "Post</em> screen"
623
  msgstr ""
624
 
625
+ #: admin/admin.php:858
626
  msgid ""
627
  "If the postmeta is not set, then should the plugin extract the first image from the post?"
628
  msgstr ""
629
 
630
+ #: admin/admin.php:861
631
  msgid ""
632
  "This could slow down the loading of your page if the first image in the related posts is "
633
  "large in file-size"
634
  msgstr ""
635
 
636
+ #: admin/admin.php:864
637
  msgid "Use default thumbnail? "
638
  msgstr ""
639
 
640
+ #: admin/admin.php:867
641
  msgid ""
642
  "If checked, when no thumbnail is found, show a default one from the URL below. If not "
643
  "checked and no thumbnail is found, no image will be shown."
644
  msgstr ""
645
 
646
+ #: admin/admin.php:870
647
  msgid "Default thumbnail: "
648
  msgstr ""
649
 
650
+ #: admin/admin.php:874
651
  msgid ""
652
  "The plugin will first check if the post contains a thumbnail. If it doesn't then it will "
653
  "check the meta field. If this is not available, then it will show the default image as "
654
  "specified above"
655
  msgstr ""
656
 
657
+ #: admin/admin.php:898
658
  msgid "Custom CSS"
659
  msgstr ""
660
 
661
+ #: admin/admin.php:913
662
  msgid "Use default style included in the plugin?"
663
  msgstr ""
664
 
665
+ #: admin/admin.php:916
666
  msgid ""
667
  "Top 10 includes a default style that makes your popular posts list to look beautiful. "
668
  "Check the box above if you want to use this."
669
  msgstr ""
670
 
671
+ #: admin/admin.php:917
672
  msgid ""
673
  "Enabling this option will turn on the thumbnails and set their width and height to 65px. "
674
  "It will also turn off the display of the author, excerpt and date if already enabled. "
675
  "Disabling this option will not revert any settings."
676
  msgstr ""
677
 
678
+ #: admin/admin.php:918
679
  #, php-format
680
  msgid "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
681
  msgstr ""
682
 
683
+ #: admin/admin.php:921
684
  msgid "Custom CSS to add to header:"
685
  msgstr ""
686
 
687
+ #: admin/admin.php:926
688
  msgid ""
689
  "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/"
690
  "extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for available CSS classes to style."
691
  msgstr ""
692
 
693
+ #: admin/admin.php:946
694
  #, fuzzy
695
  msgid "Default Options"
696
  msgstr "विकल्प हैं:"
697
 
698
+ #: admin/admin.php:946
699
  msgid "Do you want to set options to Default?"
700
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
701
 
702
+ #: admin/admin.php:970
703
  msgid ""
704
  "Over time the Daily Top 10 database grows in size, which reduces the performance of the "
705
  "plugin. Cleaning the database at regular intervals could improve performance, especially "
707
  "90 days."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:971
711
  msgid ""
712
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the "
713
  "job is rescheduled (i.e. you change the settings below)."
714
  msgstr ""
715
 
716
+ #: admin/admin.php:974
717
  msgid "Enable scheduled maintenance of daily tables:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:978
721
  msgid "Time to run maintenance"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:979
725
  msgid "hrs"
726
  msgstr ""
727
 
728
+ #: admin/admin.php:979
729
  msgid "min"
730
  msgstr ""
731
 
732
+ #: admin/admin.php:981
733
  msgid "How often should the maintenance be run:"
734
  msgstr ""
735
 
736
+ #: admin/admin.php:985
737
  msgid "Daily"
738
  msgstr ""
739
 
740
+ #: admin/admin.php:989
741
  msgid "Weekly"
742
  msgstr ""
743
 
744
+ #: admin/admin.php:993
745
  msgid "Fortnightly"
746
  msgstr ""
747
 
748
+ #: admin/admin.php:997
749
  msgid "Monthly"
750
  msgstr ""
751
 
752
+ #: admin/admin.php:1006
753
  msgid "The cron job has been scheduled. Maintenance will run "
754
  msgstr ""
755
 
756
+ #: admin/admin.php:1011
757
  msgid "The cron job is missing. Please resave this page to add the job"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:1016
761
  msgid "Maintenance is turned off"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:1030
765
+ msgid "Reset count and other tools"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:1033
769
  msgid ""
770
  "This cannot be reversed. Make sure that your database has been backed up before proceeding"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:1036
774
  #, fuzzy
775
  msgid "Reset Popular Posts"
776
  msgstr "लोकप्रिय पोस्ट्स "
777
 
778
+ #: admin/admin.php:1036
779
  msgid "Are you sure you want to reset the popular posts?"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:1037
783
  #, fuzzy
784
  msgid "Reset Daily Popular Posts"
785
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
786
 
787
+ #: admin/admin.php:1037
788
  msgid "Are you sure you want to reset the daily popular posts?"
789
  msgstr ""
790
 
791
+ #: admin/admin.php:1040
792
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
793
  msgstr ""
794
 
795
+ #: admin/admin.php:1043
796
+ msgid "Merge blog ID 0 and 1 post counts"
797
+ msgstr ""
798
+
799
+ #: admin/admin.php:1043
800
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
801
+ msgstr ""
802
+
803
+ #: admin/admin.php:1046
804
+ msgid ""
805
+ "In older versions, the plugin created entries with duplicate post IDs. Clicking the button "
806
+ "below will merge these duplicate IDs"
807
+ msgstr ""
808
+
809
+ #: admin/admin.php:1049
810
+ msgid "Merge duplicates across blog IDs"
811
+ msgstr ""
812
+
813
+ #: admin/admin.php:1049
814
  msgid "This will delete the duplicate entries in the tables. Proceed?"
815
  msgstr ""
816
 
817
+ #: admin/admin.php:1066
818
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
819
  msgstr ""
820
 
821
+ #: admin/admin.php:1069
822
  msgid ""
823
  "If you've been using Top 10 v1.x on multisite, you would have needed to activate the "
824
  "plugin independently for each site. This would have resulted in two tables being created "
825
  "for each site in the network."
826
  msgstr ""
827
 
828
+ #: admin/admin.php:1070
829
  msgid ""
830
  "Top 10 v2.x onwards uses only a single table to record the count, keeping your database "
831
  "clean. You can use this tool to import the recorded counts from v1.x tables to the new v2."
832
  "x table format."
833
  msgstr ""
834
 
835
+ #: admin/admin.php:1073
836
  msgid ""
837
  "If you do not see any tables below, then it means that either all data has already been "
838
  "imported or no relevant information has been found."
839
  msgstr ""
840
 
841
+ #: admin/admin.php:1076
842
  msgid ""
843
  "After running the importer, please verify that all the counts have been successfully "
844
  "imported. Only then should you delete any old tables!"
845
  msgstr ""
846
 
847
+ #: admin/admin.php:1110
848
  msgid "Blog ID"
849
  msgstr ""
850
 
851
+ #: admin/admin.php:1113
852
  msgid "Status"
853
  msgstr ""
854
 
855
+ #: admin/admin.php:1116
856
  msgid "Select to import"
857
  msgstr ""
858
 
859
+ #: admin/admin.php:1126
860
  msgid "Blog #"
861
  msgstr ""
862
 
863
+ #: admin/admin.php:1136
864
  msgid "Not imported"
865
  msgstr ""
866
 
867
+ #: admin/admin.php:1140
868
  msgid "Imported"
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1161
872
  msgid "Begin import"
873
  msgstr ""
874
 
875
+ #: admin/admin.php:1162
876
  msgid "Delete selected tables"
877
  msgstr ""
878
 
879
+ #: admin/admin.php:1163
880
  msgid "Delete all imported tables"
881
  msgstr ""
882
 
883
+ #: admin/admin.php:1220 admin/admin.php:1316
884
  msgid "Daily Popular Posts"
885
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
886
 
887
+ #: admin/admin.php:1250
888
  #, fuzzy
889
  msgid "Support the development"
890
  msgstr "समर्थन विकास"
891
 
892
+ #: admin/admin.php:1257
893
  msgid "Donation for Top 10"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1259
897
  msgid "Enter amount in USD: "
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1263
901
  msgid "Send your donation to the author of Top 10"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1270
905
  msgid "Follow me"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1280
909
  msgid "Quick links"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1284
913
  msgid "Top 10 plugin page"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1285
917
  msgid "Top 10 Github page"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1286
921
  msgid "Other plugins"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1287
925
  msgid "Ajay's blog"
926
  msgstr ""
927
 
928
+ #: admin/admin.php:1288
929
  msgid "FAQ"
930
  msgstr ""
931
 
932
+ #: admin/admin.php:1289 admin/admin.php:1451
933
  msgid "Support"
934
  msgstr ""
935
 
936
+ #: admin/admin.php:1290
937
  msgid "Reviews"
938
  msgstr ""
939
 
940
+ #: admin/admin.php:1313
941
  #, fuzzy
942
  msgid "Overall Popular Posts"
943
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
944
 
945
+ #: admin/admin.php:1428
946
  msgid "Settings"
947
  msgstr ""
948
 
949
+ #: admin/admin.php:1452
950
  msgid "Donate"
951
  msgstr ""
952
 
960
  msgid "Display popular posts"
961
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
962
 
963
+ #: includes/class-top-10-widget.php:71
964
  msgid "Title"
965
  msgstr ""
966
 
967
+ #: includes/class-top-10-widget.php:76
968
  msgid "No. of posts"
969
  msgstr ""
970
 
971
+ #: includes/class-top-10-widget.php:81
972
  msgid "Overall"
973
  msgstr ""
974
 
975
+ #: includes/class-top-10-widget.php:82
976
  msgid "Custom time period (Enter below)"
977
  msgstr ""
978
 
979
+ #: includes/class-top-10-widget.php:86
980
  msgid "In days and hours (applies only to custom option above)"
981
  msgstr ""
982
 
983
+ #: includes/class-top-10-widget.php:88
984
  msgid "days"
985
  msgstr ""
986
 
987
+ #: includes/class-top-10-widget.php:91
988
  msgid "hours"
989
  msgstr ""
990
 
991
+ #: includes/class-top-10-widget.php:96
992
  msgid "Show count?"
993
  msgstr ""
994
 
995
+ #: includes/class-top-10-widget.php:101
996
  msgid "Show excerpt?"
997
  msgstr ""
998
 
999
+ #: includes/class-top-10-widget.php:106
1000
  msgid "Show author?"
1001
  msgstr ""
1002
 
1003
+ #: includes/class-top-10-widget.php:111
1004
  msgid "Show date?"
1005
  msgstr ""
1006
 
1007
+ #: includes/class-top-10-widget.php:117
1008
  #, fuzzy
1009
  msgid "Thumbnails inline, before title"
1010
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
1011
 
1012
+ #: includes/class-top-10-widget.php:118
1013
  #, fuzzy
1014
  msgid "Thumbnails inline, after title"
1015
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
1016
 
1017
+ #: includes/class-top-10-widget.php:119
1018
  msgid "Only thumbnails, no text"
1019
  msgstr ""
1020
 
1021
+ #: includes/class-top-10-widget.php:120
1022
  msgid "No thumbnails, only text."
1023
  msgstr ""
1024
 
1025
+ #: includes/class-top-10-widget.php:125
1026
  msgid "Thumbnail height"
1027
  msgstr ""
1028
 
1029
+ #: includes/class-top-10-widget.php:131
1030
  msgid "Thumbnail width"
1031
  msgstr ""
1032
 
1033
+ #: includes/class-top-10-widget.php:136
1034
+ msgid "Post types to include:"
1035
+ msgstr ""
1036
+
1037
+ #: top-10.php:756
1038
  msgid " by "
1039
  msgstr ""
1040
 
1041
+ #: top-10.php:823
1042
  #, php-format
1043
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1044
  msgstr ""
1045
 
1046
+ #: top-10.php:1113
1047
  msgid "<h3>Popular Posts</h3>"
1048
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
1049
 
1050
+ #: top-10.php:1114
1051
  msgid "<h3>Daily Popular</h3>"
1052
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
1053
 
1054
+ #: top-10.php:1115
1055
  #, fuzzy
1056
  msgid "No top posts yet"
1057
  msgstr "लोकप्रिय पदों का शीर्षक:"
1058
 
1059
+ #: top-10.php:1507
1060
+ msgid "thumb_timthumb argument has been deprecated"
1061
+ msgstr ""
1062
+
1063
+ #: top-10.php:1511
1064
+ msgid "thumb_timthumb_q argument has been deprecated"
1065
+ msgstr ""
1066
+
1067
+ #: top-10.php:1515
1068
+ msgid "filter argument has been deprecated"
1069
+ msgstr ""
1070
+
1071
+ #: top-10.php:1853
1072
  msgid "Once Weekly"
1073
  msgstr ""
1074
 
1075
+ #: top-10.php:1857
1076
  msgid "Once Fortnightly"
1077
  msgstr ""
1078
 
1079
+ #: top-10.php:1861
1080
  msgid "Once Monthly"
1081
  msgstr ""
1082
 
1083
+ #: top-10.php:1865
1084
  msgid "Once quarterly"
1085
  msgstr ""
1086
 
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: 2015-01-03 01:53-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"
@@ -61,7 +61,7 @@ msgstr "Precedente"
61
  msgid "Next"
62
  msgstr "Successiva"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Gli articoli più popolari"
67
 
@@ -69,7 +69,7 @@ msgstr "Gli articoli più popolari"
69
  msgid "Daily Popular"
70
  msgstr "I più letti di oggi"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -99,125 +99,135 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Le opzioni sono state salvate con successo."
105
 
106
- #: admin/admin.php:173
 
 
 
 
 
 
107
  msgid "Options set to Default."
108
  msgstr "Opzioni impostate alle predefinite."
109
 
110
- #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Ripristino 10 articoli più popolari"
113
 
114
- #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Ripristino 10 articoli più popolari del giorno"
117
 
118
- #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:204
 
 
 
 
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Impostazioni"
144
 
145
- #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:295 admin/admin.php:706
158
- #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Opzioni miniature articolo:"
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -265,59 +275,59 @@ msgstr ""
265
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
266
  "opzione!"
267
 
268
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
269
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
270
  #, fuzzy
271
  msgid "Save Options"
272
  msgstr "Opzioni:"
273
 
274
- #: admin/admin.php:422
275
  #, fuzzy
276
  msgid "Display number of views on:"
277
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
278
 
279
- #: admin/admin.php:424
280
  msgid "Posts"
281
  msgstr ""
282
 
283
- #: admin/admin.php:425
284
  #, fuzzy
285
  msgid "Pages"
286
  msgstr "Pagina"
287
 
288
- #: admin/admin.php:426
289
  msgid "Home page"
290
  msgstr ""
291
 
292
- #: admin/admin.php:427
293
  msgid "Feeds"
294
  msgstr ""
295
 
296
- #: admin/admin.php:428
297
  msgid "Category archives"
298
  msgstr ""
299
 
300
- #: admin/admin.php:429
301
  msgid "Tag archives"
302
  msgstr ""
303
 
304
- #: admin/admin.php:430
305
  msgid "Other archives"
306
  msgstr ""
307
 
308
- #: admin/admin.php:431
309
  msgid ""
310
  "If you choose to disable this, please add <code>&lt;?php if "
311
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
312
  "</code> to your template file where you want it displayed"
313
  msgstr ""
314
 
315
- #: admin/admin.php:435
316
  #, fuzzy
317
  msgid "Format to display the post views:"
318
  msgstr "Formato per il conteggio:"
319
 
320
- #: admin/admin.php:438
321
  msgid ""
322
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
323
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -325,11 +335,11 @@ msgid ""
325
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
326
  msgstr ""
327
 
328
- #: admin/admin.php:442
329
  msgid "What do display when there are no visits?"
330
  msgstr ""
331
 
332
- #: admin/admin.php:445
333
  msgid ""
334
  "This text applies only when there are 0 hits for the post and it isn't a "
335
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -337,317 +347,307 @@ msgid ""
337
  "option."
338
  msgstr ""
339
 
340
- #: admin/admin.php:449
341
  msgid "Always display latest post count"
342
  msgstr ""
343
 
344
- #: admin/admin.php:452
345
  msgid ""
346
  "This option uses JavaScript and will increase your page load time. Turn this "
347
  "off if you are not using caching plugins or are OK with displaying older "
348
  "cached counts."
349
  msgstr ""
350
 
351
- #: admin/admin.php:456
352
  msgid "Track visits of authors on their own posts?"
353
  msgstr ""
354
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
355
  "del sito?"
356
 
357
- #: admin/admin.php:459
358
  msgid ""
359
  "Disabling this option will stop authors visits tracked on their own posts"
360
  msgstr ""
361
 
362
- #: admin/admin.php:463
363
  #, fuzzy
364
  msgid "Track visits of admins?"
365
  msgstr ""
366
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
367
  "del sito?"
368
 
369
- #: admin/admin.php:466
370
  msgid "Disabling this option will stop admin visits being tracked."
371
  msgstr ""
372
 
373
- #: admin/admin.php:470
374
  #, fuzzy
375
  msgid "Track visits of Editors?"
376
  msgstr ""
377
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
378
  "del sito?"
379
 
380
- #: admin/admin.php:473
381
  msgid "Disabling this option will stop editor visits being tracked."
382
  msgstr ""
383
 
384
- #: admin/admin.php:477
385
  msgid "Display page views on Posts and Pages in Admin"
386
  msgstr ""
387
 
388
- #: admin/admin.php:480
389
  msgid ""
390
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
391
  "and All Pages"
392
  msgstr ""
393
 
394
- #: admin/admin.php:484
395
  #, fuzzy
396
  msgid "Show number of views to non-admins"
397
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
398
 
399
- #: admin/admin.php:487
400
  msgid ""
401
  "If you disable this then non-admins won't see the above columns or view the "
402
  "independent pages with the top posts"
403
  msgstr ""
404
 
405
- #: admin/admin.php:527
406
  msgid "Number of popular posts to display: "
407
  msgstr "Numero degli articoli più popolari da mostrare:"
408
 
409
- #: admin/admin.php:530
410
  msgid ""
411
  "Maximum number of posts that will be displayed in the list. This option is "
412
  "used if you don't specify the number of posts in the widget or shortcodes"
413
  msgstr ""
414
 
415
- #: admin/admin.php:534
416
  msgid "Post types to include in results (including custom post types)"
417
  msgstr ""
418
 
419
- #: admin/admin.php:546
420
  msgid "List of post or page IDs to exclude from the results: "
421
  msgstr ""
422
 
423
- #: admin/admin.php:548 admin/admin.php:655
424
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
425
  msgstr ""
426
 
427
- #: admin/admin.php:552
428
  msgid "Exclude Categories: "
429
  msgstr "Escludi categorie:"
430
 
431
- #: admin/admin.php:567
432
  msgid ""
433
  "Comma separated list of category slugs. The field above has an autocomplete "
434
  "so simply start typing in the starting letters and it will prompt you with "
435
  "options"
436
  msgstr ""
437
 
438
- #: admin/admin.php:572
439
  msgid "Title of popular posts: "
440
  msgstr "Titolo per gli articoli più popolari:"
441
 
442
- #: admin/admin.php:578
443
  msgid "Title of daily popular posts: "
444
  msgstr "Titolo per gli articoli più popolari del giorno:"
445
 
446
- #: admin/admin.php:584
447
  msgid "When there are no posts, what should be shown?"
448
  msgstr ""
449
 
450
- #: admin/admin.php:588
451
  msgid "Blank Output"
452
  msgstr ""
453
 
454
- #: admin/admin.php:592
455
  msgid "Display:"
456
  msgstr ""
457
 
458
- #: admin/admin.php:597
459
  msgid "Show post excerpt in list?"
460
  msgstr "Desideri mostrare gli estratti?"
461
 
462
- #: admin/admin.php:603
 
 
 
 
 
463
  msgid "Length of excerpt (in words): "
464
  msgstr "Lunghezza estratto (in parole):"
465
 
466
- #: admin/admin.php:609
467
  #, fuzzy
468
  msgid "Show post author in list?"
469
  msgstr "Desideri mostrare gli estratti?"
470
 
471
- #: admin/admin.php:615
 
 
 
 
 
472
  #, fuzzy
473
  msgid "Show post date in list?"
474
  msgstr "Desideri mostrare gli estratti?"
475
 
476
- #: admin/admin.php:621
 
 
 
 
 
477
  msgid "Limit post title length (in characters)"
478
  msgstr ""
479
 
480
- #: admin/admin.php:627
481
  #, fuzzy
482
  msgid "Show view count in list?"
483
  msgstr "Desideri mostrare gli estratti?"
484
 
485
- #: admin/admin.php:633
486
- msgid "Always display latest post count in the daily lists?"
487
- msgstr ""
488
-
489
- #: admin/admin.php:636
490
- msgid ""
491
- "This option uses JavaScript and will increase your page load time. When you "
492
- "enable this option, the daily widget will not use the options set there, but "
493
- "options will need to be set on this screen."
494
- msgstr ""
495
-
496
- #: admin/admin.php:640
497
  msgid "Open links in new window"
498
  msgstr ""
499
 
500
- #: admin/admin.php:646
501
  msgid "Add nofollow attribute to links in the list"
502
  msgstr ""
503
 
504
- #: admin/admin.php:652
505
  msgid "Exclude display of related posts on these posts / pages"
506
  msgstr ""
507
 
508
- #: admin/admin.php:659
509
  #, fuzzy
510
  msgid "Customise the list HTML"
511
  msgstr "Personalizzazione output:"
512
 
513
- #: admin/admin.php:662
514
  msgid "HTML to display before the list of posts: "
515
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
516
 
517
- #: admin/admin.php:668
518
  msgid "HTML to display before each list item: "
519
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
520
 
521
- #: admin/admin.php:674
522
  msgid "HTML to display after each list item: "
523
  msgstr "HTML da mostrare dopo ogni lista:"
524
 
525
- #: admin/admin.php:680
526
  msgid "HTML to display after the list of posts: "
527
  msgstr "HTML da mostrare dopo la lista degli articoli:"
528
 
529
- #: admin/admin.php:721
530
  msgid "Location of post thumbnail:"
531
  msgstr ""
532
 
533
- #: admin/admin.php:725
534
  msgid "Display thumbnails inline with posts, before title"
535
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
536
 
537
- #: admin/admin.php:730
538
  msgid "Display thumbnails inline with posts, after title"
539
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
540
 
541
- #: admin/admin.php:735
542
  msgid "Display only thumbnails, no text"
543
  msgstr "Mostra le sole miniature, nessun testo"
544
 
545
- #: admin/admin.php:740
546
  msgid "Do not display thumbnails, only text."
547
  msgstr "Non mostrare le miniature, solo testo."
548
 
549
- #: admin/admin.php:744
 
 
 
 
 
 
550
  msgid "Thumbnail size:"
551
  msgstr ""
552
 
553
- #: admin/admin.php:768
554
  msgid "Custom size"
555
  msgstr ""
556
 
557
- #: admin/admin.php:771
558
  msgid ""
559
  "You can choose from existing image sizes above or create a custom size. If "
560
  "you have chosen Custom size above, then enter the width, height and crop "
561
  "settings below. For best results, use a cropped image."
562
  msgstr ""
563
 
564
- #: admin/admin.php:772
565
  msgid ""
566
  "If you change the width and/or height below, existing images will not be "
567
  "automatically resized."
568
  msgstr ""
569
 
570
- #: admin/admin.php:773
571
  #, php-format
572
  msgid ""
573
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
574
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
575
- "regenerate all image sizes."
576
  msgstr ""
577
 
578
- #: admin/admin.php:776
579
  msgid "Width of custom thumbnail:"
580
  msgstr ""
581
 
582
- #: admin/admin.php:781
583
  msgid "Height of custom thumbnail"
584
  msgstr ""
585
 
586
- #: admin/admin.php:786
587
  msgid "Crop mode:"
588
  msgstr ""
589
 
590
- #: admin/admin.php:790
591
  msgid ""
592
  "By default, thumbnails will be proportionately cropped. Check this box to "
593
  "hard crop the thumbnails."
594
  msgstr ""
595
 
596
- #: admin/admin.php:791
597
  #, php-format
598
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
599
  msgstr ""
600
 
601
- #: admin/admin.php:793
602
  msgid ""
603
- "Since you're using the default styles set under the Custom Styles section, "
604
- "the width and height is fixed at 65px and crop mode is enabled."
605
  msgstr ""
606
 
607
- #: admin/admin.php:798
608
  msgid "Style attributes / Width and Height HTML attributes:"
609
  msgstr ""
610
 
611
- #: admin/admin.php:802
612
  msgid "Style attributes are used for width and height."
613
  msgstr ""
614
 
615
- #: admin/admin.php:807
616
  msgid "HTML width and height attributes are used for width and height."
617
  msgstr ""
618
 
619
- #: admin/admin.php:811
620
- msgid "Use timthumb to generate thumbnails? "
621
- msgstr ""
622
-
623
- #: admin/admin.php:814
624
- msgid ""
625
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
626
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
627
- msgstr ""
628
-
629
- #: admin/admin.php:817
630
- msgid "Quality of thumbnails generated by timthumb:"
631
- msgstr ""
632
-
633
- #: admin/admin.php:820
634
- msgid ""
635
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
636
- "file size. Suggested maximum value is 95. Default is 75."
637
- msgstr ""
638
-
639
- #: admin/admin.php:823
640
  #, fuzzy
641
  msgid "Post thumbnail meta field name: "
642
  msgstr "Opzioni miniature articolo:"
643
 
644
- #: admin/admin.php:826
645
  msgid ""
646
  "The value of this field should contain the image source and is set in the "
647
  "<em>Add New Post</em> screen"
648
  msgstr ""
649
 
650
- #: admin/admin.php:829
651
  #, fuzzy
652
  msgid ""
653
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -658,7 +658,7 @@ msgstr ""
658
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
659
  "dimensioni"
660
 
661
- #: admin/admin.php:832
662
  #, fuzzy
663
  msgid ""
664
  "This could slow down the loading of your page if the first image in the "
@@ -669,11 +669,11 @@ msgstr ""
669
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
670
  "dimensioni"
671
 
672
- #: admin/admin.php:835
673
  msgid "Use default thumbnail? "
674
  msgstr ""
675
 
676
- #: admin/admin.php:838
677
  msgid ""
678
  "If checked, when no thumbnail is found, show a default one from the URL "
679
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -681,11 +681,11 @@ msgstr ""
681
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
682
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
683
 
684
- #: admin/admin.php:841
685
  msgid "Default thumbnail: "
686
  msgstr ""
687
 
688
- #: admin/admin.php:845
689
  #, fuzzy
690
  msgid ""
691
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -697,54 +697,54 @@ msgstr ""
697
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
698
  "specificato qui sotto:"
699
 
700
- #: admin/admin.php:869
701
  msgid "Custom CSS"
702
  msgstr ""
703
 
704
- #: admin/admin.php:884
705
  msgid "Use default style included in the plugin?"
706
  msgstr ""
707
 
708
- #: admin/admin.php:887
709
  msgid ""
710
  "Top 10 includes a default style that makes your popular posts list to look "
711
  "beautiful. Check the box above if you want to use this."
712
  msgstr ""
713
 
714
- #: admin/admin.php:888
715
  msgid ""
716
  "Enabling this option will turn on the thumbnails and set their width and "
717
  "height to 65px. It will also turn off the display of the author, excerpt and "
718
  "date if already enabled. Disabling this option will not revert any settings."
719
  msgstr ""
720
 
721
- #: admin/admin.php:889
722
  #, php-format
723
  msgid ""
724
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
725
  msgstr ""
726
 
727
- #: admin/admin.php:892
728
  msgid "Custom CSS to add to header:"
729
  msgstr ""
730
 
731
- #: admin/admin.php:897
732
  msgid ""
733
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
734
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
735
  "available CSS classes to style."
736
  msgstr ""
737
 
738
- #: admin/admin.php:917
739
  #, fuzzy
740
  msgid "Default Options"
741
  msgstr "Opzioni output:"
742
 
743
- #: admin/admin.php:917
744
  msgid "Do you want to set options to Default?"
745
  msgstr "Desideri ripristinare alle predefinite?"
746
 
747
- #: admin/admin.php:941
748
  msgid ""
749
  "Over time the Daily Top 10 database grows in size, which reduces the "
750
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -752,65 +752,65 @@ msgid ""
752
  "will automatically delete entries older than 90 days."
753
  msgstr ""
754
 
755
- #: admin/admin.php:942
756
  msgid ""
757
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
758
  "everytime the job is rescheduled (i.e. you change the settings below)."
759
  msgstr ""
760
 
761
- #: admin/admin.php:945
762
  msgid "Enable scheduled maintenance of daily tables:"
763
  msgstr ""
764
 
765
- #: admin/admin.php:949
766
  msgid "Time to run maintenance"
767
  msgstr ""
768
 
769
- #: admin/admin.php:950
770
  msgid "hrs"
771
  msgstr ""
772
 
773
- #: admin/admin.php:950
774
  msgid "min"
775
  msgstr ""
776
 
777
- #: admin/admin.php:952
778
  msgid "How often should the maintenance be run:"
779
  msgstr ""
780
 
781
- #: admin/admin.php:956
782
  msgid "Daily"
783
  msgstr ""
784
 
785
- #: admin/admin.php:960
786
  msgid "Weekly"
787
  msgstr ""
788
 
789
- #: admin/admin.php:964
790
  msgid "Fortnightly"
791
  msgstr ""
792
 
793
- #: admin/admin.php:968
794
  msgid "Monthly"
795
  msgstr ""
796
 
797
- #: admin/admin.php:977
798
  msgid "The cron job has been scheduled. Maintenance will run "
799
  msgstr ""
800
 
801
- #: admin/admin.php:982
802
  msgid "The cron job is missing. Please resave this page to add the job"
803
  msgstr ""
804
 
805
- #: admin/admin.php:987
806
  msgid "Maintenance is turned off"
807
  msgstr ""
808
 
809
- #: admin/admin.php:1001
810
- msgid "Reset count"
811
- msgstr "Ripristino conteggio"
812
 
813
- #: admin/admin.php:1004
814
  msgid ""
815
  "This cannot be reversed. Make sure that your database has been backed up "
816
  "before proceeding"
@@ -818,167 +818,185 @@ msgstr ""
818
  "Questa operazione non é reversibile. Effettua il backup del database prima "
819
  "di procedere"
820
 
821
- #: admin/admin.php:1007
822
  #, fuzzy
823
  msgid "Reset Popular Posts"
824
  msgstr "Gli articoli più popolari"
825
 
826
- #: admin/admin.php:1007
827
  msgid "Are you sure you want to reset the popular posts?"
828
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
829
 
830
- #: admin/admin.php:1008
831
  #, fuzzy
832
  msgid "Reset Daily Popular Posts"
833
  msgstr "Gli articoli più popolari di oggi"
834
 
835
- #: admin/admin.php:1008
836
  msgid "Are you sure you want to reset the daily popular posts?"
837
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
838
 
839
- #: admin/admin.php:1009
840
- msgid "Clear duplicates"
 
 
 
 
841
  msgstr ""
842
 
843
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  msgid "This will delete the duplicate entries in the tables. Proceed?"
845
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
846
 
847
- #: admin/admin.php:1022
848
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
849
  msgstr ""
850
 
851
- #: admin/admin.php:1025
852
  msgid ""
853
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
854
  "activate the plugin independently for each site. This would have resulted in "
855
  "two tables being created for each site in the network."
856
  msgstr ""
857
 
858
- #: admin/admin.php:1026
859
  msgid ""
860
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
861
  "your database clean. You can use this tool to import the recorded counts "
862
  "from v1.x tables to the new v2.x table format."
863
  msgstr ""
864
 
865
- #: admin/admin.php:1029
866
  msgid ""
867
  "If you do not see any tables below, then it means that either all data has "
868
  "already been imported or no relevant information has been found."
869
  msgstr ""
870
 
871
- #: admin/admin.php:1032
872
  msgid ""
873
  "After running the importer, please verify that all the counts have been "
874
  "successfully imported. Only then should you delete any old tables!"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1066
878
  msgid "Blog ID"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1069
882
  msgid "Status"
883
  msgstr ""
884
 
885
- #: admin/admin.php:1072
886
  msgid "Select to import"
887
  msgstr ""
888
 
889
- #: admin/admin.php:1082
890
  msgid "Blog #"
891
  msgstr ""
892
 
893
- #: admin/admin.php:1092
894
  msgid "Not imported"
895
  msgstr ""
896
 
897
- #: admin/admin.php:1096
898
  msgid "Imported"
899
  msgstr ""
900
 
901
- #: admin/admin.php:1117
902
  msgid "Begin import"
903
  msgstr ""
904
 
905
- #: admin/admin.php:1118
906
  msgid "Delete selected tables"
907
  msgstr ""
908
 
909
- #: admin/admin.php:1119
910
  msgid "Delete all imported tables"
911
  msgstr ""
912
 
913
- #: admin/admin.php:1176 admin/admin.php:1272
914
  msgid "Daily Popular Posts"
915
  msgstr "Gli articoli più popolari di oggi"
916
 
917
- #: admin/admin.php:1206
918
  msgid "Support the development"
919
  msgstr "Sostieni lo sviluppo"
920
 
921
- #: admin/admin.php:1213
922
  msgid "Donation for Top 10"
923
  msgstr ""
924
 
925
- #: admin/admin.php:1215
926
  msgid "Enter amount in USD: "
927
  msgstr "Inserisci la cifra in USD: "
928
 
929
- #: admin/admin.php:1219
930
  #, fuzzy
931
  msgid "Send your donation to the author of Top 10"
932
  msgstr "Invia la tua donazione all'autore di"
933
 
934
- #: admin/admin.php:1226
935
  msgid "Follow me"
936
  msgstr ""
937
 
938
- #: admin/admin.php:1236
939
  #, fuzzy
940
  msgid "Quick links"
941
  msgstr "Collegamenti veloci"
942
 
943
- #: admin/admin.php:1240
944
  #, fuzzy
945
  msgid "Top 10 plugin page"
946
  msgstr "pagina plugin"
947
 
948
- #: admin/admin.php:1241
949
  msgid "Top 10 Github page"
950
  msgstr ""
951
 
952
- #: admin/admin.php:1242
953
  msgid "Other plugins"
954
  msgstr "Altri plugin"
955
 
956
- #: admin/admin.php:1243
957
  msgid "Ajay's blog"
958
  msgstr "Il blog di Ajay"
959
 
960
- #: admin/admin.php:1244
961
  msgid "FAQ"
962
  msgstr ""
963
 
964
- #: admin/admin.php:1245 admin/admin.php:1403
965
  msgid "Support"
966
  msgstr "Supporto"
967
 
968
- #: admin/admin.php:1246
969
  msgid "Reviews"
970
  msgstr ""
971
 
972
- #: admin/admin.php:1269
973
  #, fuzzy
974
  msgid "Overall Popular Posts"
975
  msgstr "Visualizza panoramica articoli più popolari"
976
 
977
- #: admin/admin.php:1380
978
  msgid "Settings"
979
  msgstr "Impostazioni"
980
 
981
- #: admin/admin.php:1404
982
  msgid "Donate"
983
  msgstr "Donazione"
984
 
@@ -992,122 +1010,141 @@ msgstr "Gli articoli più popolari"
992
  msgid "Display popular posts"
993
  msgstr "Gli articoli più popolari di oggi"
994
 
995
- #: includes/class-top-10-widget.php:59
996
  msgid "Title"
997
  msgstr ""
998
 
999
- #: includes/class-top-10-widget.php:64
1000
  msgid "No. of posts"
1001
  msgstr ""
1002
 
1003
- #: includes/class-top-10-widget.php:69
1004
  msgid "Overall"
1005
  msgstr ""
1006
 
1007
- #: includes/class-top-10-widget.php:70
1008
  msgid "Custom time period (Enter below)"
1009
  msgstr ""
1010
 
1011
- #: includes/class-top-10-widget.php:74
1012
  msgid "In days and hours (applies only to custom option above)"
1013
  msgstr ""
1014
 
1015
- #: includes/class-top-10-widget.php:76
1016
  msgid "days"
1017
  msgstr ""
1018
 
1019
- #: includes/class-top-10-widget.php:79
1020
  msgid "hours"
1021
  msgstr ""
1022
 
1023
- #: includes/class-top-10-widget.php:84
1024
  #, fuzzy
1025
  msgid "Show count?"
1026
  msgstr "Desideri mostrare gli estratti?"
1027
 
1028
- #: includes/class-top-10-widget.php:89
1029
  #, fuzzy
1030
  msgid "Show excerpt?"
1031
  msgstr "Desideri mostrare gli estratti?"
1032
 
1033
- #: includes/class-top-10-widget.php:94
1034
  #, fuzzy
1035
  msgid "Show author?"
1036
  msgstr "Desideri mostrare gli estratti?"
1037
 
1038
- #: includes/class-top-10-widget.php:99
1039
  #, fuzzy
1040
  msgid "Show date?"
1041
  msgstr "Desideri mostrare gli estratti?"
1042
 
1043
- #: includes/class-top-10-widget.php:105
1044
  #, fuzzy
1045
  msgid "Thumbnails inline, before title"
1046
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
1047
 
1048
- #: includes/class-top-10-widget.php:106
1049
  #, fuzzy
1050
  msgid "Thumbnails inline, after title"
1051
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
1052
 
1053
- #: includes/class-top-10-widget.php:107
1054
  #, fuzzy
1055
  msgid "Only thumbnails, no text"
1056
  msgstr "Mostra le sole miniature, nessun testo"
1057
 
1058
- #: includes/class-top-10-widget.php:108
1059
  #, fuzzy
1060
  msgid "No thumbnails, only text."
1061
  msgstr "Non mostrare le miniature, solo testo."
1062
 
1063
- #: includes/class-top-10-widget.php:113
1064
  #, fuzzy
1065
  msgid "Thumbnail height"
1066
  msgstr "Opzioni miniature articolo:"
1067
 
1068
- #: includes/class-top-10-widget.php:118
1069
  #, fuzzy
1070
  msgid "Thumbnail width"
1071
  msgstr "Opzioni miniature articolo:"
1072
 
1073
- #: top-10.php:879
 
 
 
 
1074
  msgid " by "
1075
  msgstr ""
1076
 
1077
- #: top-10.php:930
1078
  #, php-format
1079
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1080
  msgstr ""
1081
 
1082
- #: top-10.php:1029
1083
  msgid "<h3>Popular Posts</h3>"
1084
  msgstr "<h3>Articoli più letti</h3>"
1085
 
1086
- #: top-10.php:1030
1087
  msgid "<h3>Daily Popular</h3>"
1088
  msgstr "<h3>I più letti di oggi</h3>"
1089
 
1090
- #: top-10.php:1031
1091
  #, fuzzy
1092
  msgid "No top posts yet"
1093
  msgstr "Ripristino 10 articoli più popolari"
1094
 
1095
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1096
  msgid "Once Weekly"
1097
  msgstr ""
1098
 
1099
- #: top-10.php:1694
1100
  msgid "Once Fortnightly"
1101
  msgstr ""
1102
 
1103
- #: top-10.php:1698
1104
  msgid "Once Monthly"
1105
  msgstr ""
1106
 
1107
- #: top-10.php:1702
1108
  msgid "Once quarterly"
1109
  msgstr ""
1110
 
 
 
 
1111
  #~ msgid "Daily Popular should contain views of how many days? "
1112
  #~ msgstr ""
1113
  #~ "Quanti giorni desideri siano considerati per il computo delle "
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
61
  msgid "Next"
62
  msgstr "Successiva"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Gli articoli più popolari"
67
 
69
  msgid "Daily Popular"
70
  msgstr "I più letti di oggi"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:171
103
  msgid "Options saved successfully."
104
  msgstr "Le opzioni sono state salvate con successo."
105
 
106
+ #: admin/admin.php:174
107
+ msgid ""
108
+ "Default styles selected. Thumbnail width, height and crop settings have been "
109
+ "fixed. Author, Excerpt and Date will not be displayed."
110
+ msgstr ""
111
+
112
+ #: admin/admin.php:190
113
  msgid "Options set to Default."
114
  msgstr "Opzioni impostate alle predefinite."
115
 
116
+ #: admin/admin.php:197
117
  msgid "Top 10 popular posts reset"
118
  msgstr "Ripristino 10 articoli più popolari"
119
 
120
+ #: admin/admin.php:204
121
  msgid "Top 10 daily popular posts reset"
122
  msgstr "Ripristino 10 articoli più popolari del giorno"
123
 
124
+ #: admin/admin.php:212
125
  msgid "Duplicate rows cleaned from tables"
126
  msgstr ""
127
 
128
+ #: admin/admin.php:220
129
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
130
+ msgstr ""
131
+
132
+ #: admin/admin.php:233
133
  msgid "Scheduled maintenance enabled / modified"
134
  msgstr ""
135
 
136
+ #: admin/admin.php:237
137
  msgid "Scheduled maintenance disabled"
138
  msgstr ""
139
 
140
+ #: admin/admin.php:276
141
  msgid "Counts from selected sites have been imported."
142
  msgstr ""
143
 
144
+ #: admin/admin.php:301
145
  msgid ""
146
  "Selected tables have been deleted. Note that only imported tables have been "
147
  "deleted."
148
  msgstr ""
149
 
150
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
151
  #, fuzzy
152
  msgid "Top 10 Settings"
153
  msgstr "Impostazioni"
154
 
155
+ #: admin/admin.php:321 admin/admin.php:343
156
  msgid "General options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:322 admin/admin.php:435
160
  msgid "Counter and tracker options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:323 admin/admin.php:540
164
  msgid "Popular post list options"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:324 admin/admin.php:742
168
+ #: includes/class-top-10-widget.php:115
169
  #, fuzzy
170
  msgid "Thumbnail options"
171
  msgstr "Opzioni miniature articolo:"
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
275
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
276
  "opzione!"
277
 
278
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
279
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
280
  #, fuzzy
281
  msgid "Save Options"
282
  msgstr "Opzioni:"
283
 
284
+ #: admin/admin.php:451
285
  #, fuzzy
286
  msgid "Display number of views on:"
287
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
288
 
289
+ #: admin/admin.php:453
290
  msgid "Posts"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:454
294
  #, fuzzy
295
  msgid "Pages"
296
  msgstr "Pagina"
297
 
298
+ #: admin/admin.php:455
299
  msgid "Home page"
300
  msgstr ""
301
 
302
+ #: admin/admin.php:456
303
  msgid "Feeds"
304
  msgstr ""
305
 
306
+ #: admin/admin.php:457
307
  msgid "Category archives"
308
  msgstr ""
309
 
310
+ #: admin/admin.php:458
311
  msgid "Tag archives"
312
  msgstr ""
313
 
314
+ #: admin/admin.php:459
315
  msgid "Other archives"
316
  msgstr ""
317
 
318
+ #: admin/admin.php:460
319
  msgid ""
320
  "If you choose to disable this, please add <code>&lt;?php if "
321
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
322
  "</code> to your template file where you want it displayed"
323
  msgstr ""
324
 
325
+ #: admin/admin.php:464
326
  #, fuzzy
327
  msgid "Format to display the post views:"
328
  msgstr "Formato per il conteggio:"
329
 
330
+ #: admin/admin.php:467
331
  msgid ""
332
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
333
  "%</code> to display the daily count and <code>%overallcount%</code> to "
335
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
336
  msgstr ""
337
 
338
+ #: admin/admin.php:471
339
  msgid "What do display when there are no visits?"
340
  msgstr ""
341
 
342
+ #: admin/admin.php:474
343
  msgid ""
344
  "This text applies only when there are 0 hits for the post and it isn't a "
345
  "single page. e.g. if you display post views on the homepage or archives then "
347
  "option."
348
  msgstr ""
349
 
350
+ #: admin/admin.php:478
351
  msgid "Always display latest post count"
352
  msgstr ""
353
 
354
+ #: admin/admin.php:481
355
  msgid ""
356
  "This option uses JavaScript and will increase your page load time. Turn this "
357
  "off if you are not using caching plugins or are OK with displaying older "
358
  "cached counts."
359
  msgstr ""
360
 
361
+ #: admin/admin.php:485
362
  msgid "Track visits of authors on their own posts?"
363
  msgstr ""
364
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
365
  "del sito?"
366
 
367
+ #: admin/admin.php:488
368
  msgid ""
369
  "Disabling this option will stop authors visits tracked on their own posts"
370
  msgstr ""
371
 
372
+ #: admin/admin.php:492
373
  #, fuzzy
374
  msgid "Track visits of admins?"
375
  msgstr ""
376
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
377
  "del sito?"
378
 
379
+ #: admin/admin.php:495
380
  msgid "Disabling this option will stop admin visits being tracked."
381
  msgstr ""
382
 
383
+ #: admin/admin.php:499
384
  #, fuzzy
385
  msgid "Track visits of Editors?"
386
  msgstr ""
387
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
388
  "del sito?"
389
 
390
+ #: admin/admin.php:502
391
  msgid "Disabling this option will stop editor visits being tracked."
392
  msgstr ""
393
 
394
+ #: admin/admin.php:506
395
  msgid "Display page views on Posts and Pages in Admin"
396
  msgstr ""
397
 
398
+ #: admin/admin.php:509
399
  msgid ""
400
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
401
  "and All Pages"
402
  msgstr ""
403
 
404
+ #: admin/admin.php:513
405
  #, fuzzy
406
  msgid "Show number of views to non-admins"
407
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
408
 
409
+ #: admin/admin.php:516
410
  msgid ""
411
  "If you disable this then non-admins won't see the above columns or view the "
412
  "independent pages with the top posts"
413
  msgstr ""
414
 
415
+ #: admin/admin.php:556
416
  msgid "Number of popular posts to display: "
417
  msgstr "Numero degli articoli più popolari da mostrare:"
418
 
419
+ #: admin/admin.php:559
420
  msgid ""
421
  "Maximum number of posts that will be displayed in the list. This option is "
422
  "used if you don't specify the number of posts in the widget or shortcodes"
423
  msgstr ""
424
 
425
+ #: admin/admin.php:563
426
  msgid "Post types to include in results (including custom post types)"
427
  msgstr ""
428
 
429
+ #: admin/admin.php:577
430
  msgid "List of post or page IDs to exclude from the results: "
431
  msgstr ""
432
 
433
+ #: admin/admin.php:579 admin/admin.php:691
434
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
435
  msgstr ""
436
 
437
+ #: admin/admin.php:583
438
  msgid "Exclude Categories: "
439
  msgstr "Escludi categorie:"
440
 
441
+ #: admin/admin.php:598
442
  msgid ""
443
  "Comma separated list of category slugs. The field above has an autocomplete "
444
  "so simply start typing in the starting letters and it will prompt you with "
445
  "options"
446
  msgstr ""
447
 
448
+ #: admin/admin.php:603
449
  msgid "Title of popular posts: "
450
  msgstr "Titolo per gli articoli più popolari:"
451
 
452
+ #: admin/admin.php:609
453
  msgid "Title of daily popular posts: "
454
  msgstr "Titolo per gli articoli più popolari del giorno:"
455
 
456
+ #: admin/admin.php:615
457
  msgid "When there are no posts, what should be shown?"
458
  msgstr ""
459
 
460
+ #: admin/admin.php:619
461
  msgid "Blank Output"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:623
465
  msgid "Display:"
466
  msgstr ""
467
 
468
+ #: admin/admin.php:628
469
  msgid "Show post excerpt in list?"
470
  msgstr "Desideri mostrare gli estratti?"
471
 
472
+ #: admin/admin.php:633
473
+ msgid ""
474
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
475
+ msgstr ""
476
+
477
+ #: admin/admin.php:638
478
  msgid "Length of excerpt (in words): "
479
  msgstr "Lunghezza estratto (in parole):"
480
 
481
+ #: admin/admin.php:644
482
  #, fuzzy
483
  msgid "Show post author in list?"
484
  msgstr "Desideri mostrare gli estratti?"
485
 
486
+ #: admin/admin.php:649
487
+ msgid ""
488
+ "Default style selected under the Custom Styles. Author display is disabled."
489
+ msgstr ""
490
+
491
+ #: admin/admin.php:654
492
  #, fuzzy
493
  msgid "Show post date in list?"
494
  msgstr "Desideri mostrare gli estratti?"
495
 
496
+ #: admin/admin.php:659
497
+ msgid ""
498
+ "Default style selected under the Custom Styles. Date display is disabled."
499
+ msgstr ""
500
+
501
+ #: admin/admin.php:664
502
  msgid "Limit post title length (in characters)"
503
  msgstr ""
504
 
505
+ #: admin/admin.php:670
506
  #, fuzzy
507
  msgid "Show view count in list?"
508
  msgstr "Desideri mostrare gli estratti?"
509
 
510
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
511
  msgid "Open links in new window"
512
  msgstr ""
513
 
514
+ #: admin/admin.php:682
515
  msgid "Add nofollow attribute to links in the list"
516
  msgstr ""
517
 
518
+ #: admin/admin.php:688
519
  msgid "Exclude display of related posts on these posts / pages"
520
  msgstr ""
521
 
522
+ #: admin/admin.php:695
523
  #, fuzzy
524
  msgid "Customise the list HTML"
525
  msgstr "Personalizzazione output:"
526
 
527
+ #: admin/admin.php:698
528
  msgid "HTML to display before the list of posts: "
529
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
530
 
531
+ #: admin/admin.php:704
532
  msgid "HTML to display before each list item: "
533
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
534
 
535
+ #: admin/admin.php:710
536
  msgid "HTML to display after each list item: "
537
  msgstr "HTML da mostrare dopo ogni lista:"
538
 
539
+ #: admin/admin.php:716
540
  msgid "HTML to display after the list of posts: "
541
  msgstr "HTML da mostrare dopo la lista degli articoli:"
542
 
543
+ #: admin/admin.php:757
544
  msgid "Location of post thumbnail:"
545
  msgstr ""
546
 
547
+ #: admin/admin.php:761
548
  msgid "Display thumbnails inline with posts, before title"
549
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
550
 
551
+ #: admin/admin.php:766
552
  msgid "Display thumbnails inline with posts, after title"
553
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
554
 
555
+ #: admin/admin.php:771
556
  msgid "Display only thumbnails, no text"
557
  msgstr "Mostra le sole miniature, nessun testo"
558
 
559
+ #: admin/admin.php:776
560
  msgid "Do not display thumbnails, only text."
561
  msgstr "Non mostrare le miniature, solo testo."
562
 
563
+ #: admin/admin.php:780
564
+ msgid ""
565
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
566
+ "to be inline before title"
567
+ msgstr ""
568
+
569
+ #: admin/admin.php:784
570
  msgid "Thumbnail size:"
571
  msgstr ""
572
 
573
+ #: admin/admin.php:808
574
  msgid "Custom size"
575
  msgstr ""
576
 
577
+ #: admin/admin.php:811
578
  msgid ""
579
  "You can choose from existing image sizes above or create a custom size. If "
580
  "you have chosen Custom size above, then enter the width, height and crop "
581
  "settings below. For best results, use a cropped image."
582
  msgstr ""
583
 
584
+ #: admin/admin.php:812
585
  msgid ""
586
  "If you change the width and/or height below, existing images will not be "
587
  "automatically resized."
588
  msgstr ""
589
 
590
+ #: admin/admin.php:813
591
  #, php-format
592
  msgid ""
593
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
594
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
595
+ "all image sizes."
596
  msgstr ""
597
 
598
+ #: admin/admin.php:816
599
  msgid "Width of custom thumbnail:"
600
  msgstr ""
601
 
602
+ #: admin/admin.php:821
603
  msgid "Height of custom thumbnail"
604
  msgstr ""
605
 
606
+ #: admin/admin.php:826
607
  msgid "Crop mode:"
608
  msgstr ""
609
 
610
+ #: admin/admin.php:830
611
  msgid ""
612
  "By default, thumbnails will be proportionately cropped. Check this box to "
613
  "hard crop the thumbnails."
614
  msgstr ""
615
 
616
+ #: admin/admin.php:831
617
  #, php-format
618
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
619
  msgstr ""
620
 
621
+ #: admin/admin.php:834
622
  msgid ""
623
+ "Default style selected under the Custom Styles. Thumbnail width and height "
624
+ "is fixed at 65px and crop mode is enabled."
625
  msgstr ""
626
 
627
+ #: admin/admin.php:839
628
  msgid "Style attributes / Width and Height HTML attributes:"
629
  msgstr ""
630
 
631
+ #: admin/admin.php:843
632
  msgid "Style attributes are used for width and height."
633
  msgstr ""
634
 
635
+ #: admin/admin.php:848
636
  msgid "HTML width and height attributes are used for width and height."
637
  msgstr ""
638
 
639
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  #, fuzzy
641
  msgid "Post thumbnail meta field name: "
642
  msgstr "Opzioni miniature articolo:"
643
 
644
+ #: admin/admin.php:855
645
  msgid ""
646
  "The value of this field should contain the image source and is set in the "
647
  "<em>Add New Post</em> screen"
648
  msgstr ""
649
 
650
+ #: admin/admin.php:858
651
  #, fuzzy
652
  msgid ""
653
  "If the postmeta is not set, then should the plugin extract the first image "
658
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
659
  "dimensioni"
660
 
661
+ #: admin/admin.php:861
662
  #, fuzzy
663
  msgid ""
664
  "This could slow down the loading of your page if the first image in the "
669
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
670
  "dimensioni"
671
 
672
+ #: admin/admin.php:864
673
  msgid "Use default thumbnail? "
674
  msgstr ""
675
 
676
+ #: admin/admin.php:867
677
  msgid ""
678
  "If checked, when no thumbnail is found, show a default one from the URL "
679
  "below. If not checked and no thumbnail is found, no image will be shown."
681
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
682
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
683
 
684
+ #: admin/admin.php:870
685
  msgid "Default thumbnail: "
686
  msgstr ""
687
 
688
+ #: admin/admin.php:874
689
  #, fuzzy
690
  msgid ""
691
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
697
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
698
  "specificato qui sotto:"
699
 
700
+ #: admin/admin.php:898
701
  msgid "Custom CSS"
702
  msgstr ""
703
 
704
+ #: admin/admin.php:913
705
  msgid "Use default style included in the plugin?"
706
  msgstr ""
707
 
708
+ #: admin/admin.php:916
709
  msgid ""
710
  "Top 10 includes a default style that makes your popular posts list to look "
711
  "beautiful. Check the box above if you want to use this."
712
  msgstr ""
713
 
714
+ #: admin/admin.php:917
715
  msgid ""
716
  "Enabling this option will turn on the thumbnails and set their width and "
717
  "height to 65px. It will also turn off the display of the author, excerpt and "
718
  "date if already enabled. Disabling this option will not revert any settings."
719
  msgstr ""
720
 
721
+ #: admin/admin.php:918
722
  #, php-format
723
  msgid ""
724
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
725
  msgstr ""
726
 
727
+ #: admin/admin.php:921
728
  msgid "Custom CSS to add to header:"
729
  msgstr ""
730
 
731
+ #: admin/admin.php:926
732
  msgid ""
733
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
734
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
735
  "available CSS classes to style."
736
  msgstr ""
737
 
738
+ #: admin/admin.php:946
739
  #, fuzzy
740
  msgid "Default Options"
741
  msgstr "Opzioni output:"
742
 
743
+ #: admin/admin.php:946
744
  msgid "Do you want to set options to Default?"
745
  msgstr "Desideri ripristinare alle predefinite?"
746
 
747
+ #: admin/admin.php:970
748
  msgid ""
749
  "Over time the Daily Top 10 database grows in size, which reduces the "
750
  "performance of the plugin. Cleaning the database at regular intervals could "
752
  "will automatically delete entries older than 90 days."
753
  msgstr ""
754
 
755
+ #: admin/admin.php:971
756
  msgid ""
757
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
758
  "everytime the job is rescheduled (i.e. you change the settings below)."
759
  msgstr ""
760
 
761
+ #: admin/admin.php:974
762
  msgid "Enable scheduled maintenance of daily tables:"
763
  msgstr ""
764
 
765
+ #: admin/admin.php:978
766
  msgid "Time to run maintenance"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:979
770
  msgid "hrs"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:979
774
  msgid "min"
775
  msgstr ""
776
 
777
+ #: admin/admin.php:981
778
  msgid "How often should the maintenance be run:"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:985
782
  msgid "Daily"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:989
786
  msgid "Weekly"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:993
790
  msgid "Fortnightly"
791
  msgstr ""
792
 
793
+ #: admin/admin.php:997
794
  msgid "Monthly"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:1006
798
  msgid "The cron job has been scheduled. Maintenance will run "
799
  msgstr ""
800
 
801
+ #: admin/admin.php:1011
802
  msgid "The cron job is missing. Please resave this page to add the job"
803
  msgstr ""
804
 
805
+ #: admin/admin.php:1016
806
  msgid "Maintenance is turned off"
807
  msgstr ""
808
 
809
+ #: admin/admin.php:1030
810
+ msgid "Reset count and other tools"
811
+ msgstr ""
812
 
813
+ #: admin/admin.php:1033
814
  msgid ""
815
  "This cannot be reversed. Make sure that your database has been backed up "
816
  "before proceeding"
818
  "Questa operazione non é reversibile. Effettua il backup del database prima "
819
  "di procedere"
820
 
821
+ #: admin/admin.php:1036
822
  #, fuzzy
823
  msgid "Reset Popular Posts"
824
  msgstr "Gli articoli più popolari"
825
 
826
+ #: admin/admin.php:1036
827
  msgid "Are you sure you want to reset the popular posts?"
828
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
829
 
830
+ #: admin/admin.php:1037
831
  #, fuzzy
832
  msgid "Reset Daily Popular Posts"
833
  msgstr "Gli articoli più popolari di oggi"
834
 
835
+ #: admin/admin.php:1037
836
  msgid "Are you sure you want to reset the daily popular posts?"
837
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
838
 
839
+ #: admin/admin.php:1040
840
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
841
+ msgstr ""
842
+
843
+ #: admin/admin.php:1043
844
+ msgid "Merge blog ID 0 and 1 post counts"
845
  msgstr ""
846
 
847
+ #: admin/admin.php:1043
848
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
849
+ msgstr ""
850
+
851
+ #: admin/admin.php:1046
852
+ msgid ""
853
+ "In older versions, the plugin created entries with duplicate post IDs. "
854
+ "Clicking the button below will merge these duplicate IDs"
855
+ msgstr ""
856
+
857
+ #: admin/admin.php:1049
858
+ msgid "Merge duplicates across blog IDs"
859
+ msgstr ""
860
+
861
+ #: admin/admin.php:1049
862
  msgid "This will delete the duplicate entries in the tables. Proceed?"
863
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
864
 
865
+ #: admin/admin.php:1066
866
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
867
  msgstr ""
868
 
869
+ #: admin/admin.php:1069
870
  msgid ""
871
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
872
  "activate the plugin independently for each site. This would have resulted in "
873
  "two tables being created for each site in the network."
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1070
877
  msgid ""
878
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
879
  "your database clean. You can use this tool to import the recorded counts "
880
  "from v1.x tables to the new v2.x table format."
881
  msgstr ""
882
 
883
+ #: admin/admin.php:1073
884
  msgid ""
885
  "If you do not see any tables below, then it means that either all data has "
886
  "already been imported or no relevant information has been found."
887
  msgstr ""
888
 
889
+ #: admin/admin.php:1076
890
  msgid ""
891
  "After running the importer, please verify that all the counts have been "
892
  "successfully imported. Only then should you delete any old tables!"
893
  msgstr ""
894
 
895
+ #: admin/admin.php:1110
896
  msgid "Blog ID"
897
  msgstr ""
898
 
899
+ #: admin/admin.php:1113
900
  msgid "Status"
901
  msgstr ""
902
 
903
+ #: admin/admin.php:1116
904
  msgid "Select to import"
905
  msgstr ""
906
 
907
+ #: admin/admin.php:1126
908
  msgid "Blog #"
909
  msgstr ""
910
 
911
+ #: admin/admin.php:1136
912
  msgid "Not imported"
913
  msgstr ""
914
 
915
+ #: admin/admin.php:1140
916
  msgid "Imported"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1161
920
  msgid "Begin import"
921
  msgstr ""
922
 
923
+ #: admin/admin.php:1162
924
  msgid "Delete selected tables"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1163
928
  msgid "Delete all imported tables"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1220 admin/admin.php:1316
932
  msgid "Daily Popular Posts"
933
  msgstr "Gli articoli più popolari di oggi"
934
 
935
+ #: admin/admin.php:1250
936
  msgid "Support the development"
937
  msgstr "Sostieni lo sviluppo"
938
 
939
+ #: admin/admin.php:1257
940
  msgid "Donation for Top 10"
941
  msgstr ""
942
 
943
+ #: admin/admin.php:1259
944
  msgid "Enter amount in USD: "
945
  msgstr "Inserisci la cifra in USD: "
946
 
947
+ #: admin/admin.php:1263
948
  #, fuzzy
949
  msgid "Send your donation to the author of Top 10"
950
  msgstr "Invia la tua donazione all'autore di"
951
 
952
+ #: admin/admin.php:1270
953
  msgid "Follow me"
954
  msgstr ""
955
 
956
+ #: admin/admin.php:1280
957
  #, fuzzy
958
  msgid "Quick links"
959
  msgstr "Collegamenti veloci"
960
 
961
+ #: admin/admin.php:1284
962
  #, fuzzy
963
  msgid "Top 10 plugin page"
964
  msgstr "pagina plugin"
965
 
966
+ #: admin/admin.php:1285
967
  msgid "Top 10 Github page"
968
  msgstr ""
969
 
970
+ #: admin/admin.php:1286
971
  msgid "Other plugins"
972
  msgstr "Altri plugin"
973
 
974
+ #: admin/admin.php:1287
975
  msgid "Ajay's blog"
976
  msgstr "Il blog di Ajay"
977
 
978
+ #: admin/admin.php:1288
979
  msgid "FAQ"
980
  msgstr ""
981
 
982
+ #: admin/admin.php:1289 admin/admin.php:1451
983
  msgid "Support"
984
  msgstr "Supporto"
985
 
986
+ #: admin/admin.php:1290
987
  msgid "Reviews"
988
  msgstr ""
989
 
990
+ #: admin/admin.php:1313
991
  #, fuzzy
992
  msgid "Overall Popular Posts"
993
  msgstr "Visualizza panoramica articoli più popolari"
994
 
995
+ #: admin/admin.php:1428
996
  msgid "Settings"
997
  msgstr "Impostazioni"
998
 
999
+ #: admin/admin.php:1452
1000
  msgid "Donate"
1001
  msgstr "Donazione"
1002
 
1010
  msgid "Display popular posts"
1011
  msgstr "Gli articoli più popolari di oggi"
1012
 
1013
+ #: includes/class-top-10-widget.php:71
1014
  msgid "Title"
1015
  msgstr ""
1016
 
1017
+ #: includes/class-top-10-widget.php:76
1018
  msgid "No. of posts"
1019
  msgstr ""
1020
 
1021
+ #: includes/class-top-10-widget.php:81
1022
  msgid "Overall"
1023
  msgstr ""
1024
 
1025
+ #: includes/class-top-10-widget.php:82
1026
  msgid "Custom time period (Enter below)"
1027
  msgstr ""
1028
 
1029
+ #: includes/class-top-10-widget.php:86
1030
  msgid "In days and hours (applies only to custom option above)"
1031
  msgstr ""
1032
 
1033
+ #: includes/class-top-10-widget.php:88
1034
  msgid "days"
1035
  msgstr ""
1036
 
1037
+ #: includes/class-top-10-widget.php:91
1038
  msgid "hours"
1039
  msgstr ""
1040
 
1041
+ #: includes/class-top-10-widget.php:96
1042
  #, fuzzy
1043
  msgid "Show count?"
1044
  msgstr "Desideri mostrare gli estratti?"
1045
 
1046
+ #: includes/class-top-10-widget.php:101
1047
  #, fuzzy
1048
  msgid "Show excerpt?"
1049
  msgstr "Desideri mostrare gli estratti?"
1050
 
1051
+ #: includes/class-top-10-widget.php:106
1052
  #, fuzzy
1053
  msgid "Show author?"
1054
  msgstr "Desideri mostrare gli estratti?"
1055
 
1056
+ #: includes/class-top-10-widget.php:111
1057
  #, fuzzy
1058
  msgid "Show date?"
1059
  msgstr "Desideri mostrare gli estratti?"
1060
 
1061
+ #: includes/class-top-10-widget.php:117
1062
  #, fuzzy
1063
  msgid "Thumbnails inline, before title"
1064
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
1065
 
1066
+ #: includes/class-top-10-widget.php:118
1067
  #, fuzzy
1068
  msgid "Thumbnails inline, after title"
1069
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
1070
 
1071
+ #: includes/class-top-10-widget.php:119
1072
  #, fuzzy
1073
  msgid "Only thumbnails, no text"
1074
  msgstr "Mostra le sole miniature, nessun testo"
1075
 
1076
+ #: includes/class-top-10-widget.php:120
1077
  #, fuzzy
1078
  msgid "No thumbnails, only text."
1079
  msgstr "Non mostrare le miniature, solo testo."
1080
 
1081
+ #: includes/class-top-10-widget.php:125
1082
  #, fuzzy
1083
  msgid "Thumbnail height"
1084
  msgstr "Opzioni miniature articolo:"
1085
 
1086
+ #: includes/class-top-10-widget.php:131
1087
  #, fuzzy
1088
  msgid "Thumbnail width"
1089
  msgstr "Opzioni miniature articolo:"
1090
 
1091
+ #: includes/class-top-10-widget.php:136
1092
+ msgid "Post types to include:"
1093
+ msgstr ""
1094
+
1095
+ #: top-10.php:756
1096
  msgid " by "
1097
  msgstr ""
1098
 
1099
+ #: top-10.php:823
1100
  #, php-format
1101
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1102
  msgstr ""
1103
 
1104
+ #: top-10.php:1113
1105
  msgid "<h3>Popular Posts</h3>"
1106
  msgstr "<h3>Articoli più letti</h3>"
1107
 
1108
+ #: top-10.php:1114
1109
  msgid "<h3>Daily Popular</h3>"
1110
  msgstr "<h3>I più letti di oggi</h3>"
1111
 
1112
+ #: top-10.php:1115
1113
  #, fuzzy
1114
  msgid "No top posts yet"
1115
  msgstr "Ripristino 10 articoli più popolari"
1116
 
1117
+ #: top-10.php:1507
1118
+ msgid "thumb_timthumb argument has been deprecated"
1119
+ msgstr ""
1120
+
1121
+ #: top-10.php:1511
1122
+ msgid "thumb_timthumb_q argument has been deprecated"
1123
+ msgstr ""
1124
+
1125
+ #: top-10.php:1515
1126
+ msgid "filter argument has been deprecated"
1127
+ msgstr ""
1128
+
1129
+ #: top-10.php:1853
1130
  msgid "Once Weekly"
1131
  msgstr ""
1132
 
1133
+ #: top-10.php:1857
1134
  msgid "Once Fortnightly"
1135
  msgstr ""
1136
 
1137
+ #: top-10.php:1861
1138
  msgid "Once Monthly"
1139
  msgstr ""
1140
 
1141
+ #: top-10.php:1865
1142
  msgid "Once quarterly"
1143
  msgstr ""
1144
 
1145
+ #~ msgid "Reset count"
1146
+ #~ msgstr "Ripristino conteggio"
1147
+
1148
  #~ msgid "Daily Popular should contain views of how many days? "
1149
  #~ msgstr ""
1150
  #~ "Quanti giorni desideri siano considerati per il computo delle "
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: 2015-01-03 01:53-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"
@@ -62,7 +62,7 @@ msgstr "Vorige"
62
  msgid "Next"
63
  msgstr "Volgende"
64
 
65
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
66
  msgid "Popular Posts"
67
  msgstr "Populaire Berichten"
68
 
@@ -70,7 +70,7 @@ msgstr "Populaire Berichten"
70
  msgid "Daily Popular"
71
  msgstr "Dagelijks Populair"
72
 
73
- #: admin/admin-metabox.php:38 admin/admin.php:1263
74
  msgid "Top 10"
75
  msgstr "Top 10"
76
 
@@ -100,125 +100,135 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Opties succesvol opgeslagen."
106
 
107
- #: admin/admin.php:173
 
 
 
 
 
 
108
  msgid "Options set to Default."
109
  msgstr "Opties ingesteld op Standaard."
110
 
111
- #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Reset Top 10 populaire berichten"
114
 
115
- #: admin/admin.php:185
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Reset Top 10 dagelijkse populaire berichten"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr ""
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr ""
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr ""
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Instellingen"
145
 
146
- #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr ""
149
 
150
- #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:295 admin/admin.php:706
159
- #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Bericht miniatuurafbeelding opties:"
163
 
164
- #: admin/admin.php:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr ""
171
 
172
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
- #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr ""
182
 
183
- #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr ""
186
 
187
- #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:345
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
- #: admin/admin.php:352
203
  msgid ""
204
  "Daily counter will display number of visits from midnight. This option is "
205
  "checked by default and mimics the way most normal counters work. Turning "
206
  "this off will allow you to use the hourly setting in the next option."
207
  msgstr ""
208
 
209
- #: admin/admin.php:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
- #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
- #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
- #: admin/admin.php:360
222
  msgid ""
223
  "Think of Daily Popular has a custom date range applied as a global setting. "
224
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -226,37 +236,37 @@ msgid ""
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
- #: admin/admin.php:364
230
  msgid "Delete options on uninstall"
231
  msgstr ""
232
 
233
- #: admin/admin.php:367
234
  msgid ""
235
  "If this is checked, all settings related to Top 10 are removed from the "
236
  "database if you choose to uninstall/delete the plugin."
237
  msgstr ""
238
 
239
- #: admin/admin.php:371
240
  msgid "Delete counter data on uninstall"
241
  msgstr ""
242
 
243
- #: admin/admin.php:374
244
  msgid ""
245
  "If this is checked, the tables containing the counter statistics are removed "
246
  "from the database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
- #: admin/admin.php:375
250
  msgid ""
251
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
  "lose your counter data."
253
  msgstr ""
254
 
255
- #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr ""
258
 
259
- #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -266,59 +276,59 @@ msgstr ""
266
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
267
  "gewaardeerd!"
268
 
269
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Opties:"
274
 
275
- #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "Geef het aantal berichtweergaves weer?"
279
 
280
- #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr ""
283
 
284
- #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "Pagina"
288
 
289
- #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr ""
292
 
293
- #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr ""
296
 
297
- #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr ""
300
 
301
- #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr ""
304
 
305
- #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr ""
308
 
309
- #: admin/admin.php:431
310
  msgid ""
311
  "If you choose to disable this, please add <code>&lt;?php if "
312
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
313
  "</code> to your template file where you want it displayed"
314
  msgstr ""
315
 
316
- #: admin/admin.php:435
317
  #, fuzzy
318
  msgid "Format to display the post views:"
319
  msgstr "Formaat om de optelling te laten zien:"
320
 
321
- #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -326,11 +336,11 @@ msgid ""
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
- #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
- #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -338,313 +348,303 @@ msgid ""
338
  "option."
339
  msgstr ""
340
 
341
- #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
- #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
- #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
355
 
356
- #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
- #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
365
 
366
- #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
- #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
374
 
375
- #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
- #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
- #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
- #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Geef het aantal paginaweergaves weer?"
393
 
394
- #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
- #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Aantal populaire berichten om weer te geven:"
403
 
404
- #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
- #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
- #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
- #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
- #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr ""
425
 
426
- #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
- #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Titel van populaire berichten:"
436
 
437
- #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Titel van dagelijkse populaire berichten:"
440
 
441
- #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
- #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
- #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Laat bericht samenvatting zien in lijst?"
456
 
457
- #: admin/admin.php:603
 
 
 
 
 
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Lengte van de samenvatting (in woorden):"
460
 
461
- #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Laat bericht samenvatting zien in lijst?"
465
 
466
- #: admin/admin.php:615
 
 
 
 
 
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Laat bericht samenvatting zien in lijst?"
470
 
471
- #: admin/admin.php:621
 
 
 
 
 
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
- #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Laat bericht samenvatting zien in lijst?"
479
 
480
- #: admin/admin.php:633
481
- msgid "Always display latest post count in the daily lists?"
482
- msgstr ""
483
-
484
- #: admin/admin.php:636
485
- msgid ""
486
- "This option uses JavaScript and will increase your page load time. When you "
487
- "enable this option, the daily widget will not use the options set there, but "
488
- "options will need to be set on this screen."
489
- msgstr ""
490
-
491
- #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
- #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
- #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
- #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Aanpassen van de output:"
507
 
508
- #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "Te weergeven HTML voor de lijst met berichten:"
511
 
512
- #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "Te weergeven HTML voor elk lijst item:"
515
 
516
- #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "Te weergeven HTML na elk lijst item:"
519
 
520
- #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "Te weergeven HTML na de lijst met berichten:"
523
 
524
- #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
- #: admin/admin.php:725
529
  #, fuzzy
530
  msgid "Display thumbnails inline with posts, before title"
531
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
532
 
533
- #: admin/admin.php:730
534
  #, fuzzy
535
  msgid "Display thumbnails inline with posts, after title"
536
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
537
 
538
- #: admin/admin.php:735
539
  msgid "Display only thumbnails, no text"
540
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
541
 
542
- #: admin/admin.php:740
543
  msgid "Do not display thumbnails, only text."
544
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
545
 
546
- #: admin/admin.php:744
 
 
 
 
 
 
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
- #: admin/admin.php:768
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
- #: admin/admin.php:771
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If "
557
  "you have chosen Custom size above, then enter the width, height and crop "
558
  "settings below. For best results, use a cropped image."
559
  msgstr ""
560
 
561
- #: admin/admin.php:772
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be "
564
  "automatically resized."
565
  msgstr ""
566
 
567
- #: admin/admin.php:773
568
  #, php-format
569
  msgid ""
570
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
571
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
572
- "regenerate all image sizes."
573
  msgstr ""
574
 
575
- #: admin/admin.php:776
576
  msgid "Width of custom thumbnail:"
577
  msgstr ""
578
 
579
- #: admin/admin.php:781
580
  msgid "Height of custom thumbnail"
581
  msgstr ""
582
 
583
- #: admin/admin.php:786
584
  msgid "Crop mode:"
585
  msgstr ""
586
 
587
- #: admin/admin.php:790
588
  msgid ""
589
  "By default, thumbnails will be proportionately cropped. Check this box to "
590
  "hard crop the thumbnails."
591
  msgstr ""
592
 
593
- #: admin/admin.php:791
594
  #, php-format
595
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
596
  msgstr ""
597
 
598
- #: admin/admin.php:793
599
  msgid ""
600
- "Since you're using the default styles set under the Custom Styles section, "
601
- "the width and height is fixed at 65px and crop mode is enabled."
602
  msgstr ""
603
 
604
- #: admin/admin.php:798
605
  msgid "Style attributes / Width and Height HTML attributes:"
606
  msgstr ""
607
 
608
- #: admin/admin.php:802
609
  msgid "Style attributes are used for width and height."
610
  msgstr ""
611
 
612
- #: admin/admin.php:807
613
  msgid "HTML width and height attributes are used for width and height."
614
  msgstr ""
615
 
616
- #: admin/admin.php:811
617
- msgid "Use timthumb to generate thumbnails? "
618
- msgstr ""
619
-
620
- #: admin/admin.php:814
621
- msgid ""
622
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
623
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
624
- msgstr ""
625
-
626
- #: admin/admin.php:817
627
- msgid "Quality of thumbnails generated by timthumb:"
628
- msgstr ""
629
-
630
- #: admin/admin.php:820
631
- msgid ""
632
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
633
- "file size. Suggested maximum value is 95. Default is 75."
634
- msgstr ""
635
-
636
- #: admin/admin.php:823
637
  #, fuzzy
638
  msgid "Post thumbnail meta field name: "
639
  msgstr "Bericht miniatuurafbeelding opties:"
640
 
641
- #: admin/admin.php:826
642
  msgid ""
643
  "The value of this field should contain the image source and is set in the "
644
  "<em>Add New Post</em> screen"
645
  msgstr ""
646
 
647
- #: admin/admin.php:829
648
  #, fuzzy
649
  msgid ""
650
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -655,7 +655,7 @@ msgstr ""
655
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
656
  "qua bestandsgrootte"
657
 
658
- #: admin/admin.php:832
659
  #, fuzzy
660
  msgid ""
661
  "This could slow down the loading of your page if the first image in the "
@@ -666,21 +666,21 @@ msgstr ""
666
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
667
  "qua bestandsgrootte"
668
 
669
- #: admin/admin.php:835
670
  msgid "Use default thumbnail? "
671
  msgstr ""
672
 
673
- #: admin/admin.php:838
674
  msgid ""
675
  "If checked, when no thumbnail is found, show a default one from the URL "
676
  "below. If not checked and no thumbnail is found, no image will be shown."
677
  msgstr ""
678
 
679
- #: admin/admin.php:841
680
  msgid "Default thumbnail: "
681
  msgstr ""
682
 
683
- #: admin/admin.php:845
684
  #, fuzzy
685
  msgid ""
686
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -692,54 +692,54 @@ msgstr ""
692
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
693
  "standaard afbeelding zoals hieronder aangegeven:"
694
 
695
- #: admin/admin.php:869
696
  msgid "Custom CSS"
697
  msgstr ""
698
 
699
- #: admin/admin.php:884
700
  msgid "Use default style included in the plugin?"
701
  msgstr ""
702
 
703
- #: admin/admin.php:887
704
  msgid ""
705
  "Top 10 includes a default style that makes your popular posts list to look "
706
  "beautiful. Check the box above if you want to use this."
707
  msgstr ""
708
 
709
- #: admin/admin.php:888
710
  msgid ""
711
  "Enabling this option will turn on the thumbnails and set their width and "
712
  "height to 65px. It will also turn off the display of the author, excerpt and "
713
  "date if already enabled. Disabling this option will not revert any settings."
714
  msgstr ""
715
 
716
- #: admin/admin.php:889
717
  #, php-format
718
  msgid ""
719
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
720
  msgstr ""
721
 
722
- #: admin/admin.php:892
723
  msgid "Custom CSS to add to header:"
724
  msgstr ""
725
 
726
- #: admin/admin.php:897
727
  msgid ""
728
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
729
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
730
  "available CSS classes to style."
731
  msgstr ""
732
 
733
- #: admin/admin.php:917
734
  #, fuzzy
735
  msgid "Default Options"
736
  msgstr "Output Opties:"
737
 
738
- #: admin/admin.php:917
739
  msgid "Do you want to set options to Default?"
740
  msgstr "Wil je de opties terugzetten naar standaard?"
741
 
742
- #: admin/admin.php:941
743
  msgid ""
744
  "Over time the Daily Top 10 database grows in size, which reduces the "
745
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -747,65 +747,65 @@ msgid ""
747
  "will automatically delete entries older than 90 days."
748
  msgstr ""
749
 
750
- #: admin/admin.php:942
751
  msgid ""
752
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
753
  "everytime the job is rescheduled (i.e. you change the settings below)."
754
  msgstr ""
755
 
756
- #: admin/admin.php:945
757
  msgid "Enable scheduled maintenance of daily tables:"
758
  msgstr ""
759
 
760
- #: admin/admin.php:949
761
  msgid "Time to run maintenance"
762
  msgstr ""
763
 
764
- #: admin/admin.php:950
765
  msgid "hrs"
766
  msgstr ""
767
 
768
- #: admin/admin.php:950
769
  msgid "min"
770
  msgstr ""
771
 
772
- #: admin/admin.php:952
773
  msgid "How often should the maintenance be run:"
774
  msgstr ""
775
 
776
- #: admin/admin.php:956
777
  msgid "Daily"
778
  msgstr ""
779
 
780
- #: admin/admin.php:960
781
  msgid "Weekly"
782
  msgstr ""
783
 
784
- #: admin/admin.php:964
785
  msgid "Fortnightly"
786
  msgstr ""
787
 
788
- #: admin/admin.php:968
789
  msgid "Monthly"
790
  msgstr ""
791
 
792
- #: admin/admin.php:977
793
  msgid "The cron job has been scheduled. Maintenance will run "
794
  msgstr ""
795
 
796
- #: admin/admin.php:982
797
  msgid "The cron job is missing. Please resave this page to add the job"
798
  msgstr ""
799
 
800
- #: admin/admin.php:987
801
  msgid "Maintenance is turned off"
802
  msgstr ""
803
 
804
- #: admin/admin.php:1001
805
- msgid "Reset count"
806
- msgstr "Reset telling"
807
 
808
- #: admin/admin.php:1004
809
  msgid ""
810
  "This cannot be reversed. Make sure that your database has been backed up "
811
  "before proceeding"
@@ -813,168 +813,186 @@ msgstr ""
813
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
814
  "database gemaakt hebt voordat je verder gaat"
815
 
816
- #: admin/admin.php:1007
817
  #, fuzzy
818
  msgid "Reset Popular Posts"
819
  msgstr "Populaire Berichten"
820
 
821
- #: admin/admin.php:1007
822
  msgid "Are you sure you want to reset the popular posts?"
823
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
824
 
825
- #: admin/admin.php:1008
826
  #, fuzzy
827
  msgid "Reset Daily Popular Posts"
828
  msgstr "Dagelijkse Populaire Berichten"
829
 
830
- #: admin/admin.php:1008
831
  msgid "Are you sure you want to reset the daily popular posts?"
832
  msgstr ""
833
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
834
 
835
- #: admin/admin.php:1009
836
- msgid "Clear duplicates"
 
 
 
 
837
  msgstr ""
838
 
839
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
840
  msgid "This will delete the duplicate entries in the tables. Proceed?"
841
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
842
 
843
- #: admin/admin.php:1022
844
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
845
  msgstr ""
846
 
847
- #: admin/admin.php:1025
848
  msgid ""
849
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
850
  "activate the plugin independently for each site. This would have resulted in "
851
  "two tables being created for each site in the network."
852
  msgstr ""
853
 
854
- #: admin/admin.php:1026
855
  msgid ""
856
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
857
  "your database clean. You can use this tool to import the recorded counts "
858
  "from v1.x tables to the new v2.x table format."
859
  msgstr ""
860
 
861
- #: admin/admin.php:1029
862
  msgid ""
863
  "If you do not see any tables below, then it means that either all data has "
864
  "already been imported or no relevant information has been found."
865
  msgstr ""
866
 
867
- #: admin/admin.php:1032
868
  msgid ""
869
  "After running the importer, please verify that all the counts have been "
870
  "successfully imported. Only then should you delete any old tables!"
871
  msgstr ""
872
 
873
- #: admin/admin.php:1066
874
  msgid "Blog ID"
875
  msgstr ""
876
 
877
- #: admin/admin.php:1069
878
  msgid "Status"
879
  msgstr ""
880
 
881
- #: admin/admin.php:1072
882
  msgid "Select to import"
883
  msgstr ""
884
 
885
- #: admin/admin.php:1082
886
  msgid "Blog #"
887
  msgstr ""
888
 
889
- #: admin/admin.php:1092
890
  msgid "Not imported"
891
  msgstr ""
892
 
893
- #: admin/admin.php:1096
894
  msgid "Imported"
895
  msgstr ""
896
 
897
- #: admin/admin.php:1117
898
  msgid "Begin import"
899
  msgstr ""
900
 
901
- #: admin/admin.php:1118
902
  msgid "Delete selected tables"
903
  msgstr ""
904
 
905
- #: admin/admin.php:1119
906
  msgid "Delete all imported tables"
907
  msgstr ""
908
 
909
- #: admin/admin.php:1176 admin/admin.php:1272
910
  msgid "Daily Popular Posts"
911
  msgstr "Dagelijkse Populaire Berichten"
912
 
913
- #: admin/admin.php:1206
914
  msgid "Support the development"
915
  msgstr "Ondersteun de ontwikkeling"
916
 
917
- #: admin/admin.php:1213
918
  msgid "Donation for Top 10"
919
  msgstr ""
920
 
921
- #: admin/admin.php:1215
922
  msgid "Enter amount in USD: "
923
  msgstr "Voer het bedrag in in USD:"
924
 
925
- #: admin/admin.php:1219
926
  #, fuzzy
927
  msgid "Send your donation to the author of Top 10"
928
  msgstr "Zend je donatie naar de auteur van "
929
 
930
- #: admin/admin.php:1226
931
  msgid "Follow me"
932
  msgstr ""
933
 
934
- #: admin/admin.php:1236
935
  #, fuzzy
936
  msgid "Quick links"
937
  msgstr "Quick links"
938
 
939
- #: admin/admin.php:1240
940
  #, fuzzy
941
  msgid "Top 10 plugin page"
942
  msgstr "plugin pagina"
943
 
944
- #: admin/admin.php:1241
945
  msgid "Top 10 Github page"
946
  msgstr ""
947
 
948
- #: admin/admin.php:1242
949
  msgid "Other plugins"
950
  msgstr "Andere plugins"
951
 
952
- #: admin/admin.php:1243
953
  msgid "Ajay's blog"
954
  msgstr "De blog van Ajay"
955
 
956
- #: admin/admin.php:1244
957
  msgid "FAQ"
958
  msgstr ""
959
 
960
- #: admin/admin.php:1245 admin/admin.php:1403
961
  msgid "Support"
962
  msgstr "Ondersteuning"
963
 
964
- #: admin/admin.php:1246
965
  msgid "Reviews"
966
  msgstr ""
967
 
968
- #: admin/admin.php:1269
969
  #, fuzzy
970
  msgid "Overall Popular Posts"
971
  msgstr "Bekijk het Totaal Populaire Berichten"
972
 
973
- #: admin/admin.php:1380
974
  msgid "Settings"
975
  msgstr "Instellingen"
976
 
977
- #: admin/admin.php:1404
978
  msgid "Donate"
979
  msgstr "Doneer"
980
 
@@ -988,122 +1006,141 @@ msgstr "Populaire Berichten"
988
  msgid "Display popular posts"
989
  msgstr "Dagelijkse Populaire Berichten"
990
 
991
- #: includes/class-top-10-widget.php:59
992
  msgid "Title"
993
  msgstr ""
994
 
995
- #: includes/class-top-10-widget.php:64
996
  msgid "No. of posts"
997
  msgstr ""
998
 
999
- #: includes/class-top-10-widget.php:69
1000
  msgid "Overall"
1001
  msgstr ""
1002
 
1003
- #: includes/class-top-10-widget.php:70
1004
  msgid "Custom time period (Enter below)"
1005
  msgstr ""
1006
 
1007
- #: includes/class-top-10-widget.php:74
1008
  msgid "In days and hours (applies only to custom option above)"
1009
  msgstr ""
1010
 
1011
- #: includes/class-top-10-widget.php:76
1012
  msgid "days"
1013
  msgstr ""
1014
 
1015
- #: includes/class-top-10-widget.php:79
1016
  msgid "hours"
1017
  msgstr ""
1018
 
1019
- #: includes/class-top-10-widget.php:84
1020
  #, fuzzy
1021
  msgid "Show count?"
1022
  msgstr "Laat bericht samenvatting zien in lijst?"
1023
 
1024
- #: includes/class-top-10-widget.php:89
1025
  #, fuzzy
1026
  msgid "Show excerpt?"
1027
  msgstr "Laat bericht samenvatting zien in lijst?"
1028
 
1029
- #: includes/class-top-10-widget.php:94
1030
  #, fuzzy
1031
  msgid "Show author?"
1032
  msgstr "Laat bericht samenvatting zien in lijst?"
1033
 
1034
- #: includes/class-top-10-widget.php:99
1035
  #, fuzzy
1036
  msgid "Show date?"
1037
  msgstr "Laat bericht samenvatting zien in lijst?"
1038
 
1039
- #: includes/class-top-10-widget.php:105
1040
  #, fuzzy
1041
  msgid "Thumbnails inline, before title"
1042
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
1043
 
1044
- #: includes/class-top-10-widget.php:106
1045
  #, fuzzy
1046
  msgid "Thumbnails inline, after title"
1047
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
1048
 
1049
- #: includes/class-top-10-widget.php:107
1050
  #, fuzzy
1051
  msgid "Only thumbnails, no text"
1052
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
1053
 
1054
- #: includes/class-top-10-widget.php:108
1055
  #, fuzzy
1056
  msgid "No thumbnails, only text."
1057
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
1058
 
1059
- #: includes/class-top-10-widget.php:113
1060
  #, fuzzy
1061
  msgid "Thumbnail height"
1062
  msgstr "Bericht miniatuurafbeelding opties:"
1063
 
1064
- #: includes/class-top-10-widget.php:118
1065
  #, fuzzy
1066
  msgid "Thumbnail width"
1067
  msgstr "Bericht miniatuurafbeelding opties:"
1068
 
1069
- #: top-10.php:879
 
 
 
 
1070
  msgid " by "
1071
  msgstr ""
1072
 
1073
- #: top-10.php:930
1074
  #, php-format
1075
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1076
  msgstr ""
1077
 
1078
- #: top-10.php:1029
1079
  msgid "<h3>Popular Posts</h3>"
1080
  msgstr "<h3>Populaire Berichten</h3>"
1081
 
1082
- #: top-10.php:1030
1083
  msgid "<h3>Daily Popular</h3>"
1084
  msgstr "<h3>Dagelijks Populair</h3>"
1085
 
1086
- #: top-10.php:1031
1087
  #, fuzzy
1088
  msgid "No top posts yet"
1089
  msgstr "Reset Top 10 populaire berichten"
1090
 
1091
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1092
  msgid "Once Weekly"
1093
  msgstr ""
1094
 
1095
- #: top-10.php:1694
1096
  msgid "Once Fortnightly"
1097
  msgstr ""
1098
 
1099
- #: top-10.php:1698
1100
  msgid "Once Monthly"
1101
  msgstr ""
1102
 
1103
- #: top-10.php:1702
1104
  msgid "Once quarterly"
1105
  msgstr ""
1106
 
 
 
 
1107
  #~ msgid "Daily Popular should contain views of how many days? "
1108
  #~ msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
1109
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
62
  msgid "Next"
63
  msgstr "Volgende"
64
 
65
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
66
  msgid "Popular Posts"
67
  msgstr "Populaire Berichten"
68
 
70
  msgid "Daily Popular"
71
  msgstr "Dagelijks Populair"
72
 
73
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
74
  msgid "Top 10"
75
  msgstr "Top 10"
76
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:171
104
  msgid "Options saved successfully."
105
  msgstr "Opties succesvol opgeslagen."
106
 
107
+ #: admin/admin.php:174
108
+ msgid ""
109
+ "Default styles selected. Thumbnail width, height and crop settings have been "
110
+ "fixed. Author, Excerpt and Date will not be displayed."
111
+ msgstr ""
112
+
113
+ #: admin/admin.php:190
114
  msgid "Options set to Default."
115
  msgstr "Opties ingesteld op Standaard."
116
 
117
+ #: admin/admin.php:197
118
  msgid "Top 10 popular posts reset"
119
  msgstr "Reset Top 10 populaire berichten"
120
 
121
+ #: admin/admin.php:204
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "Reset Top 10 dagelijkse populaire berichten"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr ""
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr ""
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr ""
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid ""
147
  "Selected tables have been deleted. Note that only imported tables have been "
148
  "deleted."
149
  msgstr ""
150
 
151
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
152
  #, fuzzy
153
  msgid "Top 10 Settings"
154
  msgstr "Instellingen"
155
 
156
+ #: admin/admin.php:321 admin/admin.php:343
157
  msgid "General options"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:322 admin/admin.php:435
161
  msgid "Counter and tracker options"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:323 admin/admin.php:540
165
  msgid "Popular post list options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:324 admin/admin.php:742
169
+ #: includes/class-top-10-widget.php:115
170
  #, fuzzy
171
  msgid "Thumbnail options"
172
  msgstr "Bericht miniatuurafbeelding opties:"
173
 
174
+ #: admin/admin.php:325
175
  msgid "Custom styles"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:326 admin/admin.php:966
179
  msgid "Maintenance"
180
  msgstr ""
181
 
182
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
183
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
184
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
185
+ #: admin/admin.php:1269 admin/admin.php:1279
186
  msgid "Click to toggle"
187
  msgstr ""
188
 
189
+ #: admin/admin.php:359
190
  msgid "Enable Overall stats"
191
  msgstr ""
192
 
193
+ #: admin/admin.php:365
194
  msgid "Enable Daily stats"
195
  msgstr ""
196
 
197
+ #: admin/admin.php:371
198
  msgid "Cache fix:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:374
202
  msgid ""
203
  "This will try to prevent W3 Total Cache and other caching plugins from "
204
  "caching the tracker script of the plugin. Try toggling this option in case "
205
  "you find that your posts are not tracked."
206
  msgstr ""
207
 
208
+ #: admin/admin.php:378
209
  msgid "Start daily counts from midnight:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:381
213
  msgid ""
214
  "Daily counter will display number of visits from midnight. This option is "
215
  "checked by default and mimics the way most normal counters work. Turning "
216
  "this off will allow you to use the hourly setting in the next option."
217
  msgstr ""
218
 
219
+ #: admin/admin.php:385
220
  msgid "Daily popular contains top posts over:"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:387
224
  msgid "day(s)"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:388
228
  msgid "hour(s)"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:389
232
  msgid ""
233
  "Think of Daily Popular has a custom date range applied as a global setting. "
234
  "Instead of displaying popular posts from the past day, this setting lets you "
236
  "overridden in the widget."
237
  msgstr ""
238
 
239
+ #: admin/admin.php:393
240
  msgid "Delete options on uninstall"
241
  msgstr ""
242
 
243
+ #: admin/admin.php:396
244
  msgid ""
245
  "If this is checked, all settings related to Top 10 are removed from the "
246
  "database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
+ #: admin/admin.php:400
250
  msgid "Delete counter data on uninstall"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:403
254
  msgid ""
255
  "If this is checked, the tables containing the counter statistics are removed "
256
  "from the database if you choose to uninstall/delete the plugin."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:404
260
  msgid ""
261
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
262
  "lose your counter data."
263
  msgstr ""
264
 
265
+ #: admin/admin.php:408
266
  msgid "Link to Top 10 plugin page"
267
  msgstr ""
268
 
269
+ #: admin/admin.php:411
270
  #, fuzzy
271
  msgid ""
272
  "A link to the plugin is added as an extra list item to the list of popular "
276
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
277
  "gewaardeerd!"
278
 
279
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
280
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
281
  #, fuzzy
282
  msgid "Save Options"
283
  msgstr "Opties:"
284
 
285
+ #: admin/admin.php:451
286
  #, fuzzy
287
  msgid "Display number of views on:"
288
  msgstr "Geef het aantal berichtweergaves weer?"
289
 
290
+ #: admin/admin.php:453
291
  msgid "Posts"
292
  msgstr ""
293
 
294
+ #: admin/admin.php:454
295
  #, fuzzy
296
  msgid "Pages"
297
  msgstr "Pagina"
298
 
299
+ #: admin/admin.php:455
300
  msgid "Home page"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:456
304
  msgid "Feeds"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:457
308
  msgid "Category archives"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:458
312
  msgid "Tag archives"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:459
316
  msgid "Other archives"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:460
320
  msgid ""
321
  "If you choose to disable this, please add <code>&lt;?php if "
322
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
323
  "</code> to your template file where you want it displayed"
324
  msgstr ""
325
 
326
+ #: admin/admin.php:464
327
  #, fuzzy
328
  msgid "Format to display the post views:"
329
  msgstr "Formaat om de optelling te laten zien:"
330
 
331
+ #: admin/admin.php:467
332
  msgid ""
333
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
334
  "%</code> to display the daily count and <code>%overallcount%</code> to "
336
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:471
340
  msgid "What do display when there are no visits?"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:474
344
  msgid ""
345
  "This text applies only when there are 0 hits for the post and it isn't a "
346
  "single page. e.g. if you display post views on the homepage or archives then "
348
  "option."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:478
352
  msgid "Always display latest post count"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:481
356
  msgid ""
357
  "This option uses JavaScript and will increase your page load time. Turn this "
358
  "off if you are not using caching plugins or are OK with displaying older "
359
  "cached counts."
360
  msgstr ""
361
 
362
+ #: admin/admin.php:485
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
365
 
366
+ #: admin/admin.php:488
367
  msgid ""
368
  "Disabling this option will stop authors visits tracked on their own posts"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:492
372
  #, fuzzy
373
  msgid "Track visits of admins?"
374
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
375
 
376
+ #: admin/admin.php:495
377
  msgid "Disabling this option will stop admin visits being tracked."
378
  msgstr ""
379
 
380
+ #: admin/admin.php:499
381
  #, fuzzy
382
  msgid "Track visits of Editors?"
383
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
384
 
385
+ #: admin/admin.php:502
386
  msgid "Disabling this option will stop editor visits being tracked."
387
  msgstr ""
388
 
389
+ #: admin/admin.php:506
390
  msgid "Display page views on Posts and Pages in Admin"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:509
394
  msgid ""
395
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
396
  "and All Pages"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:513
400
  #, fuzzy
401
  msgid "Show number of views to non-admins"
402
  msgstr "Geef het aantal paginaweergaves weer?"
403
 
404
+ #: admin/admin.php:516
405
  msgid ""
406
  "If you disable this then non-admins won't see the above columns or view the "
407
  "independent pages with the top posts"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:556
411
  msgid "Number of popular posts to display: "
412
  msgstr "Aantal populaire berichten om weer te geven:"
413
 
414
+ #: admin/admin.php:559
415
  msgid ""
416
  "Maximum number of posts that will be displayed in the list. This option is "
417
  "used if you don't specify the number of posts in the widget or shortcodes"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:563
421
  msgid "Post types to include in results (including custom post types)"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:577
425
  msgid "List of post or page IDs to exclude from the results: "
426
  msgstr ""
427
 
428
+ #: admin/admin.php:579 admin/admin.php:691
429
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:583
433
  msgid "Exclude Categories: "
434
  msgstr ""
435
 
436
+ #: admin/admin.php:598
437
  msgid ""
438
  "Comma separated list of category slugs. The field above has an autocomplete "
439
  "so simply start typing in the starting letters and it will prompt you with "
440
  "options"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:603
444
  msgid "Title of popular posts: "
445
  msgstr "Titel van populaire berichten:"
446
 
447
+ #: admin/admin.php:609
448
  msgid "Title of daily popular posts: "
449
  msgstr "Titel van dagelijkse populaire berichten:"
450
 
451
+ #: admin/admin.php:615
452
  msgid "When there are no posts, what should be shown?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:619
456
  msgid "Blank Output"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:623
460
  msgid "Display:"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:628
464
  msgid "Show post excerpt in list?"
465
  msgstr "Laat bericht samenvatting zien in lijst?"
466
 
467
+ #: admin/admin.php:633
468
+ msgid ""
469
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
470
+ msgstr ""
471
+
472
+ #: admin/admin.php:638
473
  msgid "Length of excerpt (in words): "
474
  msgstr "Lengte van de samenvatting (in woorden):"
475
 
476
+ #: admin/admin.php:644
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "Laat bericht samenvatting zien in lijst?"
480
 
481
+ #: admin/admin.php:649
482
+ msgid ""
483
+ "Default style selected under the Custom Styles. Author display is disabled."
484
+ msgstr ""
485
+
486
+ #: admin/admin.php:654
487
  #, fuzzy
488
  msgid "Show post date in list?"
489
  msgstr "Laat bericht samenvatting zien in lijst?"
490
 
491
+ #: admin/admin.php:659
492
+ msgid ""
493
+ "Default style selected under the Custom Styles. Date display is disabled."
494
+ msgstr ""
495
+
496
+ #: admin/admin.php:664
497
  msgid "Limit post title length (in characters)"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:670
501
  #, fuzzy
502
  msgid "Show view count in list?"
503
  msgstr "Laat bericht samenvatting zien in lijst?"
504
 
505
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "Open links in new window"
507
  msgstr ""
508
 
509
+ #: admin/admin.php:682
510
  msgid "Add nofollow attribute to links in the list"
511
  msgstr ""
512
 
513
+ #: admin/admin.php:688
514
  msgid "Exclude display of related posts on these posts / pages"
515
  msgstr ""
516
 
517
+ #: admin/admin.php:695
518
  #, fuzzy
519
  msgid "Customise the list HTML"
520
  msgstr "Aanpassen van de output:"
521
 
522
+ #: admin/admin.php:698
523
  msgid "HTML to display before the list of posts: "
524
  msgstr "Te weergeven HTML voor de lijst met berichten:"
525
 
526
+ #: admin/admin.php:704
527
  msgid "HTML to display before each list item: "
528
  msgstr "Te weergeven HTML voor elk lijst item:"
529
 
530
+ #: admin/admin.php:710
531
  msgid "HTML to display after each list item: "
532
  msgstr "Te weergeven HTML na elk lijst item:"
533
 
534
+ #: admin/admin.php:716
535
  msgid "HTML to display after the list of posts: "
536
  msgstr "Te weergeven HTML na de lijst met berichten:"
537
 
538
+ #: admin/admin.php:757
539
  msgid "Location of post thumbnail:"
540
  msgstr ""
541
 
542
+ #: admin/admin.php:761
543
  #, fuzzy
544
  msgid "Display thumbnails inline with posts, before title"
545
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
546
 
547
+ #: admin/admin.php:766
548
  #, fuzzy
549
  msgid "Display thumbnails inline with posts, after title"
550
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
551
 
552
+ #: admin/admin.php:771
553
  msgid "Display only thumbnails, no text"
554
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
555
 
556
+ #: admin/admin.php:776
557
  msgid "Do not display thumbnails, only text."
558
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
559
 
560
+ #: admin/admin.php:780
561
+ msgid ""
562
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
563
+ "to be inline before title"
564
+ msgstr ""
565
+
566
+ #: admin/admin.php:784
567
  msgid "Thumbnail size:"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:808
571
  msgid "Custom size"
572
  msgstr ""
573
 
574
+ #: admin/admin.php:811
575
  msgid ""
576
  "You can choose from existing image sizes above or create a custom size. If "
577
  "you have chosen Custom size above, then enter the width, height and crop "
578
  "settings below. For best results, use a cropped image."
579
  msgstr ""
580
 
581
+ #: admin/admin.php:812
582
  msgid ""
583
  "If you change the width and/or height below, existing images will not be "
584
  "automatically resized."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:813
588
  #, php-format
589
  msgid ""
590
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
591
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
592
+ "all image sizes."
593
  msgstr ""
594
 
595
+ #: admin/admin.php:816
596
  msgid "Width of custom thumbnail:"
597
  msgstr ""
598
 
599
+ #: admin/admin.php:821
600
  msgid "Height of custom thumbnail"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:826
604
  msgid "Crop mode:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:830
608
  msgid ""
609
  "By default, thumbnails will be proportionately cropped. Check this box to "
610
  "hard crop the thumbnails."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:831
614
  #, php-format
615
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
616
  msgstr ""
617
 
618
+ #: admin/admin.php:834
619
  msgid ""
620
+ "Default style selected under the Custom Styles. Thumbnail width and height "
621
+ "is fixed at 65px and crop mode is enabled."
622
  msgstr ""
623
 
624
+ #: admin/admin.php:839
625
  msgid "Style attributes / Width and Height HTML attributes:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:843
629
  msgid "Style attributes are used for width and height."
630
  msgstr ""
631
 
632
+ #: admin/admin.php:848
633
  msgid "HTML width and height attributes are used for width and height."
634
  msgstr ""
635
 
636
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
  #, fuzzy
638
  msgid "Post thumbnail meta field name: "
639
  msgstr "Bericht miniatuurafbeelding opties:"
640
 
641
+ #: admin/admin.php:855
642
  msgid ""
643
  "The value of this field should contain the image source and is set in the "
644
  "<em>Add New Post</em> screen"
645
  msgstr ""
646
 
647
+ #: admin/admin.php:858
648
  #, fuzzy
649
  msgid ""
650
  "If the postmeta is not set, then should the plugin extract the first image "
655
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
656
  "qua bestandsgrootte"
657
 
658
+ #: admin/admin.php:861
659
  #, fuzzy
660
  msgid ""
661
  "This could slow down the loading of your page if the first image in the "
666
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
667
  "qua bestandsgrootte"
668
 
669
+ #: admin/admin.php:864
670
  msgid "Use default thumbnail? "
671
  msgstr ""
672
 
673
+ #: admin/admin.php:867
674
  msgid ""
675
  "If checked, when no thumbnail is found, show a default one from the URL "
676
  "below. If not checked and no thumbnail is found, no image will be shown."
677
  msgstr ""
678
 
679
+ #: admin/admin.php:870
680
  msgid "Default thumbnail: "
681
  msgstr ""
682
 
683
+ #: admin/admin.php:874
684
  #, fuzzy
685
  msgid ""
686
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
692
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
693
  "standaard afbeelding zoals hieronder aangegeven:"
694
 
695
+ #: admin/admin.php:898
696
  msgid "Custom CSS"
697
  msgstr ""
698
 
699
+ #: admin/admin.php:913
700
  msgid "Use default style included in the plugin?"
701
  msgstr ""
702
 
703
+ #: admin/admin.php:916
704
  msgid ""
705
  "Top 10 includes a default style that makes your popular posts list to look "
706
  "beautiful. Check the box above if you want to use this."
707
  msgstr ""
708
 
709
+ #: admin/admin.php:917
710
  msgid ""
711
  "Enabling this option will turn on the thumbnails and set their width and "
712
  "height to 65px. It will also turn off the display of the author, excerpt and "
713
  "date if already enabled. Disabling this option will not revert any settings."
714
  msgstr ""
715
 
716
+ #: admin/admin.php:918
717
  #, php-format
718
  msgid ""
719
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
720
  msgstr ""
721
 
722
+ #: admin/admin.php:921
723
  msgid "Custom CSS to add to header:"
724
  msgstr ""
725
 
726
+ #: admin/admin.php:926
727
  msgid ""
728
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
729
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
730
  "available CSS classes to style."
731
  msgstr ""
732
 
733
+ #: admin/admin.php:946
734
  #, fuzzy
735
  msgid "Default Options"
736
  msgstr "Output Opties:"
737
 
738
+ #: admin/admin.php:946
739
  msgid "Do you want to set options to Default?"
740
  msgstr "Wil je de opties terugzetten naar standaard?"
741
 
742
+ #: admin/admin.php:970
743
  msgid ""
744
  "Over time the Daily Top 10 database grows in size, which reduces the "
745
  "performance of the plugin. Cleaning the database at regular intervals could "
747
  "will automatically delete entries older than 90 days."
748
  msgstr ""
749
 
750
+ #: admin/admin.php:971
751
  msgid ""
752
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
753
  "everytime the job is rescheduled (i.e. you change the settings below)."
754
  msgstr ""
755
 
756
+ #: admin/admin.php:974
757
  msgid "Enable scheduled maintenance of daily tables:"
758
  msgstr ""
759
 
760
+ #: admin/admin.php:978
761
  msgid "Time to run maintenance"
762
  msgstr ""
763
 
764
+ #: admin/admin.php:979
765
  msgid "hrs"
766
  msgstr ""
767
 
768
+ #: admin/admin.php:979
769
  msgid "min"
770
  msgstr ""
771
 
772
+ #: admin/admin.php:981
773
  msgid "How often should the maintenance be run:"
774
  msgstr ""
775
 
776
+ #: admin/admin.php:985
777
  msgid "Daily"
778
  msgstr ""
779
 
780
+ #: admin/admin.php:989
781
  msgid "Weekly"
782
  msgstr ""
783
 
784
+ #: admin/admin.php:993
785
  msgid "Fortnightly"
786
  msgstr ""
787
 
788
+ #: admin/admin.php:997
789
  msgid "Monthly"
790
  msgstr ""
791
 
792
+ #: admin/admin.php:1006
793
  msgid "The cron job has been scheduled. Maintenance will run "
794
  msgstr ""
795
 
796
+ #: admin/admin.php:1011
797
  msgid "The cron job is missing. Please resave this page to add the job"
798
  msgstr ""
799
 
800
+ #: admin/admin.php:1016
801
  msgid "Maintenance is turned off"
802
  msgstr ""
803
 
804
+ #: admin/admin.php:1030
805
+ msgid "Reset count and other tools"
806
+ msgstr ""
807
 
808
+ #: admin/admin.php:1033
809
  msgid ""
810
  "This cannot be reversed. Make sure that your database has been backed up "
811
  "before proceeding"
813
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
814
  "database gemaakt hebt voordat je verder gaat"
815
 
816
+ #: admin/admin.php:1036
817
  #, fuzzy
818
  msgid "Reset Popular Posts"
819
  msgstr "Populaire Berichten"
820
 
821
+ #: admin/admin.php:1036
822
  msgid "Are you sure you want to reset the popular posts?"
823
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
824
 
825
+ #: admin/admin.php:1037
826
  #, fuzzy
827
  msgid "Reset Daily Popular Posts"
828
  msgstr "Dagelijkse Populaire Berichten"
829
 
830
+ #: admin/admin.php:1037
831
  msgid "Are you sure you want to reset the daily popular posts?"
832
  msgstr ""
833
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
834
 
835
+ #: admin/admin.php:1040
836
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
837
+ msgstr ""
838
+
839
+ #: admin/admin.php:1043
840
+ msgid "Merge blog ID 0 and 1 post counts"
841
  msgstr ""
842
 
843
+ #: admin/admin.php:1043
844
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
845
+ msgstr ""
846
+
847
+ #: admin/admin.php:1046
848
+ msgid ""
849
+ "In older versions, the plugin created entries with duplicate post IDs. "
850
+ "Clicking the button below will merge these duplicate IDs"
851
+ msgstr ""
852
+
853
+ #: admin/admin.php:1049
854
+ msgid "Merge duplicates across blog IDs"
855
+ msgstr ""
856
+
857
+ #: admin/admin.php:1049
858
  msgid "This will delete the duplicate entries in the tables. Proceed?"
859
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
860
 
861
+ #: admin/admin.php:1066
862
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
863
  msgstr ""
864
 
865
+ #: admin/admin.php:1069
866
  msgid ""
867
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
868
  "activate the plugin independently for each site. This would have resulted in "
869
  "two tables being created for each site in the network."
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1070
873
  msgid ""
874
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
875
  "your database clean. You can use this tool to import the recorded counts "
876
  "from v1.x tables to the new v2.x table format."
877
  msgstr ""
878
 
879
+ #: admin/admin.php:1073
880
  msgid ""
881
  "If you do not see any tables below, then it means that either all data has "
882
  "already been imported or no relevant information has been found."
883
  msgstr ""
884
 
885
+ #: admin/admin.php:1076
886
  msgid ""
887
  "After running the importer, please verify that all the counts have been "
888
  "successfully imported. Only then should you delete any old tables!"
889
  msgstr ""
890
 
891
+ #: admin/admin.php:1110
892
  msgid "Blog ID"
893
  msgstr ""
894
 
895
+ #: admin/admin.php:1113
896
  msgid "Status"
897
  msgstr ""
898
 
899
+ #: admin/admin.php:1116
900
  msgid "Select to import"
901
  msgstr ""
902
 
903
+ #: admin/admin.php:1126
904
  msgid "Blog #"
905
  msgstr ""
906
 
907
+ #: admin/admin.php:1136
908
  msgid "Not imported"
909
  msgstr ""
910
 
911
+ #: admin/admin.php:1140
912
  msgid "Imported"
913
  msgstr ""
914
 
915
+ #: admin/admin.php:1161
916
  msgid "Begin import"
917
  msgstr ""
918
 
919
+ #: admin/admin.php:1162
920
  msgid "Delete selected tables"
921
  msgstr ""
922
 
923
+ #: admin/admin.php:1163
924
  msgid "Delete all imported tables"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1220 admin/admin.php:1316
928
  msgid "Daily Popular Posts"
929
  msgstr "Dagelijkse Populaire Berichten"
930
 
931
+ #: admin/admin.php:1250
932
  msgid "Support the development"
933
  msgstr "Ondersteun de ontwikkeling"
934
 
935
+ #: admin/admin.php:1257
936
  msgid "Donation for Top 10"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1259
940
  msgid "Enter amount in USD: "
941
  msgstr "Voer het bedrag in in USD:"
942
 
943
+ #: admin/admin.php:1263
944
  #, fuzzy
945
  msgid "Send your donation to the author of Top 10"
946
  msgstr "Zend je donatie naar de auteur van "
947
 
948
+ #: admin/admin.php:1270
949
  msgid "Follow me"
950
  msgstr ""
951
 
952
+ #: admin/admin.php:1280
953
  #, fuzzy
954
  msgid "Quick links"
955
  msgstr "Quick links"
956
 
957
+ #: admin/admin.php:1284
958
  #, fuzzy
959
  msgid "Top 10 plugin page"
960
  msgstr "plugin pagina"
961
 
962
+ #: admin/admin.php:1285
963
  msgid "Top 10 Github page"
964
  msgstr ""
965
 
966
+ #: admin/admin.php:1286
967
  msgid "Other plugins"
968
  msgstr "Andere plugins"
969
 
970
+ #: admin/admin.php:1287
971
  msgid "Ajay's blog"
972
  msgstr "De blog van Ajay"
973
 
974
+ #: admin/admin.php:1288
975
  msgid "FAQ"
976
  msgstr ""
977
 
978
+ #: admin/admin.php:1289 admin/admin.php:1451
979
  msgid "Support"
980
  msgstr "Ondersteuning"
981
 
982
+ #: admin/admin.php:1290
983
  msgid "Reviews"
984
  msgstr ""
985
 
986
+ #: admin/admin.php:1313
987
  #, fuzzy
988
  msgid "Overall Popular Posts"
989
  msgstr "Bekijk het Totaal Populaire Berichten"
990
 
991
+ #: admin/admin.php:1428
992
  msgid "Settings"
993
  msgstr "Instellingen"
994
 
995
+ #: admin/admin.php:1452
996
  msgid "Donate"
997
  msgstr "Doneer"
998
 
1006
  msgid "Display popular posts"
1007
  msgstr "Dagelijkse Populaire Berichten"
1008
 
1009
+ #: includes/class-top-10-widget.php:71
1010
  msgid "Title"
1011
  msgstr ""
1012
 
1013
+ #: includes/class-top-10-widget.php:76
1014
  msgid "No. of posts"
1015
  msgstr ""
1016
 
1017
+ #: includes/class-top-10-widget.php:81
1018
  msgid "Overall"
1019
  msgstr ""
1020
 
1021
+ #: includes/class-top-10-widget.php:82
1022
  msgid "Custom time period (Enter below)"
1023
  msgstr ""
1024
 
1025
+ #: includes/class-top-10-widget.php:86
1026
  msgid "In days and hours (applies only to custom option above)"
1027
  msgstr ""
1028
 
1029
+ #: includes/class-top-10-widget.php:88
1030
  msgid "days"
1031
  msgstr ""
1032
 
1033
+ #: includes/class-top-10-widget.php:91
1034
  msgid "hours"
1035
  msgstr ""
1036
 
1037
+ #: includes/class-top-10-widget.php:96
1038
  #, fuzzy
1039
  msgid "Show count?"
1040
  msgstr "Laat bericht samenvatting zien in lijst?"
1041
 
1042
+ #: includes/class-top-10-widget.php:101
1043
  #, fuzzy
1044
  msgid "Show excerpt?"
1045
  msgstr "Laat bericht samenvatting zien in lijst?"
1046
 
1047
+ #: includes/class-top-10-widget.php:106
1048
  #, fuzzy
1049
  msgid "Show author?"
1050
  msgstr "Laat bericht samenvatting zien in lijst?"
1051
 
1052
+ #: includes/class-top-10-widget.php:111
1053
  #, fuzzy
1054
  msgid "Show date?"
1055
  msgstr "Laat bericht samenvatting zien in lijst?"
1056
 
1057
+ #: includes/class-top-10-widget.php:117
1058
  #, fuzzy
1059
  msgid "Thumbnails inline, before title"
1060
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
1061
 
1062
+ #: includes/class-top-10-widget.php:118
1063
  #, fuzzy
1064
  msgid "Thumbnails inline, after title"
1065
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
1066
 
1067
+ #: includes/class-top-10-widget.php:119
1068
  #, fuzzy
1069
  msgid "Only thumbnails, no text"
1070
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
1071
 
1072
+ #: includes/class-top-10-widget.php:120
1073
  #, fuzzy
1074
  msgid "No thumbnails, only text."
1075
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
1076
 
1077
+ #: includes/class-top-10-widget.php:125
1078
  #, fuzzy
1079
  msgid "Thumbnail height"
1080
  msgstr "Bericht miniatuurafbeelding opties:"
1081
 
1082
+ #: includes/class-top-10-widget.php:131
1083
  #, fuzzy
1084
  msgid "Thumbnail width"
1085
  msgstr "Bericht miniatuurafbeelding opties:"
1086
 
1087
+ #: includes/class-top-10-widget.php:136
1088
+ msgid "Post types to include:"
1089
+ msgstr ""
1090
+
1091
+ #: top-10.php:756
1092
  msgid " by "
1093
  msgstr ""
1094
 
1095
+ #: top-10.php:823
1096
  #, php-format
1097
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1098
  msgstr ""
1099
 
1100
+ #: top-10.php:1113
1101
  msgid "<h3>Popular Posts</h3>"
1102
  msgstr "<h3>Populaire Berichten</h3>"
1103
 
1104
+ #: top-10.php:1114
1105
  msgid "<h3>Daily Popular</h3>"
1106
  msgstr "<h3>Dagelijks Populair</h3>"
1107
 
1108
+ #: top-10.php:1115
1109
  #, fuzzy
1110
  msgid "No top posts yet"
1111
  msgstr "Reset Top 10 populaire berichten"
1112
 
1113
+ #: top-10.php:1507
1114
+ msgid "thumb_timthumb argument has been deprecated"
1115
+ msgstr ""
1116
+
1117
+ #: top-10.php:1511
1118
+ msgid "thumb_timthumb_q argument has been deprecated"
1119
+ msgstr ""
1120
+
1121
+ #: top-10.php:1515
1122
+ msgid "filter argument has been deprecated"
1123
+ msgstr ""
1124
+
1125
+ #: top-10.php:1853
1126
  msgid "Once Weekly"
1127
  msgstr ""
1128
 
1129
+ #: top-10.php:1857
1130
  msgid "Once Fortnightly"
1131
  msgstr ""
1132
 
1133
+ #: top-10.php:1861
1134
  msgid "Once Monthly"
1135
  msgstr ""
1136
 
1137
+ #: top-10.php:1865
1138
  msgid "Once quarterly"
1139
  msgstr ""
1140
 
1141
+ #~ msgid "Reset count"
1142
+ #~ msgstr "Reset telling"
1143
+
1144
  #~ msgid "Daily Popular should contain views of how many days? "
1145
  #~ msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
1146
 
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: 2015-01-03 01:53-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
@@ -61,7 +61,7 @@ msgstr "Anterioară"
61
  msgid "Next"
62
  msgstr "Următorul"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Posturi populare"
67
 
@@ -69,7 +69,7 @@ msgstr "Posturi populare"
69
  msgid "Daily Popular"
70
  msgstr "Daily populare"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -99,125 +99,135 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Opţiuni salvat cu succes."
105
 
106
- #: admin/admin.php:173
 
 
 
 
 
 
107
  msgid "Options set to Default."
108
  msgstr "Opţiunile setate la valorile implicite."
109
 
110
- #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Top 10 populare posturi Resetare"
113
 
114
- #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Top 10 posturi populare daily Reiniţializare"
117
 
118
- #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:204
 
 
 
 
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Setări"
144
 
145
- #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:295 admin/admin.php:706
158
- #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Post Opţiuni pictograme:"
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -264,59 +274,59 @@ msgstr ""
264
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
265
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
266
 
267
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Opţiuni:"
272
 
273
- #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Afişează numărul de vizualizări pe posturi?"
277
 
278
- #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
- #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Pagină"
286
 
287
- #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
- #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
- #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
- #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
- #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
- #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
- #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr "Format pentru a afişa numărul în: "
318
 
319
- #: admin/admin.php:438
320
  msgid ""
321
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
322
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -324,11 +334,11 @@ msgid ""
324
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
325
  msgstr ""
326
 
327
- #: admin/admin.php:442
328
  msgid "What do display when there are no visits?"
329
  msgstr ""
330
 
331
- #: admin/admin.php:445
332
  msgid ""
333
  "This text applies only when there are 0 hits for the post and it isn't a "
334
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -336,311 +346,301 @@ msgid ""
336
  "option."
337
  msgstr ""
338
 
339
- #: admin/admin.php:449
340
  msgid "Always display latest post count"
341
  msgstr ""
342
 
343
- #: admin/admin.php:452
344
  msgid ""
345
  "This option uses JavaScript and will increase your page load time. Turn this "
346
  "off if you are not using caching plugins or are OK with displaying older "
347
  "cached counts."
348
  msgstr ""
349
 
350
- #: admin/admin.php:456
351
  msgid "Track visits of authors on their own posts?"
352
  msgstr "Track vizite de autori pe posturile lor proprii?"
353
 
354
- #: admin/admin.php:459
355
  msgid ""
356
  "Disabling this option will stop authors visits tracked on their own posts"
357
  msgstr ""
358
 
359
- #: admin/admin.php:463
360
  #, fuzzy
361
  msgid "Track visits of admins?"
362
  msgstr "Track vizite de autori pe posturile lor proprii?"
363
 
364
- #: admin/admin.php:466
365
  msgid "Disabling this option will stop admin visits being tracked."
366
  msgstr ""
367
 
368
- #: admin/admin.php:470
369
  #, fuzzy
370
  msgid "Track visits of Editors?"
371
  msgstr "Track vizite de autori pe posturile lor proprii?"
372
 
373
- #: admin/admin.php:473
374
  msgid "Disabling this option will stop editor visits being tracked."
375
  msgstr ""
376
 
377
- #: admin/admin.php:477
378
  msgid "Display page views on Posts and Pages in Admin"
379
  msgstr ""
380
 
381
- #: admin/admin.php:480
382
  msgid ""
383
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
384
  "and All Pages"
385
  msgstr ""
386
 
387
- #: admin/admin.php:484
388
  #, fuzzy
389
  msgid "Show number of views to non-admins"
390
  msgstr "Afişează numărul de vizualizări pe pagini?"
391
 
392
- #: admin/admin.php:487
393
  msgid ""
394
  "If you disable this then non-admins won't see the above columns or view the "
395
  "independent pages with the top posts"
396
  msgstr ""
397
 
398
- #: admin/admin.php:527
399
  msgid "Number of popular posts to display: "
400
  msgstr "Numărul de posturi populare pentru a afişa: "
401
 
402
- #: admin/admin.php:530
403
  msgid ""
404
  "Maximum number of posts that will be displayed in the list. This option is "
405
  "used if you don't specify the number of posts in the widget or shortcodes"
406
  msgstr ""
407
 
408
- #: admin/admin.php:534
409
  msgid "Post types to include in results (including custom post types)"
410
  msgstr ""
411
 
412
- #: admin/admin.php:546
413
  msgid "List of post or page IDs to exclude from the results: "
414
  msgstr ""
415
 
416
- #: admin/admin.php:548 admin/admin.php:655
417
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
418
  msgstr ""
419
 
420
- #: admin/admin.php:552
421
  msgid "Exclude Categories: "
422
  msgstr "Excludeţi categorii: "
423
 
424
- #: admin/admin.php:567
425
  msgid ""
426
  "Comma separated list of category slugs. The field above has an autocomplete "
427
  "so simply start typing in the starting letters and it will prompt you with "
428
  "options"
429
  msgstr ""
430
 
431
- #: admin/admin.php:572
432
  msgid "Title of popular posts: "
433
  msgstr "Titlul de posturi populare: "
434
 
435
- #: admin/admin.php:578
436
  msgid "Title of daily popular posts: "
437
  msgstr "Titlul de zi cu zi de posturi populare: "
438
 
439
- #: admin/admin.php:584
440
  msgid "When there are no posts, what should be shown?"
441
  msgstr ""
442
 
443
- #: admin/admin.php:588
444
  msgid "Blank Output"
445
  msgstr ""
446
 
447
- #: admin/admin.php:592
448
  msgid "Display:"
449
  msgstr ""
450
 
451
- #: admin/admin.php:597
452
  msgid "Show post excerpt in list?"
453
  msgstr "Afişează post extras din lista?"
454
 
455
- #: admin/admin.php:603
 
 
 
 
 
456
  msgid "Length of excerpt (in words): "
457
  msgstr "Lungimea extras (în cuvinte): "
458
 
459
- #: admin/admin.php:609
460
  #, fuzzy
461
  msgid "Show post author in list?"
462
  msgstr "Afişează post extras din lista?"
463
 
464
- #: admin/admin.php:615
 
 
 
 
 
465
  #, fuzzy
466
  msgid "Show post date in list?"
467
  msgstr "Afişează post extras din lista?"
468
 
469
- #: admin/admin.php:621
 
 
 
 
 
470
  msgid "Limit post title length (in characters)"
471
  msgstr ""
472
 
473
- #: admin/admin.php:627
474
  #, fuzzy
475
  msgid "Show view count in list?"
476
  msgstr "Afişează post extras din lista?"
477
 
478
- #: admin/admin.php:633
479
- msgid "Always display latest post count in the daily lists?"
480
- msgstr ""
481
-
482
- #: admin/admin.php:636
483
- msgid ""
484
- "This option uses JavaScript and will increase your page load time. When you "
485
- "enable this option, the daily widget will not use the options set there, but "
486
- "options will need to be set on this screen."
487
- msgstr ""
488
-
489
- #: admin/admin.php:640
490
  msgid "Open links in new window"
491
  msgstr ""
492
 
493
- #: admin/admin.php:646
494
  msgid "Add nofollow attribute to links in the list"
495
  msgstr ""
496
 
497
- #: admin/admin.php:652
498
  msgid "Exclude display of related posts on these posts / pages"
499
  msgstr ""
500
 
501
- #: admin/admin.php:659
502
  #, fuzzy
503
  msgid "Customise the list HTML"
504
  msgstr "Personaliza ieşire:"
505
 
506
- #: admin/admin.php:662
507
  msgid "HTML to display before the list of posts: "
508
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
509
 
510
- #: admin/admin.php:668
511
  msgid "HTML to display before each list item: "
512
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
513
 
514
- #: admin/admin.php:674
515
  msgid "HTML to display after each list item: "
516
  msgstr "HTML pentru a afişa după fiecare element din listă: "
517
 
518
- #: admin/admin.php:680
519
  msgid "HTML to display after the list of posts: "
520
  msgstr "HTML pentru a afişa după lista de posturi: "
521
 
522
- #: admin/admin.php:721
523
  msgid "Location of post thumbnail:"
524
  msgstr ""
525
 
526
- #: admin/admin.php:725
527
  msgid "Display thumbnails inline with posts, before title"
528
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
529
 
530
- #: admin/admin.php:730
531
  msgid "Display thumbnails inline with posts, after title"
532
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
533
 
534
- #: admin/admin.php:735
535
  msgid "Display only thumbnails, no text"
536
  msgstr "Afişa numai miniaturi, nici un text"
537
 
538
- #: admin/admin.php:740
539
  msgid "Do not display thumbnails, only text."
540
  msgstr "Nu se afişează miniaturi, numai textul."
541
 
542
- #: admin/admin.php:744
 
 
 
 
 
 
543
  msgid "Thumbnail size:"
544
  msgstr ""
545
 
546
- #: admin/admin.php:768
547
  msgid "Custom size"
548
  msgstr ""
549
 
550
- #: admin/admin.php:771
551
  msgid ""
552
  "You can choose from existing image sizes above or create a custom size. If "
553
  "you have chosen Custom size above, then enter the width, height and crop "
554
  "settings below. For best results, use a cropped image."
555
  msgstr ""
556
 
557
- #: admin/admin.php:772
558
  msgid ""
559
  "If you change the width and/or height below, existing images will not be "
560
  "automatically resized."
561
  msgstr ""
562
 
563
- #: admin/admin.php:773
564
  #, php-format
565
  msgid ""
566
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
567
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
568
- "regenerate all image sizes."
569
  msgstr ""
570
 
571
- #: admin/admin.php:776
572
  msgid "Width of custom thumbnail:"
573
  msgstr ""
574
 
575
- #: admin/admin.php:781
576
  msgid "Height of custom thumbnail"
577
  msgstr ""
578
 
579
- #: admin/admin.php:786
580
  msgid "Crop mode:"
581
  msgstr ""
582
 
583
- #: admin/admin.php:790
584
  msgid ""
585
  "By default, thumbnails will be proportionately cropped. Check this box to "
586
  "hard crop the thumbnails."
587
  msgstr ""
588
 
589
- #: admin/admin.php:791
590
  #, php-format
591
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
592
  msgstr ""
593
 
594
- #: admin/admin.php:793
595
  msgid ""
596
- "Since you're using the default styles set under the Custom Styles section, "
597
- "the width and height is fixed at 65px and crop mode is enabled."
598
  msgstr ""
599
 
600
- #: admin/admin.php:798
601
  msgid "Style attributes / Width and Height HTML attributes:"
602
  msgstr ""
603
 
604
- #: admin/admin.php:802
605
  msgid "Style attributes are used for width and height."
606
  msgstr ""
607
 
608
- #: admin/admin.php:807
609
  msgid "HTML width and height attributes are used for width and height."
610
  msgstr ""
611
 
612
- #: admin/admin.php:811
613
- msgid "Use timthumb to generate thumbnails? "
614
- msgstr ""
615
-
616
- #: admin/admin.php:814
617
- msgid ""
618
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
619
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
620
- msgstr ""
621
-
622
- #: admin/admin.php:817
623
- msgid "Quality of thumbnails generated by timthumb:"
624
- msgstr ""
625
-
626
- #: admin/admin.php:820
627
- msgid ""
628
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
629
- "file size. Suggested maximum value is 95. Default is 75."
630
- msgstr ""
631
-
632
- #: admin/admin.php:823
633
  #, fuzzy
634
  msgid "Post thumbnail meta field name: "
635
  msgstr "Post Opţiuni pictograme:"
636
 
637
- #: admin/admin.php:826
638
  msgid ""
639
  "The value of this field should contain the image source and is set in the "
640
  "<em>Add New Post</em> screen"
641
  msgstr ""
642
 
643
- #: admin/admin.php:829
644
  #, fuzzy
645
  msgid ""
646
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -651,7 +651,7 @@ msgstr ""
651
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
652
  "fişier"
653
 
654
- #: admin/admin.php:832
655
  #, fuzzy
656
  msgid ""
657
  "This could slow down the loading of your page if the first image in the "
@@ -662,11 +662,11 @@ msgstr ""
662
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
663
  "fişier"
664
 
665
- #: admin/admin.php:835
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
- #: admin/admin.php:838
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -675,65 +675,65 @@ msgstr ""
675
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
676
  "thumbnail, imaginea nu va fi indicat."
677
 
678
- #: admin/admin.php:841
679
  msgid "Default thumbnail: "
680
  msgstr ""
681
 
682
- #: admin/admin.php:845
683
  msgid ""
684
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
685
  "then it will check the meta field. If this is not available, then it will "
686
  "show the default image as specified above"
687
  msgstr ""
688
 
689
- #: admin/admin.php:869
690
  msgid "Custom CSS"
691
  msgstr ""
692
 
693
- #: admin/admin.php:884
694
  msgid "Use default style included in the plugin?"
695
  msgstr ""
696
 
697
- #: admin/admin.php:887
698
  msgid ""
699
  "Top 10 includes a default style that makes your popular posts list to look "
700
  "beautiful. Check the box above if you want to use this."
701
  msgstr ""
702
 
703
- #: admin/admin.php:888
704
  msgid ""
705
  "Enabling this option will turn on the thumbnails and set their width and "
706
  "height to 65px. It will also turn off the display of the author, excerpt and "
707
  "date if already enabled. Disabling this option will not revert any settings."
708
  msgstr ""
709
 
710
- #: admin/admin.php:889
711
  #, php-format
712
  msgid ""
713
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
714
  msgstr ""
715
 
716
- #: admin/admin.php:892
717
  msgid "Custom CSS to add to header:"
718
  msgstr ""
719
 
720
- #: admin/admin.php:897
721
  msgid ""
722
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
723
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
724
  "available CSS classes to style."
725
  msgstr ""
726
 
727
- #: admin/admin.php:917
728
  #, fuzzy
729
  msgid "Default Options"
730
  msgstr "Opţiuni de ieşire:"
731
 
732
- #: admin/admin.php:917
733
  msgid "Do you want to set options to Default?"
734
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
735
 
736
- #: admin/admin.php:941
737
  msgid ""
738
  "Over time the Daily Top 10 database grows in size, which reduces the "
739
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -741,65 +741,65 @@ msgid ""
741
  "will automatically delete entries older than 90 days."
742
  msgstr ""
743
 
744
- #: admin/admin.php:942
745
  msgid ""
746
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
747
  "everytime the job is rescheduled (i.e. you change the settings below)."
748
  msgstr ""
749
 
750
- #: admin/admin.php:945
751
  msgid "Enable scheduled maintenance of daily tables:"
752
  msgstr ""
753
 
754
- #: admin/admin.php:949
755
  msgid "Time to run maintenance"
756
  msgstr ""
757
 
758
- #: admin/admin.php:950
759
  msgid "hrs"
760
  msgstr ""
761
 
762
- #: admin/admin.php:950
763
  msgid "min"
764
  msgstr ""
765
 
766
- #: admin/admin.php:952
767
  msgid "How often should the maintenance be run:"
768
  msgstr ""
769
 
770
- #: admin/admin.php:956
771
  msgid "Daily"
772
  msgstr ""
773
 
774
- #: admin/admin.php:960
775
  msgid "Weekly"
776
  msgstr ""
777
 
778
- #: admin/admin.php:964
779
  msgid "Fortnightly"
780
  msgstr ""
781
 
782
- #: admin/admin.php:968
783
  msgid "Monthly"
784
  msgstr ""
785
 
786
- #: admin/admin.php:977
787
  msgid "The cron job has been scheduled. Maintenance will run "
788
  msgstr ""
789
 
790
- #: admin/admin.php:982
791
  msgid "The cron job is missing. Please resave this page to add the job"
792
  msgstr ""
793
 
794
- #: admin/admin.php:987
795
  msgid "Maintenance is turned off"
796
  msgstr ""
797
 
798
- #: admin/admin.php:1001
799
- msgid "Reset count"
800
- msgstr "Reiniţializare count"
801
 
802
- #: admin/admin.php:1004
803
  msgid ""
804
  "This cannot be reversed. Make sure that your database has been backed up "
805
  "before proceeding"
@@ -807,167 +807,185 @@ msgstr ""
807
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
808
  "înainte de a continua"
809
 
810
- #: admin/admin.php:1007
811
  #, fuzzy
812
  msgid "Reset Popular Posts"
813
  msgstr "Posturi populare"
814
 
815
- #: admin/admin.php:1007
816
  msgid "Are you sure you want to reset the popular posts?"
817
  msgstr "Sigur reiniţializaţi posturi populare?"
818
 
819
- #: admin/admin.php:1008
820
  #, fuzzy
821
  msgid "Reset Daily Popular Posts"
822
  msgstr "Posturi populare de zi cu zi"
823
 
824
- #: admin/admin.php:1008
825
  msgid "Are you sure you want to reset the daily popular posts?"
826
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
827
 
828
- #: admin/admin.php:1009
829
- msgid "Clear duplicates"
 
 
 
 
830
  msgstr ""
831
 
832
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
833
  msgid "This will delete the duplicate entries in the tables. Proceed?"
834
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
835
 
836
- #: admin/admin.php:1022
837
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
838
  msgstr ""
839
 
840
- #: admin/admin.php:1025
841
  msgid ""
842
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
843
  "activate the plugin independently for each site. This would have resulted in "
844
  "two tables being created for each site in the network."
845
  msgstr ""
846
 
847
- #: admin/admin.php:1026
848
  msgid ""
849
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
850
  "your database clean. You can use this tool to import the recorded counts "
851
  "from v1.x tables to the new v2.x table format."
852
  msgstr ""
853
 
854
- #: admin/admin.php:1029
855
  msgid ""
856
  "If you do not see any tables below, then it means that either all data has "
857
  "already been imported or no relevant information has been found."
858
  msgstr ""
859
 
860
- #: admin/admin.php:1032
861
  msgid ""
862
  "After running the importer, please verify that all the counts have been "
863
  "successfully imported. Only then should you delete any old tables!"
864
  msgstr ""
865
 
866
- #: admin/admin.php:1066
867
  msgid "Blog ID"
868
  msgstr ""
869
 
870
- #: admin/admin.php:1069
871
  msgid "Status"
872
  msgstr ""
873
 
874
- #: admin/admin.php:1072
875
  msgid "Select to import"
876
  msgstr ""
877
 
878
- #: admin/admin.php:1082
879
  msgid "Blog #"
880
  msgstr ""
881
 
882
- #: admin/admin.php:1092
883
  msgid "Not imported"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1096
887
  msgid "Imported"
888
  msgstr ""
889
 
890
- #: admin/admin.php:1117
891
  msgid "Begin import"
892
  msgstr ""
893
 
894
- #: admin/admin.php:1118
895
  msgid "Delete selected tables"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1119
899
  msgid "Delete all imported tables"
900
  msgstr ""
901
 
902
- #: admin/admin.php:1176 admin/admin.php:1272
903
  msgid "Daily Popular Posts"
904
  msgstr "Posturi populare de zi cu zi"
905
 
906
- #: admin/admin.php:1206
907
  msgid "Support the development"
908
  msgstr "Sprijinirea dezvoltării"
909
 
910
- #: admin/admin.php:1213
911
  msgid "Donation for Top 10"
912
  msgstr ""
913
 
914
- #: admin/admin.php:1215
915
  msgid "Enter amount in USD: "
916
  msgstr "Introduceţi valoarea în USD: "
917
 
918
- #: admin/admin.php:1219
919
  #, fuzzy
920
  msgid "Send your donation to the author of Top 10"
921
  msgstr "Trimite donatie autorului"
922
 
923
- #: admin/admin.php:1226
924
  msgid "Follow me"
925
  msgstr ""
926
 
927
- #: admin/admin.php:1236
928
  #, fuzzy
929
  msgid "Quick links"
930
  msgstr "Legături rapide pentru"
931
 
932
- #: admin/admin.php:1240
933
  #, fuzzy
934
  msgid "Top 10 plugin page"
935
  msgstr "plug-in pagina"
936
 
937
- #: admin/admin.php:1241
938
  msgid "Top 10 Github page"
939
  msgstr ""
940
 
941
- #: admin/admin.php:1242
942
  msgid "Other plugins"
943
  msgstr "Alte plugin-uri"
944
 
945
- #: admin/admin.php:1243
946
  msgid "Ajay's blog"
947
  msgstr "Ajay's blog"
948
 
949
- #: admin/admin.php:1244
950
  msgid "FAQ"
951
  msgstr ""
952
 
953
- #: admin/admin.php:1245 admin/admin.php:1403
954
  msgid "Support"
955
  msgstr "Suport"
956
 
957
- #: admin/admin.php:1246
958
  msgid "Reviews"
959
  msgstr ""
960
 
961
- #: admin/admin.php:1269
962
  #, fuzzy
963
  msgid "Overall Popular Posts"
964
  msgstr "Vedere de ansamblu posturi populare"
965
 
966
- #: admin/admin.php:1380
967
  msgid "Settings"
968
  msgstr "Setări"
969
 
970
- #: admin/admin.php:1404
971
  msgid "Donate"
972
  msgstr "Dona"
973
 
@@ -981,122 +999,141 @@ msgstr "Posturi populare"
981
  msgid "Display popular posts"
982
  msgstr "Posturi populare de zi cu zi"
983
 
984
- #: includes/class-top-10-widget.php:59
985
  msgid "Title"
986
  msgstr ""
987
 
988
- #: includes/class-top-10-widget.php:64
989
  msgid "No. of posts"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:69
993
  msgid "Overall"
994
  msgstr ""
995
 
996
- #: includes/class-top-10-widget.php:70
997
  msgid "Custom time period (Enter below)"
998
  msgstr ""
999
 
1000
- #: includes/class-top-10-widget.php:74
1001
  msgid "In days and hours (applies only to custom option above)"
1002
  msgstr ""
1003
 
1004
- #: includes/class-top-10-widget.php:76
1005
  msgid "days"
1006
  msgstr ""
1007
 
1008
- #: includes/class-top-10-widget.php:79
1009
  msgid "hours"
1010
  msgstr ""
1011
 
1012
- #: includes/class-top-10-widget.php:84
1013
  #, fuzzy
1014
  msgid "Show count?"
1015
  msgstr "Afişează post extras din lista?"
1016
 
1017
- #: includes/class-top-10-widget.php:89
1018
  #, fuzzy
1019
  msgid "Show excerpt?"
1020
  msgstr "Afişează post extras din lista?"
1021
 
1022
- #: includes/class-top-10-widget.php:94
1023
  #, fuzzy
1024
  msgid "Show author?"
1025
  msgstr "Afişează post extras din lista?"
1026
 
1027
- #: includes/class-top-10-widget.php:99
1028
  #, fuzzy
1029
  msgid "Show date?"
1030
  msgstr "Afişează post extras din lista?"
1031
 
1032
- #: includes/class-top-10-widget.php:105
1033
  #, fuzzy
1034
  msgid "Thumbnails inline, before title"
1035
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
1036
 
1037
- #: includes/class-top-10-widget.php:106
1038
  #, fuzzy
1039
  msgid "Thumbnails inline, after title"
1040
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
1041
 
1042
- #: includes/class-top-10-widget.php:107
1043
  #, fuzzy
1044
  msgid "Only thumbnails, no text"
1045
  msgstr "Afişa numai miniaturi, nici un text"
1046
 
1047
- #: includes/class-top-10-widget.php:108
1048
  #, fuzzy
1049
  msgid "No thumbnails, only text."
1050
  msgstr "Nu se afişează miniaturi, numai textul."
1051
 
1052
- #: includes/class-top-10-widget.php:113
1053
  #, fuzzy
1054
  msgid "Thumbnail height"
1055
  msgstr "Post Opţiuni pictograme:"
1056
 
1057
- #: includes/class-top-10-widget.php:118
1058
  #, fuzzy
1059
  msgid "Thumbnail width"
1060
  msgstr "Post Opţiuni pictograme:"
1061
 
1062
- #: top-10.php:879
 
 
 
 
1063
  msgid " by "
1064
  msgstr ""
1065
 
1066
- #: top-10.php:930
1067
  #, php-format
1068
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1069
  msgstr ""
1070
 
1071
- #: top-10.php:1029
1072
  msgid "<h3>Popular Posts</h3>"
1073
  msgstr "<h3>Posturi populare</h3>"
1074
 
1075
- #: top-10.php:1030
1076
  msgid "<h3>Daily Popular</h3>"
1077
  msgstr "<h3>Daily populare</h3>"
1078
 
1079
- #: top-10.php:1031
1080
  #, fuzzy
1081
  msgid "No top posts yet"
1082
  msgstr "Top 10 populare posturi Resetare"
1083
 
1084
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1085
  msgid "Once Weekly"
1086
  msgstr ""
1087
 
1088
- #: top-10.php:1694
1089
  msgid "Once Fortnightly"
1090
  msgstr ""
1091
 
1092
- #: top-10.php:1698
1093
  msgid "Once Monthly"
1094
  msgstr ""
1095
 
1096
- #: top-10.php:1702
1097
  msgid "Once quarterly"
1098
  msgstr ""
1099
 
 
 
 
1100
  #~ msgid "Daily Popular should contain views of how many days? "
1101
  #~ msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
1102
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
61
  msgid "Next"
62
  msgstr "Următorul"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Posturi populare"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Daily populare"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:171
103
  msgid "Options saved successfully."
104
  msgstr "Opţiuni salvat cu succes."
105
 
106
+ #: admin/admin.php:174
107
+ msgid ""
108
+ "Default styles selected. Thumbnail width, height and crop settings have been "
109
+ "fixed. Author, Excerpt and Date will not be displayed."
110
+ msgstr ""
111
+
112
+ #: admin/admin.php:190
113
  msgid "Options set to Default."
114
  msgstr "Opţiunile setate la valorile implicite."
115
 
116
+ #: admin/admin.php:197
117
  msgid "Top 10 popular posts reset"
118
  msgstr "Top 10 populare posturi Resetare"
119
 
120
+ #: admin/admin.php:204
121
  msgid "Top 10 daily popular posts reset"
122
  msgstr "Top 10 posturi populare daily Reiniţializare"
123
 
124
+ #: admin/admin.php:212
125
  msgid "Duplicate rows cleaned from tables"
126
  msgstr ""
127
 
128
+ #: admin/admin.php:220
129
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
130
+ msgstr ""
131
+
132
+ #: admin/admin.php:233
133
  msgid "Scheduled maintenance enabled / modified"
134
  msgstr ""
135
 
136
+ #: admin/admin.php:237
137
  msgid "Scheduled maintenance disabled"
138
  msgstr ""
139
 
140
+ #: admin/admin.php:276
141
  msgid "Counts from selected sites have been imported."
142
  msgstr ""
143
 
144
+ #: admin/admin.php:301
145
  msgid ""
146
  "Selected tables have been deleted. Note that only imported tables have been "
147
  "deleted."
148
  msgstr ""
149
 
150
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
151
  #, fuzzy
152
  msgid "Top 10 Settings"
153
  msgstr "Setări"
154
 
155
+ #: admin/admin.php:321 admin/admin.php:343
156
  msgid "General options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:322 admin/admin.php:435
160
  msgid "Counter and tracker options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:323 admin/admin.php:540
164
  msgid "Popular post list options"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:324 admin/admin.php:742
168
+ #: includes/class-top-10-widget.php:115
169
  #, fuzzy
170
  msgid "Thumbnail options"
171
  msgstr "Post Opţiuni pictograme:"
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
274
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
275
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
276
 
277
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
278
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
279
  #, fuzzy
280
  msgid "Save Options"
281
  msgstr "Opţiuni:"
282
 
283
+ #: admin/admin.php:451
284
  #, fuzzy
285
  msgid "Display number of views on:"
286
  msgstr "Afişează numărul de vizualizări pe posturi?"
287
 
288
+ #: admin/admin.php:453
289
  msgid "Posts"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:454
293
  #, fuzzy
294
  msgid "Pages"
295
  msgstr "Pagină"
296
 
297
+ #: admin/admin.php:455
298
  msgid "Home page"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:456
302
  msgid "Feeds"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:457
306
  msgid "Category archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:458
310
  msgid "Tag archives"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:459
314
  msgid "Other archives"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:460
318
  msgid ""
319
  "If you choose to disable this, please add <code>&lt;?php if "
320
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
321
  "</code> to your template file where you want it displayed"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:464
325
  #, fuzzy
326
  msgid "Format to display the post views:"
327
  msgstr "Format pentru a afişa numărul în: "
328
 
329
+ #: admin/admin.php:467
330
  msgid ""
331
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
332
  "%</code> to display the daily count and <code>%overallcount%</code> to "
334
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
335
  msgstr ""
336
 
337
+ #: admin/admin.php:471
338
  msgid "What do display when there are no visits?"
339
  msgstr ""
340
 
341
+ #: admin/admin.php:474
342
  msgid ""
343
  "This text applies only when there are 0 hits for the post and it isn't a "
344
  "single page. e.g. if you display post views on the homepage or archives then "
346
  "option."
347
  msgstr ""
348
 
349
+ #: admin/admin.php:478
350
  msgid "Always display latest post count"
351
  msgstr ""
352
 
353
+ #: admin/admin.php:481
354
  msgid ""
355
  "This option uses JavaScript and will increase your page load time. Turn this "
356
  "off if you are not using caching plugins or are OK with displaying older "
357
  "cached counts."
358
  msgstr ""
359
 
360
+ #: admin/admin.php:485
361
  msgid "Track visits of authors on their own posts?"
362
  msgstr "Track vizite de autori pe posturile lor proprii?"
363
 
364
+ #: admin/admin.php:488
365
  msgid ""
366
  "Disabling this option will stop authors visits tracked on their own posts"
367
  msgstr ""
368
 
369
+ #: admin/admin.php:492
370
  #, fuzzy
371
  msgid "Track visits of admins?"
372
  msgstr "Track vizite de autori pe posturile lor proprii?"
373
 
374
+ #: admin/admin.php:495
375
  msgid "Disabling this option will stop admin visits being tracked."
376
  msgstr ""
377
 
378
+ #: admin/admin.php:499
379
  #, fuzzy
380
  msgid "Track visits of Editors?"
381
  msgstr "Track vizite de autori pe posturile lor proprii?"
382
 
383
+ #: admin/admin.php:502
384
  msgid "Disabling this option will stop editor visits being tracked."
385
  msgstr ""
386
 
387
+ #: admin/admin.php:506
388
  msgid "Display page views on Posts and Pages in Admin"
389
  msgstr ""
390
 
391
+ #: admin/admin.php:509
392
  msgid ""
393
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
394
  "and All Pages"
395
  msgstr ""
396
 
397
+ #: admin/admin.php:513
398
  #, fuzzy
399
  msgid "Show number of views to non-admins"
400
  msgstr "Afişează numărul de vizualizări pe pagini?"
401
 
402
+ #: admin/admin.php:516
403
  msgid ""
404
  "If you disable this then non-admins won't see the above columns or view the "
405
  "independent pages with the top posts"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:556
409
  msgid "Number of popular posts to display: "
410
  msgstr "Numărul de posturi populare pentru a afişa: "
411
 
412
+ #: admin/admin.php:559
413
  msgid ""
414
  "Maximum number of posts that will be displayed in the list. This option is "
415
  "used if you don't specify the number of posts in the widget or shortcodes"
416
  msgstr ""
417
 
418
+ #: admin/admin.php:563
419
  msgid "Post types to include in results (including custom post types)"
420
  msgstr ""
421
 
422
+ #: admin/admin.php:577
423
  msgid "List of post or page IDs to exclude from the results: "
424
  msgstr ""
425
 
426
+ #: admin/admin.php:579 admin/admin.php:691
427
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
428
  msgstr ""
429
 
430
+ #: admin/admin.php:583
431
  msgid "Exclude Categories: "
432
  msgstr "Excludeţi categorii: "
433
 
434
+ #: admin/admin.php:598
435
  msgid ""
436
  "Comma separated list of category slugs. The field above has an autocomplete "
437
  "so simply start typing in the starting letters and it will prompt you with "
438
  "options"
439
  msgstr ""
440
 
441
+ #: admin/admin.php:603
442
  msgid "Title of popular posts: "
443
  msgstr "Titlul de posturi populare: "
444
 
445
+ #: admin/admin.php:609
446
  msgid "Title of daily popular posts: "
447
  msgstr "Titlul de zi cu zi de posturi populare: "
448
 
449
+ #: admin/admin.php:615
450
  msgid "When there are no posts, what should be shown?"
451
  msgstr ""
452
 
453
+ #: admin/admin.php:619
454
  msgid "Blank Output"
455
  msgstr ""
456
 
457
+ #: admin/admin.php:623
458
  msgid "Display:"
459
  msgstr ""
460
 
461
+ #: admin/admin.php:628
462
  msgid "Show post excerpt in list?"
463
  msgstr "Afişează post extras din lista?"
464
 
465
+ #: admin/admin.php:633
466
+ msgid ""
467
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
468
+ msgstr ""
469
+
470
+ #: admin/admin.php:638
471
  msgid "Length of excerpt (in words): "
472
  msgstr "Lungimea extras (în cuvinte): "
473
 
474
+ #: admin/admin.php:644
475
  #, fuzzy
476
  msgid "Show post author in list?"
477
  msgstr "Afişează post extras din lista?"
478
 
479
+ #: admin/admin.php:649
480
+ msgid ""
481
+ "Default style selected under the Custom Styles. Author display is disabled."
482
+ msgstr ""
483
+
484
+ #: admin/admin.php:654
485
  #, fuzzy
486
  msgid "Show post date in list?"
487
  msgstr "Afişează post extras din lista?"
488
 
489
+ #: admin/admin.php:659
490
+ msgid ""
491
+ "Default style selected under the Custom Styles. Date display is disabled."
492
+ msgstr ""
493
+
494
+ #: admin/admin.php:664
495
  msgid "Limit post title length (in characters)"
496
  msgstr ""
497
 
498
+ #: admin/admin.php:670
499
  #, fuzzy
500
  msgid "Show view count in list?"
501
  msgstr "Afişează post extras din lista?"
502
 
503
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
504
  msgid "Open links in new window"
505
  msgstr ""
506
 
507
+ #: admin/admin.php:682
508
  msgid "Add nofollow attribute to links in the list"
509
  msgstr ""
510
 
511
+ #: admin/admin.php:688
512
  msgid "Exclude display of related posts on these posts / pages"
513
  msgstr ""
514
 
515
+ #: admin/admin.php:695
516
  #, fuzzy
517
  msgid "Customise the list HTML"
518
  msgstr "Personaliza ieşire:"
519
 
520
+ #: admin/admin.php:698
521
  msgid "HTML to display before the list of posts: "
522
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
523
 
524
+ #: admin/admin.php:704
525
  msgid "HTML to display before each list item: "
526
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
527
 
528
+ #: admin/admin.php:710
529
  msgid "HTML to display after each list item: "
530
  msgstr "HTML pentru a afişa după fiecare element din listă: "
531
 
532
+ #: admin/admin.php:716
533
  msgid "HTML to display after the list of posts: "
534
  msgstr "HTML pentru a afişa după lista de posturi: "
535
 
536
+ #: admin/admin.php:757
537
  msgid "Location of post thumbnail:"
538
  msgstr ""
539
 
540
+ #: admin/admin.php:761
541
  msgid "Display thumbnails inline with posts, before title"
542
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
543
 
544
+ #: admin/admin.php:766
545
  msgid "Display thumbnails inline with posts, after title"
546
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
547
 
548
+ #: admin/admin.php:771
549
  msgid "Display only thumbnails, no text"
550
  msgstr "Afişa numai miniaturi, nici un text"
551
 
552
+ #: admin/admin.php:776
553
  msgid "Do not display thumbnails, only text."
554
  msgstr "Nu se afişează miniaturi, numai textul."
555
 
556
+ #: admin/admin.php:780
557
+ msgid ""
558
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
559
+ "to be inline before title"
560
+ msgstr ""
561
+
562
+ #: admin/admin.php:784
563
  msgid "Thumbnail size:"
564
  msgstr ""
565
 
566
+ #: admin/admin.php:808
567
  msgid "Custom size"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:811
571
  msgid ""
572
  "You can choose from existing image sizes above or create a custom size. If "
573
  "you have chosen Custom size above, then enter the width, height and crop "
574
  "settings below. For best results, use a cropped image."
575
  msgstr ""
576
 
577
+ #: admin/admin.php:812
578
  msgid ""
579
  "If you change the width and/or height below, existing images will not be "
580
  "automatically resized."
581
  msgstr ""
582
 
583
+ #: admin/admin.php:813
584
  #, php-format
585
  msgid ""
586
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
587
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
588
+ "all image sizes."
589
  msgstr ""
590
 
591
+ #: admin/admin.php:816
592
  msgid "Width of custom thumbnail:"
593
  msgstr ""
594
 
595
+ #: admin/admin.php:821
596
  msgid "Height of custom thumbnail"
597
  msgstr ""
598
 
599
+ #: admin/admin.php:826
600
  msgid "Crop mode:"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:830
604
  msgid ""
605
  "By default, thumbnails will be proportionately cropped. Check this box to "
606
  "hard crop the thumbnails."
607
  msgstr ""
608
 
609
+ #: admin/admin.php:831
610
  #, php-format
611
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
612
  msgstr ""
613
 
614
+ #: admin/admin.php:834
615
  msgid ""
616
+ "Default style selected under the Custom Styles. Thumbnail width and height "
617
+ "is fixed at 65px and crop mode is enabled."
618
  msgstr ""
619
 
620
+ #: admin/admin.php:839
621
  msgid "Style attributes / Width and Height HTML attributes:"
622
  msgstr ""
623
 
624
+ #: admin/admin.php:843
625
  msgid "Style attributes are used for width and height."
626
  msgstr ""
627
 
628
+ #: admin/admin.php:848
629
  msgid "HTML width and height attributes are used for width and height."
630
  msgstr ""
631
 
632
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
633
  #, fuzzy
634
  msgid "Post thumbnail meta field name: "
635
  msgstr "Post Opţiuni pictograme:"
636
 
637
+ #: admin/admin.php:855
638
  msgid ""
639
  "The value of this field should contain the image source and is set in the "
640
  "<em>Add New Post</em> screen"
641
  msgstr ""
642
 
643
+ #: admin/admin.php:858
644
  #, fuzzy
645
  msgid ""
646
  "If the postmeta is not set, then should the plugin extract the first image "
651
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
652
  "fişier"
653
 
654
+ #: admin/admin.php:861
655
  #, fuzzy
656
  msgid ""
657
  "This could slow down the loading of your page if the first image in the "
662
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
663
  "fişier"
664
 
665
+ #: admin/admin.php:864
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
+ #: admin/admin.php:867
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
676
  "thumbnail, imaginea nu va fi indicat."
677
 
678
+ #: admin/admin.php:870
679
  msgid "Default thumbnail: "
680
  msgstr ""
681
 
682
+ #: admin/admin.php:874
683
  msgid ""
684
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
685
  "then it will check the meta field. If this is not available, then it will "
686
  "show the default image as specified above"
687
  msgstr ""
688
 
689
+ #: admin/admin.php:898
690
  msgid "Custom CSS"
691
  msgstr ""
692
 
693
+ #: admin/admin.php:913
694
  msgid "Use default style included in the plugin?"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:916
698
  msgid ""
699
  "Top 10 includes a default style that makes your popular posts list to look "
700
  "beautiful. Check the box above if you want to use this."
701
  msgstr ""
702
 
703
+ #: admin/admin.php:917
704
  msgid ""
705
  "Enabling this option will turn on the thumbnails and set their width and "
706
  "height to 65px. It will also turn off the display of the author, excerpt and "
707
  "date if already enabled. Disabling this option will not revert any settings."
708
  msgstr ""
709
 
710
+ #: admin/admin.php:918
711
  #, php-format
712
  msgid ""
713
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
714
  msgstr ""
715
 
716
+ #: admin/admin.php:921
717
  msgid "Custom CSS to add to header:"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:926
721
  msgid ""
722
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
723
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
724
  "available CSS classes to style."
725
  msgstr ""
726
 
727
+ #: admin/admin.php:946
728
  #, fuzzy
729
  msgid "Default Options"
730
  msgstr "Opţiuni de ieşire:"
731
 
732
+ #: admin/admin.php:946
733
  msgid "Do you want to set options to Default?"
734
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
735
 
736
+ #: admin/admin.php:970
737
  msgid ""
738
  "Over time the Daily Top 10 database grows in size, which reduces the "
739
  "performance of the plugin. Cleaning the database at regular intervals could "
741
  "will automatically delete entries older than 90 days."
742
  msgstr ""
743
 
744
+ #: admin/admin.php:971
745
  msgid ""
746
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
747
  "everytime the job is rescheduled (i.e. you change the settings below)."
748
  msgstr ""
749
 
750
+ #: admin/admin.php:974
751
  msgid "Enable scheduled maintenance of daily tables:"
752
  msgstr ""
753
 
754
+ #: admin/admin.php:978
755
  msgid "Time to run maintenance"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:979
759
  msgid "hrs"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:979
763
  msgid "min"
764
  msgstr ""
765
 
766
+ #: admin/admin.php:981
767
  msgid "How often should the maintenance be run:"
768
  msgstr ""
769
 
770
+ #: admin/admin.php:985
771
  msgid "Daily"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:989
775
  msgid "Weekly"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:993
779
  msgid "Fortnightly"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:997
783
  msgid "Monthly"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:1006
787
  msgid "The cron job has been scheduled. Maintenance will run "
788
  msgstr ""
789
 
790
+ #: admin/admin.php:1011
791
  msgid "The cron job is missing. Please resave this page to add the job"
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1016
795
  msgid "Maintenance is turned off"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1030
799
+ msgid "Reset count and other tools"
800
+ msgstr ""
801
 
802
+ #: admin/admin.php:1033
803
  msgid ""
804
  "This cannot be reversed. Make sure that your database has been backed up "
805
  "before proceeding"
807
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
808
  "înainte de a continua"
809
 
810
+ #: admin/admin.php:1036
811
  #, fuzzy
812
  msgid "Reset Popular Posts"
813
  msgstr "Posturi populare"
814
 
815
+ #: admin/admin.php:1036
816
  msgid "Are you sure you want to reset the popular posts?"
817
  msgstr "Sigur reiniţializaţi posturi populare?"
818
 
819
+ #: admin/admin.php:1037
820
  #, fuzzy
821
  msgid "Reset Daily Popular Posts"
822
  msgstr "Posturi populare de zi cu zi"
823
 
824
+ #: admin/admin.php:1037
825
  msgid "Are you sure you want to reset the daily popular posts?"
826
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
827
 
828
+ #: admin/admin.php:1040
829
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
830
+ msgstr ""
831
+
832
+ #: admin/admin.php:1043
833
+ msgid "Merge blog ID 0 and 1 post counts"
834
  msgstr ""
835
 
836
+ #: admin/admin.php:1043
837
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
838
+ msgstr ""
839
+
840
+ #: admin/admin.php:1046
841
+ msgid ""
842
+ "In older versions, the plugin created entries with duplicate post IDs. "
843
+ "Clicking the button below will merge these duplicate IDs"
844
+ msgstr ""
845
+
846
+ #: admin/admin.php:1049
847
+ msgid "Merge duplicates across blog IDs"
848
+ msgstr ""
849
+
850
+ #: admin/admin.php:1049
851
  msgid "This will delete the duplicate entries in the tables. Proceed?"
852
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
853
 
854
+ #: admin/admin.php:1066
855
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
856
  msgstr ""
857
 
858
+ #: admin/admin.php:1069
859
  msgid ""
860
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
861
  "activate the plugin independently for each site. This would have resulted in "
862
  "two tables being created for each site in the network."
863
  msgstr ""
864
 
865
+ #: admin/admin.php:1070
866
  msgid ""
867
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
868
  "your database clean. You can use this tool to import the recorded counts "
869
  "from v1.x tables to the new v2.x table format."
870
  msgstr ""
871
 
872
+ #: admin/admin.php:1073
873
  msgid ""
874
  "If you do not see any tables below, then it means that either all data has "
875
  "already been imported or no relevant information has been found."
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1076
879
  msgid ""
880
  "After running the importer, please verify that all the counts have been "
881
  "successfully imported. Only then should you delete any old tables!"
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1110
885
  msgid "Blog ID"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1113
889
  msgid "Status"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1116
893
  msgid "Select to import"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1126
897
  msgid "Blog #"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1136
901
  msgid "Not imported"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1140
905
  msgid "Imported"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1161
909
  msgid "Begin import"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1162
913
  msgid "Delete selected tables"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1163
917
  msgid "Delete all imported tables"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1220 admin/admin.php:1316
921
  msgid "Daily Popular Posts"
922
  msgstr "Posturi populare de zi cu zi"
923
 
924
+ #: admin/admin.php:1250
925
  msgid "Support the development"
926
  msgstr "Sprijinirea dezvoltării"
927
 
928
+ #: admin/admin.php:1257
929
  msgid "Donation for Top 10"
930
  msgstr ""
931
 
932
+ #: admin/admin.php:1259
933
  msgid "Enter amount in USD: "
934
  msgstr "Introduceţi valoarea în USD: "
935
 
936
+ #: admin/admin.php:1263
937
  #, fuzzy
938
  msgid "Send your donation to the author of Top 10"
939
  msgstr "Trimite donatie autorului"
940
 
941
+ #: admin/admin.php:1270
942
  msgid "Follow me"
943
  msgstr ""
944
 
945
+ #: admin/admin.php:1280
946
  #, fuzzy
947
  msgid "Quick links"
948
  msgstr "Legături rapide pentru"
949
 
950
+ #: admin/admin.php:1284
951
  #, fuzzy
952
  msgid "Top 10 plugin page"
953
  msgstr "plug-in pagina"
954
 
955
+ #: admin/admin.php:1285
956
  msgid "Top 10 Github page"
957
  msgstr ""
958
 
959
+ #: admin/admin.php:1286
960
  msgid "Other plugins"
961
  msgstr "Alte plugin-uri"
962
 
963
+ #: admin/admin.php:1287
964
  msgid "Ajay's blog"
965
  msgstr "Ajay's blog"
966
 
967
+ #: admin/admin.php:1288
968
  msgid "FAQ"
969
  msgstr ""
970
 
971
+ #: admin/admin.php:1289 admin/admin.php:1451
972
  msgid "Support"
973
  msgstr "Suport"
974
 
975
+ #: admin/admin.php:1290
976
  msgid "Reviews"
977
  msgstr ""
978
 
979
+ #: admin/admin.php:1313
980
  #, fuzzy
981
  msgid "Overall Popular Posts"
982
  msgstr "Vedere de ansamblu posturi populare"
983
 
984
+ #: admin/admin.php:1428
985
  msgid "Settings"
986
  msgstr "Setări"
987
 
988
+ #: admin/admin.php:1452
989
  msgid "Donate"
990
  msgstr "Dona"
991
 
999
  msgid "Display popular posts"
1000
  msgstr "Posturi populare de zi cu zi"
1001
 
1002
+ #: includes/class-top-10-widget.php:71
1003
  msgid "Title"
1004
  msgstr ""
1005
 
1006
+ #: includes/class-top-10-widget.php:76
1007
  msgid "No. of posts"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-top-10-widget.php:81
1011
  msgid "Overall"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-top-10-widget.php:82
1015
  msgid "Custom time period (Enter below)"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-top-10-widget.php:86
1019
  msgid "In days and hours (applies only to custom option above)"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-top-10-widget.php:88
1023
  msgid "days"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-top-10-widget.php:91
1027
  msgid "hours"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-top-10-widget.php:96
1031
  #, fuzzy
1032
  msgid "Show count?"
1033
  msgstr "Afişează post extras din lista?"
1034
 
1035
+ #: includes/class-top-10-widget.php:101
1036
  #, fuzzy
1037
  msgid "Show excerpt?"
1038
  msgstr "Afişează post extras din lista?"
1039
 
1040
+ #: includes/class-top-10-widget.php:106
1041
  #, fuzzy
1042
  msgid "Show author?"
1043
  msgstr "Afişează post extras din lista?"
1044
 
1045
+ #: includes/class-top-10-widget.php:111
1046
  #, fuzzy
1047
  msgid "Show date?"
1048
  msgstr "Afişează post extras din lista?"
1049
 
1050
+ #: includes/class-top-10-widget.php:117
1051
  #, fuzzy
1052
  msgid "Thumbnails inline, before title"
1053
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
1054
 
1055
+ #: includes/class-top-10-widget.php:118
1056
  #, fuzzy
1057
  msgid "Thumbnails inline, after title"
1058
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
1059
 
1060
+ #: includes/class-top-10-widget.php:119
1061
  #, fuzzy
1062
  msgid "Only thumbnails, no text"
1063
  msgstr "Afişa numai miniaturi, nici un text"
1064
 
1065
+ #: includes/class-top-10-widget.php:120
1066
  #, fuzzy
1067
  msgid "No thumbnails, only text."
1068
  msgstr "Nu se afişează miniaturi, numai textul."
1069
 
1070
+ #: includes/class-top-10-widget.php:125
1071
  #, fuzzy
1072
  msgid "Thumbnail height"
1073
  msgstr "Post Opţiuni pictograme:"
1074
 
1075
+ #: includes/class-top-10-widget.php:131
1076
  #, fuzzy
1077
  msgid "Thumbnail width"
1078
  msgstr "Post Opţiuni pictograme:"
1079
 
1080
+ #: includes/class-top-10-widget.php:136
1081
+ msgid "Post types to include:"
1082
+ msgstr ""
1083
+
1084
+ #: top-10.php:756
1085
  msgid " by "
1086
  msgstr ""
1087
 
1088
+ #: top-10.php:823
1089
  #, php-format
1090
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1091
  msgstr ""
1092
 
1093
+ #: top-10.php:1113
1094
  msgid "<h3>Popular Posts</h3>"
1095
  msgstr "<h3>Posturi populare</h3>"
1096
 
1097
+ #: top-10.php:1114
1098
  msgid "<h3>Daily Popular</h3>"
1099
  msgstr "<h3>Daily populare</h3>"
1100
 
1101
+ #: top-10.php:1115
1102
  #, fuzzy
1103
  msgid "No top posts yet"
1104
  msgstr "Top 10 populare posturi Resetare"
1105
 
1106
+ #: top-10.php:1507
1107
+ msgid "thumb_timthumb argument has been deprecated"
1108
+ msgstr ""
1109
+
1110
+ #: top-10.php:1511
1111
+ msgid "thumb_timthumb_q argument has been deprecated"
1112
+ msgstr ""
1113
+
1114
+ #: top-10.php:1515
1115
+ msgid "filter argument has been deprecated"
1116
+ msgstr ""
1117
+
1118
+ #: top-10.php:1853
1119
  msgid "Once Weekly"
1120
  msgstr ""
1121
 
1122
+ #: top-10.php:1857
1123
  msgid "Once Fortnightly"
1124
  msgstr ""
1125
 
1126
+ #: top-10.php:1861
1127
  msgid "Once Monthly"
1128
  msgstr ""
1129
 
1130
+ #: top-10.php:1865
1131
  msgid "Once quarterly"
1132
  msgstr ""
1133
 
1134
+ #~ msgid "Reset count"
1135
+ #~ msgstr "Reiniţializare count"
1136
+
1137
  #~ msgid "Daily Popular should contain views of how many days? "
1138
  #~ msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
1139
 
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: 2015-01-03 01:53-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"
@@ -61,7 +61,7 @@ msgstr "Предыдущая страница"
61
  msgid "Next"
62
  msgstr "Следующая страница"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Популярные записи"
67
 
@@ -69,7 +69,7 @@ msgstr "Популярные записи"
69
  msgid "Daily Popular"
70
  msgstr "Популярные сегодня записи"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Топ 10 записей"
75
 
@@ -99,125 +99,135 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Настройки сохранены."
105
 
106
- #: admin/admin.php:173
 
 
 
 
 
 
107
  msgid "Options set to Default."
108
  msgstr "Настройки сброшены."
109
 
110
- #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Сбросить статистику популярных записей"
113
 
114
- #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Сбросить статистику популярных записей за сегодня"
117
 
118
- #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:204
 
 
 
 
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Настроки плагина"
144
 
145
- #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:295 admin/admin.php:706
158
- #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Настройки превью к записям:"
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -264,61 +274,61 @@ msgstr ""
264
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
265
  "бы очень благодарен Вам, если Вы ее все же оставите!"
266
 
267
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Настройки плагина:"
272
 
273
- #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
277
 
278
- #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
- #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Страница"
286
 
287
- #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
- #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
- #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
- #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
- #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
- #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
- #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr ""
318
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
319
  "день, за все время для записей/страниц:"
320
 
321
- #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -326,11 +336,11 @@ msgid ""
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
- #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
- #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -338,311 +348,301 @@ msgid ""
338
  "option."
339
  msgstr ""
340
 
341
- #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
- #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
- #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
355
 
356
- #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
- #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
365
 
366
- #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
- #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
374
 
375
- #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
- #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
- #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
- #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
393
 
394
- #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
- #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Количество Популярных записей в списке:"
403
 
404
- #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
- #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
- #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
- #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
- #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Исключить рубрики:"
425
 
426
- #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
- #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Заголовок списка Популярных записей:"
436
 
437
- #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Заголовок списка Популярных сегодня записей:"
440
 
441
- #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
- #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
- #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Показывать текст записи в списке?"
456
 
457
- #: admin/admin.php:603
 
 
 
 
 
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Длина выводимого текста (в словах):"
460
 
461
- #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Показывать текст записи в списке?"
465
 
466
- #: admin/admin.php:615
 
 
 
 
 
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Показывать текст записи в списке?"
470
 
471
- #: admin/admin.php:621
 
 
 
 
 
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
- #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Показывать текст записи в списке?"
479
 
480
- #: admin/admin.php:633
481
- msgid "Always display latest post count in the daily lists?"
482
- msgstr ""
483
-
484
- #: admin/admin.php:636
485
- msgid ""
486
- "This option uses JavaScript and will increase your page load time. When you "
487
- "enable this option, the daily widget will not use the options set there, but "
488
- "options will need to be set on this screen."
489
- msgstr ""
490
-
491
- #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
- #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
- #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
- #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Настройки оформления списка:"
507
 
508
- #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML-тег, используемый перед списком:"
511
 
512
- #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
515
 
516
- #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
519
 
520
- #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML-тег, используемый после списка:"
523
 
524
- #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
- #: admin/admin.php:725
529
  msgid "Display thumbnails inline with posts, before title"
530
  msgstr "Отображать превью к записи сразу перед заголовком"
531
 
532
- #: admin/admin.php:730
533
  msgid "Display thumbnails inline with posts, after title"
534
  msgstr "Отображать превью к записи сразу после заголовка"
535
 
536
- #: admin/admin.php:735
537
  msgid "Display only thumbnails, no text"
538
  msgstr "Отображать только превью, без текста"
539
 
540
- #: admin/admin.php:740
541
  msgid "Do not display thumbnails, only text."
542
  msgstr "Отображать только текст, без превью"
543
 
544
- #: admin/admin.php:744
 
 
 
 
 
 
545
  msgid "Thumbnail size:"
546
  msgstr ""
547
 
548
- #: admin/admin.php:768
549
  msgid "Custom size"
550
  msgstr ""
551
 
552
- #: admin/admin.php:771
553
  msgid ""
554
  "You can choose from existing image sizes above or create a custom size. If "
555
  "you have chosen Custom size above, then enter the width, height and crop "
556
  "settings below. For best results, use a cropped image."
557
  msgstr ""
558
 
559
- #: admin/admin.php:772
560
  msgid ""
561
  "If you change the width and/or height below, existing images will not be "
562
  "automatically resized."
563
  msgstr ""
564
 
565
- #: admin/admin.php:773
566
  #, php-format
567
  msgid ""
568
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
569
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
570
- "regenerate all image sizes."
571
  msgstr ""
572
 
573
- #: admin/admin.php:776
574
  msgid "Width of custom thumbnail:"
575
  msgstr ""
576
 
577
- #: admin/admin.php:781
578
  msgid "Height of custom thumbnail"
579
  msgstr ""
580
 
581
- #: admin/admin.php:786
582
  msgid "Crop mode:"
583
  msgstr ""
584
 
585
- #: admin/admin.php:790
586
  msgid ""
587
  "By default, thumbnails will be proportionately cropped. Check this box to "
588
  "hard crop the thumbnails."
589
  msgstr ""
590
 
591
- #: admin/admin.php:791
592
  #, php-format
593
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
594
  msgstr ""
595
 
596
- #: admin/admin.php:793
597
  msgid ""
598
- "Since you're using the default styles set under the Custom Styles section, "
599
- "the width and height is fixed at 65px and crop mode is enabled."
600
  msgstr ""
601
 
602
- #: admin/admin.php:798
603
  msgid "Style attributes / Width and Height HTML attributes:"
604
  msgstr ""
605
 
606
- #: admin/admin.php:802
607
  msgid "Style attributes are used for width and height."
608
  msgstr ""
609
 
610
- #: admin/admin.php:807
611
  msgid "HTML width and height attributes are used for width and height."
612
  msgstr ""
613
 
614
- #: admin/admin.php:811
615
- msgid "Use timthumb to generate thumbnails? "
616
- msgstr ""
617
-
618
- #: admin/admin.php:814
619
- msgid ""
620
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
621
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
622
- msgstr ""
623
-
624
- #: admin/admin.php:817
625
- msgid "Quality of thumbnails generated by timthumb:"
626
- msgstr ""
627
-
628
- #: admin/admin.php:820
629
- msgid ""
630
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
631
- "file size. Suggested maximum value is 95. Default is 75."
632
- msgstr ""
633
-
634
- #: admin/admin.php:823
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Настройки превью к записям:"
638
 
639
- #: admin/admin.php:826
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
- #: admin/admin.php:829
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -652,7 +652,7 @@ msgstr ""
652
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
653
  "как будет создаваться уменьшенная копия изображения"
654
 
655
- #: admin/admin.php:832
656
  #, fuzzy
657
  msgid ""
658
  "This could slow down the loading of your page if the first image in the "
@@ -662,11 +662,11 @@ msgstr ""
662
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
663
  "как будет создаваться уменьшенная копия изображения"
664
 
665
- #: admin/admin.php:835
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
- #: admin/admin.php:838
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -675,11 +675,11 @@ msgstr ""
675
  "добавлено стандартное изображение. Если превью задано к записи - будет "
676
  "отображаться только оно."
677
 
678
- #: admin/admin.php:841
679
  msgid "Default thumbnail: "
680
  msgstr ""
681
 
682
- #: admin/admin.php:845
683
  #, fuzzy
684
  msgid ""
685
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -690,54 +690,54 @@ msgstr ""
690
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
691
  "выводиться картинка по-умолчанию:"
692
 
693
- #: admin/admin.php:869
694
  msgid "Custom CSS"
695
  msgstr ""
696
 
697
- #: admin/admin.php:884
698
  msgid "Use default style included in the plugin?"
699
  msgstr ""
700
 
701
- #: admin/admin.php:887
702
  msgid ""
703
  "Top 10 includes a default style that makes your popular posts list to look "
704
  "beautiful. Check the box above if you want to use this."
705
  msgstr ""
706
 
707
- #: admin/admin.php:888
708
  msgid ""
709
  "Enabling this option will turn on the thumbnails and set their width and "
710
  "height to 65px. It will also turn off the display of the author, excerpt and "
711
  "date if already enabled. Disabling this option will not revert any settings."
712
  msgstr ""
713
 
714
- #: admin/admin.php:889
715
  #, php-format
716
  msgid ""
717
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
718
  msgstr ""
719
 
720
- #: admin/admin.php:892
721
  msgid "Custom CSS to add to header:"
722
  msgstr ""
723
 
724
- #: admin/admin.php:897
725
  msgid ""
726
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
727
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
728
  "available CSS classes to style."
729
  msgstr ""
730
 
731
- #: admin/admin.php:917
732
  #, fuzzy
733
  msgid "Default Options"
734
  msgstr "Настройки плагина:"
735
 
736
- #: admin/admin.php:917
737
  msgid "Do you want to set options to Default?"
738
  msgstr "Сбросить настройки плагина?"
739
 
740
- #: admin/admin.php:941
741
  msgid ""
742
  "Over time the Daily Top 10 database grows in size, which reduces the "
743
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -745,65 +745,65 @@ msgid ""
745
  "will automatically delete entries older than 90 days."
746
  msgstr ""
747
 
748
- #: admin/admin.php:942
749
  msgid ""
750
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
751
  "everytime the job is rescheduled (i.e. you change the settings below)."
752
  msgstr ""
753
 
754
- #: admin/admin.php:945
755
  msgid "Enable scheduled maintenance of daily tables:"
756
  msgstr ""
757
 
758
- #: admin/admin.php:949
759
  msgid "Time to run maintenance"
760
  msgstr ""
761
 
762
- #: admin/admin.php:950
763
  msgid "hrs"
764
  msgstr ""
765
 
766
- #: admin/admin.php:950
767
  msgid "min"
768
  msgstr ""
769
 
770
- #: admin/admin.php:952
771
  msgid "How often should the maintenance be run:"
772
  msgstr ""
773
 
774
- #: admin/admin.php:956
775
  msgid "Daily"
776
  msgstr ""
777
 
778
- #: admin/admin.php:960
779
  msgid "Weekly"
780
  msgstr ""
781
 
782
- #: admin/admin.php:964
783
  msgid "Fortnightly"
784
  msgstr ""
785
 
786
- #: admin/admin.php:968
787
  msgid "Monthly"
788
  msgstr ""
789
 
790
- #: admin/admin.php:977
791
  msgid "The cron job has been scheduled. Maintenance will run "
792
  msgstr ""
793
 
794
- #: admin/admin.php:982
795
  msgid "The cron job is missing. Please resave this page to add the job"
796
  msgstr ""
797
 
798
- #: admin/admin.php:987
799
  msgid "Maintenance is turned off"
800
  msgstr ""
801
 
802
- #: admin/admin.php:1001
803
- msgid "Reset count"
804
- msgstr "Сбросить статистику"
805
 
806
- #: admin/admin.php:1004
807
  msgid ""
808
  "This cannot be reversed. Make sure that your database has been backed up "
809
  "before proceeding"
@@ -811,169 +811,187 @@ msgstr ""
811
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
812
  "убедитесь, что у вас есть копия вашей базы данных!"
813
 
814
- #: admin/admin.php:1007
815
  #, fuzzy
816
  msgid "Reset Popular Posts"
817
  msgstr "Популярные записи"
818
 
819
- #: admin/admin.php:1007
820
  msgid "Are you sure you want to reset the popular posts?"
821
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
822
 
823
- #: admin/admin.php:1008
824
  #, fuzzy
825
  msgid "Reset Daily Popular Posts"
826
  msgstr "Популярные сегодня записи"
827
 
828
- #: admin/admin.php:1008
829
  msgid "Are you sure you want to reset the daily popular posts?"
830
  msgstr ""
831
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
832
 
833
- #: admin/admin.php:1009
834
- msgid "Clear duplicates"
 
 
 
 
835
  msgstr ""
836
 
837
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
838
  msgid "This will delete the duplicate entries in the tables. Proceed?"
839
  msgstr ""
840
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
841
 
842
- #: admin/admin.php:1022
843
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
844
  msgstr ""
845
 
846
- #: admin/admin.php:1025
847
  msgid ""
848
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
849
  "activate the plugin independently for each site. This would have resulted in "
850
  "two tables being created for each site in the network."
851
  msgstr ""
852
 
853
- #: admin/admin.php:1026
854
  msgid ""
855
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
856
  "your database clean. You can use this tool to import the recorded counts "
857
  "from v1.x tables to the new v2.x table format."
858
  msgstr ""
859
 
860
- #: admin/admin.php:1029
861
  msgid ""
862
  "If you do not see any tables below, then it means that either all data has "
863
  "already been imported or no relevant information has been found."
864
  msgstr ""
865
 
866
- #: admin/admin.php:1032
867
  msgid ""
868
  "After running the importer, please verify that all the counts have been "
869
  "successfully imported. Only then should you delete any old tables!"
870
  msgstr ""
871
 
872
- #: admin/admin.php:1066
873
  msgid "Blog ID"
874
  msgstr ""
875
 
876
- #: admin/admin.php:1069
877
  msgid "Status"
878
  msgstr ""
879
 
880
- #: admin/admin.php:1072
881
  msgid "Select to import"
882
  msgstr ""
883
 
884
- #: admin/admin.php:1082
885
  msgid "Blog #"
886
  msgstr ""
887
 
888
- #: admin/admin.php:1092
889
  msgid "Not imported"
890
  msgstr ""
891
 
892
- #: admin/admin.php:1096
893
  msgid "Imported"
894
  msgstr ""
895
 
896
- #: admin/admin.php:1117
897
  msgid "Begin import"
898
  msgstr ""
899
 
900
- #: admin/admin.php:1118
901
  msgid "Delete selected tables"
902
  msgstr ""
903
 
904
- #: admin/admin.php:1119
905
  msgid "Delete all imported tables"
906
  msgstr ""
907
 
908
- #: admin/admin.php:1176 admin/admin.php:1272
909
  msgid "Daily Popular Posts"
910
  msgstr "Популярные сегодня записи"
911
 
912
- #: admin/admin.php:1206
913
  msgid "Support the development"
914
  msgstr "Поддержать автора плагина"
915
 
916
- #: admin/admin.php:1213
917
  msgid "Donation for Top 10"
918
  msgstr ""
919
 
920
- #: admin/admin.php:1215
921
  msgid "Enter amount in USD: "
922
  msgstr "Сколько вы готовы пожертвовать (в USD):"
923
 
924
- #: admin/admin.php:1219
925
  #, fuzzy
926
  msgid "Send your donation to the author of Top 10"
927
  msgstr "Отправьте пожертвование автору"
928
 
929
- #: admin/admin.php:1226
930
  msgid "Follow me"
931
  msgstr ""
932
 
933
- #: admin/admin.php:1236
934
  #, fuzzy
935
  msgid "Quick links"
936
  msgstr "Полезные ссылки"
937
 
938
- #: admin/admin.php:1240
939
  #, fuzzy
940
  msgid "Top 10 plugin page"
941
  msgstr "страница плагина"
942
 
943
- #: admin/admin.php:1241
944
  msgid "Top 10 Github page"
945
  msgstr ""
946
 
947
- #: admin/admin.php:1242
948
  msgid "Other plugins"
949
  msgstr "Другие плагины автора"
950
 
951
- #: admin/admin.php:1243
952
  msgid "Ajay's blog"
953
  msgstr "Блог Ajay"
954
 
955
- #: admin/admin.php:1244
956
  msgid "FAQ"
957
  msgstr ""
958
 
959
- #: admin/admin.php:1245 admin/admin.php:1403
960
  msgid "Support"
961
  msgstr "Поддержка (англ.)"
962
 
963
- #: admin/admin.php:1246
964
  msgid "Reviews"
965
  msgstr ""
966
 
967
- #: admin/admin.php:1269
968
  #, fuzzy
969
  msgid "Overall Popular Posts"
970
  msgstr "Посмотреть все Популярные записи"
971
 
972
- #: admin/admin.php:1380
973
  msgid "Settings"
974
  msgstr "Настроки плагина"
975
 
976
- #: admin/admin.php:1404
977
  msgid "Donate"
978
  msgstr "Сделать пожертвование"
979
 
@@ -987,122 +1005,141 @@ msgstr "Популярные записи"
987
  msgid "Display popular posts"
988
  msgstr "Популярные сегодня записи"
989
 
990
- #: includes/class-top-10-widget.php:59
991
  msgid "Title"
992
  msgstr ""
993
 
994
- #: includes/class-top-10-widget.php:64
995
  msgid "No. of posts"
996
  msgstr ""
997
 
998
- #: includes/class-top-10-widget.php:69
999
  msgid "Overall"
1000
  msgstr ""
1001
 
1002
- #: includes/class-top-10-widget.php:70
1003
  msgid "Custom time period (Enter below)"
1004
  msgstr ""
1005
 
1006
- #: includes/class-top-10-widget.php:74
1007
  msgid "In days and hours (applies only to custom option above)"
1008
  msgstr ""
1009
 
1010
- #: includes/class-top-10-widget.php:76
1011
  msgid "days"
1012
  msgstr ""
1013
 
1014
- #: includes/class-top-10-widget.php:79
1015
  msgid "hours"
1016
  msgstr ""
1017
 
1018
- #: includes/class-top-10-widget.php:84
1019
  #, fuzzy
1020
  msgid "Show count?"
1021
  msgstr "Показывать текст записи в списке?"
1022
 
1023
- #: includes/class-top-10-widget.php:89
1024
  #, fuzzy
1025
  msgid "Show excerpt?"
1026
  msgstr "Показывать текст записи в списке?"
1027
 
1028
- #: includes/class-top-10-widget.php:94
1029
  #, fuzzy
1030
  msgid "Show author?"
1031
  msgstr "Показывать текст записи в списке?"
1032
 
1033
- #: includes/class-top-10-widget.php:99
1034
  #, fuzzy
1035
  msgid "Show date?"
1036
  msgstr "Показывать текст записи в списке?"
1037
 
1038
- #: includes/class-top-10-widget.php:105
1039
  #, fuzzy
1040
  msgid "Thumbnails inline, before title"
1041
  msgstr "Отображать превью к записи сразу перед заголовком"
1042
 
1043
- #: includes/class-top-10-widget.php:106
1044
  #, fuzzy
1045
  msgid "Thumbnails inline, after title"
1046
  msgstr "Отображать превью к записи сразу после заголовка"
1047
 
1048
- #: includes/class-top-10-widget.php:107
1049
  #, fuzzy
1050
  msgid "Only thumbnails, no text"
1051
  msgstr "Отображать только превью, без текста"
1052
 
1053
- #: includes/class-top-10-widget.php:108
1054
  #, fuzzy
1055
  msgid "No thumbnails, only text."
1056
  msgstr "Отображать только текст, без превью"
1057
 
1058
- #: includes/class-top-10-widget.php:113
1059
  #, fuzzy
1060
  msgid "Thumbnail height"
1061
  msgstr "Настройки превью к записям:"
1062
 
1063
- #: includes/class-top-10-widget.php:118
1064
  #, fuzzy
1065
  msgid "Thumbnail width"
1066
  msgstr "Настройки превью к записям:"
1067
 
1068
- #: top-10.php:879
 
 
 
 
1069
  msgid " by "
1070
  msgstr ""
1071
 
1072
- #: top-10.php:930
1073
  #, php-format
1074
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1075
  msgstr ""
1076
 
1077
- #: top-10.php:1029
1078
  msgid "<h3>Popular Posts</h3>"
1079
  msgstr "<h3>Популярные записи</h3>"
1080
 
1081
- #: top-10.php:1030
1082
  msgid "<h3>Daily Popular</h3>"
1083
  msgstr "<h3>Популярные сегодня записи</h3>"
1084
 
1085
- #: top-10.php:1031
1086
  #, fuzzy
1087
  msgid "No top posts yet"
1088
  msgstr "Сбросить статистику популярных записей"
1089
 
1090
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1091
  msgid "Once Weekly"
1092
  msgstr ""
1093
 
1094
- #: top-10.php:1694
1095
  msgid "Once Fortnightly"
1096
  msgstr ""
1097
 
1098
- #: top-10.php:1698
1099
  msgid "Once Monthly"
1100
  msgstr ""
1101
 
1102
- #: top-10.php:1702
1103
  msgid "Once quarterly"
1104
  msgstr ""
1105
 
 
 
 
1106
  #~ msgid "Daily Popular should contain views of how many days? "
1107
  #~ msgstr ""
1108
  #~ "За сколько дней считать просмотры для списка Популярных сегодня записей?"
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:48-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"
61
  msgid "Next"
62
  msgstr "Следующая страница"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Популярные записи"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Популярные сегодня записи"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Топ 10 записей"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:171
103
  msgid "Options saved successfully."
104
  msgstr "Настройки сохранены."
105
 
106
+ #: admin/admin.php:174
107
+ msgid ""
108
+ "Default styles selected. Thumbnail width, height and crop settings have been "
109
+ "fixed. Author, Excerpt and Date will not be displayed."
110
+ msgstr ""
111
+
112
+ #: admin/admin.php:190
113
  msgid "Options set to Default."
114
  msgstr "Настройки сброшены."
115
 
116
+ #: admin/admin.php:197
117
  msgid "Top 10 popular posts reset"
118
  msgstr "Сбросить статистику популярных записей"
119
 
120
+ #: admin/admin.php:204
121
  msgid "Top 10 daily popular posts reset"
122
  msgstr "Сбросить статистику популярных записей за сегодня"
123
 
124
+ #: admin/admin.php:212
125
  msgid "Duplicate rows cleaned from tables"
126
  msgstr ""
127
 
128
+ #: admin/admin.php:220
129
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
130
+ msgstr ""
131
+
132
+ #: admin/admin.php:233
133
  msgid "Scheduled maintenance enabled / modified"
134
  msgstr ""
135
 
136
+ #: admin/admin.php:237
137
  msgid "Scheduled maintenance disabled"
138
  msgstr ""
139
 
140
+ #: admin/admin.php:276
141
  msgid "Counts from selected sites have been imported."
142
  msgstr ""
143
 
144
+ #: admin/admin.php:301
145
  msgid ""
146
  "Selected tables have been deleted. Note that only imported tables have been "
147
  "deleted."
148
  msgstr ""
149
 
150
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
151
  #, fuzzy
152
  msgid "Top 10 Settings"
153
  msgstr "Настроки плагина"
154
 
155
+ #: admin/admin.php:321 admin/admin.php:343
156
  msgid "General options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:322 admin/admin.php:435
160
  msgid "Counter and tracker options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:323 admin/admin.php:540
164
  msgid "Popular post list options"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:324 admin/admin.php:742
168
+ #: includes/class-top-10-widget.php:115
169
  #, fuzzy
170
  msgid "Thumbnail options"
171
  msgstr "Настройки превью к записям:"
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
274
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
275
  "бы очень благодарен Вам, если Вы ее все же оставите!"
276
 
277
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
278
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
279
  #, fuzzy
280
  msgid "Save Options"
281
  msgstr "Настройки плагина:"
282
 
283
+ #: admin/admin.php:451
284
  #, fuzzy
285
  msgid "Display number of views on:"
286
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
287
 
288
+ #: admin/admin.php:453
289
  msgid "Posts"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:454
293
  #, fuzzy
294
  msgid "Pages"
295
  msgstr "Страница"
296
 
297
+ #: admin/admin.php:455
298
  msgid "Home page"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:456
302
  msgid "Feeds"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:457
306
  msgid "Category archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:458
310
  msgid "Tag archives"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:459
314
  msgid "Other archives"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:460
318
  msgid ""
319
  "If you choose to disable this, please add <code>&lt;?php if "
320
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
321
  "</code> to your template file where you want it displayed"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:464
325
  #, fuzzy
326
  msgid "Format to display the post views:"
327
  msgstr ""
328
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
329
  "день, за все время для записей/страниц:"
330
 
331
+ #: admin/admin.php:467
332
  msgid ""
333
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
334
  "%</code> to display the daily count and <code>%overallcount%</code> to "
336
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:471
340
  msgid "What do display when there are no visits?"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:474
344
  msgid ""
345
  "This text applies only when there are 0 hits for the post and it isn't a "
346
  "single page. e.g. if you display post views on the homepage or archives then "
348
  "option."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:478
352
  msgid "Always display latest post count"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:481
356
  msgid ""
357
  "This option uses JavaScript and will increase your page load time. Turn this "
358
  "off if you are not using caching plugins or are OK with displaying older "
359
  "cached counts."
360
  msgstr ""
361
 
362
+ #: admin/admin.php:485
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
365
 
366
+ #: admin/admin.php:488
367
  msgid ""
368
  "Disabling this option will stop authors visits tracked on their own posts"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:492
372
  #, fuzzy
373
  msgid "Track visits of admins?"
374
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
375
 
376
+ #: admin/admin.php:495
377
  msgid "Disabling this option will stop admin visits being tracked."
378
  msgstr ""
379
 
380
+ #: admin/admin.php:499
381
  #, fuzzy
382
  msgid "Track visits of Editors?"
383
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
384
 
385
+ #: admin/admin.php:502
386
  msgid "Disabling this option will stop editor visits being tracked."
387
  msgstr ""
388
 
389
+ #: admin/admin.php:506
390
  msgid "Display page views on Posts and Pages in Admin"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:509
394
  msgid ""
395
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
396
  "and All Pages"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:513
400
  #, fuzzy
401
  msgid "Show number of views to non-admins"
402
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
403
 
404
+ #: admin/admin.php:516
405
  msgid ""
406
  "If you disable this then non-admins won't see the above columns or view the "
407
  "independent pages with the top posts"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:556
411
  msgid "Number of popular posts to display: "
412
  msgstr "Количество Популярных записей в списке:"
413
 
414
+ #: admin/admin.php:559
415
  msgid ""
416
  "Maximum number of posts that will be displayed in the list. This option is "
417
  "used if you don't specify the number of posts in the widget or shortcodes"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:563
421
  msgid "Post types to include in results (including custom post types)"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:577
425
  msgid "List of post or page IDs to exclude from the results: "
426
  msgstr ""
427
 
428
+ #: admin/admin.php:579 admin/admin.php:691
429
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:583
433
  msgid "Exclude Categories: "
434
  msgstr "Исключить рубрики:"
435
 
436
+ #: admin/admin.php:598
437
  msgid ""
438
  "Comma separated list of category slugs. The field above has an autocomplete "
439
  "so simply start typing in the starting letters and it will prompt you with "
440
  "options"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:603
444
  msgid "Title of popular posts: "
445
  msgstr "Заголовок списка Популярных записей:"
446
 
447
+ #: admin/admin.php:609
448
  msgid "Title of daily popular posts: "
449
  msgstr "Заголовок списка Популярных сегодня записей:"
450
 
451
+ #: admin/admin.php:615
452
  msgid "When there are no posts, what should be shown?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:619
456
  msgid "Blank Output"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:623
460
  msgid "Display:"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:628
464
  msgid "Show post excerpt in list?"
465
  msgstr "Показывать текст записи в списке?"
466
 
467
+ #: admin/admin.php:633
468
+ msgid ""
469
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
470
+ msgstr ""
471
+
472
+ #: admin/admin.php:638
473
  msgid "Length of excerpt (in words): "
474
  msgstr "Длина выводимого текста (в словах):"
475
 
476
+ #: admin/admin.php:644
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "Показывать текст записи в списке?"
480
 
481
+ #: admin/admin.php:649
482
+ msgid ""
483
+ "Default style selected under the Custom Styles. Author display is disabled."
484
+ msgstr ""
485
+
486
+ #: admin/admin.php:654
487
  #, fuzzy
488
  msgid "Show post date in list?"
489
  msgstr "Показывать текст записи в списке?"
490
 
491
+ #: admin/admin.php:659
492
+ msgid ""
493
+ "Default style selected under the Custom Styles. Date display is disabled."
494
+ msgstr ""
495
+
496
+ #: admin/admin.php:664
497
  msgid "Limit post title length (in characters)"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:670
501
  #, fuzzy
502
  msgid "Show view count in list?"
503
  msgstr "Показывать текст записи в списке?"
504
 
505
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "Open links in new window"
507
  msgstr ""
508
 
509
+ #: admin/admin.php:682
510
  msgid "Add nofollow attribute to links in the list"
511
  msgstr ""
512
 
513
+ #: admin/admin.php:688
514
  msgid "Exclude display of related posts on these posts / pages"
515
  msgstr ""
516
 
517
+ #: admin/admin.php:695
518
  #, fuzzy
519
  msgid "Customise the list HTML"
520
  msgstr "Настройки оформления списка:"
521
 
522
+ #: admin/admin.php:698
523
  msgid "HTML to display before the list of posts: "
524
  msgstr "HTML-тег, используемый перед списком:"
525
 
526
+ #: admin/admin.php:704
527
  msgid "HTML to display before each list item: "
528
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
529
 
530
+ #: admin/admin.php:710
531
  msgid "HTML to display after each list item: "
532
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
533
 
534
+ #: admin/admin.php:716
535
  msgid "HTML to display after the list of posts: "
536
  msgstr "HTML-тег, используемый после списка:"
537
 
538
+ #: admin/admin.php:757
539
  msgid "Location of post thumbnail:"
540
  msgstr ""
541
 
542
+ #: admin/admin.php:761
543
  msgid "Display thumbnails inline with posts, before title"
544
  msgstr "Отображать превью к записи сразу перед заголовком"
545
 
546
+ #: admin/admin.php:766
547
  msgid "Display thumbnails inline with posts, after title"
548
  msgstr "Отображать превью к записи сразу после заголовка"
549
 
550
+ #: admin/admin.php:771
551
  msgid "Display only thumbnails, no text"
552
  msgstr "Отображать только превью, без текста"
553
 
554
+ #: admin/admin.php:776
555
  msgid "Do not display thumbnails, only text."
556
  msgstr "Отображать только текст, без превью"
557
 
558
+ #: admin/admin.php:780
559
+ msgid ""
560
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
561
+ "to be inline before title"
562
+ msgstr ""
563
+
564
+ #: admin/admin.php:784
565
  msgid "Thumbnail size:"
566
  msgstr ""
567
 
568
+ #: admin/admin.php:808
569
  msgid "Custom size"
570
  msgstr ""
571
 
572
+ #: admin/admin.php:811
573
  msgid ""
574
  "You can choose from existing image sizes above or create a custom size. If "
575
  "you have chosen Custom size above, then enter the width, height and crop "
576
  "settings below. For best results, use a cropped image."
577
  msgstr ""
578
 
579
+ #: admin/admin.php:812
580
  msgid ""
581
  "If you change the width and/or height below, existing images will not be "
582
  "automatically resized."
583
  msgstr ""
584
 
585
+ #: admin/admin.php:813
586
  #, php-format
587
  msgid ""
588
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
589
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
590
+ "all image sizes."
591
  msgstr ""
592
 
593
+ #: admin/admin.php:816
594
  msgid "Width of custom thumbnail:"
595
  msgstr ""
596
 
597
+ #: admin/admin.php:821
598
  msgid "Height of custom thumbnail"
599
  msgstr ""
600
 
601
+ #: admin/admin.php:826
602
  msgid "Crop mode:"
603
  msgstr ""
604
 
605
+ #: admin/admin.php:830
606
  msgid ""
607
  "By default, thumbnails will be proportionately cropped. Check this box to "
608
  "hard crop the thumbnails."
609
  msgstr ""
610
 
611
+ #: admin/admin.php:831
612
  #, php-format
613
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
614
  msgstr ""
615
 
616
+ #: admin/admin.php:834
617
  msgid ""
618
+ "Default style selected under the Custom Styles. Thumbnail width and height "
619
+ "is fixed at 65px and crop mode is enabled."
620
  msgstr ""
621
 
622
+ #: admin/admin.php:839
623
  msgid "Style attributes / Width and Height HTML attributes:"
624
  msgstr ""
625
 
626
+ #: admin/admin.php:843
627
  msgid "Style attributes are used for width and height."
628
  msgstr ""
629
 
630
+ #: admin/admin.php:848
631
  msgid "HTML width and height attributes are used for width and height."
632
  msgstr ""
633
 
634
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  #, fuzzy
636
  msgid "Post thumbnail meta field name: "
637
  msgstr "Настройки превью к записям:"
638
 
639
+ #: admin/admin.php:855
640
  msgid ""
641
  "The value of this field should contain the image source and is set in the "
642
  "<em>Add New Post</em> screen"
643
  msgstr ""
644
 
645
+ #: admin/admin.php:858
646
  #, fuzzy
647
  msgid ""
648
  "If the postmeta is not set, then should the plugin extract the first image "
652
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
653
  "как будет создаваться уменьшенная копия изображения"
654
 
655
+ #: admin/admin.php:861
656
  #, fuzzy
657
  msgid ""
658
  "This could slow down the loading of your page if the first image in the "
662
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
663
  "как будет создаваться уменьшенная копия изображения"
664
 
665
+ #: admin/admin.php:864
666
  msgid "Use default thumbnail? "
667
  msgstr ""
668
 
669
+ #: admin/admin.php:867
670
  msgid ""
671
  "If checked, when no thumbnail is found, show a default one from the URL "
672
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  "добавлено стандартное изображение. Если превью задано к записи - будет "
676
  "отображаться только оно."
677
 
678
+ #: admin/admin.php:870
679
  msgid "Default thumbnail: "
680
  msgstr ""
681
 
682
+ #: admin/admin.php:874
683
  #, fuzzy
684
  msgid ""
685
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
690
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
691
  "выводиться картинка по-умолчанию:"
692
 
693
+ #: admin/admin.php:898
694
  msgid "Custom CSS"
695
  msgstr ""
696
 
697
+ #: admin/admin.php:913
698
  msgid "Use default style included in the plugin?"
699
  msgstr ""
700
 
701
+ #: admin/admin.php:916
702
  msgid ""
703
  "Top 10 includes a default style that makes your popular posts list to look "
704
  "beautiful. Check the box above if you want to use this."
705
  msgstr ""
706
 
707
+ #: admin/admin.php:917
708
  msgid ""
709
  "Enabling this option will turn on the thumbnails and set their width and "
710
  "height to 65px. It will also turn off the display of the author, excerpt and "
711
  "date if already enabled. Disabling this option will not revert any settings."
712
  msgstr ""
713
 
714
+ #: admin/admin.php:918
715
  #, php-format
716
  msgid ""
717
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
718
  msgstr ""
719
 
720
+ #: admin/admin.php:921
721
  msgid "Custom CSS to add to header:"
722
  msgstr ""
723
 
724
+ #: admin/admin.php:926
725
  msgid ""
726
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
727
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
728
  "available CSS classes to style."
729
  msgstr ""
730
 
731
+ #: admin/admin.php:946
732
  #, fuzzy
733
  msgid "Default Options"
734
  msgstr "Настройки плагина:"
735
 
736
+ #: admin/admin.php:946
737
  msgid "Do you want to set options to Default?"
738
  msgstr "Сбросить настройки плагина?"
739
 
740
+ #: admin/admin.php:970
741
  msgid ""
742
  "Over time the Daily Top 10 database grows in size, which reduces the "
743
  "performance of the plugin. Cleaning the database at regular intervals could "
745
  "will automatically delete entries older than 90 days."
746
  msgstr ""
747
 
748
+ #: admin/admin.php:971
749
  msgid ""
750
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
751
  "everytime the job is rescheduled (i.e. you change the settings below)."
752
  msgstr ""
753
 
754
+ #: admin/admin.php:974
755
  msgid "Enable scheduled maintenance of daily tables:"
756
  msgstr ""
757
 
758
+ #: admin/admin.php:978
759
  msgid "Time to run maintenance"
760
  msgstr ""
761
 
762
+ #: admin/admin.php:979
763
  msgid "hrs"
764
  msgstr ""
765
 
766
+ #: admin/admin.php:979
767
  msgid "min"
768
  msgstr ""
769
 
770
+ #: admin/admin.php:981
771
  msgid "How often should the maintenance be run:"
772
  msgstr ""
773
 
774
+ #: admin/admin.php:985
775
  msgid "Daily"
776
  msgstr ""
777
 
778
+ #: admin/admin.php:989
779
  msgid "Weekly"
780
  msgstr ""
781
 
782
+ #: admin/admin.php:993
783
  msgid "Fortnightly"
784
  msgstr ""
785
 
786
+ #: admin/admin.php:997
787
  msgid "Monthly"
788
  msgstr ""
789
 
790
+ #: admin/admin.php:1006
791
  msgid "The cron job has been scheduled. Maintenance will run "
792
  msgstr ""
793
 
794
+ #: admin/admin.php:1011
795
  msgid "The cron job is missing. Please resave this page to add the job"
796
  msgstr ""
797
 
798
+ #: admin/admin.php:1016
799
  msgid "Maintenance is turned off"
800
  msgstr ""
801
 
802
+ #: admin/admin.php:1030
803
+ msgid "Reset count and other tools"
804
+ msgstr ""
805
 
806
+ #: admin/admin.php:1033
807
  msgid ""
808
  "This cannot be reversed. Make sure that your database has been backed up "
809
  "before proceeding"
811
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
812
  "убедитесь, что у вас есть копия вашей базы данных!"
813
 
814
+ #: admin/admin.php:1036
815
  #, fuzzy
816
  msgid "Reset Popular Posts"
817
  msgstr "Популярные записи"
818
 
819
+ #: admin/admin.php:1036
820
  msgid "Are you sure you want to reset the popular posts?"
821
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
822
 
823
+ #: admin/admin.php:1037
824
  #, fuzzy
825
  msgid "Reset Daily Popular Posts"
826
  msgstr "Популярные сегодня записи"
827
 
828
+ #: admin/admin.php:1037
829
  msgid "Are you sure you want to reset the daily popular posts?"
830
  msgstr ""
831
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
832
 
833
+ #: admin/admin.php:1040
834
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
835
+ msgstr ""
836
+
837
+ #: admin/admin.php:1043
838
+ msgid "Merge blog ID 0 and 1 post counts"
839
  msgstr ""
840
 
841
+ #: admin/admin.php:1043
842
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
843
+ msgstr ""
844
+
845
+ #: admin/admin.php:1046
846
+ msgid ""
847
+ "In older versions, the plugin created entries with duplicate post IDs. "
848
+ "Clicking the button below will merge these duplicate IDs"
849
+ msgstr ""
850
+
851
+ #: admin/admin.php:1049
852
+ msgid "Merge duplicates across blog IDs"
853
+ msgstr ""
854
+
855
+ #: admin/admin.php:1049
856
  msgid "This will delete the duplicate entries in the tables. Proceed?"
857
  msgstr ""
858
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
859
 
860
+ #: admin/admin.php:1066
861
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
862
  msgstr ""
863
 
864
+ #: admin/admin.php:1069
865
  msgid ""
866
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
867
  "activate the plugin independently for each site. This would have resulted in "
868
  "two tables being created for each site in the network."
869
  msgstr ""
870
 
871
+ #: admin/admin.php:1070
872
  msgid ""
873
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
874
  "your database clean. You can use this tool to import the recorded counts "
875
  "from v1.x tables to the new v2.x table format."
876
  msgstr ""
877
 
878
+ #: admin/admin.php:1073
879
  msgid ""
880
  "If you do not see any tables below, then it means that either all data has "
881
  "already been imported or no relevant information has been found."
882
  msgstr ""
883
 
884
+ #: admin/admin.php:1076
885
  msgid ""
886
  "After running the importer, please verify that all the counts have been "
887
  "successfully imported. Only then should you delete any old tables!"
888
  msgstr ""
889
 
890
+ #: admin/admin.php:1110
891
  msgid "Blog ID"
892
  msgstr ""
893
 
894
+ #: admin/admin.php:1113
895
  msgid "Status"
896
  msgstr ""
897
 
898
+ #: admin/admin.php:1116
899
  msgid "Select to import"
900
  msgstr ""
901
 
902
+ #: admin/admin.php:1126
903
  msgid "Blog #"
904
  msgstr ""
905
 
906
+ #: admin/admin.php:1136
907
  msgid "Not imported"
908
  msgstr ""
909
 
910
+ #: admin/admin.php:1140
911
  msgid "Imported"
912
  msgstr ""
913
 
914
+ #: admin/admin.php:1161
915
  msgid "Begin import"
916
  msgstr ""
917
 
918
+ #: admin/admin.php:1162
919
  msgid "Delete selected tables"
920
  msgstr ""
921
 
922
+ #: admin/admin.php:1163
923
  msgid "Delete all imported tables"
924
  msgstr ""
925
 
926
+ #: admin/admin.php:1220 admin/admin.php:1316
927
  msgid "Daily Popular Posts"
928
  msgstr "Популярные сегодня записи"
929
 
930
+ #: admin/admin.php:1250
931
  msgid "Support the development"
932
  msgstr "Поддержать автора плагина"
933
 
934
+ #: admin/admin.php:1257
935
  msgid "Donation for Top 10"
936
  msgstr ""
937
 
938
+ #: admin/admin.php:1259
939
  msgid "Enter amount in USD: "
940
  msgstr "Сколько вы готовы пожертвовать (в USD):"
941
 
942
+ #: admin/admin.php:1263
943
  #, fuzzy
944
  msgid "Send your donation to the author of Top 10"
945
  msgstr "Отправьте пожертвование автору"
946
 
947
+ #: admin/admin.php:1270
948
  msgid "Follow me"
949
  msgstr ""
950
 
951
+ #: admin/admin.php:1280
952
  #, fuzzy
953
  msgid "Quick links"
954
  msgstr "Полезные ссылки"
955
 
956
+ #: admin/admin.php:1284
957
  #, fuzzy
958
  msgid "Top 10 plugin page"
959
  msgstr "страница плагина"
960
 
961
+ #: admin/admin.php:1285
962
  msgid "Top 10 Github page"
963
  msgstr ""
964
 
965
+ #: admin/admin.php:1286
966
  msgid "Other plugins"
967
  msgstr "Другие плагины автора"
968
 
969
+ #: admin/admin.php:1287
970
  msgid "Ajay's blog"
971
  msgstr "Блог Ajay"
972
 
973
+ #: admin/admin.php:1288
974
  msgid "FAQ"
975
  msgstr ""
976
 
977
+ #: admin/admin.php:1289 admin/admin.php:1451
978
  msgid "Support"
979
  msgstr "Поддержка (англ.)"
980
 
981
+ #: admin/admin.php:1290
982
  msgid "Reviews"
983
  msgstr ""
984
 
985
+ #: admin/admin.php:1313
986
  #, fuzzy
987
  msgid "Overall Popular Posts"
988
  msgstr "Посмотреть все Популярные записи"
989
 
990
+ #: admin/admin.php:1428
991
  msgid "Settings"
992
  msgstr "Настроки плагина"
993
 
994
+ #: admin/admin.php:1452
995
  msgid "Donate"
996
  msgstr "Сделать пожертвование"
997
 
1005
  msgid "Display popular posts"
1006
  msgstr "Популярные сегодня записи"
1007
 
1008
+ #: includes/class-top-10-widget.php:71
1009
  msgid "Title"
1010
  msgstr ""
1011
 
1012
+ #: includes/class-top-10-widget.php:76
1013
  msgid "No. of posts"
1014
  msgstr ""
1015
 
1016
+ #: includes/class-top-10-widget.php:81
1017
  msgid "Overall"
1018
  msgstr ""
1019
 
1020
+ #: includes/class-top-10-widget.php:82
1021
  msgid "Custom time period (Enter below)"
1022
  msgstr ""
1023
 
1024
+ #: includes/class-top-10-widget.php:86
1025
  msgid "In days and hours (applies only to custom option above)"
1026
  msgstr ""
1027
 
1028
+ #: includes/class-top-10-widget.php:88
1029
  msgid "days"
1030
  msgstr ""
1031
 
1032
+ #: includes/class-top-10-widget.php:91
1033
  msgid "hours"
1034
  msgstr ""
1035
 
1036
+ #: includes/class-top-10-widget.php:96
1037
  #, fuzzy
1038
  msgid "Show count?"
1039
  msgstr "Показывать текст записи в списке?"
1040
 
1041
+ #: includes/class-top-10-widget.php:101
1042
  #, fuzzy
1043
  msgid "Show excerpt?"
1044
  msgstr "Показывать текст записи в списке?"
1045
 
1046
+ #: includes/class-top-10-widget.php:106
1047
  #, fuzzy
1048
  msgid "Show author?"
1049
  msgstr "Показывать текст записи в списке?"
1050
 
1051
+ #: includes/class-top-10-widget.php:111
1052
  #, fuzzy
1053
  msgid "Show date?"
1054
  msgstr "Показывать текст записи в списке?"
1055
 
1056
+ #: includes/class-top-10-widget.php:117
1057
  #, fuzzy
1058
  msgid "Thumbnails inline, before title"
1059
  msgstr "Отображать превью к записи сразу перед заголовком"
1060
 
1061
+ #: includes/class-top-10-widget.php:118
1062
  #, fuzzy
1063
  msgid "Thumbnails inline, after title"
1064
  msgstr "Отображать превью к записи сразу после заголовка"
1065
 
1066
+ #: includes/class-top-10-widget.php:119
1067
  #, fuzzy
1068
  msgid "Only thumbnails, no text"
1069
  msgstr "Отображать только превью, без текста"
1070
 
1071
+ #: includes/class-top-10-widget.php:120
1072
  #, fuzzy
1073
  msgid "No thumbnails, only text."
1074
  msgstr "Отображать только текст, без превью"
1075
 
1076
+ #: includes/class-top-10-widget.php:125
1077
  #, fuzzy
1078
  msgid "Thumbnail height"
1079
  msgstr "Настройки превью к записям:"
1080
 
1081
+ #: includes/class-top-10-widget.php:131
1082
  #, fuzzy
1083
  msgid "Thumbnail width"
1084
  msgstr "Настройки превью к записям:"
1085
 
1086
+ #: includes/class-top-10-widget.php:136
1087
+ msgid "Post types to include:"
1088
+ msgstr ""
1089
+
1090
+ #: top-10.php:756
1091
  msgid " by "
1092
  msgstr ""
1093
 
1094
+ #: top-10.php:823
1095
  #, php-format
1096
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1097
  msgstr ""
1098
 
1099
+ #: top-10.php:1113
1100
  msgid "<h3>Popular Posts</h3>"
1101
  msgstr "<h3>Популярные записи</h3>"
1102
 
1103
+ #: top-10.php:1114
1104
  msgid "<h3>Daily Popular</h3>"
1105
  msgstr "<h3>Популярные сегодня записи</h3>"
1106
 
1107
+ #: top-10.php:1115
1108
  #, fuzzy
1109
  msgid "No top posts yet"
1110
  msgstr "Сбросить статистику популярных записей"
1111
 
1112
+ #: top-10.php:1507
1113
+ msgid "thumb_timthumb argument has been deprecated"
1114
+ msgstr ""
1115
+
1116
+ #: top-10.php:1511
1117
+ msgid "thumb_timthumb_q argument has been deprecated"
1118
+ msgstr ""
1119
+
1120
+ #: top-10.php:1515
1121
+ msgid "filter argument has been deprecated"
1122
+ msgstr ""
1123
+
1124
+ #: top-10.php:1853
1125
  msgid "Once Weekly"
1126
  msgstr ""
1127
 
1128
+ #: top-10.php:1857
1129
  msgid "Once Fortnightly"
1130
  msgstr ""
1131
 
1132
+ #: top-10.php:1861
1133
  msgid "Once Monthly"
1134
  msgstr ""
1135
 
1136
+ #: top-10.php:1865
1137
  msgid "Once quarterly"
1138
  msgstr ""
1139
 
1140
+ #~ msgid "Reset count"
1141
+ #~ msgstr "Сбросить статистику"
1142
+
1143
  #~ msgid "Daily Popular should contain views of how many days? "
1144
  #~ msgstr ""
1145
  #~ "За сколько дней считать просмотры для списка Популярных сегодня записей?"
languages/tptn-sr_RS.mo CHANGED
Binary file
languages/tptn-sr_RS.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: 2015-01-03 01:53-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"
@@ -61,7 +61,7 @@ msgstr "Prethodni"
61
  msgid "Next"
62
  msgstr "Sledeći"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Popularni postovi"
67
 
@@ -69,7 +69,7 @@ msgstr "Popularni postovi"
69
  msgid "Daily Popular"
70
  msgstr "Dnevno popularno"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
@@ -100,125 +100,135 @@ msgstr ""
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
- #: admin/admin.php:163
104
  msgid "Options saved successfully."
105
  msgstr "Opcije uspešno sašuvane"
106
 
107
- #: admin/admin.php:173
 
 
 
 
 
 
108
  msgid "Options set to Default."
109
  msgstr "Opcije podešene po Default-u."
110
 
111
- #: admin/admin.php:179
112
  msgid "Top 10 popular posts reset"
113
  msgstr "Resetuj Top 10 popularnih postova"
114
 
115
- #: admin/admin.php:185
116
  msgid "Top 10 daily popular posts reset"
117
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
118
 
119
- #: admin/admin.php:192
120
  msgid "Duplicate rows cleaned from tables"
121
  msgstr "Umnoži redove očišćene sa tabela"
122
 
123
- #: admin/admin.php:204
 
 
 
 
124
  msgid "Scheduled maintenance enabled / modified"
125
  msgstr "Raspored održavanja omogućen modifikovan"
126
 
127
- #: admin/admin.php:208
128
  msgid "Scheduled maintenance disabled"
129
  msgstr "Raspoed održavanja onemogućen"
130
 
131
- #: admin/admin.php:247
132
  msgid "Counts from selected sites have been imported."
133
  msgstr ""
134
 
135
- #: admin/admin.php:272
136
  msgid ""
137
  "Selected tables have been deleted. Note that only imported tables have been "
138
  "deleted."
139
  msgstr ""
140
 
141
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
142
  #, fuzzy
143
  msgid "Top 10 Settings"
144
  msgstr "Paramètres"
145
 
146
- #: admin/admin.php:292 admin/admin.php:314
147
  msgid "General options"
148
  msgstr "Opšta pitanja"
149
 
150
- #: admin/admin.php:293 admin/admin.php:406
151
  msgid "Counter and tracker options"
152
  msgstr ""
153
 
154
- #: admin/admin.php:294 admin/admin.php:511
155
  msgid "Popular post list options"
156
  msgstr ""
157
 
158
- #: admin/admin.php:295 admin/admin.php:706
159
- #: includes/class-top-10-widget.php:103
160
  #, fuzzy
161
  msgid "Thumbnail options"
162
  msgstr "Options thumbnail des messages:"
163
 
164
- #: admin/admin.php:296
165
  msgid "Custom styles"
166
  msgstr ""
167
 
168
- #: admin/admin.php:297 admin/admin.php:937
169
  msgid "Maintenance"
170
  msgstr "Održavanje"
171
 
172
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
173
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
174
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
175
- #: admin/admin.php:1225 admin/admin.php:1235
176
  msgid "Click to toggle"
177
  msgstr ""
178
 
179
- #: admin/admin.php:330
180
  msgid "Enable Overall stats"
181
  msgstr "Omogući statistiku svega"
182
 
183
- #: admin/admin.php:336
184
  msgid "Enable Daily stats"
185
  msgstr "Omogući dnevne statistike"
186
 
187
- #: admin/admin.php:342
188
  msgid "Cache fix:"
189
  msgstr ""
190
 
191
- #: admin/admin.php:345
192
  msgid ""
193
  "This will try to prevent W3 Total Cache and other caching plugins from "
194
  "caching the tracker script of the plugin. Try toggling this option in case "
195
  "you find that your posts are not tracked."
196
  msgstr ""
197
 
198
- #: admin/admin.php:349
199
  msgid "Start daily counts from midnight:"
200
  msgstr ""
201
 
202
- #: admin/admin.php:352
203
  msgid ""
204
  "Daily counter will display number of visits from midnight. This option is "
205
  "checked by default and mimics the way most normal counters work. Turning "
206
  "this off will allow you to use the hourly setting in the next option."
207
  msgstr ""
208
 
209
- #: admin/admin.php:356
210
  msgid "Daily popular contains top posts over:"
211
  msgstr ""
212
 
213
- #: admin/admin.php:358
214
  msgid "day(s)"
215
  msgstr ""
216
 
217
- #: admin/admin.php:359
218
  msgid "hour(s)"
219
  msgstr ""
220
 
221
- #: admin/admin.php:360
222
  msgid ""
223
  "Think of Daily Popular has a custom date range applied as a global setting. "
224
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -226,37 +236,37 @@ msgid ""
226
  "overridden in the widget."
227
  msgstr ""
228
 
229
- #: admin/admin.php:364
230
  msgid "Delete options on uninstall"
231
  msgstr ""
232
 
233
- #: admin/admin.php:367
234
  msgid ""
235
  "If this is checked, all settings related to Top 10 are removed from the "
236
  "database if you choose to uninstall/delete the plugin."
237
  msgstr ""
238
 
239
- #: admin/admin.php:371
240
  msgid "Delete counter data on uninstall"
241
  msgstr ""
242
 
243
- #: admin/admin.php:374
244
  msgid ""
245
  "If this is checked, the tables containing the counter statistics are removed "
246
  "from the database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
- #: admin/admin.php:375
250
  msgid ""
251
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
252
  "lose your counter data."
253
  msgstr ""
254
 
255
- #: admin/admin.php:379
256
  msgid "Link to Top 10 plugin page"
257
  msgstr "Povežite se na Top 10 plugin stranicu"
258
 
259
- #: admin/admin.php:382
260
  #, fuzzy
261
  msgid ""
262
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -266,47 +276,47 @@ msgstr ""
266
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
267
  "mais nous vous y remercions!"
268
 
269
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
270
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
271
  #, fuzzy
272
  msgid "Save Options"
273
  msgstr "Options:"
274
 
275
- #: admin/admin.php:422
276
  #, fuzzy
277
  msgid "Display number of views on:"
278
  msgstr "Afficher le nombre des visionnages du message?"
279
 
280
- #: admin/admin.php:424
281
  msgid "Posts"
282
  msgstr "Postovi"
283
 
284
- #: admin/admin.php:425
285
  #, fuzzy
286
  msgid "Pages"
287
  msgstr "Page"
288
 
289
- #: admin/admin.php:426
290
  msgid "Home page"
291
  msgstr "Početna stranica"
292
 
293
- #: admin/admin.php:427
294
  msgid "Feeds"
295
  msgstr "Feeds"
296
 
297
- #: admin/admin.php:428
298
  msgid "Category archives"
299
  msgstr "Kategorija arhiva"
300
 
301
- #: admin/admin.php:429
302
  msgid "Tag archives"
303
  msgstr "Tag arhiva"
304
 
305
- #: admin/admin.php:430
306
  msgid "Other archives"
307
  msgstr "Druge arhive"
308
 
309
- #: admin/admin.php:431
310
  #, fuzzy
311
  msgid ""
312
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -317,12 +327,12 @@ msgstr ""
317
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
318
  "template fajlu gde želite da bude prikazano. "
319
 
320
- #: admin/admin.php:435
321
  #, fuzzy
322
  msgid "Format to display the post views:"
323
  msgstr "Format za prikaz brojanja u:"
324
 
325
- #: admin/admin.php:438
326
  msgid ""
327
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
328
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -330,11 +340,11 @@ msgid ""
330
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
331
  msgstr ""
332
 
333
- #: admin/admin.php:442
334
  msgid "What do display when there are no visits?"
335
  msgstr ""
336
 
337
- #: admin/admin.php:445
338
  msgid ""
339
  "This text applies only when there are 0 hits for the post and it isn't a "
340
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -342,11 +352,11 @@ msgid ""
342
  "option."
343
  msgstr ""
344
 
345
- #: admin/admin.php:449
346
  msgid "Always display latest post count"
347
  msgstr "Uvek prikaži posldenje brojanje posta"
348
 
349
- #: admin/admin.php:452
350
  #, fuzzy
351
  msgid ""
352
  "This option uses JavaScript and will increase your page load time. Turn this "
@@ -359,84 +369,84 @@ msgstr ""
359
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
360
  "se podese na ovom ekranu."
361
 
362
- #: admin/admin.php:456
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr ""
365
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
366
  "posete autora na njihovim postovima?"
367
 
368
- #: admin/admin.php:459
369
  msgid ""
370
  "Disabling this option will stop authors visits tracked on their own posts"
371
  msgstr ""
372
 
373
- #: admin/admin.php:463
374
  #, fuzzy
375
  msgid "Track visits of admins?"
376
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
377
 
378
- #: admin/admin.php:466
379
  msgid "Disabling this option will stop admin visits being tracked."
380
  msgstr ""
381
 
382
- #: admin/admin.php:470
383
  #, fuzzy
384
  msgid "Track visits of Editors?"
385
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
386
 
387
- #: admin/admin.php:473
388
  msgid "Disabling this option will stop editor visits being tracked."
389
  msgstr ""
390
 
391
- #: admin/admin.php:477
392
  #, fuzzy
393
  msgid "Display page views on Posts and Pages in Admin"
394
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
395
 
396
- #: admin/admin.php:480
397
  msgid ""
398
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
399
  "and All Pages"
400
  msgstr ""
401
 
402
- #: admin/admin.php:484
403
  #, fuzzy
404
  msgid "Show number of views to non-admins"
405
  msgstr "Afficher le nombre des visionnages sur les pages?"
406
 
407
- #: admin/admin.php:487
408
  msgid ""
409
  "If you disable this then non-admins won't see the above columns or view the "
410
  "independent pages with the top posts"
411
  msgstr ""
412
 
413
- #: admin/admin.php:527
414
  msgid "Number of popular posts to display: "
415
  msgstr "Broj popularnih postova za prikaz."
416
 
417
- #: admin/admin.php:530
418
  msgid ""
419
  "Maximum number of posts that will be displayed in the list. This option is "
420
  "used if you don't specify the number of posts in the widget or shortcodes"
421
  msgstr ""
422
 
423
- #: admin/admin.php:534
424
  msgid "Post types to include in results (including custom post types)"
425
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
426
 
427
- #: admin/admin.php:546
428
  msgid "List of post or page IDs to exclude from the results: "
429
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
430
 
431
- #: admin/admin.php:548 admin/admin.php:655
432
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
433
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
434
 
435
- #: admin/admin.php:552
436
  msgid "Exclude Categories: "
437
  msgstr "Isključene kategorije"
438
 
439
- #: admin/admin.php:567
440
  msgid ""
441
  "Comma separated list of category slugs. The field above has an autocomplete "
442
  "so simply start typing in the starting letters and it will prompt you with "
@@ -445,227 +455,207 @@ msgstr ""
445
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
446
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
447
 
448
- #: admin/admin.php:572
449
  msgid "Title of popular posts: "
450
  msgstr "Naslov popularnih postova:"
451
 
452
- #: admin/admin.php:578
453
  msgid "Title of daily popular posts: "
454
  msgstr "Naslov popularnih dnevnih postova:"
455
 
456
- #: admin/admin.php:584
457
  msgid "When there are no posts, what should be shown?"
458
  msgstr "Kada nema postova šta da prikažemo?"
459
 
460
- #: admin/admin.php:588
461
  msgid "Blank Output"
462
  msgstr "Prazan izlaz"
463
 
464
- #: admin/admin.php:592
465
  msgid "Display:"
466
  msgstr "Prikaz:"
467
 
468
- #: admin/admin.php:597
469
  msgid "Show post excerpt in list?"
470
  msgstr "Pokaži post izvoda na listi?"
471
 
472
- #: admin/admin.php:603
 
 
 
 
 
473
  msgid "Length of excerpt (in words): "
474
  msgstr "Dužina izvoda (u rečima):"
475
 
476
- #: admin/admin.php:609
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "Afficher le fragment du message dans la liste?"
480
 
481
- #: admin/admin.php:615
 
 
 
 
 
482
  #, fuzzy
483
  msgid "Show post date in list?"
484
  msgstr "Afficher le fragment du message dans la liste?"
485
 
486
- #: admin/admin.php:621
 
 
 
 
 
487
  msgid "Limit post title length (in characters)"
488
  msgstr "Limit dužine postova naslova (u karakterima)"
489
 
490
- #: admin/admin.php:627
491
  #, fuzzy
492
  msgid "Show view count in list?"
493
  msgstr "Afficher le fragment du message dans la liste?"
494
 
495
- #: admin/admin.php:633
496
- #, fuzzy
497
- msgid "Always display latest post count in the daily lists?"
498
- msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
499
-
500
- #: admin/admin.php:636
501
- #, fuzzy
502
- msgid ""
503
- "This option uses JavaScript and will increase your page load time. When you "
504
- "enable this option, the daily widget will not use the options set there, but "
505
- "options will need to be set on this screen."
506
- msgstr ""
507
- "Ovu opciju koristi JavaScript i povećaće vreme ušitavanje vaše stranice. "
508
- "Ugasite ovo ako ne koristite caching pluginove ili se slažete sa "
509
- "prikazivanjem starijih cache brojanja. Kada omogućite ovu opciju, dnevni "
510
- "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
511
- "se podese na ovom ekranu."
512
-
513
- #: admin/admin.php:640
514
  msgid "Open links in new window"
515
  msgstr "Otvori linkove u novim prozorima"
516
 
517
- #: admin/admin.php:646
518
  msgid "Add nofollow attribute to links in the list"
519
  msgstr "Dodaj nofollow atribut linkovima u listi"
520
 
521
- #: admin/admin.php:652
522
  msgid "Exclude display of related posts on these posts / pages"
523
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
524
 
525
- #: admin/admin.php:659
526
  #, fuzzy
527
  msgid "Customise the list HTML"
528
  msgstr "Sredite output:"
529
 
530
- #: admin/admin.php:662
531
  msgid "HTML to display before the list of posts: "
532
  msgstr "HTML tza prikaz pre liste postova:"
533
 
534
- #: admin/admin.php:668
535
  msgid "HTML to display before each list item: "
536
  msgstr "HTML za prikaz svake stavke sa liste:"
537
 
538
- #: admin/admin.php:674
539
  msgid "HTML to display after each list item: "
540
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
541
 
542
- #: admin/admin.php:680
543
  msgid "HTML to display after the list of posts: "
544
  msgstr "HTML za prikaz posle liste postova:"
545
 
546
- #: admin/admin.php:721
547
  msgid "Location of post thumbnail:"
548
  msgstr "Lokacija posta thumbnaila:"
549
 
550
- #: admin/admin.php:725
551
  msgid "Display thumbnails inline with posts, before title"
552
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
553
 
554
- #: admin/admin.php:730
555
  msgid "Display thumbnails inline with posts, after title"
556
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
557
 
558
- #: admin/admin.php:735
559
  msgid "Display only thumbnails, no text"
560
  msgstr "Prikaži samo thumbnails, bez teksta"
561
 
562
- #: admin/admin.php:740
563
  msgid "Do not display thumbnails, only text."
564
  msgstr "Ne prikazujte thumbnails, samo tekst"
565
 
566
- #: admin/admin.php:744
 
 
 
 
 
 
567
  msgid "Thumbnail size:"
568
  msgstr ""
569
 
570
- #: admin/admin.php:768
571
  msgid "Custom size"
572
  msgstr ""
573
 
574
- #: admin/admin.php:771
575
  msgid ""
576
  "You can choose from existing image sizes above or create a custom size. If "
577
  "you have chosen Custom size above, then enter the width, height and crop "
578
  "settings below. For best results, use a cropped image."
579
  msgstr ""
580
 
581
- #: admin/admin.php:772
582
  msgid ""
583
  "If you change the width and/or height below, existing images will not be "
584
  "automatically resized."
585
  msgstr ""
586
 
587
- #: admin/admin.php:773
588
  #, php-format
589
  msgid ""
590
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
591
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
592
- "regenerate all image sizes."
593
  msgstr ""
594
 
595
- #: admin/admin.php:776
596
  msgid "Width of custom thumbnail:"
597
  msgstr ""
598
 
599
- #: admin/admin.php:781
600
  msgid "Height of custom thumbnail"
601
  msgstr ""
602
 
603
- #: admin/admin.php:786
604
  msgid "Crop mode:"
605
  msgstr ""
606
 
607
- #: admin/admin.php:790
608
  msgid ""
609
  "By default, thumbnails will be proportionately cropped. Check this box to "
610
  "hard crop the thumbnails."
611
  msgstr ""
612
 
613
- #: admin/admin.php:791
614
  #, php-format
615
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
616
  msgstr ""
617
 
618
- #: admin/admin.php:793
619
  msgid ""
620
- "Since you're using the default styles set under the Custom Styles section, "
621
- "the width and height is fixed at 65px and crop mode is enabled."
622
  msgstr ""
623
 
624
- #: admin/admin.php:798
625
  msgid "Style attributes / Width and Height HTML attributes:"
626
  msgstr "Stil atributa /širina i visina HTML atributa:"
627
 
628
- #: admin/admin.php:802
629
  #, fuzzy
630
  msgid "Style attributes are used for width and height."
631
  msgstr ""
632
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
633
 
634
- #: admin/admin.php:807
635
  #, fuzzy
636
  msgid "HTML width and height attributes are used for width and height."
637
  msgstr ""
638
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
639
 
640
- #: admin/admin.php:811
641
- msgid "Use timthumb to generate thumbnails? "
642
- msgstr "Upotreba timthumb za generisanja thumbnails?"
643
-
644
- #: admin/admin.php:814
645
- #, fuzzy
646
- msgid ""
647
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
648
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
649
- msgstr ""
650
- "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
651
- "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
652
-
653
- #: admin/admin.php:817
654
- msgid "Quality of thumbnails generated by timthumb:"
655
- msgstr ""
656
-
657
- #: admin/admin.php:820
658
- msgid ""
659
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
660
- "file size. Suggested maximum value is 95. Default is 75."
661
- msgstr ""
662
-
663
- #: admin/admin.php:823
664
  #, fuzzy
665
  msgid "Post thumbnail meta field name: "
666
  msgstr "Options thumbnail des messages:"
667
 
668
- #: admin/admin.php:826
669
  msgid ""
670
  "The value of this field should contain the image source and is set in the "
671
  "<em>Add New Post</em> screen"
@@ -673,7 +663,7 @@ msgstr ""
673
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
674
  "<em>Add New Post</em> ekranu"
675
 
676
- #: admin/admin.php:829
677
  #, fuzzy
678
  msgid ""
679
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -684,7 +674,7 @@ msgstr ""
684
  "première image de la résolution correspondante du fichier est de taille "
685
  "supérieure"
686
 
687
- #: admin/admin.php:832
688
  #, fuzzy
689
  msgid ""
690
  "This could slow down the loading of your page if the first image in the "
@@ -695,11 +685,11 @@ msgstr ""
695
  "première image de la résolution correspondante du fichier est de taille "
696
  "supérieure"
697
 
698
- #: admin/admin.php:835
699
  msgid "Use default thumbnail? "
700
  msgstr "Koristite default thumbnail?"
701
 
702
- #: admin/admin.php:838
703
  msgid ""
704
  "If checked, when no thumbnail is found, show a default one from the URL "
705
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -707,11 +697,11 @@ msgstr ""
707
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
708
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
709
 
710
- #: admin/admin.php:841
711
  msgid "Default thumbnail: "
712
  msgstr "Default thumbnail:"
713
 
714
- #: admin/admin.php:845
715
  msgid ""
716
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
717
  "then it will check the meta field. If this is not available, then it will "
@@ -721,39 +711,39 @@ msgstr ""
721
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
722
  "sliku kao što je odredjeno iznad"
723
 
724
- #: admin/admin.php:869
725
  #, fuzzy
726
  msgid "Custom CSS"
727
  msgstr "Custom stilovi"
728
 
729
- #: admin/admin.php:884
730
  msgid "Use default style included in the plugin?"
731
  msgstr ""
732
 
733
- #: admin/admin.php:887
734
  msgid ""
735
  "Top 10 includes a default style that makes your popular posts list to look "
736
  "beautiful. Check the box above if you want to use this."
737
  msgstr ""
738
 
739
- #: admin/admin.php:888
740
  msgid ""
741
  "Enabling this option will turn on the thumbnails and set their width and "
742
  "height to 65px. It will also turn off the display of the author, excerpt and "
743
  "date if already enabled. Disabling this option will not revert any settings."
744
  msgstr ""
745
 
746
- #: admin/admin.php:889
747
  #, php-format
748
  msgid ""
749
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
750
  msgstr ""
751
 
752
- #: admin/admin.php:892
753
  msgid "Custom CSS to add to header:"
754
  msgstr "Custom CSS je dodat header-u"
755
 
756
- #: admin/admin.php:897
757
  msgid ""
758
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
759
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
@@ -763,16 +753,16 @@ msgstr ""
763
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
764
  "dostupne CSS klase za stilizovanje."
765
 
766
- #: admin/admin.php:917
767
  #, fuzzy
768
  msgid "Default Options"
769
  msgstr "Paramètres de sortie"
770
 
771
- #: admin/admin.php:917
772
  msgid "Do you want to set options to Default?"
773
  msgstr "Da li želite da postavite opcije na Default?"
774
 
775
- #: admin/admin.php:941
776
  #, fuzzy
777
  msgid ""
778
  "Over time the Daily Top 10 database grows in size, which reduces the "
@@ -784,7 +774,7 @@ msgstr ""
784
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
785
  "performanse naročito na blogovima sa velikim saobraćajem."
786
 
787
- #: admin/admin.php:942
788
  #, fuzzy
789
  msgid ""
790
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
@@ -794,61 +784,61 @@ msgstr ""
794
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
795
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
796
 
797
- #: admin/admin.php:945
798
  msgid "Enable scheduled maintenance of daily tables:"
799
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
800
 
801
- #: admin/admin.php:949
802
  msgid "Time to run maintenance"
803
  msgstr "Pokrenuti održavanje"
804
 
805
- #: admin/admin.php:950
806
  msgid "hrs"
807
  msgstr ""
808
 
809
- #: admin/admin.php:950
810
  msgid "min"
811
  msgstr ""
812
 
813
- #: admin/admin.php:952
814
  msgid "How often should the maintenance be run:"
815
  msgstr "Održavanje ne treba često da se pokreće"
816
 
817
- #: admin/admin.php:956
818
  msgid "Daily"
819
  msgstr "Dnevno"
820
 
821
- #: admin/admin.php:960
822
  msgid "Weekly"
823
  msgstr "Nedeljno"
824
 
825
- #: admin/admin.php:964
826
  msgid "Fortnightly"
827
  msgstr "Na dve nedelje"
828
 
829
- #: admin/admin.php:968
830
  msgid "Monthly"
831
  msgstr "Mesečno"
832
 
833
- #: admin/admin.php:977
834
  msgid "The cron job has been scheduled. Maintenance will run "
835
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
836
 
837
- #: admin/admin.php:982
838
  msgid "The cron job is missing. Please resave this page to add the job"
839
  msgstr ""
840
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
841
  "dodali posao"
842
 
843
- #: admin/admin.php:987
844
  msgid "Maintenance is turned off"
845
  msgstr "Održavanje je ugašeno"
846
 
847
- #: admin/admin.php:1001
848
- msgid "Reset count"
849
- msgstr "Resetuj brojanje"
850
 
851
- #: admin/admin.php:1004
852
  msgid ""
853
  "This cannot be reversed. Make sure that your database has been backed up "
854
  "before proceeding"
@@ -856,168 +846,186 @@ msgstr ""
856
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
857
  "back up-u pre nego što nastavite"
858
 
859
- #: admin/admin.php:1007
860
  #, fuzzy
861
  msgid "Reset Popular Posts"
862
  msgstr "Postes populaires"
863
 
864
- #: admin/admin.php:1007
865
  msgid "Are you sure you want to reset the popular posts?"
866
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
867
 
868
- #: admin/admin.php:1008
869
  #, fuzzy
870
  msgid "Reset Daily Popular Posts"
871
  msgstr "Postes populaires journaliers"
872
 
873
- #: admin/admin.php:1008
874
  msgid "Are you sure you want to reset the daily popular posts?"
875
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
876
 
877
- #: admin/admin.php:1009
878
- msgid "Clear duplicates"
879
- msgstr "Obrišite duplikate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
880
 
881
- #: admin/admin.php:1009
882
  msgid "This will delete the duplicate entries in the tables. Proceed?"
883
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
884
 
885
- #: admin/admin.php:1022
886
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
887
  msgstr ""
888
 
889
- #: admin/admin.php:1025
890
  msgid ""
891
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
892
  "activate the plugin independently for each site. This would have resulted in "
893
  "two tables being created for each site in the network."
894
  msgstr ""
895
 
896
- #: admin/admin.php:1026
897
  msgid ""
898
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
899
  "your database clean. You can use this tool to import the recorded counts "
900
  "from v1.x tables to the new v2.x table format."
901
  msgstr ""
902
 
903
- #: admin/admin.php:1029
904
  msgid ""
905
  "If you do not see any tables below, then it means that either all data has "
906
  "already been imported or no relevant information has been found."
907
  msgstr ""
908
 
909
- #: admin/admin.php:1032
910
  msgid ""
911
  "After running the importer, please verify that all the counts have been "
912
  "successfully imported. Only then should you delete any old tables!"
913
  msgstr ""
914
 
915
- #: admin/admin.php:1066
916
  msgid "Blog ID"
917
  msgstr ""
918
 
919
- #: admin/admin.php:1069
920
  msgid "Status"
921
  msgstr ""
922
 
923
- #: admin/admin.php:1072
924
  msgid "Select to import"
925
  msgstr ""
926
 
927
- #: admin/admin.php:1082
928
  msgid "Blog #"
929
  msgstr ""
930
 
931
- #: admin/admin.php:1092
932
  msgid "Not imported"
933
  msgstr ""
934
 
935
- #: admin/admin.php:1096
936
  msgid "Imported"
937
  msgstr ""
938
 
939
- #: admin/admin.php:1117
940
  msgid "Begin import"
941
  msgstr ""
942
 
943
- #: admin/admin.php:1118
944
  msgid "Delete selected tables"
945
  msgstr ""
946
 
947
- #: admin/admin.php:1119
948
  msgid "Delete all imported tables"
949
  msgstr ""
950
 
951
- #: admin/admin.php:1176 admin/admin.php:1272
952
  msgid "Daily Popular Posts"
953
  msgstr "Dnevni popularni postovi"
954
 
955
- #: admin/admin.php:1206
956
  msgid "Support the development"
957
  msgstr "Podrška razvoju"
958
 
959
- #: admin/admin.php:1213
960
  msgid "Donation for Top 10"
961
  msgstr ""
962
 
963
- #: admin/admin.php:1215
964
  msgid "Enter amount in USD: "
965
  msgstr "Unesite veličinu u USD:"
966
 
967
- #: admin/admin.php:1219
968
  #, fuzzy
969
  msgid "Send your donation to the author of Top 10"
970
  msgstr "Pošalji vašu donaciju autoru"
971
 
972
- #: admin/admin.php:1226
973
  #, fuzzy
974
  msgid "Follow me"
975
  msgstr "Pratite nas"
976
 
977
- #: admin/admin.php:1236
978
  #, fuzzy
979
  msgid "Quick links"
980
  msgstr "Liens rapides"
981
 
982
- #: admin/admin.php:1240
983
  #, fuzzy
984
  msgid "Top 10 plugin page"
985
  msgstr "Page de plugin"
986
 
987
- #: admin/admin.php:1241
988
  msgid "Top 10 Github page"
989
  msgstr ""
990
 
991
- #: admin/admin.php:1242
992
  msgid "Other plugins"
993
  msgstr "Brzi linkovi"
994
 
995
- #: admin/admin.php:1243
996
  msgid "Ajay's blog"
997
  msgstr "Ajayov blog"
998
 
999
- #: admin/admin.php:1244
1000
  msgid "FAQ"
1001
  msgstr ""
1002
 
1003
- #: admin/admin.php:1245 admin/admin.php:1403
1004
  msgid "Support"
1005
  msgstr "Podrška"
1006
 
1007
- #: admin/admin.php:1246
1008
  msgid "Reviews"
1009
  msgstr ""
1010
 
1011
- #: admin/admin.php:1269
1012
  #, fuzzy
1013
  msgid "Overall Popular Posts"
1014
  msgstr "Voir tous les postes populaires"
1015
 
1016
- #: admin/admin.php:1380
1017
  msgid "Settings"
1018
  msgstr "Postavke"
1019
 
1020
- #: admin/admin.php:1404
1021
  msgid "Donate"
1022
  msgstr "Donirajte"
1023
 
@@ -1031,122 +1039,171 @@ msgstr "Postes populaires"
1031
  msgid "Display popular posts"
1032
  msgstr "Dnevni popularni postovi"
1033
 
1034
- #: includes/class-top-10-widget.php:59
1035
  msgid "Title"
1036
  msgstr "Naslov"
1037
 
1038
- #: includes/class-top-10-widget.php:64
1039
  msgid "No. of posts"
1040
  msgstr "Broj postova"
1041
 
1042
- #: includes/class-top-10-widget.php:69
1043
  msgid "Overall"
1044
  msgstr "Sve ukupno"
1045
 
1046
- #: includes/class-top-10-widget.php:70
1047
  msgid "Custom time period (Enter below)"
1048
  msgstr "Vremenski period (unesite ispod)"
1049
 
1050
- #: includes/class-top-10-widget.php:74
1051
  msgid "In days and hours (applies only to custom option above)"
1052
  msgstr ""
1053
 
1054
- #: includes/class-top-10-widget.php:76
1055
  msgid "days"
1056
  msgstr ""
1057
 
1058
- #: includes/class-top-10-widget.php:79
1059
  msgid "hours"
1060
  msgstr ""
1061
 
1062
- #: includes/class-top-10-widget.php:84
1063
  #, fuzzy
1064
  msgid "Show count?"
1065
  msgstr "Prikaži autora?"
1066
 
1067
- #: includes/class-top-10-widget.php:89
1068
  #, fuzzy
1069
  msgid "Show excerpt?"
1070
  msgstr "Afficher le fragment du message dans la liste?"
1071
 
1072
- #: includes/class-top-10-widget.php:94
1073
  #, fuzzy
1074
  msgid "Show author?"
1075
  msgstr "Prikaži autora?"
1076
 
1077
- #: includes/class-top-10-widget.php:99
1078
  #, fuzzy
1079
  msgid "Show date?"
1080
  msgstr "Afficher le fragment du message dans la liste?"
1081
 
1082
- #: includes/class-top-10-widget.php:105
1083
  #, fuzzy
1084
  msgid "Thumbnails inline, before title"
1085
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
1086
 
1087
- #: includes/class-top-10-widget.php:106
1088
  #, fuzzy
1089
  msgid "Thumbnails inline, after title"
1090
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
1091
 
1092
- #: includes/class-top-10-widget.php:107
1093
  #, fuzzy
1094
  msgid "Only thumbnails, no text"
1095
  msgstr "Afficher uniquement le thumbnail, sans le texte"
1096
 
1097
- #: includes/class-top-10-widget.php:108
1098
  #, fuzzy
1099
  msgid "No thumbnails, only text."
1100
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
1101
 
1102
- #: includes/class-top-10-widget.php:113
1103
  #, fuzzy
1104
  msgid "Thumbnail height"
1105
  msgstr "Options thumbnail des messages:"
1106
 
1107
- #: includes/class-top-10-widget.php:118
1108
  #, fuzzy
1109
  msgid "Thumbnail width"
1110
  msgstr "Options thumbnail des messages:"
1111
 
1112
- #: top-10.php:879
 
 
 
 
1113
  msgid " by "
1114
  msgstr ""
1115
 
1116
- #: top-10.php:930
1117
  #, php-format
1118
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1119
  msgstr ""
1120
 
1121
- #: top-10.php:1029
1122
  msgid "<h3>Popular Posts</h3>"
1123
  msgstr "<h3>Popularni Postovi</h3>"
1124
 
1125
- #: top-10.php:1030
1126
  msgid "<h3>Daily Popular</h3>"
1127
  msgstr "<h3>Dnevni popularni</h3>"
1128
 
1129
- #: top-10.php:1031
1130
  #, fuzzy
1131
  msgid "No top posts yet"
1132
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1133
 
1134
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1135
  msgid "Once Weekly"
1136
  msgstr "Jednom nedeljno"
1137
 
1138
- #: top-10.php:1694
1139
  msgid "Once Fortnightly"
1140
  msgstr "Jednom u dve nedelje"
1141
 
1142
- #: top-10.php:1698
1143
  msgid "Once Monthly"
1144
  msgstr "Jednom mesečno"
1145
 
1146
- #: top-10.php:1702
1147
  msgid "Once quarterly"
1148
  msgstr ""
1149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1150
  #~ msgid "W3 Total Cache fix:"
1151
  #~ msgstr "W3 Total Cache fix:"
1152
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:47-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"
61
  msgid "Next"
62
  msgstr "Sledeći"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Popularni postovi"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Dnevno popularno"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Top 10"
75
 
100
  msgid "The URL above is saved in the meta field: "
101
  msgstr ""
102
 
103
+ #: admin/admin.php:171
104
  msgid "Options saved successfully."
105
  msgstr "Opcije uspešno sašuvane"
106
 
107
+ #: admin/admin.php:174
108
+ msgid ""
109
+ "Default styles selected. Thumbnail width, height and crop settings have been "
110
+ "fixed. Author, Excerpt and Date will not be displayed."
111
+ msgstr ""
112
+
113
+ #: admin/admin.php:190
114
  msgid "Options set to Default."
115
  msgstr "Opcije podešene po Default-u."
116
 
117
+ #: admin/admin.php:197
118
  msgid "Top 10 popular posts reset"
119
  msgstr "Resetuj Top 10 popularnih postova"
120
 
121
+ #: admin/admin.php:204
122
  msgid "Top 10 daily popular posts reset"
123
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
124
 
125
+ #: admin/admin.php:212
126
  msgid "Duplicate rows cleaned from tables"
127
  msgstr "Umnoži redove očišćene sa tabela"
128
 
129
+ #: admin/admin.php:220
130
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
131
+ msgstr ""
132
+
133
+ #: admin/admin.php:233
134
  msgid "Scheduled maintenance enabled / modified"
135
  msgstr "Raspored održavanja omogućen modifikovan"
136
 
137
+ #: admin/admin.php:237
138
  msgid "Scheduled maintenance disabled"
139
  msgstr "Raspoed održavanja onemogućen"
140
 
141
+ #: admin/admin.php:276
142
  msgid "Counts from selected sites have been imported."
143
  msgstr ""
144
 
145
+ #: admin/admin.php:301
146
  msgid ""
147
  "Selected tables have been deleted. Note that only imported tables have been "
148
  "deleted."
149
  msgstr ""
150
 
151
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
152
  #, fuzzy
153
  msgid "Top 10 Settings"
154
  msgstr "Paramètres"
155
 
156
+ #: admin/admin.php:321 admin/admin.php:343
157
  msgid "General options"
158
  msgstr "Opšta pitanja"
159
 
160
+ #: admin/admin.php:322 admin/admin.php:435
161
  msgid "Counter and tracker options"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:323 admin/admin.php:540
165
  msgid "Popular post list options"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:324 admin/admin.php:742
169
+ #: includes/class-top-10-widget.php:115
170
  #, fuzzy
171
  msgid "Thumbnail options"
172
  msgstr "Options thumbnail des messages:"
173
 
174
+ #: admin/admin.php:325
175
  msgid "Custom styles"
176
  msgstr ""
177
 
178
+ #: admin/admin.php:326 admin/admin.php:966
179
  msgid "Maintenance"
180
  msgstr "Održavanje"
181
 
182
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
183
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
184
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
185
+ #: admin/admin.php:1269 admin/admin.php:1279
186
  msgid "Click to toggle"
187
  msgstr ""
188
 
189
+ #: admin/admin.php:359
190
  msgid "Enable Overall stats"
191
  msgstr "Omogući statistiku svega"
192
 
193
+ #: admin/admin.php:365
194
  msgid "Enable Daily stats"
195
  msgstr "Omogući dnevne statistike"
196
 
197
+ #: admin/admin.php:371
198
  msgid "Cache fix:"
199
  msgstr ""
200
 
201
+ #: admin/admin.php:374
202
  msgid ""
203
  "This will try to prevent W3 Total Cache and other caching plugins from "
204
  "caching the tracker script of the plugin. Try toggling this option in case "
205
  "you find that your posts are not tracked."
206
  msgstr ""
207
 
208
+ #: admin/admin.php:378
209
  msgid "Start daily counts from midnight:"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:381
213
  msgid ""
214
  "Daily counter will display number of visits from midnight. This option is "
215
  "checked by default and mimics the way most normal counters work. Turning "
216
  "this off will allow you to use the hourly setting in the next option."
217
  msgstr ""
218
 
219
+ #: admin/admin.php:385
220
  msgid "Daily popular contains top posts over:"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:387
224
  msgid "day(s)"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:388
228
  msgid "hour(s)"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:389
232
  msgid ""
233
  "Think of Daily Popular has a custom date range applied as a global setting. "
234
  "Instead of displaying popular posts from the past day, this setting lets you "
236
  "overridden in the widget."
237
  msgstr ""
238
 
239
+ #: admin/admin.php:393
240
  msgid "Delete options on uninstall"
241
  msgstr ""
242
 
243
+ #: admin/admin.php:396
244
  msgid ""
245
  "If this is checked, all settings related to Top 10 are removed from the "
246
  "database if you choose to uninstall/delete the plugin."
247
  msgstr ""
248
 
249
+ #: admin/admin.php:400
250
  msgid "Delete counter data on uninstall"
251
  msgstr ""
252
 
253
+ #: admin/admin.php:403
254
  msgid ""
255
  "If this is checked, the tables containing the counter statistics are removed "
256
  "from the database if you choose to uninstall/delete the plugin."
257
  msgstr ""
258
 
259
+ #: admin/admin.php:404
260
  msgid ""
261
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
262
  "lose your counter data."
263
  msgstr ""
264
 
265
+ #: admin/admin.php:408
266
  msgid "Link to Top 10 plugin page"
267
  msgstr "Povežite se na Top 10 plugin stranicu"
268
 
269
+ #: admin/admin.php:411
270
  #, fuzzy
271
  msgid ""
272
  "A link to the plugin is added as an extra list item to the list of popular "
276
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
277
  "mais nous vous y remercions!"
278
 
279
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
280
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
281
  #, fuzzy
282
  msgid "Save Options"
283
  msgstr "Options:"
284
 
285
+ #: admin/admin.php:451
286
  #, fuzzy
287
  msgid "Display number of views on:"
288
  msgstr "Afficher le nombre des visionnages du message?"
289
 
290
+ #: admin/admin.php:453
291
  msgid "Posts"
292
  msgstr "Postovi"
293
 
294
+ #: admin/admin.php:454
295
  #, fuzzy
296
  msgid "Pages"
297
  msgstr "Page"
298
 
299
+ #: admin/admin.php:455
300
  msgid "Home page"
301
  msgstr "Početna stranica"
302
 
303
+ #: admin/admin.php:456
304
  msgid "Feeds"
305
  msgstr "Feeds"
306
 
307
+ #: admin/admin.php:457
308
  msgid "Category archives"
309
  msgstr "Kategorija arhiva"
310
 
311
+ #: admin/admin.php:458
312
  msgid "Tag archives"
313
  msgstr "Tag arhiva"
314
 
315
+ #: admin/admin.php:459
316
  msgid "Other archives"
317
  msgstr "Druge arhive"
318
 
319
+ #: admin/admin.php:460
320
  #, fuzzy
321
  msgid ""
322
  "If you choose to disable this, please add <code>&lt;?php if "
327
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
328
  "template fajlu gde želite da bude prikazano. "
329
 
330
+ #: admin/admin.php:464
331
  #, fuzzy
332
  msgid "Format to display the post views:"
333
  msgstr "Format za prikaz brojanja u:"
334
 
335
+ #: admin/admin.php:467
336
  msgid ""
337
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
338
  "%</code> to display the daily count and <code>%overallcount%</code> to "
340
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:471
344
  msgid "What do display when there are no visits?"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:474
348
  msgid ""
349
  "This text applies only when there are 0 hits for the post and it isn't a "
350
  "single page. e.g. if you display post views on the homepage or archives then "
352
  "option."
353
  msgstr ""
354
 
355
+ #: admin/admin.php:478
356
  msgid "Always display latest post count"
357
  msgstr "Uvek prikaži posldenje brojanje posta"
358
 
359
+ #: admin/admin.php:481
360
  #, fuzzy
361
  msgid ""
362
  "This option uses JavaScript and will increase your page load time. Turn this "
369
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
370
  "se podese na ovom ekranu."
371
 
372
+ #: admin/admin.php:485
373
  msgid "Track visits of authors on their own posts?"
374
  msgstr ""
375
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
376
  "posete autora na njihovim postovima?"
377
 
378
+ #: admin/admin.php:488
379
  msgid ""
380
  "Disabling this option will stop authors visits tracked on their own posts"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:492
384
  #, fuzzy
385
  msgid "Track visits of admins?"
386
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
387
 
388
+ #: admin/admin.php:495
389
  msgid "Disabling this option will stop admin visits being tracked."
390
  msgstr ""
391
 
392
+ #: admin/admin.php:499
393
  #, fuzzy
394
  msgid "Track visits of Editors?"
395
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
396
 
397
+ #: admin/admin.php:502
398
  msgid "Disabling this option will stop editor visits being tracked."
399
  msgstr ""
400
 
401
+ #: admin/admin.php:506
402
  #, fuzzy
403
  msgid "Display page views on Posts and Pages in Admin"
404
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
405
 
406
+ #: admin/admin.php:509
407
  msgid ""
408
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
409
  "and All Pages"
410
  msgstr ""
411
 
412
+ #: admin/admin.php:513
413
  #, fuzzy
414
  msgid "Show number of views to non-admins"
415
  msgstr "Afficher le nombre des visionnages sur les pages?"
416
 
417
+ #: admin/admin.php:516
418
  msgid ""
419
  "If you disable this then non-admins won't see the above columns or view the "
420
  "independent pages with the top posts"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:556
424
  msgid "Number of popular posts to display: "
425
  msgstr "Broj popularnih postova za prikaz."
426
 
427
+ #: admin/admin.php:559
428
  msgid ""
429
  "Maximum number of posts that will be displayed in the list. This option is "
430
  "used if you don't specify the number of posts in the widget or shortcodes"
431
  msgstr ""
432
 
433
+ #: admin/admin.php:563
434
  msgid "Post types to include in results (including custom post types)"
435
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
436
 
437
+ #: admin/admin.php:577
438
  msgid "List of post or page IDs to exclude from the results: "
439
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
440
 
441
+ #: admin/admin.php:579 admin/admin.php:691
442
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
443
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
444
 
445
+ #: admin/admin.php:583
446
  msgid "Exclude Categories: "
447
  msgstr "Isključene kategorije"
448
 
449
+ #: admin/admin.php:598
450
  msgid ""
451
  "Comma separated list of category slugs. The field above has an autocomplete "
452
  "so simply start typing in the starting letters and it will prompt you with "
455
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
456
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
457
 
458
+ #: admin/admin.php:603
459
  msgid "Title of popular posts: "
460
  msgstr "Naslov popularnih postova:"
461
 
462
+ #: admin/admin.php:609
463
  msgid "Title of daily popular posts: "
464
  msgstr "Naslov popularnih dnevnih postova:"
465
 
466
+ #: admin/admin.php:615
467
  msgid "When there are no posts, what should be shown?"
468
  msgstr "Kada nema postova šta da prikažemo?"
469
 
470
+ #: admin/admin.php:619
471
  msgid "Blank Output"
472
  msgstr "Prazan izlaz"
473
 
474
+ #: admin/admin.php:623
475
  msgid "Display:"
476
  msgstr "Prikaz:"
477
 
478
+ #: admin/admin.php:628
479
  msgid "Show post excerpt in list?"
480
  msgstr "Pokaži post izvoda na listi?"
481
 
482
+ #: admin/admin.php:633
483
+ msgid ""
484
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
485
+ msgstr ""
486
+
487
+ #: admin/admin.php:638
488
  msgid "Length of excerpt (in words): "
489
  msgstr "Dužina izvoda (u rečima):"
490
 
491
+ #: admin/admin.php:644
492
  #, fuzzy
493
  msgid "Show post author in list?"
494
  msgstr "Afficher le fragment du message dans la liste?"
495
 
496
+ #: admin/admin.php:649
497
+ msgid ""
498
+ "Default style selected under the Custom Styles. Author display is disabled."
499
+ msgstr ""
500
+
501
+ #: admin/admin.php:654
502
  #, fuzzy
503
  msgid "Show post date in list?"
504
  msgstr "Afficher le fragment du message dans la liste?"
505
 
506
+ #: admin/admin.php:659
507
+ msgid ""
508
+ "Default style selected under the Custom Styles. Date display is disabled."
509
+ msgstr ""
510
+
511
+ #: admin/admin.php:664
512
  msgid "Limit post title length (in characters)"
513
  msgstr "Limit dužine postova naslova (u karakterima)"
514
 
515
+ #: admin/admin.php:670
516
  #, fuzzy
517
  msgid "Show view count in list?"
518
  msgstr "Afficher le fragment du message dans la liste?"
519
 
520
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
521
  msgid "Open links in new window"
522
  msgstr "Otvori linkove u novim prozorima"
523
 
524
+ #: admin/admin.php:682
525
  msgid "Add nofollow attribute to links in the list"
526
  msgstr "Dodaj nofollow atribut linkovima u listi"
527
 
528
+ #: admin/admin.php:688
529
  msgid "Exclude display of related posts on these posts / pages"
530
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
531
 
532
+ #: admin/admin.php:695
533
  #, fuzzy
534
  msgid "Customise the list HTML"
535
  msgstr "Sredite output:"
536
 
537
+ #: admin/admin.php:698
538
  msgid "HTML to display before the list of posts: "
539
  msgstr "HTML tza prikaz pre liste postova:"
540
 
541
+ #: admin/admin.php:704
542
  msgid "HTML to display before each list item: "
543
  msgstr "HTML za prikaz svake stavke sa liste:"
544
 
545
+ #: admin/admin.php:710
546
  msgid "HTML to display after each list item: "
547
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
548
 
549
+ #: admin/admin.php:716
550
  msgid "HTML to display after the list of posts: "
551
  msgstr "HTML za prikaz posle liste postova:"
552
 
553
+ #: admin/admin.php:757
554
  msgid "Location of post thumbnail:"
555
  msgstr "Lokacija posta thumbnaila:"
556
 
557
+ #: admin/admin.php:761
558
  msgid "Display thumbnails inline with posts, before title"
559
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
560
 
561
+ #: admin/admin.php:766
562
  msgid "Display thumbnails inline with posts, after title"
563
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
564
 
565
+ #: admin/admin.php:771
566
  msgid "Display only thumbnails, no text"
567
  msgstr "Prikaži samo thumbnails, bez teksta"
568
 
569
+ #: admin/admin.php:776
570
  msgid "Do not display thumbnails, only text."
571
  msgstr "Ne prikazujte thumbnails, samo tekst"
572
 
573
+ #: admin/admin.php:780
574
+ msgid ""
575
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
576
+ "to be inline before title"
577
+ msgstr ""
578
+
579
+ #: admin/admin.php:784
580
  msgid "Thumbnail size:"
581
  msgstr ""
582
 
583
+ #: admin/admin.php:808
584
  msgid "Custom size"
585
  msgstr ""
586
 
587
+ #: admin/admin.php:811
588
  msgid ""
589
  "You can choose from existing image sizes above or create a custom size. If "
590
  "you have chosen Custom size above, then enter the width, height and crop "
591
  "settings below. For best results, use a cropped image."
592
  msgstr ""
593
 
594
+ #: admin/admin.php:812
595
  msgid ""
596
  "If you change the width and/or height below, existing images will not be "
597
  "automatically resized."
598
  msgstr ""
599
 
600
+ #: admin/admin.php:813
601
  #, php-format
602
  msgid ""
603
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
604
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
605
+ "all image sizes."
606
  msgstr ""
607
 
608
+ #: admin/admin.php:816
609
  msgid "Width of custom thumbnail:"
610
  msgstr ""
611
 
612
+ #: admin/admin.php:821
613
  msgid "Height of custom thumbnail"
614
  msgstr ""
615
 
616
+ #: admin/admin.php:826
617
  msgid "Crop mode:"
618
  msgstr ""
619
 
620
+ #: admin/admin.php:830
621
  msgid ""
622
  "By default, thumbnails will be proportionately cropped. Check this box to "
623
  "hard crop the thumbnails."
624
  msgstr ""
625
 
626
+ #: admin/admin.php:831
627
  #, php-format
628
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
629
  msgstr ""
630
 
631
+ #: admin/admin.php:834
632
  msgid ""
633
+ "Default style selected under the Custom Styles. Thumbnail width and height "
634
+ "is fixed at 65px and crop mode is enabled."
635
  msgstr ""
636
 
637
+ #: admin/admin.php:839
638
  msgid "Style attributes / Width and Height HTML attributes:"
639
  msgstr "Stil atributa /širina i visina HTML atributa:"
640
 
641
+ #: admin/admin.php:843
642
  #, fuzzy
643
  msgid "Style attributes are used for width and height."
644
  msgstr ""
645
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
646
 
647
+ #: admin/admin.php:848
648
  #, fuzzy
649
  msgid "HTML width and height attributes are used for width and height."
650
  msgstr ""
651
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
652
 
653
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  #, fuzzy
655
  msgid "Post thumbnail meta field name: "
656
  msgstr "Options thumbnail des messages:"
657
 
658
+ #: admin/admin.php:855
659
  msgid ""
660
  "The value of this field should contain the image source and is set in the "
661
  "<em>Add New Post</em> screen"
663
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
664
  "<em>Add New Post</em> ekranu"
665
 
666
+ #: admin/admin.php:858
667
  #, fuzzy
668
  msgid ""
669
  "If the postmeta is not set, then should the plugin extract the first image "
674
  "première image de la résolution correspondante du fichier est de taille "
675
  "supérieure"
676
 
677
+ #: admin/admin.php:861
678
  #, fuzzy
679
  msgid ""
680
  "This could slow down the loading of your page if the first image in the "
685
  "première image de la résolution correspondante du fichier est de taille "
686
  "supérieure"
687
 
688
+ #: admin/admin.php:864
689
  msgid "Use default thumbnail? "
690
  msgstr "Koristite default thumbnail?"
691
 
692
+ #: admin/admin.php:867
693
  msgid ""
694
  "If checked, when no thumbnail is found, show a default one from the URL "
695
  "below. If not checked and no thumbnail is found, no image will be shown."
697
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
698
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
699
 
700
+ #: admin/admin.php:870
701
  msgid "Default thumbnail: "
702
  msgstr "Default thumbnail:"
703
 
704
+ #: admin/admin.php:874
705
  msgid ""
706
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
707
  "then it will check the meta field. If this is not available, then it will "
711
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
712
  "sliku kao što je odredjeno iznad"
713
 
714
+ #: admin/admin.php:898
715
  #, fuzzy
716
  msgid "Custom CSS"
717
  msgstr "Custom stilovi"
718
 
719
+ #: admin/admin.php:913
720
  msgid "Use default style included in the plugin?"
721
  msgstr ""
722
 
723
+ #: admin/admin.php:916
724
  msgid ""
725
  "Top 10 includes a default style that makes your popular posts list to look "
726
  "beautiful. Check the box above if you want to use this."
727
  msgstr ""
728
 
729
+ #: admin/admin.php:917
730
  msgid ""
731
  "Enabling this option will turn on the thumbnails and set their width and "
732
  "height to 65px. It will also turn off the display of the author, excerpt and "
733
  "date if already enabled. Disabling this option will not revert any settings."
734
  msgstr ""
735
 
736
+ #: admin/admin.php:918
737
  #, php-format
738
  msgid ""
739
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
740
  msgstr ""
741
 
742
+ #: admin/admin.php:921
743
  msgid "Custom CSS to add to header:"
744
  msgstr "Custom CSS je dodat header-u"
745
 
746
+ #: admin/admin.php:926
747
  msgid ""
748
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
749
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
753
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
754
  "dostupne CSS klase za stilizovanje."
755
 
756
+ #: admin/admin.php:946
757
  #, fuzzy
758
  msgid "Default Options"
759
  msgstr "Paramètres de sortie"
760
 
761
+ #: admin/admin.php:946
762
  msgid "Do you want to set options to Default?"
763
  msgstr "Da li želite da postavite opcije na Default?"
764
 
765
+ #: admin/admin.php:970
766
  #, fuzzy
767
  msgid ""
768
  "Over time the Daily Top 10 database grows in size, which reduces the "
774
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
775
  "performanse naročito na blogovima sa velikim saobraćajem."
776
 
777
+ #: admin/admin.php:971
778
  #, fuzzy
779
  msgid ""
780
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
784
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
785
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
786
 
787
+ #: admin/admin.php:974
788
  msgid "Enable scheduled maintenance of daily tables:"
789
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
790
 
791
+ #: admin/admin.php:978
792
  msgid "Time to run maintenance"
793
  msgstr "Pokrenuti održavanje"
794
 
795
+ #: admin/admin.php:979
796
  msgid "hrs"
797
  msgstr ""
798
 
799
+ #: admin/admin.php:979
800
  msgid "min"
801
  msgstr ""
802
 
803
+ #: admin/admin.php:981
804
  msgid "How often should the maintenance be run:"
805
  msgstr "Održavanje ne treba često da se pokreće"
806
 
807
+ #: admin/admin.php:985
808
  msgid "Daily"
809
  msgstr "Dnevno"
810
 
811
+ #: admin/admin.php:989
812
  msgid "Weekly"
813
  msgstr "Nedeljno"
814
 
815
+ #: admin/admin.php:993
816
  msgid "Fortnightly"
817
  msgstr "Na dve nedelje"
818
 
819
+ #: admin/admin.php:997
820
  msgid "Monthly"
821
  msgstr "Mesečno"
822
 
823
+ #: admin/admin.php:1006
824
  msgid "The cron job has been scheduled. Maintenance will run "
825
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
826
 
827
+ #: admin/admin.php:1011
828
  msgid "The cron job is missing. Please resave this page to add the job"
829
  msgstr ""
830
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
831
  "dodali posao"
832
 
833
+ #: admin/admin.php:1016
834
  msgid "Maintenance is turned off"
835
  msgstr "Održavanje je ugašeno"
836
 
837
+ #: admin/admin.php:1030
838
+ msgid "Reset count and other tools"
839
+ msgstr ""
840
 
841
+ #: admin/admin.php:1033
842
  msgid ""
843
  "This cannot be reversed. Make sure that your database has been backed up "
844
  "before proceeding"
846
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
847
  "back up-u pre nego što nastavite"
848
 
849
+ #: admin/admin.php:1036
850
  #, fuzzy
851
  msgid "Reset Popular Posts"
852
  msgstr "Postes populaires"
853
 
854
+ #: admin/admin.php:1036
855
  msgid "Are you sure you want to reset the popular posts?"
856
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
857
 
858
+ #: admin/admin.php:1037
859
  #, fuzzy
860
  msgid "Reset Daily Popular Posts"
861
  msgstr "Postes populaires journaliers"
862
 
863
+ #: admin/admin.php:1037
864
  msgid "Are you sure you want to reset the daily popular posts?"
865
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
866
 
867
+ #: admin/admin.php:1040
868
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
869
+ msgstr ""
870
+
871
+ #: admin/admin.php:1043
872
+ msgid "Merge blog ID 0 and 1 post counts"
873
+ msgstr ""
874
+
875
+ #: admin/admin.php:1043
876
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
877
+ msgstr ""
878
+
879
+ #: admin/admin.php:1046
880
+ msgid ""
881
+ "In older versions, the plugin created entries with duplicate post IDs. "
882
+ "Clicking the button below will merge these duplicate IDs"
883
+ msgstr ""
884
+
885
+ #: admin/admin.php:1049
886
+ msgid "Merge duplicates across blog IDs"
887
+ msgstr ""
888
 
889
+ #: admin/admin.php:1049
890
  msgid "This will delete the duplicate entries in the tables. Proceed?"
891
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
892
 
893
+ #: admin/admin.php:1066
894
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
895
  msgstr ""
896
 
897
+ #: admin/admin.php:1069
898
  msgid ""
899
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
900
  "activate the plugin independently for each site. This would have resulted in "
901
  "two tables being created for each site in the network."
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1070
905
  msgid ""
906
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
907
  "your database clean. You can use this tool to import the recorded counts "
908
  "from v1.x tables to the new v2.x table format."
909
  msgstr ""
910
 
911
+ #: admin/admin.php:1073
912
  msgid ""
913
  "If you do not see any tables below, then it means that either all data has "
914
  "already been imported or no relevant information has been found."
915
  msgstr ""
916
 
917
+ #: admin/admin.php:1076
918
  msgid ""
919
  "After running the importer, please verify that all the counts have been "
920
  "successfully imported. Only then should you delete any old tables!"
921
  msgstr ""
922
 
923
+ #: admin/admin.php:1110
924
  msgid "Blog ID"
925
  msgstr ""
926
 
927
+ #: admin/admin.php:1113
928
  msgid "Status"
929
  msgstr ""
930
 
931
+ #: admin/admin.php:1116
932
  msgid "Select to import"
933
  msgstr ""
934
 
935
+ #: admin/admin.php:1126
936
  msgid "Blog #"
937
  msgstr ""
938
 
939
+ #: admin/admin.php:1136
940
  msgid "Not imported"
941
  msgstr ""
942
 
943
+ #: admin/admin.php:1140
944
  msgid "Imported"
945
  msgstr ""
946
 
947
+ #: admin/admin.php:1161
948
  msgid "Begin import"
949
  msgstr ""
950
 
951
+ #: admin/admin.php:1162
952
  msgid "Delete selected tables"
953
  msgstr ""
954
 
955
+ #: admin/admin.php:1163
956
  msgid "Delete all imported tables"
957
  msgstr ""
958
 
959
+ #: admin/admin.php:1220 admin/admin.php:1316
960
  msgid "Daily Popular Posts"
961
  msgstr "Dnevni popularni postovi"
962
 
963
+ #: admin/admin.php:1250
964
  msgid "Support the development"
965
  msgstr "Podrška razvoju"
966
 
967
+ #: admin/admin.php:1257
968
  msgid "Donation for Top 10"
969
  msgstr ""
970
 
971
+ #: admin/admin.php:1259
972
  msgid "Enter amount in USD: "
973
  msgstr "Unesite veličinu u USD:"
974
 
975
+ #: admin/admin.php:1263
976
  #, fuzzy
977
  msgid "Send your donation to the author of Top 10"
978
  msgstr "Pošalji vašu donaciju autoru"
979
 
980
+ #: admin/admin.php:1270
981
  #, fuzzy
982
  msgid "Follow me"
983
  msgstr "Pratite nas"
984
 
985
+ #: admin/admin.php:1280
986
  #, fuzzy
987
  msgid "Quick links"
988
  msgstr "Liens rapides"
989
 
990
+ #: admin/admin.php:1284
991
  #, fuzzy
992
  msgid "Top 10 plugin page"
993
  msgstr "Page de plugin"
994
 
995
+ #: admin/admin.php:1285
996
  msgid "Top 10 Github page"
997
  msgstr ""
998
 
999
+ #: admin/admin.php:1286
1000
  msgid "Other plugins"
1001
  msgstr "Brzi linkovi"
1002
 
1003
+ #: admin/admin.php:1287
1004
  msgid "Ajay's blog"
1005
  msgstr "Ajayov blog"
1006
 
1007
+ #: admin/admin.php:1288
1008
  msgid "FAQ"
1009
  msgstr ""
1010
 
1011
+ #: admin/admin.php:1289 admin/admin.php:1451
1012
  msgid "Support"
1013
  msgstr "Podrška"
1014
 
1015
+ #: admin/admin.php:1290
1016
  msgid "Reviews"
1017
  msgstr ""
1018
 
1019
+ #: admin/admin.php:1313
1020
  #, fuzzy
1021
  msgid "Overall Popular Posts"
1022
  msgstr "Voir tous les postes populaires"
1023
 
1024
+ #: admin/admin.php:1428
1025
  msgid "Settings"
1026
  msgstr "Postavke"
1027
 
1028
+ #: admin/admin.php:1452
1029
  msgid "Donate"
1030
  msgstr "Donirajte"
1031
 
1039
  msgid "Display popular posts"
1040
  msgstr "Dnevni popularni postovi"
1041
 
1042
+ #: includes/class-top-10-widget.php:71
1043
  msgid "Title"
1044
  msgstr "Naslov"
1045
 
1046
+ #: includes/class-top-10-widget.php:76
1047
  msgid "No. of posts"
1048
  msgstr "Broj postova"
1049
 
1050
+ #: includes/class-top-10-widget.php:81
1051
  msgid "Overall"
1052
  msgstr "Sve ukupno"
1053
 
1054
+ #: includes/class-top-10-widget.php:82
1055
  msgid "Custom time period (Enter below)"
1056
  msgstr "Vremenski period (unesite ispod)"
1057
 
1058
+ #: includes/class-top-10-widget.php:86
1059
  msgid "In days and hours (applies only to custom option above)"
1060
  msgstr ""
1061
 
1062
+ #: includes/class-top-10-widget.php:88
1063
  msgid "days"
1064
  msgstr ""
1065
 
1066
+ #: includes/class-top-10-widget.php:91
1067
  msgid "hours"
1068
  msgstr ""
1069
 
1070
+ #: includes/class-top-10-widget.php:96
1071
  #, fuzzy
1072
  msgid "Show count?"
1073
  msgstr "Prikaži autora?"
1074
 
1075
+ #: includes/class-top-10-widget.php:101
1076
  #, fuzzy
1077
  msgid "Show excerpt?"
1078
  msgstr "Afficher le fragment du message dans la liste?"
1079
 
1080
+ #: includes/class-top-10-widget.php:106
1081
  #, fuzzy
1082
  msgid "Show author?"
1083
  msgstr "Prikaži autora?"
1084
 
1085
+ #: includes/class-top-10-widget.php:111
1086
  #, fuzzy
1087
  msgid "Show date?"
1088
  msgstr "Afficher le fragment du message dans la liste?"
1089
 
1090
+ #: includes/class-top-10-widget.php:117
1091
  #, fuzzy
1092
  msgid "Thumbnails inline, before title"
1093
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
1094
 
1095
+ #: includes/class-top-10-widget.php:118
1096
  #, fuzzy
1097
  msgid "Thumbnails inline, after title"
1098
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
1099
 
1100
+ #: includes/class-top-10-widget.php:119
1101
  #, fuzzy
1102
  msgid "Only thumbnails, no text"
1103
  msgstr "Afficher uniquement le thumbnail, sans le texte"
1104
 
1105
+ #: includes/class-top-10-widget.php:120
1106
  #, fuzzy
1107
  msgid "No thumbnails, only text."
1108
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
1109
 
1110
+ #: includes/class-top-10-widget.php:125
1111
  #, fuzzy
1112
  msgid "Thumbnail height"
1113
  msgstr "Options thumbnail des messages:"
1114
 
1115
+ #: includes/class-top-10-widget.php:131
1116
  #, fuzzy
1117
  msgid "Thumbnail width"
1118
  msgstr "Options thumbnail des messages:"
1119
 
1120
+ #: includes/class-top-10-widget.php:136
1121
+ msgid "Post types to include:"
1122
+ msgstr ""
1123
+
1124
+ #: top-10.php:756
1125
  msgid " by "
1126
  msgstr ""
1127
 
1128
+ #: top-10.php:823
1129
  #, php-format
1130
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1131
  msgstr ""
1132
 
1133
+ #: top-10.php:1113
1134
  msgid "<h3>Popular Posts</h3>"
1135
  msgstr "<h3>Popularni Postovi</h3>"
1136
 
1137
+ #: top-10.php:1114
1138
  msgid "<h3>Daily Popular</h3>"
1139
  msgstr "<h3>Dnevni popularni</h3>"
1140
 
1141
+ #: top-10.php:1115
1142
  #, fuzzy
1143
  msgid "No top posts yet"
1144
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
1145
 
1146
+ #: top-10.php:1507
1147
+ msgid "thumb_timthumb argument has been deprecated"
1148
+ msgstr ""
1149
+
1150
+ #: top-10.php:1511
1151
+ msgid "thumb_timthumb_q argument has been deprecated"
1152
+ msgstr ""
1153
+
1154
+ #: top-10.php:1515
1155
+ msgid "filter argument has been deprecated"
1156
+ msgstr ""
1157
+
1158
+ #: top-10.php:1853
1159
  msgid "Once Weekly"
1160
  msgstr "Jednom nedeljno"
1161
 
1162
+ #: top-10.php:1857
1163
  msgid "Once Fortnightly"
1164
  msgstr "Jednom u dve nedelje"
1165
 
1166
+ #: top-10.php:1861
1167
  msgid "Once Monthly"
1168
  msgstr "Jednom mesečno"
1169
 
1170
+ #: top-10.php:1865
1171
  msgid "Once quarterly"
1172
  msgstr ""
1173
 
1174
+ #, fuzzy
1175
+ #~ msgid "Always display latest post count in the daily lists?"
1176
+ #~ msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
1177
+
1178
+ #, fuzzy
1179
+ #~ msgid ""
1180
+ #~ "This option uses JavaScript and will increase your page load time. When "
1181
+ #~ "you enable this option, the daily widget will not use the options set "
1182
+ #~ "there, but options will need to be set on this screen."
1183
+ #~ msgstr ""
1184
+ #~ "Ovu opciju koristi JavaScript i povećaće vreme ušitavanje vaše stranice. "
1185
+ #~ "Ugasite ovo ako ne koristite caching pluginove ili se slažete sa "
1186
+ #~ "prikazivanjem starijih cache brojanja. Kada omogućite ovu opciju, dnevni "
1187
+ #~ "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati "
1188
+ #~ "da se podese na ovom ekranu."
1189
+
1190
+ #~ msgid "Use timthumb to generate thumbnails? "
1191
+ #~ msgstr "Upotreba timthumb za generisanja thumbnails?"
1192
+
1193
+ #, fuzzy
1194
+ #~ msgid ""
1195
+ #~ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
1196
+ #~ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
1197
+ #~ msgstr ""
1198
+ #~ "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
1199
+ #~ "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
1200
+
1201
+ #~ msgid "Reset count"
1202
+ #~ msgstr "Resetuj brojanje"
1203
+
1204
+ #~ msgid "Clear duplicates"
1205
+ #~ msgstr "Obrišite duplikate"
1206
+
1207
  #~ msgid "W3 Total Cache fix:"
1208
  #~ msgstr "W3 Total Cache fix:"
1209
 
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: 2015-01-03 01:53-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"
@@ -61,7 +61,7 @@ msgstr "Попередня сторінка"
61
  msgid "Next"
62
  msgstr "Наступна сторінка"
63
 
64
- #: admin/admin-dashboard.php:200 admin/admin.php:1174
65
  msgid "Popular Posts"
66
  msgstr "Популярні записи"
67
 
@@ -69,7 +69,7 @@ msgstr "Популярні записи"
69
  msgid "Daily Popular"
70
  msgstr "Популярні сьогодні записи"
71
 
72
- #: admin/admin-metabox.php:38 admin/admin.php:1263
73
  msgid "Top 10"
74
  msgstr "Топ 10 записів"
75
 
@@ -99,125 +99,135 @@ msgstr ""
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
- #: admin/admin.php:163
103
  msgid "Options saved successfully."
104
  msgstr "Установки збережені."
105
 
106
- #: admin/admin.php:173
 
 
 
 
 
 
107
  msgid "Options set to Default."
108
  msgstr "Установки скинуті."
109
 
110
- #: admin/admin.php:179
111
  msgid "Top 10 popular posts reset"
112
  msgstr "Скинути статистику найпопулярніших записів"
113
 
114
- #: admin/admin.php:185
115
  msgid "Top 10 daily popular posts reset"
116
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
117
 
118
- #: admin/admin.php:192
119
  msgid "Duplicate rows cleaned from tables"
120
  msgstr ""
121
 
122
- #: admin/admin.php:204
 
 
 
 
123
  msgid "Scheduled maintenance enabled / modified"
124
  msgstr ""
125
 
126
- #: admin/admin.php:208
127
  msgid "Scheduled maintenance disabled"
128
  msgstr ""
129
 
130
- #: admin/admin.php:247
131
  msgid "Counts from selected sites have been imported."
132
  msgstr ""
133
 
134
- #: admin/admin.php:272
135
  msgid ""
136
  "Selected tables have been deleted. Note that only imported tables have been "
137
  "deleted."
138
  msgstr ""
139
 
140
- #: admin/admin.php:280 admin/admin.php:1263 admin/admin.php:1266
141
  #, fuzzy
142
  msgid "Top 10 Settings"
143
  msgstr "Налаштування плагіна"
144
 
145
- #: admin/admin.php:292 admin/admin.php:314
146
  msgid "General options"
147
  msgstr ""
148
 
149
- #: admin/admin.php:293 admin/admin.php:406
150
  msgid "Counter and tracker options"
151
  msgstr ""
152
 
153
- #: admin/admin.php:294 admin/admin.php:511
154
  msgid "Popular post list options"
155
  msgstr ""
156
 
157
- #: admin/admin.php:295 admin/admin.php:706
158
- #: includes/class-top-10-widget.php:103
159
  #, fuzzy
160
  msgid "Thumbnail options"
161
  msgstr "Установки превью до записів:"
162
 
163
- #: admin/admin.php:296
164
  msgid "Custom styles"
165
  msgstr ""
166
 
167
- #: admin/admin.php:297 admin/admin.php:937
168
  msgid "Maintenance"
169
  msgstr ""
170
 
171
- #: admin/admin.php:313 admin/admin.php:405 admin/admin.php:510
172
- #: admin/admin.php:705 admin/admin.php:868 admin/admin.php:936
173
- #: admin/admin.php:1000 admin/admin.php:1021 admin/admin.php:1205
174
- #: admin/admin.php:1225 admin/admin.php:1235
175
  msgid "Click to toggle"
176
  msgstr ""
177
 
178
- #: admin/admin.php:330
179
  msgid "Enable Overall stats"
180
  msgstr ""
181
 
182
- #: admin/admin.php:336
183
  msgid "Enable Daily stats"
184
  msgstr ""
185
 
186
- #: admin/admin.php:342
187
  msgid "Cache fix:"
188
  msgstr ""
189
 
190
- #: admin/admin.php:345
191
  msgid ""
192
  "This will try to prevent W3 Total Cache and other caching plugins from "
193
  "caching the tracker script of the plugin. Try toggling this option in case "
194
  "you find that your posts are not tracked."
195
  msgstr ""
196
 
197
- #: admin/admin.php:349
198
  msgid "Start daily counts from midnight:"
199
  msgstr ""
200
 
201
- #: admin/admin.php:352
202
  msgid ""
203
  "Daily counter will display number of visits from midnight. This option is "
204
  "checked by default and mimics the way most normal counters work. Turning "
205
  "this off will allow you to use the hourly setting in the next option."
206
  msgstr ""
207
 
208
- #: admin/admin.php:356
209
  msgid "Daily popular contains top posts over:"
210
  msgstr ""
211
 
212
- #: admin/admin.php:358
213
  msgid "day(s)"
214
  msgstr ""
215
 
216
- #: admin/admin.php:359
217
  msgid "hour(s)"
218
  msgstr ""
219
 
220
- #: admin/admin.php:360
221
  msgid ""
222
  "Think of Daily Popular has a custom date range applied as a global setting. "
223
  "Instead of displaying popular posts from the past day, this setting lets you "
@@ -225,37 +235,37 @@ msgid ""
225
  "overridden in the widget."
226
  msgstr ""
227
 
228
- #: admin/admin.php:364
229
  msgid "Delete options on uninstall"
230
  msgstr ""
231
 
232
- #: admin/admin.php:367
233
  msgid ""
234
  "If this is checked, all settings related to Top 10 are removed from the "
235
  "database if you choose to uninstall/delete the plugin."
236
  msgstr ""
237
 
238
- #: admin/admin.php:371
239
  msgid "Delete counter data on uninstall"
240
  msgstr ""
241
 
242
- #: admin/admin.php:374
243
  msgid ""
244
  "If this is checked, the tables containing the counter statistics are removed "
245
  "from the database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
- #: admin/admin.php:375
249
  msgid ""
250
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
251
  "lose your counter data."
252
  msgstr ""
253
 
254
- #: admin/admin.php:379
255
  msgid "Link to Top 10 plugin page"
256
  msgstr ""
257
 
258
- #: admin/admin.php:382
259
  #, fuzzy
260
  msgid ""
261
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -264,61 +274,61 @@ msgstr ""
264
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
265
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
266
 
267
- #: admin/admin.php:387 admin/admin.php:492 admin/admin.php:687
268
- #: admin/admin.php:850 admin/admin.php:916 admin/admin.php:993
269
  #, fuzzy
270
  msgid "Save Options"
271
  msgstr "Установки плагіна:"
272
 
273
- #: admin/admin.php:422
274
  #, fuzzy
275
  msgid "Display number of views on:"
276
  msgstr "Показувати кількість переглядів запису?"
277
 
278
- #: admin/admin.php:424
279
  msgid "Posts"
280
  msgstr ""
281
 
282
- #: admin/admin.php:425
283
  #, fuzzy
284
  msgid "Pages"
285
  msgstr "Сторінка"
286
 
287
- #: admin/admin.php:426
288
  msgid "Home page"
289
  msgstr ""
290
 
291
- #: admin/admin.php:427
292
  msgid "Feeds"
293
  msgstr ""
294
 
295
- #: admin/admin.php:428
296
  msgid "Category archives"
297
  msgstr ""
298
 
299
- #: admin/admin.php:429
300
  msgid "Tag archives"
301
  msgstr ""
302
 
303
- #: admin/admin.php:430
304
  msgid "Other archives"
305
  msgstr ""
306
 
307
- #: admin/admin.php:431
308
  msgid ""
309
  "If you choose to disable this, please add <code>&lt;?php if "
310
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
311
  "</code> to your template file where you want it displayed"
312
  msgstr ""
313
 
314
- #: admin/admin.php:435
315
  #, fuzzy
316
  msgid "Format to display the post views:"
317
  msgstr ""
318
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
319
  "за день, за весь час для записів/сторінок:"
320
 
321
- #: admin/admin.php:438
322
  msgid ""
323
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
324
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -326,11 +336,11 @@ msgid ""
326
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
327
  msgstr ""
328
 
329
- #: admin/admin.php:442
330
  msgid "What do display when there are no visits?"
331
  msgstr ""
332
 
333
- #: admin/admin.php:445
334
  msgid ""
335
  "This text applies only when there are 0 hits for the post and it isn't a "
336
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -338,313 +348,303 @@ msgid ""
338
  "option."
339
  msgstr ""
340
 
341
- #: admin/admin.php:449
342
  msgid "Always display latest post count"
343
  msgstr ""
344
 
345
- #: admin/admin.php:452
346
  msgid ""
347
  "This option uses JavaScript and will increase your page load time. Turn this "
348
  "off if you are not using caching plugins or are OK with displaying older "
349
  "cached counts."
350
  msgstr ""
351
 
352
- #: admin/admin.php:456
353
  msgid "Track visits of authors on their own posts?"
354
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
355
 
356
- #: admin/admin.php:459
357
  msgid ""
358
  "Disabling this option will stop authors visits tracked on their own posts"
359
  msgstr ""
360
 
361
- #: admin/admin.php:463
362
  #, fuzzy
363
  msgid "Track visits of admins?"
364
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
365
 
366
- #: admin/admin.php:466
367
  msgid "Disabling this option will stop admin visits being tracked."
368
  msgstr ""
369
 
370
- #: admin/admin.php:470
371
  #, fuzzy
372
  msgid "Track visits of Editors?"
373
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
374
 
375
- #: admin/admin.php:473
376
  msgid "Disabling this option will stop editor visits being tracked."
377
  msgstr ""
378
 
379
- #: admin/admin.php:477
380
  msgid "Display page views on Posts and Pages in Admin"
381
  msgstr ""
382
 
383
- #: admin/admin.php:480
384
  msgid ""
385
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
386
  "and All Pages"
387
  msgstr ""
388
 
389
- #: admin/admin.php:484
390
  #, fuzzy
391
  msgid "Show number of views to non-admins"
392
  msgstr "Показувати кількість переглядів сторінки?"
393
 
394
- #: admin/admin.php:487
395
  msgid ""
396
  "If you disable this then non-admins won't see the above columns or view the "
397
  "independent pages with the top posts"
398
  msgstr ""
399
 
400
- #: admin/admin.php:527
401
  msgid "Number of popular posts to display: "
402
  msgstr "Кількість Популярних записів у списку:"
403
 
404
- #: admin/admin.php:530
405
  msgid ""
406
  "Maximum number of posts that will be displayed in the list. This option is "
407
  "used if you don't specify the number of posts in the widget or shortcodes"
408
  msgstr ""
409
 
410
- #: admin/admin.php:534
411
  msgid "Post types to include in results (including custom post types)"
412
  msgstr ""
413
 
414
- #: admin/admin.php:546
415
  msgid "List of post or page IDs to exclude from the results: "
416
  msgstr ""
417
 
418
- #: admin/admin.php:548 admin/admin.php:655
419
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
420
  msgstr ""
421
 
422
- #: admin/admin.php:552
423
  msgid "Exclude Categories: "
424
  msgstr "Виключити Категорії:"
425
 
426
- #: admin/admin.php:567
427
  msgid ""
428
  "Comma separated list of category slugs. The field above has an autocomplete "
429
  "so simply start typing in the starting letters and it will prompt you with "
430
  "options"
431
  msgstr ""
432
 
433
- #: admin/admin.php:572
434
  msgid "Title of popular posts: "
435
  msgstr "Заголовок списку Популярних записів:"
436
 
437
- #: admin/admin.php:578
438
  msgid "Title of daily popular posts: "
439
  msgstr "Заголовок списку Популярних сьогодні записів:"
440
 
441
- #: admin/admin.php:584
442
  msgid "When there are no posts, what should be shown?"
443
  msgstr ""
444
 
445
- #: admin/admin.php:588
446
  msgid "Blank Output"
447
  msgstr ""
448
 
449
- #: admin/admin.php:592
450
  msgid "Display:"
451
  msgstr ""
452
 
453
- #: admin/admin.php:597
454
  msgid "Show post excerpt in list?"
455
  msgstr "Показувати текст запису в списку?"
456
 
457
- #: admin/admin.php:603
 
 
 
 
 
458
  msgid "Length of excerpt (in words): "
459
  msgstr "Довжина виведеного тексту (в словах):"
460
 
461
- #: admin/admin.php:609
462
  #, fuzzy
463
  msgid "Show post author in list?"
464
  msgstr "Показувати текст запису в списку?"
465
 
466
- #: admin/admin.php:615
 
 
 
 
 
467
  #, fuzzy
468
  msgid "Show post date in list?"
469
  msgstr "Показувати текст запису в списку?"
470
 
471
- #: admin/admin.php:621
 
 
 
 
 
472
  msgid "Limit post title length (in characters)"
473
  msgstr ""
474
 
475
- #: admin/admin.php:627
476
  #, fuzzy
477
  msgid "Show view count in list?"
478
  msgstr "Показувати текст запису в списку?"
479
 
480
- #: admin/admin.php:633
481
- msgid "Always display latest post count in the daily lists?"
482
- msgstr ""
483
-
484
- #: admin/admin.php:636
485
- msgid ""
486
- "This option uses JavaScript and will increase your page load time. When you "
487
- "enable this option, the daily widget will not use the options set there, but "
488
- "options will need to be set on this screen."
489
- msgstr ""
490
-
491
- #: admin/admin.php:640
492
  msgid "Open links in new window"
493
  msgstr ""
494
 
495
- #: admin/admin.php:646
496
  msgid "Add nofollow attribute to links in the list"
497
  msgstr ""
498
 
499
- #: admin/admin.php:652
500
  msgid "Exclude display of related posts on these posts / pages"
501
  msgstr ""
502
 
503
- #: admin/admin.php:659
504
  #, fuzzy
505
  msgid "Customise the list HTML"
506
  msgstr "Установки оформлення списку:"
507
 
508
- #: admin/admin.php:662
509
  msgid "HTML to display before the list of posts: "
510
  msgstr "HTML-тег, який використовується перед списком:"
511
 
512
- #: admin/admin.php:668
513
  msgid "HTML to display before each list item: "
514
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
515
 
516
- #: admin/admin.php:674
517
  msgid "HTML to display after each list item: "
518
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
519
 
520
- #: admin/admin.php:680
521
  msgid "HTML to display after the list of posts: "
522
  msgstr "HTML-тег, який використовується після списку:"
523
 
524
- #: admin/admin.php:721
525
  msgid "Location of post thumbnail:"
526
  msgstr ""
527
 
528
- #: admin/admin.php:725
529
  #, fuzzy
530
  msgid "Display thumbnails inline with posts, before title"
531
  msgstr "Відображати і превью, і текст"
532
 
533
- #: admin/admin.php:730
534
  #, fuzzy
535
  msgid "Display thumbnails inline with posts, after title"
536
  msgstr "Відображати і превью, і текст"
537
 
538
- #: admin/admin.php:735
539
  msgid "Display only thumbnails, no text"
540
  msgstr "Показувати тільки превью, без тексту"
541
 
542
- #: admin/admin.php:740
543
  msgid "Do not display thumbnails, only text."
544
  msgstr "Показувати лише текст, без превью"
545
 
546
- #: admin/admin.php:744
 
 
 
 
 
 
547
  msgid "Thumbnail size:"
548
  msgstr ""
549
 
550
- #: admin/admin.php:768
551
  msgid "Custom size"
552
  msgstr ""
553
 
554
- #: admin/admin.php:771
555
  msgid ""
556
  "You can choose from existing image sizes above or create a custom size. If "
557
  "you have chosen Custom size above, then enter the width, height and crop "
558
  "settings below. For best results, use a cropped image."
559
  msgstr ""
560
 
561
- #: admin/admin.php:772
562
  msgid ""
563
  "If you change the width and/or height below, existing images will not be "
564
  "automatically resized."
565
  msgstr ""
566
 
567
- #: admin/admin.php:773
568
  #, php-format
569
  msgid ""
570
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
571
- "a> or <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to "
572
- "regenerate all image sizes."
573
  msgstr ""
574
 
575
- #: admin/admin.php:776
576
  msgid "Width of custom thumbnail:"
577
  msgstr ""
578
 
579
- #: admin/admin.php:781
580
  msgid "Height of custom thumbnail"
581
  msgstr ""
582
 
583
- #: admin/admin.php:786
584
  msgid "Crop mode:"
585
  msgstr ""
586
 
587
- #: admin/admin.php:790
588
  msgid ""
589
  "By default, thumbnails will be proportionately cropped. Check this box to "
590
  "hard crop the thumbnails."
591
  msgstr ""
592
 
593
- #: admin/admin.php:791
594
  #, php-format
595
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
596
  msgstr ""
597
 
598
- #: admin/admin.php:793
599
  msgid ""
600
- "Since you're using the default styles set under the Custom Styles section, "
601
- "the width and height is fixed at 65px and crop mode is enabled."
602
  msgstr ""
603
 
604
- #: admin/admin.php:798
605
  msgid "Style attributes / Width and Height HTML attributes:"
606
  msgstr ""
607
 
608
- #: admin/admin.php:802
609
  msgid "Style attributes are used for width and height."
610
  msgstr ""
611
 
612
- #: admin/admin.php:807
613
  msgid "HTML width and height attributes are used for width and height."
614
  msgstr ""
615
 
616
- #: admin/admin.php:811
617
- msgid "Use timthumb to generate thumbnails? "
618
- msgstr ""
619
-
620
- #: admin/admin.php:814
621
- msgid ""
622
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
623
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
624
- msgstr ""
625
-
626
- #: admin/admin.php:817
627
- msgid "Quality of thumbnails generated by timthumb:"
628
- msgstr ""
629
-
630
- #: admin/admin.php:820
631
- msgid ""
632
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
633
- "file size. Suggested maximum value is 95. Default is 75."
634
- msgstr ""
635
-
636
- #: admin/admin.php:823
637
  #, fuzzy
638
  msgid "Post thumbnail meta field name: "
639
  msgstr "Установки превью до записів:"
640
 
641
- #: admin/admin.php:826
642
  msgid ""
643
  "The value of this field should contain the image source and is set in the "
644
  "<em>Add New Post</em> screen"
645
  msgstr ""
646
 
647
- #: admin/admin.php:829
648
  #, fuzzy
649
  msgid ""
650
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -654,7 +654,7 @@ msgstr ""
654
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
655
  "так як буде створюватися зменшена копія зображення"
656
 
657
- #: admin/admin.php:832
658
  #, fuzzy
659
  msgid ""
660
  "This could slow down the loading of your page if the first image in the "
@@ -664,21 +664,21 @@ msgstr ""
664
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
665
  "так як буде створюватися зменшена копія зображення"
666
 
667
- #: admin/admin.php:835
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
- #: admin/admin.php:838
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  msgstr ""
676
 
677
- #: admin/admin.php:841
678
  msgid "Default thumbnail: "
679
  msgstr ""
680
 
681
- #: admin/admin.php:845
682
  #, fuzzy
683
  msgid ""
684
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -689,54 +689,54 @@ msgstr ""
689
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
690
  "замовчунням:"
691
 
692
- #: admin/admin.php:869
693
  msgid "Custom CSS"
694
  msgstr ""
695
 
696
- #: admin/admin.php:884
697
  msgid "Use default style included in the plugin?"
698
  msgstr ""
699
 
700
- #: admin/admin.php:887
701
  msgid ""
702
  "Top 10 includes a default style that makes your popular posts list to look "
703
  "beautiful. Check the box above if you want to use this."
704
  msgstr ""
705
 
706
- #: admin/admin.php:888
707
  msgid ""
708
  "Enabling this option will turn on the thumbnails and set their width and "
709
  "height to 65px. It will also turn off the display of the author, excerpt and "
710
  "date if already enabled. Disabling this option will not revert any settings."
711
  msgstr ""
712
 
713
- #: admin/admin.php:889
714
  #, php-format
715
  msgid ""
716
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
717
  msgstr ""
718
 
719
- #: admin/admin.php:892
720
  msgid "Custom CSS to add to header:"
721
  msgstr ""
722
 
723
- #: admin/admin.php:897
724
  msgid ""
725
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
727
  "available CSS classes to style."
728
  msgstr ""
729
 
730
- #: admin/admin.php:917
731
  #, fuzzy
732
  msgid "Default Options"
733
  msgstr "Установки плагіна:"
734
 
735
- #: admin/admin.php:917
736
  msgid "Do you want to set options to Default?"
737
  msgstr "Скинути налаштування плагіна?"
738
 
739
- #: admin/admin.php:941
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
742
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -744,65 +744,65 @@ msgid ""
744
  "will automatically delete entries older than 90 days."
745
  msgstr ""
746
 
747
- #: admin/admin.php:942
748
  msgid ""
749
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
750
  "everytime the job is rescheduled (i.e. you change the settings below)."
751
  msgstr ""
752
 
753
- #: admin/admin.php:945
754
  msgid "Enable scheduled maintenance of daily tables:"
755
  msgstr ""
756
 
757
- #: admin/admin.php:949
758
  msgid "Time to run maintenance"
759
  msgstr ""
760
 
761
- #: admin/admin.php:950
762
  msgid "hrs"
763
  msgstr ""
764
 
765
- #: admin/admin.php:950
766
  msgid "min"
767
  msgstr ""
768
 
769
- #: admin/admin.php:952
770
  msgid "How often should the maintenance be run:"
771
  msgstr ""
772
 
773
- #: admin/admin.php:956
774
  msgid "Daily"
775
  msgstr ""
776
 
777
- #: admin/admin.php:960
778
  msgid "Weekly"
779
  msgstr ""
780
 
781
- #: admin/admin.php:964
782
  msgid "Fortnightly"
783
  msgstr ""
784
 
785
- #: admin/admin.php:968
786
  msgid "Monthly"
787
  msgstr ""
788
 
789
- #: admin/admin.php:977
790
  msgid "The cron job has been scheduled. Maintenance will run "
791
  msgstr ""
792
 
793
- #: admin/admin.php:982
794
  msgid "The cron job is missing. Please resave this page to add the job"
795
  msgstr ""
796
 
797
- #: admin/admin.php:987
798
  msgid "Maintenance is turned off"
799
  msgstr ""
800
 
801
- #: admin/admin.php:1001
802
- msgid "Reset count"
803
- msgstr "Скинути статистику"
804
 
805
- #: admin/admin.php:1004
806
  msgid ""
807
  "This cannot be reversed. Make sure that your database has been backed up "
808
  "before proceeding"
@@ -810,168 +810,186 @@ msgstr ""
810
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
811
  "переконайтесь, що у вас є копія вашої бази даних!"
812
 
813
- #: admin/admin.php:1007
814
  #, fuzzy
815
  msgid "Reset Popular Posts"
816
  msgstr "Популярні записи"
817
 
818
- #: admin/admin.php:1007
819
  msgid "Are you sure you want to reset the popular posts?"
820
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
821
 
822
- #: admin/admin.php:1008
823
  #, fuzzy
824
  msgid "Reset Daily Popular Posts"
825
  msgstr "Популярні сьогодні записи"
826
 
827
- #: admin/admin.php:1008
828
  msgid "Are you sure you want to reset the daily popular posts?"
829
  msgstr ""
830
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
831
 
832
- #: admin/admin.php:1009
833
- msgid "Clear duplicates"
 
 
 
 
834
  msgstr ""
835
 
836
- #: admin/admin.php:1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
837
  msgid "This will delete the duplicate entries in the tables. Proceed?"
838
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
839
 
840
- #: admin/admin.php:1022
841
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
842
  msgstr ""
843
 
844
- #: admin/admin.php:1025
845
  msgid ""
846
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
847
  "activate the plugin independently for each site. This would have resulted in "
848
  "two tables being created for each site in the network."
849
  msgstr ""
850
 
851
- #: admin/admin.php:1026
852
  msgid ""
853
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
854
  "your database clean. You can use this tool to import the recorded counts "
855
  "from v1.x tables to the new v2.x table format."
856
  msgstr ""
857
 
858
- #: admin/admin.php:1029
859
  msgid ""
860
  "If you do not see any tables below, then it means that either all data has "
861
  "already been imported or no relevant information has been found."
862
  msgstr ""
863
 
864
- #: admin/admin.php:1032
865
  msgid ""
866
  "After running the importer, please verify that all the counts have been "
867
  "successfully imported. Only then should you delete any old tables!"
868
  msgstr ""
869
 
870
- #: admin/admin.php:1066
871
  msgid "Blog ID"
872
  msgstr ""
873
 
874
- #: admin/admin.php:1069
875
  msgid "Status"
876
  msgstr ""
877
 
878
- #: admin/admin.php:1072
879
  msgid "Select to import"
880
  msgstr ""
881
 
882
- #: admin/admin.php:1082
883
  msgid "Blog #"
884
  msgstr ""
885
 
886
- #: admin/admin.php:1092
887
  msgid "Not imported"
888
  msgstr ""
889
 
890
- #: admin/admin.php:1096
891
  msgid "Imported"
892
  msgstr ""
893
 
894
- #: admin/admin.php:1117
895
  msgid "Begin import"
896
  msgstr ""
897
 
898
- #: admin/admin.php:1118
899
  msgid "Delete selected tables"
900
  msgstr ""
901
 
902
- #: admin/admin.php:1119
903
  msgid "Delete all imported tables"
904
  msgstr ""
905
 
906
- #: admin/admin.php:1176 admin/admin.php:1272
907
  msgid "Daily Popular Posts"
908
  msgstr "Популярні сьогодні записи"
909
 
910
- #: admin/admin.php:1206
911
  msgid "Support the development"
912
  msgstr "Підтримати автора плагіна"
913
 
914
- #: admin/admin.php:1213
915
  msgid "Donation for Top 10"
916
  msgstr ""
917
 
918
- #: admin/admin.php:1215
919
  msgid "Enter amount in USD: "
920
  msgstr "Скільки ви готові пожертвувати (в USD):"
921
 
922
- #: admin/admin.php:1219
923
  #, fuzzy
924
  msgid "Send your donation to the author of Top 10"
925
  msgstr "Відправте пожертву автору"
926
 
927
- #: admin/admin.php:1226
928
  msgid "Follow me"
929
  msgstr ""
930
 
931
- #: admin/admin.php:1236
932
  #, fuzzy
933
  msgid "Quick links"
934
  msgstr "Корисні посилання"
935
 
936
- #: admin/admin.php:1240
937
  #, fuzzy
938
  msgid "Top 10 plugin page"
939
  msgstr "Сторінка плагіна"
940
 
941
- #: admin/admin.php:1241
942
  msgid "Top 10 Github page"
943
  msgstr ""
944
 
945
- #: admin/admin.php:1242
946
  msgid "Other plugins"
947
  msgstr "Інші плагіни автора"
948
 
949
- #: admin/admin.php:1243
950
  msgid "Ajay's blog"
951
  msgstr "Блог Ajay"
952
 
953
- #: admin/admin.php:1244
954
  msgid "FAQ"
955
  msgstr ""
956
 
957
- #: admin/admin.php:1245 admin/admin.php:1403
958
  msgid "Support"
959
  msgstr "Підтримка (англ.)"
960
 
961
- #: admin/admin.php:1246
962
  msgid "Reviews"
963
  msgstr ""
964
 
965
- #: admin/admin.php:1269
966
  #, fuzzy
967
  msgid "Overall Popular Posts"
968
  msgstr "Подивитися всі Популярні записи"
969
 
970
- #: admin/admin.php:1380
971
  msgid "Settings"
972
  msgstr "Налаштування плагіна"
973
 
974
- #: admin/admin.php:1404
975
  msgid "Donate"
976
  msgstr "Зробити внесок"
977
 
@@ -985,122 +1003,141 @@ msgstr "Популярні записи"
985
  msgid "Display popular posts"
986
  msgstr "Популярні сьогодні записи"
987
 
988
- #: includes/class-top-10-widget.php:59
989
  msgid "Title"
990
  msgstr ""
991
 
992
- #: includes/class-top-10-widget.php:64
993
  msgid "No. of posts"
994
  msgstr ""
995
 
996
- #: includes/class-top-10-widget.php:69
997
  msgid "Overall"
998
  msgstr ""
999
 
1000
- #: includes/class-top-10-widget.php:70
1001
  msgid "Custom time period (Enter below)"
1002
  msgstr ""
1003
 
1004
- #: includes/class-top-10-widget.php:74
1005
  msgid "In days and hours (applies only to custom option above)"
1006
  msgstr ""
1007
 
1008
- #: includes/class-top-10-widget.php:76
1009
  msgid "days"
1010
  msgstr ""
1011
 
1012
- #: includes/class-top-10-widget.php:79
1013
  msgid "hours"
1014
  msgstr ""
1015
 
1016
- #: includes/class-top-10-widget.php:84
1017
  #, fuzzy
1018
  msgid "Show count?"
1019
  msgstr "Показувати текст запису в списку?"
1020
 
1021
- #: includes/class-top-10-widget.php:89
1022
  #, fuzzy
1023
  msgid "Show excerpt?"
1024
  msgstr "Показувати текст запису в списку?"
1025
 
1026
- #: includes/class-top-10-widget.php:94
1027
  #, fuzzy
1028
  msgid "Show author?"
1029
  msgstr "Показувати текст запису в списку?"
1030
 
1031
- #: includes/class-top-10-widget.php:99
1032
  #, fuzzy
1033
  msgid "Show date?"
1034
  msgstr "Показувати текст запису в списку?"
1035
 
1036
- #: includes/class-top-10-widget.php:105
1037
  #, fuzzy
1038
  msgid "Thumbnails inline, before title"
1039
  msgstr "Відображати і превью, і текст"
1040
 
1041
- #: includes/class-top-10-widget.php:106
1042
  #, fuzzy
1043
  msgid "Thumbnails inline, after title"
1044
  msgstr "Відображати і превью, і текст"
1045
 
1046
- #: includes/class-top-10-widget.php:107
1047
  #, fuzzy
1048
  msgid "Only thumbnails, no text"
1049
  msgstr "Показувати тільки превью, без тексту"
1050
 
1051
- #: includes/class-top-10-widget.php:108
1052
  #, fuzzy
1053
  msgid "No thumbnails, only text."
1054
  msgstr "Показувати лише текст, без превью"
1055
 
1056
- #: includes/class-top-10-widget.php:113
1057
  #, fuzzy
1058
  msgid "Thumbnail height"
1059
  msgstr "Установки превью до записів:"
1060
 
1061
- #: includes/class-top-10-widget.php:118
1062
  #, fuzzy
1063
  msgid "Thumbnail width"
1064
  msgstr "Установки превью до записів:"
1065
 
1066
- #: top-10.php:879
 
 
 
 
1067
  msgid " by "
1068
  msgstr ""
1069
 
1070
- #: top-10.php:930
1071
  #, php-format
1072
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1073
  msgstr ""
1074
 
1075
- #: top-10.php:1029
1076
  msgid "<h3>Popular Posts</h3>"
1077
  msgstr "<h3>Популярні записи</h3>"
1078
 
1079
- #: top-10.php:1030
1080
  msgid "<h3>Daily Popular</h3>"
1081
  msgstr "<h3>Популярні сьогодні записи</h3>"
1082
 
1083
- #: top-10.php:1031
1084
  #, fuzzy
1085
  msgid "No top posts yet"
1086
  msgstr "Скинути статистику найпопулярніших записів"
1087
 
1088
- #: top-10.php:1690
 
 
 
 
 
 
 
 
 
 
 
 
1089
  msgid "Once Weekly"
1090
  msgstr ""
1091
 
1092
- #: top-10.php:1694
1093
  msgid "Once Fortnightly"
1094
  msgstr ""
1095
 
1096
- #: top-10.php:1698
1097
  msgid "Once Monthly"
1098
  msgstr ""
1099
 
1100
- #: top-10.php:1702
1101
  msgid "Once quarterly"
1102
  msgstr ""
1103
 
 
 
 
1104
  #~ msgid "Daily Popular should contain views of how many days? "
1105
  #~ msgstr ""
1106
  #~ "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-11 22:47-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
61
  msgid "Next"
62
  msgstr "Наступна сторінка"
63
 
64
+ #: admin/admin-dashboard.php:200 admin/admin.php:1218
65
  msgid "Popular Posts"
66
  msgstr "Популярні записи"
67
 
69
  msgid "Daily Popular"
70
  msgstr "Популярні сьогодні записи"
71
 
72
+ #: admin/admin-metabox.php:38 admin/admin.php:1307
73
  msgid "Top 10"
74
  msgstr "Топ 10 записів"
75
 
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr ""
101
 
102
+ #: admin/admin.php:171
103
  msgid "Options saved successfully."
104
  msgstr "Установки збережені."
105
 
106
+ #: admin/admin.php:174
107
+ msgid ""
108
+ "Default styles selected. Thumbnail width, height and crop settings have been "
109
+ "fixed. Author, Excerpt and Date will not be displayed."
110
+ msgstr ""
111
+
112
+ #: admin/admin.php:190
113
  msgid "Options set to Default."
114
  msgstr "Установки скинуті."
115
 
116
+ #: admin/admin.php:197
117
  msgid "Top 10 popular posts reset"
118
  msgstr "Скинути статистику найпопулярніших записів"
119
 
120
+ #: admin/admin.php:204
121
  msgid "Top 10 daily popular posts reset"
122
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
123
 
124
+ #: admin/admin.php:212
125
  msgid "Duplicate rows cleaned from tables"
126
  msgstr ""
127
 
128
+ #: admin/admin.php:220
129
+ msgid "Post counts across blog IDs 0 and 1 have been merged"
130
+ msgstr ""
131
+
132
+ #: admin/admin.php:233
133
  msgid "Scheduled maintenance enabled / modified"
134
  msgstr ""
135
 
136
+ #: admin/admin.php:237
137
  msgid "Scheduled maintenance disabled"
138
  msgstr ""
139
 
140
+ #: admin/admin.php:276
141
  msgid "Counts from selected sites have been imported."
142
  msgstr ""
143
 
144
+ #: admin/admin.php:301
145
  msgid ""
146
  "Selected tables have been deleted. Note that only imported tables have been "
147
  "deleted."
148
  msgstr ""
149
 
150
+ #: admin/admin.php:309 admin/admin.php:1307 admin/admin.php:1310
151
  #, fuzzy
152
  msgid "Top 10 Settings"
153
  msgstr "Налаштування плагіна"
154
 
155
+ #: admin/admin.php:321 admin/admin.php:343
156
  msgid "General options"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:322 admin/admin.php:435
160
  msgid "Counter and tracker options"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:323 admin/admin.php:540
164
  msgid "Popular post list options"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:324 admin/admin.php:742
168
+ #: includes/class-top-10-widget.php:115
169
  #, fuzzy
170
  msgid "Thumbnail options"
171
  msgstr "Установки превью до записів:"
172
 
173
+ #: admin/admin.php:325
174
  msgid "Custom styles"
175
  msgstr ""
176
 
177
+ #: admin/admin.php:326 admin/admin.php:966
178
  msgid "Maintenance"
179
  msgstr ""
180
 
181
+ #: admin/admin.php:342 admin/admin.php:434 admin/admin.php:539
182
+ #: admin/admin.php:741 admin/admin.php:897 admin/admin.php:965
183
+ #: admin/admin.php:1029 admin/admin.php:1065 admin/admin.php:1249
184
+ #: admin/admin.php:1269 admin/admin.php:1279
185
  msgid "Click to toggle"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:359
189
  msgid "Enable Overall stats"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:365
193
  msgid "Enable Daily stats"
194
  msgstr ""
195
 
196
+ #: admin/admin.php:371
197
  msgid "Cache fix:"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:374
201
  msgid ""
202
  "This will try to prevent W3 Total Cache and other caching plugins from "
203
  "caching the tracker script of the plugin. Try toggling this option in case "
204
  "you find that your posts are not tracked."
205
  msgstr ""
206
 
207
+ #: admin/admin.php:378
208
  msgid "Start daily counts from midnight:"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:381
212
  msgid ""
213
  "Daily counter will display number of visits from midnight. This option is "
214
  "checked by default and mimics the way most normal counters work. Turning "
215
  "this off will allow you to use the hourly setting in the next option."
216
  msgstr ""
217
 
218
+ #: admin/admin.php:385
219
  msgid "Daily popular contains top posts over:"
220
  msgstr ""
221
 
222
+ #: admin/admin.php:387
223
  msgid "day(s)"
224
  msgstr ""
225
 
226
+ #: admin/admin.php:388
227
  msgid "hour(s)"
228
  msgstr ""
229
 
230
+ #: admin/admin.php:389
231
  msgid ""
232
  "Think of Daily Popular has a custom date range applied as a global setting. "
233
  "Instead of displaying popular posts from the past day, this setting lets you "
235
  "overridden in the widget."
236
  msgstr ""
237
 
238
+ #: admin/admin.php:393
239
  msgid "Delete options on uninstall"
240
  msgstr ""
241
 
242
+ #: admin/admin.php:396
243
  msgid ""
244
  "If this is checked, all settings related to Top 10 are removed from the "
245
  "database if you choose to uninstall/delete the plugin."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:400
249
  msgid "Delete counter data on uninstall"
250
  msgstr ""
251
 
252
+ #: admin/admin.php:403
253
  msgid ""
254
  "If this is checked, the tables containing the counter statistics are removed "
255
  "from the database if you choose to uninstall/delete the plugin."
256
  msgstr ""
257
 
258
+ #: admin/admin.php:404
259
  msgid ""
260
  "Keep this unchecked if you choose to reinstall the plugin and don't want to "
261
  "lose your counter data."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:408
265
  msgid "Link to Top 10 plugin page"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:411
269
  #, fuzzy
270
  msgid ""
271
  "A link to the plugin is added as an extra list item to the list of popular "
274
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
275
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
276
 
277
+ #: admin/admin.php:416 admin/admin.php:521 admin/admin.php:723
278
+ #: admin/admin.php:879 admin/admin.php:945 admin/admin.php:1022
279
  #, fuzzy
280
  msgid "Save Options"
281
  msgstr "Установки плагіна:"
282
 
283
+ #: admin/admin.php:451
284
  #, fuzzy
285
  msgid "Display number of views on:"
286
  msgstr "Показувати кількість переглядів запису?"
287
 
288
+ #: admin/admin.php:453
289
  msgid "Posts"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:454
293
  #, fuzzy
294
  msgid "Pages"
295
  msgstr "Сторінка"
296
 
297
+ #: admin/admin.php:455
298
  msgid "Home page"
299
  msgstr ""
300
 
301
+ #: admin/admin.php:456
302
  msgid "Feeds"
303
  msgstr ""
304
 
305
+ #: admin/admin.php:457
306
  msgid "Category archives"
307
  msgstr ""
308
 
309
+ #: admin/admin.php:458
310
  msgid "Tag archives"
311
  msgstr ""
312
 
313
+ #: admin/admin.php:459
314
  msgid "Other archives"
315
  msgstr ""
316
 
317
+ #: admin/admin.php:460
318
  msgid ""
319
  "If you choose to disable this, please add <code>&lt;?php if "
320
  "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
321
  "</code> to your template file where you want it displayed"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:464
325
  #, fuzzy
326
  msgid "Format to display the post views:"
327
  msgstr ""
328
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
329
  "за день, за весь час для записів/сторінок:"
330
 
331
+ #: admin/admin.php:467
332
  msgid ""
333
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
334
  "%</code> to display the daily count and <code>%overallcount%</code> to "
336
  "options displays <code>[Visited 123 times, 23 visits today]</code>"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:471
340
  msgid "What do display when there are no visits?"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:474
344
  msgid ""
345
  "This text applies only when there are 0 hits for the post and it isn't a "
346
  "single page. e.g. if you display post views on the homepage or archives then "
348
  "option."
349
  msgstr ""
350
 
351
+ #: admin/admin.php:478
352
  msgid "Always display latest post count"
353
  msgstr ""
354
 
355
+ #: admin/admin.php:481
356
  msgid ""
357
  "This option uses JavaScript and will increase your page load time. Turn this "
358
  "off if you are not using caching plugins or are OK with displaying older "
359
  "cached counts."
360
  msgstr ""
361
 
362
+ #: admin/admin.php:485
363
  msgid "Track visits of authors on their own posts?"
364
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
365
 
366
+ #: admin/admin.php:488
367
  msgid ""
368
  "Disabling this option will stop authors visits tracked on their own posts"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:492
372
  #, fuzzy
373
  msgid "Track visits of admins?"
374
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
375
 
376
+ #: admin/admin.php:495
377
  msgid "Disabling this option will stop admin visits being tracked."
378
  msgstr ""
379
 
380
+ #: admin/admin.php:499
381
  #, fuzzy
382
  msgid "Track visits of Editors?"
383
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
384
 
385
+ #: admin/admin.php:502
386
  msgid "Disabling this option will stop editor visits being tracked."
387
  msgstr ""
388
 
389
+ #: admin/admin.php:506
390
  msgid "Display page views on Posts and Pages in Admin"
391
  msgstr ""
392
 
393
+ #: admin/admin.php:509
394
  msgid ""
395
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
396
  "and All Pages"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:513
400
  #, fuzzy
401
  msgid "Show number of views to non-admins"
402
  msgstr "Показувати кількість переглядів сторінки?"
403
 
404
+ #: admin/admin.php:516
405
  msgid ""
406
  "If you disable this then non-admins won't see the above columns or view the "
407
  "independent pages with the top posts"
408
  msgstr ""
409
 
410
+ #: admin/admin.php:556
411
  msgid "Number of popular posts to display: "
412
  msgstr "Кількість Популярних записів у списку:"
413
 
414
+ #: admin/admin.php:559
415
  msgid ""
416
  "Maximum number of posts that will be displayed in the list. This option is "
417
  "used if you don't specify the number of posts in the widget or shortcodes"
418
  msgstr ""
419
 
420
+ #: admin/admin.php:563
421
  msgid "Post types to include in results (including custom post types)"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:577
425
  msgid "List of post or page IDs to exclude from the results: "
426
  msgstr ""
427
 
428
+ #: admin/admin.php:579 admin/admin.php:691
429
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:583
433
  msgid "Exclude Categories: "
434
  msgstr "Виключити Категорії:"
435
 
436
+ #: admin/admin.php:598
437
  msgid ""
438
  "Comma separated list of category slugs. The field above has an autocomplete "
439
  "so simply start typing in the starting letters and it will prompt you with "
440
  "options"
441
  msgstr ""
442
 
443
+ #: admin/admin.php:603
444
  msgid "Title of popular posts: "
445
  msgstr "Заголовок списку Популярних записів:"
446
 
447
+ #: admin/admin.php:609
448
  msgid "Title of daily popular posts: "
449
  msgstr "Заголовок списку Популярних сьогодні записів:"
450
 
451
+ #: admin/admin.php:615
452
  msgid "When there are no posts, what should be shown?"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:619
456
  msgid "Blank Output"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:623
460
  msgid "Display:"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:628
464
  msgid "Show post excerpt in list?"
465
  msgstr "Показувати текст запису в списку?"
466
 
467
+ #: admin/admin.php:633
468
+ msgid ""
469
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
470
+ msgstr ""
471
+
472
+ #: admin/admin.php:638
473
  msgid "Length of excerpt (in words): "
474
  msgstr "Довжина виведеного тексту (в словах):"
475
 
476
+ #: admin/admin.php:644
477
  #, fuzzy
478
  msgid "Show post author in list?"
479
  msgstr "Показувати текст запису в списку?"
480
 
481
+ #: admin/admin.php:649
482
+ msgid ""
483
+ "Default style selected under the Custom Styles. Author display is disabled."
484
+ msgstr ""
485
+
486
+ #: admin/admin.php:654
487
  #, fuzzy
488
  msgid "Show post date in list?"
489
  msgstr "Показувати текст запису в списку?"
490
 
491
+ #: admin/admin.php:659
492
+ msgid ""
493
+ "Default style selected under the Custom Styles. Date display is disabled."
494
+ msgstr ""
495
+
496
+ #: admin/admin.php:664
497
  msgid "Limit post title length (in characters)"
498
  msgstr ""
499
 
500
+ #: admin/admin.php:670
501
  #, fuzzy
502
  msgid "Show view count in list?"
503
  msgstr "Показувати текст запису в списку?"
504
 
505
+ #: admin/admin.php:676
 
 
 
 
 
 
 
 
 
 
 
506
  msgid "Open links in new window"
507
  msgstr ""
508
 
509
+ #: admin/admin.php:682
510
  msgid "Add nofollow attribute to links in the list"
511
  msgstr ""
512
 
513
+ #: admin/admin.php:688
514
  msgid "Exclude display of related posts on these posts / pages"
515
  msgstr ""
516
 
517
+ #: admin/admin.php:695
518
  #, fuzzy
519
  msgid "Customise the list HTML"
520
  msgstr "Установки оформлення списку:"
521
 
522
+ #: admin/admin.php:698
523
  msgid "HTML to display before the list of posts: "
524
  msgstr "HTML-тег, який використовується перед списком:"
525
 
526
+ #: admin/admin.php:704
527
  msgid "HTML to display before each list item: "
528
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
529
 
530
+ #: admin/admin.php:710
531
  msgid "HTML to display after each list item: "
532
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
533
 
534
+ #: admin/admin.php:716
535
  msgid "HTML to display after the list of posts: "
536
  msgstr "HTML-тег, який використовується після списку:"
537
 
538
+ #: admin/admin.php:757
539
  msgid "Location of post thumbnail:"
540
  msgstr ""
541
 
542
+ #: admin/admin.php:761
543
  #, fuzzy
544
  msgid "Display thumbnails inline with posts, before title"
545
  msgstr "Відображати і превью, і текст"
546
 
547
+ #: admin/admin.php:766
548
  #, fuzzy
549
  msgid "Display thumbnails inline with posts, after title"
550
  msgstr "Відображати і превью, і текст"
551
 
552
+ #: admin/admin.php:771
553
  msgid "Display only thumbnails, no text"
554
  msgstr "Показувати тільки превью, без тексту"
555
 
556
+ #: admin/admin.php:776
557
  msgid "Do not display thumbnails, only text."
558
  msgstr "Показувати лише текст, без превью"
559
 
560
+ #: admin/admin.php:780
561
+ msgid ""
562
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
563
+ "to be inline before title"
564
+ msgstr ""
565
+
566
+ #: admin/admin.php:784
567
  msgid "Thumbnail size:"
568
  msgstr ""
569
 
570
+ #: admin/admin.php:808
571
  msgid "Custom size"
572
  msgstr ""
573
 
574
+ #: admin/admin.php:811
575
  msgid ""
576
  "You can choose from existing image sizes above or create a custom size. If "
577
  "you have chosen Custom size above, then enter the width, height and crop "
578
  "settings below. For best results, use a cropped image."
579
  msgstr ""
580
 
581
+ #: admin/admin.php:812
582
  msgid ""
583
  "If you change the width and/or height below, existing images will not be "
584
  "automatically resized."
585
  msgstr ""
586
 
587
+ #: admin/admin.php:813
588
  #, php-format
589
  msgid ""
590
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
591
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
592
+ "all image sizes."
593
  msgstr ""
594
 
595
+ #: admin/admin.php:816
596
  msgid "Width of custom thumbnail:"
597
  msgstr ""
598
 
599
+ #: admin/admin.php:821
600
  msgid "Height of custom thumbnail"
601
  msgstr ""
602
 
603
+ #: admin/admin.php:826
604
  msgid "Crop mode:"
605
  msgstr ""
606
 
607
+ #: admin/admin.php:830
608
  msgid ""
609
  "By default, thumbnails will be proportionately cropped. Check this box to "
610
  "hard crop the thumbnails."
611
  msgstr ""
612
 
613
+ #: admin/admin.php:831
614
  #, php-format
615
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
616
  msgstr ""
617
 
618
+ #: admin/admin.php:834
619
  msgid ""
620
+ "Default style selected under the Custom Styles. Thumbnail width and height "
621
+ "is fixed at 65px and crop mode is enabled."
622
  msgstr ""
623
 
624
+ #: admin/admin.php:839
625
  msgid "Style attributes / Width and Height HTML attributes:"
626
  msgstr ""
627
 
628
+ #: admin/admin.php:843
629
  msgid "Style attributes are used for width and height."
630
  msgstr ""
631
 
632
+ #: admin/admin.php:848
633
  msgid "HTML width and height attributes are used for width and height."
634
  msgstr ""
635
 
636
+ #: admin/admin.php:852
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
  #, fuzzy
638
  msgid "Post thumbnail meta field name: "
639
  msgstr "Установки превью до записів:"
640
 
641
+ #: admin/admin.php:855
642
  msgid ""
643
  "The value of this field should contain the image source and is set in the "
644
  "<em>Add New Post</em> screen"
645
  msgstr ""
646
 
647
+ #: admin/admin.php:858
648
  #, fuzzy
649
  msgid ""
650
  "If the postmeta is not set, then should the plugin extract the first image "
654
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
655
  "так як буде створюватися зменшена копія зображення"
656
 
657
+ #: admin/admin.php:861
658
  #, fuzzy
659
  msgid ""
660
  "This could slow down the loading of your page if the first image in the "
664
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
665
  "так як буде створюватися зменшена копія зображення"
666
 
667
+ #: admin/admin.php:864
668
  msgid "Use default thumbnail? "
669
  msgstr ""
670
 
671
+ #: admin/admin.php:867
672
  msgid ""
673
  "If checked, when no thumbnail is found, show a default one from the URL "
674
  "below. If not checked and no thumbnail is found, no image will be shown."
675
  msgstr ""
676
 
677
+ #: admin/admin.php:870
678
  msgid "Default thumbnail: "
679
  msgstr ""
680
 
681
+ #: admin/admin.php:874
682
  #, fuzzy
683
  msgid ""
684
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
689
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
690
  "замовчунням:"
691
 
692
+ #: admin/admin.php:898
693
  msgid "Custom CSS"
694
  msgstr ""
695
 
696
+ #: admin/admin.php:913
697
  msgid "Use default style included in the plugin?"
698
  msgstr ""
699
 
700
+ #: admin/admin.php:916
701
  msgid ""
702
  "Top 10 includes a default style that makes your popular posts list to look "
703
  "beautiful. Check the box above if you want to use this."
704
  msgstr ""
705
 
706
+ #: admin/admin.php:917
707
  msgid ""
708
  "Enabling this option will turn on the thumbnails and set their width and "
709
  "height to 65px. It will also turn off the display of the author, excerpt and "
710
  "date if already enabled. Disabling this option will not revert any settings."
711
  msgstr ""
712
 
713
+ #: admin/admin.php:918
714
  #, php-format
715
  msgid ""
716
  "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
717
  msgstr ""
718
 
719
+ #: admin/admin.php:921
720
  msgid "Custom CSS to add to header:"
721
  msgstr ""
722
 
723
+ #: admin/admin.php:926
724
  msgid ""
725
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
726
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
727
  "available CSS classes to style."
728
  msgstr ""
729
 
730
+ #: admin/admin.php:946
731
  #, fuzzy
732
  msgid "Default Options"
733
  msgstr "Установки плагіна:"
734
 
735
+ #: admin/admin.php:946
736
  msgid "Do you want to set options to Default?"
737
  msgstr "Скинути налаштування плагіна?"
738
 
739
+ #: admin/admin.php:970
740
  msgid ""
741
  "Over time the Daily Top 10 database grows in size, which reduces the "
742
  "performance of the plugin. Cleaning the database at regular intervals could "
744
  "will automatically delete entries older than 90 days."
745
  msgstr ""
746
 
747
+ #: admin/admin.php:971
748
  msgid ""
749
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
750
  "everytime the job is rescheduled (i.e. you change the settings below)."
751
  msgstr ""
752
 
753
+ #: admin/admin.php:974
754
  msgid "Enable scheduled maintenance of daily tables:"
755
  msgstr ""
756
 
757
+ #: admin/admin.php:978
758
  msgid "Time to run maintenance"
759
  msgstr ""
760
 
761
+ #: admin/admin.php:979
762
  msgid "hrs"
763
  msgstr ""
764
 
765
+ #: admin/admin.php:979
766
  msgid "min"
767
  msgstr ""
768
 
769
+ #: admin/admin.php:981
770
  msgid "How often should the maintenance be run:"
771
  msgstr ""
772
 
773
+ #: admin/admin.php:985
774
  msgid "Daily"
775
  msgstr ""
776
 
777
+ #: admin/admin.php:989
778
  msgid "Weekly"
779
  msgstr ""
780
 
781
+ #: admin/admin.php:993
782
  msgid "Fortnightly"
783
  msgstr ""
784
 
785
+ #: admin/admin.php:997
786
  msgid "Monthly"
787
  msgstr ""
788
 
789
+ #: admin/admin.php:1006
790
  msgid "The cron job has been scheduled. Maintenance will run "
791
  msgstr ""
792
 
793
+ #: admin/admin.php:1011
794
  msgid "The cron job is missing. Please resave this page to add the job"
795
  msgstr ""
796
 
797
+ #: admin/admin.php:1016
798
  msgid "Maintenance is turned off"
799
  msgstr ""
800
 
801
+ #: admin/admin.php:1030
802
+ msgid "Reset count and other tools"
803
+ msgstr ""
804
 
805
+ #: admin/admin.php:1033
806
  msgid ""
807
  "This cannot be reversed. Make sure that your database has been backed up "
808
  "before proceeding"
810
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
811
  "переконайтесь, що у вас є копія вашої бази даних!"
812
 
813
+ #: admin/admin.php:1036
814
  #, fuzzy
815
  msgid "Reset Popular Posts"
816
  msgstr "Популярні записи"
817
 
818
+ #: admin/admin.php:1036
819
  msgid "Are you sure you want to reset the popular posts?"
820
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
821
 
822
+ #: admin/admin.php:1037
823
  #, fuzzy
824
  msgid "Reset Daily Popular Posts"
825
  msgstr "Популярні сьогодні записи"
826
 
827
+ #: admin/admin.php:1037
828
  msgid "Are you sure you want to reset the daily popular posts?"
829
  msgstr ""
830
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
831
 
832
+ #: admin/admin.php:1040
833
+ msgid "This will merge post counts for posts with table entries of 0 and 1"
834
+ msgstr ""
835
+
836
+ #: admin/admin.php:1043
837
+ msgid "Merge blog ID 0 and 1 post counts"
838
  msgstr ""
839
 
840
+ #: admin/admin.php:1043
841
+ msgid "This will merge post counts for blog IDs 0 and 1. Proceed?"
842
+ msgstr ""
843
+
844
+ #: admin/admin.php:1046
845
+ msgid ""
846
+ "In older versions, the plugin created entries with duplicate post IDs. "
847
+ "Clicking the button below will merge these duplicate IDs"
848
+ msgstr ""
849
+
850
+ #: admin/admin.php:1049
851
+ msgid "Merge duplicates across blog IDs"
852
+ msgstr ""
853
+
854
+ #: admin/admin.php:1049
855
  msgid "This will delete the duplicate entries in the tables. Proceed?"
856
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
857
 
858
+ #: admin/admin.php:1066
859
  msgid "WordPress Multisite: Migrate Top 10 v1.x counts to 2.x"
860
  msgstr ""
861
 
862
+ #: admin/admin.php:1069
863
  msgid ""
864
  "If you've been using Top 10 v1.x on multisite, you would have needed to "
865
  "activate the plugin independently for each site. This would have resulted in "
866
  "two tables being created for each site in the network."
867
  msgstr ""
868
 
869
+ #: admin/admin.php:1070
870
  msgid ""
871
  "Top 10 v2.x onwards uses only a single table to record the count, keeping "
872
  "your database clean. You can use this tool to import the recorded counts "
873
  "from v1.x tables to the new v2.x table format."
874
  msgstr ""
875
 
876
+ #: admin/admin.php:1073
877
  msgid ""
878
  "If you do not see any tables below, then it means that either all data has "
879
  "already been imported or no relevant information has been found."
880
  msgstr ""
881
 
882
+ #: admin/admin.php:1076
883
  msgid ""
884
  "After running the importer, please verify that all the counts have been "
885
  "successfully imported. Only then should you delete any old tables!"
886
  msgstr ""
887
 
888
+ #: admin/admin.php:1110
889
  msgid "Blog ID"
890
  msgstr ""
891
 
892
+ #: admin/admin.php:1113
893
  msgid "Status"
894
  msgstr ""
895
 
896
+ #: admin/admin.php:1116
897
  msgid "Select to import"
898
  msgstr ""
899
 
900
+ #: admin/admin.php:1126
901
  msgid "Blog #"
902
  msgstr ""
903
 
904
+ #: admin/admin.php:1136
905
  msgid "Not imported"
906
  msgstr ""
907
 
908
+ #: admin/admin.php:1140
909
  msgid "Imported"
910
  msgstr ""
911
 
912
+ #: admin/admin.php:1161
913
  msgid "Begin import"
914
  msgstr ""
915
 
916
+ #: admin/admin.php:1162
917
  msgid "Delete selected tables"
918
  msgstr ""
919
 
920
+ #: admin/admin.php:1163
921
  msgid "Delete all imported tables"
922
  msgstr ""
923
 
924
+ #: admin/admin.php:1220 admin/admin.php:1316
925
  msgid "Daily Popular Posts"
926
  msgstr "Популярні сьогодні записи"
927
 
928
+ #: admin/admin.php:1250
929
  msgid "Support the development"
930
  msgstr "Підтримати автора плагіна"
931
 
932
+ #: admin/admin.php:1257
933
  msgid "Donation for Top 10"
934
  msgstr ""
935
 
936
+ #: admin/admin.php:1259
937
  msgid "Enter amount in USD: "
938
  msgstr "Скільки ви готові пожертвувати (в USD):"
939
 
940
+ #: admin/admin.php:1263
941
  #, fuzzy
942
  msgid "Send your donation to the author of Top 10"
943
  msgstr "Відправте пожертву автору"
944
 
945
+ #: admin/admin.php:1270
946
  msgid "Follow me"
947
  msgstr ""
948
 
949
+ #: admin/admin.php:1280
950
  #, fuzzy
951
  msgid "Quick links"
952
  msgstr "Корисні посилання"
953
 
954
+ #: admin/admin.php:1284
955
  #, fuzzy
956
  msgid "Top 10 plugin page"
957
  msgstr "Сторінка плагіна"
958
 
959
+ #: admin/admin.php:1285
960
  msgid "Top 10 Github page"
961
  msgstr ""
962
 
963
+ #: admin/admin.php:1286
964
  msgid "Other plugins"
965
  msgstr "Інші плагіни автора"
966
 
967
+ #: admin/admin.php:1287
968
  msgid "Ajay's blog"
969
  msgstr "Блог Ajay"
970
 
971
+ #: admin/admin.php:1288
972
  msgid "FAQ"
973
  msgstr ""
974
 
975
+ #: admin/admin.php:1289 admin/admin.php:1451
976
  msgid "Support"
977
  msgstr "Підтримка (англ.)"
978
 
979
+ #: admin/admin.php:1290
980
  msgid "Reviews"
981
  msgstr ""
982
 
983
+ #: admin/admin.php:1313
984
  #, fuzzy
985
  msgid "Overall Popular Posts"
986
  msgstr "Подивитися всі Популярні записи"
987
 
988
+ #: admin/admin.php:1428
989
  msgid "Settings"
990
  msgstr "Налаштування плагіна"
991
 
992
+ #: admin/admin.php:1452
993
  msgid "Donate"
994
  msgstr "Зробити внесок"
995
 
1003
  msgid "Display popular posts"
1004
  msgstr "Популярні сьогодні записи"
1005
 
1006
+ #: includes/class-top-10-widget.php:71
1007
  msgid "Title"
1008
  msgstr ""
1009
 
1010
+ #: includes/class-top-10-widget.php:76
1011
  msgid "No. of posts"
1012
  msgstr ""
1013
 
1014
+ #: includes/class-top-10-widget.php:81
1015
  msgid "Overall"
1016
  msgstr ""
1017
 
1018
+ #: includes/class-top-10-widget.php:82
1019
  msgid "Custom time period (Enter below)"
1020
  msgstr ""
1021
 
1022
+ #: includes/class-top-10-widget.php:86
1023
  msgid "In days and hours (applies only to custom option above)"
1024
  msgstr ""
1025
 
1026
+ #: includes/class-top-10-widget.php:88
1027
  msgid "days"
1028
  msgstr ""
1029
 
1030
+ #: includes/class-top-10-widget.php:91
1031
  msgid "hours"
1032
  msgstr ""
1033
 
1034
+ #: includes/class-top-10-widget.php:96
1035
  #, fuzzy
1036
  msgid "Show count?"
1037
  msgstr "Показувати текст запису в списку?"
1038
 
1039
+ #: includes/class-top-10-widget.php:101
1040
  #, fuzzy
1041
  msgid "Show excerpt?"
1042
  msgstr "Показувати текст запису в списку?"
1043
 
1044
+ #: includes/class-top-10-widget.php:106
1045
  #, fuzzy
1046
  msgid "Show author?"
1047
  msgstr "Показувати текст запису в списку?"
1048
 
1049
+ #: includes/class-top-10-widget.php:111
1050
  #, fuzzy
1051
  msgid "Show date?"
1052
  msgstr "Показувати текст запису в списку?"
1053
 
1054
+ #: includes/class-top-10-widget.php:117
1055
  #, fuzzy
1056
  msgid "Thumbnails inline, before title"
1057
  msgstr "Відображати і превью, і текст"
1058
 
1059
+ #: includes/class-top-10-widget.php:118
1060
  #, fuzzy
1061
  msgid "Thumbnails inline, after title"
1062
  msgstr "Відображати і превью, і текст"
1063
 
1064
+ #: includes/class-top-10-widget.php:119
1065
  #, fuzzy
1066
  msgid "Only thumbnails, no text"
1067
  msgstr "Показувати тільки превью, без тексту"
1068
 
1069
+ #: includes/class-top-10-widget.php:120
1070
  #, fuzzy
1071
  msgid "No thumbnails, only text."
1072
  msgstr "Показувати лише текст, без превью"
1073
 
1074
+ #: includes/class-top-10-widget.php:125
1075
  #, fuzzy
1076
  msgid "Thumbnail height"
1077
  msgstr "Установки превью до записів:"
1078
 
1079
+ #: includes/class-top-10-widget.php:131
1080
  #, fuzzy
1081
  msgid "Thumbnail width"
1082
  msgstr "Установки превью до записів:"
1083
 
1084
+ #: includes/class-top-10-widget.php:136
1085
+ msgid "Post types to include:"
1086
+ msgstr ""
1087
+
1088
+ #: top-10.php:756
1089
  msgid " by "
1090
  msgstr ""
1091
 
1092
+ #: top-10.php:823
1093
  #, php-format
1094
  msgid "Popular posts by <a href=\"%s\" rel=\"nofollow\" %s>Top 10 plugin</a>"
1095
  msgstr ""
1096
 
1097
+ #: top-10.php:1113
1098
  msgid "<h3>Popular Posts</h3>"
1099
  msgstr "<h3>Популярні записи</h3>"
1100
 
1101
+ #: top-10.php:1114
1102
  msgid "<h3>Daily Popular</h3>"
1103
  msgstr "<h3>Популярні сьогодні записи</h3>"
1104
 
1105
+ #: top-10.php:1115
1106
  #, fuzzy
1107
  msgid "No top posts yet"
1108
  msgstr "Скинути статистику найпопулярніших записів"
1109
 
1110
+ #: top-10.php:1507
1111
+ msgid "thumb_timthumb argument has been deprecated"
1112
+ msgstr ""
1113
+
1114
+ #: top-10.php:1511
1115
+ msgid "thumb_timthumb_q argument has been deprecated"
1116
+ msgstr ""
1117
+
1118
+ #: top-10.php:1515
1119
+ msgid "filter argument has been deprecated"
1120
+ msgstr ""
1121
+
1122
+ #: top-10.php:1853
1123
  msgid "Once Weekly"
1124
  msgstr ""
1125
 
1126
+ #: top-10.php:1857
1127
  msgid "Once Fortnightly"
1128
  msgstr ""
1129
 
1130
+ #: top-10.php:1861
1131
  msgid "Once Monthly"
1132
  msgstr ""
1133
 
1134
+ #: top-10.php:1865
1135
  msgid "Once quarterly"
1136
  msgstr ""
1137
 
1138
+ #~ msgid "Reset count"
1139
+ #~ msgstr "Скинути статистику"
1140
+
1141
  #~ msgid "Daily Popular should contain views of how many days? "
1142
  #~ msgstr ""
1143
  #~ "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
readme.txt CHANGED
@@ -3,7 +3,7 @@ Tags: popular posts, top 10, counter, top posts, daily popular, page views, stat
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
- Requires at least: 3.3
7
  Tested up to: 4.2
8
  License: GPLv2 or later
9
 
@@ -34,10 +34,19 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
34
  * **Exclusions**: Exclude posts from select categories from appearing in the top posts list. Also exclude posts by ID from appearing in the list
35
  * **Admin interface**: View list of daily and/or overall popular posts from within the dashboard. Top 10 will also add two sortable columns to your All Posts and All Pages pages in your WordPress Admin area
36
  * **Works with caching plugins** like WP-Super-Cache, W3 Total Cache or Quick Cache
37
- * **Clean uninstall**: If you choose to delete the plugin from within WP-Admin, the plugin will remove all its data. But why would you?
38
 
 
39
 
40
- If you're looking for a plugin to display related, look no further than my other plugin <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts">Contextual Related Posts</a>.
 
 
 
 
 
 
 
 
41
 
42
 
43
  == Screenshots ==
@@ -51,16 +60,31 @@ If you're looking for a plugin to display related, look no further than my other
51
  7. Top 10 widget options
52
  8. Top 10 Meta box on the Edit Post screen
53
  9. WordPress Multisite: Import Top 10 v1.x counts
54
-
55
 
56
  == Upgrade Notice ==
57
 
58
- = 2.0.3 =
59
- * Fixed: Metabox update did not work properly in v2.0; New option to keep data on uninstall.
60
-
61
 
62
  == Changelog ==
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  = 2.0.3 =
65
  * New: Options to choose if you want to delete the Top 10 options and/or data when deleting the plugin
66
  * Fixed: Metabox update did not work properly in v2.0
@@ -335,9 +359,9 @@ The plugin also provides you with a set of CSS classes that allow you to style y
335
 
336
  The following CSS classes / IDs are available:
337
 
338
- * **tptn_related**: ID of the main wrapper `div`. This is only displayed on singular pages, i.e. post, page and attachment
339
 
340
- * **tptn_related**: Class of the main wrapper `div`. If you are displaying the related posts on non-singular pages, then you should style this
341
 
342
  * **tptn_title**: Class of the `span` tag for title of the post
343
 
@@ -375,32 +399,6 @@ You can also display the number of visits using the `[tptn_views]` shortcode. Th
375
  *daily* : If set to 1, then the shortcode will return the number of _daily_ views
376
 
377
 
378
- = Filters =
379
-
380
- The plugin includes the following filters that allows you to customise the output for several section using <a href="http://codex.wordpress.org/Function_Reference/add_filter">add_filter</a>.
381
-
382
- *tptn_heading_title* : Filter for heading title of the posts. This is the text that you enter under *Output options > Title of related posts*
383
-
384
- *tptn_title* : Filter for the post title for each of the related posts
385
-
386
- I'll be adding more filters eventually. If you are looking for any particular filter do raise a post in the <a href="http://wordpress.org/support/plugin/contextual-related-posts">support forum</a> requesting the same.
387
-
388
- = How does the plugin select thumbnails? =
389
-
390
- The plugin selects thumbnails in the following order:
391
-
392
- 1. Post Thumbnail image: The image that you can set while editing your post in WordPress &raquo; New Post screen
393
-
394
- 2. Post meta field: This is the meta field value you can use when editing your post. The default is `post-image`
395
-
396
- 3. First image in the post: The plugin will try to fetch the first image in the post
397
-
398
- 3. Video Thumbnails: Meta field set by <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a>
399
-
400
- 4. Default Thumbnail: If enabled, it will use the default thumbnail that you specify in the Settings screen
401
-
402
- The plugin uses <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> to generate thumbnails by default. Depending on the configuration of your webhost you might run into certain problems. Please check out <a href="http://www.binarymoon.co.uk/2010/11/timthumb-hints-tips/">the timthumb troubleshooting page</a> regarding permission settings for the folder and files.
403
-
404
  = Manual install =
405
 
406
  You may choose to not display the post count automatically. If you do so, then in order to display the post count, you will need to add `<?php if(function_exists('echo_tptn_post_count')) echo_tptn_post_count(); ?>`.
@@ -413,9 +411,9 @@ You can also use the WordPress Widgets to display the popular posts in your side
413
 
414
  = Can this plugin replace Google Analytics? =
415
 
416
- Never. This plugin is designed to only track the number of pageviews on your blog posts and display the same. It cannot replace Google Analytics or any other full fledged statistics application.
417
 
418
- = How does the scheduled maintenance work maintenance work? =
419
 
420
  When you enabled the scheduled maintenance, Top 10 will create a cron job that will run at a predefined interval and truncate the `wp_top_ten_daily` table.
421
  *Note: If you enable this option, WordPress will execute this job when it is scheduled the first time*
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
+ Requires at least: 3.5
7
  Tested up to: 4.2
8
  License: GPLv2 or later
9
 
34
  * **Exclusions**: Exclude posts from select categories from appearing in the top posts list. Also exclude posts by ID from appearing in the list
35
  * **Admin interface**: View list of daily and/or overall popular posts from within the dashboard. Top 10 will also add two sortable columns to your All Posts and All Pages pages in your WordPress Admin area
36
  * **Works with caching plugins** like WP-Super-Cache, W3 Total Cache or Quick Cache
37
+ * **Clean uninstall**: If you choose to delete the plugin from within WP-Admin, the plugin will remove all its data if you want. But why would you?
38
 
39
+ If you're looking for a plugin to display related posts, look no further than <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts">Contextual Related Posts</a>.
40
 
41
+ = Donations =
42
+
43
+ I spend a significant amount of my free time maintaining, updating and more importantly supporting this plugin. Those who have sought support in the support forums know that I have done my best to answer your question and solve your problem.
44
+ If you have been using this plugin and find this useful, do consider making a donation. This helps me pay for my hosting and domains.
45
+
46
+ = Contribute =
47
+
48
+ Top 10 is also available on Github at https://github.com/ajaydsouza/top-10
49
+ So, if you've got some cool feature that you'd like to implement into the plugin or a bug you've been able to fix, consider forking the project and sending me a pull request.
50
 
51
 
52
  == Screenshots ==
60
  7. Top 10 widget options
61
  8. Top 10 Meta box on the Edit Post screen
62
  9. WordPress Multisite: Import Top 10 v1.x counts
63
+ 10. Reset count and tools
64
 
65
  == Upgrade Notice ==
66
 
67
+ = 2.1.0 =
68
+ * Fixed: Bug fixes; New button to merge post counts; deprecated timthumb;
69
+ Check the Changelog for more details
70
 
71
  == Changelog ==
72
 
73
+ = 2.1.0 =
74
+ * New: Button in Top 10 settings page to merge posts across blog ID 0 and 1
75
+ * New: Function & filter `get_tptn_pop_posts` that can be used to fetch the popular posts as an object or array. Perfect if you want to write custom code in your theme
76
+ * New: Support for WPML to return the correct language ID. Thanks to Tony Flags' <a href="https://wordpress.org/support/topic/top-10-and-languages-in-wpml?replies=11#post-6622085">code snippet</a>.
77
+ * New: Filter `tptn_list_count` to modify the formatted list count. See a <a href="https://gist.github.com/ajaydsouza/9f04c26814414a57fab4">working example</a>
78
+ * New: Post types can now be selected in the widget. This allows you to select top posts by post type
79
+ * Modified: Plugin will attempt to pull the correct size image when fetching the first image in a post
80
+ * Modified: Deprecated "Always display latest post count in the daily lists"
81
+ * Modified: timthumb has been deprecated. The script is no longer packaged within Top 10
82
+ * Fixed: Bug in tracking code when not using Ajax
83
+ * Fixed: Bug in admin column did not check for the blog_id
84
+ * Fixed: Bug where default thumbnail location was not correctly saved
85
+ * Fixed: Incorrect thumbnail was pulled on attachment pages
86
+ * Fixed: blog_id column of the database is correctly initialised as `DEFAULT '1'`
87
+
88
  = 2.0.3 =
89
  * New: Options to choose if you want to delete the Top 10 options and/or data when deleting the plugin
90
  * Fixed: Metabox update did not work properly in v2.0
359
 
360
  The following CSS classes / IDs are available:
361
 
362
+ * **tptn_related**: ID of the main wrapper `div`
363
 
364
+ * **tptn_posts** and **tptn_posts_daily**: Class of the main wrapper `div`. If you are displaying the related posts on non-singular pages, then you should style this
365
 
366
  * **tptn_title**: Class of the `span` tag for title of the post
367
 
399
  *daily* : If set to 1, then the shortcode will return the number of _daily_ views
400
 
401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
402
  = Manual install =
403
 
404
  You may choose to not display the post count automatically. If you do so, then in order to display the post count, you will need to add `<?php if(function_exists('echo_tptn_post_count')) echo_tptn_post_count(); ?>`.
411
 
412
  = Can this plugin replace Google Analytics? =
413
 
414
+ No. Top 10 has been designed to only track the number of pageviews on your blog posts and display the same. It cannot replace Google Analytics or any other full fledged statistics application.
415
 
416
+ = How does the scheduled maintenance work? =
417
 
418
  When you enabled the scheduled maintenance, Top 10 will create a cron job that will run at a predefined interval and truncate the `wp_top_ten_daily` table.
419
  *Note: If you enable this option, WordPress will execute this job when it is scheduled the first time*
timthumb/cache/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
timthumb/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
timthumb/timthumb.php DELETED
@@ -1,1270 +0,0 @@
1
- <?php
2
- /**
3
- * TimThumb by Ben Gillbanks and Mark Maunder
4
- * Based on work done by Tim McDaniels and Darren Hoyt
5
- * http://code.google.com/p/timthumb/
6
- *
7
- * GNU General Public License, version 2
8
- * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9
- *
10
- * Examples and documentation available on the project homepage
11
- * http://www.binarymoon.co.uk/projects/timthumb/
12
- *
13
- * $Rev$
14
- */
15
-
16
- /*
17
- * --- TimThumb CONFIGURATION ---
18
- * To edit the configs it is best to create a file called timthumb-config.php
19
- * and define variables you want to customize in there. It will automatically be
20
- * loaded by timthumb. This will save you having to re-edit these variables
21
- * everytime you download a new version
22
- */
23
- define ('VERSION', '2.8.13'); // Version of this script
24
- //Load a config file if it exists. Otherwise, use the values below
25
- if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
- if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
- if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
- if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
- if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
- if(! defined('DISPLAY_ERROR_MESSAGES') ) define ('DISPLAY_ERROR_MESSAGES', true); // Display error messages. Set to false to turn off errors (good for production websites)
31
- //Image fetching and caching
32
- if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
- if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
34
- if(! defined('FILE_CACHE_ENABLED') ) define ('FILE_CACHE_ENABLED', TRUE); // Should we store resized/modified images on disk to speed things up?
35
- if(! defined('FILE_CACHE_TIME_BETWEEN_CLEANS')) define ('FILE_CACHE_TIME_BETWEEN_CLEANS', 86400); // How often the cache is cleaned
36
-
37
- if(! defined('FILE_CACHE_MAX_FILE_AGE') ) define ('FILE_CACHE_MAX_FILE_AGE', 86400); // How old does a file have to be to be deleted from the cache
38
- if(! defined('FILE_CACHE_SUFFIX') ) define ('FILE_CACHE_SUFFIX', '.timthumb.txt'); // What to put at the end of all files in the cache directory so we can identify them
39
- if(! defined('FILE_CACHE_PREFIX') ) define ('FILE_CACHE_PREFIX', 'timthumb'); // What to put at the beg of all files in the cache directory so we can identify them
40
- if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
- if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
- if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
- if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); // Time to wait between errors fetching remote file
44
-
45
- //Browser caching
46
- if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
47
- if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
-
49
- //Image size and defaults
50
- if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
- if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
- if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
- if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
- if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
- if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
- if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
- if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
- if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
- if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
60
- if(! defined('DEFAULT_WIDTH') ) define ('DEFAULT_WIDTH', 100); // Default thumbnail width. Allows overrid in timthumb-config.php
61
- if(! defined('DEFAULT_HEIGHT') ) define ('DEFAULT_HEIGHT', 100); // Default thumbnail height. Allows overrid in timthumb-config.php
62
-
63
- /**
64
- * Additional Parameters:
65
- * LOCAL_FILE_BASE_DIRECTORY = Override the DOCUMENT_ROOT. This is best used in timthumb-config.php
66
- */
67
-
68
- //Image compression is enabled if either of these point to valid paths
69
-
70
- //These are now disabled by default because the file sizes of PNGs (and GIFs) are much smaller than we used to generate.
71
- //They only work for PNGs. GIFs and JPEGs are not affected.
72
- if(! defined('OPTIPNG_ENABLED') ) define ('OPTIPNG_ENABLED', false);
73
- if(! defined('OPTIPNG_PATH') ) define ('OPTIPNG_PATH', '/usr/bin/optipng'); //This will run first because it gives better compression than pngcrush.
74
- if(! defined('PNGCRUSH_ENABLED') ) define ('PNGCRUSH_ENABLED', false);
75
- if(! defined('PNGCRUSH_PATH') ) define ('PNGCRUSH_PATH', '/usr/bin/pngcrush'); //This will only run if OPTIPNG_PATH is not set or is not valid
76
-
77
- /*
78
- -------====Website Screenshots configuration - BETA====-------
79
-
80
- If you just want image thumbnails and don't want website screenshots, you can safely leave this as is.
81
-
82
- If you would like to get website screenshots set up, you will need root access to your own server.
83
-
84
- Enable ALLOW_ALL_EXTERNAL_SITES so you can fetch any external web page. This is more secure now that we're using a non-web folder for cache.
85
- Enable BLOCK_EXTERNAL_LEECHERS so that your site doesn't generate thumbnails for the whole Internet.
86
-
87
- Instructions to get website screenshots enabled on Ubuntu Linux:
88
-
89
- 1. Install Xvfb with the following command: sudo apt-get install subversion libqt4-webkit libqt4-dev g++ xvfb
90
- 2. Go to a directory where you can download some code
91
- 3. Check-out the latest version of CutyCapt with the following command: svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
92
- 4. Compile CutyCapt by doing: cd cutycapt/CutyCapt
93
- 5. qmake
94
- 6. make
95
- 7. cp CutyCapt /usr/local/bin/
96
- 8. Test it by running: xvfb-run --server-args="-screen 0, 1024x768x24" CutyCapt --url="http://markmaunder.com/" --out=test.png
97
- 9. If you get a file called test.png with something in it, it probably worked. Now test the script by accessing it as follows:
98
- 10. http://yoursite.com/path/to/timthumb.php?src=http://markmaunder.com/&webshot=1
99
-
100
- Notes on performance:
101
- The first time a webshot loads, it will take a few seconds.
102
- From then on it uses the regular timthumb caching mechanism with the configurable options above
103
- and loading will be very fast.
104
-
105
- --ADVANCED USERS ONLY--
106
- If you'd like a slight speedup (about 25%) and you know Linux, you can run the following command which will keep Xvfb running in the background.
107
- nohup Xvfb :100 -ac -nolisten tcp -screen 0, 1024x768x24 > /dev/null 2>&1 &
108
- Then set WEBSHOT_XVFB_RUNNING = true below. This will save your server having to fire off a new Xvfb server and shut it down every time a new shot is generated.
109
- You will need to take responsibility for keeping Xvfb running in case it crashes. (It seems pretty stable)
110
- You will also need to take responsibility for server security if you're running Xvfb as root.
111
-
112
-
113
- */
114
- if(! defined('WEBSHOT_ENABLED') ) define ('WEBSHOT_ENABLED', false); //Beta feature. Adding webshot=1 to your query string will cause the script to return a browser screenshot rather than try to fetch an image.
115
- if(! defined('WEBSHOT_CUTYCAPT') ) define ('WEBSHOT_CUTYCAPT', '/usr/local/bin/CutyCapt'); //The path to CutyCapt.
116
- if(! defined('WEBSHOT_XVFB') ) define ('WEBSHOT_XVFB', '/usr/bin/xvfb-run'); //The path to the Xvfb server
117
- if(! defined('WEBSHOT_SCREEN_X') ) define ('WEBSHOT_SCREEN_X', '1024'); //1024 works ok
118
- if(! defined('WEBSHOT_SCREEN_Y') ) define ('WEBSHOT_SCREEN_Y', '768'); //768 works ok
119
- if(! defined('WEBSHOT_COLOR_DEPTH') ) define ('WEBSHOT_COLOR_DEPTH', '24'); //I haven't tested anything besides 24
120
- if(! defined('WEBSHOT_IMAGE_FORMAT') ) define ('WEBSHOT_IMAGE_FORMAT', 'png'); //png is about 2.5 times the size of jpg but is a LOT better quality
121
- if(! defined('WEBSHOT_TIMEOUT') ) define ('WEBSHOT_TIMEOUT', '20'); //Seconds to wait for a webshot
122
- if(! defined('WEBSHOT_USER_AGENT') ) define ('WEBSHOT_USER_AGENT', "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18"); //I hate to do this, but a non-browser robot user agent might not show what humans see. So we pretend to be Firefox
123
- if(! defined('WEBSHOT_JAVASCRIPT_ON') ) define ('WEBSHOT_JAVASCRIPT_ON', true); //Setting to false might give you a slight speedup and block ads. But it could cause other issues.
124
- if(! defined('WEBSHOT_JAVA_ON') ) define ('WEBSHOT_JAVA_ON', false); //Have only tested this as fase
125
- if(! defined('WEBSHOT_PLUGINS_ON') ) define ('WEBSHOT_PLUGINS_ON', true); //Enable flash and other plugins
126
- if(! defined('WEBSHOT_PROXY') ) define ('WEBSHOT_PROXY', ''); //In case you're behind a proxy server.
127
- if(! defined('WEBSHOT_XVFB_RUNNING') ) define ('WEBSHOT_XVFB_RUNNING', false); //ADVANCED: Enable this if you've got Xvfb running in the background.
128
-
129
-
130
- // If ALLOW_EXTERNAL is true and ALLOW_ALL_EXTERNAL_SITES is false, then external images will only be fetched from these domains and their subdomains.
131
- if(! isset($ALLOWED_SITES)){
132
- $ALLOWED_SITES = array (
133
- 'flickr.com',
134
- 'staticflickr.com',
135
- 'picasa.com',
136
- 'img.youtube.com',
137
- 'upload.wikimedia.org',
138
- 'photobucket.com',
139
- 'imgur.com',
140
- 'imageshack.us',
141
- 'tinypic.com',
142
- 'wordpress.com',
143
- 'wordpress.org',
144
- 'wp.com',
145
- 's3.amazonaws.com',
146
- 'w.org',
147
- 'github.com',
148
- );
149
- }
150
- // -------------------------------------------------------------
151
- // -------------- STOP EDITING CONFIGURATION HERE --------------
152
- // -------------------------------------------------------------
153
-
154
- timthumb::start();
155
-
156
- class timthumb {
157
- protected $src = "";
158
- protected $is404 = false;
159
- protected $docRoot = "";
160
- protected $lastURLError = false;
161
- protected $localImage = "";
162
- protected $localImageMTime = 0;
163
- protected $url = false;
164
- protected $myHost = "";
165
- protected $isURL = false;
166
- protected $cachefile = '';
167
- protected $errors = array();
168
- protected $toDeletes = array();
169
- protected $cacheDirectory = '';
170
- protected $startTime = 0;
171
- protected $lastBenchTime = 0;
172
- protected $cropTop = false;
173
- protected $salt = "";
174
- protected $fileCacheVersion = 1; //Generally if timthumb.php is modifed (upgraded) then the salt changes and all cache files are recreated. This is a backup mechanism to force regen.
175
- protected $filePrependSecurityBlock = "<?php die('Execution denied!'); //"; //Designed to have three letter mime type, space, question mark and greater than symbol appended. 6 bytes total.
176
- protected static $curlDataWritten = 0;
177
- protected static $curlFH = false;
178
- public static function start(){
179
- $tim = new timthumb();
180
- $tim->handleErrors();
181
- $tim->securityChecks();
182
- if($tim->tryBrowserCache()){
183
- exit(0);
184
- }
185
- $tim->handleErrors();
186
- if(FILE_CACHE_ENABLED && $tim->tryServerCache()){
187
- exit(0);
188
- }
189
- $tim->handleErrors();
190
- $tim->run();
191
- $tim->handleErrors();
192
- exit(0);
193
- }
194
- public function __construct(){
195
- global $ALLOWED_SITES;
196
- $this->startTime = microtime(true);
197
- date_default_timezone_set('UTC');
198
- $this->debug(1, "Starting new request from " . $this->getIP() . " to " . $_SERVER['REQUEST_URI']);
199
- $this->calcDocRoot();
200
- //On windows systems I'm assuming fileinode returns an empty string or a number that doesn't change. Check this.
201
- $this->salt = @filemtime(__FILE__) . '-' . @fileinode(__FILE__);
202
- $this->debug(3, "Salt is: " . $this->salt);
203
- if(FILE_CACHE_DIRECTORY){
204
- if(! is_dir(FILE_CACHE_DIRECTORY)){
205
- @mkdir(FILE_CACHE_DIRECTORY);
206
- if(! is_dir(FILE_CACHE_DIRECTORY)){
207
- $this->error("Could not create the file cache directory.");
208
- return false;
209
- }
210
- }
211
- $this->cacheDirectory = FILE_CACHE_DIRECTORY;
212
- if (!touch($this->cacheDirectory . '/index.html')) {
213
- $this->error("Could not create the index.html file - to fix this create an empty file named index.html file in the cache directory.");
214
- }
215
- } else {
216
- $this->cacheDirectory = sys_get_temp_dir();
217
- }
218
- //Clean the cache before we do anything because we don't want the first visitor after FILE_CACHE_TIME_BETWEEN_CLEANS expires to get a stale image.
219
- $this->cleanCache();
220
-
221
- $this->myHost = preg_replace('/^www\./i', '', $_SERVER['HTTP_HOST']);
222
- $this->src = $this->param('src');
223
- $this->url = parse_url($this->src);
224
- $this->src = preg_replace('/https?:\/\/(?:www\.)?' . $this->myHost . '/i', '', $this->src);
225
-
226
- if(strlen($this->src) <= 3){
227
- $this->error("No image specified");
228
- return false;
229
- }
230
- if(BLOCK_EXTERNAL_LEECHERS && array_key_exists('HTTP_REFERER', $_SERVER) && (! preg_match('/^https?:\/\/(?:www\.)?' . $this->myHost . '(?:$|\/)/i', $_SERVER['HTTP_REFERER']))){
231
- // base64 encoded red image that says 'no hotlinkers'
232
- // nothing to worry about! :)
233
- $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
234
- header('Content-Type: image/gif');
235
- header('Content-Length: ' . strlen($imgData));
236
- header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
237
- header("Pragma: no-cache");
238
- header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
239
- echo $imgData;
240
- return false;
241
- exit(0);
242
- }
243
- if(preg_match('/^https?:\/\/[^\/]+/i', $this->src)){
244
- $this->debug(2, "Is a request for an external URL: " . $this->src);
245
- $this->isURL = true;
246
- } else {
247
- $this->debug(2, "Is a request for an internal file: " . $this->src);
248
- }
249
- if($this->isURL && (! ALLOW_EXTERNAL)){
250
- $this->error("You are not allowed to fetch images from an external website.");
251
- return false;
252
- }
253
- if($this->isURL){
254
- if(ALLOW_ALL_EXTERNAL_SITES){
255
- $this->debug(2, "Fetching from all external sites is enabled.");
256
- } else {
257
- $this->debug(2, "Fetching only from selected external sites is enabled.");
258
- $allowed = false;
259
- foreach($ALLOWED_SITES as $site){
260
- if ((strtolower(substr($this->url['host'],-strlen($site)-1)) === strtolower(".$site")) || (strtolower($this->url['host'])===strtolower($site))) {
261
- $this->debug(3, "URL hostname {$this->url['host']} matches $site so allowing.");
262
- $allowed = true;
263
- }
264
- }
265
- if(! $allowed){
266
- return $this->error("You may not fetch images from that site. To enable this site in timthumb, you can either add it to \$ALLOWED_SITES and set ALLOW_EXTERNAL=true. Or you can set ALLOW_ALL_EXTERNAL_SITES=true, depending on your security needs.");
267
- }
268
- }
269
- }
270
-
271
- $cachePrefix = ($this->isURL ? '_ext_' : '_int_');
272
- if($this->isURL){
273
- $arr = explode('&', $_SERVER ['QUERY_STRING']);
274
- asort($arr);
275
- $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . implode('', $arr) . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
276
- } else {
277
- $this->localImage = $this->getLocalImagePath($this->src);
278
- if(! $this->localImage){
279
- $this->debug(1, "Could not find the local image: {$this->localImage}");
280
- $this->error("Could not find the internal image you specified.");
281
- $this->set404();
282
- return false;
283
- }
284
- $this->debug(1, "Local image path is {$this->localImage}");
285
- $this->localImageMTime = @filemtime($this->localImage);
286
- //We include the mtime of the local file in case in changes on disk.
287
- $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . $this->localImageMTime . $_SERVER ['QUERY_STRING'] . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
288
- }
289
- $this->debug(2, "Cache file is: " . $this->cachefile);
290
-
291
- return true;
292
- }
293
- public function __destruct(){
294
- foreach($this->toDeletes as $del){
295
- $this->debug(2, "Deleting temp file $del");
296
- @unlink($del);
297
- }
298
- }
299
- public function run(){
300
- if($this->isURL){
301
- if(! ALLOW_EXTERNAL){
302
- $this->debug(1, "Got a request for an external image but ALLOW_EXTERNAL is disabled so returning error msg.");
303
- $this->error("You are not allowed to fetch images from an external website.");
304
- return false;
305
- }
306
- $this->debug(3, "Got request for external image. Starting serveExternalImage.");
307
- if($this->param('webshot')){
308
- if(WEBSHOT_ENABLED){
309
- $this->debug(3, "webshot param is set, so we're going to take a webshot.");
310
- $this->serveWebshot();
311
- } else {
312
- $this->error("You added the webshot parameter but webshots are disabled on this server. You need to set WEBSHOT_ENABLED == true to enable webshots.");
313
- }
314
- } else {
315
- $this->debug(3, "webshot is NOT set so we're going to try to fetch a regular image.");
316
- $this->serveExternalImage();
317
-
318
- }
319
- } else {
320
- $this->debug(3, "Got request for internal image. Starting serveInternalImage()");
321
- $this->serveInternalImage();
322
- }
323
- return true;
324
- }
325
- protected function handleErrors(){
326
- if($this->haveErrors()){
327
- if(NOT_FOUND_IMAGE && $this->is404()){
328
- if($this->serveImg(NOT_FOUND_IMAGE)){
329
- exit(0);
330
- } else {
331
- $this->error("Additionally, the 404 image that is configured could not be found or there was an error serving it.");
332
- }
333
- }
334
- if(ERROR_IMAGE){
335
- if($this->serveImg(ERROR_IMAGE)){
336
- exit(0);
337
- } else {
338
- $this->error("Additionally, the error image that is configured could not be found or there was an error serving it.");
339
- }
340
- }
341
- $this->serveErrors();
342
- exit(0);
343
- }
344
- return false;
345
- }
346
- protected function tryBrowserCache(){
347
- if(BROWSER_CACHE_DISABLE){ $this->debug(3, "Browser caching is disabled"); return false; }
348
- if(!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ){
349
- $this->debug(3, "Got a conditional get");
350
- $mtime = false;
351
- //We've already checked if the real file exists in the constructor
352
- if(! is_file($this->cachefile)){
353
- //If we don't have something cached, regenerate the cached image.
354
- return false;
355
- }
356
- if($this->localImageMTime){
357
- $mtime = $this->localImageMTime;
358
- $this->debug(3, "Local real file's modification time is $mtime");
359
- } else if(is_file($this->cachefile)){ //If it's not a local request then use the mtime of the cached file to determine the 304
360
- $mtime = @filemtime($this->cachefile);
361
- $this->debug(3, "Cached file's modification time is $mtime");
362
- }
363
- if(! $mtime){ return false; }
364
-
365
- $iftime = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
366
- $this->debug(3, "The conditional get's if-modified-since unixtime is $iftime");
367
- if($iftime < 1){
368
- $this->debug(3, "Got an invalid conditional get modified since time. Returning false.");
369
- return false;
370
- }
371
- if($iftime < $mtime){ //Real file or cache file has been modified since last request, so force refetch.
372
- $this->debug(3, "File has been modified since last fetch.");
373
- return false;
374
- } else { //Otherwise serve a 304
375
- $this->debug(3, "File has not been modified since last get, so serving a 304.");
376
- header ($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified');
377
- $this->debug(1, "Returning 304 not modified");
378
- return true;
379
- }
380
- }
381
- return false;
382
- }
383
- protected function tryServerCache(){
384
- $this->debug(3, "Trying server cache");
385
- if(file_exists($this->cachefile)){
386
- $this->debug(3, "Cachefile {$this->cachefile} exists");
387
- if($this->isURL){
388
- $this->debug(3, "This is an external request, so checking if the cachefile is empty which means the request failed previously.");
389
- if(filesize($this->cachefile) < 1){
390
- $this->debug(3, "Found an empty cachefile indicating a failed earlier request. Checking how old it is.");
391
- //Fetching error occured previously
392
- if(time() - @filemtime($this->cachefile) > WAIT_BETWEEN_FETCH_ERRORS){
393
- $this->debug(3, "File is older than " . WAIT_BETWEEN_FETCH_ERRORS . " seconds. Deleting and returning false so app can try and load file.");
394
- @unlink($this->cachefile);
395
- return false; //to indicate we didn't serve from cache and app should try and load
396
- } else {
397
- $this->debug(3, "Empty cachefile is still fresh so returning message saying we had an error fetching this image from remote host.");
398
- $this->set404();
399
- $this->error("An error occured fetching image.");
400
- return false;
401
- }
402
- }
403
- } else {
404
- $this->debug(3, "Trying to serve cachefile {$this->cachefile}");
405
- }
406
- if($this->serveCacheFile()){
407
- $this->debug(3, "Succesfully served cachefile {$this->cachefile}");
408
- return true;
409
- } else {
410
- $this->debug(3, "Failed to serve cachefile {$this->cachefile} - Deleting it from cache.");
411
- //Image serving failed. We can't retry at this point, but lets remove it from cache so the next request recreates it
412
- @unlink($this->cachefile);
413
- return true;
414
- }
415
- }
416
- }
417
- protected function error($err){
418
- $this->debug(3, "Adding error message: $err");
419
- $this->errors[] = $err;
420
- return false;
421
-
422
- }
423
- protected function haveErrors(){
424
- if(sizeof($this->errors) > 0){
425
- return true;
426
- }
427
- return false;
428
- }
429
- protected function serveErrors(){
430
- header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
431
- if ( ! DISPLAY_ERROR_MESSAGES ) {
432
- return;
433
- }
434
- $html = '<ul>';
435
- foreach($this->errors as $err){
436
- $html .= '<li>' . htmlentities($err) . '</li>';
437
- }
438
- $html .= '</ul>';
439
- echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
440
- echo '<br />Query String : ' . htmlentities( $_SERVER['QUERY_STRING'], ENT_QUOTES );
441
- echo '<br />TimThumb version : ' . VERSION . '</pre>';
442
- }
443
- protected function serveInternalImage(){
444
- $this->debug(3, "Local image path is $this->localImage");
445
- if(! $this->localImage){
446
- $this->sanityFail("localImage not set after verifying it earlier in the code.");
447
- return false;
448
- }
449
- $fileSize = filesize($this->localImage);
450
- if($fileSize > MAX_FILE_SIZE){
451
- $this->error("The file you specified is greater than the maximum allowed file size.");
452
- return false;
453
- }
454
- if($fileSize <= 0){
455
- $this->error("The file you specified is <= 0 bytes.");
456
- return false;
457
- }
458
- $this->debug(3, "Calling processImageAndWriteToCache() for local image.");
459
- if($this->processImageAndWriteToCache($this->localImage)){
460
- $this->serveCacheFile();
461
- return true;
462
- } else {
463
- return false;
464
- }
465
- }
466
- protected function cleanCache(){
467
- if (FILE_CACHE_TIME_BETWEEN_CLEANS < 0) {
468
- return;
469
- }
470
- $this->debug(3, "cleanCache() called");
471
- $lastCleanFile = $this->cacheDirectory . '/timthumb_cacheLastCleanTime.touch';
472
-
473
- //If this is a new timthumb installation we need to create the file
474
- if(! is_file($lastCleanFile)){
475
- $this->debug(1, "File tracking last clean doesn't exist. Creating $lastCleanFile");
476
- if (!touch($lastCleanFile)) {
477
- $this->error("Could not create cache clean timestamp file.");
478
- }
479
- return;
480
- }
481
- if(@filemtime($lastCleanFile) < (time() - FILE_CACHE_TIME_BETWEEN_CLEANS) ){ //Cache was last cleaned more than 1 day ago
482
- $this->debug(1, "Cache was last cleaned more than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago. Cleaning now.");
483
- // Very slight race condition here, but worst case we'll have 2 or 3 servers cleaning the cache simultaneously once a day.
484
- if (!touch($lastCleanFile)) {
485
- $this->error("Could not create cache clean timestamp file.");
486
- }
487
- $files = glob($this->cacheDirectory . '/*' . FILE_CACHE_SUFFIX);
488
- if ($files) {
489
- $timeAgo = time() - FILE_CACHE_MAX_FILE_AGE;
490
- foreach($files as $file){
491
- if(@filemtime($file) < $timeAgo){
492
- $this->debug(3, "Deleting cache file $file older than max age: " . FILE_CACHE_MAX_FILE_AGE . " seconds");
493
- @unlink($file);
494
- }
495
- }
496
- }
497
- return true;
498
- } else {
499
- $this->debug(3, "Cache was cleaned less than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago so no cleaning needed.");
500
- }
501
- return false;
502
- }
503
- protected function processImageAndWriteToCache($localImage){
504
- $sData = getimagesize($localImage);
505
- $origType = $sData[2];
506
- $mimeType = $sData['mime'];
507
-
508
- $this->debug(3, "Mime type of image is $mimeType");
509
- if(! preg_match('/^image\/(?:gif|jpg|jpeg|png)$/i', $mimeType)){
510
- return $this->error("The image being resized is not a valid gif, jpg or png.");
511
- }
512
-
513
- if (!function_exists ('imagecreatetruecolor')) {
514
- return $this->error('GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library');
515
- }
516
-
517
- if (function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
518
- $imageFilters = array (
519
- 1 => array (IMG_FILTER_NEGATE, 0),
520
- 2 => array (IMG_FILTER_GRAYSCALE, 0),
521
- 3 => array (IMG_FILTER_BRIGHTNESS, 1),
522
- 4 => array (IMG_FILTER_CONTRAST, 1),
523
- 5 => array (IMG_FILTER_COLORIZE, 4),
524
- 6 => array (IMG_FILTER_EDGEDETECT, 0),
525
- 7 => array (IMG_FILTER_EMBOSS, 0),
526
- 8 => array (IMG_FILTER_GAUSSIAN_BLUR, 0),
527
- 9 => array (IMG_FILTER_SELECTIVE_BLUR, 0),
528
- 10 => array (IMG_FILTER_MEAN_REMOVAL, 0),
529
- 11 => array (IMG_FILTER_SMOOTH, 0),
530
- );
531
- }
532
-
533
- // get standard input properties
534
- $new_width = (int) abs ($this->param('w', 0));
535
- $new_height = (int) abs ($this->param('h', 0));
536
- $zoom_crop = (int) $this->param('zc', DEFAULT_ZC);
537
- $quality = (int) abs ($this->param('q', DEFAULT_Q));
538
- $align = $this->cropTop ? 't' : $this->param('a', 'c');
539
- $filters = $this->param('f', DEFAULT_F);
540
- $sharpen = (bool) $this->param('s', DEFAULT_S);
541
- $canvas_color = $this->param('cc', DEFAULT_CC);
542
- $canvas_trans = (bool) $this->param('ct', '1');
543
-
544
- // set default width and height if neither are set already
545
- if ($new_width == 0 && $new_height == 0) {
546
- $new_width = (int) DEFAULT_WIDTH;
547
- $new_height = (int) DEFAULT_HEIGHT;
548
- }
549
-
550
- // ensure size limits can not be abused
551
- $new_width = min ($new_width, MAX_WIDTH);
552
- $new_height = min ($new_height, MAX_HEIGHT);
553
-
554
- // set memory limit to be able to have enough space to resize larger images
555
- $this->setMemoryLimit();
556
-
557
- // open the existing image
558
- $image = $this->openImage ($mimeType, $localImage);
559
- if ($image === false) {
560
- return $this->error('Unable to open image.');
561
- }
562
-
563
- // Get original width and height
564
- $width = imagesx ($image);
565
- $height = imagesy ($image);
566
- $origin_x = 0;
567
- $origin_y = 0;
568
-
569
- // generate new w/h if not provided
570
- if ($new_width && !$new_height) {
571
- $new_height = floor ($height * ($new_width / $width));
572
- } else if ($new_height && !$new_width) {
573
- $new_width = floor ($width * ($new_height / $height));
574
- }
575
-
576
- // scale down and add borders
577
- if ($zoom_crop == 3) {
578
-
579
- $final_height = $height * ($new_width / $width);
580
-
581
- if ($final_height > $new_height) {
582
- $new_width = $width * ($new_height / $height);
583
- } else {
584
- $new_height = $final_height;
585
- }
586
-
587
- }
588
-
589
- // create a new true color image
590
- $canvas = imagecreatetruecolor ($new_width, $new_height);
591
- imagealphablending ($canvas, false);
592
-
593
- if (strlen($canvas_color) == 3) { //if is 3-char notation, edit string into 6-char notation
594
- $canvas_color = str_repeat(substr($canvas_color, 0, 1), 2) . str_repeat(substr($canvas_color, 1, 1), 2) . str_repeat(substr($canvas_color, 2, 1), 2);
595
- } else if (strlen($canvas_color) != 6) {
596
- $canvas_color = DEFAULT_CC; // on error return default canvas color
597
- }
598
-
599
- $canvas_color_R = hexdec (substr ($canvas_color, 0, 2));
600
- $canvas_color_G = hexdec (substr ($canvas_color, 2, 2));
601
- $canvas_color_B = hexdec (substr ($canvas_color, 4, 2));
602
-
603
- // Create a new transparent color for image
604
- // If is a png and PNG_IS_TRANSPARENT is false then remove the alpha transparency
605
- // (and if is set a canvas color show it in the background)
606
- if(preg_match('/^image\/png$/i', $mimeType) && !PNG_IS_TRANSPARENT && $canvas_trans){
607
- $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 127);
608
- }else{
609
- $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 0);
610
- }
611
-
612
-
613
- // Completely fill the background of the new image with allocated color.
614
- imagefill ($canvas, 0, 0, $color);
615
-
616
- // scale down and add borders
617
- if ($zoom_crop == 2) {
618
-
619
- $final_height = $height * ($new_width / $width);
620
-
621
- if ($final_height > $new_height) {
622
-
623
- $origin_x = $new_width / 2;
624
- $new_width = $width * ($new_height / $height);
625
- $origin_x = round ($origin_x - ($new_width / 2));
626
-
627
- } else {
628
-
629
- $origin_y = $new_height / 2;
630
- $new_height = $final_height;
631
- $origin_y = round ($origin_y - ($new_height / 2));
632
-
633
- }
634
-
635
- }
636
-
637
- // Restore transparency blending
638
- imagesavealpha ($canvas, true);
639
-
640
- if ($zoom_crop > 0) {
641
-
642
- $src_x = $src_y = 0;
643
- $src_w = $width;
644
- $src_h = $height;
645
-
646
- $cmp_x = $width / $new_width;
647
- $cmp_y = $height / $new_height;
648
-
649
- // calculate x or y coordinate and width or height of source
650
- if ($cmp_x > $cmp_y) {
651
-
652
- $src_w = round ($width / $cmp_x * $cmp_y);
653
- $src_x = round (($width - ($width / $cmp_x * $cmp_y)) / 2);
654
-
655
- } else if ($cmp_y > $cmp_x) {
656
-
657
- $src_h = round ($height / $cmp_y * $cmp_x);
658
- $src_y = round (($height - ($height / $cmp_y * $cmp_x)) / 2);
659
-
660
- }
661
-
662
- // positional cropping!
663
- if ($align) {
664
- if (strpos ($align, 't') !== false) {
665
- $src_y = 0;
666
- }
667
- if (strpos ($align, 'b') !== false) {
668
- $src_y = $height - $src_h;
669
- }
670
- if (strpos ($align, 'l') !== false) {
671
- $src_x = 0;
672
- }
673
- if (strpos ($align, 'r') !== false) {
674
- $src_x = $width - $src_w;
675
- }
676
- }
677
-
678
- imagecopyresampled ($canvas, $image, $origin_x, $origin_y, $src_x, $src_y, $new_width, $new_height, $src_w, $src_h);
679
-
680
- } else {
681
-
682
- // copy and resize part of an image with resampling
683
- imagecopyresampled ($canvas, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
684
-
685
- }
686
-
687
- if ($filters != '' && function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
688
- // apply filters to image
689
- $filterList = explode ('|', $filters);
690
- foreach ($filterList as $fl) {
691
-
692
- $filterSettings = explode (',', $fl);
693
- if (isset ($imageFilters[$filterSettings[0]])) {
694
-
695
- for ($i = 0; $i < 4; $i ++) {
696
- if (!isset ($filterSettings[$i])) {
697
- $filterSettings[$i] = null;
698
- } else {
699
- $filterSettings[$i] = (int) $filterSettings[$i];
700
- }
701
- }
702
-
703
- switch ($imageFilters[$filterSettings[0]][1]) {
704
-
705
- case 1:
706
-
707
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1]);
708
- break;
709
-
710
- case 2:
711
-
712
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2]);
713
- break;
714
-
715
- case 3:
716
-
717
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3]);
718
- break;
719
-
720
- case 4:
721
-
722
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3], $filterSettings[4]);
723
- break;
724
-
725
- default:
726
-
727
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0]);
728
- break;
729
-
730
- }
731
- }
732
- }
733
- }
734
-
735
- // sharpen image
736
- if ($sharpen && function_exists ('imageconvolution')) {
737
-
738
- $sharpenMatrix = array (
739
- array (-1,-1,-1),
740
- array (-1,16,-1),
741
- array (-1,-1,-1),
742
- );
743
-
744
- $divisor = 8;
745
- $offset = 0;
746
-
747
- imageconvolution ($canvas, $sharpenMatrix, $divisor, $offset);
748
-
749
- }
750
- //Straight from Wordpress core code. Reduces filesize by up to 70% for PNG's
751
- if ( (IMAGETYPE_PNG == $origType || IMAGETYPE_GIF == $origType) && function_exists('imageistruecolor') && !imageistruecolor( $image ) && imagecolortransparent( $image ) > 0 ){
752
- imagetruecolortopalette( $canvas, false, imagecolorstotal( $image ) );
753
- }
754
-
755
- $imgType = "";
756
- $tempfile = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
757
- if(preg_match('/^image\/(?:jpg|jpeg)$/i', $mimeType)){
758
- $imgType = 'jpg';
759
- imagejpeg($canvas, $tempfile, $quality);
760
- } else if(preg_match('/^image\/png$/i', $mimeType)){
761
- $imgType = 'png';
762
- imagepng($canvas, $tempfile, floor($quality * 0.09));
763
- } else if(preg_match('/^image\/gif$/i', $mimeType)){
764
- $imgType = 'gif';
765
- imagegif($canvas, $tempfile);
766
- } else {
767
- return $this->sanityFail("Could not match mime type after verifying it previously.");
768
- }
769
-
770
- if($imgType == 'png' && OPTIPNG_ENABLED && OPTIPNG_PATH && @is_file(OPTIPNG_PATH)){
771
- $exec = OPTIPNG_PATH;
772
- $this->debug(3, "optipng'ing $tempfile");
773
- $presize = filesize($tempfile);
774
- $out = `$exec -o1 $tempfile`; //you can use up to -o7 but it really slows things down
775
- clearstatcache();
776
- $aftersize = filesize($tempfile);
777
- $sizeDrop = $presize - $aftersize;
778
- if($sizeDrop > 0){
779
- $this->debug(1, "optipng reduced size by $sizeDrop");
780
- } else if($sizeDrop < 0){
781
- $this->debug(1, "optipng increased size! Difference was: $sizeDrop");
782
- } else {
783
- $this->debug(1, "optipng did not change image size.");
784
- }
785
- } else if($imgType == 'png' && PNGCRUSH_ENABLED && PNGCRUSH_PATH && @is_file(PNGCRUSH_PATH)){
786
- $exec = PNGCRUSH_PATH;
787
- $tempfile2 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
788
- $this->debug(3, "pngcrush'ing $tempfile to $tempfile2");
789
- $out = `$exec $tempfile $tempfile2`;
790
- $todel = "";
791
- if(is_file($tempfile2)){
792
- $sizeDrop = filesize($tempfile) - filesize($tempfile2);
793
- if($sizeDrop > 0){
794
- $this->debug(1, "pngcrush was succesful and gave a $sizeDrop byte size reduction");
795
- $todel = $tempfile;
796
- $tempfile = $tempfile2;
797
- } else {
798
- $this->debug(1, "pngcrush did not reduce file size. Difference was $sizeDrop bytes.");
799
- $todel = $tempfile2;
800
- }
801
- } else {
802
- $this->debug(3, "pngcrush failed with output: $out");
803
- $todel = $tempfile2;
804
- }
805
- @unlink($todel);
806
- }
807
-
808
- $this->debug(3, "Rewriting image with security header.");
809
- $tempfile4 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
810
- $context = stream_context_create ();
811
- $fp = fopen($tempfile,'r',0,$context);
812
- file_put_contents($tempfile4, $this->filePrependSecurityBlock . $imgType . ' ?' . '>'); //6 extra bytes, first 3 being image type
813
- file_put_contents($tempfile4, $fp, FILE_APPEND);
814
- fclose($fp);
815
- @unlink($tempfile);
816
- $this->debug(3, "Locking and replacing cache file.");
817
- $lockFile = $this->cachefile . '.lock';
818
- $fh = fopen($lockFile, 'w');
819
- if(! $fh){
820
- return $this->error("Could not open the lockfile for writing an image.");
821
- }
822
- if(flock($fh, LOCK_EX)){
823
- @unlink($this->cachefile); //rename generally overwrites, but doing this in case of platform specific quirks. File might not exist yet.
824
- rename($tempfile4, $this->cachefile);
825
- flock($fh, LOCK_UN);
826
- fclose($fh);
827
- @unlink($lockFile);
828
- } else {
829
- fclose($fh);
830
- @unlink($lockFile);
831
- @unlink($tempfile4);
832
- return $this->error("Could not get a lock for writing.");
833
- }
834
- $this->debug(3, "Done image replace with security header. Cleaning up and running cleanCache()");
835
- imagedestroy($canvas);
836
- imagedestroy($image);
837
- return true;
838
- }
839
- protected function calcDocRoot(){
840
- $docRoot = @$_SERVER['DOCUMENT_ROOT'];
841
- if (defined('LOCAL_FILE_BASE_DIRECTORY')) {
842
- $docRoot = LOCAL_FILE_BASE_DIRECTORY;
843
- }
844
- if(!isset($docRoot)){
845
- $this->debug(3, "DOCUMENT_ROOT is not set. This is probably windows. Starting search 1.");
846
- if(isset($_SERVER['SCRIPT_FILENAME'])){
847
- $docRoot = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
848
- $this->debug(3, "Generated docRoot using SCRIPT_FILENAME and PHP_SELF as: $docRoot");
849
- }
850
- }
851
- if(!isset($docRoot)){
852
- $this->debug(3, "DOCUMENT_ROOT still is not set. Starting search 2.");
853
- if(isset($_SERVER['PATH_TRANSLATED'])){
854
- $docRoot = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
855
- $this->debug(3, "Generated docRoot using PATH_TRANSLATED and PHP_SELF as: $docRoot");
856
- }
857
- }
858
- if($docRoot && $_SERVER['DOCUMENT_ROOT'] != '/'){ $docRoot = preg_replace('/\/$/', '', $docRoot); }
859
- $this->debug(3, "Doc root is: " . $docRoot);
860
- $this->docRoot = $docRoot;
861
-
862
- }
863
- protected function getLocalImagePath($src){
864
- $src = ltrim($src, '/'); //strip off the leading '/'
865
- if(! $this->docRoot){
866
- $this->debug(3, "We have no document root set, so as a last resort, lets check if the image is in the current dir and serve that.");
867
- //We don't support serving images outside the current dir if we don't have a doc root for security reasons.
868
- $file = preg_replace('/^.*?([^\/\\\\]+)$/', '$1', $src); //strip off any path info and just leave the filename.
869
- if(is_file($file)){
870
- return $this->realpath($file);
871
- }
872
- return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
873
- } else if ( ! is_dir( $this->docRoot ) ) {
874
- $this->error("Server path does not exist. Ensure variable \$_SERVER['DOCUMENT_ROOT'] is set correctly");
875
- }
876
-
877
- //Do not go past this point without docRoot set
878
-
879
- //Try src under docRoot
880
- if(file_exists ($this->docRoot . '/' . $src)) {
881
- $this->debug(3, "Found file as " . $this->docRoot . '/' . $src);
882
- $real = $this->realpath($this->docRoot . '/' . $src);
883
- if(stripos($real, $this->docRoot) === 0){
884
- return $real;
885
- } else {
886
- $this->debug(1, "Security block: The file specified occurs outside the document root.");
887
- //allow search to continue
888
- }
889
- }
890
- //Check absolute paths and then verify the real path is under doc root
891
- $absolute = $this->realpath('/' . $src);
892
- if($absolute && file_exists($absolute)){ //realpath does file_exists check, so can probably skip the exists check here
893
- $this->debug(3, "Found absolute path: $absolute");
894
- if(! $this->docRoot){ $this->sanityFail("docRoot not set when checking absolute path."); }
895
- if(stripos($absolute, $this->docRoot) === 0){
896
- return $absolute;
897
- } else {
898
- $this->debug(1, "Security block: The file specified occurs outside the document root.");
899
- //and continue search
900
- }
901
- }
902
-
903
- $base = $this->docRoot;
904
-
905
- // account for Windows directory structure
906
- if (strstr($_SERVER['SCRIPT_FILENAME'],':')) {
907
- $sub_directories = explode('\\', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
908
- } else {
909
- $sub_directories = explode('/', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
910
- }
911
-
912
- foreach ($sub_directories as $sub){
913
- $base .= $sub . '/';
914
- $this->debug(3, "Trying file as: " . $base . $src);
915
- if(file_exists($base . $src)){
916
- $this->debug(3, "Found file as: " . $base . $src);
917
- $real = $this->realpath($base . $src);
918
- if(stripos($real, $this->realpath($this->docRoot)) === 0){
919
- return $real;
920
- } else {
921
- $this->debug(1, "Security block: The file specified occurs outside the document root.");
922
- //And continue search
923
- }
924
- }
925
- }
926
- return false;
927
- }
928
- protected function realpath($path){
929
- //try to remove any relative paths
930
- $remove_relatives = '/\w+\/\.\.\//';
931
- while(preg_match($remove_relatives,$path)){
932
- $path = preg_replace($remove_relatives, '', $path);
933
- }
934
- //if any remain use PHP realpath to strip them out, otherwise return $path
935
- //if using realpath, any symlinks will also be resolved
936
- return preg_match('#^\.\./|/\.\./#', $path) ? realpath($path) : $path;
937
- }
938
- protected function toDelete($name){
939
- $this->debug(3, "Scheduling file $name to delete on destruct.");
940
- $this->toDeletes[] = $name;
941
- }
942
- protected function serveWebshot(){
943
- $this->debug(3, "Starting serveWebshot");
944
- $instr = "Please follow the instructions at http://code.google.com/p/timthumb/ to set your server up for taking website screenshots.";
945
- if(! is_file(WEBSHOT_CUTYCAPT)){
946
- return $this->error("CutyCapt is not installed. $instr");
947
- }
948
- if(! is_file(WEBSHOT_XVFB)){
949
- return $this->Error("Xvfb is not installed. $instr");
950
- }
951
- $cuty = WEBSHOT_CUTYCAPT;
952
- $xv = WEBSHOT_XVFB;
953
- $screenX = WEBSHOT_SCREEN_X;
954
- $screenY = WEBSHOT_SCREEN_Y;
955
- $colDepth = WEBSHOT_COLOR_DEPTH;
956
- $format = WEBSHOT_IMAGE_FORMAT;
957
- $timeout = WEBSHOT_TIMEOUT * 1000;
958
- $ua = WEBSHOT_USER_AGENT;
959
- $jsOn = WEBSHOT_JAVASCRIPT_ON ? 'on' : 'off';
960
- $javaOn = WEBSHOT_JAVA_ON ? 'on' : 'off';
961
- $pluginsOn = WEBSHOT_PLUGINS_ON ? 'on' : 'off';
962
- $proxy = WEBSHOT_PROXY ? ' --http-proxy=' . WEBSHOT_PROXY : '';
963
- $tempfile = tempnam($this->cacheDirectory, 'timthumb_webshot');
964
- $url = $this->src;
965
- if(! preg_match('/^https?:\/\/[a-zA-Z0-9\.\-]+/i', $url)){
966
- return $this->error("Invalid URL supplied.");
967
- }
968
- $url = preg_replace('/[^A-Za-z0-9\-\.\_\~:\/\?\#\[\]\@\!\$\&\'\(\)\*\+\,\;\=]+/', '', $url); //RFC 3986
969
- //Very important we don't allow injection of shell commands here. URL is between quotes and we are only allowing through chars allowed by a the RFC
970
- // which AFAIKT can't be used for shell injection.
971
- if(WEBSHOT_XVFB_RUNNING){
972
- putenv('DISPLAY=:100.0');
973
- $command = "$cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
974
- } else {
975
- $command = "$xv --server-args=\"-screen 0, {$screenX}x{$screenY}x{$colDepth}\" $cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
976
- }
977
- $this->debug(3, "Executing command: $command");
978
- $out = `$command`;
979
- $this->debug(3, "Received output: $out");
980
- if(! is_file($tempfile)){
981
- $this->set404();
982
- return $this->error("The command to create a thumbnail failed.");
983
- }
984
- $this->cropTop = true;
985
- if($this->processImageAndWriteToCache($tempfile)){
986
- $this->debug(3, "Image processed succesfully. Serving from cache");
987
- return $this->serveCacheFile();
988
- } else {
989
- return false;
990
- }
991
- }
992
- protected function serveExternalImage(){
993
- if(! preg_match('/^https?:\/\/[a-zA-Z0-9\-\.]+/i', $this->src)){
994
- $this->error("Invalid URL supplied.");
995
- return false;
996
- }
997
- $tempfile = tempnam($this->cacheDirectory, 'timthumb');
998
- $this->debug(3, "Fetching external image into temporary file $tempfile");
999
- $this->toDelete($tempfile);
1000
- #fetch file here
1001
- if(! $this->getURL($this->src, $tempfile)){
1002
- @unlink($this->cachefile);
1003
- touch($this->cachefile);
1004
- $this->debug(3, "Error fetching URL: " . $this->lastURLError);
1005
- $this->error("Error reading the URL you specified from remote host." . $this->lastURLError);
1006
- return false;
1007
- }
1008
-
1009
- $mimeType = $this->getMimeType($tempfile);
1010
- if(! preg_match("/^image\/(?:jpg|jpeg|gif|png)$/i", $mimeType)){
1011
- $this->debug(3, "Remote file has invalid mime type: $mimeType");
1012
- @unlink($this->cachefile);
1013
- touch($this->cachefile);
1014
- $this->error("The remote file is not a valid image. Mimetype = '" . $mimeType . "'" . $tempfile);
1015
- return false;
1016
- }
1017
- if($this->processImageAndWriteToCache($tempfile)){
1018
- $this->debug(3, "Image processed succesfully. Serving from cache");
1019
- return $this->serveCacheFile();
1020
- } else {
1021
- return false;
1022
- }
1023
- }
1024
- public static function curlWrite($h, $d){
1025
- fwrite(self::$curlFH, $d);
1026
- self::$curlDataWritten += strlen($d);
1027
- if(self::$curlDataWritten > MAX_FILE_SIZE){
1028
- return 0;
1029
- } else {
1030
- return strlen($d);
1031
- }
1032
- }
1033
- protected function serveCacheFile(){
1034
- $this->debug(3, "Serving {$this->cachefile}");
1035
- if(! is_file($this->cachefile)){
1036
- $this->error("serveCacheFile called in timthumb but we couldn't find the cached file.");
1037
- return false;
1038
- }
1039
- $fp = fopen($this->cachefile, 'rb');
1040
- if(! $fp){ return $this->error("Could not open cachefile."); }
1041
- fseek($fp, strlen($this->filePrependSecurityBlock), SEEK_SET);
1042
- $imgType = fread($fp, 3);
1043
- fseek($fp, 3, SEEK_CUR);
1044
- if(ftell($fp) != strlen($this->filePrependSecurityBlock) + 6){
1045
- @unlink($this->cachefile);
1046
- return $this->error("The cached image file seems to be corrupt.");
1047
- }
1048
- $imageDataSize = filesize($this->cachefile) - (strlen($this->filePrependSecurityBlock) + 6);
1049
- $this->sendImageHeaders($imgType, $imageDataSize);
1050
- $bytesSent = @fpassthru($fp);
1051
- fclose($fp);
1052
- if($bytesSent > 0){
1053
- return true;
1054
- }
1055
- $content = file_get_contents ($this->cachefile);
1056
- if ($content != FALSE) {
1057
- $content = substr($content, strlen($this->filePrependSecurityBlock) + 6);
1058
- echo $content;
1059
- $this->debug(3, "Served using file_get_contents and echo");
1060
- return true;
1061
- } else {
1062
- $this->error("Cache file could not be loaded.");
1063
- return false;
1064
- }
1065
- }
1066
- protected function sendImageHeaders($mimeType, $dataSize){
1067
- if(! preg_match('/^image\//i', $mimeType)){
1068
- $mimeType = 'image/' . $mimeType;
1069
- }
1070
- if(strtolower($mimeType) == 'image/jpg'){
1071
- $mimeType = 'image/jpeg';
1072
- }
1073
- $gmdate_expires = gmdate ('D, d M Y H:i:s', strtotime ('now +10 days')) . ' GMT';
1074
- $gmdate_modified = gmdate ('D, d M Y H:i:s') . ' GMT';
1075
- // send content headers then display image
1076
- header ('Content-Type: ' . $mimeType);
1077
- header ('Accept-Ranges: none'); //Changed this because we don't accept range requests
1078
- header ('Last-Modified: ' . $gmdate_modified);
1079
- header ('Content-Length: ' . $dataSize);
1080
- if(BROWSER_CACHE_DISABLE){
1081
- $this->debug(3, "Browser cache is disabled so setting non-caching headers.");
1082
- header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
1083
- header("Pragma: no-cache");
1084
- header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
1085
- } else {
1086
- $this->debug(3, "Browser caching is enabled");
1087
- header('Cache-Control: max-age=' . BROWSER_CACHE_MAX_AGE . ', must-revalidate');
1088
- header('Expires: ' . $gmdate_expires);
1089
- }
1090
- return true;
1091
- }
1092
- protected function securityChecks(){
1093
- }
1094
- protected function param($property, $default = ''){
1095
- if (isset ($_GET[$property])) {
1096
- return $_GET[$property];
1097
- } else {
1098
- return $default;
1099
- }
1100
- }
1101
- protected function openImage($mimeType, $src){
1102
- switch ($mimeType) {
1103
- case 'image/jpeg':
1104
- $image = imagecreatefromjpeg ($src);
1105
- break;
1106
-
1107
- case 'image/png':
1108
- $image = imagecreatefrompng ($src);
1109
- imagealphablending( $image, true );
1110
- imagesavealpha( $image, true );
1111
- break;
1112
-
1113
- case 'image/gif':
1114
- $image = imagecreatefromgif ($src);
1115
- break;
1116
-
1117
- default:
1118
- $this->error("Unrecognised mimeType");
1119
- }
1120
-
1121
- return $image;
1122
- }
1123
- protected function getIP(){
1124
- $rem = @$_SERVER["REMOTE_ADDR"];
1125
- $ff = @$_SERVER["HTTP_X_FORWARDED_FOR"];
1126
- $ci = @$_SERVER["HTTP_CLIENT_IP"];
1127
- if(preg_match('/^(?:192\.168|172\.16|10\.|127\.)/', $rem)){
1128
- if($ff){ return $ff; }
1129
- if($ci){ return $ci; }
1130
- return $rem;
1131
- } else {
1132
- if($rem){ return $rem; }
1133
- if($ff){ return $ff; }
1134
- if($ci){ return $ci; }
1135
- return "UNKNOWN";
1136
- }
1137
- }
1138
- protected function debug($level, $msg){
1139
- if(DEBUG_ON && $level <= DEBUG_LEVEL){
1140
- $execTime = sprintf('%.6f', microtime(true) - $this->startTime);
1141
- $tick = sprintf('%.6f', 0);
1142
- if($this->lastBenchTime > 0){
1143
- $tick = sprintf('%.6f', microtime(true) - $this->lastBenchTime);
1144
- }
1145
- $this->lastBenchTime = microtime(true);
1146
- error_log("TimThumb Debug line " . __LINE__ . " [$execTime : $tick]: $msg");
1147
- }
1148
- }
1149
- protected function sanityFail($msg){
1150
- return $this->error("There is a problem in the timthumb code. Message: Please report this error at <a href='http://code.google.com/p/timthumb/issues/list'>timthumb's bug tracking page</a>: $msg");
1151
- }
1152
- protected function getMimeType($file){
1153
- $info = getimagesize($file);
1154
- if(is_array($info) && $info['mime']){
1155
- return $info['mime'];
1156
- }
1157
- return '';
1158
- }
1159
- protected function setMemoryLimit(){
1160
- $inimem = ini_get('memory_limit');
1161
- $inibytes = timthumb::returnBytes($inimem);
1162
- $ourbytes = timthumb::returnBytes(MEMORY_LIMIT);
1163
- if($inibytes < $ourbytes){
1164
- ini_set ('memory_limit', MEMORY_LIMIT);
1165
- $this->debug(3, "Increased memory from $inimem to " . MEMORY_LIMIT);
1166
- } else {
1167
- $this->debug(3, "Not adjusting memory size because the current setting is " . $inimem . " and our size of " . MEMORY_LIMIT . " is smaller.");
1168
- }
1169
- }
1170
- protected static function returnBytes($size_str){
1171
- switch (substr ($size_str, -1))
1172
- {
1173
- case 'M': case 'm': return (int)$size_str * 1048576;
1174
- case 'K': case 'k': return (int)$size_str * 1024;
1175
- case 'G': case 'g': return (int)$size_str * 1073741824;
1176
- default: return $size_str;
1177
- }
1178
- }
1179
-
1180
- protected function getURL($url, $tempfile){
1181
- $this->lastURLError = false;
1182
- $url = preg_replace('/ /', '%20', $url);
1183
- if(function_exists('curl_init')){
1184
- $this->debug(3, "Curl is installed so using it to fetch URL.");
1185
- self::$curlFH = fopen($tempfile, 'w');
1186
- if(! self::$curlFH){
1187
- $this->error("Could not open $tempfile for writing.");
1188
- return false;
1189
- }
1190
- self::$curlDataWritten = 0;
1191
- $this->debug(3, "Fetching url with curl: $url");
1192
- $curl = curl_init($url);
1193
- curl_setopt ($curl, CURLOPT_TIMEOUT, CURL_TIMEOUT);
1194
- curl_setopt ($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30");
1195
- curl_setopt ($curl, CURLOPT_RETURNTRANSFER, TRUE);
1196
- curl_setopt ($curl, CURLOPT_HEADER, 0);
1197
- curl_setopt ($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
1198
- curl_setopt ($curl, CURLOPT_WRITEFUNCTION, 'timthumb::curlWrite');
1199
- @curl_setopt ($curl, CURLOPT_FOLLOWLOCATION, true);
1200
- @curl_setopt ($curl, CURLOPT_MAXREDIRS, 10);
1201
-
1202
- $curlResult = curl_exec($curl);
1203
- fclose(self::$curlFH);
1204
- $httpStatus = curl_getinfo($curl, CURLINFO_HTTP_CODE);
1205
- if($httpStatus == 404){
1206
- $this->set404();
1207
- }
1208
- if($httpStatus == 302){
1209
- $this->error("External Image is Redirecting. Try alternate image url");
1210
- return false;
1211
- }
1212
- if($curlResult){
1213
- curl_close($curl);
1214
- return true;
1215
- } else {
1216
- $this->lastURLError = curl_error($curl);
1217
- curl_close($curl);
1218
- return false;
1219
- }
1220
- } else {
1221
- $img = @file_get_contents ($url);
1222
- if($img === false){
1223
- $err = error_get_last();
1224
- if(is_array($err) && $err['message']){
1225
- $this->lastURLError = $err['message'];
1226
- } else {
1227
- $this->lastURLError = $err;
1228
- }
1229
- if(preg_match('/404/', $this->lastURLError)){
1230
- $this->set404();
1231
- }
1232
-
1233
- return false;
1234
- }
1235
- if(! file_put_contents($tempfile, $img)){
1236
- $this->error("Could not write to $tempfile.");
1237
- return false;
1238
- }
1239
- return true;
1240
- }
1241
-
1242
- }
1243
- protected function serveImg($file){
1244
- $s = getimagesize($file);
1245
- if(! ($s && $s['mime'])){
1246
- return false;
1247
- }
1248
- header ('Content-Type: ' . $s['mime']);
1249
- header ('Content-Length: ' . filesize($file) );
1250
- header ('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
1251
- header ("Pragma: no-cache");
1252
- $bytes = @readfile($file);
1253
- if($bytes > 0){
1254
- return true;
1255
- }
1256
- $content = @file_get_contents ($file);
1257
- if ($content != FALSE){
1258
- echo $content;
1259
- return true;
1260
- }
1261
- return false;
1262
-
1263
- }
1264
- protected function set404(){
1265
- $this->is404 = true;
1266
- }
1267
- protected function is404(){
1268
- return $this->is404;
1269
- }
1270
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
top-10.php CHANGED
@@ -14,7 +14,7 @@
14
  * Plugin Name: Top 10
15
  * Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
16
  * Description: Count daily and total visits per post and display the most popular posts based on the number of views
17
- * Version: 2.0.3
18
  * Author: Ajay D'Souza
19
  * Author URI: http://ajaydsouza.com
20
  * Text Domain: tptn
@@ -155,7 +155,7 @@ function tptn_add_viewed_count( $content ) {
155
  if ( $tptn_settings['cache_fix'] ) {
156
  $output = '<script type="text/javascript">jQuery.ajax({url: "' . $home_url . '", data: {top_ten_id: ' . $id . ', top_ten_blog_id: ' . $blog_id . ', activate_counter: ' . $activate_counter . ', top10_rnd: (new Date()).getTime() + "-" + Math.floor(Math.random()*100000)}});</script>';
157
  } else {
158
- $output = '<script type="text/javascript" async src="' . $home_url . '?top_ten_id=' . $id . '&amp;top_ten_blog_id=' . $blog_id . '&amp;activate_counter=' . $activate_counter . '"></script>';
159
  }
160
  }
161
 
@@ -367,7 +367,7 @@ function echo_tptn_post_count( $echo = 1 ) {
367
  $nonce = wp_create_nonce( $nonce_action );
368
 
369
  if ( $tptn_settings['dynamic_post_count'] ) {
370
- $output = '<div class="tptn_counter" id="tptn_counter_' . $id . '"><script type="text/javascript" data-cfasync="false" src="' . $home_url . '?top_ten_id='.$id.'&amp;view_counter=1&amp;_wpnonce=' . $nonce . '"></script></div>';
371
  } else {
372
  $output = '<div class="tptn_counter" id="tptn_counter_' . $id . '">' . get_tptn_post_count( $id ) . '</div>';
373
  }
@@ -514,15 +514,6 @@ function get_tptn_post_count_only( $id = FALSE, $count = 'total', $blog_id = FAL
514
  function tptn_pop_posts( $args ) {
515
  global $wpdb, $id, $tptn_settings;
516
 
517
- // Initialise some variables
518
- $fields = '';
519
- $where = '';
520
- $join = '';
521
- $groupby = '';
522
- $orderby = '';
523
- $limits = '';
524
- $match_fields = '';
525
-
526
  $defaults = array(
527
  'is_widget' => FALSE,
528
  'daily' => FALSE,
@@ -557,157 +548,39 @@ function tptn_pop_posts( $args ) {
557
  $thumb_height = $tptn_settings['thumb_height'];
558
  }
559
 
560
- if ( $daily ) {
561
- $table_name = $wpdb->base_prefix . "top_ten_daily";
562
- } else {
563
- $table_name = $wpdb->base_prefix . "top_ten";
564
- }
565
-
566
- $limit = ( $strict_limit ) ? $limit : ( $limit * 5 );
567
-
568
  $exclude_categories = explode( ',', $exclude_categories );
569
 
570
  $target_attribute = ( $link_new_window ) ? ' target="_blank" ' : ' '; // Set Target attribute
571
  $rel_attribute = ( $link_nofollow ) ? 'bookmark nofollow' : 'bookmark'; // Set nofollow attribute
572
 
573
- parse_str( $post_types, $post_types ); // Save post types in $post_types variable
574
-
575
- if ( empty( $post_types ) ) {
576
- $post_types = get_post_types( array(
577
- 'public' => true,
578
- ) );
579
- }
580
-
581
- $blog_id = get_current_blog_id();
582
-
583
 
584
- if ( $daily_midnight ) {
585
- $current_time = current_time( 'timestamp', 0 );
586
- $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
587
- $from_date = gmdate( 'Y-m-d 0' , $from_date );
588
- } else {
589
- $current_time = current_time( 'timestamp', 0 );
590
- $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
591
- $from_date = gmdate( 'Y-m-d H' , $from_date );
592
- }
593
-
594
- /**
595
- *
596
- * We're going to create a mySQL query that is fully extendable which would look something like this:
597
- * "SELECT $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits"
598
- *
599
- */
600
-
601
- // Fields to return
602
- $fields = " postnumber, ";
603
- $fields .= ( $daily ) ? "SUM(cntaccess) as sumCount, dp_date, " : "cntaccess as sumCount, ";
604
- $fields .= "ID ";
605
-
606
- // Create the JOIN clause
607
- $join = " INNER JOIN {$wpdb->posts} ON postnumber=ID ";
608
-
609
- // Create the base WHERE clause
610
- $where .= $wpdb->prepare( " AND blog_id = %d ", $blog_id ); // Posts need to be from the current blog only
611
- $where .= " AND $wpdb->posts.post_status = 'publish' "; // Only show published posts
612
-
613
- if ( $daily ) {
614
- $where .= $wpdb->prepare( " AND dp_date >= '%s' ", $from_date ); // Only fetch posts that are tracked after this date
615
- }
616
-
617
- if ( '' != $exclude_post_ids ) {
618
- $where .= " AND $wpdb->posts.ID NOT IN ({$exclude_post_ids}) ";
619
- }
620
- $where .= " AND $wpdb->posts.post_type IN ('" . join( "', '", $post_types ) . "') "; // Array of post types
621
-
622
- // Create the base GROUP BY clause
623
- if ( $daily ) {
624
- $groupby = " postnumber ";
625
  }
626
 
627
- // Create the base ORDER BY clause
628
- $orderby = " sumCount DESC ";
629
-
630
- // Create the base LIMITS clause
631
- $limits .= $wpdb->prepare( " LIMIT %d ", $limit );
632
-
633
- /**
634
- * Filter the SELECT clause of the query.
635
- *
636
- * @param string $fields The SELECT clause of the query.
637
- */
638
- $fields = apply_filters( 'tptn_posts_fields', $fields );
639
-
640
- /**
641
- * Filter the JOIN clause of the query.
642
- *
643
- * @param string $join The JOIN clause of the query.
644
- */
645
- $join = apply_filters( 'tptn_posts_join', $join );
646
 
647
- /**
648
- * Filter the WHERE clause of the query.
649
- *
650
- * @param string $where The WHERE clause of the query.
651
- */
652
- $where = apply_filters( 'tptn_posts_where', $where );
653
 
654
- /**
655
- * Filter the GROUP BY clause of the query.
656
- *
657
- * @param string $groupby The GROUP BY clause of the query.
658
- */
659
- $groupby = apply_filters( 'tptn_posts_groupby', $groupby );
660
 
 
661
 
662
  /**
663
- * Filter the ORDER BY clause of the query.
664
  *
665
- * @param string $orderby The ORDER BY clause of the query.
666
- */
667
- $orderby = apply_filters( 'tptn_posts_orderby', $orderby );
668
-
669
- /**
670
- * Filter the LIMIT clause of the query.
671
  *
672
- * @param string $limits The LIMIT clause of the query.
673
  */
674
- $limits = apply_filters( 'tptn_posts_limits', $limits );
675
-
676
- if ( ! empty( $groupby ) ) {
677
- $groupby = " GROUP BY {$groupby} ";
678
- }
679
- if ( ! empty( $orderby ) ) {
680
- $orderby = " ORDER BY {$orderby} ";
681
- }
682
-
683
- $sql = "SELECT $fields FROM {$table_name} $join WHERE 1=1 $where $groupby $orderby $limits";
684
-
685
- if ( $posts_only ) { // Return the array of posts only if the variable is set
686
-
687
- $tptn_pop_posts_array = $wpdb->get_results( $sql , ARRAY_A );
688
-
689
- /**
690
- * Filter the array of top post IDs.
691
- *
692
- * @since 1.9.8.5
693
- *
694
- * @param array $tptn_pop_posts_array Posts array.
695
- */
696
- return apply_filters( 'tptn_pop_posts_array', $tptn_pop_posts_array );
697
- }
698
-
699
- $results = $wpdb->get_results( $sql );
700
-
701
- $counter = 0;
702
-
703
- $output = '';
704
-
705
- $shortcode_class = $is_shortcode ? ' tptn_posts_shortcode' : '';
706
- $widget_class = $is_widget ? ' tptn_posts_widget' : '';
707
 
708
  if ( $heading ) {
709
  if ( ! $daily ) {
710
- $output .= '<div id="tptn_related" class="tptn_posts ' . $widget_class . $shortcode_class . '">';
711
 
712
  /**
713
  * Filter the title of the Top posts.
@@ -721,19 +594,15 @@ function tptn_pop_posts( $args ) {
721
  $output .= '<div id="tptn_related_daily" class="tptn_posts_daily' . $shortcode_class . '">';
722
 
723
  /**
724
- * Filter the title of the Top posts.
725
- *
726
- * @since 1.9.5
727
- *
728
- * @param string $title Title of the popular posts.
729
  */
730
  $output .= apply_filters( 'tptn_heading_title', $title_daily );
731
  }
732
  } else {
733
  if ( ! $daily ) {
734
- $output .= '<div class="tptn_posts' . $widget_class . $shortcode_class . '">';
735
  } else {
736
- $output .= '<div class="tptn_posts_daily' . $widget_class . $shortcode_class . '">';
737
  }
738
  }
739
 
@@ -748,10 +617,21 @@ function tptn_pop_posts( $args ) {
748
  */
749
  $output .= apply_filters( 'tptn_before_list', $before_list );
750
 
 
 
751
  foreach ( $results as $result ) {
752
- $sumcount = $result->sumCount;
 
 
 
 
 
753
 
754
- $result = get_post( $result->ID ); // Let's get the Post using the ID
 
 
 
 
755
 
756
  /**
757
  * Filter the post ID for each result. Allows a custom function to hook in and change the ID if needed.
@@ -828,13 +708,13 @@ function tptn_pop_posts( $args ) {
828
 
829
 
830
  if ( 'after' == $post_thumb_op ) {
831
- $output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . 'class="tptn_link">'; // Add beginning of link
832
  $output .= '<span class="tptn_title">' . $post_title . '</span>'; // Add title if post thumbnail is to be displayed after
833
  $output .= '</a>'; // Close the link
834
  }
835
 
836
  if ( 'inline' == $post_thumb_op || 'after' == $post_thumb_op || 'thumbs_only' == $post_thumb_op ) {
837
- $output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . 'class="tptn_link">'; // Add beginning of link
838
 
839
  $output .= tptn_get_the_post_thumbnail( array(
840
  'postid' => $postid,
@@ -844,11 +724,8 @@ function tptn_pop_posts( $args ) {
844
  'thumb_html' => $thumb_html,
845
  'thumb_default' => $thumb_default,
846
  'thumb_default_show' => $thumb_default_show,
847
- 'thumb_timthumb' => $thumb_timthumb,
848
- 'thumb_timthumb_q' => $thumb_timthumb_q,
849
  'scan_images' => $scan_images,
850
  'class' => "tptn_thumb",
851
- 'filter' => "tptn_postimage",
852
  ) );
853
 
854
  $output .= '</a>'; // Close the link
@@ -856,7 +733,7 @@ function tptn_pop_posts( $args ) {
856
 
857
  if ( 'inline' == $post_thumb_op || 'text_only' == $post_thumb_op ) {
858
  $output .= '<span class="tptn_after_thumb">';
859
- $output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . 'class="tptn_link">'; // Add beginning of link
860
  $output .= '<span class="tptn_title">' . $post_title . '</span>'; // Add title when required by settings
861
  $output .= '</a>'; // Close the link
862
  }
@@ -900,7 +777,21 @@ function tptn_pop_posts( $args ) {
900
  }
901
 
902
  if ( $disp_list_count ) {
903
- $output .= ' <span class="tptn_list_count">(' . number_format_i18n( $sumcount ) . ')</span>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
  }
905
 
906
  if ( 'inline' == $post_thumb_op || 'text_only' == $post_thumb_op ) {
@@ -919,7 +810,9 @@ function tptn_pop_posts( $args ) {
919
 
920
  $counter++;
921
  }
922
- if ( $counter == $limit/5 ) break; // End loop when related posts limit is reached
 
 
923
  }
924
  if ( $show_credit ) {
925
 
@@ -960,10 +853,199 @@ function tptn_pop_posts( $args ) {
960
  }
961
 
962
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
963
  /**
964
  * Function to echo popular posts.
965
  *
966
  * @since 1.0
 
 
967
  */
968
  function tptn_show_pop_posts( $args = NULL ) {
969
  echo tptn_pop_posts( $args );
@@ -974,15 +1056,17 @@ function tptn_show_pop_posts( $args = NULL ) {
974
  * Function to show daily popular posts.
975
  *
976
  * @since 1.2
 
 
977
  */
978
- function tptn_show_daily_pop_posts() {
979
- global $tptn_url, $tptn_settings;
980
-
981
- if ( $tptn_settings['d_use_js'] ) {
982
- echo '<script type="text/javascript" src="' . $tptn_url . '/top-10-daily.js.php?widget=1"></script>';
983
  } else {
984
- echo tptn_pop_posts( 'daily=1&is_widget=0' );
985
  }
 
 
986
  }
987
 
988
 
@@ -1091,8 +1175,6 @@ function tptn_default_options() {
1091
  'title_length' => '60', // Limit length of post title
1092
  'disp_list_count' => true, // Display count in popular lists?
1093
 
1094
- 'd_use_js' => false, // Use JavaScript for displaying daily posts - TO BE DEPRECATED
1095
-
1096
  'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
1097
  'link_nofollow' => false, // Includes rel="nofollow" to links
1098
  'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
@@ -1111,9 +1193,6 @@ function tptn_default_options() {
1111
  'thumb_crop' => true, // Crop mode. default is hard crop
1112
  'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
1113
 
1114
- 'thumb_timthumb' => false, // Use timthumb - TO BE DEPRECATED
1115
- 'thumb_timthumb_q' => '75', // Quality attribute for timthumb - TO BE DEPRECATED
1116
-
1117
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
1118
  'scan_images' => true, // Scan post for images
1119
  'thumb_default' => $thumb_default, // Default thumbnail image
@@ -1233,7 +1312,7 @@ function tptn_single_activate() {
1233
  $sql = "CREATE TABLE " . $table_name . " (
1234
  postnumber bigint(20) NOT NULL,
1235
  cntaccess bigint(20) NOT NULL,
1236
- blog_id bigint(20) NOT NULL,
1237
  PRIMARY KEY (postnumber, blog_id)
1238
  );";
1239
 
@@ -1249,7 +1328,7 @@ function tptn_single_activate() {
1249
  postnumber bigint(20) NOT NULL,
1250
  cntaccess bigint(20) NOT NULL,
1251
  dp_date DATETIME NOT NULL,
1252
- blog_id bigint(20) NOT NULL,
1253
  PRIMARY KEY (postnumber, dp_date, blog_id)
1254
  );";
1255
 
@@ -1416,16 +1495,26 @@ function tptn_get_the_post_thumbnail( $args = array() ) {
1416
  'thumb_html' => 'html', // HTML / CSS for width and height attributes
1417
  'thumb_default' => '', // Default thumbnail image
1418
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
1419
- 'thumb_timthumb' => true, // Use timthumb
1420
- 'thumb_timthumb_q' => '75', // Quality attribute for timthumb
1421
  'scan_images' => false, // Scan post for images
1422
  'class' => 'tptn_thumb', // Class of the thumbnail
1423
- 'filter' => 'tptn_postimage', // Class of the thumbnail
1424
  );
1425
 
1426
  // Parse incomming $args into an array and merge it with $defaults
1427
  $args = wp_parse_args( $args, $defaults );
1428
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1429
  // Declare each item in $args as its own variable i.e. $type, $before.
1430
  extract( $args, EXTR_SKIP );
1431
 
@@ -1434,6 +1523,7 @@ function tptn_get_the_post_thumbnail( $args = array() ) {
1434
 
1435
  $output = '';
1436
  $postimage = '';
 
1437
 
1438
  // Let's start fetching the thumbnail. First place to look is in the post meta defined in the Settings page
1439
  if ( ! $postimage ) {
@@ -1443,7 +1533,7 @@ function tptn_get_the_post_thumbnail( $args = array() ) {
1443
 
1444
  // If there is no thumbnail found, check the post thumbnail
1445
  if ( ! $postimage ) {
1446
- if ( ( false != wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) ) ) ) {
1447
  $postthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ), $tptn_settings['thumb_size'] );
1448
  $postimage = $postthumb[0];
1449
  }
@@ -1456,7 +1546,16 @@ function tptn_get_the_post_thumbnail( $args = array() ) {
1456
  if ( isset( $matches[1][0] ) && $matches[1][0] ) { // any image there?
1457
  $postimage = $matches[1][0]; // we need the first one only!
1458
  }
1459
- $pick = 'first';
 
 
 
 
 
 
 
 
 
1460
  }
1461
 
1462
  // If there is no thumbnail found, fetch the first child image
@@ -1479,13 +1578,38 @@ function tptn_get_the_post_thumbnail( $args = array() ) {
1479
  if ( $postimage ) {
1480
 
1481
  /**
1482
- * Get the first image in the post.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1483
  *
1484
  * @since 1.8.10
 
1485
  *
1486
- * @param mixed $postID Post ID
 
 
 
 
 
1487
  */
1488
- $postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
1489
 
1490
  if ( is_ssl() ) {
1491
  $postimage = preg_replace( '~http://~', 'https://', $postimage );
@@ -1548,6 +1672,45 @@ function tptn_get_first_image( $postID ) {
1548
  }
1549
 
1550
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1551
  /**
1552
  * Function to create an excerpt for the post.
1553
  *
@@ -1796,9 +1959,41 @@ function tptn_get_all_image_sizes( $size = '' ) {
1796
  return false;
1797
  }
1798
  }
 
 
 
 
 
 
 
 
1799
  return apply_filters( 'tptn_get_all_image_sizes', $sizes );
1800
  }
1801
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1802
  /*----------------------------------------------------------------------------*
1803
  * WordPress widget
1804
  *----------------------------------------------------------------------------*/
14
  * Plugin Name: Top 10
15
  * Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
16
  * Description: Count daily and total visits per post and display the most popular posts based on the number of views
17
+ * Version: 2.1.0
18
  * Author: Ajay D'Souza
19
  * Author URI: http://ajaydsouza.com
20
  * Text Domain: tptn
155
  if ( $tptn_settings['cache_fix'] ) {
156
  $output = '<script type="text/javascript">jQuery.ajax({url: "' . $home_url . '", data: {top_ten_id: ' . $id . ', top_ten_blog_id: ' . $blog_id . ', activate_counter: ' . $activate_counter . ', top10_rnd: (new Date()).getTime() + "-" + Math.floor(Math.random()*100000)}});</script>';
157
  } else {
158
+ $output = '<script type="text/javascript" async src="' . $home_url . '?top_ten_id=' . $id . '&top_ten_blog_id=' . $blog_id . '&activate_counter=' . $activate_counter . '"></script>';
159
  }
160
  }
161
 
367
  $nonce = wp_create_nonce( $nonce_action );
368
 
369
  if ( $tptn_settings['dynamic_post_count'] ) {
370
+ $output = '<div class="tptn_counter" id="tptn_counter_' . $id . '"><script type="text/javascript" data-cfasync="false" src="' . $home_url . '?top_ten_id='.$id.'&view_counter=1&_wpnonce=' . $nonce . '"></script></div>';
371
  } else {
372
  $output = '<div class="tptn_counter" id="tptn_counter_' . $id . '">' . get_tptn_post_count( $id ) . '</div>';
373
  }
514
  function tptn_pop_posts( $args ) {
515
  global $wpdb, $id, $tptn_settings;
516
 
 
 
 
 
 
 
 
 
 
517
  $defaults = array(
518
  'is_widget' => FALSE,
519
  'daily' => FALSE,
548
  $thumb_height = $tptn_settings['thumb_height'];
549
  }
550
 
 
 
 
 
 
 
 
 
551
  $exclude_categories = explode( ',', $exclude_categories );
552
 
553
  $target_attribute = ( $link_new_window ) ? ' target="_blank" ' : ' '; // Set Target attribute
554
  $rel_attribute = ( $link_nofollow ) ? 'bookmark nofollow' : 'bookmark'; // Set nofollow attribute
555
 
556
+ // Retrieve the popular posts
557
+ $results = get_tptn_pop_posts( $args );
 
 
 
 
 
 
 
 
558
 
559
+ if ( $posts_only ) { // Return the array of posts only if the variable is set
560
+ return $results;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
  }
562
 
563
+ $counter = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
 
565
+ $output = '';
 
 
 
 
 
566
 
567
+ $shortcode_class = $is_shortcode ? ' tptn_posts_shortcode' : '';
568
+ $widget_class = $is_widget ? ' tptn_posts_widget' : '';
 
 
 
 
569
 
570
+ $post_classes = $widget_class . $shortcode_class;
571
 
572
  /**
573
+ * Filter the classes added to the div wrapper of the Top 10.
574
  *
575
+ * @since 2.1.0
 
 
 
 
 
576
  *
577
+ * @param string $post_classes Post classes string.
578
  */
579
+ $post_classes = apply_filters( 'tptn_post_class', $post_classes );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
580
 
581
  if ( $heading ) {
582
  if ( ! $daily ) {
583
+ $output .= '<div id="tptn_related" class="tptn_posts ' . $post_classes . '">';
584
 
585
  /**
586
  * Filter the title of the Top posts.
594
  $output .= '<div id="tptn_related_daily" class="tptn_posts_daily' . $shortcode_class . '">';
595
 
596
  /**
597
+ * Already defined in top-10.php
 
 
 
 
598
  */
599
  $output .= apply_filters( 'tptn_heading_title', $title_daily );
600
  }
601
  } else {
602
  if ( ! $daily ) {
603
+ $output .= '<div class="tptn_posts' . $post_classes . '">';
604
  } else {
605
+ $output .= '<div class="tptn_posts_daily' . $post_classes . '">';
606
  }
607
  }
608
 
617
  */
618
  $output .= apply_filters( 'tptn_before_list', $before_list );
619
 
620
+ $processed_results = array();
621
+
622
  foreach ( $results as $result ) {
623
+ /* Support WPML */
624
+ $resultid = tptn_object_id_cur_lang( $result->ID );
625
+
626
+ if ( in_array( $resultid, $processed_results ) ) {
627
+ continue;
628
+ }
629
 
630
+ array_push( $processed_results, $resultid );
631
+
632
+ $sumcount = $result->sumCount; // Store the count. We'll need this later
633
+
634
+ $result = get_post( $resultid ); // Let's get the Post using the ID
635
 
636
  /**
637
  * Filter the post ID for each result. Allows a custom function to hook in and change the ID if needed.
708
 
709
 
710
  if ( 'after' == $post_thumb_op ) {
711
+ $output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . ' class="tptn_link">'; // Add beginning of link
712
  $output .= '<span class="tptn_title">' . $post_title . '</span>'; // Add title if post thumbnail is to be displayed after
713
  $output .= '</a>'; // Close the link
714
  }
715
 
716
  if ( 'inline' == $post_thumb_op || 'after' == $post_thumb_op || 'thumbs_only' == $post_thumb_op ) {
717
+ $output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . ' class="tptn_link">'; // Add beginning of link
718
 
719
  $output .= tptn_get_the_post_thumbnail( array(
720
  'postid' => $postid,
724
  'thumb_html' => $thumb_html,
725
  'thumb_default' => $thumb_default,
726
  'thumb_default_show' => $thumb_default_show,
 
 
727
  'scan_images' => $scan_images,
728
  'class' => "tptn_thumb",
 
729
  ) );
730
 
731
  $output .= '</a>'; // Close the link
733
 
734
  if ( 'inline' == $post_thumb_op || 'text_only' == $post_thumb_op ) {
735
  $output .= '<span class="tptn_after_thumb">';
736
+ $output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . ' class="tptn_link">'; // Add beginning of link
737
  $output .= '<span class="tptn_title">' . $post_title . '</span>'; // Add title when required by settings
738
  $output .= '</a>'; // Close the link
739
  }
777
  }
778
 
779
  if ( $disp_list_count ) {
780
+
781
+ $tptn_list_count = '(' . number_format_i18n( $sumcount ) . ')';
782
+
783
+ /**
784
+ * Filter the formatted list count text.
785
+ *
786
+ * @since 2.1.0
787
+ *
788
+ * @param string $tptn_list_count Formatted list count
789
+ * @param int $sumcount Post count
790
+ * @param object $result Post object
791
+ */
792
+ $tptn_list_count = apply_filters( 'tptn_list_count', $tptn_list_count, $sumcount, $result );
793
+
794
+ $output .= ' <span class="tptn_list_count">' . $tptn_list_count . '</span>';
795
  }
796
 
797
  if ( 'inline' == $post_thumb_op || 'text_only' == $post_thumb_op ) {
810
 
811
  $counter++;
812
  }
813
+ if ( $counter == $limit ) {
814
+ break; // End loop when related posts limit is reached
815
+ }
816
  }
817
  if ( $show_credit ) {
818
 
853
  }
854
 
855
 
856
+ /**
857
+ * Function to retrieve the popular posts.
858
+ *
859
+ * @since 2.1.0
860
+ *
861
+ * @param mixed $args Arguments list
862
+ */
863
+ function get_tptn_pop_posts( $args = array() ) {
864
+ global $wpdb, $id, $tptn_settings;
865
+
866
+ // Initialise some variables
867
+ $fields = '';
868
+ $where = '';
869
+ $join = '';
870
+ $groupby = '';
871
+ $orderby = '';
872
+ $limits = '';
873
+ $match_fields = '';
874
+
875
+ $defaults = array(
876
+ 'daily' => FALSE,
877
+ 'strict_limit' => FALSE,
878
+ 'posts_only' => FALSE,
879
+ );
880
+
881
+ // Merge the $defaults array with the $tptn_settings array
882
+ $defaults = array_merge( $defaults, $tptn_settings );
883
+
884
+ // Parse incomming $args into an array and merge it with $defaults
885
+ $args = wp_parse_args( $args, $defaults );
886
+
887
+ // Declare each item in $args as its own variable i.e. $type, $before.
888
+ extract( $args, EXTR_SKIP );
889
+
890
+ if ( $daily ) {
891
+ $table_name = $wpdb->base_prefix . "top_ten_daily";
892
+ } else {
893
+ $table_name = $wpdb->base_prefix . "top_ten";
894
+ }
895
+
896
+ $limit = ( $strict_limit ) ? $limit : ( $limit * 5 );
897
+
898
+ $exclude_categories = explode( ',', $exclude_categories );
899
+
900
+ $target_attribute = ( $link_new_window ) ? ' target="_blank" ' : ' '; // Set Target attribute
901
+ $rel_attribute = ( $link_nofollow ) ? 'bookmark nofollow' : 'bookmark'; // Set nofollow attribute
902
+
903
+ parse_str( $post_types, $post_types ); // Save post types in $post_types variable
904
+
905
+ if ( empty( $post_types ) ) {
906
+ $post_types = get_post_types( array(
907
+ 'public' => true,
908
+ ) );
909
+ }
910
+
911
+ $blog_id = get_current_blog_id();
912
+
913
+
914
+ if ( $daily_midnight ) {
915
+ $current_time = current_time( 'timestamp', 0 );
916
+ $from_date = $current_time - ( max( 0, ( $daily_range - 1 ) ) * DAY_IN_SECONDS );
917
+ $from_date = gmdate( 'Y-m-d 0' , $from_date );
918
+ } else {
919
+ $current_time = current_time( 'timestamp', 0 );
920
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS + $hour_range * HOUR_IN_SECONDS );
921
+ $from_date = gmdate( 'Y-m-d H' , $from_date );
922
+ }
923
+
924
+ /**
925
+ *
926
+ * We're going to create a mySQL query that is fully extendable which would look something like this:
927
+ * "SELECT $fields FROM $wpdb->posts $join WHERE 1=1 $where $groupby $orderby $limits"
928
+ *
929
+ */
930
+
931
+ // Fields to return
932
+ $fields = " postnumber, ";
933
+ $fields .= ( $daily ) ? "SUM(cntaccess) as sumCount, dp_date, " : "cntaccess as sumCount, ";
934
+ $fields .= "ID ";
935
+
936
+ // Create the JOIN clause
937
+ $join = " INNER JOIN {$wpdb->posts} ON postnumber=ID ";
938
+
939
+ // Create the base WHERE clause
940
+ $where .= $wpdb->prepare( " AND blog_id = %d ", $blog_id ); // Posts need to be from the current blog only
941
+ $where .= " AND $wpdb->posts.post_status = 'publish' "; // Only show published posts
942
+
943
+ if ( $daily ) {
944
+ $where .= $wpdb->prepare( " AND dp_date >= '%s' ", $from_date ); // Only fetch posts that are tracked after this date
945
+ }
946
+
947
+ if ( '' != $exclude_post_ids ) {
948
+ $where .= " AND $wpdb->posts.ID NOT IN ({$exclude_post_ids}) ";
949
+ }
950
+ $where .= " AND $wpdb->posts.post_type IN ('" . join( "', '", $post_types ) . "') "; // Array of post types
951
+
952
+ // Create the base GROUP BY clause
953
+ if ( $daily ) {
954
+ $groupby = " postnumber ";
955
+ }
956
+
957
+ // Create the base ORDER BY clause
958
+ $orderby = " sumCount DESC ";
959
+
960
+ // Create the base LIMITS clause
961
+ $limits .= $wpdb->prepare( " LIMIT %d ", $limit );
962
+
963
+ /**
964
+ * Filter the SELECT clause of the query.
965
+ *
966
+ * @param string $fields The SELECT clause of the query.
967
+ */
968
+ $fields = apply_filters( 'tptn_posts_fields', $fields );
969
+
970
+ /**
971
+ * Filter the JOIN clause of the query.
972
+ *
973
+ * @param string $join The JOIN clause of the query.
974
+ */
975
+ $join = apply_filters( 'tptn_posts_join', $join );
976
+
977
+ /**
978
+ * Filter the WHERE clause of the query.
979
+ *
980
+ * @param string $where The WHERE clause of the query.
981
+ */
982
+ $where = apply_filters( 'tptn_posts_where', $where );
983
+
984
+ /**
985
+ * Filter the GROUP BY clause of the query.
986
+ *
987
+ * @param string $groupby The GROUP BY clause of the query.
988
+ */
989
+ $groupby = apply_filters( 'tptn_posts_groupby', $groupby );
990
+
991
+
992
+ /**
993
+ * Filter the ORDER BY clause of the query.
994
+ *
995
+ * @param string $orderby The ORDER BY clause of the query.
996
+ */
997
+ $orderby = apply_filters( 'tptn_posts_orderby', $orderby );
998
+
999
+ /**
1000
+ * Filter the LIMIT clause of the query.
1001
+ *
1002
+ * @param string $limits The LIMIT clause of the query.
1003
+ */
1004
+ $limits = apply_filters( 'tptn_posts_limits', $limits );
1005
+
1006
+ if ( ! empty( $groupby ) ) {
1007
+ $groupby = " GROUP BY {$groupby} ";
1008
+ }
1009
+ if ( ! empty( $orderby ) ) {
1010
+ $orderby = " ORDER BY {$orderby} ";
1011
+ }
1012
+
1013
+ $sql = "SELECT $fields FROM {$table_name} $join WHERE 1=1 $where $groupby $orderby $limits";
1014
+
1015
+ if ( $posts_only ) { // Return the array of posts only if the variable is set
1016
+ $results = $wpdb->get_results( $sql, ARRAY_A );
1017
+
1018
+ /**
1019
+ * Filter the array of top post IDs.
1020
+ *
1021
+ * @since 1.9.8.5
1022
+ *
1023
+ * @param array $tptn_pop_posts_array Posts array.
1024
+ * @param mixed $args Arguments list
1025
+ */
1026
+ return apply_filters( 'tptn_pop_posts_array', $results, $args );
1027
+ }
1028
+
1029
+ $results = $wpdb->get_results( $sql );
1030
+
1031
+ /**
1032
+ * Filter object containing post IDs of popular posts
1033
+ *
1034
+ * @since 2.1.0
1035
+ *
1036
+ * @param object $results Top 10 popular posts object
1037
+ * @param mixed $args Arguments list
1038
+ */
1039
+ return apply_filters( 'get_tptn_pop_posts', $results, $args );
1040
+ }
1041
+
1042
+
1043
  /**
1044
  * Function to echo popular posts.
1045
  *
1046
  * @since 1.0
1047
+ *
1048
+ * @param mixed $args Arguments list
1049
  */
1050
  function tptn_show_pop_posts( $args = NULL ) {
1051
  echo tptn_pop_posts( $args );
1056
  * Function to show daily popular posts.
1057
  *
1058
  * @since 1.2
1059
+ *
1060
+ * @param mixed $args Arguments list
1061
  */
1062
+ function tptn_show_daily_pop_posts( $args = NULL ) {
1063
+ if ( is_array( $args ) ) {
1064
+ $args['daily'] = 1;
 
 
1065
  } else {
1066
+ $args .= '&daily=1';
1067
  }
1068
+
1069
+ tptn_show_pop_posts( $args );
1070
  }
1071
 
1072
 
1175
  'title_length' => '60', // Limit length of post title
1176
  'disp_list_count' => true, // Display count in popular lists?
1177
 
 
 
1178
  'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
1179
  'link_nofollow' => false, // Includes rel="nofollow" to links
1180
  'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
1193
  'thumb_crop' => true, // Crop mode. default is hard crop
1194
  'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
1195
 
 
 
 
1196
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
1197
  'scan_images' => true, // Scan post for images
1198
  'thumb_default' => $thumb_default, // Default thumbnail image
1312
  $sql = "CREATE TABLE " . $table_name . " (
1313
  postnumber bigint(20) NOT NULL,
1314
  cntaccess bigint(20) NOT NULL,
1315
+ blog_id bigint(20) NOT NULL DEFAULT '1',
1316
  PRIMARY KEY (postnumber, blog_id)
1317
  );";
1318
 
1328
  postnumber bigint(20) NOT NULL,
1329
  cntaccess bigint(20) NOT NULL,
1330
  dp_date DATETIME NOT NULL,
1331
+ blog_id bigint(20) NOT NULL DEFAULT '1',
1332
  PRIMARY KEY (postnumber, dp_date, blog_id)
1333
  );";
1334
 
1495
  'thumb_html' => 'html', // HTML / CSS for width and height attributes
1496
  'thumb_default' => '', // Default thumbnail image
1497
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
 
 
1498
  'scan_images' => false, // Scan post for images
1499
  'class' => 'tptn_thumb', // Class of the thumbnail
 
1500
  );
1501
 
1502
  // Parse incomming $args into an array and merge it with $defaults
1503
  $args = wp_parse_args( $args, $defaults );
1504
 
1505
+ // Issue notice for deprecated arguments
1506
+ if ( isset( $args['thumb_timthumb'] ) ) {
1507
+ _deprecated_argument( __FUNCTION__, '2.1', __( 'thumb_timthumb argument has been deprecated', TPTN_LOCAL_NAME ) );
1508
+ }
1509
+
1510
+ if ( isset( $args['thumb_timthumb_q'] ) ) {
1511
+ _deprecated_argument( __FUNCTION__, '2.1', __( 'thumb_timthumb_q argument has been deprecated', TPTN_LOCAL_NAME ) );
1512
+ }
1513
+
1514
+ if ( isset( $args['filter'] ) ) {
1515
+ _deprecated_argument( __FUNCTION__, '2.1', __( 'filter argument has been deprecated', TPTN_LOCAL_NAME ) );
1516
+ }
1517
+
1518
  // Declare each item in $args as its own variable i.e. $type, $before.
1519
  extract( $args, EXTR_SKIP );
1520
 
1523
 
1524
  $output = '';
1525
  $postimage = '';
1526
+ $pick = '';
1527
 
1528
  // Let's start fetching the thumbnail. First place to look is in the post meta defined in the Settings page
1529
  if ( ! $postimage ) {
1533
 
1534
  // If there is no thumbnail found, check the post thumbnail
1535
  if ( ! $postimage ) {
1536
+ if ( false != get_post_thumbnail_id( $result->ID ) ) {
1537
  $postthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ), $tptn_settings['thumb_size'] );
1538
  $postimage = $postthumb[0];
1539
  }
1546
  if ( isset( $matches[1][0] ) && $matches[1][0] ) { // any image there?
1547
  $postimage = $matches[1][0]; // we need the first one only!
1548
  }
1549
+ if ( $postimage ) {
1550
+ $postimage_id = tptn_get_attachment_id_from_url( $postimage );
1551
+
1552
+ if ( false != wp_get_attachment_image_src( $postimage_id, $tptn_settings['thumb_size'] ) ) {
1553
+ $postthumb = wp_get_attachment_image_src( $postimage_id, $tptn_settings['thumb_size'] );
1554
+ $postimage = $postthumb[0];
1555
+ }
1556
+ $pick = 'correct';
1557
+ }
1558
+ $pick .= 'first';
1559
  }
1560
 
1561
  // If there is no thumbnail found, fetch the first child image
1578
  if ( $postimage ) {
1579
 
1580
  /**
1581
+ * Filters the thumbnail image URL.
1582
+ *
1583
+ * Use this filter to modify the thumbnail URL that is automatically created
1584
+ * Before v2.1 this was used for cropping the post image using timthumb
1585
+ *
1586
+ * @since 2.1.0
1587
+ *
1588
+ * @param string $postimage URL of the thumbnail image
1589
+ * @param int $thumb_width Thumbnail width
1590
+ * @param int $thumb_height Thumbnail height
1591
+ * @param object $result Post Object
1592
+ */
1593
+ $postimage = apply_filters( 'tptn_thumb_url', $postimage, $thumb_width, $thumb_height, $result );
1594
+
1595
+ /* Backward compatibility */
1596
+ $thumb_timthumb = false;
1597
+ $thumb_timthumb_q = 75;
1598
+
1599
+ /**
1600
+ * Filters the thumbnail image URL.
1601
  *
1602
  * @since 1.8.10
1603
+ * @deprecated 2.1.0 Use tptn_thumb_url instead.
1604
  *
1605
+ * @param string $postimage URL of the thumbnail image
1606
+ * @param int $thumb_width Thumbnail width
1607
+ * @param int $thumb_height Thumbnail height
1608
+ * @param boolean $thumb_timthumb Enable timthumb?
1609
+ * @param int $thumb_timthumb_q Quality of timthumb thumbnail.
1610
+ * @param object $result Post Object
1611
  */
1612
+ $postimage = apply_filters( 'tptn_postimage', $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
1613
 
1614
  if ( is_ssl() ) {
1615
  $postimage = preg_replace( '~http://~', 'https://', $postimage );
1672
  }
1673
 
1674
 
1675
+ /**
1676
+ * Function to get the attachment ID from the attachment URL.
1677
+ *
1678
+ * @since 2.1
1679
+ *
1680
+ * @param string $attachment_url Attachment URL
1681
+ * @return int Attachment ID
1682
+ */
1683
+ function tptn_get_attachment_id_from_url( $attachment_url = '' ) {
1684
+
1685
+ global $wpdb;
1686
+ $attachment_id = false;
1687
+
1688
+ // If there is no url, return.
1689
+ if ( '' == $attachment_url ) {
1690
+ return;
1691
+ }
1692
+
1693
+ // Get the upload directory paths
1694
+ $upload_dir_paths = wp_upload_dir();
1695
+
1696
+ // Make sure the upload path base directory exists in the attachment URL, to verify that we're working with a media library image
1697
+ if ( false !== strpos( $attachment_url, $upload_dir_paths['baseurl'] ) ) {
1698
+
1699
+ // If this is the URL of an auto-generated thumbnail, get the URL of the original image
1700
+ $attachment_url = preg_replace( '/-\d+x\d+(?=\.(jpg|jpeg|png|gif)$)/i', '', $attachment_url );
1701
+
1702
+ // Remove the upload path base directory from the attachment URL
1703
+ $attachment_url = str_replace( $upload_dir_paths['baseurl'] . '/', '', $attachment_url );
1704
+
1705
+ // Finally, run a custom database query to get the attachment ID from the modified attachment URL
1706
+ $attachment_id = $wpdb->get_var( $wpdb->prepare( "SELECT wposts.ID FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = '_wp_attached_file' AND wpostmeta.meta_value = '%s' AND wposts.post_type = 'attachment'", $attachment_url ) );
1707
+
1708
+ }
1709
+
1710
+ return apply_filters( 'tptn_get_attachment_id_from_url', $attachment_id, $attachment_url );
1711
+ }
1712
+
1713
+
1714
  /**
1715
  * Function to create an excerpt for the post.
1716
  *
1959
  return false;
1960
  }
1961
  }
1962
+
1963
+ /**
1964
+ * Filters array of image sizes.
1965
+ *
1966
+ * @since 2.0.0
1967
+ *
1968
+ * @param array $sizes Image sizes
1969
+ */
1970
  return apply_filters( 'tptn_get_all_image_sizes', $sizes );
1971
  }
1972
 
1973
+
1974
+ /**
1975
+ * Returns the object identifier for the current language (WPML).
1976
+ *
1977
+ * @since 2.1.0
1978
+ *
1979
+ * @param $post_id Post ID
1980
+ */
1981
+ function tptn_object_id_cur_lang( $post_id ) {
1982
+ if ( function_exists( 'icl_object_id' ) ) {
1983
+ $post_id = icl_object_id( $post_id, 'any', true, ICL_LANGUAGE_CODE );
1984
+ }
1985
+
1986
+ /**
1987
+ * Filters object ID for current language (WPML).
1988
+ *
1989
+ * @since 2.1.0
1990
+ *
1991
+ * @param int $post_id Post ID
1992
+ */
1993
+ return apply_filters( 'tptn_object_id_cur_lang', $post_id );
1994
+ }
1995
+
1996
+
1997
  /*----------------------------------------------------------------------------*
1998
  * WordPress widget
1999
  *----------------------------------------------------------------------------*/