Top 10 – Popular posts plugin for WordPress - Version 1.9.10

Version Description

New meta box to set thumbnails; Edit total view count; Stop tracking Editors; Shortcode accepts all parameters as options page; Refer to the Changelog for full list of changes.

=

Download this release

Release Info

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

Code changes from version 1.9.9.2 to 1.9.10

README.md CHANGED
@@ -2,7 +2,7 @@
2
 
3
  __Requires:__ 3.0
4
 
5
- __Tested up to:__ 3.9
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
2
 
3
  __Requires:__ 3.0
4
 
5
+ __Tested up to:__ 4.0
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
admin.inc.php CHANGED
@@ -16,146 +16,150 @@ function tptn_options() {
16
  $poststable = $wpdb->posts;
17
 
18
  $tptn_settings = tptn_read_options();
19
- parse_str($tptn_settings['post_types'],$post_types);
20
  $wp_post_types = get_post_types( array(
21
  'public' => true,
22
  ) );
23
- $posts_types_inc = array_intersect($wp_post_types, $post_types);
24
-
25
-
26
- if( (isset($_POST['tptn_save']))&&( check_admin_referer('tptn-plugin-options') ) ) {
27
- $tptn_settings['title'] = wp_kses_post($_POST['title']);
28
- $tptn_settings['title_daily'] = wp_kses_post($_POST['title_daily']);
29
- $tptn_settings['daily_range'] = intval($_POST['daily_range']);
30
- $tptn_settings['limit'] = intval($_POST['limit']);
31
- $tptn_settings['count_disp_form'] = ($_POST['count_disp_form']);
32
- $tptn_settings['count_disp_form_zero'] = ($_POST['count_disp_form_zero']);
33
- $tptn_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode(',', array_map('intval', explode(",", $_POST['exclude_on_post_ids'])));
34
- $tptn_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode(',', array_map('intval', explode(",", $_POST['exclude_post_ids'])));
35
-
36
- $tptn_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
37
- $tptn_settings['count_on_pages'] = (isset($_POST['count_on_pages']) ? true : false);
38
- $tptn_settings['add_to_feed'] = (isset($_POST['add_to_feed']) ? true : false);
39
- $tptn_settings['add_to_home'] = (isset($_POST['add_to_home']) ? true : false);
40
- $tptn_settings['add_to_category_archives'] = (isset($_POST['add_to_category_archives']) ? true : false);
41
- $tptn_settings['add_to_tag_archives'] = (isset($_POST['add_to_tag_archives']) ? true : false);
42
- $tptn_settings['add_to_archives'] = (isset($_POST['add_to_archives']) ? true : false);
43
-
44
- $tptn_settings['activate_overall'] = (isset($_POST['activate_overall']) ? true : false);
45
- $tptn_settings['activate_daily'] = (isset($_POST['activate_daily']) ? true : false);
46
- $tptn_settings['track_authors'] = (isset($_POST['track_authors']) ? true : false);
47
- $tptn_settings['track_admins'] = (isset($_POST['track_admins']) ? true : false);
48
- $tptn_settings['pv_in_admin'] = (isset($_POST['pv_in_admin']) ? true : false);
49
- $tptn_settings['show_count_non_admins'] = (isset($_POST['show_count_non_admins']) ? true : false);
50
-
51
- $tptn_settings['disp_list_count'] = (isset($_POST['disp_list_count']) ? true : false);
52
- $tptn_settings['d_use_js'] = (isset($_POST['d_use_js']) ? true : false);
53
- $tptn_settings['dynamic_post_count'] = (isset($_POST['dynamic_post_count']) ? true : false);
54
- $tptn_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
55
- $tptn_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
56
- $tptn_settings['blank_output_text'] = wp_kses_post($_POST['blank_output_text']);
57
 
58
  $tptn_settings['post_thumb_op'] = $_POST['post_thumb_op'];
59
  $tptn_settings['before_list'] = $_POST['before_list'];
60
  $tptn_settings['after_list'] = $_POST['after_list'];
61
  $tptn_settings['before_list_item'] = $_POST['before_list_item'];
62
  $tptn_settings['after_list_item'] = $_POST['after_list_item'];
63
- $tptn_settings['thumb_meta'] = (''==$_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta']);
64
  $tptn_settings['thumb_default'] = $_POST['thumb_default'];
65
  $tptn_settings['thumb_html'] = $_POST['thumb_html'];
66
- $tptn_settings['thumb_height'] = intval($_POST['thumb_height']);
67
- $tptn_settings['thumb_width'] = intval($_POST['thumb_width']);
68
- $tptn_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
69
- $tptn_settings['thumb_timthumb'] = (isset($_POST['thumb_timthumb']) ? true : false);
70
- $tptn_settings['scan_images'] = (isset($_POST['scan_images']) ? true : false);
71
-
72
- $tptn_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
73
- $tptn_settings['excerpt_length'] = intval($_POST['excerpt_length']);
74
- $tptn_settings['title_length'] = intval($_POST['title_length']);
75
- $tptn_settings['show_date'] = (isset($_POST['show_date']) ? true : false);
76
- $tptn_settings['show_author'] = (isset($_POST['show_author']) ? true : false);
77
-
78
- $tptn_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
79
- $tptn_settings['include_default_style'] = (isset($_POST['include_default_style']) ? true : false);
80
-
81
- $tptn_settings['link_new_window'] = (isset($_POST['link_new_window']) ? true : false);
82
- $tptn_settings['link_nofollow'] = (isset($_POST['link_nofollow']) ? true : false);
 
83
 
84
- $tptn_settings['cache_fix'] = (isset($_POST['cache_fix']) ? true : false);
85
 
86
  // Exclude categories
87
- $tptn_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
88
 
89
- $exclude_categories_slugs = explode(", ",$tptn_settings['exclude_cat_slugs']);
90
 
91
  //$exclude_categories = '';
92
- foreach ($exclude_categories_slugs as $exclude_categories_slug) {
93
- $catObj = get_category_by_slug($exclude_categories_slug);
94
- if (isset($catObj->term_id)) $exclude_categories[] = $catObj->term_id;
 
 
95
  }
96
- $tptn_settings['exclude_categories'] = (isset($exclude_categories)) ? join(',', $exclude_categories) : '';
97
 
98
  $wp_post_types = get_post_types( array(
99
  'public' => true,
100
  ) );
101
- $post_types_arr = (isset($_POST['post_types']) && is_array($_POST['post_types'])) ? $_POST['post_types'] : array('post' => 'post');
102
- $post_types = array_intersect($wp_post_types, $post_types_arr);
103
- $tptn_settings['post_types'] = http_build_query($post_types, '', '&');
104
 
105
- update_option('ald_tptn_settings', $tptn_settings);
106
 
107
  // Let's get the options again after we update them
108
  $tptn_settings = tptn_read_options();
109
- parse_str($tptn_settings['post_types'],$post_types);
110
- $posts_types_inc = array_intersect($wp_post_types, $post_types);
111
 
112
- $str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',TPTN_LOCAL_NAME) .'</p></div>';
113
  echo $str;
114
  }
115
 
116
- if((isset($_POST['tptn_default']))&&( check_admin_referer('tptn-plugin-options') ) ) {
117
- delete_option('ald_tptn_settings');
118
  $tptn_settings = tptn_default_options();
119
- update_option('ald_tptn_settings', $tptn_settings);
120
  tptn_disable_run();
121
 
122
- $str = '<div id="message" class="updated fade"><p>'. __('Options set to Default.',TPTN_LOCAL_NAME) .'</p></div>';
123
  echo $str;
124
  }
125
 
126
- if((isset($_POST['tptn_trunc_all']))&&( check_admin_referer('tptn-plugin-options') )) {
127
- tptn_trunc_count(false);
128
- $str = '<div id="message" class="updated fade"><p>'. __('Top 10 popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
129
  echo $str;
130
  }
131
 
132
- if((isset($_POST['tptn_trunc_daily']))&&( check_admin_referer('tptn-plugin-options') )) {
133
- tptn_trunc_count(true);
134
- $str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
135
  echo $str;
136
  }
137
 
138
- if((isset($_POST['tptn_clean_duplicates']))&&( check_admin_referer('tptn-plugin-options') ) ) {
139
- tptn_clean_duplicates(true);
140
- tptn_clean_duplicates(false);
141
- $str = '<div id="message" class="updated fade"><p>'. __('Duplicate rows cleaned from tables',TPTN_LOCAL_NAME) .'</p></div>';
142
  echo $str;
143
  }
144
 
145
- if((isset($_POST['tptn_mnts_save']))&&( check_admin_referer('tptn-plugin-options') ) ) {
146
- $tptn_settings['cron_hour'] = intval($_POST['cron_hour']);
147
- $tptn_settings['cron_min'] = intval($_POST['cron_min']);
148
  $tptn_settings['cron_recurrence'] = $_POST['cron_recurrence'];
149
- if ( isset($_POST['cron_on']) ) {
 
150
  $tptn_settings['cron_on'] = true;
151
  tptn_enable_run( $tptn_settings['cron_hour'], $tptn_settings['cron_min'], $tptn_settings['cron_recurrence'] );
152
- $str = '<div id="message" class="updated fade"><p>' . __('Scheduled maintenance enabled / modified',TPTN_LOCAL_NAME) .'</p></div>';
153
  } else {
154
  $tptn_settings['cron_on'] = false;
155
  tptn_disable_run();
156
- $str = '<div id="message" class="updated fade"><p>'. __('Scheduled maintenance disabled',TPTN_LOCAL_NAME) .'</p></div>';
157
  }
158
- update_option('ald_tptn_settings', $tptn_settings);
159
  $tptn_settings = tptn_read_options();
160
 
161
  echo $str;
@@ -168,56 +172,56 @@ function tptn_options() {
168
  <div id="post-body" class="metabox-holder columns-2">
169
  <div id="post-body-content">
170
  <form method="post" id="tptn_options" name="tptn_options" onsubmit="return checkForm()">
171
- <div id="genopdiv" class="postbox closed"><div class="handlediv" title="Click to toggle"><br /></div>
172
- <h3 class='hndle'><span><?php _e('General options',TPTN_LOCAL_NAME); ?></span></h3>
173
  <div class="inside">
174
  <table class="form-table">
175
  <tr>
176
- <th scope="row"><label for="activate_overall"><?php _e('Enable Overall stats',TPTN_LOCAL_NAME); ?></label></th>
177
- <td><input type="checkbox" name="activate_overall" id="activate_overall" <?php if ($tptn_settings['activate_overall']) echo 'checked="checked"' ?> />
178
  </td>
179
  </tr>
180
  <tr>
181
- <th scope="row"><label for="activate_daily"><?php _e('Enable Daily stats',TPTN_LOCAL_NAME); ?></label></th>
182
- <td><input type="checkbox" name="activate_daily" id="activate_daily" <?php if ($tptn_settings['activate_daily']) echo 'checked="checked"' ?> />
183
  </td>
184
  </tr>
185
  <tr>
186
- <th scope="row"><label for="cache_fix"><?php _e('W3 Total Cache fix:',TPTN_LOCAL_NAME); ?></label></th>
187
- <td><input type="checkbox" name="cache_fix" id="cache_fix" <?php if ($tptn_settings['cache_fix']) echo 'checked="checked"' ?> />
188
- <p class="description"><?php _e('This will try to prevent W3 Total Cache from caching the addcount script of the plugin. Try toggling this option in case you find that our posts are not tracked.',TPTN_LOCAL_NAME); ?></p>
189
  </td>
190
  </tr>
191
  <tr>
192
- <th scope="row"><label for="limit"><?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?></label></th>
193
- <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($tptn_settings['limit'])); ?>">
194
- <p class="description"><?php _e("Maximum number of posts that will be displayed in the list. This option is used if you don't specify the number of posts in the widget or shortcodes",TPTN_LOCAL_NAME); ?></p>
195
  </td>
196
  </tr>
197
  <tr>
198
- <th scope="row"><label for="daily_range"><?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?></label></th>
199
- <td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings['daily_range']); ?>">
200
- <p class="description"><?php _e("Instead of displaying popular posts fromt he past day, this setting lets you display posts for as many days as you want. This can be overridden in the widget.",TPTN_LOCAL_NAME); ?></p>
201
  </td>
202
  </tr>
203
- <tr><th scope="row"><?php _e('Post types to include in results (including custom post types)',TPTN_LOCAL_NAME); ?></th>
204
  <td>
205
- <?php foreach ($wp_post_types as $wp_post_type) {
206
  $post_type_op = '<input type="checkbox" name="post_types[]" value="'.$wp_post_type.'" ';
207
- if (in_array($wp_post_type, $posts_types_inc)) $post_type_op .= ' checked="checked" ';
208
  $post_type_op .= ' />'.$wp_post_type.'&nbsp;&nbsp;';
209
  echo $post_type_op;
210
  }
211
  ?>
212
  </td>
213
  </tr>
214
- <tr><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',TPTN_LOCAL_NAME); ?></label></th>
215
- <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($tptn_settings['exclude_post_ids'])); ?>" style="width:250px">
216
- <p class="description"><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',TPTN_LOCAL_NAME); ?></p>
217
  </td>
218
  </tr>
219
  <tr>
220
- <th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
221
  <td>
222
  <div style="position:relative;text-align:left">
223
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
@@ -231,322 +235,333 @@ function tptn_options() {
231
  </div>
232
  </td></tr>
233
  </table>
234
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs" style="width:100%"><?php echo (stripslashes($tptn_settings['exclude_cat_slugs'])); ?></textarea>
235
- <p class="description"><?php _e('Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options',TPTN_LOCAL_NAME); ?></p>
236
  </div>
237
  </td>
238
  </tr>
239
  <tr>
240
- <th scope="row"><?php _e('Display number of views on:',TPTN_LOCAL_NAME); ?></th>
241
  <td>
242
- <label><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings['add_to_content']) echo 'checked="checked"' ?> /> <?php _e('Posts',TPTN_LOCAL_NAME); ?></label><br />
243
- <label><input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ($tptn_settings['count_on_pages']) echo 'checked="checked"' ?> /> <?php _e('Pages',TPTN_LOCAL_NAME); ?></label><br />
244
- <label><input type="checkbox" name="add_to_home" id="add_to_home" <?php if ($tptn_settings['add_to_home']) echo 'checked="checked"' ?> /> <?php _e('Home page',TPTN_LOCAL_NAME); ?></label></label><br />
245
- <label><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ($tptn_settings['add_to_feed']) echo 'checked="checked"' ?> /> <?php _e('Feeds',TPTN_LOCAL_NAME); ?></label></label><br />
246
- <label><input type="checkbox" name="add_to_category_archives" id="add_to_category_archives" <?php if ($tptn_settings['add_to_category_archives']) echo 'checked="checked"' ?> /> <?php _e('Category archives',TPTN_LOCAL_NAME); ?></label><br />
247
- <label><input type="checkbox" name="add_to_tag_archives" id="add_to_tag_archives" <?php if ($tptn_settings['add_to_tag_archives']) echo 'checked="checked"' ?> /> <?php _e('Tag archives',TPTN_LOCAL_NAME); ?></label></label><br />
248
- <label><input type="checkbox" name="add_to_archives" id="add_to_archives" <?php if ($tptn_settings['add_to_archives']) echo 'checked="checked"' ?> /> <?php _e('Other archives',TPTN_LOCAL_NAME); ?></label></label>
249
- <p class="description"><?php _e('If you choose to disable this, please add <code>&lt;?php if(function_exists(\'echo_ald_tptn\')) echo_ald_tptn(); ?&gt;</code> to your template file where you want it displayed',TPTN_LOCAL_NAME); ?></p>
 
 
 
 
 
250
  </td>
251
  </tr>
252
- <tr><th scope="row"><label for="dynamic_post_count"><?php _e('Always display latest post count',TPTN_LOCAL_NAME); ?></label></th>
253
- <td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> />
254
- <p class="description"><?php _e('This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts.',TPTN_LOCAL_NAME); ?></p>
255
  </td>
256
  </tr>
257
- <tr><th scope="row"><label for="track_authors"><?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?></label></th>
258
- <td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings['track_authors']) echo 'checked="checked"' ?> />
259
- <p class="description"><?php _e('Disabling this option will stop authors visits tracked on their own posts',TPTN_LOCAL_NAME); ?></p>
260
  </td>
261
  </tr>
262
- <tr><th scope="row"><label for="track_admins"><?php _e('Track visits of admins?',TPTN_LOCAL_NAME); ?></label></th>
263
- <td><input type="checkbox" name="track_admins" id="track_admins" <?php if ($tptn_settings['track_admins']) echo 'checked="checked"' ?> />
264
- <p class="description"><?php _e('Disabling this option will stop admin visits being tracked.',TPTN_LOCAL_NAME); ?></p>
265
  </td>
266
  </tr>
267
- <tr><th scope="row"><label for="pv_in_admin"><?php _e('Display page views on Posts and Pages in Admin',TPTN_LOCAL_NAME); ?></label></th>
268
  <td>
269
- <input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings['pv_in_admin']) echo 'checked="checked"' ?> />
270
- <p class="description"><?php _e("Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages",TPTN_LOCAL_NAME); ?></p>
271
  </td>
272
  </tr>
273
- <tr><th scope="row"><label for="show_count_non_admins"><?php _e('Show number of views to non-admins',TPTN_LOCAL_NAME); ?></label></th>
274
  <td>
275
- <input type="checkbox" name="show_count_non_admins" id="show_count_non_admins" <?php if ($tptn_settings['show_count_non_admins']) echo 'checked="checked"' ?> />
276
- <p class="description"><?php _e("If you disable this then non-admins won't see the above columns or view the independent pages with the top posts",TPTN_LOCAL_NAME); ?></p>
277
  </td>
278
  </tr>
279
- <tr><th scope="row"><label for="show_credit"><?php _e('Link to Top 10 plugin page',TPTN_LOCAL_NAME); ?></label></th>
280
  <td>
281
- <input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings['show_credit']) echo 'checked="checked"' ?> />
282
- <p class="description"><?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></p>
283
  </td>
284
  </tr>
285
  </table>
286
  </div>
287
  </div>
288
- <div id="outputopdiv" class="postbox closed"><div class="handlediv" title="Click to toggle"><br /></div>
289
- <h3 class='hndle'><span><?php _e('Output options',TPTN_LOCAL_NAME); ?></span></h3>
290
  <div class="inside">
291
  <table class="form-table">
292
- <tr><th scope="row"><label for="title"><?php _e('Format to display the post views:',TPTN_LOCAL_NAME); ?></label></th>
293
- <td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="3" style="width:100%"><?php echo htmlspecialchars(stripslashes($tptn_settings['count_disp_form'])); ?></textarea>
294
- <p class="description"><?php _e('Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?>
295
  </td>
296
  </tr>
297
- <tr><th scope="row"><label for="title"><?php _e('What do display when there are no visits?',TPTN_LOCAL_NAME); ?></label></th>
298
- <td><textarea name="count_disp_form_zero" id="count_disp_form_zero" cols="50" rows="3" style="width:100%"><?php echo htmlspecialchars(stripslashes($tptn_settings['count_disp_form_zero'])); ?></textarea>
299
- <p class="description"><?php _e("This text applies only when there are 0 hits for the post and it isn't a single page. e.g. if you display post views on the homepage or archives then this text will be used. To override this, just enter the same text as above option.",TPTN_LOCAL_NAME); ?>
300
  </td>
301
  </tr>
302
- <tr><th scope="row"><label for="title"><?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
303
- <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($tptn_settings['title'])); ?>" style="width:250px" /></td>
304
  </tr>
305
- <tr><th scope="row"><label for="title_daily"><?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
306
- <td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo esc_attr(stripslashes($tptn_settings['title_daily'])); ?>" style="width:250px" /></td>
307
  </tr>
308
- <tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',TPTN_LOCAL_NAME); ?></label></th>
309
  <td>
310
  <label>
311
- <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($tptn_settings['blank_output']) echo 'checked="checked"' ?> />
312
- <?php _e('Blank Output',TPTN_LOCAL_NAME); ?></label>
313
  <br />
314
  <label>
315
- <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$tptn_settings['blank_output']) echo 'checked="checked"' ?> />
316
- <?php _e('Display:',TPTN_LOCAL_NAME); ?></label>
317
- <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($tptn_settings['blank_output_text'])); ?>" style="width:250px" />
318
  </td>
319
  </tr>
320
- <tr><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></label></th>
321
- <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
322
  </tr>
323
- <tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
324
- <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
325
  </tr>
326
- <tr><th scope="row"><label for="show_author"><?php _e('Show post author in list?',TPTN_LOCAL_NAME); ?></label></th>
327
- <td><input type="checkbox" name="show_author" id="show_author" <?php if ($tptn_settings['show_author']) echo 'checked="checked"' ?> /></td>
328
  </tr>
329
- <tr><th scope="row"><label for="show_date"><?php _e('Show post date in list?',TPTN_LOCAL_NAME); ?></label></th>
330
- <td><input type="checkbox" name="show_date" id="show_date" <?php if ($tptn_settings['show_date']) echo 'checked="checked"' ?> /></td>
331
  </tr>
332
- <tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',TPTN_LOCAL_NAME); ?></label></th>
333
- <td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($tptn_settings['title_length']); ?>" /></td>
334
  </tr>
335
- <tr><th scope="row"><label for="disp_list_count"><?php _e('Show view count in list?',TPTN_LOCAL_NAME); ?></label></th>
336
- <td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings['disp_list_count']) echo 'checked="checked"' ?> /></td>
337
  </tr>
338
- <tr><th scope="row"><label for="d_use_js"><?php _e('Always display latest post count in the daily lists?',TPTN_LOCAL_NAME); ?></label></th>
339
- <td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings['d_use_js']) echo 'checked="checked"' ?> />
340
- <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>
341
  </td>
342
  </tr>
343
- <tr><th scope="row"><label for="link_new_window "><?php _e('Open links in new window',TPTN_LOCAL_NAME); ?></label></th>
344
- <td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ($tptn_settings['link_new_window']) echo 'checked="checked"' ?> /></td>
345
  </tr>
346
- <tr><th scope="row"><label for="link_nofollow"><?php _e('Add nofollow attribute to links in the list',TPTN_LOCAL_NAME); ?></label></th>
347
- <td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ($tptn_settings['link_nofollow']) echo 'checked="checked"' ?> /></td>
348
  </tr>
349
- <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e('Exclude display of related posts on these posts / pages',TPTN_LOCAL_NAME); ?></label></th>
350
  <td>
351
- <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr(stripslashes($tptn_settings['exclude_on_post_ids'])); ?>" style="width:250px">
352
- <p class="description"><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',TPTN_LOCAL_NAME); ?></p>
353
  </td>
354
  </tr>
355
- <tr style="background: #eee"><th scope="row" colspan="2"><?php _e('Customise the list HTML',TPTN_LOCAL_NAME); ?></th>
356
  </tr>
357
- <tr><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
358
- <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list'])); ?>" style="width:250px" /></td>
359
  </tr>
360
- <tr><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?></label></th>
361
- <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list_item'])); ?>" style="width:250px" /></td>
362
  </tr>
363
- <tr><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?></label></th>
364
- <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list_item'])); ?>" style="width:250px" /></td>
365
  </tr>
366
- <tr><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
367
- <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list'])); ?>" style="width:250px" /></td>
368
  </tr>
369
- <tr style="background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
370
  </tr>
371
- <tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',TPTN_LOCAL_NAME); ?></label></th>
372
  <td>
373
  <label>
374
- <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
375
- <?php _e('Display thumbnails inline with posts, before title',TPTN_LOCAL_NAME); ?></label>
376
  <br />
377
  <label>
378
- <input type="radio" name="post_thumb_op" value="after" id="post_thumb_op_1" <?php if ($tptn_settings['post_thumb_op']=='after') echo 'checked="checked"' ?> />
379
- <?php _e('Display thumbnails inline with posts, after title',TPTN_LOCAL_NAME); ?></label>
380
  <br />
381
  <label>
382
- <input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_2" <?php if ($tptn_settings['post_thumb_op']=='thumbs_only') echo 'checked="checked"' ?> />
383
- <?php _e('Display only thumbnails, no text',TPTN_LOCAL_NAME); ?></label>
384
  <br />
385
  <label>
386
- <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ($tptn_settings['post_thumb_op']=='text_only') echo 'checked="checked"' ?> />
387
- <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
388
  <br />
389
  </td>
390
  </tr>
391
- <tr><th scope="row"><label for="thumb_width"><?php _e('Width of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
392
- <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_width'])); ?>" style="width:40px" />px</td>
393
  </tr>
394
- <tr><th scope="row"><label for="thumb_height"><?php _e('Height of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
395
- <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_height'])); ?>" style="width:40px" />px</td>
396
  </tr>
397
- <tr><th scope="row"><label for="thumb_html"><?php _e('Style attributes / Width and Height HTML attributes:',TPTN_LOCAL_NAME); ?></label></th>
398
  <td>
399
  <label>
400
- <input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ($tptn_settings['thumb_html']=='css') echo 'checked="checked"' ?> />
401
- <?php _e('Style attributes are used for width and height.',TPTN_LOCAL_NAME); ?> <br /><code>style="max-width:<?php echo $tptn_settings['thumb_width'] ?>px;max-height:<?php echo $tptn_settings['thumb_height'] ?>px;"</code></label>
402
  <br />
403
  <label>
404
- <input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ($tptn_settings['thumb_html']=='html') echo 'checked="checked"' ?> />
405
- <?php _e('HTML width and height attributes are used for width and height.',TPTN_LOCAL_NAME); ?> <br /><code>width="<?php echo $tptn_settings['thumb_width'] ?>" height="<?php echo $tptn_settings['thumb_height'] ?>"</code></label>
406
  <br />
407
  </td>
408
  </tr>
409
- <tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
410
  <td>
411
- <input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings['thumb_timthumb']) echo 'checked="checked"' ?> />
412
- <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>
413
  </td>
414
  </tr>
415
- <tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
 
 
 
 
 
 
416
  <td>
417
- <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_meta'])); ?>">
418
- <p class="description"><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></p>
419
  </td>
420
  </tr>
421
- <tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',TPTN_LOCAL_NAME); ?></label></th>
422
  <td>
423
- <input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings['scan_images']) echo 'checked="checked"' ?> />
424
- <p class="description"><?php _e('This could slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></p>
425
  </td>
426
  </tr>
427
- <tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
428
  <td>
429
- <input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings['thumb_default_show']) echo 'checked="checked"' ?> />
430
- <p class="description"><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></p>
431
  </td>
432
  </tr>
433
- <tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
434
  <td>
435
  <input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_default'] ) ); ?>" style="width:100%"> <br />
436
- <?php if( $tptn_settings['thumb_default'] != '' ) echo "<img src='{$tptn_settings['thumb_default']}' style='max-width:200px' />"; ?>
437
- <p class="description"><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></p>
438
  </td>
439
  </tr>
440
  </table>
441
  </div>
442
  </div>
443
- <div id="customcssdiv" class="postbox closed"><div class="handlediv" title="Click to toggle"><br /></div>
444
- <h3 class='hndle'><span><?php _e('Custom CSS',TPTN_LOCAL_NAME); ?></span></h3>
445
  <div class="inside">
446
  <table class="form-table">
447
- <tr><th scope="row"><label for="include_default_style"><?php _e('Use default style included in the plugin?',TPTN_LOCAL_NAME); ?></label></th>
448
  <td>
449
- <input type="checkbox" name="include_default_style" id="include_default_style" <?php if ($tptn_settings['include_default_style']) echo 'checked="checked"' ?> />
450
- <p class="description"><?php _e('Top 10 includes a default style that makes your popular posts list to look pretty. Check the box above if you want to use this. You will need to select <strong>Thumbnails inline, before title</strong> in Output Options or in the Widget.',TPTN_LOCAL_NAME); ?></p>
451
  </td>
452
  </tr>
453
- <tr><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
454
  </tr>
455
- <tr><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80" style="width:100%"><?php echo stripslashes($tptn_settings['custom_CSS']); ?></textarea>
456
- <p class="description"><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></p>
457
  </td>
458
  </tr>
459
  </table>
460
  </div>
461
  </div>
462
  <p>
463
- <input type="submit" name="tptn_save" id="tptn_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>" class="button button-primary" />
464
- <input type="submit" name="tptn_default" id="tptn_default" value="<?php _e('Default Options',TPTN_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',TPTN_LOCAL_NAME); ?>')) return false;" />
465
  </p>
466
- <?php wp_nonce_field('tptn-plugin-options') ?>
467
  </form>
468
 
469
  <hr class="clear" />
470
 
471
  <form method="post" id="tptn_maintenance_op" name="tptn_reset_options" onsubmit="return checkForm()">
472
- <div id="resetopdiv" class="postbox closed"><div class="handlediv" title="Click to toggle"><br /></div>
473
- <h3 class='hndle'><span><?php _e('Maintenance',TPTN_LOCAL_NAME); ?></span></h3>
474
  <div class="inside">
475
  <table class="form-table">
476
  <tr><td scope="row" colspan="2">
477
- <p class="description"><?php _e('Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs. Enabling maintenance will automatically delete entries older than 90 days.',TPTN_LOCAL_NAME); ?><br />
478
- <strong><?php _e('Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below).',TPTN_LOCAL_NAME); ?></strong>
479
  </td>
480
  </tr>
481
- <tr><th scope="row"><label for="cron_on"><?php _e('Enable scheduled maintenance of daily tables:',TPTN_LOCAL_NAME); ?></label></th>
482
- <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings['cron_on']) echo 'checked="checked"' ?> />
483
  </td>
484
  </tr>
485
- <tr><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
486
- <td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_hour'])); ?>" style="width:50px" /> <?php _e('hrs',TPTN_LOCAL_NAME); ?> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_min'])); ?>" style="width:50px" /> <?php _e('min',TPTN_LOCAL_NAME); ?></td>
487
  </tr>
488
- <tr><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
489
  <td>
490
  <label>
491
- <input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ($tptn_settings['cron_recurrence']=='daily') echo 'checked="checked"' ?> />
492
- <?php _e('Daily',TPTN_LOCAL_NAME); ?></label>
493
  <br />
494
  <label>
495
- <input type="radio" name="cron_recurrence" value="weekly" id="cron_recurrence1" <?php if ($tptn_settings['cron_recurrence']=='weekly') echo 'checked="checked"' ?> />
496
- <?php _e('Weekly',TPTN_LOCAL_NAME); ?></label>
497
  <br />
498
  <label>
499
- <input type="radio" name="cron_recurrence" value="fortnightly" id="cron_recurrence2" <?php if ($tptn_settings['cron_recurrence']=='fortnightly') echo 'checked="checked"' ?> />
500
- <?php _e('Fortnightly',TPTN_LOCAL_NAME); ?></label>
501
  <br />
502
  <label>
503
- <input type="radio" name="cron_recurrence" value="monthly" id="cron_recurrence3" <?php if ($tptn_settings['cron_recurrence']=='monthly') echo 'checked="checked"' ?> />
504
- <?php _e('Monthly',TPTN_LOCAL_NAME); ?></label>
505
  <br />
506
  </td>
507
  </tr>
508
  <tr><td scope="row" colspan="2">
509
  <?php
510
- if ( ($tptn_settings['cron_on']) || wp_next_scheduled('ald_tptn_hook') ) {
511
- if (wp_next_scheduled('ald_tptn_hook')) {
512
  echo '<span style="color:#0c0">';
513
- _e('The cron job has been scheduled. Maintenance will run ',TPTN_LOCAL_NAME);
514
- echo wp_get_schedule('ald_tptn_hook');
515
  echo '</span>';
516
  } else {
517
  echo '<span style="color:#e00">';
518
- _e('The cron job is missing. Please resave this page to add the job',TPTN_LOCAL_NAME);
519
  echo '</span>';
520
  }
521
  } else {
522
  echo '<span style="color:#FFA500">';
523
- _e('Maintenance is turned off',TPTN_LOCAL_NAME);
524
  echo '</span>';
525
  }
526
  ?>
527
  </td></tr>
528
  </table>
529
- <input type="submit" name="tptn_mnts_save" id="tptn_mnts_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>" class="button button-primary" />
530
  </div>
531
  </div>
532
- <?php wp_nonce_field('tptn-plugin-options'); ?>
533
  </form>
534
 
535
  <form method="post" id="tptn_reset_options" name="tptn_reset_options" onsubmit="return checkForm()">
536
- <div id="resetopdiv" class="postbox closed"><div class="handlediv" title="Click to toggle"><br /></div>
537
- <h3 class='hndle'><span><?php _e('Reset count',TPTN_LOCAL_NAME); ?></span></h3>
538
  <div class="inside">
539
  <p class="description">
540
- <?php _e('This cannot be reversed. Make sure that your database has been backed up before proceeding',TPTN_LOCAL_NAME); ?>
541
  </p>
542
  <p>
543
- <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e('Reset Popular Posts',TPTN_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
544
- <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" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
545
- <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;" />
546
  </p>
547
  </div>
548
  </div>
549
- <?php wp_nonce_field('tptn-plugin-options'); ?>
550
  </form>
551
 
552
  </div><!-- /post-body-content -->
@@ -564,6 +579,7 @@ function tptn_options() {
564
 
565
  }
566
 
 
567
  /**
568
  * Function to generate the top 10 daily popular posts page.
569
  *
@@ -574,6 +590,7 @@ function tptn_manage_daily() {
574
  tptn_manage(1);
575
  }
576
 
 
577
  /**
578
  * Function to generate the top 10 daily popular posts page.
579
  *
@@ -581,20 +598,26 @@ function tptn_manage_daily() {
581
  * @param int $daily (default: 0) Overall popular
582
  * @return void
583
  */
584
- function tptn_manage($daily = 0) {
585
 
586
- $paged = (isset($_GET['paged']) ? intval($_GET['paged']) : 0);
587
- $limit = (isset($_GET['limit']) ? intval($_GET['limit']) : 0);
588
- $daily = (isset($_GET['daily']) ? intval($_GET['daily']) : $daily);
589
 
590
  ?>
591
 
592
  <div class="wrap">
593
- <h2><?php if (!$daily) _e('Popular Posts',TPTN_LOCAL_NAME); else _e('Daily Popular Posts',TPTN_LOCAL_NAME); ?></h2>
 
 
 
 
 
 
594
  <div id="poststuff">
595
  <div id="post-body" class="metabox-holder columns-2">
596
  <div id="post-body-content">
597
- <?php echo tptn_pop_display($daily,$paged,$limit,false); ?>
598
  </div><!-- /post-body-content -->
599
  <div id="postbox-container-1" class="postbox-container">
600
  <div id="side-sortables" class="meta-box-sortables ui-sortable">
@@ -609,6 +632,7 @@ function tptn_manage($daily = 0) {
609
  <?php
610
  }
611
 
 
612
  /**
613
  * Function to generate the right sidebar of the Settings and Admin popular posts pages.
614
  *
@@ -617,28 +641,28 @@ function tptn_manage($daily = 0) {
617
  */
618
  function tptn_admin_side() {
619
  ?>
620
- <div id="donatediv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
621
- <h3 class='hndle'><span><?php _e('Support the development',TPTN_LOCAL_NAME); ?></span></h3>
622
  <div class="inside">
623
  <div id="donate-form">
624
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
625
  <input type="hidden" name="cmd" value="_xclick">
626
  <input type="hidden" name="business" value="donate@ajaydsouza.com">
627
  <input type="hidden" name="lc" value="IN">
628
- <input type="hidden" name="item_name" value="Donation for Top 10">
629
- <input type="hidden" name="item_number" value="tptn">
630
- <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME); ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
631
  <input type="hidden" name="currency_code" value="USD">
632
  <input type="hidden" name="button_subtype" value="services">
633
  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
634
- <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e('Send your donation to the author of',TPTN_LOCAL_NAME); ?> Top 10?">
635
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
636
  </form>
637
  </div>
638
  </div>
639
  </div>
640
- <div id="followdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
641
- <h3 class='hndle'><span><?php _e('Follow me',TPTN_LOCAL_NAME); ?></span></h3>
642
  <div class="inside">
643
  <div id="follow-us">
644
  <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
@@ -647,17 +671,17 @@ function tptn_admin_side() {
647
  </div>
648
  </div>
649
  </div>
650
- <div id="qlinksdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
651
- <h3 class='hndle'><span><?php _e('Quick links',TPTN_LOCAL_NAME); ?></span></h3>
652
  <div class="inside">
653
  <div id="quick-links">
654
  <ul>
655
- <li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 plugin page',TPTN_LOCAL_NAME); ?></a></li>
656
- <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME); ?></a></li>
657
- <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME); ?></a></li>
658
- <li><a href="https://wordpress.org/plugins/top-10/faq/"><?php _e('FAQ',TPTN_LOCAL_NAME); ?></a></li>
659
- <li><a href="http://wordpress.org/support/plugin/top-10"><?php _e('Support',TPTN_LOCAL_NAME); ?></a></li>
660
- <li><a href="https://wordpress.org/support/view/plugin-reviews/top-10"><?php _e('Reviews',TPTN_LOCAL_NAME); ?></a></li>
661
  </ul>
662
  </div>
663
  </div>
@@ -666,6 +690,7 @@ function tptn_admin_side() {
666
  <?php
667
  }
668
 
 
669
  /**
670
  * Add Top 10 menu in WP-Admin.
671
  *
@@ -674,23 +699,24 @@ function tptn_admin_side() {
674
  */
675
  function tptn_adminmenu() {
676
 
677
- if (function_exists('add_menu_page')) {
678
 
679
- $plugin_page = add_menu_page(__("Top 10 Settings", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 'manage_options', 'tptn_options', 'tptn_options', 'dashicons-editor-ol');
680
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
681
 
682
- $plugin_page = add_submenu_page( 'tptn_options', __("Top 10 Settings", TPTN_LOCAL_NAME), __("Top 10 Settings", TPTN_LOCAL_NAME), 'manage_options', 'tptn_options', 'tptn_options');
683
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
684
 
685
- $plugin_page = add_submenu_page( 'tptn_options', __("Overall Popular Posts", TPTN_LOCAL_NAME), __("Overall Popular Posts", TPTN_LOCAL_NAME), 'manage_options', 'tptn_manage', 'tptn_manage');
686
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
687
 
688
- $plugin_page = add_submenu_page( 'tptn_options', __("Daily Popular Posts", TPTN_LOCAL_NAME), __("Daily Popular Posts", TPTN_LOCAL_NAME), 'manage_options', 'tptn_manage_daily', 'tptn_manage_daily');
689
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
690
 
691
  }
692
  }
693
- add_action('admin_menu', 'tptn_adminmenu');
 
694
 
695
  /**
696
  * Add JS and CSS to admin header.
@@ -701,9 +727,9 @@ add_action('admin_menu', 'tptn_adminmenu');
701
  function tptn_adminhead() {
702
  global $tptn_url;
703
 
704
- wp_enqueue_script('common');
705
- wp_enqueue_script('wp-lists');
706
- wp_enqueue_script('postbox');
707
  ?>
708
  <style type="text/css">
709
  .postbox .handlediv:before {
@@ -761,12 +787,12 @@ function tptn_adminhead() {
761
  function wick_data() {
762
  global $wpdb;
763
 
764
- $categories = get_categories('hide_empty=0');
765
  $str = 'collection = [';
766
- foreach ($categories as $cat) {
767
- $str .= "'".$cat->slug."',";
768
  }
769
- $str = substr($str, 0, -1); // Remove trailing comma
770
  $str .= '];';
771
 
772
  echo $str;
@@ -789,15 +815,16 @@ function tptn_adminhead() {
789
  * @param bool $daily (default: false)
790
  * @return void
791
  */
792
- function tptn_clean_duplicates($daily = false) {
793
  global $wpdb;
 
794
  $table_name = $wpdb->prefix . "top_ten";
795
  if ($daily) $table_name .= "_daily";
796
  $count = 0;
797
 
798
- $wpdb->query("CREATE TEMPORARY TABLE ".$table_name."_temp AS SELECT * FROM ".$table_name." GROUP BY postnumber");
799
- $wpdb->query("TRUNCATE TABLE $table_name");
800
- $wpdb->query("INSERT INTO ".$table_name." SELECT * FROM ".$table_name."_temp");
801
  }
802
 
803
 
@@ -811,47 +838,52 @@ function tptn_clean_duplicates($daily = false) {
811
  * @param bool $widget (default: false) Is this a WordPress widget?
812
  * @return void
813
  */
814
- function tptn_pop_display($daily = FALSE, $page = 0, $limit = FALSE, $widget = FALSE) {
815
- global $wpdb, $siteurl, $tableposts, $id;
816
 
817
  $table_name = $wpdb->prefix . "top_ten";
818
- if ($daily) $table_name .= "_daily"; // If we're viewing daily posts, set this to true
819
 
820
- global $tptn_settings;
821
- if (!($limit)) $limit = $tptn_settings['limit'];
822
- if (!($page)) $page = 0; // Default page value.
823
- parse_str($tptn_settings['post_types'],$post_types); // Save post types in $post_types variable
824
 
825
  $results = tptn_pop_posts('posts_only=1&limit=99999&strict_limit=1&is_widget=1&exclude_post_ids=0&daily='.$daily);
826
- $numrows = count($results);
827
 
828
- $pages = intval($numrows/$limit); // Number of results pages.
829
 
830
  // $pages now contains int of pages, unless there is a remainder from division.
831
 
832
- if ($numrows % $limit) {$pages++;} // has remainder so add one page
833
 
834
- $current = ($page/$limit) + 1; // Current page number.
835
 
836
- if (($pages < 1) || ($pages == 0)) {$total = 1;} // If $pages is less than one or equal to 0, total pages is 1.
837
- else { $total = $pages;} // Else total pages is $pages value.
 
 
 
838
 
839
  $first = $page + 1; // The first result.
840
 
841
- if (!((($page + $limit) / $limit) >= $pages) && $pages != 1) {$last = $page + $limit;} //If not last results page, last result equals $page plus $limit.
842
- else{$last = $numrows;} // If last results page, last result equals total number of results.
 
 
 
843
 
844
- $results = array_slice($results, $page,$limit);
845
 
846
  $output = '<div id="tptn_popular_posts">';
847
  $output .= '<table width="100%" border="0">
848
  <tr>
849
  <td width="50%" align="left">';
850
- $output .= sprintf( __('Results %1$s to %2$s of %3$s',TPTN_LOCAL_NAME), '<strong>'.$first.'</strong>', '<strong>'.$last.'</strong>', '<strong>'.$numrows.'</strong>');
851
  $output .= '
852
  </td>
853
  <td width="50%" align="right">';
854
- $output .= sprintf( __('Page %s of %s',TPTN_LOCAL_NAME), '<strong>'.$current.'</strong>', '<strong>'.$total.'</strong>' );
855
  $output .= '
856
  </td>
857
  </tr>
@@ -861,13 +893,13 @@ function tptn_pop_display($daily = FALSE, $page = 0, $limit = FALSE, $widget = F
861
  <tr>
862
  <td align="left">';
863
 
864
- if(($daily && $widget) || (!$daily && !$widget)) {
865
  $output .= '<a href="./admin.php?page=tptn_manage_daily">';
866
- $output .= __('View Daily Popular Posts',TPTN_LOCAL_NAME);
867
  $output .= '</a></td>';
868
  $output .= '<td align="right">';
869
- if (!$widget) $output .= __('Results per-page:',TPTN_LOCAL_NAME);
870
- if (!$widget) $output .= ' <a href="./admin.php?page=tptn_manage&limit=10">10</a> | <a href="./admin.php?page=tptn_manage&limit=20">20</a> | <a href="./admin.php?page=tptn_manage&limit=50">50</a> | <a href="./admin.php?page=tptn_manage&limit=100">100</a> ';
871
  $output .= ' </td>
872
  </tr>
873
  <tr>
@@ -876,11 +908,11 @@ function tptn_pop_display($daily = FALSE, $page = 0, $limit = FALSE, $widget = F
876
  </table>';
877
  } else {
878
  $output .= '<a href="./admin.php?page=tptn_manage">';
879
- $output .= __('View Overall Popular Posts',TPTN_LOCAL_NAME);
880
  $output .= '</a></td>';
881
  $output .= '<td align="right">';
882
- if (!$widget) $output .= __('Results per-page:',TPTN_LOCAL_NAME);
883
- if (!$widget) $output .= ' <a href="./admin.php?page=tptn_manage_daily&limit=10">10</a> | <a href="./admin.php?page=tptn_manage_daily&limit=20">20</a> | <a href="./admin.php?page=tptn_manage_daily&limit=50">50</a> | <a href="./admin.php?page=tptn_manage_daily&limit=100">100</a> ';
884
  $output .= ' </td>
885
  </tr>
886
  <tr>
@@ -889,61 +921,60 @@ function tptn_pop_display($daily = FALSE, $page = 0, $limit = FALSE, $widget = F
889
  </table>';
890
  }
891
 
892
- $dailytag = ($daily) ? '_daily' : '';
893
 
894
  $output .= '<ul>';
895
- if ($results) {
896
- foreach ($results as $result) {
897
- $output .= '<li><a href="'.get_permalink($result['postnumber']).'">'.get_the_title($result['postnumber']).'</a>';
898
- $output .= ' ('.number_format_i18n($result['sumCount']).')';
899
  $output .= '</li>';
900
  }
901
  }
902
  $output .= '</ul>';
903
 
904
  $output .= '<p align="center">';
905
- if ($page != 0) { // Don't show back link if current page is first page.
906
  $back_page = $page - $limit;
907
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$back_page&daily=$daily&limit=$limit\">&laquo; ";
908
- $output .= __('Previous',TPTN_LOCAL_NAME);
909
  $output .= "</a>\n";
910
  }
911
 
912
  $pagination_range = 4;
913
- for ($i=1; $i <= $pages; $i++) // loop through each page and give link to it.
914
- {
915
- if($i >= $current+$pagination_range && $i <$pages){
916
- if($i == $current+$pagination_range){
917
  $output .= '&hellip;&nbsp;';
918
  }
919
  continue;
920
  }
921
- if($i < $current-$pagination_range+1 && $i <$pages){
922
  continue;
923
  }
924
 
925
- $ppage = $limit*($i - 1);
926
- if ($ppage == $page){
927
- $output .= ("<span class='current'>$i</span>\n");} // If current page don't give link, just text.
928
- else{
 
929
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$ppage&daily=$daily&limit=$limit\">$i</a> \n";
930
  }
931
  }
932
 
933
- if (!((($page+$limit) / $limit) >= $pages) && $pages != 1) { // If last page don't give next link.
934
  $next_page = $page + $limit;
935
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$next_page&daily=$daily&limit=$limit\">";
936
- $output .= __('Next',TPTN_LOCAL_NAME);
937
  $output .= " &raquo;</a>";
938
  }
939
- $output .= '</p>';
940
- $output .= '<p style="text-align:center;border-top: #000 1px solid">Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10 plugin</a></p>';
941
  $output .= '</div>';
942
 
943
- return $output;
944
-
945
  }
946
-
947
 
948
  /**
949
  * Widget for Popular Posts.
@@ -952,7 +983,7 @@ function tptn_pop_display($daily = FALSE, $page = 0, $limit = FALSE, $widget = F
952
  * @return void
953
  */
954
  function tptn_pop_dashboard() {
955
- echo tptn_pop_display(false,0,10,true);
956
  }
957
 
958
  /**
@@ -962,7 +993,7 @@ function tptn_pop_dashboard() {
962
  * @return void
963
  */
964
  function tptn_pop_daily_dashboard() {
965
- echo tptn_pop_display(true,0,10,true);
966
  }
967
 
968
  /**
@@ -974,14 +1005,14 @@ function tptn_pop_daily_dashboard() {
974
  function tptn_pop_dashboard_setup() {
975
  global $tptn_settings;
976
 
977
- if ( ( current_user_can('manage_options') ) || ( $tptn_settings['show_count_non_admins'] ) ) {
978
- if (function_exists('wp_add_dashboard_widget')) {
979
  wp_add_dashboard_widget( 'tptn_pop_dashboard', __( 'Popular Posts',TPTN_LOCAL_NAME ), 'tptn_pop_dashboard' );
980
  wp_add_dashboard_widget( 'tptn_pop_daily_dashboard', __( 'Daily Popular',TPTN_LOCAL_NAME ), 'tptn_pop_daily_dashboard' );
981
  }
982
  }
983
  }
984
- add_action('wp_dashboard_setup', 'tptn_pop_dashboard_setup');
985
 
986
 
987
  /**
@@ -991,18 +1022,18 @@ add_action('wp_dashboard_setup', 'tptn_pop_dashboard_setup');
991
  * @param mixed $cols
992
  * @return void
993
  */
994
- function tptn_column($cols) {
995
  global $tptn_settings;
996
 
997
  if ( ( current_user_can('manage_options') ) || ( $tptn_settings['show_count_non_admins'] ) ) {
998
- if ($tptn_settings['pv_in_admin']) $cols['tptn_total'] = __('Total Views',TPTN_LOCAL_NAME);
999
- if ($tptn_settings['pv_in_admin']) $cols['tptn_daily'] = __('Today\'s Views',TPTN_LOCAL_NAME);
1000
- if ($tptn_settings['pv_in_admin']) $cols['tptn_both'] = __('Views',TPTN_LOCAL_NAME);
1001
  }
1002
  return $cols;
1003
  }
1004
- add_filter('manage_posts_columns', 'tptn_column');
1005
- add_filter('manage_pages_columns', 'tptn_column');
1006
 
1007
 
1008
  /**
@@ -1013,35 +1044,34 @@ add_filter('manage_pages_columns', 'tptn_column');
1013
  * @param int|string $id Post ID
1014
  * @return void
1015
  */
1016
- function tptn_value($column_name, $id) {
1017
- global $wpdb;
1018
- global $tptn_settings;
1019
 
1020
  // Add Total count
1021
- if (($column_name == 'tptn_total')&&($tptn_settings['pv_in_admin'])) {
1022
  $table_name = $wpdb->prefix . "top_ten";
1023
 
1024
- $resultscount = $wpdb->get_row( $wpdb->prepare("SELECT postnumber, cntaccess from {$table_name} WHERE postnumber = %d", $id ) );
1025
- $cntaccess = number_format_i18n((($resultscount) ? $resultscount->cntaccess : 0));
1026
  echo $cntaccess;
1027
  }
1028
 
1029
  // Now process daily count
1030
- if (($column_name == 'tptn_daily')&&($tptn_settings['pv_in_admin'])) {
1031
  $table_name = $wpdb->prefix . "top_ten_daily";
1032
 
1033
- $daily_range = $tptn_settings['daily_range']-1;
1034
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
1035
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
1036
- $current_date = date ( 'Y-m-j' , $current_date );
1037
 
1038
- $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, $current_date) );
1039
- $cntaccess = number_format_i18n((($resultscount) ? $resultscount->sumCount : 0));
1040
  echo $cntaccess;
1041
  }
1042
 
1043
  // Now process both
1044
- if (($column_name == 'tptn_both')&&($tptn_settings['pv_in_admin'])) {
1045
  $table_name = $wpdb->prefix . "top_ten";
1046
 
1047
  $resultscount = $wpdb->get_row( $wpdb->prepare("SELECT postnumber, cntaccess from {$table_name} WHERE postnumber = %d", $id ) );
@@ -1051,16 +1081,16 @@ function tptn_value($column_name, $id) {
1051
 
1052
  $daily_range = $tptn_settings['daily_range']-1;
1053
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
1054
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
1055
- $current_date = date ( 'Y-m-j' , $current_date );
1056
 
1057
- $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, $current_date) );
1058
- $cntaccess .= ' / '.number_format_i18n((($resultscount) ? $resultscount->sumCount : 0));
1059
  echo $cntaccess;
1060
  }
1061
  }
1062
- add_action('manage_posts_custom_column', 'tptn_value', 10, 2);
1063
- add_action('manage_pages_custom_column', 'tptn_value', 10, 2);
1064
 
1065
 
1066
  /**
@@ -1073,8 +1103,8 @@ add_action('manage_pages_custom_column', 'tptn_value', 10, 2);
1073
  function tptn_column_register_sortable( $cols ) {
1074
  $tptn_settings = tptn_read_options();
1075
 
1076
- if ($tptn_settings['pv_in_admin']) $cols['tptn_total'] = array('tptn_total', true);
1077
- if ($tptn_settings['pv_in_admin']) $cols['tptn_daily'] = array('tptn_daily', true);
1078
  return $cols;
1079
  }
1080
  add_filter( 'manage_edit-post_sortable_columns', 'tptn_column_register_sortable' );
@@ -1107,8 +1137,8 @@ function tptn_column_clauses( $clauses, $wp_query ) {
1107
 
1108
  $daily_range = $tptn_settings['daily_range'] - 1;
1109
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
1110
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
1111
- $current_date = date ( 'Y-m-j' , $current_date );
1112
 
1113
  $clauses['join'] .= "LEFT OUTER JOIN {$table_name} ON {$wpdb->posts}.ID={$table_name}.postnumber";
1114
  $clauses['where'] .= " AND {$table_name}.dp_date >= '$current_date' ";
@@ -1135,7 +1165,142 @@ function tptn_css() {
1135
  </style>
1136
  <?php
1137
  }
1138
- add_action('admin_head', 'tptn_css');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
 
1140
 
1141
  ?>
16
  $poststable = $wpdb->posts;
17
 
18
  $tptn_settings = tptn_read_options();
19
+ parse_str( $tptn_settings['post_types'],$post_types );
20
  $wp_post_types = get_post_types( array(
21
  'public' => true,
22
  ) );
23
+ $posts_types_inc = array_intersect( $wp_post_types, $post_types );
24
+
25
+ if ( ( isset( $_POST['tptn_save'] ) ) && ( check_admin_referer( 'tptn-plugin-options' ) ) ) {
26
+ $tptn_settings['title'] = wp_kses_post( $_POST['title'] );
27
+ $tptn_settings['title_daily'] = wp_kses_post( $_POST['title_daily'] );
28
+ $tptn_settings['daily_range'] = intval( $_POST['daily_range'] );
29
+ $tptn_settings['limit'] = intval( $_POST['limit'] );
30
+ $tptn_settings['count_disp_form'] = $_POST['count_disp_form'];
31
+ $tptn_settings['count_disp_form_zero'] = $_POST['count_disp_form_zero'];
32
+ $tptn_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
33
+ $tptn_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_post_ids'] ) ) );
34
+
35
+ $tptn_settings['add_to_content'] = isset( $_POST['add_to_content'] ) ? true : false;
36
+ $tptn_settings['count_on_pages'] = isset( $_POST['count_on_pages'] ) ? true : false;
37
+ $tptn_settings['add_to_feed'] = isset( $_POST['add_to_feed'] ) ? true : false;
38
+ $tptn_settings['add_to_home'] = isset( $_POST['add_to_home'] ) ? true : false;
39
+ $tptn_settings['add_to_category_archives'] = isset( $_POST['add_to_category_archives'] ) ? true : false;
40
+ $tptn_settings['add_to_tag_archives'] = isset( $_POST['add_to_tag_archives'] ) ? true : false;
41
+ $tptn_settings['add_to_archives'] = isset( $_POST['add_to_archives'] ) ? true : false;
42
+
43
+ $tptn_settings['activate_overall'] = isset( $_POST['activate_overall']) ? true : false;
44
+ $tptn_settings['activate_daily'] = isset( $_POST['activate_daily']) ? true : false;
45
+ $tptn_settings['track_authors'] = isset( $_POST['track_authors']) ? true : false;
46
+ $tptn_settings['track_admins'] = isset( $_POST['track_admins']) ? true : false;
47
+ $tptn_settings['track_editors'] = isset( $_POST['track_editors']) ? true : false;
48
+ $tptn_settings['pv_in_admin'] = isset( $_POST['pv_in_admin']) ? true : false;
49
+ $tptn_settings['show_count_non_admins'] = isset( $_POST['show_count_non_admins'] ) ? true : false;
50
+
51
+ $tptn_settings['disp_list_count'] = isset( $_POST['disp_list_count'] ) ? true : false;
52
+ $tptn_settings['d_use_js'] = isset( $_POST['d_use_js'] ) ? true : false;
53
+ $tptn_settings['dynamic_post_count'] = isset( $_POST['dynamic_post_count'] ) ? true : false;
54
+ $tptn_settings['show_credit'] = isset( $_POST['show_credit'] ) ? true : false;
55
+ $tptn_settings['blank_output'] = ( $_POST['blank_output'] == 'blank' ) ? true : false;
56
+ $tptn_settings['blank_output_text'] = wp_kses_post( $_POST['blank_output_text'] );
57
 
58
  $tptn_settings['post_thumb_op'] = $_POST['post_thumb_op'];
59
  $tptn_settings['before_list'] = $_POST['before_list'];
60
  $tptn_settings['after_list'] = $_POST['after_list'];
61
  $tptn_settings['before_list_item'] = $_POST['before_list_item'];
62
  $tptn_settings['after_list_item'] = $_POST['after_list_item'];
63
+ $tptn_settings['thumb_meta'] = '' == $_POST['thumb_meta'] ? 'post-image' : $_POST['thumb_meta'];
64
  $tptn_settings['thumb_default'] = $_POST['thumb_default'];
65
  $tptn_settings['thumb_html'] = $_POST['thumb_html'];
66
+ $tptn_settings['thumb_height'] = intval( $_POST['thumb_height'] );
67
+ $tptn_settings['thumb_width'] = intval( $_POST['thumb_width'] );
68
+ $tptn_settings['thumb_default_show'] = isset( $_POST['thumb_default_show'] ) ? true : false;
69
+ $tptn_settings['thumb_timthumb'] = isset( $_POST['thumb_timthumb'] ) ? true : false;
70
+ $tptn_settings['thumb_timthumb_q'] = intval( $_POST['thumb_timthumb_q'] );
71
+ $tptn_settings['scan_images'] = isset( $_POST['scan_images'] ) ? true : false;
72
+
73
+ $tptn_settings['show_excerpt'] = isset( $_POST['show_excerpt'] ) ? true : false;
74
+ $tptn_settings['excerpt_length'] = intval( $_POST['excerpt_length'] );
75
+ $tptn_settings['title_length'] = intval( $_POST['title_length'] );
76
+ $tptn_settings['show_date'] = isset( $_POST['show_date'] ) ? true : false;
77
+ $tptn_settings['show_author'] = isset( $_POST['show_author'] ) ? true : false;
78
+
79
+ $tptn_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
80
+ $tptn_settings['include_default_style'] = isset( $_POST['include_default_style'] ) ? true : false;
81
+
82
+ $tptn_settings['link_new_window'] = isset( $_POST['link_new_window'] ) ? true : false;
83
+ $tptn_settings['link_nofollow'] = isset( $_POST['link_nofollow'] ) ? true : false;
84
 
85
+ $tptn_settings['cache_fix'] = isset( $_POST['cache_fix'] ) ? true : false;
86
 
87
  // Exclude categories
88
+ $tptn_settings['exclude_cat_slugs'] = $_POST['exclude_cat_slugs'];
89
 
90
+ $exclude_categories_slugs = explode( ", ", $tptn_settings['exclude_cat_slugs'] );
91
 
92
  //$exclude_categories = '';
93
+ foreach ( $exclude_categories_slugs as $exclude_categories_slug ) {
94
+ $catObj = get_category_by_slug( $exclude_categories_slug );
95
+ if ( isset( $catObj->term_id ) ) {
96
+ $exclude_categories[] = $catObj->term_id;
97
+ }
98
  }
99
+ $tptn_settings['exclude_categories'] = isset( $exclude_categories ) ? join( ',', $exclude_categories ) : '';
100
 
101
  $wp_post_types = get_post_types( array(
102
  'public' => true,
103
  ) );
104
+ $post_types_arr = ( isset( $_POST['post_types'] ) && is_array( $_POST['post_types'] ) ) ? $_POST['post_types'] : array( 'post' => 'post' );
105
+ $post_types = array_intersect( $wp_post_types, $post_types_arr );
106
+ $tptn_settings['post_types'] = http_build_query( $post_types, '', '&' );
107
 
108
+ update_option( 'ald_tptn_settings', $tptn_settings );
109
 
110
  // Let's get the options again after we update them
111
  $tptn_settings = tptn_read_options();
112
+ parse_str( $tptn_settings['post_types'], $post_types );
113
+ $posts_types_inc = array_intersect( $wp_post_types, $post_types );
114
 
115
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', TPTN_LOCAL_NAME ) .'</p></div>';
116
  echo $str;
117
  }
118
 
119
+ if ( ( isset( $_POST['tptn_default'] ) ) && ( check_admin_referer( 'tptn-plugin-options' ) ) ) {
120
+ delete_option( 'ald_tptn_settings' );
121
  $tptn_settings = tptn_default_options();
122
+ update_option( 'ald_tptn_settings', $tptn_settings );
123
  tptn_disable_run();
124
 
125
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Options set to Default.', TPTN_LOCAL_NAME ) .'</p></div>';
126
  echo $str;
127
  }
128
 
129
+ if ( ( isset( $_POST['tptn_trunc_all'] ) ) && ( check_admin_referer( 'tptn-plugin-options' ) ) ) {
130
+ tptn_trunc_count( false );
131
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Top 10 popular posts reset', TPTN_LOCAL_NAME ) .'</p></div>';
132
  echo $str;
133
  }
134
 
135
+ if ( ( isset( $_POST['tptn_trunc_daily'] ) ) && ( check_admin_referer( 'tptn-plugin-options' ) ) ) {
136
+ tptn_trunc_count( true );
137
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Top 10 daily popular posts reset', TPTN_LOCAL_NAME ) .'</p></div>';
138
  echo $str;
139
  }
140
 
141
+ if ( ( isset( $_POST['tptn_clean_duplicates'] ) ) && ( check_admin_referer( 'tptn-plugin-options' ) ) ) {
142
+ tptn_clean_duplicates( true );
143
+ tptn_clean_duplicates( false );
144
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Duplicate rows cleaned from tables', TPTN_LOCAL_NAME ) .'</p></div>';
145
  echo $str;
146
  }
147
 
148
+ if ( ( isset( $_POST['tptn_mnts_save'] ) ) && ( check_admin_referer( 'tptn-plugin-options' ) ) ) {
149
+ $tptn_settings['cron_hour'] = min( 23, intval( $_POST['cron_hour'] ) );
150
+ $tptn_settings['cron_min'] = min( 59, intval( $_POST['cron_min'] ) );
151
  $tptn_settings['cron_recurrence'] = $_POST['cron_recurrence'];
152
+
153
+ if ( isset( $_POST['cron_on'] ) ) {
154
  $tptn_settings['cron_on'] = true;
155
  tptn_enable_run( $tptn_settings['cron_hour'], $tptn_settings['cron_min'], $tptn_settings['cron_recurrence'] );
156
+ $str = '<div id="message" class="updated fade"><p>' . __( 'Scheduled maintenance enabled / modified', TPTN_LOCAL_NAME ) .'</p></div>';
157
  } else {
158
  $tptn_settings['cron_on'] = false;
159
  tptn_disable_run();
160
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Scheduled maintenance disabled', TPTN_LOCAL_NAME ) .'</p></div>';
161
  }
162
+ update_option( 'ald_tptn_settings', $tptn_settings );
163
  $tptn_settings = tptn_read_options();
164
 
165
  echo $str;
172
  <div id="post-body" class="metabox-holder columns-2">
173
  <div id="post-body-content">
174
  <form method="post" id="tptn_options" name="tptn_options" onsubmit="return checkForm()">
175
+ <div id="genopdiv" class="postbox closed"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
176
+ <h3 class='hndle'><span><?php _e( 'General options', TPTN_LOCAL_NAME ); ?></span></h3>
177
  <div class="inside">
178
  <table class="form-table">
179
  <tr>
180
+ <th scope="row"><label for="activate_overall"><?php _e( 'Enable Overall stats', TPTN_LOCAL_NAME ); ?></label></th>
181
+ <td><input type="checkbox" name="activate_overall" id="activate_overall" <?php if ( $tptn_settings['activate_overall'] ) echo 'checked="checked"' ?> />
182
  </td>
183
  </tr>
184
  <tr>
185
+ <th scope="row"><label for="activate_daily"><?php _e( 'Enable Daily stats', TPTN_LOCAL_NAME ); ?></label></th>
186
+ <td><input type="checkbox" name="activate_daily" id="activate_daily" <?php if ( $tptn_settings['activate_daily'] ) echo 'checked="checked"' ?> />
187
  </td>
188
  </tr>
189
  <tr>
190
+ <th scope="row"><label for="cache_fix"><?php _e( 'W3 Total Cache fix:', TPTN_LOCAL_NAME ); ?></label></th>
191
+ <td><input type="checkbox" name="cache_fix" id="cache_fix" <?php if ( $tptn_settings['cache_fix'] ) echo 'checked="checked"' ?> />
192
+ <p class="description"><?php _e( 'This will try to prevent W3 Total Cache from caching the addcount script of the plugin. Try toggling this option in case you find that our posts are not tracked.', TPTN_LOCAL_NAME ); ?></p>
193
  </td>
194
  </tr>
195
  <tr>
196
+ <th scope="row"><label for="limit"><?php _e( 'Number of popular posts to display: ', TPTN_LOCAL_NAME ); ?></label></th>
197
+ <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr( stripslashes( $tptn_settings['limit'] ) ); ?>">
198
+ <p class="description"><?php _e( "Maximum number of posts that will be displayed in the list. This option is used if you don't specify the number of posts in the widget or shortcodes", TPTN_LOCAL_NAME ); ?></p>
199
  </td>
200
  </tr>
201
  <tr>
202
+ <th scope="row"><label for="daily_range"><?php _e( 'Daily Popular should contain views of how many days? ', TPTN_LOCAL_NAME ); ?></label></th>
203
+ <td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes( $tptn_settings['daily_range'] ); ?>">
204
+ <p class="description"><?php _e( "Instead of displaying popular posts fromt he past day, this setting lets you display posts for as many days as you want. This can be overridden in the widget.", TPTN_LOCAL_NAME ); ?></p>
205
  </td>
206
  </tr>
207
+ <tr><th scope="row"><?php _e( 'Post types to include in results (including custom post types)', TPTN_LOCAL_NAME ); ?></th>
208
  <td>
209
+ <?php foreach ( $wp_post_types as $wp_post_type ) {
210
  $post_type_op = '<input type="checkbox" name="post_types[]" value="'.$wp_post_type.'" ';
211
+ if ( in_array( $wp_post_type, $posts_types_inc ) ) $post_type_op .= ' checked="checked" ';
212
  $post_type_op .= ' />'.$wp_post_type.'&nbsp;&nbsp;';
213
  echo $post_type_op;
214
  }
215
  ?>
216
  </td>
217
  </tr>
218
+ <tr><th scope="row"><label for="exclude_post_ids"><?php _e( 'List of post or page IDs to exclude from the results: ', TPTN_LOCAL_NAME ); ?></label></th>
219
+ <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr( stripslashes( $tptn_settings['exclude_post_ids'] ) ); ?>" style="width:250px">
220
+ <p class="description"><?php _e( 'Enter comma separated list of IDs. e.g. 188,320,500', TPTN_LOCAL_NAME ); ?></p>
221
  </td>
222
  </tr>
223
  <tr>
224
+ <th scope="row"><label for="exclude_cat_slugs"><?php _e( 'Exclude Categories: ', TPTN_LOCAL_NAME ); ?></label></th>
225
  <td>
226
  <div style="position:relative;text-align:left">
227
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
235
  </div>
236
  </td></tr>
237
  </table>
238
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs" style="width:100%"><?php echo ( stripslashes( $tptn_settings['exclude_cat_slugs'] ) ); ?></textarea>
239
+ <p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options', TPTN_LOCAL_NAME ); ?></p>
240
  </div>
241
  </td>
242
  </tr>
243
  <tr>
244
+ <th scope="row"><?php _e( 'Display number of views on:', TPTN_LOCAL_NAME ); ?></th>
245
  <td>
246
+ <label><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ( $tptn_settings['add_to_content'] ) echo 'checked="checked"' ?> /> <?php _e( 'Posts', TPTN_LOCAL_NAME ); ?></label><br />
247
+ <label><input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ( $tptn_settings['count_on_pages'] ) echo 'checked="checked"' ?> /> <?php _e( 'Pages', TPTN_LOCAL_NAME ); ?></label><br />
248
+ <label><input type="checkbox" name="add_to_home" id="add_to_home" <?php if ( $tptn_settings['add_to_home'] ) echo 'checked="checked"' ?> /> <?php _e( 'Home page', TPTN_LOCAL_NAME ); ?></label></label><br />
249
+ <label><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ( $tptn_settings['add_to_feed'] ) echo 'checked="checked"' ?> /> <?php _e( 'Feeds', TPTN_LOCAL_NAME ); ?></label></label><br />
250
+ <label><input type="checkbox" name="add_to_category_archives" id="add_to_category_archives" <?php if ( $tptn_settings['add_to_category_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Category archives', TPTN_LOCAL_NAME ); ?></label><br />
251
+ <label><input type="checkbox" name="add_to_tag_archives" id="add_to_tag_archives" <?php if ( $tptn_settings['add_to_tag_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Tag archives', TPTN_LOCAL_NAME ); ?></label></label><br />
252
+ <label><input type="checkbox" name="add_to_archives" id="add_to_archives" <?php if ( $tptn_settings['add_to_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Other archives', TPTN_LOCAL_NAME ); ?></label></label>
253
+ <p class="description"><?php _e( "If you choose to disable this, please add <code>&lt;?php if ( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;</code> to your template file where you want it displayed", TPTN_LOCAL_NAME ); ?></p>
254
+ </td>
255
+ </tr>
256
+ <tr><th scope="row"><label for="dynamic_post_count"><?php _e( 'Always display latest post count', TPTN_LOCAL_NAME ); ?></label></th>
257
+ <td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ( $tptn_settings['dynamic_post_count'] ) echo 'checked="checked"' ?> />
258
+ <p class="description"><?php _e( 'This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts.', TPTN_LOCAL_NAME ); ?></p>
259
  </td>
260
  </tr>
261
+ <tr><th scope="row"><label for="track_authors"><?php _e( 'Track visits of authors on their own posts?', TPTN_LOCAL_NAME ); ?></label></th>
262
+ <td><input type="checkbox" name="track_authors" id="track_authors" <?php if ( $tptn_settings['track_authors'] ) echo 'checked="checked"' ?> />
263
+ <p class="description"><?php _e( 'Disabling this option will stop authors visits tracked on their own posts', TPTN_LOCAL_NAME ); ?></p>
264
  </td>
265
  </tr>
266
+ <tr><th scope="row"><label for="track_admins"><?php _e( 'Track visits of admins?', TPTN_LOCAL_NAME ); ?></label></th>
267
+ <td><input type="checkbox" name="track_admins" id="track_admins" <?php if ( $tptn_settings['track_admins'] ) echo 'checked="checked"' ?> />
268
+ <p class="description"><?php _e( 'Disabling this option will stop admin visits being tracked.', TPTN_LOCAL_NAME ); ?></p>
269
  </td>
270
  </tr>
271
+ <tr><th scope="row"><label for="track_editors"><?php _e( 'Track visits of Editors?', TPTN_LOCAL_NAME ); ?></label></th>
272
+ <td><input type="checkbox" name="track_editors" id="track_editors" <?php if ( $tptn_settings['track_editors'] ) echo 'checked="checked"' ?> />
273
+ <p class="description"><?php _e( 'Disabling this option will stop editor visits being tracked.', TPTN_LOCAL_NAME ); ?></p>
274
  </td>
275
  </tr>
276
+ <tr><th scope="row"><label for="pv_in_admin"><?php _e( 'Display page views on Posts and Pages in Admin', TPTN_LOCAL_NAME ); ?></label></th>
277
  <td>
278
+ <input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ( $tptn_settings['pv_in_admin'] ) echo 'checked="checked"' ?> />
279
+ <p class="description"><?php _e( "Adds three columns called Total Views, Today's Views and Views to All Posts and All Pages", TPTN_LOCAL_NAME ); ?></p>
280
  </td>
281
  </tr>
282
+ <tr><th scope="row"><label for="show_count_non_admins"><?php _e( 'Show number of views to non-admins', TPTN_LOCAL_NAME ); ?></label></th>
283
  <td>
284
+ <input type="checkbox" name="show_count_non_admins" id="show_count_non_admins" <?php if ( $tptn_settings['show_count_non_admins'] ) echo 'checked="checked"' ?> />
285
+ <p class="description"><?php _e( "If you disable this then non-admins won't see the above columns or view the independent pages with the top posts", TPTN_LOCAL_NAME ); ?></p>
286
  </td>
287
  </tr>
288
+ <tr><th scope="row"><label for="show_credit"><?php _e( 'Link to Top 10 plugin page', TPTN_LOCAL_NAME ); ?></label></th>
289
  <td>
290
+ <input type="checkbox" name="show_credit" id="show_credit" <?php if ( $tptn_settings['show_credit'] ) echo 'checked="checked"' ?> />
291
+ <p class="description"><?php _e( 'A link to the plugin is added as an extra list item to the list of popular posts', TPTN_LOCAL_NAME ); ?></p>
292
  </td>
293
  </tr>
294
  </table>
295
  </div>
296
  </div>
297
+ <div id="outputopdiv" class="postbox closed"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
298
+ <h3 class='hndle'><span><?php _e( 'Output options', TPTN_LOCAL_NAME ); ?></span></h3>
299
  <div class="inside">
300
  <table class="form-table">
301
+ <tr><th scope="row"><label for="title"><?php _e( 'Format to display the post views:', TPTN_LOCAL_NAME ); ?></label></th>
302
+ <td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="3" style="width:100%"><?php echo htmlspecialchars( stripslashes( $tptn_settings['count_disp_form'] ) ); ?></textarea>
303
+ <p class="description"><?php _e( 'Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>', TPTN_LOCAL_NAME ); ?>
304
  </td>
305
  </tr>
306
+ <tr><th scope="row"><label for="title"><?php _e( 'What do display when there are no visits?', TPTN_LOCAL_NAME ); ?></label></th>
307
+ <td><textarea name="count_disp_form_zero" id="count_disp_form_zero" cols="50" rows="3" style="width:100%"><?php echo htmlspecialchars( stripslashes( $tptn_settings['count_disp_form_zero'] ) ); ?></textarea>
308
+ <p class="description"><?php _e( "This text applies only when there are 0 hits for the post and it isn't a single page. e.g. if you display post views on the homepage or archives then this text will be used. To override this, just enter the same text as above option.", TPTN_LOCAL_NAME ); ?>
309
  </td>
310
  </tr>
311
+ <tr><th scope="row"><label for="title"><?php _e( 'Title of popular posts: ', TPTN_LOCAL_NAME ); ?></label></th>
312
+ <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr( stripslashes( $tptn_settings['title'] ) ); ?>" style="width:250px" /></td>
313
  </tr>
314
+ <tr><th scope="row"><label for="title_daily"><?php _e( 'Title of daily popular posts: ', TPTN_LOCAL_NAME ); ?></label></th>
315
+ <td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo esc_attr( stripslashes( $tptn_settings['title_daily'] ) ); ?>" style="width:250px" /></td>
316
  </tr>
317
+ <tr><th scope="row"><label for="blank_output"><?php _e( 'When there are no posts, what should be shown?', TPTN_LOCAL_NAME ); ?></label></th>
318
  <td>
319
  <label>
320
+ <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ( $tptn_settings['blank_output'] ) echo 'checked="checked"' ?> />
321
+ <?php _e( 'Blank Output', TPTN_LOCAL_NAME ); ?></label>
322
  <br />
323
  <label>
324
+ <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if ( ! $tptn_settings['blank_output'] ) echo 'checked="checked"' ?> />
325
+ <?php _e( 'Display:', TPTN_LOCAL_NAME ); ?></label>
326
+ <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr( stripslashes( $tptn_settings['blank_output_text'] ) ); ?>" style="width:250px" />
327
  </td>
328
  </tr>
329
+ <tr><th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', TPTN_LOCAL_NAME ); ?></label></th>
330
+ <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $tptn_settings['show_excerpt'] ) echo 'checked="checked"' ?> /></td>
331
  </tr>
332
+ <tr><th scope="row"><label for="excerpt_length"><?php _e( 'Length of excerpt (in words): ', TPTN_LOCAL_NAME ); ?></label></th>
333
+ <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes( $tptn_settings['excerpt_length'] ); ?>" /></td>
334
  </tr>
335
+ <tr><th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', TPTN_LOCAL_NAME ); ?></label></th>
336
+ <td><input type="checkbox" name="show_author" id="show_author" <?php if ( $tptn_settings['show_author'] ) echo 'checked="checked"' ?> /></td>
337
  </tr>
338
+ <tr><th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', TPTN_LOCAL_NAME ); ?></label></th>
339
+ <td><input type="checkbox" name="show_date" id="show_date" <?php if ( $tptn_settings['show_date'] ) echo 'checked="checked"' ?> /></td>
340
  </tr>
341
+ <tr><th scope="row"><label for="title_length"><?php _e( 'Limit post title length (in characters)', TPTN_LOCAL_NAME ); ?></label></th>
342
+ <td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes( $tptn_settings['title_length'] ); ?>" /></td>
343
  </tr>
344
+ <tr><th scope="row"><label for="disp_list_count"><?php _e( 'Show view count in list?', TPTN_LOCAL_NAME ); ?></label></th>
345
+ <td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ( $tptn_settings['disp_list_count'] ) echo 'checked="checked"' ?> /></td>
346
  </tr>
347
+ <tr><th scope="row"><label for="d_use_js"><?php _e( 'Always display latest post count in the daily lists?', TPTN_LOCAL_NAME ); ?></label></th>
348
+ <td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ( $tptn_settings['d_use_js'] ) echo 'checked="checked"' ?> />
349
+ <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>
350
  </td>
351
  </tr>
352
+ <tr><th scope="row"><label for="link_new_window "><?php _e( 'Open links in new window', TPTN_LOCAL_NAME ); ?></label></th>
353
+ <td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ( $tptn_settings['link_new_window'] ) echo 'checked="checked"' ?> /></td>
354
  </tr>
355
+ <tr><th scope="row"><label for="link_nofollow"><?php _e( 'Add nofollow attribute to links in the list', TPTN_LOCAL_NAME ); ?></label></th>
356
+ <td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ( $tptn_settings['link_nofollow'] ) echo 'checked="checked"' ?> /></td>
357
  </tr>
358
+ <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e( 'Exclude display of related posts on these posts / pages', TPTN_LOCAL_NAME ); ?></label></th>
359
  <td>
360
+ <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr( stripslashes( $tptn_settings['exclude_on_post_ids'] ) ); ?>" style="width:250px">
361
+ <p class="description"><?php _e( 'Enter comma separated list of IDs. e.g. 188,320,500', TPTN_LOCAL_NAME ); ?></p>
362
  </td>
363
  </tr>
364
+ <tr style="background: #eee"><th scope="row" colspan="2"><?php _e( 'Customise the list HTML', TPTN_LOCAL_NAME ); ?></th>
365
  </tr>
366
+ <tr><th scope="row"><label for="before_list"><?php _e( 'HTML to display before the list of posts: ', TPTN_LOCAL_NAME ); ?></label></th>
367
+ <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr( stripslashes( $tptn_settings['before_list'] ) ); ?>" style="width:250px" /></td>
368
  </tr>
369
+ <tr><th scope="row"><label for="before_list_item"><?php _e( 'HTML to display before each list item: ', TPTN_LOCAL_NAME ); ?></label></th>
370
+ <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr( stripslashes( $tptn_settings['before_list_item'] ) ); ?>" style="width:250px" /></td>
371
  </tr>
372
+ <tr><th scope="row"><label for="after_list_item"><?php _e( 'HTML to display after each list item: ', TPTN_LOCAL_NAME ); ?></label></th>
373
+ <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr( stripslashes( $tptn_settings['after_list_item'] ) ); ?>" style="width:250px" /></td>
374
  </tr>
375
+ <tr><th scope="row"><label for="after_list"><?php _e( 'HTML to display after the list of posts: ', TPTN_LOCAL_NAME ); ?></label></th>
376
+ <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr( stripslashes( $tptn_settings['after_list'] ) ); ?>" style="width:250px" /></td>
377
  </tr>
378
+ <tr style="background: #eee"><th scope="row" colspan="2"><?php _e( 'Post thumbnail options:', TPTN_LOCAL_NAME ); ?></th>
379
  </tr>
380
+ <tr><th scope="row"><label for="post_thumb_op"><?php _e( 'Location of post thumbnail:', TPTN_LOCAL_NAME ); ?></label></th>
381
  <td>
382
  <label>
383
+ <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ( 'inline' == $tptn_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
384
+ <?php _e( 'Display thumbnails inline with posts, before title', TPTN_LOCAL_NAME ); ?></label>
385
  <br />
386
  <label>
387
+ <input type="radio" name="post_thumb_op" value="after" id="post_thumb_op_1" <?php if ( 'after' == $tptn_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
388
+ <?php _e( 'Display thumbnails inline with posts, after title', TPTN_LOCAL_NAME ); ?></label>
389
  <br />
390
  <label>
391
+ <input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_2" <?php if ( 'thumbs_only' == $tptn_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
392
+ <?php _e( 'Display only thumbnails, no text', TPTN_LOCAL_NAME ); ?></label>
393
  <br />
394
  <label>
395
+ <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"' ?> />
396
+ <?php _e( 'Do not display thumbnails, only text.', TPTN_LOCAL_NAME ); ?></label>
397
  <br />
398
  </td>
399
  </tr>
400
+ <tr><th scope="row"><label for="thumb_width"><?php _e( 'Width of the thumbnail: ', TPTN_LOCAL_NAME ); ?></label></th>
401
+ <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_width'] ) ); ?>" style="width:40px" />px</td>
402
  </tr>
403
+ <tr><th scope="row"><label for="thumb_height"><?php _e( 'Height of the thumbnail: ', TPTN_LOCAL_NAME ); ?></label></th>
404
+ <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_height'] ) ); ?>" style="width:40px" />px</td>
405
  </tr>
406
+ <tr><th scope="row"><label for="thumb_html"><?php _e( 'Style attributes / Width and Height HTML attributes:', TPTN_LOCAL_NAME ); ?></label></th>
407
  <td>
408
  <label>
409
+ <input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ( 'css' == $tptn_settings['thumb_html'] ) echo 'checked="checked"' ?> />
410
+ <?php _e( 'Style attributes are used for width and height.', TPTN_LOCAL_NAME ); ?> <br /><code>style="max-width:<?php echo $tptn_settings['thumb_width'] ?>px;max-height:<?php echo $tptn_settings['thumb_height'] ?>px;"</code></label>
411
  <br />
412
  <label>
413
+ <input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ( 'html' == $tptn_settings['thumb_html'] ) echo 'checked="checked"' ?> />
414
+ <?php _e( 'HTML width and height attributes are used for width and height.', TPTN_LOCAL_NAME ); ?> <br /><code>width="<?php echo $tptn_settings['thumb_width'] ?>" height="<?php echo $tptn_settings['thumb_height'] ?>"</code></label>
415
  <br />
416
  </td>
417
  </tr>
418
+ <tr><th scope="row"><label for="thumb_timthumb"><?php _e( 'Use timthumb to generate thumbnails? ', TPTN_LOCAL_NAME ); ?></label></th>
419
  <td>
420
+ <input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ( $tptn_settings['thumb_timthumb'] ) echo 'checked="checked"' ?> />
421
+ <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>
422
  </td>
423
  </tr>
424
+ <tr><th scope="row"><label for="thumb_timthumb_q"><?php _e( 'Quality of thumbnails generated by timthumb:', TPTN_LOCAL_NAME ); ?></label></th>
425
+ <td>
426
+ <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" />
427
+ <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>
428
+ </td>
429
+ </tr>
430
+ <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name: ', TPTN_LOCAL_NAME ); ?></label></th>
431
  <td>
432
+ <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_meta'] ) ); ?>">
433
+ <p class="description"><?php _e( 'The value of this field should contain the image source and is set in the <em>Add New Post</em> screen', TPTN_LOCAL_NAME ); ?></p>
434
  </td>
435
  </tr>
436
+ <tr><th scope="row"><label for="scan_images"><?php _e( 'If the postmeta is not set, then should the plugin extract the first image from the post?', TPTN_LOCAL_NAME ); ?></label></th>
437
  <td>
438
+ <input type="checkbox" name="scan_images" id="scan_images" <?php if ( $tptn_settings['scan_images'] ) echo 'checked="checked"' ?> />
439
+ <p class="description"><?php _e( 'This could slow down the loading of your page if the first image in the related posts is large in file-size', TPTN_LOCAL_NAME ); ?></p>
440
  </td>
441
  </tr>
442
+ <tr><th scope="row"><label for="thumb_default_show"><?php _e( 'Use default thumbnail? ', TPTN_LOCAL_NAME ); ?></label></th>
443
  <td>
444
+ <input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ( $tptn_settings['thumb_default_show'] ) echo 'checked="checked"' ?> />
445
+ <p class="description"><?php _e( 'If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.', TPTN_LOCAL_NAME ); ?></p>
446
  </td>
447
  </tr>
448
+ <tr><th scope="row"><label for="thumb_default"><?php _e( 'Default thumbnail: ', TPTN_LOCAL_NAME ); ?></label></th>
449
  <td>
450
  <input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr( stripslashes( $tptn_settings['thumb_default'] ) ); ?>" style="width:100%"> <br />
451
+ <?php if ( '' != $tptn_settings['thumb_default'] ) echo "<img src='{$tptn_settings['thumb_default']}' style='max-width:200px' />"; ?>
452
+ <p class="description"><?php _e( "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above", TPTN_LOCAL_NAME ); ?></p>
453
  </td>
454
  </tr>
455
  </table>
456
  </div>
457
  </div>
458
+ <div id="customcssdiv" class="postbox closed"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
459
+ <h3 class='hndle'><span><?php _e( 'Custom CSS', TPTN_LOCAL_NAME ); ?></span></h3>
460
  <div class="inside">
461
  <table class="form-table">
462
+ <tr><th scope="row"><label for="include_default_style"><?php _e( 'Use default style included in the plugin?', TPTN_LOCAL_NAME ); ?></label></th>
463
  <td>
464
+ <input type="checkbox" name="include_default_style" id="include_default_style" <?php if ( $tptn_settings['include_default_style'] ) echo 'checked="checked"' ?> />
465
+ <p class="description"><?php _e( 'Top 10 includes a default style that makes your popular posts list to look pretty. Check the box above if you want to use this. You will need to select <strong>Thumbnails inline, before title</strong> in Output Options or in the Widget.', TPTN_LOCAL_NAME ); ?></p>
466
  </td>
467
  </tr>
468
+ <tr><th scope="row" colspan="2"><?php _e( 'Custom CSS to add to header:', TPTN_LOCAL_NAME ); ?></th>
469
  </tr>
470
+ <tr><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80" style="width:100%"><?php echo stripslashes( $tptn_settings['custom_CSS'] ); ?></textarea>
471
+ <p class="description"><?php _e( 'Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.', TPTN_LOCAL_NAME ); ?></p>
472
  </td>
473
  </tr>
474
  </table>
475
  </div>
476
  </div>
477
  <p>
478
+ <input type="submit" name="tptn_save" id="tptn_save" value="<?php _e( 'Save Options', TPTN_LOCAL_NAME ); ?>" class="button button-primary" />
479
+ <input type="submit" name="tptn_default" id="tptn_default" value="<?php _e( 'Default Options', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e( "Do you want to set options to Default?", TPTN_LOCAL_NAME ); ?>')) return false;" />
480
  </p>
481
+ <?php wp_nonce_field( 'tptn-plugin-options' ); ?>
482
  </form>
483
 
484
  <hr class="clear" />
485
 
486
  <form method="post" id="tptn_maintenance_op" name="tptn_reset_options" onsubmit="return checkForm()">
487
+ <div id="resetopdiv" class="postbox closed"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
488
+ <h3 class='hndle'><span><?php _e( 'Maintenance', TPTN_LOCAL_NAME ); ?></span></h3>
489
  <div class="inside">
490
  <table class="form-table">
491
  <tr><td scope="row" colspan="2">
492
+ <p class="description"><?php _e( 'Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs. Enabling maintenance will automatically delete entries older than 90 days.', TPTN_LOCAL_NAME ); ?><br />
493
+ <strong><?php _e( 'Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below).', TPTN_LOCAL_NAME ); ?></strong>
494
  </td>
495
  </tr>
496
+ <tr><th scope="row"><label for="cron_on"><?php _e( 'Enable scheduled maintenance of daily tables:', TPTN_LOCAL_NAME ); ?></label></th>
497
+ <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ( $tptn_settings['cron_on'] ) echo 'checked="checked"' ?> />
498
  </td>
499
  </tr>
500
+ <tr><th scope="row"><label for="cron_hour"><?php _e( 'Time to run maintenance', TPTN_LOCAL_NAME ); ?></label></th>
501
+ <td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_hour'])); ?>" style="width:50px" /> <?php _e( 'hrs', TPTN_LOCAL_NAME ); ?> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_min'])); ?>" style="width:50px" /> <?php _e( 'min', TPTN_LOCAL_NAME ); ?></td>
502
  </tr>
503
+ <tr><th scope="row"><label for="cron_recurrence"><?php _e( 'How often should the maintenance be run:', TPTN_LOCAL_NAME ); ?></label></th>
504
  <td>
505
  <label>
506
+ <input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ( 'daily' == $tptn_settings['cron_recurrence'] ) echo 'checked="checked"' ?> />
507
+ <?php _e( 'Daily', TPTN_LOCAL_NAME ); ?></label>
508
  <br />
509
  <label>
510
+ <input type="radio" name="cron_recurrence" value="weekly" id="cron_recurrence1" <?php if ( 'weekly' == $tptn_settings['cron_recurrence'] ) echo 'checked="checked"' ?> />
511
+ <?php _e( 'Weekly', TPTN_LOCAL_NAME ); ?></label>
512
  <br />
513
  <label>
514
+ <input type="radio" name="cron_recurrence" value="fortnightly" id="cron_recurrence2" <?php if ( 'fortnightly' == $tptn_settings['cron_recurrence'] ) echo 'checked="checked"' ?> />
515
+ <?php _e( 'Fortnightly', TPTN_LOCAL_NAME ); ?></label>
516
  <br />
517
  <label>
518
+ <input type="radio" name="cron_recurrence" value="monthly" id="cron_recurrence3" <?php if ( 'monthly' == $tptn_settings['cron_recurrence'] ) echo 'checked="checked"' ?> />
519
+ <?php _e( 'Monthly', TPTN_LOCAL_NAME ); ?></label>
520
  <br />
521
  </td>
522
  </tr>
523
  <tr><td scope="row" colspan="2">
524
  <?php
525
+ if ( ( $tptn_settings['cron_on'] ) || wp_next_scheduled( 'ald_tptn_hook' ) ) {
526
+ if ( wp_next_scheduled( 'ald_tptn_hook' ) ) {
527
  echo '<span style="color:#0c0">';
528
+ _e( 'The cron job has been scheduled. Maintenance will run ', TPTN_LOCAL_NAME );
529
+ echo wp_get_schedule( 'ald_tptn_hook' );
530
  echo '</span>';
531
  } else {
532
  echo '<span style="color:#e00">';
533
+ _e( 'The cron job is missing. Please resave this page to add the job', TPTN_LOCAL_NAME );
534
  echo '</span>';
535
  }
536
  } else {
537
  echo '<span style="color:#FFA500">';
538
+ _e( 'Maintenance is turned off', TPTN_LOCAL_NAME );
539
  echo '</span>';
540
  }
541
  ?>
542
  </td></tr>
543
  </table>
544
+ <input type="submit" name="tptn_mnts_save" id="tptn_mnts_save" value="<?php _e( 'Save Options', TPTN_LOCAL_NAME ); ?>" class="button button-primary" />
545
  </div>
546
  </div>
547
+ <?php wp_nonce_field( 'tptn-plugin-options' ); ?>
548
  </form>
549
 
550
  <form method="post" id="tptn_reset_options" name="tptn_reset_options" onsubmit="return checkForm()">
551
+ <div id="resetopdiv" class="postbox closed"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
552
+ <h3 class='hndle'><span><?php _e( 'Reset count', TPTN_LOCAL_NAME ); ?></span></h3>
553
  <div class="inside">
554
  <p class="description">
555
+ <?php _e( 'This cannot be reversed. Make sure that your database has been backed up before proceeding', TPTN_LOCAL_NAME ); ?>
556
  </p>
557
  <p>
558
+ <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e( 'Reset Popular Posts', TPTN_LOCAL_NAME ); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e( "Are you sure you want to reset the popular posts?", TPTN_LOCAL_NAME ); ?>')) return false;" />
559
+ <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" onclick="if (!confirm('<?php _e( "Are you sure you want to reset the daily popular posts?", TPTN_LOCAL_NAME ); ?>')) return false;" />
560
+ <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;" />
561
  </p>
562
  </div>
563
  </div>
564
+ <?php wp_nonce_field( 'tptn-plugin-options' ); ?>
565
  </form>
566
 
567
  </div><!-- /post-body-content -->
579
 
580
  }
581
 
582
+
583
  /**
584
  * Function to generate the top 10 daily popular posts page.
585
  *
590
  tptn_manage(1);
591
  }
592
 
593
+
594
  /**
595
  * Function to generate the top 10 daily popular posts page.
596
  *
598
  * @param int $daily (default: 0) Overall popular
599
  * @return void
600
  */
601
+ function tptn_manage( $daily = 0 ) {
602
 
603
+ $paged = isset( $_GET['paged'] ) ? intval( $_GET['paged'] ) : 0;
604
+ $limit = isset( $_GET['limit'] ) ? intval( $_GET['limit'] ) : 0;
605
+ $daily = isset( $_GET['daily'] ) ? intval( $_GET['daily'] ) : $daily;
606
 
607
  ?>
608
 
609
  <div class="wrap">
610
+ <h2>
611
+ <?php if ( ! $daily ) {
612
+ _e( 'Popular Posts', TPTN_LOCAL_NAME );
613
+ } else {
614
+ _e( 'Daily Popular Posts', TPTN_LOCAL_NAME );
615
+ } ?>
616
+ </h2>
617
  <div id="poststuff">
618
  <div id="post-body" class="metabox-holder columns-2">
619
  <div id="post-body-content">
620
+ <?php echo tptn_pop_display( $daily, $paged, $limit, false ); ?>
621
  </div><!-- /post-body-content -->
622
  <div id="postbox-container-1" class="postbox-container">
623
  <div id="side-sortables" class="meta-box-sortables ui-sortable">
632
  <?php
633
  }
634
 
635
+
636
  /**
637
  * Function to generate the right sidebar of the Settings and Admin popular posts pages.
638
  *
641
  */
642
  function tptn_admin_side() {
643
  ?>
644
+ <div id="donatediv" class="postbox"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
645
+ <h3 class='hndle'><span><?php _e( 'Support the development', TPTN_LOCAL_NAME ); ?></span></h3>
646
  <div class="inside">
647
  <div id="donate-form">
648
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
649
  <input type="hidden" name="cmd" value="_xclick">
650
  <input type="hidden" name="business" value="donate@ajaydsouza.com">
651
  <input type="hidden" name="lc" value="IN">
652
+ <input type="hidden" name="item_name" value="<?php _e( 'Donation for Top 10', TPTN_LOCAL_NAME ); ?>">
653
+ <input type="hidden" name="item_number" value="tptn_admin">
654
+ <strong><?php _e( 'Enter amount in USD: ', TPTN_LOCAL_NAME ); ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
655
  <input type="hidden" name="currency_code" value="USD">
656
  <input type="hidden" name="button_subtype" value="services">
657
  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
658
+ <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e( 'Send your donation to the author of Top 10', TPTN_LOCAL_NAME ); ?>">
659
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
660
  </form>
661
  </div>
662
  </div>
663
  </div>
664
+ <div id="followdiv" class="postbox"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
665
+ <h3 class='hndle'><span><?php _e( 'Follow me', TPTN_LOCAL_NAME ); ?></span></h3>
666
  <div class="inside">
667
  <div id="follow-us">
668
  <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
671
  </div>
672
  </div>
673
  </div>
674
+ <div id="qlinksdiv" class="postbox"><div class="handlediv" title="<?php _e( 'Click to toggle', TPTN_LOCAL_NAME ); ?>"><br /></div>
675
+ <h3 class='hndle'><span><?php _e( 'Quick links', TPTN_LOCAL_NAME ); ?></span></h3>
676
  <div class="inside">
677
  <div id="quick-links">
678
  <ul>
679
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e( 'Top 10 plugin page', TPTN_LOCAL_NAME ); ?></a></li>
680
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e( 'Other plugins', TPTN_LOCAL_NAME ); ?></a></li>
681
+ <li><a href="http://ajaydsouza.com/"><?php _e( "Ajay's blog", TPTN_LOCAL_NAME ); ?></a></li>
682
+ <li><a href="https://wordpress.org/plugins/top-10/faq/"><?php _e( 'FAQ', TPTN_LOCAL_NAME ); ?></a></li>
683
+ <li><a href="http://wordpress.org/support/plugin/top-10"><?php _e( 'Support', TPTN_LOCAL_NAME ); ?></a></li>
684
+ <li><a href="https://wordpress.org/support/view/plugin-reviews/top-10"><?php _e( 'Reviews', TPTN_LOCAL_NAME ); ?></a></li>
685
  </ul>
686
  </div>
687
  </div>
690
  <?php
691
  }
692
 
693
+
694
  /**
695
  * Add Top 10 menu in WP-Admin.
696
  *
699
  */
700
  function tptn_adminmenu() {
701
 
702
+ if ( function_exists( 'add_menu_page' ) ) {
703
 
704
+ $plugin_page = add_menu_page( __( "Top 10 Settings", TPTN_LOCAL_NAME ), __( "Top 10", TPTN_LOCAL_NAME ), 'manage_options', 'tptn_options', 'tptn_options', 'dashicons-editor-ol' );
705
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
706
 
707
+ $plugin_page = add_submenu_page( 'tptn_options', __( "Top 10 Settings", TPTN_LOCAL_NAME ), __( "Top 10 Settings", TPTN_LOCAL_NAME ), 'manage_options', 'tptn_options', 'tptn_options' );
708
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
709
 
710
+ $plugin_page = add_submenu_page( 'tptn_options', __( "Overall Popular Posts", TPTN_LOCAL_NAME ), __( "Overall Popular Posts", TPTN_LOCAL_NAME ), 'manage_options', 'tptn_manage', 'tptn_manage' );
711
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
712
 
713
+ $plugin_page = add_submenu_page( 'tptn_options', __( "Daily Popular Posts", TPTN_LOCAL_NAME ), __( "Daily Popular Posts", TPTN_LOCAL_NAME ), 'manage_options', 'tptn_manage_daily', 'tptn_manage_daily' );
714
  add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
715
 
716
  }
717
  }
718
+ add_action( 'admin_menu', 'tptn_adminmenu' );
719
+
720
 
721
  /**
722
  * Add JS and CSS to admin header.
727
  function tptn_adminhead() {
728
  global $tptn_url;
729
 
730
+ wp_enqueue_script( 'common' );
731
+ wp_enqueue_script( 'wp-lists' );
732
+ wp_enqueue_script( 'postbox' );
733
  ?>
734
  <style type="text/css">
735
  .postbox .handlediv:before {
787
  function wick_data() {
788
  global $wpdb;
789
 
790
+ $categories = get_categories( 'hide_empty=0' );
791
  $str = 'collection = [';
792
+ foreach ( $categories as $cat ) {
793
+ $str .= "'" . $cat->slug . "',";
794
  }
795
+ $str = substr( $str, 0, -1 ); // Remove trailing comma
796
  $str .= '];';
797
 
798
  echo $str;
815
  * @param bool $daily (default: false)
816
  * @return void
817
  */
818
+ function tptn_clean_duplicates( $daily = false ) {
819
  global $wpdb;
820
+
821
  $table_name = $wpdb->prefix . "top_ten";
822
  if ($daily) $table_name .= "_daily";
823
  $count = 0;
824
 
825
+ $wpdb->query( "CREATE TEMPORARY TABLE ".$table_name."_temp AS SELECT * FROM ".$table_name." GROUP BY postnumber" );
826
+ $wpdb->query( "TRUNCATE TABLE $table_name" );
827
+ $wpdb->query( "INSERT INTO ".$table_name." SELECT * FROM ".$table_name."_temp" );
828
  }
829
 
830
 
838
  * @param bool $widget (default: false) Is this a WordPress widget?
839
  * @return void
840
  */
841
+ function tptn_pop_display( $daily = FALSE, $page = 0, $limit = FALSE, $widget = FALSE ) {
842
+ global $wpdb, $siteurl, $tableposts, $id, $tptn_settings;
843
 
844
  $table_name = $wpdb->prefix . "top_ten";
845
+ if ( $daily ) $table_name .= "_daily"; // If we're viewing daily posts, set this to true
846
 
847
+ if ( ! ( $limit ) ) $limit = $tptn_settings['limit'];
848
+ if ( ! ( $page ) ) $page = 0; // Default page value.
849
+ parse_str( $tptn_settings['post_types'], $post_types ); // Save post types in $post_types variable
 
850
 
851
  $results = tptn_pop_posts('posts_only=1&limit=99999&strict_limit=1&is_widget=1&exclude_post_ids=0&daily='.$daily);
852
+ $numrows = count( $results );
853
 
854
+ $pages = intval( $numrows/$limit ); // Number of results pages.
855
 
856
  // $pages now contains int of pages, unless there is a remainder from division.
857
 
858
+ if ($numrows % $limit) { $pages++; } // has remainder so add one page
859
 
860
+ $current = ( $page/$limit ) + 1; // Current page number.
861
 
862
+ if ( ( $pages < 1 ) || ( 0 == $pages ) ) {
863
+ $total = 1; // If $pages is less than one or equal to 0, total pages is 1.
864
+ } else {
865
+ $total = $pages; // Else total pages is $pages value.
866
+ }
867
 
868
  $first = $page + 1; // The first result.
869
 
870
+ if ( ! ( ( ( $page + $limit ) / $limit ) >= $pages ) && $pages != 1 ) {
871
+ $last = $page + $limit; //If not last results page, last result equals $page plus $limit.
872
+ } else {
873
+ $last = $numrows; // If last results page, last result equals total number of results.
874
+ }
875
 
876
+ $results = array_slice( $results, $page, $limit );
877
 
878
  $output = '<div id="tptn_popular_posts">';
879
  $output .= '<table width="100%" border="0">
880
  <tr>
881
  <td width="50%" align="left">';
882
+ $output .= sprintf( __( 'Results %1$s to %2$s of %3$s', TPTN_LOCAL_NAME ), '<strong>'.$first.'</strong>', '<strong>'.$last.'</strong>', '<strong>'.$numrows.'</strong>');
883
  $output .= '
884
  </td>
885
  <td width="50%" align="right">';
886
+ $output .= sprintf( __( 'Page %s of %s', TPTN_LOCAL_NAME ), '<strong>'.$current.'</strong>', '<strong>'.$total.'</strong>' );
887
  $output .= '
888
  </td>
889
  </tr>
893
  <tr>
894
  <td align="left">';
895
 
896
+ if ( ( $daily && $widget ) || ( ! $daily && ! $widget ) ) {
897
  $output .= '<a href="./admin.php?page=tptn_manage_daily">';
898
+ $output .= __( 'View Daily Popular Posts', TPTN_LOCAL_NAME );
899
  $output .= '</a></td>';
900
  $output .= '<td align="right">';
901
+ if ( ! $widget ) $output .= __( 'Results per-page:', TPTN_LOCAL_NAME );
902
+ if ( ! $widget ) $output .= ' <a href="./admin.php?page=tptn_manage&limit=10">10</a> | <a href="./admin.php?page=tptn_manage&limit=20">20</a> | <a href="./admin.php?page=tptn_manage&limit=50">50</a> | <a href="./admin.php?page=tptn_manage&limit=100">100</a> ';
903
  $output .= ' </td>
904
  </tr>
905
  <tr>
908
  </table>';
909
  } else {
910
  $output .= '<a href="./admin.php?page=tptn_manage">';
911
+ $output .= __( 'View Overall Popular Posts', TPTN_LOCAL_NAME );
912
  $output .= '</a></td>';
913
  $output .= '<td align="right">';
914
+ if ( ! $widget ) $output .= __( 'Results per-page:', TPTN_LOCAL_NAME );
915
+ if ( ! $widget ) $output .= ' <a href="./admin.php?page=tptn_manage_daily&limit=10">10</a> | <a href="./admin.php?page=tptn_manage_daily&limit=20">20</a> | <a href="./admin.php?page=tptn_manage_daily&limit=50">50</a> | <a href="./admin.php?page=tptn_manage_daily&limit=100">100</a> ';
916
  $output .= ' </td>
917
  </tr>
918
  <tr>
921
  </table>';
922
  }
923
 
924
+ $dailytag = ( $daily ) ? '_daily' : '';
925
 
926
  $output .= '<ul>';
927
+ if ( $results ) {
928
+ foreach ( $results as $result ) {
929
+ $output .= '<li><a href="' . get_permalink( $result['postnumber'] ) . '">' . get_the_title( $result['postnumber'] ) . '</a>';
930
+ $output .= ' (' . number_format_i18n( $result['sumCount'] ) . ')';
931
  $output .= '</li>';
932
  }
933
  }
934
  $output .= '</ul>';
935
 
936
  $output .= '<p align="center">';
937
+ if ( 0 != $page ) { // Don't show back link if current page is first page.
938
  $back_page = $page - $limit;
939
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$back_page&daily=$daily&limit=$limit\">&laquo; ";
940
+ $output .= __( 'Previous', TPTN_LOCAL_NAME );
941
  $output .= "</a>\n";
942
  }
943
 
944
  $pagination_range = 4;
945
+ for ( $i=1; $i <= $pages; $i++ ) { // loop through each page and give link to it.
946
+ if ( $i >= $current + $pagination_range && $i < $pages ) {
947
+ if ( $i == $current + $pagination_range ) {
 
948
  $output .= '&hellip;&nbsp;';
949
  }
950
  continue;
951
  }
952
+ if ( $i < $current - $pagination_range + 1 && $i < $pages ) {
953
  continue;
954
  }
955
 
956
+ $ppage = $limit * ( $i - 1 );
957
+
958
+ if ( $ppage == $page ) {
959
+ $output .= ("<span class='current'>$i</span>\n"); // If current page don't give link, just text.
960
+ } else {
961
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$ppage&daily=$daily&limit=$limit\">$i</a> \n";
962
  }
963
  }
964
 
965
+ if ( ! ( ( ( $page + $limit ) / $limit ) >= $pages ) && $pages != 1 ) { // If last page don't give next link.
966
  $next_page = $page + $limit;
967
  $output .= "<a href=\"./admin.php?page=tptn_manage$dailytag&paged=$next_page&daily=$daily&limit=$limit\">";
968
+ $output .= __( 'Next', TPTN_LOCAL_NAME );
969
  $output .= " &raquo;</a>";
970
  }
971
+ $output .= '</p>';
972
+ $output .= '<p style="text-align:center;border-top: #000 1px solid">Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10 plugin</a></p>';
973
  $output .= '</div>';
974
 
975
+ return apply_filters( 'tptn_pop_display', $output );
 
976
  }
977
+
978
 
979
  /**
980
  * Widget for Popular Posts.
983
  * @return void
984
  */
985
  function tptn_pop_dashboard() {
986
+ echo tptn_pop_display( false, 0, 10, true );
987
  }
988
 
989
  /**
993
  * @return void
994
  */
995
  function tptn_pop_daily_dashboard() {
996
+ echo tptn_pop_display( true, 0, 10, true );
997
  }
998
 
999
  /**
1005
  function tptn_pop_dashboard_setup() {
1006
  global $tptn_settings;
1007
 
1008
+ if ( ( current_user_can( 'manage_options' ) ) || ( $tptn_settings['show_count_non_admins'] ) ) {
1009
+ if ( function_exists( 'wp_add_dashboard_widget' ) ) {
1010
  wp_add_dashboard_widget( 'tptn_pop_dashboard', __( 'Popular Posts',TPTN_LOCAL_NAME ), 'tptn_pop_dashboard' );
1011
  wp_add_dashboard_widget( 'tptn_pop_daily_dashboard', __( 'Daily Popular',TPTN_LOCAL_NAME ), 'tptn_pop_daily_dashboard' );
1012
  }
1013
  }
1014
  }
1015
+ add_action( 'wp_dashboard_setup', 'tptn_pop_dashboard_setup' );
1016
 
1017
 
1018
  /**
1022
  * @param mixed $cols
1023
  * @return void
1024
  */
1025
+ function tptn_column( $cols ) {
1026
  global $tptn_settings;
1027
 
1028
  if ( ( current_user_can('manage_options') ) || ( $tptn_settings['show_count_non_admins'] ) ) {
1029
+ if ( $tptn_settings['pv_in_admin'] ) { $cols['tptn_total'] = __( 'Total Views', TPTN_LOCAL_NAME ); }
1030
+ if ( $tptn_settings['pv_in_admin'] ) { $cols['tptn_daily'] = __( "Today's Views", TPTN_LOCAL_NAME ); }
1031
+ if ( $tptn_settings['pv_in_admin'] ) { $cols['tptn_both'] = __( 'Views', TPTN_LOCAL_NAME ); }
1032
  }
1033
  return $cols;
1034
  }
1035
+ add_filter( 'manage_posts_columns', 'tptn_column' );
1036
+ add_filter( 'manage_pages_columns', 'tptn_column' );
1037
 
1038
 
1039
  /**
1044
  * @param int|string $id Post ID
1045
  * @return void
1046
  */
1047
+ function tptn_value( $column_name, $id ) {
1048
+ global $wpdb, $tptn_settings;
 
1049
 
1050
  // Add Total count
1051
+ if ( ( $column_name == 'tptn_total' ) && ( $tptn_settings['pv_in_admin'] ) ) {
1052
  $table_name = $wpdb->prefix . "top_ten";
1053
 
1054
+ $resultscount = $wpdb->get_row( $wpdb->prepare( "SELECT postnumber, cntaccess from {$table_name} WHERE postnumber = %d", $id ) );
1055
+ $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->cntaccess : 0 ) );
1056
  echo $cntaccess;
1057
  }
1058
 
1059
  // Now process daily count
1060
+ if ( ( $column_name == 'tptn_daily' ) && ( $tptn_settings['pv_in_admin'] ) ) {
1061
  $table_name = $wpdb->prefix . "top_ten_daily";
1062
 
1063
+ $daily_range = $tptn_settings['daily_range'] - 1;
1064
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
1065
+ $current_date = strtotime( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
1066
+ $current_date = date( 'Y-m-j' , $current_date );
1067
 
1068
+ $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, $current_date ) );
1069
+ $cntaccess = number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
1070
  echo $cntaccess;
1071
  }
1072
 
1073
  // Now process both
1074
+ if ( ( $column_name == 'tptn_both' ) && ( $tptn_settings['pv_in_admin'] ) ) {
1075
  $table_name = $wpdb->prefix . "top_ten";
1076
 
1077
  $resultscount = $wpdb->get_row( $wpdb->prepare("SELECT postnumber, cntaccess from {$table_name} WHERE postnumber = %d", $id ) );
1081
 
1082
  $daily_range = $tptn_settings['daily_range']-1;
1083
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
1084
+ $current_date = strtotime( '-' . $daily_range . ' DAY' , strtotime ( $current_time ) );
1085
+ $current_date = date( 'Y-m-j' , $current_date );
1086
 
1087
+ $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, $current_date ) );
1088
+ $cntaccess .= ' / '.number_format_i18n( ( ( $resultscount ) ? $resultscount->sumCount : 0 ) );
1089
  echo $cntaccess;
1090
  }
1091
  }
1092
+ add_action( 'manage_posts_custom_column', 'tptn_value', 10, 2 );
1093
+ add_action( 'manage_pages_custom_column', 'tptn_value', 10, 2 );
1094
 
1095
 
1096
  /**
1103
  function tptn_column_register_sortable( $cols ) {
1104
  $tptn_settings = tptn_read_options();
1105
 
1106
+ if ( $tptn_settings['pv_in_admin'] ) $cols['tptn_total'] = array( 'tptn_total', true );
1107
+ if ( $tptn_settings['pv_in_admin'] ) $cols['tptn_daily'] = array( 'tptn_daily', true );
1108
  return $cols;
1109
  }
1110
  add_filter( 'manage_edit-post_sortable_columns', 'tptn_column_register_sortable' );
1137
 
1138
  $daily_range = $tptn_settings['daily_range'] - 1;
1139
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
1140
+ $current_date = strtotime( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
1141
+ $current_date = date( 'Y-m-j' , $current_date );
1142
 
1143
  $clauses['join'] .= "LEFT OUTER JOIN {$table_name} ON {$wpdb->posts}.ID={$table_name}.postnumber";
1144
  $clauses['where'] .= " AND {$table_name}.dp_date >= '$current_date' ";
1165
  </style>
1166
  <?php
1167
  }
1168
+ add_action( 'admin_head', 'tptn_css' );
1169
+
1170
+
1171
+ /**
1172
+ * Function to add meta box in Write screens.
1173
+ *
1174
+ * @access public
1175
+ * @param text $post_type
1176
+ * @param object $post
1177
+ * @return void
1178
+ */
1179
+ function tptn_add_meta_box( $post_type, $post ) {
1180
+
1181
+ add_meta_box(
1182
+ 'tptn_metabox',
1183
+ __( 'Top 10', TPTN_LOCAL_NAME ),
1184
+ 'tptn_call_meta_box',
1185
+ $post_type,
1186
+ 'advanced',
1187
+ 'default'
1188
+ );
1189
+
1190
+ }
1191
+ add_action( 'add_meta_boxes', 'tptn_add_meta_box' , 10, 2 );
1192
+
1193
+
1194
+ /**
1195
+ * Function to call the meta box.
1196
+ *
1197
+ * @access public
1198
+ * @return void
1199
+ */
1200
+ function tptn_call_meta_box() {
1201
+ global $wpdb, $post, $tptn_settings;
1202
+
1203
+ $table_name = $wpdb->prefix . "top_ten";
1204
+
1205
+ // Add an nonce field so we can check for it later.
1206
+ wp_nonce_field( 'tptn_meta_box', 'tptn_meta_box_nonce' );
1207
+
1208
+ $resultscount = $wpdb->get_row( $wpdb->prepare(
1209
+ "SELECT postnumber, cntaccess FROM {$table_name} WHERE postnumber = %d" ,
1210
+ $post->ID
1211
+ ) );
1212
+ $total_count = $resultscount ? $resultscount->cntaccess : 0;
1213
+
1214
+ if ( current_user_can( 'manage_options' ) ) {
1215
+ ?>
1216
+ <p>
1217
+ <label for="total_count"><?php _e( "Visit count:", TPTN_LOCAL_NAME ); ?></label>
1218
+ <input type="text" id="total_count" name="total_count" value="<?php echo $total_count ?>" style="width:100%" />
1219
+ <em><?php _e( "Enter a number above to update the visit count. Leaving the above box blank will set the count to zero", TPTN_LOCAL_NAME ); ?></em>
1220
+ </p>
1221
+
1222
+ <?php
1223
+ }
1224
+
1225
+ $results = get_post_meta( $post->ID, $tptn_settings['thumb_meta'], true );
1226
+ $value = ( $results ) ? $results : '';
1227
+ ?>
1228
+ <p>
1229
+ <label for="thumb_meta"><?php _e( "Location of thumbnail:", TPTN_LOCAL_NAME ); ?></label>
1230
+ <input type="text" id="thumb_meta" name="thumb_meta" value="<?php echo esc_url( $value ) ?>" style="width:100%" />
1231
+ <em><?php _e( "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This image will be used for the post. It will be resized to the thumbnail size set under Settings &raquo; Related Posts &raquo; Output Options", TPTN_LOCAL_NAME ); ?></em>
1232
+ <em><?php _e( "The URL above is saved in the meta field: ", TPTN_LOCAL_NAME ); ?></em><strong><?php echo $tptn_settings['thumb_meta']; ?></strong>
1233
+ </p>
1234
+
1235
+ <?php
1236
+ if ( $results ) {
1237
+ echo '<img src="' . esc_url( $value ) . '" style="max-width:100%" />';
1238
+ }
1239
+
1240
+ }
1241
+
1242
+
1243
+ /**
1244
+ * Function to save the meta box.
1245
+ *
1246
+ * @access public
1247
+ * @param mixed $post_id
1248
+ * @return void
1249
+ */
1250
+ function tptn_save_meta_box( $post_id ) {
1251
+ global $tptn_settings, $wpdb;
1252
+
1253
+ $table_name = $wpdb->prefix . "top_ten";
1254
+
1255
+ // Bail if we're doing an auto save
1256
+ if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
1257
+
1258
+ // if our nonce isn't there, or we can't verify it, bail
1259
+ if ( ! isset( $_POST['tptn_meta_box_nonce'] ) || ! wp_verify_nonce( $_POST['tptn_meta_box_nonce'], 'tptn_meta_box' ) ) return;
1260
+
1261
+ // if our current user can't edit this post, bail
1262
+ if ( ! current_user_can( 'edit_post' ) ) return;
1263
+
1264
+ // Update the posts view count
1265
+ if ( ( isset( $_POST['total_count'] ) ) && ( current_user_can( 'manage_options' ) ) ) {
1266
+ $total_count = intval( $_POST['total_count'] );
1267
+ if ( 0 <> $total_count ) {
1268
+ $tt = $wpdb->query( $wpdb->prepare(
1269
+ "INSERT INTO {$table_name} (postnumber, cntaccess) VALUES('%d', '%d') ON DUPLICATE KEY UPDATE cntaccess= %d ",
1270
+ $post_id,
1271
+ $total_count,
1272
+ $total_count
1273
+ ) );
1274
+ } else {
1275
+ $resultscount = $wpdb->query( $wpdb->prepare(
1276
+ "DELETE FROM {$table_name} WHERE postnumber = %d ",
1277
+ $post_id
1278
+ ) );
1279
+ }
1280
+ }
1281
+
1282
+ // Update the thumbnail URL
1283
+ if ( isset( $_POST['thumb_meta'] ) ) {
1284
+ $thumb_meta = $_POST['thumb_meta'] == '' ? '' : sanitize_text_field( $_POST['thumb_meta'] );
1285
+ }
1286
+
1287
+ $tptn_post_meta = get_post_meta( $post_id, $tptn_settings['thumb_meta'], true );
1288
+ if ( $tptn_post_meta && '' != $tptn_post_meta ) {
1289
+ $gotmeta = true;
1290
+ } else {
1291
+ $gotmeta = false;
1292
+ }
1293
+
1294
+ if ( $gotmeta && '' != $thumb_meta ) {
1295
+ update_post_meta( $post_id, $tptn_settings['thumb_meta'], $thumb_meta );
1296
+ } elseif ( ! $gotmeta && '' != $thumb_meta ) {
1297
+ add_post_meta( $post_id, $tptn_settings['thumb_meta'], $thumb_meta );
1298
+ } else {
1299
+ delete_post_meta( $post_id, $tptn_settings['thumb_meta'] );
1300
+ }
1301
+
1302
+ }
1303
+ add_action( 'save_post', 'tptn_save_meta_box' );
1304
 
1305
 
1306
  ?>
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
@@ -12,201 +12,215 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "10 populyar yazı statisticasını pozmaq"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Populyar postların miqdarının nümayişi:"
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
83
 
84
- #: admin.inc.php:200
85
  msgid ""
86
  "Instead of displaying popular posts fromt he past day, this setting lets you "
87
  "display posts for as many days as you want. This can be overridden in the "
88
  "widget."
89
  msgstr ""
90
 
91
- #: admin.inc.php:203
92
  msgid "Post types to include in results (including custom post types)"
93
  msgstr ""
94
 
95
- #: admin.inc.php:214
96
  msgid "List of post or page IDs to exclude from the results: "
97
  msgstr ""
98
 
99
- #: admin.inc.php:216 admin.inc.php:352
100
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
101
  msgstr ""
102
 
103
- #: admin.inc.php:220
104
  msgid "Exclude Categories: "
105
  msgstr ""
106
 
107
- #: admin.inc.php:235
108
  msgid ""
109
  "Comma separated list of category slugs. The field above has an autocomplete "
110
  "so simply start typing in the starting letters and it will prompt you with "
111
  "options"
112
  msgstr ""
113
 
114
- #: admin.inc.php:240
115
  #, fuzzy
116
  msgid "Display number of views on:"
117
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
118
 
119
- #: admin.inc.php:242
120
  msgid "Posts"
121
  msgstr ""
122
 
123
- #: admin.inc.php:243
124
  #, fuzzy
125
  msgid "Pages"
126
  msgstr "Səhifə"
127
 
128
- #: admin.inc.php:244
129
  msgid "Home page"
130
  msgstr ""
131
 
132
- #: admin.inc.php:245
133
  msgid "Feeds"
134
  msgstr ""
135
 
136
- #: admin.inc.php:246
137
  msgid "Category archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:247
141
  msgid "Tag archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:248
145
  msgid "Other archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:249
149
  msgid ""
150
- "If you choose to disable this, please add <code>&lt;?php "
151
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
152
- "template file where you want it displayed"
153
  msgstr ""
154
 
155
- #: admin.inc.php:252
156
  msgid "Always display latest post count"
157
  msgstr ""
158
 
159
- #: admin.inc.php:254
160
  msgid ""
161
  "This option uses JavaScript and will increase your page load time. Turn this "
162
  "off if you are not using caching plugins or are OK with displaying older "
163
  "cached counts."
164
  msgstr ""
165
 
166
- #: admin.inc.php:257
167
  msgid "Track visits of authors on their own posts?"
168
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
169
 
170
- #: admin.inc.php:259
171
  msgid ""
172
  "Disabling this option will stop authors visits tracked on their own posts"
173
  msgstr ""
174
 
175
- #: admin.inc.php:262
176
  #, fuzzy
177
  msgid "Track visits of admins?"
178
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
179
 
180
- #: admin.inc.php:264
181
  msgid "Disabling this option will stop admin visits being tracked."
182
  msgstr ""
183
 
184
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
185
  msgid "Display page views on Posts and Pages in Admin"
186
  msgstr ""
187
 
188
- #: admin.inc.php:270
189
  msgid ""
190
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
191
  "and All Pages"
192
  msgstr ""
193
 
194
- #: admin.inc.php:273
195
  #, fuzzy
196
  msgid "Show number of views to non-admins"
197
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
198
 
199
- #: admin.inc.php:276
200
  msgid ""
201
  "If you disable this then non-admins won't see the above columns or view the "
202
  "independent pages with the top posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:279
206
  msgid "Link to Top 10 plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:282
210
  #, fuzzy
211
  msgid ""
212
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -215,17 +229,17 @@ msgstr ""
215
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
216
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
217
 
218
- #: admin.inc.php:289
219
  #, fuzzy
220
  msgid "Output options"
221
  msgstr "Plaginin kökləmələri:"
222
 
223
- #: admin.inc.php:292
224
  #, fuzzy
225
  msgid "Format to display the post views:"
226
  msgstr "Miqdarı göstərən format:"
227
 
228
- #: admin.inc.php:294
229
  #, fuzzy
230
  msgid ""
231
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -237,11 +251,11 @@ msgstr ""
237
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: "
238
  "<code>(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
239
 
240
- #: admin.inc.php:297
241
  msgid "What do display when there are no visits?"
242
  msgstr ""
243
 
244
- #: admin.inc.php:299
245
  msgid ""
246
  "This text applies only when there are 0 hits for the post and it isn't a "
247
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -249,165 +263,175 @@ msgid ""
249
  "option."
250
  msgstr ""
251
 
252
- #: admin.inc.php:302
253
  msgid "Title of popular posts: "
254
  msgstr "Populyar yazılarının başlığı:"
255
 
256
- #: admin.inc.php:305
257
  msgid "Title of daily popular posts: "
258
  msgstr "Gündəlik populyual yazılışların başlığı:"
259
 
260
- #: admin.inc.php:308
261
  msgid "When there are no posts, what should be shown?"
262
  msgstr ""
263
 
264
- #: admin.inc.php:312
265
  msgid "Blank Output"
266
  msgstr ""
267
 
268
- #: admin.inc.php:316
269
  msgid "Display:"
270
  msgstr ""
271
 
272
- #: admin.inc.php:320
273
  msgid "Show post excerpt in list?"
274
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
275
 
276
- #: admin.inc.php:323
277
  msgid "Length of excerpt (in words): "
278
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
279
 
280
- #: admin.inc.php:326
281
  #, fuzzy
282
  msgid "Show post author in list?"
283
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
284
 
285
- #: admin.inc.php:329
286
  #, fuzzy
287
  msgid "Show post date in list?"
288
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
289
 
290
- #: admin.inc.php:332
291
  msgid "Limit post title length (in characters)"
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  #, fuzzy
296
  msgid "Show view count in list?"
297
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
298
 
299
- #: admin.inc.php:338
300
  msgid "Always display latest post count in the daily lists?"
301
  msgstr ""
302
 
303
- #: admin.inc.php:340
304
  msgid ""
305
  "This option uses JavaScript and will increase your page load time. When you "
306
  "enable this option, the daily widget will not use the options set there, but "
307
  "options will need to be set on this screen."
308
  msgstr ""
309
 
310
- #: admin.inc.php:343
311
  msgid "Open links in new window"
312
  msgstr ""
313
 
314
- #: admin.inc.php:346
315
  msgid "Add nofollow attribute to links in the list"
316
  msgstr ""
317
 
318
- #: admin.inc.php:349
319
  msgid "Exclude display of related posts on these posts / pages"
320
  msgstr ""
321
 
322
- #: admin.inc.php:355
323
  #, fuzzy
324
  msgid "Customise the list HTML"
325
  msgstr "Suiyahı formasının kökləmələri:"
326
 
327
- #: admin.inc.php:357
328
  msgid "HTML to display before the list of posts: "
329
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
330
 
331
- #: admin.inc.php:360
332
  msgid "HTML to display before each list item: "
333
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
334
 
335
- #: admin.inc.php:363
336
  msgid "HTML to display after each list item: "
337
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
338
 
339
- #: admin.inc.php:366
340
  msgid "HTML to display after the list of posts: "
341
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
342
 
343
- #: admin.inc.php:369
344
  msgid "Post thumbnail options:"
345
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
346
 
347
- #: admin.inc.php:371
348
  msgid "Location of post thumbnail:"
349
  msgstr ""
350
 
351
- #: admin.inc.php:375
352
  #, fuzzy
353
  msgid "Display thumbnails inline with posts, before title"
354
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
355
 
356
- #: admin.inc.php:379
357
  #, fuzzy
358
  msgid "Display thumbnails inline with posts, after title"
359
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
360
 
361
- #: admin.inc.php:383
362
  msgid "Display only thumbnails, no text"
363
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
364
 
365
- #: admin.inc.php:387
366
  msgid "Do not display thumbnails, only text."
367
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
368
 
369
- #: admin.inc.php:391
370
  msgid "Width of the thumbnail: "
371
  msgstr ""
372
 
373
- #: admin.inc.php:394
374
  msgid "Height of the thumbnail: "
375
  msgstr ""
376
 
377
- #: admin.inc.php:397
378
  msgid "Style attributes / Width and Height HTML attributes:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:401
382
  msgid "Style attributes are used for width and height."
383
  msgstr ""
384
 
385
- #: admin.inc.php:405
386
  msgid "HTML width and height attributes are used for width and height."
387
  msgstr ""
388
 
389
- #: admin.inc.php:409
390
  msgid "Use timthumb to generate thumbnails? "
391
  msgstr ""
392
 
393
- #: admin.inc.php:412
394
  msgid ""
395
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
396
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
397
  msgstr ""
398
 
399
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
400
  #, fuzzy
401
  msgid "Post thumbnail meta field name: "
402
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
403
 
404
- #: admin.inc.php:418
405
  msgid ""
406
  "The value of this field should contain the image source and is set in the "
407
  "<em>Add New Post</em> screen"
408
  msgstr ""
409
 
410
- #: admin.inc.php:421
411
  #, fuzzy
412
  msgid ""
413
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -417,7 +441,7 @@ msgstr ""
417
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
418
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
419
 
420
- #: admin.inc.php:424
421
  #, fuzzy
422
  msgid ""
423
  "This could slow down the loading of your page if the first image in the "
@@ -427,21 +451,21 @@ msgstr ""
427
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
428
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
429
 
430
- #: admin.inc.php:427
431
  msgid "Use default thumbnail? "
432
  msgstr ""
433
 
434
- #: admin.inc.php:430
435
  msgid ""
436
  "If checked, when no thumbnail is found, show a default one from the URL "
437
  "below. If not checked and no thumbnail is found, no image will be shown."
438
  msgstr ""
439
 
440
- #: admin.inc.php:433
441
  msgid "Default thumbnail: "
442
  msgstr ""
443
 
444
- #: admin.inc.php:437
445
  #, fuzzy
446
  msgid ""
447
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -452,15 +476,15 @@ msgstr ""
452
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
453
  "onda standard şəkil çıxarılacaq:"
454
 
455
- #: admin.inc.php:444
456
  msgid "Custom CSS"
457
  msgstr ""
458
 
459
- #: admin.inc.php:447
460
  msgid "Use default style included in the plugin?"
461
  msgstr ""
462
 
463
- #: admin.inc.php:450
464
  msgid ""
465
  "Top 10 includes a default style that makes your popular posts list to look "
466
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -468,36 +492,36 @@ msgid ""
468
  "Widget."
469
  msgstr ""
470
 
471
- #: admin.inc.php:453
472
  msgid "Custom CSS to add to header:"
473
  msgstr ""
474
 
475
- #: admin.inc.php:456
476
  msgid ""
477
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
478
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
479
  "available CSS classes to style."
480
  msgstr ""
481
 
482
- #: admin.inc.php:463 admin.inc.php:529
483
  #, fuzzy
484
  msgid "Save Options"
485
  msgstr "Opsiyalar:"
486
 
487
- #: admin.inc.php:464
488
  #, fuzzy
489
  msgid "Default Options"
490
  msgstr "Plaginin kökləmələri:"
491
 
492
- #: admin.inc.php:464
493
  msgid "Do you want to set options to Default?"
494
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
495
 
496
- #: admin.inc.php:473
497
  msgid "Maintenance"
498
  msgstr ""
499
 
500
- #: admin.inc.php:477
501
  msgid ""
502
  "Over time the Daily Top 10 database grows in size, which reduces the "
503
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -505,65 +529,65 @@ msgid ""
505
  "will automatically delete entries older than 90 days."
506
  msgstr ""
507
 
508
- #: admin.inc.php:478
509
  msgid ""
510
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
511
  "everytime the job is rescheduled (i.e. you change the settings below)."
512
  msgstr ""
513
 
514
- #: admin.inc.php:481
515
  msgid "Enable scheduled maintenance of daily tables:"
516
  msgstr ""
517
 
518
- #: admin.inc.php:485
519
  msgid "Time to run maintenance"
520
  msgstr ""
521
 
522
- #: admin.inc.php:486
523
  msgid "hrs"
524
  msgstr ""
525
 
526
- #: admin.inc.php:486
527
  msgid "min"
528
  msgstr ""
529
 
530
- #: admin.inc.php:488
531
  msgid "How often should the maintenance be run:"
532
  msgstr ""
533
 
534
- #: admin.inc.php:492
535
  msgid "Daily"
536
  msgstr ""
537
 
538
- #: admin.inc.php:496
539
  msgid "Weekly"
540
  msgstr ""
541
 
542
- #: admin.inc.php:500
543
  msgid "Fortnightly"
544
  msgstr ""
545
 
546
- #: admin.inc.php:504
547
  msgid "Monthly"
548
  msgstr ""
549
 
550
- #: admin.inc.php:513
551
  msgid "The cron job has been scheduled. Maintenance will run "
552
  msgstr ""
553
 
554
- #: admin.inc.php:518
555
  msgid "The cron job is missing. Please resave this page to add the job"
556
  msgstr ""
557
 
558
- #: admin.inc.php:523
559
  msgid "Maintenance is turned off"
560
  msgstr ""
561
 
562
- #: admin.inc.php:537
563
  msgid "Reset count"
564
  msgstr "Statistikanı sbros etmək"
565
 
566
- #: admin.inc.php:540
567
  msgid ""
568
  "This cannot be reversed. Make sure that your database has been backed up "
569
  "before proceeding"
@@ -571,269 +595,302 @@ msgstr ""
571
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
572
  "ki, Sizin məlumat bazasının kopiyası var!"
573
 
574
- #: admin.inc.php:543
575
  #, fuzzy
576
  msgid "Reset Popular Posts"
577
  msgstr "Populyar yazılar"
578
 
579
- #: admin.inc.php:543
580
  msgid "Are you sure you want to reset the popular posts?"
581
  msgstr ""
582
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
583
 
584
- #: admin.inc.php:544
585
  #, fuzzy
586
  msgid "Reset Daily Popular Posts"
587
  msgstr "Gündəlik Populyar Yazılar"
588
 
589
- #: admin.inc.php:544
590
  msgid "Are you sure you want to reset the daily popular posts?"
591
  msgstr ""
592
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
593
  "istəyirsiniz?"
594
 
595
- #: admin.inc.php:545
596
  msgid "Clear duplicates"
597
  msgstr ""
598
 
599
- #: admin.inc.php:545
600
  msgid "This will delete the duplicate entries in the tables. Proceed?"
601
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
602
 
603
- #: admin.inc.php:593 admin.inc.php:979
604
  msgid "Popular Posts"
605
  msgstr "Populyar yazılar"
606
 
607
- #: admin.inc.php:593 admin.inc.php:688
608
  msgid "Daily Popular Posts"
609
  msgstr "Gündəlik Populyar Yazılar"
610
 
611
- #: admin.inc.php:621
612
  msgid "Support the development"
613
  msgstr "İnkişafı dəstək vermək"
614
 
615
- #: admin.inc.php:630
 
 
 
 
616
  msgid "Enter amount in USD: "
617
  msgstr "Miiqdarı USD ilə daxil et:"
618
 
619
- #: admin.inc.php:634
620
- msgid "Send your donation to the author of"
 
621
  msgstr "Müəlifə ianə göndərin "
622
 
623
- #: admin.inc.php:641
624
  msgid "Follow me"
625
  msgstr ""
626
 
627
- #: admin.inc.php:651
628
  #, fuzzy
629
  msgid "Quick links"
630
  msgstr "Faydalı istenadlar"
631
 
632
- #: admin.inc.php:655
633
  #, fuzzy
634
  msgid "Top 10 plugin page"
635
  msgstr "plaginin səhifəsi"
636
 
637
- #: admin.inc.php:656
638
  msgid "Other plugins"
639
  msgstr "Digər plaginlər"
640
 
641
- #: admin.inc.php:657
642
  msgid "Ajay's blog"
643
  msgstr "Ajay-in blogu"
644
 
645
- #: admin.inc.php:658
646
  msgid "FAQ"
647
  msgstr ""
648
 
649
- #: admin.inc.php:659 top-10.php:1267
650
  msgid "Support"
651
  msgstr "Dəstək"
652
 
653
- #: admin.inc.php:660
654
  msgid "Reviews"
655
  msgstr ""
656
 
657
- #: admin.inc.php:679 admin.inc.php:682
658
  #, fuzzy
659
  msgid "Top 10 Settings"
660
  msgstr "Kökləmələr"
661
 
662
- #: admin.inc.php:679
663
  msgid "Top 10"
664
  msgstr "Top 10 yazılar"
665
 
666
- #: admin.inc.php:685
667
  #, fuzzy
668
  msgid "Overall Popular Posts"
669
  msgstr "Bütün Populyar Yazılara Baxmaq"
670
 
671
- #: admin.inc.php:850
672
  #, php-format
673
  msgid "Results %1$s to %2$s of %3$s"
674
  msgstr ""
675
 
676
- #: admin.inc.php:854
677
  #, php-format
678
  msgid "Page %s of %s"
679
  msgstr ""
680
 
681
- #: admin.inc.php:866
682
  msgid "View Daily Popular Posts"
683
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
684
 
685
- #: admin.inc.php:869 admin.inc.php:882
686
  msgid "Results per-page:"
687
  msgstr "Səhifə üzrə nəticələr:"
688
 
689
- #: admin.inc.php:879
690
  msgid "View Overall Popular Posts"
691
  msgstr "Bütün Populyar Yazılara Baxmaq"
692
 
693
- #: admin.inc.php:908
694
  msgid "Previous"
695
  msgstr "Əvvəlki"
696
 
697
- #: admin.inc.php:936
698
  msgid "Next"
699
  msgstr "Sonrakı"
700
 
701
- #: admin.inc.php:980
702
  msgid "Daily Popular"
703
  msgstr "Gündəlik Populyar"
704
 
705
- #: admin.inc.php:998
706
  #, fuzzy
707
  msgid "Total Views"
708
  msgstr "Ümümi/ Bu günkü baxış"
709
 
710
- #: admin.inc.php:999
711
  #, fuzzy
712
  msgid "Today's Views"
713
  msgstr "Ümümi/ Bu günkü baxış"
714
 
715
- #: admin.inc.php:1000
716
  #, fuzzy
717
  msgid "Views"
718
  msgstr "Ümümi/ Bu günkü baxış"
719
 
720
- #: top-10.php:438
721
- msgid " by "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  msgstr ""
723
 
724
- #: top-10.php:524
725
- msgid "Display the posts popular this week"
 
 
 
 
726
  msgstr ""
727
 
728
- #: top-10.php:525
729
  #, fuzzy
730
  msgid "Popular Posts [Top 10]"
731
  msgstr "Populyar yazılar"
732
 
733
- #: top-10.php:543
 
 
 
 
 
734
  msgid "Title"
735
  msgstr ""
736
 
737
- #: top-10.php:548
738
  msgid "No. of posts"
739
  msgstr ""
740
 
741
- #: top-10.php:553
742
  msgid "Overall"
743
  msgstr ""
744
 
745
- #: top-10.php:554
746
  msgid "Custom time period (Enter below)"
747
  msgstr ""
748
 
749
- #: top-10.php:559
750
  msgid "Range in number of days (applies only to custom option above)"
751
  msgstr ""
752
 
753
- #: top-10.php:564
754
  #, fuzzy
755
- msgid " Show count?"
756
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
757
 
758
- #: top-10.php:569
759
  #, fuzzy
760
- msgid " Show excerpt?"
761
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
762
 
763
- #: top-10.php:574
764
- msgid " Show author?"
765
- msgstr ""
 
766
 
767
- #: top-10.php:579
768
  #, fuzzy
769
- msgid " Show date?"
770
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
771
 
772
- #: top-10.php:583
773
  #, fuzzy
774
  msgid "Thumbnail options"
775
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
776
 
777
- #: top-10.php:585
778
  #, fuzzy
779
  msgid "Thumbnails inline, before title"
780
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
781
 
782
- #: top-10.php:586
783
  #, fuzzy
784
  msgid "Thumbnails inline, after title"
785
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
786
 
787
- #: top-10.php:587
788
  #, fuzzy
789
  msgid "Only thumbnails, no text"
790
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
791
 
792
- #: top-10.php:588
793
  #, fuzzy
794
  msgid "No thumbnails, only text."
795
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
796
 
797
- #: top-10.php:593
798
  #, fuzzy
799
  msgid "Thumbnail height"
800
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
801
 
802
- #: top-10.php:598
803
  #, fuzzy
804
  msgid "Thumbnail width"
805
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
806
 
807
- #: top-10.php:719
808
  msgid "<h3>Popular Posts</h3>"
809
  msgstr "<h3>Populyar yazılar</h3>"
810
 
811
- #: top-10.php:720
812
  msgid "<h3>Daily Popular</h3>"
813
  msgstr "<h3>Gündəlik Populyar</h3>"
814
 
815
- #: top-10.php:721
816
  #, fuzzy
817
  msgid "No top posts yet"
818
  msgstr "10 populyar yazı statisticasını pozmaq"
819
 
820
- #: top-10.php:1184
821
  msgid "Once Weekly"
822
  msgstr ""
823
 
824
- #: top-10.php:1188
825
  msgid "Once Fortnightly"
826
  msgstr ""
827
 
828
- #: top-10.php:1192
829
  msgid "Once Monthly"
830
  msgstr ""
831
 
832
- #: top-10.php:1255
833
  msgid "Settings"
834
  msgstr "Kökləmələr"
835
 
836
- #: top-10.php:1268
837
  msgid "Donate"
838
  msgstr "İanə etmək"
839
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "10 populyar yazı statisticasını pozmaq"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Populyar postların miqdarının nümayişi:"
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
  "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
88
 
89
+ #: admin.inc.php:204
90
  msgid ""
91
  "Instead of displaying popular posts fromt he past day, this setting lets you "
92
  "display posts for as many days as you want. This can be overridden in the "
93
  "widget."
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:218
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
+ #: admin.inc.php:220 admin.inc.php:361
105
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:224
109
  msgid "Exclude Categories: "
110
  msgstr ""
111
 
112
+ #: admin.inc.php:239
113
  msgid ""
114
  "Comma separated list of category slugs. The field above has an autocomplete "
115
  "so simply start typing in the starting letters and it will prompt you with "
116
  "options"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:244
120
  #, fuzzy
121
  msgid "Display number of views on:"
122
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
123
 
124
+ #: admin.inc.php:246
125
  msgid "Posts"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:247
129
  #, fuzzy
130
  msgid "Pages"
131
  msgstr "Səhifə"
132
 
133
+ #: admin.inc.php:248
134
  msgid "Home page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:249
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:250
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:251
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:252
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:253
154
  msgid ""
155
+ "If you choose to disable this, please add <code>&lt;?php if "
156
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
157
+ "</code> to your template file where you want it displayed"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:256
161
  msgid "Always display latest post count"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:258
165
  msgid ""
166
  "This option uses JavaScript and will increase your page load time. Turn this "
167
  "off if you are not using caching plugins or are OK with displaying older "
168
  "cached counts."
169
  msgstr ""
170
 
171
+ #: admin.inc.php:261
172
  msgid "Track visits of authors on their own posts?"
173
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
174
 
175
+ #: admin.inc.php:263
176
  msgid ""
177
  "Disabling this option will stop authors visits tracked on their own posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid "Track visits of admins?"
183
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
184
 
185
+ #: admin.inc.php:268
186
  msgid "Disabling this option will stop admin visits being tracked."
187
  msgstr ""
188
 
189
+ #: admin.inc.php:271
190
+ #, fuzzy
191
+ msgid "Track visits of Editors?"
192
+ msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
193
+
194
+ #: admin.inc.php:273
195
+ msgid "Disabling this option will stop editor visits being tracked."
196
+ msgstr ""
197
+
198
+ #: admin.inc.php:276
199
  msgid "Display page views on Posts and Pages in Admin"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:279
203
  msgid ""
204
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
205
  "and All Pages"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:282
209
  #, fuzzy
210
  msgid "Show number of views to non-admins"
211
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
212
 
213
+ #: admin.inc.php:285
214
  msgid ""
215
  "If you disable this then non-admins won't see the above columns or view the "
216
  "independent pages with the top posts"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:288
220
  msgid "Link to Top 10 plugin page"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  #, fuzzy
225
  msgid ""
226
  "A link to the plugin is added as an extra list item to the list of popular "
229
  "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
230
  "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
231
 
232
+ #: admin.inc.php:298
233
  #, fuzzy
234
  msgid "Output options"
235
  msgstr "Plaginin kökləmələri:"
236
 
237
+ #: admin.inc.php:301
238
  #, fuzzy
239
  msgid "Format to display the post views:"
240
  msgstr "Miqdarı göstərən format:"
241
 
242
+ #: admin.inc.php:303
243
  #, fuzzy
244
  msgid ""
245
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
251
  "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: "
252
  "<code>(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
253
 
254
+ #: admin.inc.php:306
255
  msgid "What do display when there are no visits?"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:308
259
  msgid ""
260
  "This text applies only when there are 0 hits for the post and it isn't a "
261
  "single page. e.g. if you display post views on the homepage or archives then "
263
  "option."
264
  msgstr ""
265
 
266
+ #: admin.inc.php:311
267
  msgid "Title of popular posts: "
268
  msgstr "Populyar yazılarının başlığı:"
269
 
270
+ #: admin.inc.php:314
271
  msgid "Title of daily popular posts: "
272
  msgstr "Gündəlik populyual yazılışların başlığı:"
273
 
274
+ #: admin.inc.php:317
275
  msgid "When there are no posts, what should be shown?"
276
  msgstr ""
277
 
278
+ #: admin.inc.php:321
279
  msgid "Blank Output"
280
  msgstr ""
281
 
282
+ #: admin.inc.php:325
283
  msgid "Display:"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:329
287
  msgid "Show post excerpt in list?"
288
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
289
 
290
+ #: admin.inc.php:332
291
  msgid "Length of excerpt (in words): "
292
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
293
 
294
+ #: admin.inc.php:335
295
  #, fuzzy
296
  msgid "Show post author in list?"
297
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
298
 
299
+ #: admin.inc.php:338
300
  #, fuzzy
301
  msgid "Show post date in list?"
302
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
303
 
304
+ #: admin.inc.php:341
305
  msgid "Limit post title length (in characters)"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:344
309
  #, fuzzy
310
  msgid "Show view count in list?"
311
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
312
 
313
+ #: admin.inc.php:347
314
  msgid "Always display latest post count in the daily lists?"
315
  msgstr ""
316
 
317
+ #: admin.inc.php:349
318
  msgid ""
319
  "This option uses JavaScript and will increase your page load time. When you "
320
  "enable this option, the daily widget will not use the options set there, but "
321
  "options will need to be set on this screen."
322
  msgstr ""
323
 
324
+ #: admin.inc.php:352
325
  msgid "Open links in new window"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:355
329
  msgid "Add nofollow attribute to links in the list"
330
  msgstr ""
331
 
332
+ #: admin.inc.php:358
333
  msgid "Exclude display of related posts on these posts / pages"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:364
337
  #, fuzzy
338
  msgid "Customise the list HTML"
339
  msgstr "Suiyahı formasının kökləmələri:"
340
 
341
+ #: admin.inc.php:366
342
  msgid "HTML to display before the list of posts: "
343
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
344
 
345
+ #: admin.inc.php:369
346
  msgid "HTML to display before each list item: "
347
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
348
 
349
+ #: admin.inc.php:372
350
  msgid "HTML to display after each list item: "
351
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
352
 
353
+ #: admin.inc.php:375
354
  msgid "HTML to display after the list of posts: "
355
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
356
 
357
+ #: admin.inc.php:378
358
  msgid "Post thumbnail options:"
359
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
360
 
361
+ #: admin.inc.php:380
362
  msgid "Location of post thumbnail:"
363
  msgstr ""
364
 
365
+ #: admin.inc.php:384
366
  #, fuzzy
367
  msgid "Display thumbnails inline with posts, before title"
368
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
369
 
370
+ #: admin.inc.php:388
371
  #, fuzzy
372
  msgid "Display thumbnails inline with posts, after title"
373
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
374
 
375
+ #: admin.inc.php:392
376
  msgid "Display only thumbnails, no text"
377
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
378
 
379
+ #: admin.inc.php:396
380
  msgid "Do not display thumbnails, only text."
381
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
382
 
383
+ #: admin.inc.php:400
384
  msgid "Width of the thumbnail: "
385
  msgstr ""
386
 
387
+ #: admin.inc.php:403
388
  msgid "Height of the thumbnail: "
389
  msgstr ""
390
 
391
+ #: admin.inc.php:406
392
  msgid "Style attributes / Width and Height HTML attributes:"
393
  msgstr ""
394
 
395
+ #: admin.inc.php:410
396
  msgid "Style attributes are used for width and height."
397
  msgstr ""
398
 
399
+ #: admin.inc.php:414
400
  msgid "HTML width and height attributes are used for width and height."
401
  msgstr ""
402
 
403
+ #: admin.inc.php:418
404
  msgid "Use timthumb to generate thumbnails? "
405
  msgstr ""
406
 
407
+ #: admin.inc.php:421
408
  msgid ""
409
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
410
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
411
  msgstr ""
412
 
413
+ #: admin.inc.php:424
414
+ msgid "Quality of thumbnails generated by timthumb:"
415
+ msgstr ""
416
+
417
+ #: admin.inc.php:427
418
+ msgid ""
419
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
420
+ "file size. Suggested maximum value is 95. Default is 75."
421
+ msgstr ""
422
+
423
+ #: admin.inc.php:430
424
  #, fuzzy
425
  msgid "Post thumbnail meta field name: "
426
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
427
 
428
+ #: admin.inc.php:433
429
  msgid ""
430
  "The value of this field should contain the image source and is set in the "
431
  "<em>Add New Post</em> screen"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:436
435
  #, fuzzy
436
  msgid ""
437
  "If the postmeta is not set, then should the plugin extract the first image "
441
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
442
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
443
 
444
+ #: admin.inc.php:439
445
  #, fuzzy
446
  msgid ""
447
  "This could slow down the loading of your page if the first image in the "
451
  "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
452
  "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
453
 
454
+ #: admin.inc.php:442
455
  msgid "Use default thumbnail? "
456
  msgstr ""
457
 
458
+ #: admin.inc.php:445
459
  msgid ""
460
  "If checked, when no thumbnail is found, show a default one from the URL "
461
  "below. If not checked and no thumbnail is found, no image will be shown."
462
  msgstr ""
463
 
464
+ #: admin.inc.php:448
465
  msgid "Default thumbnail: "
466
  msgstr ""
467
 
468
+ #: admin.inc.php:452
469
  #, fuzzy
470
  msgid ""
471
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
476
  "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
477
  "onda standard şəkil çıxarılacaq:"
478
 
479
+ #: admin.inc.php:459
480
  msgid "Custom CSS"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:462
484
  msgid "Use default style included in the plugin?"
485
  msgstr ""
486
 
487
+ #: admin.inc.php:465
488
  msgid ""
489
  "Top 10 includes a default style that makes your popular posts list to look "
490
  "pretty. Check the box above if you want to use this. You will need to select "
492
  "Widget."
493
  msgstr ""
494
 
495
+ #: admin.inc.php:468
496
  msgid "Custom CSS to add to header:"
497
  msgstr ""
498
 
499
+ #: admin.inc.php:471
500
  msgid ""
501
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
502
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
503
  "available CSS classes to style."
504
  msgstr ""
505
 
506
+ #: admin.inc.php:478 admin.inc.php:544
507
  #, fuzzy
508
  msgid "Save Options"
509
  msgstr "Opsiyalar:"
510
 
511
+ #: admin.inc.php:479
512
  #, fuzzy
513
  msgid "Default Options"
514
  msgstr "Plaginin kökləmələri:"
515
 
516
+ #: admin.inc.php:479
517
  msgid "Do you want to set options to Default?"
518
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
519
 
520
+ #: admin.inc.php:488
521
  msgid "Maintenance"
522
  msgstr ""
523
 
524
+ #: admin.inc.php:492
525
  msgid ""
526
  "Over time the Daily Top 10 database grows in size, which reduces the "
527
  "performance of the plugin. Cleaning the database at regular intervals could "
529
  "will automatically delete entries older than 90 days."
530
  msgstr ""
531
 
532
+ #: admin.inc.php:493
533
  msgid ""
534
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
535
  "everytime the job is rescheduled (i.e. you change the settings below)."
536
  msgstr ""
537
 
538
+ #: admin.inc.php:496
539
  msgid "Enable scheduled maintenance of daily tables:"
540
  msgstr ""
541
 
542
+ #: admin.inc.php:500
543
  msgid "Time to run maintenance"
544
  msgstr ""
545
 
546
+ #: admin.inc.php:501
547
  msgid "hrs"
548
  msgstr ""
549
 
550
+ #: admin.inc.php:501
551
  msgid "min"
552
  msgstr ""
553
 
554
+ #: admin.inc.php:503
555
  msgid "How often should the maintenance be run:"
556
  msgstr ""
557
 
558
+ #: admin.inc.php:507
559
  msgid "Daily"
560
  msgstr ""
561
 
562
+ #: admin.inc.php:511
563
  msgid "Weekly"
564
  msgstr ""
565
 
566
+ #: admin.inc.php:515
567
  msgid "Fortnightly"
568
  msgstr ""
569
 
570
+ #: admin.inc.php:519
571
  msgid "Monthly"
572
  msgstr ""
573
 
574
+ #: admin.inc.php:528
575
  msgid "The cron job has been scheduled. Maintenance will run "
576
  msgstr ""
577
 
578
+ #: admin.inc.php:533
579
  msgid "The cron job is missing. Please resave this page to add the job"
580
  msgstr ""
581
 
582
+ #: admin.inc.php:538
583
  msgid "Maintenance is turned off"
584
  msgstr ""
585
 
586
+ #: admin.inc.php:552
587
  msgid "Reset count"
588
  msgstr "Statistikanı sbros etmək"
589
 
590
+ #: admin.inc.php:555
591
  msgid ""
592
  "This cannot be reversed. Make sure that your database has been backed up "
593
  "before proceeding"
595
  "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
596
  "ki, Sizin məlumat bazasının kopiyası var!"
597
 
598
+ #: admin.inc.php:558
599
  #, fuzzy
600
  msgid "Reset Popular Posts"
601
  msgstr "Populyar yazılar"
602
 
603
+ #: admin.inc.php:558
604
  msgid "Are you sure you want to reset the popular posts?"
605
  msgstr ""
606
  "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
607
 
608
+ #: admin.inc.php:559
609
  #, fuzzy
610
  msgid "Reset Daily Popular Posts"
611
  msgstr "Gündəlik Populyar Yazılar"
612
 
613
+ #: admin.inc.php:559
614
  msgid "Are you sure you want to reset the daily popular posts?"
615
  msgstr ""
616
  "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
617
  "istəyirsiniz?"
618
 
619
+ #: admin.inc.php:560
620
  msgid "Clear duplicates"
621
  msgstr ""
622
 
623
+ #: admin.inc.php:560
624
  msgid "This will delete the duplicate entries in the tables. Proceed?"
625
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
626
 
627
+ #: admin.inc.php:612 admin.inc.php:1010
628
  msgid "Popular Posts"
629
  msgstr "Populyar yazılar"
630
 
631
+ #: admin.inc.php:614 admin.inc.php:713
632
  msgid "Daily Popular Posts"
633
  msgstr "Gündəlik Populyar Yazılar"
634
 
635
+ #: admin.inc.php:645
636
  msgid "Support the development"
637
  msgstr "İnkişafı dəstək vermək"
638
 
639
+ #: admin.inc.php:652
640
+ msgid "Donation for Top 10"
641
+ msgstr ""
642
+
643
+ #: admin.inc.php:654
644
  msgid "Enter amount in USD: "
645
  msgstr "Miiqdarı USD ilə daxil et:"
646
 
647
+ #: admin.inc.php:658
648
+ #, fuzzy
649
+ msgid "Send your donation to the author of Top 10"
650
  msgstr "Müəlifə ianə göndərin "
651
 
652
+ #: admin.inc.php:665
653
  msgid "Follow me"
654
  msgstr ""
655
 
656
+ #: admin.inc.php:675
657
  #, fuzzy
658
  msgid "Quick links"
659
  msgstr "Faydalı istenadlar"
660
 
661
+ #: admin.inc.php:679
662
  #, fuzzy
663
  msgid "Top 10 plugin page"
664
  msgstr "plaginin səhifəsi"
665
 
666
+ #: admin.inc.php:680
667
  msgid "Other plugins"
668
  msgstr "Digər plaginlər"
669
 
670
+ #: admin.inc.php:681
671
  msgid "Ajay's blog"
672
  msgstr "Ajay-in blogu"
673
 
674
+ #: admin.inc.php:682
675
  msgid "FAQ"
676
  msgstr ""
677
 
678
+ #: admin.inc.php:683 top-10.php:1345
679
  msgid "Support"
680
  msgstr "Dəstək"
681
 
682
+ #: admin.inc.php:684
683
  msgid "Reviews"
684
  msgstr ""
685
 
686
+ #: admin.inc.php:704 admin.inc.php:707
687
  #, fuzzy
688
  msgid "Top 10 Settings"
689
  msgstr "Kökləmələr"
690
 
691
+ #: admin.inc.php:704 admin.inc.php:1183
692
  msgid "Top 10"
693
  msgstr "Top 10 yazılar"
694
 
695
+ #: admin.inc.php:710
696
  #, fuzzy
697
  msgid "Overall Popular Posts"
698
  msgstr "Bütün Populyar Yazılara Baxmaq"
699
 
700
+ #: admin.inc.php:882
701
  #, php-format
702
  msgid "Results %1$s to %2$s of %3$s"
703
  msgstr ""
704
 
705
+ #: admin.inc.php:886
706
  #, php-format
707
  msgid "Page %s of %s"
708
  msgstr ""
709
 
710
+ #: admin.inc.php:898
711
  msgid "View Daily Popular Posts"
712
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
713
 
714
+ #: admin.inc.php:901 admin.inc.php:914
715
  msgid "Results per-page:"
716
  msgstr "Səhifə üzrə nəticələr:"
717
 
718
+ #: admin.inc.php:911
719
  msgid "View Overall Popular Posts"
720
  msgstr "Bütün Populyar Yazılara Baxmaq"
721
 
722
+ #: admin.inc.php:940
723
  msgid "Previous"
724
  msgstr "Əvvəlki"
725
 
726
+ #: admin.inc.php:968
727
  msgid "Next"
728
  msgstr "Sonrakı"
729
 
730
+ #: admin.inc.php:1011
731
  msgid "Daily Popular"
732
  msgstr "Gündəlik Populyar"
733
 
734
+ #: admin.inc.php:1029
735
  #, fuzzy
736
  msgid "Total Views"
737
  msgstr "Ümümi/ Bu günkü baxış"
738
 
739
+ #: admin.inc.php:1030
740
  #, fuzzy
741
  msgid "Today's Views"
742
  msgstr "Ümümi/ Bu günkü baxış"
743
 
744
+ #: admin.inc.php:1031
745
  #, fuzzy
746
  msgid "Views"
747
  msgstr "Ümümi/ Bu günkü baxış"
748
 
749
+ #: admin.inc.php:1217
750
+ #, fuzzy
751
+ msgid "Visit count:"
752
+ msgstr "Statistikanı sbros etmək"
753
+
754
+ #: admin.inc.php:1219
755
+ msgid ""
756
+ "Enter a number above to update the visit count. Leaving the above box blank "
757
+ "will set the count to zero"
758
+ msgstr ""
759
+
760
+ #: admin.inc.php:1229
761
+ msgid "Location of thumbnail:"
762
+ msgstr ""
763
+
764
+ #: admin.inc.php:1231
765
+ msgid ""
766
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
767
+ "image will be used for the post. It will be resized to the thumbnail size "
768
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
769
  msgstr ""
770
 
771
+ #: admin.inc.php:1232
772
+ msgid "The URL above is saved in the meta field: "
773
+ msgstr ""
774
+
775
+ #: top-10.php:456
776
+ msgid " by "
777
  msgstr ""
778
 
779
+ #: top-10.php:550
780
  #, fuzzy
781
  msgid "Popular Posts [Top 10]"
782
  msgstr "Populyar yazılar"
783
 
784
+ #: top-10.php:551
785
+ #, fuzzy
786
+ msgid "Display popular posts"
787
+ msgstr "Gündəlik Populyar Yazılar"
788
+
789
+ #: top-10.php:577
790
  msgid "Title"
791
  msgstr ""
792
 
793
+ #: top-10.php:582
794
  msgid "No. of posts"
795
  msgstr ""
796
 
797
+ #: top-10.php:587
798
  msgid "Overall"
799
  msgstr ""
800
 
801
+ #: top-10.php:588
802
  msgid "Custom time period (Enter below)"
803
  msgstr ""
804
 
805
+ #: top-10.php:593
806
  msgid "Range in number of days (applies only to custom option above)"
807
  msgstr ""
808
 
809
+ #: top-10.php:598
810
  #, fuzzy
811
+ msgid "Show count?"
812
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
813
 
814
+ #: top-10.php:603
815
  #, fuzzy
816
+ msgid "Show excerpt?"
817
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
818
 
819
+ #: top-10.php:608
820
+ #, fuzzy
821
+ msgid "Show author?"
822
+ msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
823
 
824
+ #: top-10.php:613
825
  #, fuzzy
826
+ msgid "Show date?"
827
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
828
 
829
+ #: top-10.php:617
830
  #, fuzzy
831
  msgid "Thumbnail options"
832
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
833
 
834
+ #: top-10.php:619
835
  #, fuzzy
836
  msgid "Thumbnails inline, before title"
837
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
838
 
839
+ #: top-10.php:620
840
  #, fuzzy
841
  msgid "Thumbnails inline, after title"
842
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
843
 
844
+ #: top-10.php:621
845
  #, fuzzy
846
  msgid "Only thumbnails, no text"
847
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
848
 
849
+ #: top-10.php:622
850
  #, fuzzy
851
  msgid "No thumbnails, only text."
852
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
853
 
854
+ #: top-10.php:627
855
  #, fuzzy
856
  msgid "Thumbnail height"
857
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
858
 
859
+ #: top-10.php:632
860
  #, fuzzy
861
  msgid "Thumbnail width"
862
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
863
 
864
+ #: top-10.php:772
865
  msgid "<h3>Popular Posts</h3>"
866
  msgstr "<h3>Populyar yazılar</h3>"
867
 
868
+ #: top-10.php:773
869
  msgid "<h3>Daily Popular</h3>"
870
  msgstr "<h3>Gündəlik Populyar</h3>"
871
 
872
+ #: top-10.php:774
873
  #, fuzzy
874
  msgid "No top posts yet"
875
  msgstr "10 populyar yazı statisticasını pozmaq"
876
 
877
+ #: top-10.php:1245
878
  msgid "Once Weekly"
879
  msgstr ""
880
 
881
+ #: top-10.php:1249
882
  msgid "Once Fortnightly"
883
  msgstr ""
884
 
885
+ #: top-10.php:1253
886
  msgid "Once Monthly"
887
  msgstr ""
888
 
889
+ #: top-10.php:1323
890
  msgid "Settings"
891
  msgstr "Kökləmələr"
892
 
893
+ #: top-10.php:1346
894
  msgid "Donate"
895
  msgstr "İanə etmək"
896
 
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
@@ -12,202 +12,216 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Налады захаваны."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Налады скінуты."
25
 
26
- #: admin.inc.php:128
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Загаловак блока Папулярных запісаў:"
30
 
31
- #: admin.inc.php:134
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Загаловак блока Папулярных сёння запісаў:"
35
 
36
- #: admin.inc.php:141
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
- #: admin.inc.php:152
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
- #: admin.inc.php:156
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
- #: admin.inc.php:172
49
- msgid "General options"
 
50
  msgstr ""
51
 
52
  #: admin.inc.php:176
 
 
 
 
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
- #: admin.inc.php:181
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:186
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:188
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
- #: admin.inc.php:192
72
  msgid "Number of popular posts to display: "
73
  msgstr "Колькасць Папулярных запісаў у спісе:"
74
 
75
- #: admin.inc.php:194
76
  msgid ""
77
  "Maximum number of posts that will be displayed in the list. This option is "
78
  "used if you don't specify the number of posts in the widget or shortcodes"
79
  msgstr ""
80
 
81
- #: admin.inc.php:198
82
  msgid "Daily Popular should contain views of how many days? "
83
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
84
 
85
- #: admin.inc.php:200
86
  msgid ""
87
  "Instead of displaying popular posts fromt he past day, this setting lets you "
88
  "display posts for as many days as you want. This can be overridden in the "
89
  "widget."
90
  msgstr ""
91
 
92
- #: admin.inc.php:203
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
- #: admin.inc.php:214
97
  msgid "List of post or page IDs to exclude from the results: "
98
  msgstr ""
99
 
100
- #: admin.inc.php:216 admin.inc.php:352
101
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
102
  msgstr ""
103
 
104
- #: admin.inc.php:220
105
  msgid "Exclude Categories: "
106
  msgstr ""
107
 
108
- #: admin.inc.php:235
109
  msgid ""
110
  "Comma separated list of category slugs. The field above has an autocomplete "
111
  "so simply start typing in the starting letters and it will prompt you with "
112
  "options"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  #, fuzzy
117
  msgid "Display number of views on:"
118
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
119
 
120
- #: admin.inc.php:242
121
  msgid "Posts"
122
  msgstr ""
123
 
124
- #: admin.inc.php:243
125
  #, fuzzy
126
  msgid "Pages"
127
  msgstr "Старонка"
128
 
129
- #: admin.inc.php:244
130
  msgid "Home page"
131
  msgstr ""
132
 
133
- #: admin.inc.php:245
134
  msgid "Feeds"
135
  msgstr ""
136
 
137
- #: admin.inc.php:246
138
  msgid "Category archives"
139
  msgstr ""
140
 
141
- #: admin.inc.php:247
142
  msgid "Tag archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:248
146
  msgid "Other archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:249
150
  msgid ""
151
- "If you choose to disable this, please add <code>&lt;?php "
152
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
153
- "template file where you want it displayed"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Always display latest post count"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid ""
162
  "This option uses JavaScript and will increase your page load time. Turn this "
163
  "off if you are not using caching plugins or are OK with displaying older "
164
  "cached counts."
165
  msgstr ""
166
 
167
- #: admin.inc.php:257
168
  msgid "Track visits of authors on their own posts?"
169
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
170
 
171
- #: admin.inc.php:259
172
  msgid ""
173
  "Disabling this option will stop authors visits tracked on their own posts"
174
  msgstr ""
175
 
176
- #: admin.inc.php:262
177
  #, fuzzy
178
  msgid "Track visits of admins?"
179
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
180
 
181
- #: admin.inc.php:264
182
  msgid "Disabling this option will stop admin visits being tracked."
183
  msgstr ""
184
 
185
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
186
  msgid "Display page views on Posts and Pages in Admin"
187
  msgstr ""
188
 
189
- #: admin.inc.php:270
190
  msgid ""
191
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
192
  "and All Pages"
193
  msgstr ""
194
 
195
- #: admin.inc.php:273
196
  #, fuzzy
197
  msgid "Show number of views to non-admins"
198
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
199
 
200
- #: admin.inc.php:276
201
  msgid ""
202
  "If you disable this then non-admins won't see the above columns or view the "
203
  "independent pages with the top posts"
204
  msgstr ""
205
 
206
- #: admin.inc.php:279
207
  msgid "Link to Top 10 plugin page"
208
  msgstr ""
209
 
210
- #: admin.inc.php:282
211
  #, fuzzy
212
  msgid ""
213
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -216,17 +230,17 @@ msgstr ""
216
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
217
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
218
 
219
- #: admin.inc.php:289
220
  #, fuzzy
221
  msgid "Output options"
222
  msgstr "Налады ўбудовы:"
223
 
224
- #: admin.inc.php:292
225
  #, fuzzy
226
  msgid "Format to display the post views:"
227
  msgstr "Фармат адлюстравання колькасці праглядаў:"
228
 
229
- #: admin.inc.php:294
230
  #, fuzzy
231
  msgid ""
232
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -238,11 +252,11 @@ msgstr ""
238
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: "
239
  "<code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
240
 
241
- #: admin.inc.php:297
242
  msgid "What do display when there are no visits?"
243
  msgstr ""
244
 
245
- #: admin.inc.php:299
246
  msgid ""
247
  "This text applies only when there are 0 hits for the post and it isn't a "
248
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -250,202 +264,212 @@ msgid ""
250
  "option."
251
  msgstr ""
252
 
253
- #: admin.inc.php:302
254
  msgid "Title of popular posts: "
255
  msgstr "Загаловак блока Папулярных запісаў:"
256
 
257
- #: admin.inc.php:305
258
  msgid "Title of daily popular posts: "
259
  msgstr "Загаловак блока Папулярных сёння запісаў:"
260
 
261
- #: admin.inc.php:308
262
  msgid "When there are no posts, what should be shown?"
263
  msgstr ""
264
 
265
- #: admin.inc.php:312
266
  msgid "Blank Output"
267
  msgstr ""
268
 
269
- #: admin.inc.php:316
270
  msgid "Display:"
271
  msgstr ""
272
 
273
- #: admin.inc.php:320
274
  msgid "Show post excerpt in list?"
275
  msgstr ""
276
 
277
- #: admin.inc.php:323
278
  msgid "Length of excerpt (in words): "
279
  msgstr ""
280
 
281
- #: admin.inc.php:326
282
  msgid "Show post author in list?"
283
  msgstr ""
284
 
285
- #: admin.inc.php:329
286
  msgid "Show post date in list?"
287
  msgstr ""
288
 
289
- #: admin.inc.php:332
290
  msgid "Limit post title length (in characters)"
291
  msgstr ""
292
 
293
- #: admin.inc.php:335
294
  msgid "Show view count in list?"
295
  msgstr ""
296
 
297
- #: admin.inc.php:338
298
  msgid "Always display latest post count in the daily lists?"
299
  msgstr ""
300
 
301
- #: admin.inc.php:340
302
  msgid ""
303
  "This option uses JavaScript and will increase your page load time. When you "
304
  "enable this option, the daily widget will not use the options set there, but "
305
  "options will need to be set on this screen."
306
  msgstr ""
307
 
308
- #: admin.inc.php:343
309
  msgid "Open links in new window"
310
  msgstr ""
311
 
312
- #: admin.inc.php:346
313
  msgid "Add nofollow attribute to links in the list"
314
  msgstr ""
315
 
316
- #: admin.inc.php:349
317
  msgid "Exclude display of related posts on these posts / pages"
318
  msgstr ""
319
 
320
- #: admin.inc.php:355
321
  msgid "Customise the list HTML"
322
  msgstr ""
323
 
324
- #: admin.inc.php:357
325
  msgid "HTML to display before the list of posts: "
326
  msgstr ""
327
 
328
- #: admin.inc.php:360
329
  msgid "HTML to display before each list item: "
330
  msgstr ""
331
 
332
- #: admin.inc.php:363
333
  #, fuzzy
334
  msgid "HTML to display after each list item: "
335
  msgstr "Фармат адлюстравання колькасці праглядаў:"
336
 
337
- #: admin.inc.php:366
338
  msgid "HTML to display after the list of posts: "
339
  msgstr ""
340
 
341
- #: admin.inc.php:369
342
  msgid "Post thumbnail options:"
343
  msgstr ""
344
 
345
- #: admin.inc.php:371
346
  msgid "Location of post thumbnail:"
347
  msgstr ""
348
 
349
- #: admin.inc.php:375
350
  #, fuzzy
351
  msgid "Display thumbnails inline with posts, before title"
352
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
353
 
354
- #: admin.inc.php:379
355
  #, fuzzy
356
  msgid "Display thumbnails inline with posts, after title"
357
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
358
 
359
- #: admin.inc.php:383
360
  msgid "Display only thumbnails, no text"
361
  msgstr ""
362
 
363
- #: admin.inc.php:387
364
  msgid "Do not display thumbnails, only text."
365
  msgstr ""
366
 
367
- #: admin.inc.php:391
368
  msgid "Width of the thumbnail: "
369
  msgstr ""
370
 
371
- #: admin.inc.php:394
372
  msgid "Height of the thumbnail: "
373
  msgstr ""
374
 
375
- #: admin.inc.php:397
376
  msgid "Style attributes / Width and Height HTML attributes:"
377
  msgstr ""
378
 
379
- #: admin.inc.php:401
380
  msgid "Style attributes are used for width and height."
381
  msgstr ""
382
 
383
- #: admin.inc.php:405
384
  msgid "HTML width and height attributes are used for width and height."
385
  msgstr ""
386
 
387
- #: admin.inc.php:409
388
  msgid "Use timthumb to generate thumbnails? "
389
  msgstr ""
390
 
391
- #: admin.inc.php:412
392
  msgid ""
393
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
394
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
395
  msgstr ""
396
 
397
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
398
  msgid "Post thumbnail meta field name: "
399
  msgstr ""
400
 
401
- #: admin.inc.php:418
402
  msgid ""
403
  "The value of this field should contain the image source and is set in the "
404
  "<em>Add New Post</em> screen"
405
  msgstr ""
406
 
407
- #: admin.inc.php:421
408
  msgid ""
409
  "If the postmeta is not set, then should the plugin extract the first image "
410
  "from the post?"
411
  msgstr ""
412
 
413
- #: admin.inc.php:424
414
  msgid ""
415
  "This could slow down the loading of your page if the first image in the "
416
  "related posts is large in file-size"
417
  msgstr ""
418
 
419
- #: admin.inc.php:427
420
  msgid "Use default thumbnail? "
421
  msgstr ""
422
 
423
- #: admin.inc.php:430
424
  msgid ""
425
  "If checked, when no thumbnail is found, show a default one from the URL "
426
  "below. If not checked and no thumbnail is found, no image will be shown."
427
  msgstr ""
428
 
429
- #: admin.inc.php:433
430
  msgid "Default thumbnail: "
431
  msgstr ""
432
 
433
- #: admin.inc.php:437
434
  msgid ""
435
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
436
  "then it will check the meta field. If this is not available, then it will "
437
  "show the default image as specified above"
438
  msgstr ""
439
 
440
- #: admin.inc.php:444
441
  msgid "Custom CSS"
442
  msgstr ""
443
 
444
- #: admin.inc.php:447
445
  msgid "Use default style included in the plugin?"
446
  msgstr ""
447
 
448
- #: admin.inc.php:450
449
  msgid ""
450
  "Top 10 includes a default style that makes your popular posts list to look "
451
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -453,36 +477,36 @@ msgid ""
453
  "Widget."
454
  msgstr ""
455
 
456
- #: admin.inc.php:453
457
  msgid "Custom CSS to add to header:"
458
  msgstr ""
459
 
460
- #: admin.inc.php:456
461
  msgid ""
462
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
463
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
464
  "available CSS classes to style."
465
  msgstr ""
466
 
467
- #: admin.inc.php:463 admin.inc.php:529
468
  #, fuzzy
469
  msgid "Save Options"
470
  msgstr "Налады ўбудовы:"
471
 
472
- #: admin.inc.php:464
473
  #, fuzzy
474
  msgid "Default Options"
475
  msgstr "Налады ўбудовы:"
476
 
477
- #: admin.inc.php:464
478
  msgid "Do you want to set options to Default?"
479
  msgstr "Скінуць налады ўбудовы?"
480
 
481
- #: admin.inc.php:473
482
  msgid "Maintenance"
483
  msgstr ""
484
 
485
- #: admin.inc.php:477
486
  msgid ""
487
  "Over time the Daily Top 10 database grows in size, which reduces the "
488
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -490,321 +514,351 @@ msgid ""
490
  "will automatically delete entries older than 90 days."
491
  msgstr ""
492
 
493
- #: admin.inc.php:478
494
  msgid ""
495
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
496
  "everytime the job is rescheduled (i.e. you change the settings below)."
497
  msgstr ""
498
 
499
- #: admin.inc.php:481
500
  msgid "Enable scheduled maintenance of daily tables:"
501
  msgstr ""
502
 
503
- #: admin.inc.php:485
504
  msgid "Time to run maintenance"
505
  msgstr ""
506
 
507
- #: admin.inc.php:486
508
  msgid "hrs"
509
  msgstr ""
510
 
511
- #: admin.inc.php:486
512
  msgid "min"
513
  msgstr ""
514
 
515
- #: admin.inc.php:488
516
  msgid "How often should the maintenance be run:"
517
  msgstr ""
518
 
519
- #: admin.inc.php:492
520
  msgid "Daily"
521
  msgstr ""
522
 
523
- #: admin.inc.php:496
524
  msgid "Weekly"
525
  msgstr ""
526
 
527
- #: admin.inc.php:500
528
  msgid "Fortnightly"
529
  msgstr ""
530
 
531
- #: admin.inc.php:504
532
  msgid "Monthly"
533
  msgstr ""
534
 
535
- #: admin.inc.php:513
536
  msgid "The cron job has been scheduled. Maintenance will run "
537
  msgstr ""
538
 
539
- #: admin.inc.php:518
540
  msgid "The cron job is missing. Please resave this page to add the job"
541
  msgstr ""
542
 
543
- #: admin.inc.php:523
544
  msgid "Maintenance is turned off"
545
  msgstr ""
546
 
547
- #: admin.inc.php:537
548
  msgid "Reset count"
549
  msgstr ""
550
 
551
- #: admin.inc.php:540
552
  msgid ""
553
  "This cannot be reversed. Make sure that your database has been backed up "
554
  "before proceeding"
555
  msgstr ""
556
 
557
- #: admin.inc.php:543
558
  #, fuzzy
559
  msgid "Reset Popular Posts"
560
  msgstr "Папулярныя запісы"
561
 
562
- #: admin.inc.php:543
563
  msgid "Are you sure you want to reset the popular posts?"
564
  msgstr ""
565
 
566
- #: admin.inc.php:544
567
  #, fuzzy
568
  msgid "Reset Daily Popular Posts"
569
  msgstr "Папулярныя сёння запісы"
570
 
571
- #: admin.inc.php:544
572
  msgid "Are you sure you want to reset the daily popular posts?"
573
  msgstr ""
574
 
575
- #: admin.inc.php:545
576
  msgid "Clear duplicates"
577
  msgstr ""
578
 
579
- #: admin.inc.php:545
580
  msgid "This will delete the duplicate entries in the tables. Proceed?"
581
  msgstr ""
582
 
583
- #: admin.inc.php:593 admin.inc.php:979
584
  msgid "Popular Posts"
585
  msgstr "Папулярныя запісы"
586
 
587
- #: admin.inc.php:593 admin.inc.php:688
588
  msgid "Daily Popular Posts"
589
  msgstr "Папулярныя сёння запісы"
590
 
591
- #: admin.inc.php:621
592
  #, fuzzy
593
  msgid "Support the development"
594
  msgstr "Падтрымаеце стваральніка ўбудовы"
595
 
596
- #: admin.inc.php:630
 
 
 
 
597
  msgid "Enter amount in USD: "
598
  msgstr ""
599
 
600
- #: admin.inc.php:634
601
- msgid "Send your donation to the author of"
602
  msgstr ""
603
 
604
- #: admin.inc.php:641
605
  msgid "Follow me"
606
  msgstr ""
607
 
608
- #: admin.inc.php:651
609
  msgid "Quick links"
610
  msgstr ""
611
 
612
- #: admin.inc.php:655
613
  msgid "Top 10 plugin page"
614
  msgstr ""
615
 
616
- #: admin.inc.php:656
617
  msgid "Other plugins"
618
  msgstr ""
619
 
620
- #: admin.inc.php:657
621
  msgid "Ajay's blog"
622
  msgstr ""
623
 
624
- #: admin.inc.php:658
625
  msgid "FAQ"
626
  msgstr ""
627
 
628
- #: admin.inc.php:659 top-10.php:1267
629
  msgid "Support"
630
  msgstr ""
631
 
632
- #: admin.inc.php:660
633
  msgid "Reviews"
634
  msgstr ""
635
 
636
- #: admin.inc.php:679 admin.inc.php:682
637
  #, fuzzy
638
  msgid "Top 10 Settings"
639
  msgstr "Топ 10 запісаў"
640
 
641
- #: admin.inc.php:679
642
  msgid "Top 10"
643
  msgstr "Топ 10 запісаў"
644
 
645
- #: admin.inc.php:685
646
  #, fuzzy
647
  msgid "Overall Popular Posts"
648
  msgstr "Паглядзець усе Папулярныя запісы"
649
 
650
- #: admin.inc.php:850
651
  #, php-format
652
  msgid "Results %1$s to %2$s of %3$s"
653
  msgstr ""
654
 
655
- #: admin.inc.php:854
656
  #, php-format
657
  msgid "Page %s of %s"
658
  msgstr ""
659
 
660
- #: admin.inc.php:866
661
  msgid "View Daily Popular Posts"
662
  msgstr "Паглядзець усе Папулярныя сёння запісы"
663
 
664
- #: admin.inc.php:869 admin.inc.php:882
665
  msgid "Results per-page:"
666
  msgstr "Вынікаў на старонку:"
667
 
668
- #: admin.inc.php:879
669
  msgid "View Overall Popular Posts"
670
  msgstr "Паглядзець усе Папулярныя запісы"
671
 
672
- #: admin.inc.php:908
673
  msgid "Previous"
674
  msgstr "Папярэдняя старонка"
675
 
676
- #: admin.inc.php:936
677
  msgid "Next"
678
  msgstr "Наступная старонка"
679
 
680
- #: admin.inc.php:980
681
  msgid "Daily Popular"
682
  msgstr "Папулярныя сёння запісы"
683
 
684
- #: admin.inc.php:998
685
  #, fuzzy
686
  msgid "Total Views"
687
  msgstr "Усяго / Сёння праглядаў"
688
 
689
- #: admin.inc.php:999
690
  #, fuzzy
691
  msgid "Today's Views"
692
  msgstr "Усяго / Сёння праглядаў"
693
 
694
- #: admin.inc.php:1000
695
  #, fuzzy
696
  msgid "Views"
697
  msgstr "Усяго / Сёння праглядаў"
698
 
699
- #: top-10.php:438
700
- msgid " by "
 
 
 
 
 
 
 
 
 
 
701
  msgstr ""
702
 
703
- #: top-10.php:524
704
- msgid "Display the posts popular this week"
 
 
 
705
  msgstr ""
706
 
707
- #: top-10.php:525
 
 
 
 
 
 
 
 
708
  #, fuzzy
709
  msgid "Popular Posts [Top 10]"
710
  msgstr "Папулярныя запісы"
711
 
712
- #: top-10.php:543
 
 
 
 
 
713
  msgid "Title"
714
  msgstr ""
715
 
716
- #: top-10.php:548
717
  msgid "No. of posts"
718
  msgstr ""
719
 
720
- #: top-10.php:553
721
  msgid "Overall"
722
  msgstr ""
723
 
724
- #: top-10.php:554
725
  msgid "Custom time period (Enter below)"
726
  msgstr ""
727
 
728
- #: top-10.php:559
729
  msgid "Range in number of days (applies only to custom option above)"
730
  msgstr ""
731
 
732
- #: top-10.php:564
733
- msgid " Show count?"
734
  msgstr ""
735
 
736
- #: top-10.php:569
737
- msgid " Show excerpt?"
738
  msgstr ""
739
 
740
- #: top-10.php:574
741
- msgid " Show author?"
742
  msgstr ""
743
 
744
- #: top-10.php:579
745
- msgid " Show date?"
746
  msgstr ""
747
 
748
- #: top-10.php:583
749
  msgid "Thumbnail options"
750
  msgstr ""
751
 
752
- #: top-10.php:585
753
  #, fuzzy
754
  msgid "Thumbnails inline, before title"
755
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
756
 
757
- #: top-10.php:586
758
  #, fuzzy
759
  msgid "Thumbnails inline, after title"
760
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
761
 
762
- #: top-10.php:587
763
  msgid "Only thumbnails, no text"
764
  msgstr ""
765
 
766
- #: top-10.php:588
767
  msgid "No thumbnails, only text."
768
  msgstr ""
769
 
770
- #: top-10.php:593
771
  msgid "Thumbnail height"
772
  msgstr ""
773
 
774
- #: top-10.php:598
775
  msgid "Thumbnail width"
776
  msgstr ""
777
 
778
- #: top-10.php:719
779
  msgid "<h3>Popular Posts</h3>"
780
  msgstr "<h3>Папулярныя запісы</h3>"
781
 
782
- #: top-10.php:720
783
  msgid "<h3>Daily Popular</h3>"
784
  msgstr "<h3>Папулярныя сёння запісы</h3>"
785
 
786
- #: top-10.php:721
787
  #, fuzzy
788
  msgid "No top posts yet"
789
  msgstr "Загаловак блока Папулярных запісаў:"
790
 
791
- #: top-10.php:1184
792
  msgid "Once Weekly"
793
  msgstr ""
794
 
795
- #: top-10.php:1188
796
  msgid "Once Fortnightly"
797
  msgstr ""
798
 
799
- #: top-10.php:1192
800
  msgid "Once Monthly"
801
  msgstr ""
802
 
803
- #: top-10.php:1255
804
  msgid "Settings"
805
  msgstr ""
806
 
807
- #: top-10.php:1268
808
  msgid "Donate"
809
  msgstr ""
810
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Налады захаваны."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Налады скінуты."
25
 
26
+ #: admin.inc.php:131
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Загаловак блока Папулярных запісаў:"
30
 
31
+ #: admin.inc.php:137
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Загаловак блока Папулярных сёння запісаў:"
35
 
36
+ #: admin.inc.php:144
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
+ #: admin.inc.php:156
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
+ #: admin.inc.php:160
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
49
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
50
+ msgid "Click to toggle"
51
  msgstr ""
52
 
53
  #: admin.inc.php:176
54
+ msgid "General options"
55
+ msgstr ""
56
+
57
+ #: admin.inc.php:180
58
  msgid "Enable Overall stats"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:185
62
  msgid "Enable Daily stats"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:190
66
  msgid "W3 Total Cache fix:"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:192
70
  msgid ""
71
  "This will try to prevent W3 Total Cache from caching the addcount script of "
72
  "the plugin. Try toggling this option in case you find that our posts are not "
73
  "tracked."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:196
77
  msgid "Number of popular posts to display: "
78
  msgstr "Колькасць Папулярных запісаў у спісе:"
79
 
80
+ #: admin.inc.php:198
81
  msgid ""
82
  "Maximum number of posts that will be displayed in the list. This option is "
83
  "used if you don't specify the number of posts in the widget or shortcodes"
84
  msgstr ""
85
 
86
+ #: admin.inc.php:202
87
  msgid "Daily Popular should contain views of how many days? "
88
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
89
 
90
+ #: admin.inc.php:204
91
  msgid ""
92
  "Instead of displaying popular posts fromt he past day, this setting lets you "
93
  "display posts for as many days as you want. This can be overridden in the "
94
  "widget."
95
  msgstr ""
96
 
97
+ #: admin.inc.php:207
98
  msgid "Post types to include in results (including custom post types)"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:218
102
  msgid "List of post or page IDs to exclude from the results: "
103
  msgstr ""
104
 
105
+ #: admin.inc.php:220 admin.inc.php:361
106
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:224
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:239
114
  msgid ""
115
  "Comma separated list of category slugs. The field above has an autocomplete "
116
  "so simply start typing in the starting letters and it will prompt you with "
117
  "options"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:244
121
  #, fuzzy
122
  msgid "Display number of views on:"
123
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
124
 
125
+ #: admin.inc.php:246
126
  msgid "Posts"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:247
130
  #, fuzzy
131
  msgid "Pages"
132
  msgstr "Старонка"
133
 
134
+ #: admin.inc.php:248
135
  msgid "Home page"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:249
139
  msgid "Feeds"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:250
143
  msgid "Category archives"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:251
147
  msgid "Tag archives"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:252
151
  msgid "Other archives"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:253
155
  msgid ""
156
+ "If you choose to disable this, please add <code>&lt;?php if "
157
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
158
+ "</code> to your template file where you want it displayed"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:256
162
  msgid "Always display latest post count"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:258
166
  msgid ""
167
  "This option uses JavaScript and will increase your page load time. Turn this "
168
  "off if you are not using caching plugins or are OK with displaying older "
169
  "cached counts."
170
  msgstr ""
171
 
172
+ #: admin.inc.php:261
173
  msgid "Track visits of authors on their own posts?"
174
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
175
 
176
+ #: admin.inc.php:263
177
  msgid ""
178
  "Disabling this option will stop authors visits tracked on their own posts"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:266
182
  #, fuzzy
183
  msgid "Track visits of admins?"
184
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
185
 
186
+ #: admin.inc.php:268
187
  msgid "Disabling this option will stop admin visits being tracked."
188
  msgstr ""
189
 
190
+ #: admin.inc.php:271
191
+ #, fuzzy
192
+ msgid "Track visits of Editors?"
193
+ msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
194
+
195
+ #: admin.inc.php:273
196
+ msgid "Disabling this option will stop editor visits being tracked."
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:276
200
  msgid "Display page views on Posts and Pages in Admin"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:279
204
  msgid ""
205
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
206
  "and All Pages"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:282
210
  #, fuzzy
211
  msgid "Show number of views to non-admins"
212
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
213
 
214
+ #: admin.inc.php:285
215
  msgid ""
216
  "If you disable this then non-admins won't see the above columns or view the "
217
  "independent pages with the top posts"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:288
221
  msgid "Link to Top 10 plugin page"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:291
225
  #, fuzzy
226
  msgid ""
227
  "A link to the plugin is added as an extra list item to the list of popular "
230
  "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
231
  "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
232
 
233
+ #: admin.inc.php:298
234
  #, fuzzy
235
  msgid "Output options"
236
  msgstr "Налады ўбудовы:"
237
 
238
+ #: admin.inc.php:301
239
  #, fuzzy
240
  msgid "Format to display the post views:"
241
  msgstr "Фармат адлюстравання колькасці праглядаў:"
242
 
243
+ #: admin.inc.php:303
244
  #, fuzzy
245
  msgid ""
246
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
252
  "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: "
253
  "<code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
254
 
255
+ #: admin.inc.php:306
256
  msgid "What do display when there are no visits?"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:308
260
  msgid ""
261
  "This text applies only when there are 0 hits for the post and it isn't a "
262
  "single page. e.g. if you display post views on the homepage or archives then "
264
  "option."
265
  msgstr ""
266
 
267
+ #: admin.inc.php:311
268
  msgid "Title of popular posts: "
269
  msgstr "Загаловак блока Папулярных запісаў:"
270
 
271
+ #: admin.inc.php:314
272
  msgid "Title of daily popular posts: "
273
  msgstr "Загаловак блока Папулярных сёння запісаў:"
274
 
275
+ #: admin.inc.php:317
276
  msgid "When there are no posts, what should be shown?"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:321
280
  msgid "Blank Output"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:325
284
  msgid "Display:"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:329
288
  msgid "Show post excerpt in list?"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:332
292
  msgid "Length of excerpt (in words): "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:335
296
  msgid "Show post author in list?"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:338
300
  msgid "Show post date in list?"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:341
304
  msgid "Limit post title length (in characters)"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:344
308
  msgid "Show view count in list?"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:347
312
  msgid "Always display latest post count in the daily lists?"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:349
316
  msgid ""
317
  "This option uses JavaScript and will increase your page load time. When you "
318
  "enable this option, the daily widget will not use the options set there, but "
319
  "options will need to be set on this screen."
320
  msgstr ""
321
 
322
+ #: admin.inc.php:352
323
  msgid "Open links in new window"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:355
327
  msgid "Add nofollow attribute to links in the list"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:358
331
  msgid "Exclude display of related posts on these posts / pages"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:364
335
  msgid "Customise the list HTML"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:366
339
  msgid "HTML to display before the list of posts: "
340
  msgstr ""
341
 
342
+ #: admin.inc.php:369
343
  msgid "HTML to display before each list item: "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:372
347
  #, fuzzy
348
  msgid "HTML to display after each list item: "
349
  msgstr "Фармат адлюстравання колькасці праглядаў:"
350
 
351
+ #: admin.inc.php:375
352
  msgid "HTML to display after the list of posts: "
353
  msgstr ""
354
 
355
+ #: admin.inc.php:378
356
  msgid "Post thumbnail options:"
357
  msgstr ""
358
 
359
+ #: admin.inc.php:380
360
  msgid "Location of post thumbnail:"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:384
364
  #, fuzzy
365
  msgid "Display thumbnails inline with posts, before title"
366
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
367
 
368
+ #: admin.inc.php:388
369
  #, fuzzy
370
  msgid "Display thumbnails inline with posts, after title"
371
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
372
 
373
+ #: admin.inc.php:392
374
  msgid "Display only thumbnails, no text"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:396
378
  msgid "Do not display thumbnails, only text."
379
  msgstr ""
380
 
381
+ #: admin.inc.php:400
382
  msgid "Width of the thumbnail: "
383
  msgstr ""
384
 
385
+ #: admin.inc.php:403
386
  msgid "Height of the thumbnail: "
387
  msgstr ""
388
 
389
+ #: admin.inc.php:406
390
  msgid "Style attributes / Width and Height HTML attributes:"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:410
394
  msgid "Style attributes are used for width and height."
395
  msgstr ""
396
 
397
+ #: admin.inc.php:414
398
  msgid "HTML width and height attributes are used for width and height."
399
  msgstr ""
400
 
401
+ #: admin.inc.php:418
402
  msgid "Use timthumb to generate thumbnails? "
403
  msgstr ""
404
 
405
+ #: admin.inc.php:421
406
  msgid ""
407
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
408
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
409
  msgstr ""
410
 
411
+ #: admin.inc.php:424
412
+ msgid "Quality of thumbnails generated by timthumb:"
413
+ msgstr ""
414
+
415
+ #: admin.inc.php:427
416
+ msgid ""
417
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
418
+ "file size. Suggested maximum value is 95. Default is 75."
419
+ msgstr ""
420
+
421
+ #: admin.inc.php:430
422
  msgid "Post thumbnail meta field name: "
423
  msgstr ""
424
 
425
+ #: admin.inc.php:433
426
  msgid ""
427
  "The value of this field should contain the image source and is set in the "
428
  "<em>Add New Post</em> screen"
429
  msgstr ""
430
 
431
+ #: admin.inc.php:436
432
  msgid ""
433
  "If the postmeta is not set, then should the plugin extract the first image "
434
  "from the post?"
435
  msgstr ""
436
 
437
+ #: admin.inc.php:439
438
  msgid ""
439
  "This could slow down the loading of your page if the first image in the "
440
  "related posts is large in file-size"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:442
444
  msgid "Use default thumbnail? "
445
  msgstr ""
446
 
447
+ #: admin.inc.php:445
448
  msgid ""
449
  "If checked, when no thumbnail is found, show a default one from the URL "
450
  "below. If not checked and no thumbnail is found, no image will be shown."
451
  msgstr ""
452
 
453
+ #: admin.inc.php:448
454
  msgid "Default thumbnail: "
455
  msgstr ""
456
 
457
+ #: admin.inc.php:452
458
  msgid ""
459
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
460
  "then it will check the meta field. If this is not available, then it will "
461
  "show the default image as specified above"
462
  msgstr ""
463
 
464
+ #: admin.inc.php:459
465
  msgid "Custom CSS"
466
  msgstr ""
467
 
468
+ #: admin.inc.php:462
469
  msgid "Use default style included in the plugin?"
470
  msgstr ""
471
 
472
+ #: admin.inc.php:465
473
  msgid ""
474
  "Top 10 includes a default style that makes your popular posts list to look "
475
  "pretty. Check the box above if you want to use this. You will need to select "
477
  "Widget."
478
  msgstr ""
479
 
480
+ #: admin.inc.php:468
481
  msgid "Custom CSS to add to header:"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:471
485
  msgid ""
486
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
487
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
488
  "available CSS classes to style."
489
  msgstr ""
490
 
491
+ #: admin.inc.php:478 admin.inc.php:544
492
  #, fuzzy
493
  msgid "Save Options"
494
  msgstr "Налады ўбудовы:"
495
 
496
+ #: admin.inc.php:479
497
  #, fuzzy
498
  msgid "Default Options"
499
  msgstr "Налады ўбудовы:"
500
 
501
+ #: admin.inc.php:479
502
  msgid "Do you want to set options to Default?"
503
  msgstr "Скінуць налады ўбудовы?"
504
 
505
+ #: admin.inc.php:488
506
  msgid "Maintenance"
507
  msgstr ""
508
 
509
+ #: admin.inc.php:492
510
  msgid ""
511
  "Over time the Daily Top 10 database grows in size, which reduces the "
512
  "performance of the plugin. Cleaning the database at regular intervals could "
514
  "will automatically delete entries older than 90 days."
515
  msgstr ""
516
 
517
+ #: admin.inc.php:493
518
  msgid ""
519
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
520
  "everytime the job is rescheduled (i.e. you change the settings below)."
521
  msgstr ""
522
 
523
+ #: admin.inc.php:496
524
  msgid "Enable scheduled maintenance of daily tables:"
525
  msgstr ""
526
 
527
+ #: admin.inc.php:500
528
  msgid "Time to run maintenance"
529
  msgstr ""
530
 
531
+ #: admin.inc.php:501
532
  msgid "hrs"
533
  msgstr ""
534
 
535
+ #: admin.inc.php:501
536
  msgid "min"
537
  msgstr ""
538
 
539
+ #: admin.inc.php:503
540
  msgid "How often should the maintenance be run:"
541
  msgstr ""
542
 
543
+ #: admin.inc.php:507
544
  msgid "Daily"
545
  msgstr ""
546
 
547
+ #: admin.inc.php:511
548
  msgid "Weekly"
549
  msgstr ""
550
 
551
+ #: admin.inc.php:515
552
  msgid "Fortnightly"
553
  msgstr ""
554
 
555
+ #: admin.inc.php:519
556
  msgid "Monthly"
557
  msgstr ""
558
 
559
+ #: admin.inc.php:528
560
  msgid "The cron job has been scheduled. Maintenance will run "
561
  msgstr ""
562
 
563
+ #: admin.inc.php:533
564
  msgid "The cron job is missing. Please resave this page to add the job"
565
  msgstr ""
566
 
567
+ #: admin.inc.php:538
568
  msgid "Maintenance is turned off"
569
  msgstr ""
570
 
571
+ #: admin.inc.php:552
572
  msgid "Reset count"
573
  msgstr ""
574
 
575
+ #: admin.inc.php:555
576
  msgid ""
577
  "This cannot be reversed. Make sure that your database has been backed up "
578
  "before proceeding"
579
  msgstr ""
580
 
581
+ #: admin.inc.php:558
582
  #, fuzzy
583
  msgid "Reset Popular Posts"
584
  msgstr "Папулярныя запісы"
585
 
586
+ #: admin.inc.php:558
587
  msgid "Are you sure you want to reset the popular posts?"
588
  msgstr ""
589
 
590
+ #: admin.inc.php:559
591
  #, fuzzy
592
  msgid "Reset Daily Popular Posts"
593
  msgstr "Папулярныя сёння запісы"
594
 
595
+ #: admin.inc.php:559
596
  msgid "Are you sure you want to reset the daily popular posts?"
597
  msgstr ""
598
 
599
+ #: admin.inc.php:560
600
  msgid "Clear duplicates"
601
  msgstr ""
602
 
603
+ #: admin.inc.php:560
604
  msgid "This will delete the duplicate entries in the tables. Proceed?"
605
  msgstr ""
606
 
607
+ #: admin.inc.php:612 admin.inc.php:1010
608
  msgid "Popular Posts"
609
  msgstr "Папулярныя запісы"
610
 
611
+ #: admin.inc.php:614 admin.inc.php:713
612
  msgid "Daily Popular Posts"
613
  msgstr "Папулярныя сёння запісы"
614
 
615
+ #: admin.inc.php:645
616
  #, fuzzy
617
  msgid "Support the development"
618
  msgstr "Падтрымаеце стваральніка ўбудовы"
619
 
620
+ #: admin.inc.php:652
621
+ msgid "Donation for Top 10"
622
+ msgstr ""
623
+
624
+ #: admin.inc.php:654
625
  msgid "Enter amount in USD: "
626
  msgstr ""
627
 
628
+ #: admin.inc.php:658
629
+ msgid "Send your donation to the author of Top 10"
630
  msgstr ""
631
 
632
+ #: admin.inc.php:665
633
  msgid "Follow me"
634
  msgstr ""
635
 
636
+ #: admin.inc.php:675
637
  msgid "Quick links"
638
  msgstr ""
639
 
640
+ #: admin.inc.php:679
641
  msgid "Top 10 plugin page"
642
  msgstr ""
643
 
644
+ #: admin.inc.php:680
645
  msgid "Other plugins"
646
  msgstr ""
647
 
648
+ #: admin.inc.php:681
649
  msgid "Ajay's blog"
650
  msgstr ""
651
 
652
+ #: admin.inc.php:682
653
  msgid "FAQ"
654
  msgstr ""
655
 
656
+ #: admin.inc.php:683 top-10.php:1345
657
  msgid "Support"
658
  msgstr ""
659
 
660
+ #: admin.inc.php:684
661
  msgid "Reviews"
662
  msgstr ""
663
 
664
+ #: admin.inc.php:704 admin.inc.php:707
665
  #, fuzzy
666
  msgid "Top 10 Settings"
667
  msgstr "Топ 10 запісаў"
668
 
669
+ #: admin.inc.php:704 admin.inc.php:1183
670
  msgid "Top 10"
671
  msgstr "Топ 10 запісаў"
672
 
673
+ #: admin.inc.php:710
674
  #, fuzzy
675
  msgid "Overall Popular Posts"
676
  msgstr "Паглядзець усе Папулярныя запісы"
677
 
678
+ #: admin.inc.php:882
679
  #, php-format
680
  msgid "Results %1$s to %2$s of %3$s"
681
  msgstr ""
682
 
683
+ #: admin.inc.php:886
684
  #, php-format
685
  msgid "Page %s of %s"
686
  msgstr ""
687
 
688
+ #: admin.inc.php:898
689
  msgid "View Daily Popular Posts"
690
  msgstr "Паглядзець усе Папулярныя сёння запісы"
691
 
692
+ #: admin.inc.php:901 admin.inc.php:914
693
  msgid "Results per-page:"
694
  msgstr "Вынікаў на старонку:"
695
 
696
+ #: admin.inc.php:911
697
  msgid "View Overall Popular Posts"
698
  msgstr "Паглядзець усе Папулярныя запісы"
699
 
700
+ #: admin.inc.php:940
701
  msgid "Previous"
702
  msgstr "Папярэдняя старонка"
703
 
704
+ #: admin.inc.php:968
705
  msgid "Next"
706
  msgstr "Наступная старонка"
707
 
708
+ #: admin.inc.php:1011
709
  msgid "Daily Popular"
710
  msgstr "Папулярныя сёння запісы"
711
 
712
+ #: admin.inc.php:1029
713
  #, fuzzy
714
  msgid "Total Views"
715
  msgstr "Усяго / Сёння праглядаў"
716
 
717
+ #: admin.inc.php:1030
718
  #, fuzzy
719
  msgid "Today's Views"
720
  msgstr "Усяго / Сёння праглядаў"
721
 
722
+ #: admin.inc.php:1031
723
  #, fuzzy
724
  msgid "Views"
725
  msgstr "Усяго / Сёння праглядаў"
726
 
727
+ #: admin.inc.php:1217
728
+ msgid "Visit count:"
729
+ msgstr ""
730
+
731
+ #: admin.inc.php:1219
732
+ msgid ""
733
+ "Enter a number above to update the visit count. Leaving the above box blank "
734
+ "will set the count to zero"
735
+ msgstr ""
736
+
737
+ #: admin.inc.php:1229
738
+ msgid "Location of thumbnail:"
739
  msgstr ""
740
 
741
+ #: admin.inc.php:1231
742
+ msgid ""
743
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
744
+ "image will be used for the post. It will be resized to the thumbnail size "
745
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
746
  msgstr ""
747
 
748
+ #: admin.inc.php:1232
749
+ msgid "The URL above is saved in the meta field: "
750
+ msgstr ""
751
+
752
+ #: top-10.php:456
753
+ msgid " by "
754
+ msgstr ""
755
+
756
+ #: top-10.php:550
757
  #, fuzzy
758
  msgid "Popular Posts [Top 10]"
759
  msgstr "Папулярныя запісы"
760
 
761
+ #: top-10.php:551
762
+ #, fuzzy
763
+ msgid "Display popular posts"
764
+ msgstr "Папулярныя сёння запісы"
765
+
766
+ #: top-10.php:577
767
  msgid "Title"
768
  msgstr ""
769
 
770
+ #: top-10.php:582
771
  msgid "No. of posts"
772
  msgstr ""
773
 
774
+ #: top-10.php:587
775
  msgid "Overall"
776
  msgstr ""
777
 
778
+ #: top-10.php:588
779
  msgid "Custom time period (Enter below)"
780
  msgstr ""
781
 
782
+ #: top-10.php:593
783
  msgid "Range in number of days (applies only to custom option above)"
784
  msgstr ""
785
 
786
+ #: top-10.php:598
787
+ msgid "Show count?"
788
  msgstr ""
789
 
790
+ #: top-10.php:603
791
+ msgid "Show excerpt?"
792
  msgstr ""
793
 
794
+ #: top-10.php:608
795
+ msgid "Show author?"
796
  msgstr ""
797
 
798
+ #: top-10.php:613
799
+ msgid "Show date?"
800
  msgstr ""
801
 
802
+ #: top-10.php:617
803
  msgid "Thumbnail options"
804
  msgstr ""
805
 
806
+ #: top-10.php:619
807
  #, fuzzy
808
  msgid "Thumbnails inline, before title"
809
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
810
 
811
+ #: top-10.php:620
812
  #, fuzzy
813
  msgid "Thumbnails inline, after title"
814
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
815
 
816
+ #: top-10.php:621
817
  msgid "Only thumbnails, no text"
818
  msgstr ""
819
 
820
+ #: top-10.php:622
821
  msgid "No thumbnails, only text."
822
  msgstr ""
823
 
824
+ #: top-10.php:627
825
  msgid "Thumbnail height"
826
  msgstr ""
827
 
828
+ #: top-10.php:632
829
  msgid "Thumbnail width"
830
  msgstr ""
831
 
832
+ #: top-10.php:772
833
  msgid "<h3>Popular Posts</h3>"
834
  msgstr "<h3>Папулярныя запісы</h3>"
835
 
836
+ #: top-10.php:773
837
  msgid "<h3>Daily Popular</h3>"
838
  msgstr "<h3>Папулярныя сёння запісы</h3>"
839
 
840
+ #: top-10.php:774
841
  #, fuzzy
842
  msgid "No top posts yet"
843
  msgstr "Загаловак блока Папулярных запісаў:"
844
 
845
+ #: top-10.php:1245
846
  msgid "Once Weekly"
847
  msgstr ""
848
 
849
+ #: top-10.php:1249
850
  msgid "Once Fortnightly"
851
  msgstr ""
852
 
853
+ #: top-10.php:1253
854
  msgid "Once Monthly"
855
  msgstr ""
856
 
857
+ #: top-10.php:1323
858
  msgid "Settings"
859
  msgstr ""
860
 
861
+ #: top-10.php:1346
862
  msgid "Donate"
863
  msgstr ""
864
 
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: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,210 +12,223 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr ""
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr ""
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr ""
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
 
83
- #: admin.inc.php:200
84
  msgid ""
85
  "Instead of displaying popular posts fromt he past day, this setting lets you "
86
  "display posts for as many days as you want. This can be overridden in the "
87
  "widget."
88
  msgstr ""
89
 
90
- #: admin.inc.php:203
91
  msgid "Post types to include in results (including custom post types)"
92
  msgstr ""
93
 
94
- #: admin.inc.php:214
95
  msgid "List of post or page IDs to exclude from the results: "
96
  msgstr ""
97
 
98
- #: admin.inc.php:216 admin.inc.php:352
99
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
100
  msgstr ""
101
 
102
- #: admin.inc.php:220
103
  msgid "Exclude Categories: "
104
  msgstr ""
105
 
106
- #: admin.inc.php:235
107
  msgid ""
108
  "Comma separated list of category slugs. The field above has an autocomplete "
109
  "so simply start typing in the starting letters and it will prompt you with "
110
  "options"
111
  msgstr ""
112
 
113
- #: admin.inc.php:240
114
  msgid "Display number of views on:"
115
  msgstr ""
116
 
117
- #: admin.inc.php:242
118
  msgid "Posts"
119
  msgstr ""
120
 
121
- #: admin.inc.php:243
122
  msgid "Pages"
123
  msgstr ""
124
 
125
- #: admin.inc.php:244
126
  msgid "Home page"
127
  msgstr ""
128
 
129
- #: admin.inc.php:245
130
  msgid "Feeds"
131
  msgstr ""
132
 
133
- #: admin.inc.php:246
134
  msgid "Category archives"
135
  msgstr ""
136
 
137
- #: admin.inc.php:247
138
  msgid "Tag archives"
139
  msgstr ""
140
 
141
- #: admin.inc.php:248
142
  msgid "Other archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:249
146
  msgid ""
147
- "If you choose to disable this, please add <code>&lt;?php "
148
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
149
- "template file where you want it displayed"
150
  msgstr ""
151
 
152
- #: admin.inc.php:252
153
  msgid "Always display latest post count"
154
  msgstr ""
155
 
156
- #: admin.inc.php:254
157
  msgid ""
158
  "This option uses JavaScript and will increase your page load time. Turn this "
159
  "off if you are not using caching plugins or are OK with displaying older "
160
  "cached counts."
161
  msgstr ""
162
 
163
- #: admin.inc.php:257
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr ""
166
 
167
- #: admin.inc.php:259
168
  msgid ""
169
  "Disabling this option will stop authors visits tracked on their own posts"
170
  msgstr ""
171
 
172
- #: admin.inc.php:262
173
  msgid "Track visits of admins?"
174
  msgstr ""
175
 
176
- #: admin.inc.php:264
177
  msgid "Disabling this option will stop admin visits being tracked."
178
  msgstr ""
179
 
180
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
181
  msgid "Display page views on Posts and Pages in Admin"
182
  msgstr ""
183
 
184
- #: admin.inc.php:270
185
  msgid ""
186
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
187
  "and All Pages"
188
  msgstr ""
189
 
190
- #: admin.inc.php:273
191
  msgid "Show number of views to non-admins"
192
  msgstr ""
193
 
194
- #: admin.inc.php:276
195
  msgid ""
196
  "If you disable this then non-admins won't see the above columns or view the "
197
  "independent pages with the top posts"
198
  msgstr ""
199
 
200
- #: admin.inc.php:279
201
  msgid "Link to Top 10 plugin page"
202
  msgstr ""
203
 
204
- #: admin.inc.php:282
205
  msgid ""
206
  "A link to the plugin is added as an extra list item to the list of popular "
207
  "posts"
208
  msgstr ""
209
 
210
- #: admin.inc.php:289
211
  msgid "Output options"
212
  msgstr ""
213
 
214
- #: admin.inc.php:292
215
  msgid "Format to display the post views:"
216
  msgstr ""
217
 
218
- #: admin.inc.php:294
219
  msgid ""
220
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
221
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -223,11 +236,11 @@ msgid ""
223
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
224
  msgstr ""
225
 
226
- #: admin.inc.php:297
227
  msgid "What do display when there are no visits?"
228
  msgstr ""
229
 
230
- #: admin.inc.php:299
231
  msgid ""
232
  "This text applies only when there are 0 hits for the post and it isn't a "
233
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -235,199 +248,209 @@ msgid ""
235
  "option."
236
  msgstr ""
237
 
238
- #: admin.inc.php:302
239
  msgid "Title of popular posts: "
240
  msgstr ""
241
 
242
- #: admin.inc.php:305
243
  msgid "Title of daily popular posts: "
244
  msgstr ""
245
 
246
- #: admin.inc.php:308
247
  msgid "When there are no posts, what should be shown?"
248
  msgstr ""
249
 
250
- #: admin.inc.php:312
251
  msgid "Blank Output"
252
  msgstr ""
253
 
254
- #: admin.inc.php:316
255
  msgid "Display:"
256
  msgstr ""
257
 
258
- #: admin.inc.php:320
259
  msgid "Show post excerpt in list?"
260
  msgstr ""
261
 
262
- #: admin.inc.php:323
263
  msgid "Length of excerpt (in words): "
264
  msgstr ""
265
 
266
- #: admin.inc.php:326
267
  msgid "Show post author in list?"
268
  msgstr ""
269
 
270
- #: admin.inc.php:329
271
  msgid "Show post date in list?"
272
  msgstr ""
273
 
274
- #: admin.inc.php:332
275
  msgid "Limit post title length (in characters)"
276
  msgstr ""
277
 
278
- #: admin.inc.php:335
279
  msgid "Show view count in list?"
280
  msgstr ""
281
 
282
- #: admin.inc.php:338
283
  msgid "Always display latest post count in the daily lists?"
284
  msgstr ""
285
 
286
- #: admin.inc.php:340
287
  msgid ""
288
  "This option uses JavaScript and will increase your page load time. When you "
289
  "enable this option, the daily widget will not use the options set there, but "
290
  "options will need to be set on this screen."
291
  msgstr ""
292
 
293
- #: admin.inc.php:343
294
  msgid "Open links in new window"
295
  msgstr ""
296
 
297
- #: admin.inc.php:346
298
  msgid "Add nofollow attribute to links in the list"
299
  msgstr ""
300
 
301
- #: admin.inc.php:349
302
  msgid "Exclude display of related posts on these posts / pages"
303
  msgstr ""
304
 
305
- #: admin.inc.php:355
306
  msgid "Customise the list HTML"
307
  msgstr ""
308
 
309
- #: admin.inc.php:357
310
  msgid "HTML to display before the list of posts: "
311
  msgstr ""
312
 
313
- #: admin.inc.php:360
314
  msgid "HTML to display before each list item: "
315
  msgstr ""
316
 
317
- #: admin.inc.php:363
318
  msgid "HTML to display after each list item: "
319
  msgstr ""
320
 
321
- #: admin.inc.php:366
322
  msgid "HTML to display after the list of posts: "
323
  msgstr ""
324
 
325
- #: admin.inc.php:369
326
  msgid "Post thumbnail options:"
327
  msgstr ""
328
 
329
- #: admin.inc.php:371
330
  msgid "Location of post thumbnail:"
331
  msgstr ""
332
 
333
- #: admin.inc.php:375
334
  msgid "Display thumbnails inline with posts, before title"
335
  msgstr ""
336
 
337
- #: admin.inc.php:379
338
  msgid "Display thumbnails inline with posts, after title"
339
  msgstr ""
340
 
341
- #: admin.inc.php:383
342
  msgid "Display only thumbnails, no text"
343
  msgstr ""
344
 
345
- #: admin.inc.php:387
346
  msgid "Do not display thumbnails, only text."
347
  msgstr ""
348
 
349
- #: admin.inc.php:391
350
  msgid "Width of the thumbnail: "
351
  msgstr ""
352
 
353
- #: admin.inc.php:394
354
  msgid "Height of the thumbnail: "
355
  msgstr ""
356
 
357
- #: admin.inc.php:397
358
  msgid "Style attributes / Width and Height HTML attributes:"
359
  msgstr ""
360
 
361
- #: admin.inc.php:401
362
  msgid "Style attributes are used for width and height."
363
  msgstr ""
364
 
365
- #: admin.inc.php:405
366
  msgid "HTML width and height attributes are used for width and height."
367
  msgstr ""
368
 
369
- #: admin.inc.php:409
370
  msgid "Use timthumb to generate thumbnails? "
371
  msgstr ""
372
 
373
- #: admin.inc.php:412
374
  msgid ""
375
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
376
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
377
  msgstr ""
378
 
379
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
380
  msgid "Post thumbnail meta field name: "
381
  msgstr ""
382
 
383
- #: admin.inc.php:418
384
  msgid ""
385
  "The value of this field should contain the image source and is set in the "
386
  "<em>Add New Post</em> screen"
387
  msgstr ""
388
 
389
- #: admin.inc.php:421
390
  msgid ""
391
  "If the postmeta is not set, then should the plugin extract the first image "
392
  "from the post?"
393
  msgstr ""
394
 
395
- #: admin.inc.php:424
396
  msgid ""
397
  "This could slow down the loading of your page if the first image in the "
398
  "related posts is large in file-size"
399
  msgstr ""
400
 
401
- #: admin.inc.php:427
402
  msgid "Use default thumbnail? "
403
  msgstr ""
404
 
405
- #: admin.inc.php:430
406
  msgid ""
407
  "If checked, when no thumbnail is found, show a default one from the URL "
408
  "below. If not checked and no thumbnail is found, no image will be shown."
409
  msgstr ""
410
 
411
- #: admin.inc.php:433
412
  msgid "Default thumbnail: "
413
  msgstr ""
414
 
415
- #: admin.inc.php:437
416
  msgid ""
417
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
418
  "then it will check the meta field. If this is not available, then it will "
419
  "show the default image as specified above"
420
  msgstr ""
421
 
422
- #: admin.inc.php:444
423
  msgid "Custom CSS"
424
  msgstr ""
425
 
426
- #: admin.inc.php:447
427
  msgid "Use default style included in the plugin?"
428
  msgstr ""
429
 
430
- #: admin.inc.php:450
431
  msgid ""
432
  "Top 10 includes a default style that makes your popular posts list to look "
433
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -435,34 +458,34 @@ msgid ""
435
  "Widget."
436
  msgstr ""
437
 
438
- #: admin.inc.php:453
439
  msgid "Custom CSS to add to header:"
440
  msgstr ""
441
 
442
- #: admin.inc.php:456
443
  msgid ""
444
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
445
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
446
  "available CSS classes to style."
447
  msgstr ""
448
 
449
- #: admin.inc.php:463 admin.inc.php:529
450
  msgid "Save Options"
451
  msgstr ""
452
 
453
- #: admin.inc.php:464
454
  msgid "Default Options"
455
  msgstr ""
456
 
457
- #: admin.inc.php:464
458
  msgid "Do you want to set options to Default?"
459
  msgstr ""
460
 
461
- #: admin.inc.php:473
462
  msgid "Maintenance"
463
  msgstr ""
464
 
465
- #: admin.inc.php:477
466
  msgid ""
467
  "Over time the Daily Top 10 database grows in size, which reduces the "
468
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -470,308 +493,337 @@ msgid ""
470
  "will automatically delete entries older than 90 days."
471
  msgstr ""
472
 
473
- #: admin.inc.php:478
474
  msgid ""
475
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
476
  "everytime the job is rescheduled (i.e. you change the settings below)."
477
  msgstr ""
478
 
479
- #: admin.inc.php:481
480
  msgid "Enable scheduled maintenance of daily tables:"
481
  msgstr ""
482
 
483
- #: admin.inc.php:485
484
  msgid "Time to run maintenance"
485
  msgstr ""
486
 
487
- #: admin.inc.php:486
488
  msgid "hrs"
489
  msgstr ""
490
 
491
- #: admin.inc.php:486
492
  msgid "min"
493
  msgstr ""
494
 
495
- #: admin.inc.php:488
496
  msgid "How often should the maintenance be run:"
497
  msgstr ""
498
 
499
- #: admin.inc.php:492
500
  msgid "Daily"
501
  msgstr ""
502
 
503
- #: admin.inc.php:496
504
  msgid "Weekly"
505
  msgstr ""
506
 
507
- #: admin.inc.php:500
508
  msgid "Fortnightly"
509
  msgstr ""
510
 
511
- #: admin.inc.php:504
512
  msgid "Monthly"
513
  msgstr ""
514
 
515
- #: admin.inc.php:513
516
  msgid "The cron job has been scheduled. Maintenance will run "
517
  msgstr ""
518
 
519
- #: admin.inc.php:518
520
  msgid "The cron job is missing. Please resave this page to add the job"
521
  msgstr ""
522
 
523
- #: admin.inc.php:523
524
  msgid "Maintenance is turned off"
525
  msgstr ""
526
 
527
- #: admin.inc.php:537
528
  msgid "Reset count"
529
  msgstr ""
530
 
531
- #: admin.inc.php:540
532
  msgid ""
533
  "This cannot be reversed. Make sure that your database has been backed up "
534
  "before proceeding"
535
  msgstr ""
536
 
537
- #: admin.inc.php:543
538
  msgid "Reset Popular Posts"
539
  msgstr ""
540
 
541
- #: admin.inc.php:543
542
  msgid "Are you sure you want to reset the popular posts?"
543
  msgstr ""
544
 
545
- #: admin.inc.php:544
546
  msgid "Reset Daily Popular Posts"
547
  msgstr ""
548
 
549
- #: admin.inc.php:544
550
  msgid "Are you sure you want to reset the daily popular posts?"
551
  msgstr ""
552
 
553
- #: admin.inc.php:545
554
  msgid "Clear duplicates"
555
  msgstr ""
556
 
557
- #: admin.inc.php:545
558
  msgid "This will delete the duplicate entries in the tables. Proceed?"
559
  msgstr ""
560
 
561
- #: admin.inc.php:593 admin.inc.php:979
562
  msgid "Popular Posts"
563
  msgstr ""
564
 
565
- #: admin.inc.php:593 admin.inc.php:688
566
  msgid "Daily Popular Posts"
567
  msgstr ""
568
 
569
- #: admin.inc.php:621
570
  msgid "Support the development"
571
  msgstr ""
572
 
573
- #: admin.inc.php:630
 
 
 
 
574
  msgid "Enter amount in USD: "
575
  msgstr ""
576
 
577
- #: admin.inc.php:634
578
- msgid "Send your donation to the author of"
579
  msgstr ""
580
 
581
- #: admin.inc.php:641
582
  msgid "Follow me"
583
  msgstr ""
584
 
585
- #: admin.inc.php:651
586
  msgid "Quick links"
587
  msgstr ""
588
 
589
- #: admin.inc.php:655
590
  msgid "Top 10 plugin page"
591
  msgstr ""
592
 
593
- #: admin.inc.php:656
594
  msgid "Other plugins"
595
  msgstr ""
596
 
597
- #: admin.inc.php:657
598
  msgid "Ajay's blog"
599
  msgstr ""
600
 
601
- #: admin.inc.php:658
602
  msgid "FAQ"
603
  msgstr ""
604
 
605
- #: admin.inc.php:659 top-10.php:1267
606
  msgid "Support"
607
  msgstr ""
608
 
609
- #: admin.inc.php:660
610
  msgid "Reviews"
611
  msgstr ""
612
 
613
- #: admin.inc.php:679 admin.inc.php:682
614
  msgid "Top 10 Settings"
615
  msgstr ""
616
 
617
- #: admin.inc.php:679
618
  msgid "Top 10"
619
  msgstr ""
620
 
621
- #: admin.inc.php:685
622
  msgid "Overall Popular Posts"
623
  msgstr ""
624
 
625
- #: admin.inc.php:850
626
  #, php-format
627
  msgid "Results %1$s to %2$s of %3$s"
628
  msgstr ""
629
 
630
- #: admin.inc.php:854
631
  #, php-format
632
  msgid "Page %s of %s"
633
  msgstr ""
634
 
635
- #: admin.inc.php:866
636
  msgid "View Daily Popular Posts"
637
  msgstr ""
638
 
639
- #: admin.inc.php:869 admin.inc.php:882
640
  msgid "Results per-page:"
641
  msgstr ""
642
 
643
- #: admin.inc.php:879
644
  msgid "View Overall Popular Posts"
645
  msgstr ""
646
 
647
- #: admin.inc.php:908
648
  msgid "Previous"
649
  msgstr ""
650
 
651
- #: admin.inc.php:936
652
  msgid "Next"
653
  msgstr ""
654
 
655
- #: admin.inc.php:980
656
  msgid "Daily Popular"
657
  msgstr ""
658
 
659
- #: admin.inc.php:998
660
  msgid "Total Views"
661
  msgstr ""
662
 
663
- #: admin.inc.php:999
664
  msgid "Today's Views"
665
  msgstr ""
666
 
667
- #: admin.inc.php:1000
668
  msgid "Views"
669
  msgstr ""
670
 
671
- #: top-10.php:438
672
- msgid " by "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
673
  msgstr ""
674
 
675
- #: top-10.php:524
676
- msgid "Display the posts popular this week"
677
  msgstr ""
678
 
679
- #: top-10.php:525
 
 
 
 
680
  msgid "Popular Posts [Top 10]"
681
  msgstr ""
682
 
683
- #: top-10.php:543
 
 
 
 
684
  msgid "Title"
685
  msgstr ""
686
 
687
- #: top-10.php:548
688
  msgid "No. of posts"
689
  msgstr ""
690
 
691
- #: top-10.php:553
692
  msgid "Overall"
693
  msgstr ""
694
 
695
- #: top-10.php:554
696
  msgid "Custom time period (Enter below)"
697
  msgstr ""
698
 
699
- #: top-10.php:559
700
  msgid "Range in number of days (applies only to custom option above)"
701
  msgstr ""
702
 
703
- #: top-10.php:564
704
- msgid " Show count?"
705
  msgstr ""
706
 
707
- #: top-10.php:569
708
- msgid " Show excerpt?"
709
  msgstr ""
710
 
711
- #: top-10.php:574
712
- msgid " Show author?"
713
  msgstr ""
714
 
715
- #: top-10.php:579
716
- msgid " Show date?"
717
  msgstr ""
718
 
719
- #: top-10.php:583
720
  msgid "Thumbnail options"
721
  msgstr ""
722
 
723
- #: top-10.php:585
724
  msgid "Thumbnails inline, before title"
725
  msgstr ""
726
 
727
- #: top-10.php:586
728
  msgid "Thumbnails inline, after title"
729
  msgstr ""
730
 
731
- #: top-10.php:587
732
  msgid "Only thumbnails, no text"
733
  msgstr ""
734
 
735
- #: top-10.php:588
736
  msgid "No thumbnails, only text."
737
  msgstr ""
738
 
739
- #: top-10.php:593
740
  msgid "Thumbnail height"
741
  msgstr ""
742
 
743
- #: top-10.php:598
744
  msgid "Thumbnail width"
745
  msgstr ""
746
 
747
- #: top-10.php:719
748
  msgid "<h3>Popular Posts</h3>"
749
  msgstr ""
750
 
751
- #: top-10.php:720
752
  msgid "<h3>Daily Popular</h3>"
753
  msgstr ""
754
 
755
- #: top-10.php:721
756
  msgid "No top posts yet"
757
  msgstr ""
758
 
759
- #: top-10.php:1184
760
  msgid "Once Weekly"
761
  msgstr ""
762
 
763
- #: top-10.php:1188
764
  msgid "Once Fortnightly"
765
  msgstr ""
766
 
767
- #: top-10.php:1192
768
  msgid "Once Monthly"
769
  msgstr ""
770
 
771
- #: top-10.php:1255
772
  msgid "Settings"
773
  msgstr ""
774
 
775
- #: top-10.php:1268
776
  msgid "Donate"
777
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr ""
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:204
89
  msgid ""
90
  "Instead of displaying popular posts fromt he past day, this setting lets you "
91
  "display posts for as many days as you want. This can be overridden in the "
92
  "widget."
93
  msgstr ""
94
 
95
+ #: admin.inc.php:207
96
  msgid "Post types to include in results (including custom post types)"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:218
100
  msgid "List of post or page IDs to exclude from the results: "
101
  msgstr ""
102
 
103
+ #: admin.inc.php:220 admin.inc.php:361
104
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:224
108
  msgid "Exclude Categories: "
109
  msgstr ""
110
 
111
+ #: admin.inc.php:239
112
  msgid ""
113
  "Comma separated list of category slugs. The field above has an autocomplete "
114
  "so simply start typing in the starting letters and it will prompt you with "
115
  "options"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:244
119
  msgid "Display number of views on:"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:246
123
  msgid "Posts"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:247
127
  msgid "Pages"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:248
131
  msgid "Home page"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:249
135
  msgid "Feeds"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:250
139
  msgid "Category archives"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:251
143
  msgid "Tag archives"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:252
147
  msgid "Other archives"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:253
151
  msgid ""
152
+ "If you choose to disable this, please add <code>&lt;?php if "
153
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
154
+ "</code> to your template file where you want it displayed"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:256
158
  msgid "Always display latest post count"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:258
162
  msgid ""
163
  "This option uses JavaScript and will increase your page load time. Turn this "
164
  "off if you are not using caching plugins or are OK with displaying older "
165
  "cached counts."
166
  msgstr ""
167
 
168
+ #: admin.inc.php:261
169
  msgid "Track visits of authors on their own posts?"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:263
173
  msgid ""
174
  "Disabling this option will stop authors visits tracked on their own posts"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:266
178
  msgid "Track visits of admins?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:268
182
  msgid "Disabling this option will stop admin visits being tracked."
183
  msgstr ""
184
 
185
+ #: admin.inc.php:271
186
+ msgid "Track visits of Editors?"
187
+ msgstr ""
188
+
189
+ #: admin.inc.php:273
190
+ msgid "Disabling this option will stop editor visits being tracked."
191
+ msgstr ""
192
+
193
+ #: admin.inc.php:276
194
  msgid "Display page views on Posts and Pages in Admin"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:279
198
  msgid ""
199
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
200
  "and All Pages"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:282
204
  msgid "Show number of views to non-admins"
205
  msgstr ""
206
 
207
+ #: admin.inc.php:285
208
  msgid ""
209
  "If you disable this then non-admins won't see the above columns or view the "
210
  "independent pages with the top posts"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:288
214
  msgid "Link to Top 10 plugin page"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:291
218
  msgid ""
219
  "A link to the plugin is added as an extra list item to the list of popular "
220
  "posts"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:298
224
  msgid "Output options"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:301
228
  msgid "Format to display the post views:"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:303
232
  msgid ""
233
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
234
  "%</code> to display the daily count and <code>%overallcount%</code> to "
236
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:306
240
  msgid "What do display when there are no visits?"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:308
244
  msgid ""
245
  "This text applies only when there are 0 hits for the post and it isn't a "
246
  "single page. e.g. if you display post views on the homepage or archives then "
248
  "option."
249
  msgstr ""
250
 
251
+ #: admin.inc.php:311
252
  msgid "Title of popular posts: "
253
  msgstr ""
254
 
255
+ #: admin.inc.php:314
256
  msgid "Title of daily popular posts: "
257
  msgstr ""
258
 
259
+ #: admin.inc.php:317
260
  msgid "When there are no posts, what should be shown?"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:321
264
  msgid "Blank Output"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:325
268
  msgid "Display:"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:329
272
  msgid "Show post excerpt in list?"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:332
276
  msgid "Length of excerpt (in words): "
277
  msgstr ""
278
 
279
+ #: admin.inc.php:335
280
  msgid "Show post author in list?"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:338
284
  msgid "Show post date in list?"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:341
288
  msgid "Limit post title length (in characters)"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:344
292
  msgid "Show view count in list?"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:347
296
  msgid "Always display latest post count in the daily lists?"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:349
300
  msgid ""
301
  "This option uses JavaScript and will increase your page load time. When you "
302
  "enable this option, the daily widget will not use the options set there, but "
303
  "options will need to be set on this screen."
304
  msgstr ""
305
 
306
+ #: admin.inc.php:352
307
  msgid "Open links in new window"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:355
311
  msgid "Add nofollow attribute to links in the list"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:358
315
  msgid "Exclude display of related posts on these posts / pages"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:364
319
  msgid "Customise the list HTML"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:366
323
  msgid "HTML to display before the list of posts: "
324
  msgstr ""
325
 
326
+ #: admin.inc.php:369
327
  msgid "HTML to display before each list item: "
328
  msgstr ""
329
 
330
+ #: admin.inc.php:372
331
  msgid "HTML to display after each list item: "
332
  msgstr ""
333
 
334
+ #: admin.inc.php:375
335
  msgid "HTML to display after the list of posts: "
336
  msgstr ""
337
 
338
+ #: admin.inc.php:378
339
  msgid "Post thumbnail options:"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:380
343
  msgid "Location of post thumbnail:"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:384
347
  msgid "Display thumbnails inline with posts, before title"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:388
351
  msgid "Display thumbnails inline with posts, after title"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:392
355
  msgid "Display only thumbnails, no text"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:396
359
  msgid "Do not display thumbnails, only text."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:400
363
  msgid "Width of the thumbnail: "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:403
367
  msgid "Height of the thumbnail: "
368
  msgstr ""
369
 
370
+ #: admin.inc.php:406
371
  msgid "Style attributes / Width and Height HTML attributes:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:410
375
  msgid "Style attributes are used for width and height."
376
  msgstr ""
377
 
378
+ #: admin.inc.php:414
379
  msgid "HTML width and height attributes are used for width and height."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:418
383
  msgid "Use timthumb to generate thumbnails? "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:421
387
  msgid ""
388
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
389
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:424
393
+ msgid "Quality of thumbnails generated by timthumb:"
394
+ msgstr ""
395
+
396
+ #: admin.inc.php:427
397
+ msgid ""
398
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
399
+ "file size. Suggested maximum value is 95. Default is 75."
400
+ msgstr ""
401
+
402
+ #: admin.inc.php:430
403
  msgid "Post thumbnail meta field name: "
404
  msgstr ""
405
 
406
+ #: admin.inc.php:433
407
  msgid ""
408
  "The value of this field should contain the image source and is set in the "
409
  "<em>Add New Post</em> screen"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:436
413
  msgid ""
414
  "If the postmeta is not set, then should the plugin extract the first image "
415
  "from the post?"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:439
419
  msgid ""
420
  "This could slow down the loading of your page if the first image in the "
421
  "related posts is large in file-size"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:442
425
  msgid "Use default thumbnail? "
426
  msgstr ""
427
 
428
+ #: admin.inc.php:445
429
  msgid ""
430
  "If checked, when no thumbnail is found, show a default one from the URL "
431
  "below. If not checked and no thumbnail is found, no image will be shown."
432
  msgstr ""
433
 
434
+ #: admin.inc.php:448
435
  msgid "Default thumbnail: "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:452
439
  msgid ""
440
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
441
  "then it will check the meta field. If this is not available, then it will "
442
  "show the default image as specified above"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:459
446
  msgid "Custom CSS"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:462
450
  msgid "Use default style included in the plugin?"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:465
454
  msgid ""
455
  "Top 10 includes a default style that makes your popular posts list to look "
456
  "pretty. Check the box above if you want to use this. You will need to select "
458
  "Widget."
459
  msgstr ""
460
 
461
+ #: admin.inc.php:468
462
  msgid "Custom CSS to add to header:"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:471
466
  msgid ""
467
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
468
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
469
  "available CSS classes to style."
470
  msgstr ""
471
 
472
+ #: admin.inc.php:478 admin.inc.php:544
473
  msgid "Save Options"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:479
477
  msgid "Default Options"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:479
481
  msgid "Do you want to set options to Default?"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:488
485
  msgid "Maintenance"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:492
489
  msgid ""
490
  "Over time the Daily Top 10 database grows in size, which reduces the "
491
  "performance of the plugin. Cleaning the database at regular intervals could "
493
  "will automatically delete entries older than 90 days."
494
  msgstr ""
495
 
496
+ #: admin.inc.php:493
497
  msgid ""
498
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
499
  "everytime the job is rescheduled (i.e. you change the settings below)."
500
  msgstr ""
501
 
502
+ #: admin.inc.php:496
503
  msgid "Enable scheduled maintenance of daily tables:"
504
  msgstr ""
505
 
506
+ #: admin.inc.php:500
507
  msgid "Time to run maintenance"
508
  msgstr ""
509
 
510
+ #: admin.inc.php:501
511
  msgid "hrs"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:501
515
  msgid "min"
516
  msgstr ""
517
 
518
+ #: admin.inc.php:503
519
  msgid "How often should the maintenance be run:"
520
  msgstr ""
521
 
522
+ #: admin.inc.php:507
523
  msgid "Daily"
524
  msgstr ""
525
 
526
+ #: admin.inc.php:511
527
  msgid "Weekly"
528
  msgstr ""
529
 
530
+ #: admin.inc.php:515
531
  msgid "Fortnightly"
532
  msgstr ""
533
 
534
+ #: admin.inc.php:519
535
  msgid "Monthly"
536
  msgstr ""
537
 
538
+ #: admin.inc.php:528
539
  msgid "The cron job has been scheduled. Maintenance will run "
540
  msgstr ""
541
 
542
+ #: admin.inc.php:533
543
  msgid "The cron job is missing. Please resave this page to add the job"
544
  msgstr ""
545
 
546
+ #: admin.inc.php:538
547
  msgid "Maintenance is turned off"
548
  msgstr ""
549
 
550
+ #: admin.inc.php:552
551
  msgid "Reset count"
552
  msgstr ""
553
 
554
+ #: admin.inc.php:555
555
  msgid ""
556
  "This cannot be reversed. Make sure that your database has been backed up "
557
  "before proceeding"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:558
561
  msgid "Reset Popular Posts"
562
  msgstr ""
563
 
564
+ #: admin.inc.php:558
565
  msgid "Are you sure you want to reset the popular posts?"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:559
569
  msgid "Reset Daily Popular Posts"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:559
573
  msgid "Are you sure you want to reset the daily popular posts?"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:560
577
  msgid "Clear duplicates"
578
  msgstr ""
579
 
580
+ #: admin.inc.php:560
581
  msgid "This will delete the duplicate entries in the tables. Proceed?"
582
  msgstr ""
583
 
584
+ #: admin.inc.php:612 admin.inc.php:1010
585
  msgid "Popular Posts"
586
  msgstr ""
587
 
588
+ #: admin.inc.php:614 admin.inc.php:713
589
  msgid "Daily Popular Posts"
590
  msgstr ""
591
 
592
+ #: admin.inc.php:645
593
  msgid "Support the development"
594
  msgstr ""
595
 
596
+ #: admin.inc.php:652
597
+ msgid "Donation for Top 10"
598
+ msgstr ""
599
+
600
+ #: admin.inc.php:654
601
  msgid "Enter amount in USD: "
602
  msgstr ""
603
 
604
+ #: admin.inc.php:658
605
+ msgid "Send your donation to the author of Top 10"
606
  msgstr ""
607
 
608
+ #: admin.inc.php:665
609
  msgid "Follow me"
610
  msgstr ""
611
 
612
+ #: admin.inc.php:675
613
  msgid "Quick links"
614
  msgstr ""
615
 
616
+ #: admin.inc.php:679
617
  msgid "Top 10 plugin page"
618
  msgstr ""
619
 
620
+ #: admin.inc.php:680
621
  msgid "Other plugins"
622
  msgstr ""
623
 
624
+ #: admin.inc.php:681
625
  msgid "Ajay's blog"
626
  msgstr ""
627
 
628
+ #: admin.inc.php:682
629
  msgid "FAQ"
630
  msgstr ""
631
 
632
+ #: admin.inc.php:683 top-10.php:1345
633
  msgid "Support"
634
  msgstr ""
635
 
636
+ #: admin.inc.php:684
637
  msgid "Reviews"
638
  msgstr ""
639
 
640
+ #: admin.inc.php:704 admin.inc.php:707
641
  msgid "Top 10 Settings"
642
  msgstr ""
643
 
644
+ #: admin.inc.php:704 admin.inc.php:1183
645
  msgid "Top 10"
646
  msgstr ""
647
 
648
+ #: admin.inc.php:710
649
  msgid "Overall Popular Posts"
650
  msgstr ""
651
 
652
+ #: admin.inc.php:882
653
  #, php-format
654
  msgid "Results %1$s to %2$s of %3$s"
655
  msgstr ""
656
 
657
+ #: admin.inc.php:886
658
  #, php-format
659
  msgid "Page %s of %s"
660
  msgstr ""
661
 
662
+ #: admin.inc.php:898
663
  msgid "View Daily Popular Posts"
664
  msgstr ""
665
 
666
+ #: admin.inc.php:901 admin.inc.php:914
667
  msgid "Results per-page:"
668
  msgstr ""
669
 
670
+ #: admin.inc.php:911
671
  msgid "View Overall Popular Posts"
672
  msgstr ""
673
 
674
+ #: admin.inc.php:940
675
  msgid "Previous"
676
  msgstr ""
677
 
678
+ #: admin.inc.php:968
679
  msgid "Next"
680
  msgstr ""
681
 
682
+ #: admin.inc.php:1011
683
  msgid "Daily Popular"
684
  msgstr ""
685
 
686
+ #: admin.inc.php:1029
687
  msgid "Total Views"
688
  msgstr ""
689
 
690
+ #: admin.inc.php:1030
691
  msgid "Today's Views"
692
  msgstr ""
693
 
694
+ #: admin.inc.php:1031
695
  msgid "Views"
696
  msgstr ""
697
 
698
+ #: admin.inc.php:1217
699
+ msgid "Visit count:"
700
+ msgstr ""
701
+
702
+ #: admin.inc.php:1219
703
+ msgid ""
704
+ "Enter a number above to update the visit count. Leaving the above box blank "
705
+ "will set the count to zero"
706
+ msgstr ""
707
+
708
+ #: admin.inc.php:1229
709
+ msgid "Location of thumbnail:"
710
+ msgstr ""
711
+
712
+ #: admin.inc.php:1231
713
+ msgid ""
714
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
715
+ "image will be used for the post. It will be resized to the thumbnail size "
716
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
717
  msgstr ""
718
 
719
+ #: admin.inc.php:1232
720
+ msgid "The URL above is saved in the meta field: "
721
  msgstr ""
722
 
723
+ #: top-10.php:456
724
+ msgid " by "
725
+ msgstr ""
726
+
727
+ #: top-10.php:550
728
  msgid "Popular Posts [Top 10]"
729
  msgstr ""
730
 
731
+ #: top-10.php:551
732
+ msgid "Display popular posts"
733
+ msgstr ""
734
+
735
+ #: top-10.php:577
736
  msgid "Title"
737
  msgstr ""
738
 
739
+ #: top-10.php:582
740
  msgid "No. of posts"
741
  msgstr ""
742
 
743
+ #: top-10.php:587
744
  msgid "Overall"
745
  msgstr ""
746
 
747
+ #: top-10.php:588
748
  msgid "Custom time period (Enter below)"
749
  msgstr ""
750
 
751
+ #: top-10.php:593
752
  msgid "Range in number of days (applies only to custom option above)"
753
  msgstr ""
754
 
755
+ #: top-10.php:598
756
+ msgid "Show count?"
757
  msgstr ""
758
 
759
+ #: top-10.php:603
760
+ msgid "Show excerpt?"
761
  msgstr ""
762
 
763
+ #: top-10.php:608
764
+ msgid "Show author?"
765
  msgstr ""
766
 
767
+ #: top-10.php:613
768
+ msgid "Show date?"
769
  msgstr ""
770
 
771
+ #: top-10.php:617
772
  msgid "Thumbnail options"
773
  msgstr ""
774
 
775
+ #: top-10.php:619
776
  msgid "Thumbnails inline, before title"
777
  msgstr ""
778
 
779
+ #: top-10.php:620
780
  msgid "Thumbnails inline, after title"
781
  msgstr ""
782
 
783
+ #: top-10.php:621
784
  msgid "Only thumbnails, no text"
785
  msgstr ""
786
 
787
+ #: top-10.php:622
788
  msgid "No thumbnails, only text."
789
  msgstr ""
790
 
791
+ #: top-10.php:627
792
  msgid "Thumbnail height"
793
  msgstr ""
794
 
795
+ #: top-10.php:632
796
  msgid "Thumbnail width"
797
  msgstr ""
798
 
799
+ #: top-10.php:772
800
  msgid "<h3>Popular Posts</h3>"
801
  msgstr ""
802
 
803
+ #: top-10.php:773
804
  msgid "<h3>Daily Popular</h3>"
805
  msgstr ""
806
 
807
+ #: top-10.php:774
808
  msgid "No top posts yet"
809
  msgstr ""
810
 
811
+ #: top-10.php:1245
812
  msgid "Once Weekly"
813
  msgstr ""
814
 
815
+ #: top-10.php:1249
816
  msgid "Once Fortnightly"
817
  msgstr ""
818
 
819
+ #: top-10.php:1253
820
  msgid "Once Monthly"
821
  msgstr ""
822
 
823
+ #: top-10.php:1323
824
  msgid "Settings"
825
  msgstr ""
826
 
827
+ #: top-10.php:1346
828
  msgid "Donate"
829
  msgstr ""
languages/tptn-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 23:15-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,210 +12,223 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr ""
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr ""
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr ""
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
 
83
- #: admin.inc.php:200
84
  msgid ""
85
  "Instead of displaying popular posts fromt he past day, this setting lets you "
86
  "display posts for as many days as you want. This can be overridden in the "
87
  "widget."
88
  msgstr ""
89
 
90
- #: admin.inc.php:203
91
  msgid "Post types to include in results (including custom post types)"
92
  msgstr ""
93
 
94
- #: admin.inc.php:214
95
  msgid "List of post or page IDs to exclude from the results: "
96
  msgstr ""
97
 
98
- #: admin.inc.php:216 admin.inc.php:352
99
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
100
  msgstr ""
101
 
102
- #: admin.inc.php:220
103
  msgid "Exclude Categories: "
104
  msgstr ""
105
 
106
- #: admin.inc.php:235
107
  msgid ""
108
  "Comma separated list of category slugs. The field above has an autocomplete "
109
  "so simply start typing in the starting letters and it will prompt you with "
110
  "options"
111
  msgstr ""
112
 
113
- #: admin.inc.php:240
114
  msgid "Display number of views on:"
115
  msgstr ""
116
 
117
- #: admin.inc.php:242
118
  msgid "Posts"
119
  msgstr ""
120
 
121
- #: admin.inc.php:243
122
  msgid "Pages"
123
  msgstr ""
124
 
125
- #: admin.inc.php:244
126
  msgid "Home page"
127
  msgstr ""
128
 
129
- #: admin.inc.php:245
130
  msgid "Feeds"
131
  msgstr ""
132
 
133
- #: admin.inc.php:246
134
  msgid "Category archives"
135
  msgstr ""
136
 
137
- #: admin.inc.php:247
138
  msgid "Tag archives"
139
  msgstr ""
140
 
141
- #: admin.inc.php:248
142
  msgid "Other archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:249
146
  msgid ""
147
- "If you choose to disable this, please add <code>&lt;?php "
148
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
149
- "template file where you want it displayed"
150
  msgstr ""
151
 
152
- #: admin.inc.php:252
153
  msgid "Always display latest post count"
154
  msgstr ""
155
 
156
- #: admin.inc.php:254
157
  msgid ""
158
  "This option uses JavaScript and will increase your page load time. Turn this "
159
  "off if you are not using caching plugins or are OK with displaying older "
160
  "cached counts."
161
  msgstr ""
162
 
163
- #: admin.inc.php:257
164
  msgid "Track visits of authors on their own posts?"
165
  msgstr ""
166
 
167
- #: admin.inc.php:259
168
  msgid ""
169
  "Disabling this option will stop authors visits tracked on their own posts"
170
  msgstr ""
171
 
172
- #: admin.inc.php:262
173
  msgid "Track visits of admins?"
174
  msgstr ""
175
 
176
- #: admin.inc.php:264
177
  msgid "Disabling this option will stop admin visits being tracked."
178
  msgstr ""
179
 
180
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
181
  msgid "Display page views on Posts and Pages in Admin"
182
  msgstr ""
183
 
184
- #: admin.inc.php:270
185
  msgid ""
186
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
187
  "and All Pages"
188
  msgstr ""
189
 
190
- #: admin.inc.php:273
191
  msgid "Show number of views to non-admins"
192
  msgstr ""
193
 
194
- #: admin.inc.php:276
195
  msgid ""
196
  "If you disable this then non-admins won't see the above columns or view the "
197
  "independent pages with the top posts"
198
  msgstr ""
199
 
200
- #: admin.inc.php:279
201
  msgid "Link to Top 10 plugin page"
202
  msgstr ""
203
 
204
- #: admin.inc.php:282
205
  msgid ""
206
  "A link to the plugin is added as an extra list item to the list of popular "
207
  "posts"
208
  msgstr ""
209
 
210
- #: admin.inc.php:289
211
  msgid "Output options"
212
  msgstr ""
213
 
214
- #: admin.inc.php:292
215
  msgid "Format to display the post views:"
216
  msgstr ""
217
 
218
- #: admin.inc.php:294
219
  msgid ""
220
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
221
  "%</code> to display the daily count and <code>%overallcount%</code> to "
@@ -223,11 +236,11 @@ msgid ""
223
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
224
  msgstr ""
225
 
226
- #: admin.inc.php:297
227
  msgid "What do display when there are no visits?"
228
  msgstr ""
229
 
230
- #: admin.inc.php:299
231
  msgid ""
232
  "This text applies only when there are 0 hits for the post and it isn't a "
233
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -235,199 +248,209 @@ msgid ""
235
  "option."
236
  msgstr ""
237
 
238
- #: admin.inc.php:302
239
  msgid "Title of popular posts: "
240
  msgstr ""
241
 
242
- #: admin.inc.php:305
243
  msgid "Title of daily popular posts: "
244
  msgstr ""
245
 
246
- #: admin.inc.php:308
247
  msgid "When there are no posts, what should be shown?"
248
  msgstr ""
249
 
250
- #: admin.inc.php:312
251
  msgid "Blank Output"
252
  msgstr ""
253
 
254
- #: admin.inc.php:316
255
  msgid "Display:"
256
  msgstr ""
257
 
258
- #: admin.inc.php:320
259
  msgid "Show post excerpt in list?"
260
  msgstr ""
261
 
262
- #: admin.inc.php:323
263
  msgid "Length of excerpt (in words): "
264
  msgstr ""
265
 
266
- #: admin.inc.php:326
267
  msgid "Show post author in list?"
268
  msgstr ""
269
 
270
- #: admin.inc.php:329
271
  msgid "Show post date in list?"
272
  msgstr ""
273
 
274
- #: admin.inc.php:332
275
  msgid "Limit post title length (in characters)"
276
  msgstr ""
277
 
278
- #: admin.inc.php:335
279
  msgid "Show view count in list?"
280
  msgstr ""
281
 
282
- #: admin.inc.php:338
283
  msgid "Always display latest post count in the daily lists?"
284
  msgstr ""
285
 
286
- #: admin.inc.php:340
287
  msgid ""
288
  "This option uses JavaScript and will increase your page load time. When you "
289
  "enable this option, the daily widget will not use the options set there, but "
290
  "options will need to be set on this screen."
291
  msgstr ""
292
 
293
- #: admin.inc.php:343
294
  msgid "Open links in new window"
295
  msgstr ""
296
 
297
- #: admin.inc.php:346
298
  msgid "Add nofollow attribute to links in the list"
299
  msgstr ""
300
 
301
- #: admin.inc.php:349
302
  msgid "Exclude display of related posts on these posts / pages"
303
  msgstr ""
304
 
305
- #: admin.inc.php:355
306
  msgid "Customise the list HTML"
307
  msgstr ""
308
 
309
- #: admin.inc.php:357
310
  msgid "HTML to display before the list of posts: "
311
  msgstr ""
312
 
313
- #: admin.inc.php:360
314
  msgid "HTML to display before each list item: "
315
  msgstr ""
316
 
317
- #: admin.inc.php:363
318
  msgid "HTML to display after each list item: "
319
  msgstr ""
320
 
321
- #: admin.inc.php:366
322
  msgid "HTML to display after the list of posts: "
323
  msgstr ""
324
 
325
- #: admin.inc.php:369
326
  msgid "Post thumbnail options:"
327
  msgstr ""
328
 
329
- #: admin.inc.php:371
330
  msgid "Location of post thumbnail:"
331
  msgstr ""
332
 
333
- #: admin.inc.php:375
334
  msgid "Display thumbnails inline with posts, before title"
335
  msgstr ""
336
 
337
- #: admin.inc.php:379
338
  msgid "Display thumbnails inline with posts, after title"
339
  msgstr ""
340
 
341
- #: admin.inc.php:383
342
  msgid "Display only thumbnails, no text"
343
  msgstr ""
344
 
345
- #: admin.inc.php:387
346
  msgid "Do not display thumbnails, only text."
347
  msgstr ""
348
 
349
- #: admin.inc.php:391
350
  msgid "Width of the thumbnail: "
351
  msgstr ""
352
 
353
- #: admin.inc.php:394
354
  msgid "Height of the thumbnail: "
355
  msgstr ""
356
 
357
- #: admin.inc.php:397
358
  msgid "Style attributes / Width and Height HTML attributes:"
359
  msgstr ""
360
 
361
- #: admin.inc.php:401
362
  msgid "Style attributes are used for width and height."
363
  msgstr ""
364
 
365
- #: admin.inc.php:405
366
  msgid "HTML width and height attributes are used for width and height."
367
  msgstr ""
368
 
369
- #: admin.inc.php:409
370
  msgid "Use timthumb to generate thumbnails? "
371
  msgstr ""
372
 
373
- #: admin.inc.php:412
374
  msgid ""
375
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
376
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
377
  msgstr ""
378
 
379
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
380
  msgid "Post thumbnail meta field name: "
381
  msgstr ""
382
 
383
- #: admin.inc.php:418
384
  msgid ""
385
  "The value of this field should contain the image source and is set in the "
386
  "<em>Add New Post</em> screen"
387
  msgstr ""
388
 
389
- #: admin.inc.php:421
390
  msgid ""
391
  "If the postmeta is not set, then should the plugin extract the first image "
392
  "from the post?"
393
  msgstr ""
394
 
395
- #: admin.inc.php:424
396
  msgid ""
397
  "This could slow down the loading of your page if the first image in the "
398
  "related posts is large in file-size"
399
  msgstr ""
400
 
401
- #: admin.inc.php:427
402
  msgid "Use default thumbnail? "
403
  msgstr ""
404
 
405
- #: admin.inc.php:430
406
  msgid ""
407
  "If checked, when no thumbnail is found, show a default one from the URL "
408
  "below. If not checked and no thumbnail is found, no image will be shown."
409
  msgstr ""
410
 
411
- #: admin.inc.php:433
412
  msgid "Default thumbnail: "
413
  msgstr ""
414
 
415
- #: admin.inc.php:437
416
  msgid ""
417
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
418
  "then it will check the meta field. If this is not available, then it will "
419
  "show the default image as specified above"
420
  msgstr ""
421
 
422
- #: admin.inc.php:444
423
  msgid "Custom CSS"
424
  msgstr ""
425
 
426
- #: admin.inc.php:447
427
  msgid "Use default style included in the plugin?"
428
  msgstr ""
429
 
430
- #: admin.inc.php:450
431
  msgid ""
432
  "Top 10 includes a default style that makes your popular posts list to look "
433
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -435,34 +458,34 @@ msgid ""
435
  "Widget."
436
  msgstr ""
437
 
438
- #: admin.inc.php:453
439
  msgid "Custom CSS to add to header:"
440
  msgstr ""
441
 
442
- #: admin.inc.php:456
443
  msgid ""
444
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
445
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
446
  "available CSS classes to style."
447
  msgstr ""
448
 
449
- #: admin.inc.php:463 admin.inc.php:529
450
  msgid "Save Options"
451
  msgstr ""
452
 
453
- #: admin.inc.php:464
454
  msgid "Default Options"
455
  msgstr ""
456
 
457
- #: admin.inc.php:464
458
  msgid "Do you want to set options to Default?"
459
  msgstr ""
460
 
461
- #: admin.inc.php:473
462
  msgid "Maintenance"
463
  msgstr ""
464
 
465
- #: admin.inc.php:477
466
  msgid ""
467
  "Over time the Daily Top 10 database grows in size, which reduces the "
468
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -470,308 +493,337 @@ msgid ""
470
  "will automatically delete entries older than 90 days."
471
  msgstr ""
472
 
473
- #: admin.inc.php:478
474
  msgid ""
475
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
476
  "everytime the job is rescheduled (i.e. you change the settings below)."
477
  msgstr ""
478
 
479
- #: admin.inc.php:481
480
  msgid "Enable scheduled maintenance of daily tables:"
481
  msgstr ""
482
 
483
- #: admin.inc.php:485
484
  msgid "Time to run maintenance"
485
  msgstr ""
486
 
487
- #: admin.inc.php:486
488
  msgid "hrs"
489
  msgstr ""
490
 
491
- #: admin.inc.php:486
492
  msgid "min"
493
  msgstr ""
494
 
495
- #: admin.inc.php:488
496
  msgid "How often should the maintenance be run:"
497
  msgstr ""
498
 
499
- #: admin.inc.php:492
500
  msgid "Daily"
501
  msgstr ""
502
 
503
- #: admin.inc.php:496
504
  msgid "Weekly"
505
  msgstr ""
506
 
507
- #: admin.inc.php:500
508
  msgid "Fortnightly"
509
  msgstr ""
510
 
511
- #: admin.inc.php:504
512
  msgid "Monthly"
513
  msgstr ""
514
 
515
- #: admin.inc.php:513
516
  msgid "The cron job has been scheduled. Maintenance will run "
517
  msgstr ""
518
 
519
- #: admin.inc.php:518
520
  msgid "The cron job is missing. Please resave this page to add the job"
521
  msgstr ""
522
 
523
- #: admin.inc.php:523
524
  msgid "Maintenance is turned off"
525
  msgstr ""
526
 
527
- #: admin.inc.php:537
528
  msgid "Reset count"
529
  msgstr ""
530
 
531
- #: admin.inc.php:540
532
  msgid ""
533
  "This cannot be reversed. Make sure that your database has been backed up "
534
  "before proceeding"
535
  msgstr ""
536
 
537
- #: admin.inc.php:543
538
  msgid "Reset Popular Posts"
539
  msgstr ""
540
 
541
- #: admin.inc.php:543
542
  msgid "Are you sure you want to reset the popular posts?"
543
  msgstr ""
544
 
545
- #: admin.inc.php:544
546
  msgid "Reset Daily Popular Posts"
547
  msgstr ""
548
 
549
- #: admin.inc.php:544
550
  msgid "Are you sure you want to reset the daily popular posts?"
551
  msgstr ""
552
 
553
- #: admin.inc.php:545
554
  msgid "Clear duplicates"
555
  msgstr ""
556
 
557
- #: admin.inc.php:545
558
  msgid "This will delete the duplicate entries in the tables. Proceed?"
559
  msgstr ""
560
 
561
- #: admin.inc.php:593 admin.inc.php:979
562
  msgid "Popular Posts"
563
  msgstr ""
564
 
565
- #: admin.inc.php:593 admin.inc.php:688
566
  msgid "Daily Popular Posts"
567
  msgstr ""
568
 
569
- #: admin.inc.php:621
570
  msgid "Support the development"
571
  msgstr ""
572
 
573
- #: admin.inc.php:630
 
 
 
 
574
  msgid "Enter amount in USD: "
575
  msgstr ""
576
 
577
- #: admin.inc.php:634
578
- msgid "Send your donation to the author of"
579
  msgstr ""
580
 
581
- #: admin.inc.php:641
582
  msgid "Follow me"
583
  msgstr ""
584
 
585
- #: admin.inc.php:651
586
  msgid "Quick links"
587
  msgstr ""
588
 
589
- #: admin.inc.php:655
590
  msgid "Top 10 plugin page"
591
  msgstr ""
592
 
593
- #: admin.inc.php:656
594
  msgid "Other plugins"
595
  msgstr ""
596
 
597
- #: admin.inc.php:657
598
  msgid "Ajay's blog"
599
  msgstr ""
600
 
601
- #: admin.inc.php:658
602
  msgid "FAQ"
603
  msgstr ""
604
 
605
- #: admin.inc.php:659 top-10.php:1267
606
  msgid "Support"
607
  msgstr ""
608
 
609
- #: admin.inc.php:660
610
  msgid "Reviews"
611
  msgstr ""
612
 
613
- #: admin.inc.php:679 admin.inc.php:682
614
  msgid "Top 10 Settings"
615
  msgstr ""
616
 
617
- #: admin.inc.php:679
618
  msgid "Top 10"
619
  msgstr ""
620
 
621
- #: admin.inc.php:685
622
  msgid "Overall Popular Posts"
623
  msgstr ""
624
 
625
- #: admin.inc.php:850
626
  #, php-format
627
  msgid "Results %1$s to %2$s of %3$s"
628
  msgstr ""
629
 
630
- #: admin.inc.php:854
631
  #, php-format
632
  msgid "Page %s of %s"
633
  msgstr ""
634
 
635
- #: admin.inc.php:866
636
  msgid "View Daily Popular Posts"
637
  msgstr ""
638
 
639
- #: admin.inc.php:869 admin.inc.php:882
640
  msgid "Results per-page:"
641
  msgstr ""
642
 
643
- #: admin.inc.php:879
644
  msgid "View Overall Popular Posts"
645
  msgstr ""
646
 
647
- #: admin.inc.php:908
648
  msgid "Previous"
649
  msgstr ""
650
 
651
- #: admin.inc.php:936
652
  msgid "Next"
653
  msgstr ""
654
 
655
- #: admin.inc.php:980
656
  msgid "Daily Popular"
657
  msgstr ""
658
 
659
- #: admin.inc.php:998
660
  msgid "Total Views"
661
  msgstr ""
662
 
663
- #: admin.inc.php:999
664
  msgid "Today's Views"
665
  msgstr ""
666
 
667
- #: admin.inc.php:1000
668
  msgid "Views"
669
  msgstr ""
670
 
671
- #: top-10.php:438
672
- msgid " by "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
673
  msgstr ""
674
 
675
- #: top-10.php:524
676
- msgid "Display the posts popular this week"
677
  msgstr ""
678
 
679
- #: top-10.php:525
 
 
 
 
680
  msgid "Popular Posts [Top 10]"
681
  msgstr ""
682
 
683
- #: top-10.php:543
 
 
 
 
684
  msgid "Title"
685
  msgstr ""
686
 
687
- #: top-10.php:548
688
  msgid "No. of posts"
689
  msgstr ""
690
 
691
- #: top-10.php:553
692
  msgid "Overall"
693
  msgstr ""
694
 
695
- #: top-10.php:554
696
  msgid "Custom time period (Enter below)"
697
  msgstr ""
698
 
699
- #: top-10.php:559
700
  msgid "Range in number of days (applies only to custom option above)"
701
  msgstr ""
702
 
703
- #: top-10.php:564
704
- msgid " Show count?"
705
  msgstr ""
706
 
707
- #: top-10.php:569
708
- msgid " Show excerpt?"
709
  msgstr ""
710
 
711
- #: top-10.php:574
712
- msgid " Show author?"
713
  msgstr ""
714
 
715
- #: top-10.php:579
716
- msgid " Show date?"
717
  msgstr ""
718
 
719
- #: top-10.php:583
720
  msgid "Thumbnail options"
721
  msgstr ""
722
 
723
- #: top-10.php:585
724
  msgid "Thumbnails inline, before title"
725
  msgstr ""
726
 
727
- #: top-10.php:586
728
  msgid "Thumbnails inline, after title"
729
  msgstr ""
730
 
731
- #: top-10.php:587
732
  msgid "Only thumbnails, no text"
733
  msgstr ""
734
 
735
- #: top-10.php:588
736
  msgid "No thumbnails, only text."
737
  msgstr ""
738
 
739
- #: top-10.php:593
740
  msgid "Thumbnail height"
741
  msgstr ""
742
 
743
- #: top-10.php:598
744
  msgid "Thumbnail width"
745
  msgstr ""
746
 
747
- #: top-10.php:719
748
  msgid "<h3>Popular Posts</h3>"
749
  msgstr ""
750
 
751
- #: top-10.php:720
752
  msgid "<h3>Daily Popular</h3>"
753
  msgstr ""
754
 
755
- #: top-10.php:721
756
  msgid "No top posts yet"
757
  msgstr ""
758
 
759
- #: top-10.php:1184
760
  msgid "Once Weekly"
761
  msgstr ""
762
 
763
- #: top-10.php:1188
764
  msgid "Once Fortnightly"
765
  msgstr ""
766
 
767
- #: top-10.php:1192
768
  msgid "Once Monthly"
769
  msgstr ""
770
 
771
- #: top-10.php:1255
772
  msgid "Settings"
773
  msgstr ""
774
 
775
- #: top-10.php:1268
776
  msgid "Donate"
777
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr ""
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:204
89
  msgid ""
90
  "Instead of displaying popular posts fromt he past day, this setting lets you "
91
  "display posts for as many days as you want. This can be overridden in the "
92
  "widget."
93
  msgstr ""
94
 
95
+ #: admin.inc.php:207
96
  msgid "Post types to include in results (including custom post types)"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:218
100
  msgid "List of post or page IDs to exclude from the results: "
101
  msgstr ""
102
 
103
+ #: admin.inc.php:220 admin.inc.php:361
104
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:224
108
  msgid "Exclude Categories: "
109
  msgstr ""
110
 
111
+ #: admin.inc.php:239
112
  msgid ""
113
  "Comma separated list of category slugs. The field above has an autocomplete "
114
  "so simply start typing in the starting letters and it will prompt you with "
115
  "options"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:244
119
  msgid "Display number of views on:"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:246
123
  msgid "Posts"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:247
127
  msgid "Pages"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:248
131
  msgid "Home page"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:249
135
  msgid "Feeds"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:250
139
  msgid "Category archives"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:251
143
  msgid "Tag archives"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:252
147
  msgid "Other archives"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:253
151
  msgid ""
152
+ "If you choose to disable this, please add <code>&lt;?php if "
153
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
154
+ "</code> to your template file where you want it displayed"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:256
158
  msgid "Always display latest post count"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:258
162
  msgid ""
163
  "This option uses JavaScript and will increase your page load time. Turn this "
164
  "off if you are not using caching plugins or are OK with displaying older "
165
  "cached counts."
166
  msgstr ""
167
 
168
+ #: admin.inc.php:261
169
  msgid "Track visits of authors on their own posts?"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:263
173
  msgid ""
174
  "Disabling this option will stop authors visits tracked on their own posts"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:266
178
  msgid "Track visits of admins?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:268
182
  msgid "Disabling this option will stop admin visits being tracked."
183
  msgstr ""
184
 
185
+ #: admin.inc.php:271
186
+ msgid "Track visits of Editors?"
187
+ msgstr ""
188
+
189
+ #: admin.inc.php:273
190
+ msgid "Disabling this option will stop editor visits being tracked."
191
+ msgstr ""
192
+
193
+ #: admin.inc.php:276
194
  msgid "Display page views on Posts and Pages in Admin"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:279
198
  msgid ""
199
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
200
  "and All Pages"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:282
204
  msgid "Show number of views to non-admins"
205
  msgstr ""
206
 
207
+ #: admin.inc.php:285
208
  msgid ""
209
  "If you disable this then non-admins won't see the above columns or view the "
210
  "independent pages with the top posts"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:288
214
  msgid "Link to Top 10 plugin page"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:291
218
  msgid ""
219
  "A link to the plugin is added as an extra list item to the list of popular "
220
  "posts"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:298
224
  msgid "Output options"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:301
228
  msgid "Format to display the post views:"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:303
232
  msgid ""
233
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
234
  "%</code> to display the daily count and <code>%overallcount%</code> to "
236
  "options displays <code>(Visited 123 times, 23 visits today)</code>"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:306
240
  msgid "What do display when there are no visits?"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:308
244
  msgid ""
245
  "This text applies only when there are 0 hits for the post and it isn't a "
246
  "single page. e.g. if you display post views on the homepage or archives then "
248
  "option."
249
  msgstr ""
250
 
251
+ #: admin.inc.php:311
252
  msgid "Title of popular posts: "
253
  msgstr ""
254
 
255
+ #: admin.inc.php:314
256
  msgid "Title of daily popular posts: "
257
  msgstr ""
258
 
259
+ #: admin.inc.php:317
260
  msgid "When there are no posts, what should be shown?"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:321
264
  msgid "Blank Output"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:325
268
  msgid "Display:"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:329
272
  msgid "Show post excerpt in list?"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:332
276
  msgid "Length of excerpt (in words): "
277
  msgstr ""
278
 
279
+ #: admin.inc.php:335
280
  msgid "Show post author in list?"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:338
284
  msgid "Show post date in list?"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:341
288
  msgid "Limit post title length (in characters)"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:344
292
  msgid "Show view count in list?"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:347
296
  msgid "Always display latest post count in the daily lists?"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:349
300
  msgid ""
301
  "This option uses JavaScript and will increase your page load time. When you "
302
  "enable this option, the daily widget will not use the options set there, but "
303
  "options will need to be set on this screen."
304
  msgstr ""
305
 
306
+ #: admin.inc.php:352
307
  msgid "Open links in new window"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:355
311
  msgid "Add nofollow attribute to links in the list"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:358
315
  msgid "Exclude display of related posts on these posts / pages"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:364
319
  msgid "Customise the list HTML"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:366
323
  msgid "HTML to display before the list of posts: "
324
  msgstr ""
325
 
326
+ #: admin.inc.php:369
327
  msgid "HTML to display before each list item: "
328
  msgstr ""
329
 
330
+ #: admin.inc.php:372
331
  msgid "HTML to display after each list item: "
332
  msgstr ""
333
 
334
+ #: admin.inc.php:375
335
  msgid "HTML to display after the list of posts: "
336
  msgstr ""
337
 
338
+ #: admin.inc.php:378
339
  msgid "Post thumbnail options:"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:380
343
  msgid "Location of post thumbnail:"
344
  msgstr ""
345
 
346
+ #: admin.inc.php:384
347
  msgid "Display thumbnails inline with posts, before title"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:388
351
  msgid "Display thumbnails inline with posts, after title"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:392
355
  msgid "Display only thumbnails, no text"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:396
359
  msgid "Do not display thumbnails, only text."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:400
363
  msgid "Width of the thumbnail: "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:403
367
  msgid "Height of the thumbnail: "
368
  msgstr ""
369
 
370
+ #: admin.inc.php:406
371
  msgid "Style attributes / Width and Height HTML attributes:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:410
375
  msgid "Style attributes are used for width and height."
376
  msgstr ""
377
 
378
+ #: admin.inc.php:414
379
  msgid "HTML width and height attributes are used for width and height."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:418
383
  msgid "Use timthumb to generate thumbnails? "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:421
387
  msgid ""
388
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
389
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:424
393
+ msgid "Quality of thumbnails generated by timthumb:"
394
+ msgstr ""
395
+
396
+ #: admin.inc.php:427
397
+ msgid ""
398
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
399
+ "file size. Suggested maximum value is 95. Default is 75."
400
+ msgstr ""
401
+
402
+ #: admin.inc.php:430
403
  msgid "Post thumbnail meta field name: "
404
  msgstr ""
405
 
406
+ #: admin.inc.php:433
407
  msgid ""
408
  "The value of this field should contain the image source and is set in the "
409
  "<em>Add New Post</em> screen"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:436
413
  msgid ""
414
  "If the postmeta is not set, then should the plugin extract the first image "
415
  "from the post?"
416
  msgstr ""
417
 
418
+ #: admin.inc.php:439
419
  msgid ""
420
  "This could slow down the loading of your page if the first image in the "
421
  "related posts is large in file-size"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:442
425
  msgid "Use default thumbnail? "
426
  msgstr ""
427
 
428
+ #: admin.inc.php:445
429
  msgid ""
430
  "If checked, when no thumbnail is found, show a default one from the URL "
431
  "below. If not checked and no thumbnail is found, no image will be shown."
432
  msgstr ""
433
 
434
+ #: admin.inc.php:448
435
  msgid "Default thumbnail: "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:452
439
  msgid ""
440
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
441
  "then it will check the meta field. If this is not available, then it will "
442
  "show the default image as specified above"
443
  msgstr ""
444
 
445
+ #: admin.inc.php:459
446
  msgid "Custom CSS"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:462
450
  msgid "Use default style included in the plugin?"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:465
454
  msgid ""
455
  "Top 10 includes a default style that makes your popular posts list to look "
456
  "pretty. Check the box above if you want to use this. You will need to select "
458
  "Widget."
459
  msgstr ""
460
 
461
+ #: admin.inc.php:468
462
  msgid "Custom CSS to add to header:"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:471
466
  msgid ""
467
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
468
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
469
  "available CSS classes to style."
470
  msgstr ""
471
 
472
+ #: admin.inc.php:478 admin.inc.php:544
473
  msgid "Save Options"
474
  msgstr ""
475
 
476
+ #: admin.inc.php:479
477
  msgid "Default Options"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:479
481
  msgid "Do you want to set options to Default?"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:488
485
  msgid "Maintenance"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:492
489
  msgid ""
490
  "Over time the Daily Top 10 database grows in size, which reduces the "
491
  "performance of the plugin. Cleaning the database at regular intervals could "
493
  "will automatically delete entries older than 90 days."
494
  msgstr ""
495
 
496
+ #: admin.inc.php:493
497
  msgid ""
498
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
499
  "everytime the job is rescheduled (i.e. you change the settings below)."
500
  msgstr ""
501
 
502
+ #: admin.inc.php:496
503
  msgid "Enable scheduled maintenance of daily tables:"
504
  msgstr ""
505
 
506
+ #: admin.inc.php:500
507
  msgid "Time to run maintenance"
508
  msgstr ""
509
 
510
+ #: admin.inc.php:501
511
  msgid "hrs"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:501
515
  msgid "min"
516
  msgstr ""
517
 
518
+ #: admin.inc.php:503
519
  msgid "How often should the maintenance be run:"
520
  msgstr ""
521
 
522
+ #: admin.inc.php:507
523
  msgid "Daily"
524
  msgstr ""
525
 
526
+ #: admin.inc.php:511
527
  msgid "Weekly"
528
  msgstr ""
529
 
530
+ #: admin.inc.php:515
531
  msgid "Fortnightly"
532
  msgstr ""
533
 
534
+ #: admin.inc.php:519
535
  msgid "Monthly"
536
  msgstr ""
537
 
538
+ #: admin.inc.php:528
539
  msgid "The cron job has been scheduled. Maintenance will run "
540
  msgstr ""
541
 
542
+ #: admin.inc.php:533
543
  msgid "The cron job is missing. Please resave this page to add the job"
544
  msgstr ""
545
 
546
+ #: admin.inc.php:538
547
  msgid "Maintenance is turned off"
548
  msgstr ""
549
 
550
+ #: admin.inc.php:552
551
  msgid "Reset count"
552
  msgstr ""
553
 
554
+ #: admin.inc.php:555
555
  msgid ""
556
  "This cannot be reversed. Make sure that your database has been backed up "
557
  "before proceeding"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:558
561
  msgid "Reset Popular Posts"
562
  msgstr ""
563
 
564
+ #: admin.inc.php:558
565
  msgid "Are you sure you want to reset the popular posts?"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:559
569
  msgid "Reset Daily Popular Posts"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:559
573
  msgid "Are you sure you want to reset the daily popular posts?"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:560
577
  msgid "Clear duplicates"
578
  msgstr ""
579
 
580
+ #: admin.inc.php:560
581
  msgid "This will delete the duplicate entries in the tables. Proceed?"
582
  msgstr ""
583
 
584
+ #: admin.inc.php:612 admin.inc.php:1010
585
  msgid "Popular Posts"
586
  msgstr ""
587
 
588
+ #: admin.inc.php:614 admin.inc.php:713
589
  msgid "Daily Popular Posts"
590
  msgstr ""
591
 
592
+ #: admin.inc.php:645
593
  msgid "Support the development"
594
  msgstr ""
595
 
596
+ #: admin.inc.php:652
597
+ msgid "Donation for Top 10"
598
+ msgstr ""
599
+
600
+ #: admin.inc.php:654
601
  msgid "Enter amount in USD: "
602
  msgstr ""
603
 
604
+ #: admin.inc.php:658
605
+ msgid "Send your donation to the author of Top 10"
606
  msgstr ""
607
 
608
+ #: admin.inc.php:665
609
  msgid "Follow me"
610
  msgstr ""
611
 
612
+ #: admin.inc.php:675
613
  msgid "Quick links"
614
  msgstr ""
615
 
616
+ #: admin.inc.php:679
617
  msgid "Top 10 plugin page"
618
  msgstr ""
619
 
620
+ #: admin.inc.php:680
621
  msgid "Other plugins"
622
  msgstr ""
623
 
624
+ #: admin.inc.php:681
625
  msgid "Ajay's blog"
626
  msgstr ""
627
 
628
+ #: admin.inc.php:682
629
  msgid "FAQ"
630
  msgstr ""
631
 
632
+ #: admin.inc.php:683 top-10.php:1345
633
  msgid "Support"
634
  msgstr ""
635
 
636
+ #: admin.inc.php:684
637
  msgid "Reviews"
638
  msgstr ""
639
 
640
+ #: admin.inc.php:704 admin.inc.php:707
641
  msgid "Top 10 Settings"
642
  msgstr ""
643
 
644
+ #: admin.inc.php:704 admin.inc.php:1183
645
  msgid "Top 10"
646
  msgstr ""
647
 
648
+ #: admin.inc.php:710
649
  msgid "Overall Popular Posts"
650
  msgstr ""
651
 
652
+ #: admin.inc.php:882
653
  #, php-format
654
  msgid "Results %1$s to %2$s of %3$s"
655
  msgstr ""
656
 
657
+ #: admin.inc.php:886
658
  #, php-format
659
  msgid "Page %s of %s"
660
  msgstr ""
661
 
662
+ #: admin.inc.php:898
663
  msgid "View Daily Popular Posts"
664
  msgstr ""
665
 
666
+ #: admin.inc.php:901 admin.inc.php:914
667
  msgid "Results per-page:"
668
  msgstr ""
669
 
670
+ #: admin.inc.php:911
671
  msgid "View Overall Popular Posts"
672
  msgstr ""
673
 
674
+ #: admin.inc.php:940
675
  msgid "Previous"
676
  msgstr ""
677
 
678
+ #: admin.inc.php:968
679
  msgid "Next"
680
  msgstr ""
681
 
682
+ #: admin.inc.php:1011
683
  msgid "Daily Popular"
684
  msgstr ""
685
 
686
+ #: admin.inc.php:1029
687
  msgid "Total Views"
688
  msgstr ""
689
 
690
+ #: admin.inc.php:1030
691
  msgid "Today's Views"
692
  msgstr ""
693
 
694
+ #: admin.inc.php:1031
695
  msgid "Views"
696
  msgstr ""
697
 
698
+ #: admin.inc.php:1217
699
+ msgid "Visit count:"
700
+ msgstr ""
701
+
702
+ #: admin.inc.php:1219
703
+ msgid ""
704
+ "Enter a number above to update the visit count. Leaving the above box blank "
705
+ "will set the count to zero"
706
+ msgstr ""
707
+
708
+ #: admin.inc.php:1229
709
+ msgid "Location of thumbnail:"
710
+ msgstr ""
711
+
712
+ #: admin.inc.php:1231
713
+ msgid ""
714
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
715
+ "image will be used for the post. It will be resized to the thumbnail size "
716
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
717
  msgstr ""
718
 
719
+ #: admin.inc.php:1232
720
+ msgid "The URL above is saved in the meta field: "
721
  msgstr ""
722
 
723
+ #: top-10.php:456
724
+ msgid " by "
725
+ msgstr ""
726
+
727
+ #: top-10.php:550
728
  msgid "Popular Posts [Top 10]"
729
  msgstr ""
730
 
731
+ #: top-10.php:551
732
+ msgid "Display popular posts"
733
+ msgstr ""
734
+
735
+ #: top-10.php:577
736
  msgid "Title"
737
  msgstr ""
738
 
739
+ #: top-10.php:582
740
  msgid "No. of posts"
741
  msgstr ""
742
 
743
+ #: top-10.php:587
744
  msgid "Overall"
745
  msgstr ""
746
 
747
+ #: top-10.php:588
748
  msgid "Custom time period (Enter below)"
749
  msgstr ""
750
 
751
+ #: top-10.php:593
752
  msgid "Range in number of days (applies only to custom option above)"
753
  msgstr ""
754
 
755
+ #: top-10.php:598
756
+ msgid "Show count?"
757
  msgstr ""
758
 
759
+ #: top-10.php:603
760
+ msgid "Show excerpt?"
761
  msgstr ""
762
 
763
+ #: top-10.php:608
764
+ msgid "Show author?"
765
  msgstr ""
766
 
767
+ #: top-10.php:613
768
+ msgid "Show date?"
769
  msgstr ""
770
 
771
+ #: top-10.php:617
772
  msgid "Thumbnail options"
773
  msgstr ""
774
 
775
+ #: top-10.php:619
776
  msgid "Thumbnails inline, before title"
777
  msgstr ""
778
 
779
+ #: top-10.php:620
780
  msgid "Thumbnails inline, after title"
781
  msgstr ""
782
 
783
+ #: top-10.php:621
784
  msgid "Only thumbnails, no text"
785
  msgstr ""
786
 
787
+ #: top-10.php:622
788
  msgid "No thumbnails, only text."
789
  msgstr ""
790
 
791
+ #: top-10.php:627
792
  msgid "Thumbnail height"
793
  msgstr ""
794
 
795
+ #: top-10.php:632
796
  msgid "Thumbnail width"
797
  msgstr ""
798
 
799
+ #: top-10.php:772
800
  msgid "<h3>Popular Posts</h3>"
801
  msgstr ""
802
 
803
+ #: top-10.php:773
804
  msgid "<h3>Daily Popular</h3>"
805
  msgstr ""
806
 
807
+ #: top-10.php:774
808
  msgid "No top posts yet"
809
  msgstr ""
810
 
811
+ #: top-10.php:1245
812
  msgid "Once Weekly"
813
  msgstr ""
814
 
815
+ #: top-10.php:1249
816
  msgid "Once Fortnightly"
817
  msgstr ""
818
 
819
+ #: top-10.php:1253
820
  msgid "Once Monthly"
821
  msgstr ""
822
 
823
+ #: top-10.php:1323
824
  msgid "Settings"
825
  msgstr ""
826
 
827
+ #: top-10.php:1346
828
  msgid "Donate"
829
  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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -12,201 +12,215 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Configuraciones guardadas con éxito"
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Los parametros se configuran de manera predeterminada"
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Reiniciar el Top de los 10 posts más populares"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Mostrar el número de posts más populares"
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
  "Los post diarios más populares deben contener el número de visitas al día"
83
 
84
- #: admin.inc.php:200
85
  msgid ""
86
  "Instead of displaying popular posts fromt he past day, this setting lets you "
87
  "display posts for as many days as you want. This can be overridden in the "
88
  "widget."
89
  msgstr ""
90
 
91
- #: admin.inc.php:203
92
  msgid "Post types to include in results (including custom post types)"
93
  msgstr ""
94
 
95
- #: admin.inc.php:214
96
  msgid "List of post or page IDs to exclude from the results: "
97
  msgstr ""
98
 
99
- #: admin.inc.php:216 admin.inc.php:352
100
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
101
  msgstr ""
102
 
103
- #: admin.inc.php:220
104
  msgid "Exclude Categories: "
105
  msgstr "Excluir las Categorías"
106
 
107
- #: admin.inc.php:235
108
  msgid ""
109
  "Comma separated list of category slugs. The field above has an autocomplete "
110
  "so simply start typing in the starting letters and it will prompt you with "
111
  "options"
112
  msgstr ""
113
 
114
- #: admin.inc.php:240
115
  #, fuzzy
116
  msgid "Display number of views on:"
117
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
118
 
119
- #: admin.inc.php:242
120
  msgid "Posts"
121
  msgstr ""
122
 
123
- #: admin.inc.php:243
124
  #, fuzzy
125
  msgid "Pages"
126
  msgstr "La página"
127
 
128
- #: admin.inc.php:244
129
  msgid "Home page"
130
  msgstr ""
131
 
132
- #: admin.inc.php:245
133
  msgid "Feeds"
134
  msgstr ""
135
 
136
- #: admin.inc.php:246
137
  msgid "Category archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:247
141
  msgid "Tag archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:248
145
  msgid "Other archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:249
149
  msgid ""
150
- "If you choose to disable this, please add <code>&lt;?php "
151
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
152
- "template file where you want it displayed"
153
  msgstr ""
154
 
155
- #: admin.inc.php:252
156
  msgid "Always display latest post count"
157
  msgstr ""
158
 
159
- #: admin.inc.php:254
160
  msgid ""
161
  "This option uses JavaScript and will increase your page load time. Turn this "
162
  "off if you are not using caching plugins or are OK with displaying older "
163
  "cached counts."
164
  msgstr ""
165
 
166
- #: admin.inc.php:257
167
  msgid "Track visits of authors on their own posts?"
168
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
169
 
170
- #: admin.inc.php:259
171
  msgid ""
172
  "Disabling this option will stop authors visits tracked on their own posts"
173
  msgstr ""
174
 
175
- #: admin.inc.php:262
176
  #, fuzzy
177
  msgid "Track visits of admins?"
178
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
179
 
180
- #: admin.inc.php:264
181
  msgid "Disabling this option will stop admin visits being tracked."
182
  msgstr ""
183
 
184
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
185
  msgid "Display page views on Posts and Pages in Admin"
186
  msgstr ""
187
 
188
- #: admin.inc.php:270
189
  msgid ""
190
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
191
  "and All Pages"
192
  msgstr ""
193
 
194
- #: admin.inc.php:273
195
  #, fuzzy
196
  msgid "Show number of views to non-admins"
197
  msgstr "¿Mostrar el número de accesos a las páginas?"
198
 
199
- #: admin.inc.php:276
200
  msgid ""
201
  "If you disable this then non-admins won't see the above columns or view the "
202
  "independent pages with the top posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:279
206
  msgid "Link to Top 10 plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:282
210
  #, fuzzy
211
  msgid ""
212
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -216,17 +230,17 @@ msgstr ""
216
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
217
  "agradeceríamos al hacerlo!"
218
 
219
- #: admin.inc.php:289
220
  #, fuzzy
221
  msgid "Output options"
222
  msgstr "Los Parámetros Resultantes"
223
 
224
- #: admin.inc.php:292
225
  #, fuzzy
226
  msgid "Format to display the post views:"
227
  msgstr "El formato de visualización de la cuenta: "
228
 
229
- #: admin.inc.php:294
230
  #, fuzzy
231
  msgid ""
232
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -238,11 +252,11 @@ msgstr ""
238
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
239
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
240
 
241
- #: admin.inc.php:297
242
  msgid "What do display when there are no visits?"
243
  msgstr ""
244
 
245
- #: admin.inc.php:299
246
  msgid ""
247
  "This text applies only when there are 0 hits for the post and it isn't a "
248
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -250,163 +264,173 @@ msgid ""
250
  "option."
251
  msgstr ""
252
 
253
- #: admin.inc.php:302
254
  msgid "Title of popular posts: "
255
  msgstr "El título de los posts más populares"
256
 
257
- #: admin.inc.php:305
258
  msgid "Title of daily popular posts: "
259
  msgstr "El título de los posts diarios más populares"
260
 
261
- #: admin.inc.php:308
262
  msgid "When there are no posts, what should be shown?"
263
  msgstr ""
264
 
265
- #: admin.inc.php:312
266
  msgid "Blank Output"
267
  msgstr ""
268
 
269
- #: admin.inc.php:316
270
  msgid "Display:"
271
  msgstr ""
272
 
273
- #: admin.inc.php:320
274
  msgid "Show post excerpt in list?"
275
  msgstr "¿Mostrar un fragmento del post en la lista?"
276
 
277
- #: admin.inc.php:323
278
  msgid "Length of excerpt (in words): "
279
  msgstr "La longitud del fragmento(en palabras):"
280
 
281
- #: admin.inc.php:326
282
  #, fuzzy
283
  msgid "Show post author in list?"
284
  msgstr "¿Mostrar un fragmento del post en la lista?"
285
 
286
- #: admin.inc.php:329
287
  #, fuzzy
288
  msgid "Show post date in list?"
289
  msgstr "¿Mostrar un fragmento del post en la lista?"
290
 
291
- #: admin.inc.php:332
292
  msgid "Limit post title length (in characters)"
293
  msgstr ""
294
 
295
- #: admin.inc.php:335
296
  #, fuzzy
297
  msgid "Show view count in list?"
298
  msgstr "¿Mostrar un fragmento del post en la lista?"
299
 
300
- #: admin.inc.php:338
301
  msgid "Always display latest post count in the daily lists?"
302
  msgstr ""
303
 
304
- #: admin.inc.php:340
305
  msgid ""
306
  "This option uses JavaScript and will increase your page load time. When you "
307
  "enable this option, the daily widget will not use the options set there, but "
308
  "options will need to be set on this screen."
309
  msgstr ""
310
 
311
- #: admin.inc.php:343
312
  msgid "Open links in new window"
313
  msgstr ""
314
 
315
- #: admin.inc.php:346
316
  msgid "Add nofollow attribute to links in the list"
317
  msgstr ""
318
 
319
- #: admin.inc.php:349
320
  msgid "Exclude display of related posts on these posts / pages"
321
  msgstr ""
322
 
323
- #: admin.inc.php:355
324
  #, fuzzy
325
  msgid "Customise the list HTML"
326
  msgstr "Personalizar el resultado:"
327
 
328
- #: admin.inc.php:357
329
  msgid "HTML to display before the list of posts: "
330
  msgstr "HTML mostrar antes de la lista de posts:"
331
 
332
- #: admin.inc.php:360
333
  msgid "HTML to display before each list item: "
334
  msgstr "HTML mostrar ante cada elemento de la lista:"
335
 
336
- #: admin.inc.php:363
337
  msgid "HTML to display after each list item: "
338
  msgstr "HTML mostrar después de cada elemento de la lista:"
339
 
340
- #: admin.inc.php:366
341
  msgid "HTML to display after the list of posts: "
342
  msgstr "HTML mostrar después de la lista de posts:"
343
 
344
- #: admin.inc.php:369
345
  msgid "Post thumbnail options:"
346
  msgstr "Los parámetros del thumbnail:"
347
 
348
- #: admin.inc.php:371
349
  msgid "Location of post thumbnail:"
350
  msgstr ""
351
 
352
- #: admin.inc.php:375
353
  msgid "Display thumbnails inline with posts, before title"
354
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
355
 
356
- #: admin.inc.php:379
357
  msgid "Display thumbnails inline with posts, after title"
358
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
359
 
360
- #: admin.inc.php:383
361
  msgid "Display only thumbnails, no text"
362
  msgstr "Mostrar solamente thumbnails, no el texto"
363
 
364
- #: admin.inc.php:387
365
  msgid "Do not display thumbnails, only text."
366
  msgstr "No mostrar thumbnails, sólo el texto"
367
 
368
- #: admin.inc.php:391
369
  msgid "Width of the thumbnail: "
370
  msgstr ""
371
 
372
- #: admin.inc.php:394
373
  msgid "Height of the thumbnail: "
374
  msgstr ""
375
 
376
- #: admin.inc.php:397
377
  msgid "Style attributes / Width and Height HTML attributes:"
378
  msgstr ""
379
 
380
- #: admin.inc.php:401
381
  msgid "Style attributes are used for width and height."
382
  msgstr ""
383
 
384
- #: admin.inc.php:405
385
  msgid "HTML width and height attributes are used for width and height."
386
  msgstr ""
387
 
388
- #: admin.inc.php:409
389
  msgid "Use timthumb to generate thumbnails? "
390
  msgstr ""
391
 
392
- #: admin.inc.php:412
393
  msgid ""
394
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
395
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
396
  msgstr ""
397
 
398
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
399
  #, fuzzy
400
  msgid "Post thumbnail meta field name: "
401
  msgstr "Los parámetros del thumbnail:"
402
 
403
- #: admin.inc.php:418
404
  msgid ""
405
  "The value of this field should contain the image source and is set in the "
406
  "<em>Add New Post</em> screen"
407
  msgstr ""
408
 
409
- #: admin.inc.php:421
410
  #, fuzzy
411
  msgid ""
412
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -417,7 +441,7 @@ msgstr ""
417
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
418
  "tamaño de archivo "
419
 
420
- #: admin.inc.php:424
421
  #, fuzzy
422
  msgid ""
423
  "This could slow down the loading of your page if the first image in the "
@@ -428,11 +452,11 @@ msgstr ""
428
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
429
  "tamaño de archivo "
430
 
431
- #: admin.inc.php:427
432
  msgid "Use default thumbnail? "
433
  msgstr ""
434
 
435
- #: admin.inc.php:430
436
  msgid ""
437
  "If checked, when no thumbnail is found, show a default one from the URL "
438
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -442,26 +466,26 @@ msgstr ""
442
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
443
  "hay que mostrarla."
444
 
445
- #: admin.inc.php:433
446
  msgid "Default thumbnail: "
447
  msgstr ""
448
 
449
- #: admin.inc.php:437
450
  msgid ""
451
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
452
  "then it will check the meta field. If this is not available, then it will "
453
  "show the default image as specified above"
454
  msgstr ""
455
 
456
- #: admin.inc.php:444
457
  msgid "Custom CSS"
458
  msgstr ""
459
 
460
- #: admin.inc.php:447
461
  msgid "Use default style included in the plugin?"
462
  msgstr ""
463
 
464
- #: admin.inc.php:450
465
  msgid ""
466
  "Top 10 includes a default style that makes your popular posts list to look "
467
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -469,36 +493,36 @@ msgid ""
469
  "Widget."
470
  msgstr ""
471
 
472
- #: admin.inc.php:453
473
  msgid "Custom CSS to add to header:"
474
  msgstr ""
475
 
476
- #: admin.inc.php:456
477
  msgid ""
478
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
479
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
480
  "available CSS classes to style."
481
  msgstr ""
482
 
483
- #: admin.inc.php:463 admin.inc.php:529
484
  #, fuzzy
485
  msgid "Save Options"
486
  msgstr "Los parametros"
487
 
488
- #: admin.inc.php:464
489
  #, fuzzy
490
  msgid "Default Options"
491
  msgstr "Los Parámetros Resultantes"
492
 
493
- #: admin.inc.php:464
494
  msgid "Do you want to set options to Default?"
495
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
496
 
497
- #: admin.inc.php:473
498
  msgid "Maintenance"
499
  msgstr ""
500
 
501
- #: admin.inc.php:477
502
  msgid ""
503
  "Over time the Daily Top 10 database grows in size, which reduces the "
504
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -506,65 +530,65 @@ msgid ""
506
  "will automatically delete entries older than 90 days."
507
  msgstr ""
508
 
509
- #: admin.inc.php:478
510
  msgid ""
511
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
512
  "everytime the job is rescheduled (i.e. you change the settings below)."
513
  msgstr ""
514
 
515
- #: admin.inc.php:481
516
  msgid "Enable scheduled maintenance of daily tables:"
517
  msgstr ""
518
 
519
- #: admin.inc.php:485
520
  msgid "Time to run maintenance"
521
  msgstr ""
522
 
523
- #: admin.inc.php:486
524
  msgid "hrs"
525
  msgstr ""
526
 
527
- #: admin.inc.php:486
528
  msgid "min"
529
  msgstr ""
530
 
531
- #: admin.inc.php:488
532
  msgid "How often should the maintenance be run:"
533
  msgstr ""
534
 
535
- #: admin.inc.php:492
536
  msgid "Daily"
537
  msgstr ""
538
 
539
- #: admin.inc.php:496
540
  msgid "Weekly"
541
  msgstr ""
542
 
543
- #: admin.inc.php:500
544
  msgid "Fortnightly"
545
  msgstr ""
546
 
547
- #: admin.inc.php:504
548
  msgid "Monthly"
549
  msgstr ""
550
 
551
- #: admin.inc.php:513
552
  msgid "The cron job has been scheduled. Maintenance will run "
553
  msgstr ""
554
 
555
- #: admin.inc.php:518
556
  msgid "The cron job is missing. Please resave this page to add the job"
557
  msgstr ""
558
 
559
- #: admin.inc.php:523
560
  msgid "Maintenance is turned off"
561
  msgstr ""
562
 
563
- #: admin.inc.php:537
564
  msgid "Reset count"
565
  msgstr "Reiniciar los ajustes"
566
 
567
- #: admin.inc.php:540
568
  msgid ""
569
  "This cannot be reversed. Make sure that your database has been backed up "
570
  "before proceeding"
@@ -572,270 +596,306 @@ msgstr ""
572
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
573
  "sido creada una copia de seguridad para su base de datos."
574
 
575
- #: admin.inc.php:543
576
  #, fuzzy
577
  msgid "Reset Popular Posts"
578
  msgstr "Los posts más populares"
579
 
580
- #: admin.inc.php:543
581
  msgid "Are you sure you want to reset the popular posts?"
582
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
583
 
584
- #: admin.inc.php:544
585
  #, fuzzy
586
  msgid "Reset Daily Popular Posts"
587
  msgstr "Los posts diarios más populares"
588
 
589
- #: admin.inc.php:544
590
  msgid "Are you sure you want to reset the daily popular posts?"
591
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
592
 
593
- #: admin.inc.php:545
594
  msgid "Clear duplicates"
595
  msgstr ""
596
 
597
- #: admin.inc.php:545
598
  msgid "This will delete the duplicate entries in the tables. Proceed?"
599
  msgstr ""
600
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
601
 
602
- #: admin.inc.php:593 admin.inc.php:979
603
  msgid "Popular Posts"
604
  msgstr "Los posts más populares"
605
 
606
- #: admin.inc.php:593 admin.inc.php:688
607
  msgid "Daily Popular Posts"
608
  msgstr "Los posts diarios más populares"
609
 
610
- #: admin.inc.php:621
611
  msgid "Support the development"
612
  msgstr "Apoyar al elaborador"
613
 
614
- #: admin.inc.php:630
 
 
 
 
615
  msgid "Enter amount in USD: "
616
  msgstr "Ingresar las cifras en USD"
617
 
618
- #: admin.inc.php:634
619
- msgid "Send your donation to the author of"
 
620
  msgstr "Enviar su subvención al autor"
621
 
622
- #: admin.inc.php:641
623
  msgid "Follow me"
624
  msgstr ""
625
 
626
- #: admin.inc.php:651
627
  #, fuzzy
628
  msgid "Quick links"
629
  msgstr "Enlaces rápidos"
630
 
631
- #: admin.inc.php:655
632
  #, fuzzy
633
  msgid "Top 10 plugin page"
634
  msgstr "página plugin"
635
 
636
- #: admin.inc.php:656
637
  msgid "Other plugins"
638
  msgstr "Otros plugins"
639
 
640
- #: admin.inc.php:657
641
  msgid "Ajay's blog"
642
  msgstr "Blog de Ajay"
643
 
644
- #: admin.inc.php:658
645
  msgid "FAQ"
646
  msgstr ""
647
 
648
- #: admin.inc.php:659 top-10.php:1267
649
  msgid "Support"
650
  msgstr "Apoyo"
651
 
652
- #: admin.inc.php:660
653
  msgid "Reviews"
654
  msgstr ""
655
 
656
- #: admin.inc.php:679 admin.inc.php:682
657
  #, fuzzy
658
  msgid "Top 10 Settings"
659
  msgstr "Los ajustes"
660
 
661
- #: admin.inc.php:679
662
  msgid "Top 10"
663
  msgstr "Тоp 10"
664
 
665
- #: admin.inc.php:685
666
  #, fuzzy
667
  msgid "Overall Popular Posts"
668
  msgstr "Ver los posts más populares"
669
 
670
- #: admin.inc.php:850
671
  #, php-format
672
  msgid "Results %1$s to %2$s of %3$s"
673
  msgstr ""
674
 
675
- #: admin.inc.php:854
676
  #, php-format
677
  msgid "Page %s of %s"
678
  msgstr ""
679
 
680
- #: admin.inc.php:866
681
  msgid "View Daily Popular Posts"
682
  msgstr "Ver los posts diarios más populares"
683
 
684
- #: admin.inc.php:869 admin.inc.php:882
685
  msgid "Results per-page:"
686
  msgstr "Los resultados por página:"
687
 
688
- #: admin.inc.php:879
689
  msgid "View Overall Popular Posts"
690
  msgstr "Ver los posts más populares"
691
 
692
- #: admin.inc.php:908
693
  msgid "Previous"
694
  msgstr "Precedentes"
695
 
696
- #: admin.inc.php:936
697
  msgid "Next"
698
  msgstr "Siguientes"
699
 
700
- #: admin.inc.php:980
701
  msgid "Daily Popular"
702
  msgstr "Diario Populares"
703
 
704
- #: admin.inc.php:998
705
  #, fuzzy
706
  msgid "Total Views"
707
  msgstr "Total/Visitas de hoy"
708
 
709
- #: admin.inc.php:999
710
  #, fuzzy
711
  msgid "Today's Views"
712
  msgstr "Total/Visitas de hoy"
713
 
714
- #: admin.inc.php:1000
715
  #, fuzzy
716
  msgid "Views"
717
  msgstr "Total/Visitas de hoy"
718
 
719
- #: top-10.php:438
720
- msgid " by "
 
 
 
 
 
 
 
721
  msgstr ""
722
 
723
- #: top-10.php:524
724
- msgid "Display the posts popular this week"
725
- msgstr "Mostrar los posts populares de esta semana"
726
 
727
- #: top-10.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
728
  #, fuzzy
729
  msgid "Popular Posts [Top 10]"
730
  msgstr "Los posts más populares"
731
 
732
- #: top-10.php:543
 
 
 
 
 
733
  msgid "Title"
734
  msgstr ""
735
 
736
- #: top-10.php:548
737
  msgid "No. of posts"
738
  msgstr ""
739
 
740
- #: top-10.php:553
741
  msgid "Overall"
742
  msgstr ""
743
 
744
- #: top-10.php:554
745
  msgid "Custom time period (Enter below)"
746
  msgstr ""
747
 
748
- #: top-10.php:559
749
  msgid "Range in number of days (applies only to custom option above)"
750
  msgstr ""
751
 
752
- #: top-10.php:564
753
  #, fuzzy
754
- msgid " Show count?"
755
  msgstr "¿Mostrar un fragmento del post en la lista?"
756
 
757
- #: top-10.php:569
758
  #, fuzzy
759
- msgid " Show excerpt?"
760
  msgstr "¿Mostrar un fragmento del post en la lista?"
761
 
762
- #: top-10.php:574
763
- msgid " Show author?"
764
- msgstr ""
 
765
 
766
- #: top-10.php:579
767
  #, fuzzy
768
- msgid " Show date?"
769
  msgstr "¿Mostrar un fragmento del post en la lista?"
770
 
771
- #: top-10.php:583
772
  #, fuzzy
773
  msgid "Thumbnail options"
774
  msgstr "Los parámetros del thumbnail:"
775
 
776
- #: top-10.php:585
777
  #, fuzzy
778
  msgid "Thumbnails inline, before title"
779
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
780
 
781
- #: top-10.php:586
782
  #, fuzzy
783
  msgid "Thumbnails inline, after title"
784
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
785
 
786
- #: top-10.php:587
787
  #, fuzzy
788
  msgid "Only thumbnails, no text"
789
  msgstr "Mostrar solamente thumbnails, no el texto"
790
 
791
- #: top-10.php:588
792
  #, fuzzy
793
  msgid "No thumbnails, only text."
794
  msgstr "No mostrar thumbnails, sólo el texto"
795
 
796
- #: top-10.php:593
797
  #, fuzzy
798
  msgid "Thumbnail height"
799
  msgstr "Los parámetros del thumbnail:"
800
 
801
- #: top-10.php:598
802
  #, fuzzy
803
  msgid "Thumbnail width"
804
  msgstr "Los parámetros del thumbnail:"
805
 
806
- #: top-10.php:719
807
  msgid "<h3>Popular Posts</h3>"
808
  msgstr "Los posts populares"
809
 
810
- #: top-10.php:720
811
  msgid "<h3>Daily Popular</h3>"
812
  msgstr "Diario Populares"
813
 
814
- #: top-10.php:721
815
  #, fuzzy
816
  msgid "No top posts yet"
817
  msgstr "Reiniciar el Top de los 10 posts más populares"
818
 
819
- #: top-10.php:1184
820
  msgid "Once Weekly"
821
  msgstr ""
822
 
823
- #: top-10.php:1188
824
  msgid "Once Fortnightly"
825
  msgstr ""
826
 
827
- #: top-10.php:1192
828
  msgid "Once Monthly"
829
  msgstr ""
830
 
831
- #: top-10.php:1255
832
  msgid "Settings"
833
  msgstr "Los ajustes"
834
 
835
- #: top-10.php:1268
836
  msgid "Donate"
837
  msgstr "Subvencionar"
838
 
 
 
 
839
  #, fuzzy
840
  #~ msgid "This option uses JavaScript and will increase your page load time"
841
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Configuraciones guardadas con éxito"
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Los parametros se configuran de manera predeterminada"
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Reiniciar el Top de los 10 posts más populares"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Mostrar el número de posts más populares"
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
  "Los post diarios más populares deben contener el número de visitas al día"
88
 
89
+ #: admin.inc.php:204
90
  msgid ""
91
  "Instead of displaying popular posts fromt he past day, this setting lets you "
92
  "display posts for as many days as you want. This can be overridden in the "
93
  "widget."
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:218
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
+ #: admin.inc.php:220 admin.inc.php:361
105
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:224
109
  msgid "Exclude Categories: "
110
  msgstr "Excluir las Categorías"
111
 
112
+ #: admin.inc.php:239
113
  msgid ""
114
  "Comma separated list of category slugs. The field above has an autocomplete "
115
  "so simply start typing in the starting letters and it will prompt you with "
116
  "options"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:244
120
  #, fuzzy
121
  msgid "Display number of views on:"
122
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
123
 
124
+ #: admin.inc.php:246
125
  msgid "Posts"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:247
129
  #, fuzzy
130
  msgid "Pages"
131
  msgstr "La página"
132
 
133
+ #: admin.inc.php:248
134
  msgid "Home page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:249
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:250
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:251
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:252
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:253
154
  msgid ""
155
+ "If you choose to disable this, please add <code>&lt;?php if "
156
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
157
+ "</code> to your template file where you want it displayed"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:256
161
  msgid "Always display latest post count"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:258
165
  msgid ""
166
  "This option uses JavaScript and will increase your page load time. Turn this "
167
  "off if you are not using caching plugins or are OK with displaying older "
168
  "cached counts."
169
  msgstr ""
170
 
171
+ #: admin.inc.php:261
172
  msgid "Track visits of authors on their own posts?"
173
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
174
 
175
+ #: admin.inc.php:263
176
  msgid ""
177
  "Disabling this option will stop authors visits tracked on their own posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid "Track visits of admins?"
183
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
184
 
185
+ #: admin.inc.php:268
186
  msgid "Disabling this option will stop admin visits being tracked."
187
  msgstr ""
188
 
189
+ #: admin.inc.php:271
190
+ #, fuzzy
191
+ msgid "Track visits of Editors?"
192
+ msgstr "¿Observar las visitas de los autores a sus propios posts?"
193
+
194
+ #: admin.inc.php:273
195
+ msgid "Disabling this option will stop editor visits being tracked."
196
+ msgstr ""
197
+
198
+ #: admin.inc.php:276
199
  msgid "Display page views on Posts and Pages in Admin"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:279
203
  msgid ""
204
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
205
  "and All Pages"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:282
209
  #, fuzzy
210
  msgid "Show number of views to non-admins"
211
  msgstr "¿Mostrar el número de accesos a las páginas?"
212
 
213
+ #: admin.inc.php:285
214
  msgid ""
215
  "If you disable this then non-admins won't see the above columns or view the "
216
  "independent pages with the top posts"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:288
220
  msgid "Link to Top 10 plugin page"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  #, fuzzy
225
  msgid ""
226
  "A link to the plugin is added as an extra list item to the list of popular "
230
  "elemento de una lista adicional. Esto no es obligatorio, pero le "
231
  "agradeceríamos al hacerlo!"
232
 
233
+ #: admin.inc.php:298
234
  #, fuzzy
235
  msgid "Output options"
236
  msgstr "Los Parámetros Resultantes"
237
 
238
+ #: admin.inc.php:301
239
  #, fuzzy
240
  msgid "Format to display the post views:"
241
  msgstr "El formato de visualización de la cuenta: "
242
 
243
+ #: admin.inc.php:303
244
  #, fuzzy
245
  msgid ""
246
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
252
  "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
253
  "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
254
 
255
+ #: admin.inc.php:306
256
  msgid "What do display when there are no visits?"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:308
260
  msgid ""
261
  "This text applies only when there are 0 hits for the post and it isn't a "
262
  "single page. e.g. if you display post views on the homepage or archives then "
264
  "option."
265
  msgstr ""
266
 
267
+ #: admin.inc.php:311
268
  msgid "Title of popular posts: "
269
  msgstr "El título de los posts más populares"
270
 
271
+ #: admin.inc.php:314
272
  msgid "Title of daily popular posts: "
273
  msgstr "El título de los posts diarios más populares"
274
 
275
+ #: admin.inc.php:317
276
  msgid "When there are no posts, what should be shown?"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:321
280
  msgid "Blank Output"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:325
284
  msgid "Display:"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:329
288
  msgid "Show post excerpt in list?"
289
  msgstr "¿Mostrar un fragmento del post en la lista?"
290
 
291
+ #: admin.inc.php:332
292
  msgid "Length of excerpt (in words): "
293
  msgstr "La longitud del fragmento(en palabras):"
294
 
295
+ #: admin.inc.php:335
296
  #, fuzzy
297
  msgid "Show post author in list?"
298
  msgstr "¿Mostrar un fragmento del post en la lista?"
299
 
300
+ #: admin.inc.php:338
301
  #, fuzzy
302
  msgid "Show post date in list?"
303
  msgstr "¿Mostrar un fragmento del post en la lista?"
304
 
305
+ #: admin.inc.php:341
306
  msgid "Limit post title length (in characters)"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:344
310
  #, fuzzy
311
  msgid "Show view count in list?"
312
  msgstr "¿Mostrar un fragmento del post en la lista?"
313
 
314
+ #: admin.inc.php:347
315
  msgid "Always display latest post count in the daily lists?"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:349
319
  msgid ""
320
  "This option uses JavaScript and will increase your page load time. When you "
321
  "enable this option, the daily widget will not use the options set there, but "
322
  "options will need to be set on this screen."
323
  msgstr ""
324
 
325
+ #: admin.inc.php:352
326
  msgid "Open links in new window"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:355
330
  msgid "Add nofollow attribute to links in the list"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:358
334
  msgid "Exclude display of related posts on these posts / pages"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:364
338
  #, fuzzy
339
  msgid "Customise the list HTML"
340
  msgstr "Personalizar el resultado:"
341
 
342
+ #: admin.inc.php:366
343
  msgid "HTML to display before the list of posts: "
344
  msgstr "HTML mostrar antes de la lista de posts:"
345
 
346
+ #: admin.inc.php:369
347
  msgid "HTML to display before each list item: "
348
  msgstr "HTML mostrar ante cada elemento de la lista:"
349
 
350
+ #: admin.inc.php:372
351
  msgid "HTML to display after each list item: "
352
  msgstr "HTML mostrar después de cada elemento de la lista:"
353
 
354
+ #: admin.inc.php:375
355
  msgid "HTML to display after the list of posts: "
356
  msgstr "HTML mostrar después de la lista de posts:"
357
 
358
+ #: admin.inc.php:378
359
  msgid "Post thumbnail options:"
360
  msgstr "Los parámetros del thumbnail:"
361
 
362
+ #: admin.inc.php:380
363
  msgid "Location of post thumbnail:"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:384
367
  msgid "Display thumbnails inline with posts, before title"
368
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
369
 
370
+ #: admin.inc.php:388
371
  msgid "Display thumbnails inline with posts, after title"
372
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
373
 
374
+ #: admin.inc.php:392
375
  msgid "Display only thumbnails, no text"
376
  msgstr "Mostrar solamente thumbnails, no el texto"
377
 
378
+ #: admin.inc.php:396
379
  msgid "Do not display thumbnails, only text."
380
  msgstr "No mostrar thumbnails, sólo el texto"
381
 
382
+ #: admin.inc.php:400
383
  msgid "Width of the thumbnail: "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:403
387
  msgid "Height of the thumbnail: "
388
  msgstr ""
389
 
390
+ #: admin.inc.php:406
391
  msgid "Style attributes / Width and Height HTML attributes:"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:410
395
  msgid "Style attributes are used for width and height."
396
  msgstr ""
397
 
398
+ #: admin.inc.php:414
399
  msgid "HTML width and height attributes are used for width and height."
400
  msgstr ""
401
 
402
+ #: admin.inc.php:418
403
  msgid "Use timthumb to generate thumbnails? "
404
  msgstr ""
405
 
406
+ #: admin.inc.php:421
407
  msgid ""
408
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
409
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:424
413
+ msgid "Quality of thumbnails generated by timthumb:"
414
+ msgstr ""
415
+
416
+ #: admin.inc.php:427
417
+ msgid ""
418
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
419
+ "file size. Suggested maximum value is 95. Default is 75."
420
+ msgstr ""
421
+
422
+ #: admin.inc.php:430
423
  #, fuzzy
424
  msgid "Post thumbnail meta field name: "
425
  msgstr "Los parámetros del thumbnail:"
426
 
427
+ #: admin.inc.php:433
428
  msgid ""
429
  "The value of this field should contain the image source and is set in the "
430
  "<em>Add New Post</em> screen"
431
  msgstr ""
432
 
433
+ #: admin.inc.php:436
434
  #, fuzzy
435
  msgid ""
436
  "If the postmeta is not set, then should the plugin extract the first image "
441
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
442
  "tamaño de archivo "
443
 
444
+ #: admin.inc.php:439
445
  #, fuzzy
446
  msgid ""
447
  "This could slow down the loading of your page if the first image in the "
452
  "en caso que la primera imagen de los posts correspondientes es muy grande en "
453
  "tamaño de archivo "
454
 
455
+ #: admin.inc.php:442
456
  msgid "Use default thumbnail? "
457
  msgstr ""
458
 
459
+ #: admin.inc.php:445
460
  msgid ""
461
  "If checked, when no thumbnail is found, show a default one from the URL "
462
  "below. If not checked and no thumbnail is found, no image will be shown."
466
  "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
467
  "hay que mostrarla."
468
 
469
+ #: admin.inc.php:448
470
  msgid "Default thumbnail: "
471
  msgstr ""
472
 
473
+ #: admin.inc.php:452
474
  msgid ""
475
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
476
  "then it will check the meta field. If this is not available, then it will "
477
  "show the default image as specified above"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:459
481
  msgid "Custom CSS"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:462
485
  msgid "Use default style included in the plugin?"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:465
489
  msgid ""
490
  "Top 10 includes a default style that makes your popular posts list to look "
491
  "pretty. Check the box above if you want to use this. You will need to select "
493
  "Widget."
494
  msgstr ""
495
 
496
+ #: admin.inc.php:468
497
  msgid "Custom CSS to add to header:"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:471
501
  msgid ""
502
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
503
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
504
  "available CSS classes to style."
505
  msgstr ""
506
 
507
+ #: admin.inc.php:478 admin.inc.php:544
508
  #, fuzzy
509
  msgid "Save Options"
510
  msgstr "Los parametros"
511
 
512
+ #: admin.inc.php:479
513
  #, fuzzy
514
  msgid "Default Options"
515
  msgstr "Los Parámetros Resultantes"
516
 
517
+ #: admin.inc.php:479
518
  msgid "Do you want to set options to Default?"
519
  msgstr "¿Quiere configurar las opciones de forma predeterminada?"
520
 
521
+ #: admin.inc.php:488
522
  msgid "Maintenance"
523
  msgstr ""
524
 
525
+ #: admin.inc.php:492
526
  msgid ""
527
  "Over time the Daily Top 10 database grows in size, which reduces the "
528
  "performance of the plugin. Cleaning the database at regular intervals could "
530
  "will automatically delete entries older than 90 days."
531
  msgstr ""
532
 
533
+ #: admin.inc.php:493
534
  msgid ""
535
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
536
  "everytime the job is rescheduled (i.e. you change the settings below)."
537
  msgstr ""
538
 
539
+ #: admin.inc.php:496
540
  msgid "Enable scheduled maintenance of daily tables:"
541
  msgstr ""
542
 
543
+ #: admin.inc.php:500
544
  msgid "Time to run maintenance"
545
  msgstr ""
546
 
547
+ #: admin.inc.php:501
548
  msgid "hrs"
549
  msgstr ""
550
 
551
+ #: admin.inc.php:501
552
  msgid "min"
553
  msgstr ""
554
 
555
+ #: admin.inc.php:503
556
  msgid "How often should the maintenance be run:"
557
  msgstr ""
558
 
559
+ #: admin.inc.php:507
560
  msgid "Daily"
561
  msgstr ""
562
 
563
+ #: admin.inc.php:511
564
  msgid "Weekly"
565
  msgstr ""
566
 
567
+ #: admin.inc.php:515
568
  msgid "Fortnightly"
569
  msgstr ""
570
 
571
+ #: admin.inc.php:519
572
  msgid "Monthly"
573
  msgstr ""
574
 
575
+ #: admin.inc.php:528
576
  msgid "The cron job has been scheduled. Maintenance will run "
577
  msgstr ""
578
 
579
+ #: admin.inc.php:533
580
  msgid "The cron job is missing. Please resave this page to add the job"
581
  msgstr ""
582
 
583
+ #: admin.inc.php:538
584
  msgid "Maintenance is turned off"
585
  msgstr ""
586
 
587
+ #: admin.inc.php:552
588
  msgid "Reset count"
589
  msgstr "Reiniciar los ajustes"
590
 
591
+ #: admin.inc.php:555
592
  msgid ""
593
  "This cannot be reversed. Make sure that your database has been backed up "
594
  "before proceeding"
596
  "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
597
  "sido creada una copia de seguridad para su base de datos."
598
 
599
+ #: admin.inc.php:558
600
  #, fuzzy
601
  msgid "Reset Popular Posts"
602
  msgstr "Los posts más populares"
603
 
604
+ #: admin.inc.php:558
605
  msgid "Are you sure you want to reset the popular posts?"
606
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
607
 
608
+ #: admin.inc.php:559
609
  #, fuzzy
610
  msgid "Reset Daily Popular Posts"
611
  msgstr "Los posts diarios más populares"
612
 
613
+ #: admin.inc.php:559
614
  msgid "Are you sure you want to reset the daily popular posts?"
615
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
616
 
617
+ #: admin.inc.php:560
618
  msgid "Clear duplicates"
619
  msgstr ""
620
 
621
+ #: admin.inc.php:560
622
  msgid "This will delete the duplicate entries in the tables. Proceed?"
623
  msgstr ""
624
  "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
625
 
626
+ #: admin.inc.php:612 admin.inc.php:1010
627
  msgid "Popular Posts"
628
  msgstr "Los posts más populares"
629
 
630
+ #: admin.inc.php:614 admin.inc.php:713
631
  msgid "Daily Popular Posts"
632
  msgstr "Los posts diarios más populares"
633
 
634
+ #: admin.inc.php:645
635
  msgid "Support the development"
636
  msgstr "Apoyar al elaborador"
637
 
638
+ #: admin.inc.php:652
639
+ msgid "Donation for Top 10"
640
+ msgstr ""
641
+
642
+ #: admin.inc.php:654
643
  msgid "Enter amount in USD: "
644
  msgstr "Ingresar las cifras en USD"
645
 
646
+ #: admin.inc.php:658
647
+ #, fuzzy
648
+ msgid "Send your donation to the author of Top 10"
649
  msgstr "Enviar su subvención al autor"
650
 
651
+ #: admin.inc.php:665
652
  msgid "Follow me"
653
  msgstr ""
654
 
655
+ #: admin.inc.php:675
656
  #, fuzzy
657
  msgid "Quick links"
658
  msgstr "Enlaces rápidos"
659
 
660
+ #: admin.inc.php:679
661
  #, fuzzy
662
  msgid "Top 10 plugin page"
663
  msgstr "página plugin"
664
 
665
+ #: admin.inc.php:680
666
  msgid "Other plugins"
667
  msgstr "Otros plugins"
668
 
669
+ #: admin.inc.php:681
670
  msgid "Ajay's blog"
671
  msgstr "Blog de Ajay"
672
 
673
+ #: admin.inc.php:682
674
  msgid "FAQ"
675
  msgstr ""
676
 
677
+ #: admin.inc.php:683 top-10.php:1345
678
  msgid "Support"
679
  msgstr "Apoyo"
680
 
681
+ #: admin.inc.php:684
682
  msgid "Reviews"
683
  msgstr ""
684
 
685
+ #: admin.inc.php:704 admin.inc.php:707
686
  #, fuzzy
687
  msgid "Top 10 Settings"
688
  msgstr "Los ajustes"
689
 
690
+ #: admin.inc.php:704 admin.inc.php:1183
691
  msgid "Top 10"
692
  msgstr "Тоp 10"
693
 
694
+ #: admin.inc.php:710
695
  #, fuzzy
696
  msgid "Overall Popular Posts"
697
  msgstr "Ver los posts más populares"
698
 
699
+ #: admin.inc.php:882
700
  #, php-format
701
  msgid "Results %1$s to %2$s of %3$s"
702
  msgstr ""
703
 
704
+ #: admin.inc.php:886
705
  #, php-format
706
  msgid "Page %s of %s"
707
  msgstr ""
708
 
709
+ #: admin.inc.php:898
710
  msgid "View Daily Popular Posts"
711
  msgstr "Ver los posts diarios más populares"
712
 
713
+ #: admin.inc.php:901 admin.inc.php:914
714
  msgid "Results per-page:"
715
  msgstr "Los resultados por página:"
716
 
717
+ #: admin.inc.php:911
718
  msgid "View Overall Popular Posts"
719
  msgstr "Ver los posts más populares"
720
 
721
+ #: admin.inc.php:940
722
  msgid "Previous"
723
  msgstr "Precedentes"
724
 
725
+ #: admin.inc.php:968
726
  msgid "Next"
727
  msgstr "Siguientes"
728
 
729
+ #: admin.inc.php:1011
730
  msgid "Daily Popular"
731
  msgstr "Diario Populares"
732
 
733
+ #: admin.inc.php:1029
734
  #, fuzzy
735
  msgid "Total Views"
736
  msgstr "Total/Visitas de hoy"
737
 
738
+ #: admin.inc.php:1030
739
  #, fuzzy
740
  msgid "Today's Views"
741
  msgstr "Total/Visitas de hoy"
742
 
743
+ #: admin.inc.php:1031
744
  #, fuzzy
745
  msgid "Views"
746
  msgstr "Total/Visitas de hoy"
747
 
748
+ #: admin.inc.php:1217
749
+ #, fuzzy
750
+ msgid "Visit count:"
751
+ msgstr "Reiniciar los ajustes"
752
+
753
+ #: admin.inc.php:1219
754
+ msgid ""
755
+ "Enter a number above to update the visit count. Leaving the above box blank "
756
+ "will set the count to zero"
757
  msgstr ""
758
 
759
+ #: admin.inc.php:1229
760
+ msgid "Location of thumbnail:"
761
+ msgstr ""
762
 
763
+ #: admin.inc.php:1231
764
+ msgid ""
765
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
766
+ "image will be used for the post. It will be resized to the thumbnail size "
767
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
768
+ msgstr ""
769
+
770
+ #: admin.inc.php:1232
771
+ msgid "The URL above is saved in the meta field: "
772
+ msgstr ""
773
+
774
+ #: top-10.php:456
775
+ msgid " by "
776
+ msgstr ""
777
+
778
+ #: top-10.php:550
779
  #, fuzzy
780
  msgid "Popular Posts [Top 10]"
781
  msgstr "Los posts más populares"
782
 
783
+ #: top-10.php:551
784
+ #, fuzzy
785
+ msgid "Display popular posts"
786
+ msgstr "Los posts diarios más populares"
787
+
788
+ #: top-10.php:577
789
  msgid "Title"
790
  msgstr ""
791
 
792
+ #: top-10.php:582
793
  msgid "No. of posts"
794
  msgstr ""
795
 
796
+ #: top-10.php:587
797
  msgid "Overall"
798
  msgstr ""
799
 
800
+ #: top-10.php:588
801
  msgid "Custom time period (Enter below)"
802
  msgstr ""
803
 
804
+ #: top-10.php:593
805
  msgid "Range in number of days (applies only to custom option above)"
806
  msgstr ""
807
 
808
+ #: top-10.php:598
809
  #, fuzzy
810
+ msgid "Show count?"
811
  msgstr "¿Mostrar un fragmento del post en la lista?"
812
 
813
+ #: top-10.php:603
814
  #, fuzzy
815
+ msgid "Show excerpt?"
816
  msgstr "¿Mostrar un fragmento del post en la lista?"
817
 
818
+ #: top-10.php:608
819
+ #, fuzzy
820
+ msgid "Show author?"
821
+ msgstr "¿Mostrar un fragmento del post en la lista?"
822
 
823
+ #: top-10.php:613
824
  #, fuzzy
825
+ msgid "Show date?"
826
  msgstr "¿Mostrar un fragmento del post en la lista?"
827
 
828
+ #: top-10.php:617
829
  #, fuzzy
830
  msgid "Thumbnail options"
831
  msgstr "Los parámetros del thumbnail:"
832
 
833
+ #: top-10.php:619
834
  #, fuzzy
835
  msgid "Thumbnails inline, before title"
836
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
837
 
838
+ #: top-10.php:620
839
  #, fuzzy
840
  msgid "Thumbnails inline, after title"
841
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
842
 
843
+ #: top-10.php:621
844
  #, fuzzy
845
  msgid "Only thumbnails, no text"
846
  msgstr "Mostrar solamente thumbnails, no el texto"
847
 
848
+ #: top-10.php:622
849
  #, fuzzy
850
  msgid "No thumbnails, only text."
851
  msgstr "No mostrar thumbnails, sólo el texto"
852
 
853
+ #: top-10.php:627
854
  #, fuzzy
855
  msgid "Thumbnail height"
856
  msgstr "Los parámetros del thumbnail:"
857
 
858
+ #: top-10.php:632
859
  #, fuzzy
860
  msgid "Thumbnail width"
861
  msgstr "Los parámetros del thumbnail:"
862
 
863
+ #: top-10.php:772
864
  msgid "<h3>Popular Posts</h3>"
865
  msgstr "Los posts populares"
866
 
867
+ #: top-10.php:773
868
  msgid "<h3>Daily Popular</h3>"
869
  msgstr "Diario Populares"
870
 
871
+ #: top-10.php:774
872
  #, fuzzy
873
  msgid "No top posts yet"
874
  msgstr "Reiniciar el Top de los 10 posts más populares"
875
 
876
+ #: top-10.php:1245
877
  msgid "Once Weekly"
878
  msgstr ""
879
 
880
+ #: top-10.php:1249
881
  msgid "Once Fortnightly"
882
  msgstr ""
883
 
884
+ #: top-10.php:1253
885
  msgid "Once Monthly"
886
  msgstr ""
887
 
888
+ #: top-10.php:1323
889
  msgid "Settings"
890
  msgstr "Los ajustes"
891
 
892
+ #: top-10.php:1346
893
  msgid "Donate"
894
  msgstr "Subvencionar"
895
 
896
+ #~ msgid "Display the posts popular this week"
897
+ #~ msgstr "Mostrar los posts populares de esta semana"
898
+
899
  #, fuzzy
900
  #~ msgid "This option uses JavaScript and will increase your page load time"
901
  #~ msgstr ""
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -12,201 +12,215 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Les options sont sauvegardées avec succès"
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Options par défaut sont définies"
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Le nombre de populaires sur le forum"
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
83
 
84
- #: admin.inc.php:200
85
  msgid ""
86
  "Instead of displaying popular posts fromt he past day, this setting lets you "
87
  "display posts for as many days as you want. This can be overridden in the "
88
  "widget."
89
  msgstr ""
90
 
91
- #: admin.inc.php:203
92
  msgid "Post types to include in results (including custom post types)"
93
  msgstr ""
94
 
95
- #: admin.inc.php:214
96
  msgid "List of post or page IDs to exclude from the results: "
97
  msgstr ""
98
 
99
- #: admin.inc.php:216 admin.inc.php:352
100
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
101
  msgstr ""
102
 
103
- #: admin.inc.php:220
104
  msgid "Exclude Categories: "
105
  msgstr "Exclure les catégories:"
106
 
107
- #: admin.inc.php:235
108
  msgid ""
109
  "Comma separated list of category slugs. The field above has an autocomplete "
110
  "so simply start typing in the starting letters and it will prompt you with "
111
  "options"
112
  msgstr ""
113
 
114
- #: admin.inc.php:240
115
  #, fuzzy
116
  msgid "Display number of views on:"
117
  msgstr "Afficher le nombre des visionnages du message?"
118
 
119
- #: admin.inc.php:242
120
  msgid "Posts"
121
  msgstr ""
122
 
123
- #: admin.inc.php:243
124
  #, fuzzy
125
  msgid "Pages"
126
  msgstr "Page"
127
 
128
- #: admin.inc.php:244
129
  msgid "Home page"
130
  msgstr ""
131
 
132
- #: admin.inc.php:245
133
  msgid "Feeds"
134
  msgstr ""
135
 
136
- #: admin.inc.php:246
137
  msgid "Category archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:247
141
  msgid "Tag archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:248
145
  msgid "Other archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:249
149
  msgid ""
150
- "If you choose to disable this, please add <code>&lt;?php "
151
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
152
- "template file where you want it displayed"
153
  msgstr ""
154
 
155
- #: admin.inc.php:252
156
  msgid "Always display latest post count"
157
  msgstr ""
158
 
159
- #: admin.inc.php:254
160
  msgid ""
161
  "This option uses JavaScript and will increase your page load time. Turn this "
162
  "off if you are not using caching plugins or are OK with displaying older "
163
  "cached counts."
164
  msgstr ""
165
 
166
- #: admin.inc.php:257
167
  msgid "Track visits of authors on their own posts?"
168
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
169
 
170
- #: admin.inc.php:259
171
  msgid ""
172
  "Disabling this option will stop authors visits tracked on their own posts"
173
  msgstr ""
174
 
175
- #: admin.inc.php:262
176
  #, fuzzy
177
  msgid "Track visits of admins?"
178
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
179
 
180
- #: admin.inc.php:264
181
  msgid "Disabling this option will stop admin visits being tracked."
182
  msgstr ""
183
 
184
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
185
  msgid "Display page views on Posts and Pages in Admin"
186
  msgstr ""
187
 
188
- #: admin.inc.php:270
189
  msgid ""
190
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
191
  "and All Pages"
192
  msgstr ""
193
 
194
- #: admin.inc.php:273
195
  #, fuzzy
196
  msgid "Show number of views to non-admins"
197
  msgstr "Afficher le nombre des visionnages sur les pages?"
198
 
199
- #: admin.inc.php:276
200
  msgid ""
201
  "If you disable this then non-admins won't see the above columns or view the "
202
  "independent pages with the top posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:279
206
  msgid "Link to Top 10 plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:282
210
  #, fuzzy
211
  msgid ""
212
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -216,17 +230,17 @@ msgstr ""
216
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
217
  "mais nous vous y remercions!"
218
 
219
- #: admin.inc.php:289
220
  #, fuzzy
221
  msgid "Output options"
222
  msgstr "Paramètres de sortie"
223
 
224
- #: admin.inc.php:292
225
  #, fuzzy
226
  msgid "Format to display the post views:"
227
  msgstr "Format d’affichage de la quantité en:"
228
 
229
- #: admin.inc.php:294
230
  #, fuzzy
231
  msgid ""
232
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -239,11 +253,11 @@ msgstr ""
239
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
240
  "123 times, 23 visits today)</code>"
241
 
242
- #: admin.inc.php:297
243
  msgid "What do display when there are no visits?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:299
247
  msgid ""
248
  "This text applies only when there are 0 hits for the post and it isn't a "
249
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -251,163 +265,173 @@ msgid ""
251
  "option."
252
  msgstr ""
253
 
254
- #: admin.inc.php:302
255
  msgid "Title of popular posts: "
256
  msgstr "Les en-têtes des messages populaires"
257
 
258
- #: admin.inc.php:305
259
  msgid "Title of daily popular posts: "
260
  msgstr "Les en-têtes des messages populaires journaliers"
261
 
262
- #: admin.inc.php:308
263
  msgid "When there are no posts, what should be shown?"
264
  msgstr ""
265
 
266
- #: admin.inc.php:312
267
  msgid "Blank Output"
268
  msgstr ""
269
 
270
- #: admin.inc.php:316
271
  msgid "Display:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:320
275
  msgid "Show post excerpt in list?"
276
  msgstr "Afficher le fragment du message dans la liste?"
277
 
278
- #: admin.inc.php:323
279
  msgid "Length of excerpt (in words): "
280
  msgstr "Longueur du fragment (mots):"
281
 
282
- #: admin.inc.php:326
283
  #, fuzzy
284
  msgid "Show post author in list?"
285
  msgstr "Afficher le fragment du message dans la liste?"
286
 
287
- #: admin.inc.php:329
288
  #, fuzzy
289
  msgid "Show post date in list?"
290
  msgstr "Afficher le fragment du message dans la liste?"
291
 
292
- #: admin.inc.php:332
293
  msgid "Limit post title length (in characters)"
294
  msgstr ""
295
 
296
- #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show view count in list?"
299
  msgstr "Afficher le fragment du message dans la liste?"
300
 
301
- #: admin.inc.php:338
302
  msgid "Always display latest post count in the daily lists?"
303
  msgstr ""
304
 
305
- #: admin.inc.php:340
306
  msgid ""
307
  "This option uses JavaScript and will increase your page load time. When you "
308
  "enable this option, the daily widget will not use the options set there, but "
309
  "options will need to be set on this screen."
310
  msgstr ""
311
 
312
- #: admin.inc.php:343
313
  msgid "Open links in new window"
314
  msgstr ""
315
 
316
- #: admin.inc.php:346
317
  msgid "Add nofollow attribute to links in the list"
318
  msgstr ""
319
 
320
- #: admin.inc.php:349
321
  msgid "Exclude display of related posts on these posts / pages"
322
  msgstr ""
323
 
324
- #: admin.inc.php:355
325
  #, fuzzy
326
  msgid "Customise the list HTML"
327
  msgstr "Paramétrer la sortie:"
328
 
329
- #: admin.inc.php:357
330
  msgid "HTML to display before the list of posts: "
331
  msgstr "HTML d'affichage avant la liste des messages:"
332
 
333
- #: admin.inc.php:360
334
  msgid "HTML to display before each list item: "
335
  msgstr "HTML d'affichage avant chaque élément de la liste:"
336
 
337
- #: admin.inc.php:363
338
  msgid "HTML to display after each list item: "
339
  msgstr "HTML d'affichage après chaque élément de la liste:"
340
 
341
- #: admin.inc.php:366
342
  msgid "HTML to display after the list of posts: "
343
  msgstr "HTML d'affichage après la liste des messages:"
344
 
345
- #: admin.inc.php:369
346
  msgid "Post thumbnail options:"
347
  msgstr "Options thumbnail des messages:"
348
 
349
- #: admin.inc.php:371
350
  msgid "Location of post thumbnail:"
351
  msgstr ""
352
 
353
- #: admin.inc.php:375
354
  msgid "Display thumbnails inline with posts, before title"
355
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
356
 
357
- #: admin.inc.php:379
358
  msgid "Display thumbnails inline with posts, after title"
359
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
360
 
361
- #: admin.inc.php:383
362
  msgid "Display only thumbnails, no text"
363
  msgstr "Afficher uniquement le thumbnail, sans le texte"
364
 
365
- #: admin.inc.php:387
366
  msgid "Do not display thumbnails, only text."
367
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
368
 
369
- #: admin.inc.php:391
370
  msgid "Width of the thumbnail: "
371
  msgstr ""
372
 
373
- #: admin.inc.php:394
374
  msgid "Height of the thumbnail: "
375
  msgstr ""
376
 
377
- #: admin.inc.php:397
378
  msgid "Style attributes / Width and Height HTML attributes:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:401
382
  msgid "Style attributes are used for width and height."
383
  msgstr ""
384
 
385
- #: admin.inc.php:405
386
  msgid "HTML width and height attributes are used for width and height."
387
  msgstr ""
388
 
389
- #: admin.inc.php:409
390
  msgid "Use timthumb to generate thumbnails? "
391
  msgstr ""
392
 
393
- #: admin.inc.php:412
394
  msgid ""
395
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
396
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
397
  msgstr ""
398
 
399
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
400
  #, fuzzy
401
  msgid "Post thumbnail meta field name: "
402
  msgstr "Options thumbnail des messages:"
403
 
404
- #: admin.inc.php:418
405
  msgid ""
406
  "The value of this field should contain the image source and is set in the "
407
  "<em>Add New Post</em> screen"
408
  msgstr ""
409
 
410
- #: admin.inc.php:421
411
  #, fuzzy
412
  msgid ""
413
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -418,7 +442,7 @@ msgstr ""
418
  "première image de la résolution correspondante du fichier est de taille "
419
  "supérieure"
420
 
421
- #: admin.inc.php:424
422
  #, fuzzy
423
  msgid ""
424
  "This could slow down the loading of your page if the first image in the "
@@ -429,11 +453,11 @@ msgstr ""
429
  "première image de la résolution correspondante du fichier est de taille "
430
  "supérieure"
431
 
432
- #: admin.inc.php:427
433
  msgid "Use default thumbnail? "
434
  msgstr ""
435
 
436
- #: admin.inc.php:430
437
  msgid ""
438
  "If checked, when no thumbnail is found, show a default one from the URL "
439
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -442,26 +466,26 @@ msgstr ""
442
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
443
  "été retrouvé, ne pas afficher l'image."
444
 
445
- #: admin.inc.php:433
446
  msgid "Default thumbnail: "
447
  msgstr ""
448
 
449
- #: admin.inc.php:437
450
  msgid ""
451
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
452
  "then it will check the meta field. If this is not available, then it will "
453
  "show the default image as specified above"
454
  msgstr ""
455
 
456
- #: admin.inc.php:444
457
  msgid "Custom CSS"
458
  msgstr ""
459
 
460
- #: admin.inc.php:447
461
  msgid "Use default style included in the plugin?"
462
  msgstr ""
463
 
464
- #: admin.inc.php:450
465
  msgid ""
466
  "Top 10 includes a default style that makes your popular posts list to look "
467
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -469,36 +493,36 @@ msgid ""
469
  "Widget."
470
  msgstr ""
471
 
472
- #: admin.inc.php:453
473
  msgid "Custom CSS to add to header:"
474
  msgstr ""
475
 
476
- #: admin.inc.php:456
477
  msgid ""
478
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
479
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
480
  "available CSS classes to style."
481
  msgstr ""
482
 
483
- #: admin.inc.php:463 admin.inc.php:529
484
  #, fuzzy
485
  msgid "Save Options"
486
  msgstr "Options:"
487
 
488
- #: admin.inc.php:464
489
  #, fuzzy
490
  msgid "Default Options"
491
  msgstr "Paramètres de sortie"
492
 
493
- #: admin.inc.php:464
494
  msgid "Do you want to set options to Default?"
495
  msgstr "Définir les paramètres par défaut?"
496
 
497
- #: admin.inc.php:473
498
  msgid "Maintenance"
499
  msgstr ""
500
 
501
- #: admin.inc.php:477
502
  msgid ""
503
  "Over time the Daily Top 10 database grows in size, which reduces the "
504
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -506,65 +530,65 @@ msgid ""
506
  "will automatically delete entries older than 90 days."
507
  msgstr ""
508
 
509
- #: admin.inc.php:478
510
  msgid ""
511
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
512
  "everytime the job is rescheduled (i.e. you change the settings below)."
513
  msgstr ""
514
 
515
- #: admin.inc.php:481
516
  msgid "Enable scheduled maintenance of daily tables:"
517
  msgstr ""
518
 
519
- #: admin.inc.php:485
520
  msgid "Time to run maintenance"
521
  msgstr ""
522
 
523
- #: admin.inc.php:486
524
  msgid "hrs"
525
  msgstr ""
526
 
527
- #: admin.inc.php:486
528
  msgid "min"
529
  msgstr ""
530
 
531
- #: admin.inc.php:488
532
  msgid "How often should the maintenance be run:"
533
  msgstr ""
534
 
535
- #: admin.inc.php:492
536
  msgid "Daily"
537
  msgstr ""
538
 
539
- #: admin.inc.php:496
540
  msgid "Weekly"
541
  msgstr ""
542
 
543
- #: admin.inc.php:500
544
  msgid "Fortnightly"
545
  msgstr ""
546
 
547
- #: admin.inc.php:504
548
  msgid "Monthly"
549
  msgstr ""
550
 
551
- #: admin.inc.php:513
552
  msgid "The cron job has been scheduled. Maintenance will run "
553
  msgstr ""
554
 
555
- #: admin.inc.php:518
556
  msgid "The cron job is missing. Please resave this page to add the job"
557
  msgstr ""
558
 
559
- #: admin.inc.php:523
560
  msgid "Maintenance is turned off"
561
  msgstr ""
562
 
563
- #: admin.inc.php:537
564
  msgid "Reset count"
565
  msgstr "Réinitialiser le compteur"
566
 
567
- #: admin.inc.php:540
568
  msgid ""
569
  "This cannot be reversed. Make sure that your database has been backed up "
570
  "before proceeding"
@@ -572,270 +596,306 @@ msgstr ""
572
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
573
  "sauvegardée avant de poursuivre."
574
 
575
- #: admin.inc.php:543
576
  #, fuzzy
577
  msgid "Reset Popular Posts"
578
  msgstr "Postes populaires"
579
 
580
- #: admin.inc.php:543
581
  msgid "Are you sure you want to reset the popular posts?"
582
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
583
 
584
- #: admin.inc.php:544
585
  #, fuzzy
586
  msgid "Reset Daily Popular Posts"
587
  msgstr "Postes populaires journaliers"
588
 
589
- #: admin.inc.php:544
590
  msgid "Are you sure you want to reset the daily popular posts?"
591
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
592
 
593
- #: admin.inc.php:545
594
  msgid "Clear duplicates"
595
  msgstr ""
596
 
597
- #: admin.inc.php:545
598
  msgid "This will delete the duplicate entries in the tables. Proceed?"
599
  msgstr ""
600
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
601
 
602
- #: admin.inc.php:593 admin.inc.php:979
603
  msgid "Popular Posts"
604
  msgstr "Postes populaires"
605
 
606
- #: admin.inc.php:593 admin.inc.php:688
607
  msgid "Daily Popular Posts"
608
  msgstr "Postes populaires journaliers"
609
 
610
- #: admin.inc.php:621
611
  msgid "Support the development"
612
  msgstr "Soutenir le projet"
613
 
614
- #: admin.inc.php:630
 
 
 
 
615
  msgid "Enter amount in USD: "
616
  msgstr "Saisir le montant en dollars US"
617
 
618
- #: admin.inc.php:634
619
- msgid "Send your donation to the author of"
 
620
  msgstr "Envoyer sa dotation à l'auteur"
621
 
622
- #: admin.inc.php:641
623
  msgid "Follow me"
624
  msgstr ""
625
 
626
- #: admin.inc.php:651
627
  #, fuzzy
628
  msgid "Quick links"
629
  msgstr "Liens rapides"
630
 
631
- #: admin.inc.php:655
632
  #, fuzzy
633
  msgid "Top 10 plugin page"
634
  msgstr "Page de plugin"
635
 
636
- #: admin.inc.php:656
637
  msgid "Other plugins"
638
  msgstr "Autres plugins"
639
 
640
- #: admin.inc.php:657
641
  msgid "Ajay's blog"
642
  msgstr "Blog Ajay"
643
 
644
- #: admin.inc.php:658
645
  msgid "FAQ"
646
  msgstr ""
647
 
648
- #: admin.inc.php:659 top-10.php:1267
649
  msgid "Support"
650
  msgstr "Service d'assistance"
651
 
652
- #: admin.inc.php:660
653
  msgid "Reviews"
654
  msgstr ""
655
 
656
- #: admin.inc.php:679 admin.inc.php:682
657
  #, fuzzy
658
  msgid "Top 10 Settings"
659
  msgstr "Paramètres"
660
 
661
- #: admin.inc.php:679
662
  msgid "Top 10"
663
  msgstr "Тоp 10"
664
 
665
- #: admin.inc.php:685
666
  #, fuzzy
667
  msgid "Overall Popular Posts"
668
  msgstr "Voir tous les postes populaires"
669
 
670
- #: admin.inc.php:850
671
  #, php-format
672
  msgid "Results %1$s to %2$s of %3$s"
673
  msgstr ""
674
 
675
- #: admin.inc.php:854
676
  #, php-format
677
  msgid "Page %s of %s"
678
  msgstr ""
679
 
680
- #: admin.inc.php:866
681
  msgid "View Daily Popular Posts"
682
  msgstr "Voir les postes populaires journaliers"
683
 
684
- #: admin.inc.php:869 admin.inc.php:882
685
  msgid "Results per-page:"
686
  msgstr "Résultats par page:"
687
 
688
- #: admin.inc.php:879
689
  msgid "View Overall Popular Posts"
690
  msgstr "Voir tous les postes populaires"
691
 
692
- #: admin.inc.php:908
693
  msgid "Previous"
694
  msgstr "Précédente"
695
 
696
- #: admin.inc.php:936
697
  msgid "Next"
698
  msgstr "Suivante"
699
 
700
- #: admin.inc.php:980
701
  msgid "Daily Popular"
702
  msgstr "Populaires journaliers"
703
 
704
- #: admin.inc.php:998
705
  #, fuzzy
706
  msgid "Total Views"
707
  msgstr "Total/aujourd'hui visionnages"
708
 
709
- #: admin.inc.php:999
710
  #, fuzzy
711
  msgid "Today's Views"
712
  msgstr "Total/aujourd'hui visionnages"
713
 
714
- #: admin.inc.php:1000
715
  #, fuzzy
716
  msgid "Views"
717
  msgstr "Total/aujourd'hui visionnages"
718
 
719
- #: top-10.php:438
720
- msgid " by "
 
 
 
 
 
 
 
721
  msgstr ""
722
 
723
- #: top-10.php:524
724
- msgid "Display the posts popular this week"
725
- msgstr "Afficher les postes populaires de la semaine"
726
 
727
- #: top-10.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
728
  #, fuzzy
729
  msgid "Popular Posts [Top 10]"
730
  msgstr "Postes populaires"
731
 
732
- #: top-10.php:543
 
 
 
 
 
733
  msgid "Title"
734
  msgstr ""
735
 
736
- #: top-10.php:548
737
  msgid "No. of posts"
738
  msgstr ""
739
 
740
- #: top-10.php:553
741
  msgid "Overall"
742
  msgstr ""
743
 
744
- #: top-10.php:554
745
  msgid "Custom time period (Enter below)"
746
  msgstr ""
747
 
748
- #: top-10.php:559
749
  msgid "Range in number of days (applies only to custom option above)"
750
  msgstr ""
751
 
752
- #: top-10.php:564
753
  #, fuzzy
754
- msgid " Show count?"
755
  msgstr "Afficher le fragment du message dans la liste?"
756
 
757
- #: top-10.php:569
758
  #, fuzzy
759
- msgid " Show excerpt?"
760
  msgstr "Afficher le fragment du message dans la liste?"
761
 
762
- #: top-10.php:574
763
- msgid " Show author?"
764
- msgstr ""
 
765
 
766
- #: top-10.php:579
767
  #, fuzzy
768
- msgid " Show date?"
769
  msgstr "Afficher le fragment du message dans la liste?"
770
 
771
- #: top-10.php:583
772
  #, fuzzy
773
  msgid "Thumbnail options"
774
  msgstr "Options thumbnail des messages:"
775
 
776
- #: top-10.php:585
777
  #, fuzzy
778
  msgid "Thumbnails inline, before title"
779
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
780
 
781
- #: top-10.php:586
782
  #, fuzzy
783
  msgid "Thumbnails inline, after title"
784
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
785
 
786
- #: top-10.php:587
787
  #, fuzzy
788
  msgid "Only thumbnails, no text"
789
  msgstr "Afficher uniquement le thumbnail, sans le texte"
790
 
791
- #: top-10.php:588
792
  #, fuzzy
793
  msgid "No thumbnails, only text."
794
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
795
 
796
- #: top-10.php:593
797
  #, fuzzy
798
  msgid "Thumbnail height"
799
  msgstr "Options thumbnail des messages:"
800
 
801
- #: top-10.php:598
802
  #, fuzzy
803
  msgid "Thumbnail width"
804
  msgstr "Options thumbnail des messages:"
805
 
806
- #: top-10.php:719
807
  msgid "<h3>Popular Posts</h3>"
808
  msgstr "<h3>Postes populaires</h3>"
809
 
810
- #: top-10.php:720
811
  msgid "<h3>Daily Popular</h3>"
812
  msgstr "<h3>Populaires Journaliers</h3>"
813
 
814
- #: top-10.php:721
815
  #, fuzzy
816
  msgid "No top posts yet"
817
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
818
 
819
- #: top-10.php:1184
820
  msgid "Once Weekly"
821
  msgstr ""
822
 
823
- #: top-10.php:1188
824
  msgid "Once Fortnightly"
825
  msgstr ""
826
 
827
- #: top-10.php:1192
828
  msgid "Once Monthly"
829
  msgstr ""
830
 
831
- #: top-10.php:1255
832
  msgid "Settings"
833
  msgstr "Paramètres"
834
 
835
- #: top-10.php:1268
836
  msgid "Donate"
837
  msgstr "Conribuer"
838
 
 
 
 
839
  #, fuzzy
840
  #~ msgid "This option uses JavaScript and will increase your page load time"
841
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Les options sont sauvegardées avec succès"
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Options par défaut sont définies"
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Le nombre de populaires sur le forum"
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
  "Le populaire journalier doit contenir l'information sur le nombre des jours"
88
 
89
+ #: admin.inc.php:204
90
  msgid ""
91
  "Instead of displaying popular posts fromt he past day, this setting lets you "
92
  "display posts for as many days as you want. This can be overridden in the "
93
  "widget."
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:218
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
+ #: admin.inc.php:220 admin.inc.php:361
105
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:224
109
  msgid "Exclude Categories: "
110
  msgstr "Exclure les catégories:"
111
 
112
+ #: admin.inc.php:239
113
  msgid ""
114
  "Comma separated list of category slugs. The field above has an autocomplete "
115
  "so simply start typing in the starting letters and it will prompt you with "
116
  "options"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:244
120
  #, fuzzy
121
  msgid "Display number of views on:"
122
  msgstr "Afficher le nombre des visionnages du message?"
123
 
124
+ #: admin.inc.php:246
125
  msgid "Posts"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:247
129
  #, fuzzy
130
  msgid "Pages"
131
  msgstr "Page"
132
 
133
+ #: admin.inc.php:248
134
  msgid "Home page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:249
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:250
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:251
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:252
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:253
154
  msgid ""
155
+ "If you choose to disable this, please add <code>&lt;?php if "
156
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
157
+ "</code> to your template file where you want it displayed"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:256
161
  msgid "Always display latest post count"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:258
165
  msgid ""
166
  "This option uses JavaScript and will increase your page load time. Turn this "
167
  "off if you are not using caching plugins or are OK with displaying older "
168
  "cached counts."
169
  msgstr ""
170
 
171
+ #: admin.inc.php:261
172
  msgid "Track visits of authors on their own posts?"
173
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
174
 
175
+ #: admin.inc.php:263
176
  msgid ""
177
  "Disabling this option will stop authors visits tracked on their own posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid "Track visits of admins?"
183
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
184
 
185
+ #: admin.inc.php:268
186
  msgid "Disabling this option will stop admin visits being tracked."
187
  msgstr ""
188
 
189
+ #: admin.inc.php:271
190
+ #, fuzzy
191
+ msgid "Track visits of Editors?"
192
+ msgstr "Suivre les visites des auteurs de leurs propres messages?"
193
+
194
+ #: admin.inc.php:273
195
+ msgid "Disabling this option will stop editor visits being tracked."
196
+ msgstr ""
197
+
198
+ #: admin.inc.php:276
199
  msgid "Display page views on Posts and Pages in Admin"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:279
203
  msgid ""
204
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
205
  "and All Pages"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:282
209
  #, fuzzy
210
  msgid "Show number of views to non-admins"
211
  msgstr "Afficher le nombre des visionnages sur les pages?"
212
 
213
+ #: admin.inc.php:285
214
  msgid ""
215
  "If you disable this then non-admins won't see the above columns or view the "
216
  "independent pages with the top posts"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:288
220
  msgid "Link to Top 10 plugin page"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  #, fuzzy
225
  msgid ""
226
  "A link to the plugin is added as an extra list item to the list of popular "
230
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
231
  "mais nous vous y remercions!"
232
 
233
+ #: admin.inc.php:298
234
  #, fuzzy
235
  msgid "Output options"
236
  msgstr "Paramètres de sortie"
237
 
238
+ #: admin.inc.php:301
239
  #, fuzzy
240
  msgid "Format to display the post views:"
241
  msgstr "Format d’affichage de la quantité en:"
242
 
243
+ #: admin.inc.php:303
244
  #, fuzzy
245
  msgid ""
246
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
254
  "123 times, 23 visits today)</code>"
255
 
256
+ #: admin.inc.php:306
257
  msgid "What do display when there are no visits?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:308
261
  msgid ""
262
  "This text applies only when there are 0 hits for the post and it isn't a "
263
  "single page. e.g. if you display post views on the homepage or archives then "
265
  "option."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:311
269
  msgid "Title of popular posts: "
270
  msgstr "Les en-têtes des messages populaires"
271
 
272
+ #: admin.inc.php:314
273
  msgid "Title of daily popular posts: "
274
  msgstr "Les en-têtes des messages populaires journaliers"
275
 
276
+ #: admin.inc.php:317
277
  msgid "When there are no posts, what should be shown?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Blank Output"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:325
285
  msgid "Display:"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:329
289
  msgid "Show post excerpt in list?"
290
  msgstr "Afficher le fragment du message dans la liste?"
291
 
292
+ #: admin.inc.php:332
293
  msgid "Length of excerpt (in words): "
294
  msgstr "Longueur du fragment (mots):"
295
 
296
+ #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show post author in list?"
299
  msgstr "Afficher le fragment du message dans la liste?"
300
 
301
+ #: admin.inc.php:338
302
  #, fuzzy
303
  msgid "Show post date in list?"
304
  msgstr "Afficher le fragment du message dans la liste?"
305
 
306
+ #: admin.inc.php:341
307
  msgid "Limit post title length (in characters)"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:344
311
  #, fuzzy
312
  msgid "Show view count in list?"
313
  msgstr "Afficher le fragment du message dans la liste?"
314
 
315
+ #: admin.inc.php:347
316
  msgid "Always display latest post count in the daily lists?"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:349
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. When you "
322
  "enable this option, the daily widget will not use the options set there, but "
323
  "options will need to be set on this screen."
324
  msgstr ""
325
 
326
+ #: admin.inc.php:352
327
  msgid "Open links in new window"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:355
331
  msgid "Add nofollow attribute to links in the list"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:358
335
  msgid "Exclude display of related posts on these posts / pages"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:364
339
  #, fuzzy
340
  msgid "Customise the list HTML"
341
  msgstr "Paramétrer la sortie:"
342
 
343
+ #: admin.inc.php:366
344
  msgid "HTML to display before the list of posts: "
345
  msgstr "HTML d'affichage avant la liste des messages:"
346
 
347
+ #: admin.inc.php:369
348
  msgid "HTML to display before each list item: "
349
  msgstr "HTML d'affichage avant chaque élément de la liste:"
350
 
351
+ #: admin.inc.php:372
352
  msgid "HTML to display after each list item: "
353
  msgstr "HTML d'affichage après chaque élément de la liste:"
354
 
355
+ #: admin.inc.php:375
356
  msgid "HTML to display after the list of posts: "
357
  msgstr "HTML d'affichage après la liste des messages:"
358
 
359
+ #: admin.inc.php:378
360
  msgid "Post thumbnail options:"
361
  msgstr "Options thumbnail des messages:"
362
 
363
+ #: admin.inc.php:380
364
  msgid "Location of post thumbnail:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:384
368
  msgid "Display thumbnails inline with posts, before title"
369
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
370
 
371
+ #: admin.inc.php:388
372
  msgid "Display thumbnails inline with posts, after title"
373
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
374
 
375
+ #: admin.inc.php:392
376
  msgid "Display only thumbnails, no text"
377
  msgstr "Afficher uniquement le thumbnail, sans le texte"
378
 
379
+ #: admin.inc.php:396
380
  msgid "Do not display thumbnails, only text."
381
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
382
 
383
+ #: admin.inc.php:400
384
  msgid "Width of the thumbnail: "
385
  msgstr ""
386
 
387
+ #: admin.inc.php:403
388
  msgid "Height of the thumbnail: "
389
  msgstr ""
390
 
391
+ #: admin.inc.php:406
392
  msgid "Style attributes / Width and Height HTML attributes:"
393
  msgstr ""
394
 
395
+ #: admin.inc.php:410
396
  msgid "Style attributes are used for width and height."
397
  msgstr ""
398
 
399
+ #: admin.inc.php:414
400
  msgid "HTML width and height attributes are used for width and height."
401
  msgstr ""
402
 
403
+ #: admin.inc.php:418
404
  msgid "Use timthumb to generate thumbnails? "
405
  msgstr ""
406
 
407
+ #: admin.inc.php:421
408
  msgid ""
409
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
410
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
411
  msgstr ""
412
 
413
+ #: admin.inc.php:424
414
+ msgid "Quality of thumbnails generated by timthumb:"
415
+ msgstr ""
416
+
417
+ #: admin.inc.php:427
418
+ msgid ""
419
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
420
+ "file size. Suggested maximum value is 95. Default is 75."
421
+ msgstr ""
422
+
423
+ #: admin.inc.php:430
424
  #, fuzzy
425
  msgid "Post thumbnail meta field name: "
426
  msgstr "Options thumbnail des messages:"
427
 
428
+ #: admin.inc.php:433
429
  msgid ""
430
  "The value of this field should contain the image source and is set in the "
431
  "<em>Add New Post</em> screen"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:436
435
  #, fuzzy
436
  msgid ""
437
  "If the postmeta is not set, then should the plugin extract the first image "
442
  "première image de la résolution correspondante du fichier est de taille "
443
  "supérieure"
444
 
445
+ #: admin.inc.php:439
446
  #, fuzzy
447
  msgid ""
448
  "This could slow down the loading of your page if the first image in the "
453
  "première image de la résolution correspondante du fichier est de taille "
454
  "supérieure"
455
 
456
+ #: admin.inc.php:442
457
  msgid "Use default thumbnail? "
458
  msgstr ""
459
 
460
+ #: admin.inc.php:445
461
  msgid ""
462
  "If checked, when no thumbnail is found, show a default one from the URL "
463
  "below. If not checked and no thumbnail is found, no image will be shown."
466
  "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
467
  "été retrouvé, ne pas afficher l'image."
468
 
469
+ #: admin.inc.php:448
470
  msgid "Default thumbnail: "
471
  msgstr ""
472
 
473
+ #: admin.inc.php:452
474
  msgid ""
475
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
476
  "then it will check the meta field. If this is not available, then it will "
477
  "show the default image as specified above"
478
  msgstr ""
479
 
480
+ #: admin.inc.php:459
481
  msgid "Custom CSS"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:462
485
  msgid "Use default style included in the plugin?"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:465
489
  msgid ""
490
  "Top 10 includes a default style that makes your popular posts list to look "
491
  "pretty. Check the box above if you want to use this. You will need to select "
493
  "Widget."
494
  msgstr ""
495
 
496
+ #: admin.inc.php:468
497
  msgid "Custom CSS to add to header:"
498
  msgstr ""
499
 
500
+ #: admin.inc.php:471
501
  msgid ""
502
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
503
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
504
  "available CSS classes to style."
505
  msgstr ""
506
 
507
+ #: admin.inc.php:478 admin.inc.php:544
508
  #, fuzzy
509
  msgid "Save Options"
510
  msgstr "Options:"
511
 
512
+ #: admin.inc.php:479
513
  #, fuzzy
514
  msgid "Default Options"
515
  msgstr "Paramètres de sortie"
516
 
517
+ #: admin.inc.php:479
518
  msgid "Do you want to set options to Default?"
519
  msgstr "Définir les paramètres par défaut?"
520
 
521
+ #: admin.inc.php:488
522
  msgid "Maintenance"
523
  msgstr ""
524
 
525
+ #: admin.inc.php:492
526
  msgid ""
527
  "Over time the Daily Top 10 database grows in size, which reduces the "
528
  "performance of the plugin. Cleaning the database at regular intervals could "
530
  "will automatically delete entries older than 90 days."
531
  msgstr ""
532
 
533
+ #: admin.inc.php:493
534
  msgid ""
535
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
536
  "everytime the job is rescheduled (i.e. you change the settings below)."
537
  msgstr ""
538
 
539
+ #: admin.inc.php:496
540
  msgid "Enable scheduled maintenance of daily tables:"
541
  msgstr ""
542
 
543
+ #: admin.inc.php:500
544
  msgid "Time to run maintenance"
545
  msgstr ""
546
 
547
+ #: admin.inc.php:501
548
  msgid "hrs"
549
  msgstr ""
550
 
551
+ #: admin.inc.php:501
552
  msgid "min"
553
  msgstr ""
554
 
555
+ #: admin.inc.php:503
556
  msgid "How often should the maintenance be run:"
557
  msgstr ""
558
 
559
+ #: admin.inc.php:507
560
  msgid "Daily"
561
  msgstr ""
562
 
563
+ #: admin.inc.php:511
564
  msgid "Weekly"
565
  msgstr ""
566
 
567
+ #: admin.inc.php:515
568
  msgid "Fortnightly"
569
  msgstr ""
570
 
571
+ #: admin.inc.php:519
572
  msgid "Monthly"
573
  msgstr ""
574
 
575
+ #: admin.inc.php:528
576
  msgid "The cron job has been scheduled. Maintenance will run "
577
  msgstr ""
578
 
579
+ #: admin.inc.php:533
580
  msgid "The cron job is missing. Please resave this page to add the job"
581
  msgstr ""
582
 
583
+ #: admin.inc.php:538
584
  msgid "Maintenance is turned off"
585
  msgstr ""
586
 
587
+ #: admin.inc.php:552
588
  msgid "Reset count"
589
  msgstr "Réinitialiser le compteur"
590
 
591
+ #: admin.inc.php:555
592
  msgid ""
593
  "This cannot be reversed. Make sure that your database has been backed up "
594
  "before proceeding"
596
  "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
597
  "sauvegardée avant de poursuivre."
598
 
599
+ #: admin.inc.php:558
600
  #, fuzzy
601
  msgid "Reset Popular Posts"
602
  msgstr "Postes populaires"
603
 
604
+ #: admin.inc.php:558
605
  msgid "Are you sure you want to reset the popular posts?"
606
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
607
 
608
+ #: admin.inc.php:559
609
  #, fuzzy
610
  msgid "Reset Daily Popular Posts"
611
  msgstr "Postes populaires journaliers"
612
 
613
+ #: admin.inc.php:559
614
  msgid "Are you sure you want to reset the daily popular posts?"
615
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
616
 
617
+ #: admin.inc.php:560
618
  msgid "Clear duplicates"
619
  msgstr ""
620
 
621
+ #: admin.inc.php:560
622
  msgid "This will delete the duplicate entries in the tables. Proceed?"
623
  msgstr ""
624
  "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
625
 
626
+ #: admin.inc.php:612 admin.inc.php:1010
627
  msgid "Popular Posts"
628
  msgstr "Postes populaires"
629
 
630
+ #: admin.inc.php:614 admin.inc.php:713
631
  msgid "Daily Popular Posts"
632
  msgstr "Postes populaires journaliers"
633
 
634
+ #: admin.inc.php:645
635
  msgid "Support the development"
636
  msgstr "Soutenir le projet"
637
 
638
+ #: admin.inc.php:652
639
+ msgid "Donation for Top 10"
640
+ msgstr ""
641
+
642
+ #: admin.inc.php:654
643
  msgid "Enter amount in USD: "
644
  msgstr "Saisir le montant en dollars US"
645
 
646
+ #: admin.inc.php:658
647
+ #, fuzzy
648
+ msgid "Send your donation to the author of Top 10"
649
  msgstr "Envoyer sa dotation à l'auteur"
650
 
651
+ #: admin.inc.php:665
652
  msgid "Follow me"
653
  msgstr ""
654
 
655
+ #: admin.inc.php:675
656
  #, fuzzy
657
  msgid "Quick links"
658
  msgstr "Liens rapides"
659
 
660
+ #: admin.inc.php:679
661
  #, fuzzy
662
  msgid "Top 10 plugin page"
663
  msgstr "Page de plugin"
664
 
665
+ #: admin.inc.php:680
666
  msgid "Other plugins"
667
  msgstr "Autres plugins"
668
 
669
+ #: admin.inc.php:681
670
  msgid "Ajay's blog"
671
  msgstr "Blog Ajay"
672
 
673
+ #: admin.inc.php:682
674
  msgid "FAQ"
675
  msgstr ""
676
 
677
+ #: admin.inc.php:683 top-10.php:1345
678
  msgid "Support"
679
  msgstr "Service d'assistance"
680
 
681
+ #: admin.inc.php:684
682
  msgid "Reviews"
683
  msgstr ""
684
 
685
+ #: admin.inc.php:704 admin.inc.php:707
686
  #, fuzzy
687
  msgid "Top 10 Settings"
688
  msgstr "Paramètres"
689
 
690
+ #: admin.inc.php:704 admin.inc.php:1183
691
  msgid "Top 10"
692
  msgstr "Тоp 10"
693
 
694
+ #: admin.inc.php:710
695
  #, fuzzy
696
  msgid "Overall Popular Posts"
697
  msgstr "Voir tous les postes populaires"
698
 
699
+ #: admin.inc.php:882
700
  #, php-format
701
  msgid "Results %1$s to %2$s of %3$s"
702
  msgstr ""
703
 
704
+ #: admin.inc.php:886
705
  #, php-format
706
  msgid "Page %s of %s"
707
  msgstr ""
708
 
709
+ #: admin.inc.php:898
710
  msgid "View Daily Popular Posts"
711
  msgstr "Voir les postes populaires journaliers"
712
 
713
+ #: admin.inc.php:901 admin.inc.php:914
714
  msgid "Results per-page:"
715
  msgstr "Résultats par page:"
716
 
717
+ #: admin.inc.php:911
718
  msgid "View Overall Popular Posts"
719
  msgstr "Voir tous les postes populaires"
720
 
721
+ #: admin.inc.php:940
722
  msgid "Previous"
723
  msgstr "Précédente"
724
 
725
+ #: admin.inc.php:968
726
  msgid "Next"
727
  msgstr "Suivante"
728
 
729
+ #: admin.inc.php:1011
730
  msgid "Daily Popular"
731
  msgstr "Populaires journaliers"
732
 
733
+ #: admin.inc.php:1029
734
  #, fuzzy
735
  msgid "Total Views"
736
  msgstr "Total/aujourd'hui visionnages"
737
 
738
+ #: admin.inc.php:1030
739
  #, fuzzy
740
  msgid "Today's Views"
741
  msgstr "Total/aujourd'hui visionnages"
742
 
743
+ #: admin.inc.php:1031
744
  #, fuzzy
745
  msgid "Views"
746
  msgstr "Total/aujourd'hui visionnages"
747
 
748
+ #: admin.inc.php:1217
749
+ #, fuzzy
750
+ msgid "Visit count:"
751
+ msgstr "Réinitialiser le compteur"
752
+
753
+ #: admin.inc.php:1219
754
+ msgid ""
755
+ "Enter a number above to update the visit count. Leaving the above box blank "
756
+ "will set the count to zero"
757
  msgstr ""
758
 
759
+ #: admin.inc.php:1229
760
+ msgid "Location of thumbnail:"
761
+ msgstr ""
762
 
763
+ #: admin.inc.php:1231
764
+ msgid ""
765
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
766
+ "image will be used for the post. It will be resized to the thumbnail size "
767
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
768
+ msgstr ""
769
+
770
+ #: admin.inc.php:1232
771
+ msgid "The URL above is saved in the meta field: "
772
+ msgstr ""
773
+
774
+ #: top-10.php:456
775
+ msgid " by "
776
+ msgstr ""
777
+
778
+ #: top-10.php:550
779
  #, fuzzy
780
  msgid "Popular Posts [Top 10]"
781
  msgstr "Postes populaires"
782
 
783
+ #: top-10.php:551
784
+ #, fuzzy
785
+ msgid "Display popular posts"
786
+ msgstr "Postes populaires journaliers"
787
+
788
+ #: top-10.php:577
789
  msgid "Title"
790
  msgstr ""
791
 
792
+ #: top-10.php:582
793
  msgid "No. of posts"
794
  msgstr ""
795
 
796
+ #: top-10.php:587
797
  msgid "Overall"
798
  msgstr ""
799
 
800
+ #: top-10.php:588
801
  msgid "Custom time period (Enter below)"
802
  msgstr ""
803
 
804
+ #: top-10.php:593
805
  msgid "Range in number of days (applies only to custom option above)"
806
  msgstr ""
807
 
808
+ #: top-10.php:598
809
  #, fuzzy
810
+ msgid "Show count?"
811
  msgstr "Afficher le fragment du message dans la liste?"
812
 
813
+ #: top-10.php:603
814
  #, fuzzy
815
+ msgid "Show excerpt?"
816
  msgstr "Afficher le fragment du message dans la liste?"
817
 
818
+ #: top-10.php:608
819
+ #, fuzzy
820
+ msgid "Show author?"
821
+ msgstr "Afficher le fragment du message dans la liste?"
822
 
823
+ #: top-10.php:613
824
  #, fuzzy
825
+ msgid "Show date?"
826
  msgstr "Afficher le fragment du message dans la liste?"
827
 
828
+ #: top-10.php:617
829
  #, fuzzy
830
  msgid "Thumbnail options"
831
  msgstr "Options thumbnail des messages:"
832
 
833
+ #: top-10.php:619
834
  #, fuzzy
835
  msgid "Thumbnails inline, before title"
836
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
837
 
838
+ #: top-10.php:620
839
  #, fuzzy
840
  msgid "Thumbnails inline, after title"
841
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
842
 
843
+ #: top-10.php:621
844
  #, fuzzy
845
  msgid "Only thumbnails, no text"
846
  msgstr "Afficher uniquement le thumbnail, sans le texte"
847
 
848
+ #: top-10.php:622
849
  #, fuzzy
850
  msgid "No thumbnails, only text."
851
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
852
 
853
+ #: top-10.php:627
854
  #, fuzzy
855
  msgid "Thumbnail height"
856
  msgstr "Options thumbnail des messages:"
857
 
858
+ #: top-10.php:632
859
  #, fuzzy
860
  msgid "Thumbnail width"
861
  msgstr "Options thumbnail des messages:"
862
 
863
+ #: top-10.php:772
864
  msgid "<h3>Popular Posts</h3>"
865
  msgstr "<h3>Postes populaires</h3>"
866
 
867
+ #: top-10.php:773
868
  msgid "<h3>Daily Popular</h3>"
869
  msgstr "<h3>Populaires Journaliers</h3>"
870
 
871
+ #: top-10.php:774
872
  #, fuzzy
873
  msgid "No top posts yet"
874
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
875
 
876
+ #: top-10.php:1245
877
  msgid "Once Weekly"
878
  msgstr ""
879
 
880
+ #: top-10.php:1249
881
  msgid "Once Fortnightly"
882
  msgstr ""
883
 
884
+ #: top-10.php:1253
885
  msgid "Once Monthly"
886
  msgstr ""
887
 
888
+ #: top-10.php:1323
889
  msgid "Settings"
890
  msgstr "Paramètres"
891
 
892
+ #: top-10.php:1346
893
  msgid "Donate"
894
  msgstr "Conribuer"
895
 
896
+ #~ msgid "Display the posts popular this week"
897
+ #~ msgstr "Afficher les postes populaires de la semaine"
898
+
899
  #, fuzzy
900
  #~ msgid "This option uses JavaScript and will increase your page load time"
901
  #~ msgstr ""
languages/tptn-ga_IR.mo CHANGED
Binary file
languages/tptn-ga_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
@@ -12,202 +12,216 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Roghanna shábháil go rathúil."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Roghanna leagtha chun Réamhshocrú."
25
 
26
- #: admin.inc.php:128
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Teideal an post tóir:"
30
 
31
- #: admin.inc.php:134
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Teideal ar tóir an bpost:"
35
 
36
- #: admin.inc.php:141
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
- #: admin.inc.php:152
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
- #: admin.inc.php:156
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
- #: admin.inc.php:172
49
- msgid "General options"
 
50
  msgstr ""
51
 
52
  #: admin.inc.php:176
 
 
 
 
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
- #: admin.inc.php:181
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:186
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:188
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
- #: admin.inc.php:192
72
  msgid "Number of popular posts to display: "
73
  msgstr "An líon post tóir a thaispeáint:"
74
 
75
- #: admin.inc.php:194
76
  msgid ""
77
  "Maximum number of posts that will be displayed in the list. This option is "
78
  "used if you don't specify the number of posts in the widget or shortcodes"
79
  msgstr ""
80
 
81
- #: admin.inc.php:198
82
  msgid "Daily Popular should contain views of how many days? "
83
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
84
 
85
- #: admin.inc.php:200
86
  msgid ""
87
  "Instead of displaying popular posts fromt he past day, this setting lets you "
88
  "display posts for as many days as you want. This can be overridden in the "
89
  "widget."
90
  msgstr ""
91
 
92
- #: admin.inc.php:203
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
- #: admin.inc.php:214
97
  msgid "List of post or page IDs to exclude from the results: "
98
  msgstr ""
99
 
100
- #: admin.inc.php:216 admin.inc.php:352
101
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
102
  msgstr ""
103
 
104
- #: admin.inc.php:220
105
  msgid "Exclude Categories: "
106
  msgstr ""
107
 
108
- #: admin.inc.php:235
109
  msgid ""
110
  "Comma separated list of category slugs. The field above has an autocomplete "
111
  "so simply start typing in the starting letters and it will prompt you with "
112
  "options"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  #, fuzzy
117
  msgid "Display number of views on:"
118
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
119
 
120
- #: admin.inc.php:242
121
  msgid "Posts"
122
  msgstr ""
123
 
124
- #: admin.inc.php:243
125
  #, fuzzy
126
  msgid "Pages"
127
  msgstr "Leathanach"
128
 
129
- #: admin.inc.php:244
130
  msgid "Home page"
131
  msgstr ""
132
 
133
- #: admin.inc.php:245
134
  msgid "Feeds"
135
  msgstr ""
136
 
137
- #: admin.inc.php:246
138
  msgid "Category archives"
139
  msgstr ""
140
 
141
- #: admin.inc.php:247
142
  msgid "Tag archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:248
146
  msgid "Other archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:249
150
  msgid ""
151
- "If you choose to disable this, please add <code>&lt;?php "
152
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
153
- "template file where you want it displayed"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Always display latest post count"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid ""
162
  "This option uses JavaScript and will increase your page load time. Turn this "
163
  "off if you are not using caching plugins or are OK with displaying older "
164
  "cached counts."
165
  msgstr ""
166
 
167
- #: admin.inc.php:257
168
  msgid "Track visits of authors on their own posts?"
169
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
170
 
171
- #: admin.inc.php:259
172
  msgid ""
173
  "Disabling this option will stop authors visits tracked on their own posts"
174
  msgstr ""
175
 
176
- #: admin.inc.php:262
177
  #, fuzzy
178
  msgid "Track visits of admins?"
179
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
180
 
181
- #: admin.inc.php:264
182
  msgid "Disabling this option will stop admin visits being tracked."
183
  msgstr ""
184
 
185
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
186
  msgid "Display page views on Posts and Pages in Admin"
187
  msgstr ""
188
 
189
- #: admin.inc.php:270
190
  msgid ""
191
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
192
  "and All Pages"
193
  msgstr ""
194
 
195
- #: admin.inc.php:273
196
  #, fuzzy
197
  msgid "Show number of views to non-admins"
198
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
199
 
200
- #: admin.inc.php:276
201
  msgid ""
202
  "If you disable this then non-admins won't see the above columns or view the "
203
  "independent pages with the top posts"
204
  msgstr ""
205
 
206
- #: admin.inc.php:279
207
  msgid "Link to Top 10 plugin page"
208
  msgstr ""
209
 
210
- #: admin.inc.php:282
211
  #, fuzzy
212
  msgid ""
213
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -216,17 +230,17 @@ msgstr ""
216
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
217
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
218
 
219
- #: admin.inc.php:289
220
  #, fuzzy
221
  msgid "Output options"
222
  msgstr "roghanna"
223
 
224
- #: admin.inc.php:292
225
  #, fuzzy
226
  msgid "Format to display the post views:"
227
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
228
 
229
- #: admin.inc.php:294
230
  #, fuzzy
231
  msgid ""
232
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -239,11 +253,11 @@ msgstr ""
239
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
240
  "123 amanna, 23 cuairt inniu) </ cód>"
241
 
242
- #: admin.inc.php:297
243
  msgid "What do display when there are no visits?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:299
247
  msgid ""
248
  "This text applies only when there are 0 hits for the post and it isn't a "
249
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -251,207 +265,217 @@ msgid ""
251
  "option."
252
  msgstr ""
253
 
254
- #: admin.inc.php:302
255
  msgid "Title of popular posts: "
256
  msgstr "Teideal an post tóir:"
257
 
258
- #: admin.inc.php:305
259
  msgid "Title of daily popular posts: "
260
  msgstr "Teideal ar tóir an bpost:"
261
 
262
- #: admin.inc.php:308
263
  msgid "When there are no posts, what should be shown?"
264
  msgstr ""
265
 
266
- #: admin.inc.php:312
267
  msgid "Blank Output"
268
  msgstr ""
269
 
270
- #: admin.inc.php:316
271
  msgid "Display:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:320
275
  msgid "Show post excerpt in list?"
276
  msgstr ""
277
 
278
- #: admin.inc.php:323
279
  msgid "Length of excerpt (in words): "
280
  msgstr ""
281
 
282
- #: admin.inc.php:326
283
  msgid "Show post author in list?"
284
  msgstr ""
285
 
286
- #: admin.inc.php:329
287
  msgid "Show post date in list?"
288
  msgstr ""
289
 
290
- #: admin.inc.php:332
291
  msgid "Limit post title length (in characters)"
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  msgid "Show view count in list?"
296
  msgstr ""
297
 
298
- #: admin.inc.php:338
299
  msgid "Always display latest post count in the daily lists?"
300
  msgstr ""
301
 
302
- #: admin.inc.php:340
303
  msgid ""
304
  "This option uses JavaScript and will increase your page load time. When you "
305
  "enable this option, the daily widget will not use the options set there, but "
306
  "options will need to be set on this screen."
307
  msgstr ""
308
 
309
- #: admin.inc.php:343
310
  msgid "Open links in new window"
311
  msgstr ""
312
 
313
- #: admin.inc.php:346
314
  msgid "Add nofollow attribute to links in the list"
315
  msgstr ""
316
 
317
- #: admin.inc.php:349
318
  msgid "Exclude display of related posts on these posts / pages"
319
  msgstr ""
320
 
321
- #: admin.inc.php:355
322
  msgid "Customise the list HTML"
323
  msgstr ""
324
 
325
- #: admin.inc.php:357
326
  #, fuzzy
327
  msgid "HTML to display before the list of posts: "
328
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
329
 
330
- #: admin.inc.php:360
331
  #, fuzzy
332
  msgid "HTML to display before each list item: "
333
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
334
 
335
- #: admin.inc.php:363
336
  #, fuzzy
337
  msgid "HTML to display after each list item: "
338
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
339
 
340
- #: admin.inc.php:366
341
  #, fuzzy
342
  msgid "HTML to display after the list of posts: "
343
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
344
 
345
- #: admin.inc.php:369
346
  msgid "Post thumbnail options:"
347
  msgstr ""
348
 
349
- #: admin.inc.php:371
350
  msgid "Location of post thumbnail:"
351
  msgstr ""
352
 
353
- #: admin.inc.php:375
354
  #, fuzzy
355
  msgid "Display thumbnails inline with posts, before title"
356
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
357
 
358
- #: admin.inc.php:379
359
  #, fuzzy
360
  msgid "Display thumbnails inline with posts, after title"
361
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
362
 
363
- #: admin.inc.php:383
364
  #, fuzzy
365
  msgid "Display only thumbnails, no text"
366
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
367
 
368
- #: admin.inc.php:387
369
  #, fuzzy
370
  msgid "Do not display thumbnails, only text."
371
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
372
 
373
- #: admin.inc.php:391
374
  msgid "Width of the thumbnail: "
375
  msgstr ""
376
 
377
- #: admin.inc.php:394
378
  msgid "Height of the thumbnail: "
379
  msgstr ""
380
 
381
- #: admin.inc.php:397
382
  msgid "Style attributes / Width and Height HTML attributes:"
383
  msgstr ""
384
 
385
- #: admin.inc.php:401
386
  msgid "Style attributes are used for width and height."
387
  msgstr ""
388
 
389
- #: admin.inc.php:405
390
  msgid "HTML width and height attributes are used for width and height."
391
  msgstr ""
392
 
393
- #: admin.inc.php:409
394
  msgid "Use timthumb to generate thumbnails? "
395
  msgstr ""
396
 
397
- #: admin.inc.php:412
398
  msgid ""
399
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
400
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
401
  msgstr ""
402
 
403
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
404
  msgid "Post thumbnail meta field name: "
405
  msgstr ""
406
 
407
- #: admin.inc.php:418
408
  msgid ""
409
  "The value of this field should contain the image source and is set in the "
410
  "<em>Add New Post</em> screen"
411
  msgstr ""
412
 
413
- #: admin.inc.php:421
414
  msgid ""
415
  "If the postmeta is not set, then should the plugin extract the first image "
416
  "from the post?"
417
  msgstr ""
418
 
419
- #: admin.inc.php:424
420
  msgid ""
421
  "This could slow down the loading of your page if the first image in the "
422
  "related posts is large in file-size"
423
  msgstr ""
424
 
425
- #: admin.inc.php:427
426
  msgid "Use default thumbnail? "
427
  msgstr ""
428
 
429
- #: admin.inc.php:430
430
  msgid ""
431
  "If checked, when no thumbnail is found, show a default one from the URL "
432
  "below. If not checked and no thumbnail is found, no image will be shown."
433
  msgstr ""
434
 
435
- #: admin.inc.php:433
436
  msgid "Default thumbnail: "
437
  msgstr ""
438
 
439
- #: admin.inc.php:437
440
  msgid ""
441
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
442
  "then it will check the meta field. If this is not available, then it will "
443
  "show the default image as specified above"
444
  msgstr ""
445
 
446
- #: admin.inc.php:444
447
  msgid "Custom CSS"
448
  msgstr ""
449
 
450
- #: admin.inc.php:447
451
  msgid "Use default style included in the plugin?"
452
  msgstr ""
453
 
454
- #: admin.inc.php:450
455
  msgid ""
456
  "Top 10 includes a default style that makes your popular posts list to look "
457
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -459,36 +483,36 @@ msgid ""
459
  "Widget."
460
  msgstr ""
461
 
462
- #: admin.inc.php:453
463
  msgid "Custom CSS to add to header:"
464
  msgstr ""
465
 
466
- #: admin.inc.php:456
467
  msgid ""
468
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
469
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
470
  "available CSS classes to style."
471
  msgstr ""
472
 
473
- #: admin.inc.php:463 admin.inc.php:529
474
  #, fuzzy
475
  msgid "Save Options"
476
  msgstr "roghanna"
477
 
478
- #: admin.inc.php:464
479
  #, fuzzy
480
  msgid "Default Options"
481
  msgstr "roghanna"
482
 
483
- #: admin.inc.php:464
484
  msgid "Do you want to set options to Default?"
485
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
486
 
487
- #: admin.inc.php:473
488
  msgid "Maintenance"
489
  msgstr ""
490
 
491
- #: admin.inc.php:477
492
  msgid ""
493
  "Over time the Daily Top 10 database grows in size, which reduces the "
494
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -496,323 +520,353 @@ msgid ""
496
  "will automatically delete entries older than 90 days."
497
  msgstr ""
498
 
499
- #: admin.inc.php:478
500
  msgid ""
501
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
502
  "everytime the job is rescheduled (i.e. you change the settings below)."
503
  msgstr ""
504
 
505
- #: admin.inc.php:481
506
  msgid "Enable scheduled maintenance of daily tables:"
507
  msgstr ""
508
 
509
- #: admin.inc.php:485
510
  msgid "Time to run maintenance"
511
  msgstr ""
512
 
513
- #: admin.inc.php:486
514
  msgid "hrs"
515
  msgstr ""
516
 
517
- #: admin.inc.php:486
518
  msgid "min"
519
  msgstr ""
520
 
521
- #: admin.inc.php:488
522
  msgid "How often should the maintenance be run:"
523
  msgstr ""
524
 
525
- #: admin.inc.php:492
526
  msgid "Daily"
527
  msgstr ""
528
 
529
- #: admin.inc.php:496
530
  msgid "Weekly"
531
  msgstr ""
532
 
533
- #: admin.inc.php:500
534
  msgid "Fortnightly"
535
  msgstr ""
536
 
537
- #: admin.inc.php:504
538
  msgid "Monthly"
539
  msgstr ""
540
 
541
- #: admin.inc.php:513
542
  msgid "The cron job has been scheduled. Maintenance will run "
543
  msgstr ""
544
 
545
- #: admin.inc.php:518
546
  msgid "The cron job is missing. Please resave this page to add the job"
547
  msgstr ""
548
 
549
- #: admin.inc.php:523
550
  msgid "Maintenance is turned off"
551
  msgstr ""
552
 
553
- #: admin.inc.php:537
554
  msgid "Reset count"
555
  msgstr ""
556
 
557
- #: admin.inc.php:540
558
  msgid ""
559
  "This cannot be reversed. Make sure that your database has been backed up "
560
  "before proceeding"
561
  msgstr ""
562
 
563
- #: admin.inc.php:543
564
  #, fuzzy
565
  msgid "Reset Popular Posts"
566
  msgstr "Poist Coitianta"
567
 
568
- #: admin.inc.php:543
569
  msgid "Are you sure you want to reset the popular posts?"
570
  msgstr ""
571
 
572
- #: admin.inc.php:544
573
  #, fuzzy
574
  msgid "Reset Daily Popular Posts"
575
  msgstr "Poist Coitianta Laethúil"
576
 
577
- #: admin.inc.php:544
578
  msgid "Are you sure you want to reset the daily popular posts?"
579
  msgstr ""
580
 
581
- #: admin.inc.php:545
582
  msgid "Clear duplicates"
583
  msgstr ""
584
 
585
- #: admin.inc.php:545
586
  msgid "This will delete the duplicate entries in the tables. Proceed?"
587
  msgstr ""
588
 
589
- #: admin.inc.php:593 admin.inc.php:979
590
  msgid "Popular Posts"
591
  msgstr "Poist Coitianta"
592
 
593
- #: admin.inc.php:593 admin.inc.php:688
594
  msgid "Daily Popular Posts"
595
  msgstr "Poist Coitianta Laethúil"
596
 
597
- #: admin.inc.php:621
598
  #, fuzzy
599
  msgid "Support the development"
600
  msgstr "Tacú le Forbairt"
601
 
602
- #: admin.inc.php:630
 
 
 
 
603
  msgid "Enter amount in USD: "
604
  msgstr ""
605
 
606
- #: admin.inc.php:634
607
- msgid "Send your donation to the author of"
608
  msgstr ""
609
 
610
- #: admin.inc.php:641
611
  msgid "Follow me"
612
  msgstr ""
613
 
614
- #: admin.inc.php:651
615
  msgid "Quick links"
616
  msgstr ""
617
 
618
- #: admin.inc.php:655
619
  msgid "Top 10 plugin page"
620
  msgstr ""
621
 
622
- #: admin.inc.php:656
623
  msgid "Other plugins"
624
  msgstr ""
625
 
626
- #: admin.inc.php:657
627
  msgid "Ajay's blog"
628
  msgstr ""
629
 
630
- #: admin.inc.php:658
631
  msgid "FAQ"
632
  msgstr ""
633
 
634
- #: admin.inc.php:659 top-10.php:1267
635
  msgid "Support"
636
  msgstr ""
637
 
638
- #: admin.inc.php:660
639
  msgid "Reviews"
640
  msgstr ""
641
 
642
- #: admin.inc.php:679 admin.inc.php:682
643
  #, fuzzy
644
  msgid "Top 10 Settings"
645
  msgstr "Top 10"
646
 
647
- #: admin.inc.php:679
648
  msgid "Top 10"
649
  msgstr "Top 10"
650
 
651
- #: admin.inc.php:685
652
  #, fuzzy
653
  msgid "Overall Popular Posts"
654
  msgstr "Féach ar Poist Coitianta Foriomlán"
655
 
656
- #: admin.inc.php:850
657
  #, php-format
658
  msgid "Results %1$s to %2$s of %3$s"
659
  msgstr ""
660
 
661
- #: admin.inc.php:854
662
  #, php-format
663
  msgid "Page %s of %s"
664
  msgstr ""
665
 
666
- #: admin.inc.php:866
667
  msgid "View Daily Popular Posts"
668
  msgstr "Féach ar Poist sa lá Coitianta"
669
 
670
- #: admin.inc.php:869 admin.inc.php:882
671
  msgid "Results per-page:"
672
  msgstr "Torthaí in aghaidh an-leathanach:"
673
 
674
- #: admin.inc.php:879
675
  msgid "View Overall Popular Posts"
676
  msgstr "Féach ar Poist Coitianta Foriomlán"
677
 
678
- #: admin.inc.php:908
679
  msgid "Previous"
680
  msgstr "roimhe Seo"
681
 
682
- #: admin.inc.php:936
683
  msgid "Next"
684
  msgstr "Ar Aghaidh"
685
 
686
- #: admin.inc.php:980
687
  msgid "Daily Popular"
688
  msgstr "laethúil Coitianta"
689
 
690
- #: admin.inc.php:998
691
  #, fuzzy
692
  msgid "Total Views"
693
  msgstr "laethúil Coitianta"
694
 
695
- #: admin.inc.php:999
696
  #, fuzzy
697
  msgid "Today's Views"
698
  msgstr "laethúil Coitianta"
699
 
700
- #: admin.inc.php:1000
701
  #, fuzzy
702
  msgid "Views"
703
  msgstr "laethúil Coitianta"
704
 
705
- #: top-10.php:438
706
- msgid " by "
 
 
 
 
 
 
 
 
 
 
707
  msgstr ""
708
 
709
- #: top-10.php:524
710
- msgid "Display the posts popular this week"
 
 
 
711
  msgstr ""
712
 
713
- #: top-10.php:525
 
 
 
 
 
 
 
 
714
  #, fuzzy
715
  msgid "Popular Posts [Top 10]"
716
  msgstr "Poist Coitianta"
717
 
718
- #: top-10.php:543
 
 
 
 
 
719
  msgid "Title"
720
  msgstr ""
721
 
722
- #: top-10.php:548
723
  msgid "No. of posts"
724
  msgstr ""
725
 
726
- #: top-10.php:553
727
  msgid "Overall"
728
  msgstr ""
729
 
730
- #: top-10.php:554
731
  msgid "Custom time period (Enter below)"
732
  msgstr ""
733
 
734
- #: top-10.php:559
735
  msgid "Range in number of days (applies only to custom option above)"
736
  msgstr ""
737
 
738
- #: top-10.php:564
739
- msgid " Show count?"
740
  msgstr ""
741
 
742
- #: top-10.php:569
743
- msgid " Show excerpt?"
744
  msgstr ""
745
 
746
- #: top-10.php:574
747
- msgid " Show author?"
748
  msgstr ""
749
 
750
- #: top-10.php:579
751
- msgid " Show date?"
752
  msgstr ""
753
 
754
- #: top-10.php:583
755
  msgid "Thumbnail options"
756
  msgstr ""
757
 
758
- #: top-10.php:585
759
  #, fuzzy
760
  msgid "Thumbnails inline, before title"
761
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
762
 
763
- #: top-10.php:586
764
  #, fuzzy
765
  msgid "Thumbnails inline, after title"
766
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
767
 
768
- #: top-10.php:587
769
  #, fuzzy
770
  msgid "Only thumbnails, no text"
771
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
772
 
773
- #: top-10.php:588
774
  #, fuzzy
775
  msgid "No thumbnails, only text."
776
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
777
 
778
- #: top-10.php:593
779
  msgid "Thumbnail height"
780
  msgstr ""
781
 
782
- #: top-10.php:598
783
  msgid "Thumbnail width"
784
  msgstr ""
785
 
786
- #: top-10.php:719
787
  msgid "<h3>Popular Posts</h3>"
788
  msgstr "<h3>Poist Coitianta </ h3>"
789
 
790
- #: top-10.php:720
791
  msgid "<h3>Daily Popular</h3>"
792
  msgstr "<h3> laethúil Coitianta </ h3>"
793
 
794
- #: top-10.php:721
795
  #, fuzzy
796
  msgid "No top posts yet"
797
  msgstr "Teideal an post tóir:"
798
 
799
- #: top-10.php:1184
800
  msgid "Once Weekly"
801
  msgstr ""
802
 
803
- #: top-10.php:1188
804
  msgid "Once Fortnightly"
805
  msgstr ""
806
 
807
- #: top-10.php:1192
808
  msgid "Once Monthly"
809
  msgstr ""
810
 
811
- #: top-10.php:1255
812
  msgid "Settings"
813
  msgstr ""
814
 
815
- #: top-10.php:1268
816
  msgid "Donate"
817
  msgstr ""
818
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Roghanna shábháil go rathúil."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Roghanna leagtha chun Réamhshocrú."
25
 
26
+ #: admin.inc.php:131
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Teideal an post tóir:"
30
 
31
+ #: admin.inc.php:137
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Teideal ar tóir an bpost:"
35
 
36
+ #: admin.inc.php:144
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
+ #: admin.inc.php:156
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
+ #: admin.inc.php:160
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
49
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
50
+ msgid "Click to toggle"
51
  msgstr ""
52
 
53
  #: admin.inc.php:176
54
+ msgid "General options"
55
+ msgstr ""
56
+
57
+ #: admin.inc.php:180
58
  msgid "Enable Overall stats"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:185
62
  msgid "Enable Daily stats"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:190
66
  msgid "W3 Total Cache fix:"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:192
70
  msgid ""
71
  "This will try to prevent W3 Total Cache from caching the addcount script of "
72
  "the plugin. Try toggling this option in case you find that our posts are not "
73
  "tracked."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:196
77
  msgid "Number of popular posts to display: "
78
  msgstr "An líon post tóir a thaispeáint:"
79
 
80
+ #: admin.inc.php:198
81
  msgid ""
82
  "Maximum number of posts that will be displayed in the list. This option is "
83
  "used if you don't specify the number of posts in the widget or shortcodes"
84
  msgstr ""
85
 
86
+ #: admin.inc.php:202
87
  msgid "Daily Popular should contain views of how many days? "
88
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
89
 
90
+ #: admin.inc.php:204
91
  msgid ""
92
  "Instead of displaying popular posts fromt he past day, this setting lets you "
93
  "display posts for as many days as you want. This can be overridden in the "
94
  "widget."
95
  msgstr ""
96
 
97
+ #: admin.inc.php:207
98
  msgid "Post types to include in results (including custom post types)"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:218
102
  msgid "List of post or page IDs to exclude from the results: "
103
  msgstr ""
104
 
105
+ #: admin.inc.php:220 admin.inc.php:361
106
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:224
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:239
114
  msgid ""
115
  "Comma separated list of category slugs. The field above has an autocomplete "
116
  "so simply start typing in the starting letters and it will prompt you with "
117
  "options"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:244
121
  #, fuzzy
122
  msgid "Display number of views on:"
123
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
124
 
125
+ #: admin.inc.php:246
126
  msgid "Posts"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:247
130
  #, fuzzy
131
  msgid "Pages"
132
  msgstr "Leathanach"
133
 
134
+ #: admin.inc.php:248
135
  msgid "Home page"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:249
139
  msgid "Feeds"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:250
143
  msgid "Category archives"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:251
147
  msgid "Tag archives"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:252
151
  msgid "Other archives"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:253
155
  msgid ""
156
+ "If you choose to disable this, please add <code>&lt;?php if "
157
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
158
+ "</code> to your template file where you want it displayed"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:256
162
  msgid "Always display latest post count"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:258
166
  msgid ""
167
  "This option uses JavaScript and will increase your page load time. Turn this "
168
  "off if you are not using caching plugins or are OK with displaying older "
169
  "cached counts."
170
  msgstr ""
171
 
172
+ #: admin.inc.php:261
173
  msgid "Track visits of authors on their own posts?"
174
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
175
 
176
+ #: admin.inc.php:263
177
  msgid ""
178
  "Disabling this option will stop authors visits tracked on their own posts"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:266
182
  #, fuzzy
183
  msgid "Track visits of admins?"
184
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
185
 
186
+ #: admin.inc.php:268
187
  msgid "Disabling this option will stop admin visits being tracked."
188
  msgstr ""
189
 
190
+ #: admin.inc.php:271
191
+ #, fuzzy
192
+ msgid "Track visits of Editors?"
193
+ msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
194
+
195
+ #: admin.inc.php:273
196
+ msgid "Disabling this option will stop editor visits being tracked."
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:276
200
  msgid "Display page views on Posts and Pages in Admin"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:279
204
  msgid ""
205
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
206
  "and All Pages"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:282
210
  #, fuzzy
211
  msgid "Show number of views to non-admins"
212
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
213
 
214
+ #: admin.inc.php:285
215
  msgid ""
216
  "If you disable this then non-admins won't see the above columns or view the "
217
  "independent pages with the top posts"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:288
221
  msgid "Link to Top 10 plugin page"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:291
225
  #, fuzzy
226
  msgid ""
227
  "A link to the plugin is added as an extra list item to the list of popular "
230
  "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
231
  "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
232
 
233
+ #: admin.inc.php:298
234
  #, fuzzy
235
  msgid "Output options"
236
  msgstr "roghanna"
237
 
238
+ #: admin.inc.php:301
239
  #, fuzzy
240
  msgid "Format to display the post views:"
241
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
242
 
243
+ #: admin.inc.php:303
244
  #, fuzzy
245
  msgid ""
246
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
254
  "123 amanna, 23 cuairt inniu) </ cód>"
255
 
256
+ #: admin.inc.php:306
257
  msgid "What do display when there are no visits?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:308
261
  msgid ""
262
  "This text applies only when there are 0 hits for the post and it isn't a "
263
  "single page. e.g. if you display post views on the homepage or archives then "
265
  "option."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:311
269
  msgid "Title of popular posts: "
270
  msgstr "Teideal an post tóir:"
271
 
272
+ #: admin.inc.php:314
273
  msgid "Title of daily popular posts: "
274
  msgstr "Teideal ar tóir an bpost:"
275
 
276
+ #: admin.inc.php:317
277
  msgid "When there are no posts, what should be shown?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Blank Output"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:325
285
  msgid "Display:"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:329
289
  msgid "Show post excerpt in list?"
290
  msgstr ""
291
 
292
+ #: admin.inc.php:332
293
  msgid "Length of excerpt (in words): "
294
  msgstr ""
295
 
296
+ #: admin.inc.php:335
297
  msgid "Show post author in list?"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:338
301
  msgid "Show post date in list?"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:341
305
  msgid "Limit post title length (in characters)"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:344
309
  msgid "Show view count in list?"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:347
313
  msgid "Always display latest post count in the daily lists?"
314
  msgstr ""
315
 
316
+ #: admin.inc.php:349
317
  msgid ""
318
  "This option uses JavaScript and will increase your page load time. When you "
319
  "enable this option, the daily widget will not use the options set there, but "
320
  "options will need to be set on this screen."
321
  msgstr ""
322
 
323
+ #: admin.inc.php:352
324
  msgid "Open links in new window"
325
  msgstr ""
326
 
327
+ #: admin.inc.php:355
328
  msgid "Add nofollow attribute to links in the list"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:358
332
  msgid "Exclude display of related posts on these posts / pages"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:364
336
  msgid "Customise the list HTML"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:366
340
  #, fuzzy
341
  msgid "HTML to display before the list of posts: "
342
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
343
 
344
+ #: admin.inc.php:369
345
  #, fuzzy
346
  msgid "HTML to display before each list item: "
347
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
348
 
349
+ #: admin.inc.php:372
350
  #, fuzzy
351
  msgid "HTML to display after each list item: "
352
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
353
 
354
+ #: admin.inc.php:375
355
  #, fuzzy
356
  msgid "HTML to display after the list of posts: "
357
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
358
 
359
+ #: admin.inc.php:378
360
  msgid "Post thumbnail options:"
361
  msgstr ""
362
 
363
+ #: admin.inc.php:380
364
  msgid "Location of post thumbnail:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:384
368
  #, fuzzy
369
  msgid "Display thumbnails inline with posts, before title"
370
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
371
 
372
+ #: admin.inc.php:388
373
  #, fuzzy
374
  msgid "Display thumbnails inline with posts, after title"
375
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
376
 
377
+ #: admin.inc.php:392
378
  #, fuzzy
379
  msgid "Display only thumbnails, no text"
380
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
381
 
382
+ #: admin.inc.php:396
383
  #, fuzzy
384
  msgid "Do not display thumbnails, only text."
385
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
386
 
387
+ #: admin.inc.php:400
388
  msgid "Width of the thumbnail: "
389
  msgstr ""
390
 
391
+ #: admin.inc.php:403
392
  msgid "Height of the thumbnail: "
393
  msgstr ""
394
 
395
+ #: admin.inc.php:406
396
  msgid "Style attributes / Width and Height HTML attributes:"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:410
400
  msgid "Style attributes are used for width and height."
401
  msgstr ""
402
 
403
+ #: admin.inc.php:414
404
  msgid "HTML width and height attributes are used for width and height."
405
  msgstr ""
406
 
407
+ #: admin.inc.php:418
408
  msgid "Use timthumb to generate thumbnails? "
409
  msgstr ""
410
 
411
+ #: admin.inc.php:421
412
  msgid ""
413
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
414
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
415
  msgstr ""
416
 
417
+ #: admin.inc.php:424
418
+ msgid "Quality of thumbnails generated by timthumb:"
419
+ msgstr ""
420
+
421
+ #: admin.inc.php:427
422
+ msgid ""
423
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
424
+ "file size. Suggested maximum value is 95. Default is 75."
425
+ msgstr ""
426
+
427
+ #: admin.inc.php:430
428
  msgid "Post thumbnail meta field name: "
429
  msgstr ""
430
 
431
+ #: admin.inc.php:433
432
  msgid ""
433
  "The value of this field should contain the image source and is set in the "
434
  "<em>Add New Post</em> screen"
435
  msgstr ""
436
 
437
+ #: admin.inc.php:436
438
  msgid ""
439
  "If the postmeta is not set, then should the plugin extract the first image "
440
  "from the post?"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:439
444
  msgid ""
445
  "This could slow down the loading of your page if the first image in the "
446
  "related posts is large in file-size"
447
  msgstr ""
448
 
449
+ #: admin.inc.php:442
450
  msgid "Use default thumbnail? "
451
  msgstr ""
452
 
453
+ #: admin.inc.php:445
454
  msgid ""
455
  "If checked, when no thumbnail is found, show a default one from the URL "
456
  "below. If not checked and no thumbnail is found, no image will be shown."
457
  msgstr ""
458
 
459
+ #: admin.inc.php:448
460
  msgid "Default thumbnail: "
461
  msgstr ""
462
 
463
+ #: admin.inc.php:452
464
  msgid ""
465
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
466
  "then it will check the meta field. If this is not available, then it will "
467
  "show the default image as specified above"
468
  msgstr ""
469
 
470
+ #: admin.inc.php:459
471
  msgid "Custom CSS"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:462
475
  msgid "Use default style included in the plugin?"
476
  msgstr ""
477
 
478
+ #: admin.inc.php:465
479
  msgid ""
480
  "Top 10 includes a default style that makes your popular posts list to look "
481
  "pretty. Check the box above if you want to use this. You will need to select "
483
  "Widget."
484
  msgstr ""
485
 
486
+ #: admin.inc.php:468
487
  msgid "Custom CSS to add to header:"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:471
491
  msgid ""
492
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
493
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
494
  "available CSS classes to style."
495
  msgstr ""
496
 
497
+ #: admin.inc.php:478 admin.inc.php:544
498
  #, fuzzy
499
  msgid "Save Options"
500
  msgstr "roghanna"
501
 
502
+ #: admin.inc.php:479
503
  #, fuzzy
504
  msgid "Default Options"
505
  msgstr "roghanna"
506
 
507
+ #: admin.inc.php:479
508
  msgid "Do you want to set options to Default?"
509
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
510
 
511
+ #: admin.inc.php:488
512
  msgid "Maintenance"
513
  msgstr ""
514
 
515
+ #: admin.inc.php:492
516
  msgid ""
517
  "Over time the Daily Top 10 database grows in size, which reduces the "
518
  "performance of the plugin. Cleaning the database at regular intervals could "
520
  "will automatically delete entries older than 90 days."
521
  msgstr ""
522
 
523
+ #: admin.inc.php:493
524
  msgid ""
525
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
526
  "everytime the job is rescheduled (i.e. you change the settings below)."
527
  msgstr ""
528
 
529
+ #: admin.inc.php:496
530
  msgid "Enable scheduled maintenance of daily tables:"
531
  msgstr ""
532
 
533
+ #: admin.inc.php:500
534
  msgid "Time to run maintenance"
535
  msgstr ""
536
 
537
+ #: admin.inc.php:501
538
  msgid "hrs"
539
  msgstr ""
540
 
541
+ #: admin.inc.php:501
542
  msgid "min"
543
  msgstr ""
544
 
545
+ #: admin.inc.php:503
546
  msgid "How often should the maintenance be run:"
547
  msgstr ""
548
 
549
+ #: admin.inc.php:507
550
  msgid "Daily"
551
  msgstr ""
552
 
553
+ #: admin.inc.php:511
554
  msgid "Weekly"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:515
558
  msgid "Fortnightly"
559
  msgstr ""
560
 
561
+ #: admin.inc.php:519
562
  msgid "Monthly"
563
  msgstr ""
564
 
565
+ #: admin.inc.php:528
566
  msgid "The cron job has been scheduled. Maintenance will run "
567
  msgstr ""
568
 
569
+ #: admin.inc.php:533
570
  msgid "The cron job is missing. Please resave this page to add the job"
571
  msgstr ""
572
 
573
+ #: admin.inc.php:538
574
  msgid "Maintenance is turned off"
575
  msgstr ""
576
 
577
+ #: admin.inc.php:552
578
  msgid "Reset count"
579
  msgstr ""
580
 
581
+ #: admin.inc.php:555
582
  msgid ""
583
  "This cannot be reversed. Make sure that your database has been backed up "
584
  "before proceeding"
585
  msgstr ""
586
 
587
+ #: admin.inc.php:558
588
  #, fuzzy
589
  msgid "Reset Popular Posts"
590
  msgstr "Poist Coitianta"
591
 
592
+ #: admin.inc.php:558
593
  msgid "Are you sure you want to reset the popular posts?"
594
  msgstr ""
595
 
596
+ #: admin.inc.php:559
597
  #, fuzzy
598
  msgid "Reset Daily Popular Posts"
599
  msgstr "Poist Coitianta Laethúil"
600
 
601
+ #: admin.inc.php:559
602
  msgid "Are you sure you want to reset the daily popular posts?"
603
  msgstr ""
604
 
605
+ #: admin.inc.php:560
606
  msgid "Clear duplicates"
607
  msgstr ""
608
 
609
+ #: admin.inc.php:560
610
  msgid "This will delete the duplicate entries in the tables. Proceed?"
611
  msgstr ""
612
 
613
+ #: admin.inc.php:612 admin.inc.php:1010
614
  msgid "Popular Posts"
615
  msgstr "Poist Coitianta"
616
 
617
+ #: admin.inc.php:614 admin.inc.php:713
618
  msgid "Daily Popular Posts"
619
  msgstr "Poist Coitianta Laethúil"
620
 
621
+ #: admin.inc.php:645
622
  #, fuzzy
623
  msgid "Support the development"
624
  msgstr "Tacú le Forbairt"
625
 
626
+ #: admin.inc.php:652
627
+ msgid "Donation for Top 10"
628
+ msgstr ""
629
+
630
+ #: admin.inc.php:654
631
  msgid "Enter amount in USD: "
632
  msgstr ""
633
 
634
+ #: admin.inc.php:658
635
+ msgid "Send your donation to the author of Top 10"
636
  msgstr ""
637
 
638
+ #: admin.inc.php:665
639
  msgid "Follow me"
640
  msgstr ""
641
 
642
+ #: admin.inc.php:675
643
  msgid "Quick links"
644
  msgstr ""
645
 
646
+ #: admin.inc.php:679
647
  msgid "Top 10 plugin page"
648
  msgstr ""
649
 
650
+ #: admin.inc.php:680
651
  msgid "Other plugins"
652
  msgstr ""
653
 
654
+ #: admin.inc.php:681
655
  msgid "Ajay's blog"
656
  msgstr ""
657
 
658
+ #: admin.inc.php:682
659
  msgid "FAQ"
660
  msgstr ""
661
 
662
+ #: admin.inc.php:683 top-10.php:1345
663
  msgid "Support"
664
  msgstr ""
665
 
666
+ #: admin.inc.php:684
667
  msgid "Reviews"
668
  msgstr ""
669
 
670
+ #: admin.inc.php:704 admin.inc.php:707
671
  #, fuzzy
672
  msgid "Top 10 Settings"
673
  msgstr "Top 10"
674
 
675
+ #: admin.inc.php:704 admin.inc.php:1183
676
  msgid "Top 10"
677
  msgstr "Top 10"
678
 
679
+ #: admin.inc.php:710
680
  #, fuzzy
681
  msgid "Overall Popular Posts"
682
  msgstr "Féach ar Poist Coitianta Foriomlán"
683
 
684
+ #: admin.inc.php:882
685
  #, php-format
686
  msgid "Results %1$s to %2$s of %3$s"
687
  msgstr ""
688
 
689
+ #: admin.inc.php:886
690
  #, php-format
691
  msgid "Page %s of %s"
692
  msgstr ""
693
 
694
+ #: admin.inc.php:898
695
  msgid "View Daily Popular Posts"
696
  msgstr "Féach ar Poist sa lá Coitianta"
697
 
698
+ #: admin.inc.php:901 admin.inc.php:914
699
  msgid "Results per-page:"
700
  msgstr "Torthaí in aghaidh an-leathanach:"
701
 
702
+ #: admin.inc.php:911
703
  msgid "View Overall Popular Posts"
704
  msgstr "Féach ar Poist Coitianta Foriomlán"
705
 
706
+ #: admin.inc.php:940
707
  msgid "Previous"
708
  msgstr "roimhe Seo"
709
 
710
+ #: admin.inc.php:968
711
  msgid "Next"
712
  msgstr "Ar Aghaidh"
713
 
714
+ #: admin.inc.php:1011
715
  msgid "Daily Popular"
716
  msgstr "laethúil Coitianta"
717
 
718
+ #: admin.inc.php:1029
719
  #, fuzzy
720
  msgid "Total Views"
721
  msgstr "laethúil Coitianta"
722
 
723
+ #: admin.inc.php:1030
724
  #, fuzzy
725
  msgid "Today's Views"
726
  msgstr "laethúil Coitianta"
727
 
728
+ #: admin.inc.php:1031
729
  #, fuzzy
730
  msgid "Views"
731
  msgstr "laethúil Coitianta"
732
 
733
+ #: admin.inc.php:1217
734
+ msgid "Visit count:"
735
+ msgstr ""
736
+
737
+ #: admin.inc.php:1219
738
+ msgid ""
739
+ "Enter a number above to update the visit count. Leaving the above box blank "
740
+ "will set the count to zero"
741
+ msgstr ""
742
+
743
+ #: admin.inc.php:1229
744
+ msgid "Location of thumbnail:"
745
  msgstr ""
746
 
747
+ #: admin.inc.php:1231
748
+ msgid ""
749
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
750
+ "image will be used for the post. It will be resized to the thumbnail size "
751
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
752
  msgstr ""
753
 
754
+ #: admin.inc.php:1232
755
+ msgid "The URL above is saved in the meta field: "
756
+ msgstr ""
757
+
758
+ #: top-10.php:456
759
+ msgid " by "
760
+ msgstr ""
761
+
762
+ #: top-10.php:550
763
  #, fuzzy
764
  msgid "Popular Posts [Top 10]"
765
  msgstr "Poist Coitianta"
766
 
767
+ #: top-10.php:551
768
+ #, fuzzy
769
+ msgid "Display popular posts"
770
+ msgstr "Poist Coitianta Laethúil"
771
+
772
+ #: top-10.php:577
773
  msgid "Title"
774
  msgstr ""
775
 
776
+ #: top-10.php:582
777
  msgid "No. of posts"
778
  msgstr ""
779
 
780
+ #: top-10.php:587
781
  msgid "Overall"
782
  msgstr ""
783
 
784
+ #: top-10.php:588
785
  msgid "Custom time period (Enter below)"
786
  msgstr ""
787
 
788
+ #: top-10.php:593
789
  msgid "Range in number of days (applies only to custom option above)"
790
  msgstr ""
791
 
792
+ #: top-10.php:598
793
+ msgid "Show count?"
794
  msgstr ""
795
 
796
+ #: top-10.php:603
797
+ msgid "Show excerpt?"
798
  msgstr ""
799
 
800
+ #: top-10.php:608
801
+ msgid "Show author?"
802
  msgstr ""
803
 
804
+ #: top-10.php:613
805
+ msgid "Show date?"
806
  msgstr ""
807
 
808
+ #: top-10.php:617
809
  msgid "Thumbnail options"
810
  msgstr ""
811
 
812
+ #: top-10.php:619
813
  #, fuzzy
814
  msgid "Thumbnails inline, before title"
815
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
816
 
817
+ #: top-10.php:620
818
  #, fuzzy
819
  msgid "Thumbnails inline, after title"
820
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
821
 
822
+ #: top-10.php:621
823
  #, fuzzy
824
  msgid "Only thumbnails, no text"
825
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
826
 
827
+ #: top-10.php:622
828
  #, fuzzy
829
  msgid "No thumbnails, only text."
830
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
831
 
832
+ #: top-10.php:627
833
  msgid "Thumbnail height"
834
  msgstr ""
835
 
836
+ #: top-10.php:632
837
  msgid "Thumbnail width"
838
  msgstr ""
839
 
840
+ #: top-10.php:772
841
  msgid "<h3>Popular Posts</h3>"
842
  msgstr "<h3>Poist Coitianta </ h3>"
843
 
844
+ #: top-10.php:773
845
  msgid "<h3>Daily Popular</h3>"
846
  msgstr "<h3> laethúil Coitianta </ h3>"
847
 
848
+ #: top-10.php:774
849
  #, fuzzy
850
  msgid "No top posts yet"
851
  msgstr "Teideal an post tóir:"
852
 
853
+ #: top-10.php:1245
854
  msgid "Once Weekly"
855
  msgstr ""
856
 
857
+ #: top-10.php:1249
858
  msgid "Once Fortnightly"
859
  msgstr ""
860
 
861
+ #: top-10.php:1253
862
  msgid "Once Monthly"
863
  msgstr ""
864
 
865
+ #: top-10.php:1323
866
  msgid "Settings"
867
  msgstr ""
868
 
869
+ #: top-10.php:1346
870
  msgid "Donate"
871
  msgstr ""
872
 
languages/tptn-hi_IN.mo CHANGED
Binary file
languages/tptn-hi_IN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
@@ -13,202 +13,216 @@ msgstr ""
13
  "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
- "X-Generator: Poedit 1.6.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin.inc.php:112
20
  msgid "Options saved successfully."
21
  msgstr "विकल्प सफलतापूर्वक बचाया."
22
 
23
- #: admin.inc.php:122
24
  msgid "Options set to Default."
25
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
26
 
27
- #: admin.inc.php:128
28
  #, fuzzy
29
  msgid "Top 10 popular posts reset"
30
  msgstr "लोकप्रिय पदों का शीर्षक:"
31
 
32
- #: admin.inc.php:134
33
  #, fuzzy
34
  msgid "Top 10 daily popular posts reset"
35
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
36
 
37
- #: admin.inc.php:141
38
  msgid "Duplicate rows cleaned from tables"
39
  msgstr ""
40
 
41
- #: admin.inc.php:152
42
  msgid "Scheduled maintenance enabled / modified"
43
  msgstr ""
44
 
45
- #: admin.inc.php:156
46
  msgid "Scheduled maintenance disabled"
47
  msgstr ""
48
 
49
- #: admin.inc.php:172
50
- msgid "General options"
 
51
  msgstr ""
52
 
53
  #: admin.inc.php:176
 
 
 
 
54
  msgid "Enable Overall stats"
55
  msgstr ""
56
 
57
- #: admin.inc.php:181
58
  msgid "Enable Daily stats"
59
  msgstr ""
60
 
61
- #: admin.inc.php:186
62
  msgid "W3 Total Cache fix:"
63
  msgstr ""
64
 
65
- #: admin.inc.php:188
66
  msgid ""
67
  "This will try to prevent W3 Total Cache from caching the addcount script of "
68
  "the plugin. Try toggling this option in case you find that our posts are not "
69
  "tracked."
70
  msgstr ""
71
 
72
- #: admin.inc.php:192
73
  msgid "Number of popular posts to display: "
74
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
75
 
76
- #: admin.inc.php:194
77
  msgid ""
78
  "Maximum number of posts that will be displayed in the list. This option is "
79
  "used if you don't specify the number of posts in the widget or shortcodes"
80
  msgstr ""
81
 
82
- #: admin.inc.php:198
83
  msgid "Daily Popular should contain views of how many days? "
84
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
85
 
86
- #: admin.inc.php:200
87
  msgid ""
88
  "Instead of displaying popular posts fromt he past day, this setting lets you "
89
  "display posts for as many days as you want. This can be overridden in the "
90
  "widget."
91
  msgstr ""
92
 
93
- #: admin.inc.php:203
94
  msgid "Post types to include in results (including custom post types)"
95
  msgstr ""
96
 
97
- #: admin.inc.php:214
98
  msgid "List of post or page IDs to exclude from the results: "
99
  msgstr ""
100
 
101
- #: admin.inc.php:216 admin.inc.php:352
102
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
103
  msgstr ""
104
 
105
- #: admin.inc.php:220
106
  msgid "Exclude Categories: "
107
  msgstr ""
108
 
109
- #: admin.inc.php:235
110
  msgid ""
111
  "Comma separated list of category slugs. The field above has an autocomplete "
112
  "so simply start typing in the starting letters and it will prompt you with "
113
  "options"
114
  msgstr ""
115
 
116
- #: admin.inc.php:240
117
  #, fuzzy
118
  msgid "Display number of views on:"
119
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
120
 
121
- #: admin.inc.php:242
122
  msgid "Posts"
123
  msgstr ""
124
 
125
- #: admin.inc.php:243
126
  #, fuzzy
127
  msgid "Pages"
128
  msgstr "पृष्ठ"
129
 
130
- #: admin.inc.php:244
131
  msgid "Home page"
132
  msgstr ""
133
 
134
- #: admin.inc.php:245
135
  msgid "Feeds"
136
  msgstr ""
137
 
138
- #: admin.inc.php:246
139
  msgid "Category archives"
140
  msgstr ""
141
 
142
- #: admin.inc.php:247
143
  msgid "Tag archives"
144
  msgstr ""
145
 
146
- #: admin.inc.php:248
147
  msgid "Other archives"
148
  msgstr ""
149
 
150
- #: admin.inc.php:249
151
  msgid ""
152
- "If you choose to disable this, please add <code>&lt;?php "
153
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
154
- "template file where you want it displayed"
155
  msgstr ""
156
 
157
- #: admin.inc.php:252
158
  msgid "Always display latest post count"
159
  msgstr ""
160
 
161
- #: admin.inc.php:254
162
  msgid ""
163
  "This option uses JavaScript and will increase your page load time. Turn this "
164
  "off if you are not using caching plugins or are OK with displaying older "
165
  "cached counts."
166
  msgstr ""
167
 
168
- #: admin.inc.php:257
169
  msgid "Track visits of authors on their own posts?"
170
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
171
 
172
- #: admin.inc.php:259
173
  msgid ""
174
  "Disabling this option will stop authors visits tracked on their own posts"
175
  msgstr ""
176
 
177
- #: admin.inc.php:262
178
  #, fuzzy
179
  msgid "Track visits of admins?"
180
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
181
 
182
- #: admin.inc.php:264
183
  msgid "Disabling this option will stop admin visits being tracked."
184
  msgstr ""
185
 
186
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
187
  msgid "Display page views on Posts and Pages in Admin"
188
  msgstr ""
189
 
190
- #: admin.inc.php:270
191
  msgid ""
192
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
193
  "and All Pages"
194
  msgstr ""
195
 
196
- #: admin.inc.php:273
197
  #, fuzzy
198
  msgid "Show number of views to non-admins"
199
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
200
 
201
- #: admin.inc.php:276
202
  msgid ""
203
  "If you disable this then non-admins won't see the above columns or view the "
204
  "independent pages with the top posts"
205
  msgstr ""
206
 
207
- #: admin.inc.php:279
208
  msgid "Link to Top 10 plugin page"
209
  msgstr ""
210
 
211
- #: admin.inc.php:282
212
  #, fuzzy
213
  msgid ""
214
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -217,17 +231,17 @@ msgstr ""
217
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
218
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
219
 
220
- #: admin.inc.php:289
221
  #, fuzzy
222
  msgid "Output options"
223
  msgstr "विकल्प हैं:"
224
 
225
- #: admin.inc.php:292
226
  #, fuzzy
227
  msgid "Format to display the post views:"
228
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
229
 
230
- #: admin.inc.php:294
231
  #, fuzzy
232
  msgid ""
233
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -239,11 +253,11 @@ msgstr ""
239
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
240
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
241
 
242
- #: admin.inc.php:297
243
  msgid "What do display when there are no visits?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:299
247
  msgid ""
248
  "This text applies only when there are 0 hits for the post and it isn't a "
249
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -251,202 +265,212 @@ msgid ""
251
  "option."
252
  msgstr ""
253
 
254
- #: admin.inc.php:302
255
  msgid "Title of popular posts: "
256
  msgstr "लोकप्रिय पदों का शीर्षक:"
257
 
258
- #: admin.inc.php:305
259
  msgid "Title of daily popular posts: "
260
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
261
 
262
- #: admin.inc.php:308
263
  msgid "When there are no posts, what should be shown?"
264
  msgstr ""
265
 
266
- #: admin.inc.php:312
267
  msgid "Blank Output"
268
  msgstr ""
269
 
270
- #: admin.inc.php:316
271
  msgid "Display:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:320
275
  msgid "Show post excerpt in list?"
276
  msgstr ""
277
 
278
- #: admin.inc.php:323
279
  msgid "Length of excerpt (in words): "
280
  msgstr ""
281
 
282
- #: admin.inc.php:326
283
  msgid "Show post author in list?"
284
  msgstr ""
285
 
286
- #: admin.inc.php:329
287
  msgid "Show post date in list?"
288
  msgstr ""
289
 
290
- #: admin.inc.php:332
291
  msgid "Limit post title length (in characters)"
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  msgid "Show view count in list?"
296
  msgstr ""
297
 
298
- #: admin.inc.php:338
299
  msgid "Always display latest post count in the daily lists?"
300
  msgstr ""
301
 
302
- #: admin.inc.php:340
303
  msgid ""
304
  "This option uses JavaScript and will increase your page load time. When you "
305
  "enable this option, the daily widget will not use the options set there, but "
306
  "options will need to be set on this screen."
307
  msgstr ""
308
 
309
- #: admin.inc.php:343
310
  msgid "Open links in new window"
311
  msgstr ""
312
 
313
- #: admin.inc.php:346
314
  msgid "Add nofollow attribute to links in the list"
315
  msgstr ""
316
 
317
- #: admin.inc.php:349
318
  msgid "Exclude display of related posts on these posts / pages"
319
  msgstr ""
320
 
321
- #: admin.inc.php:355
322
  msgid "Customise the list HTML"
323
  msgstr ""
324
 
325
- #: admin.inc.php:357
326
  msgid "HTML to display before the list of posts: "
327
  msgstr ""
328
 
329
- #: admin.inc.php:360
330
  msgid "HTML to display before each list item: "
331
  msgstr ""
332
 
333
- #: admin.inc.php:363
334
  #, fuzzy
335
  msgid "HTML to display after each list item: "
336
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
337
 
338
- #: admin.inc.php:366
339
  msgid "HTML to display after the list of posts: "
340
  msgstr ""
341
 
342
- #: admin.inc.php:369
343
  msgid "Post thumbnail options:"
344
  msgstr ""
345
 
346
- #: admin.inc.php:371
347
  msgid "Location of post thumbnail:"
348
  msgstr ""
349
 
350
- #: admin.inc.php:375
351
  #, fuzzy
352
  msgid "Display thumbnails inline with posts, before title"
353
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
354
 
355
- #: admin.inc.php:379
356
  #, fuzzy
357
  msgid "Display thumbnails inline with posts, after title"
358
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
359
 
360
- #: admin.inc.php:383
361
  msgid "Display only thumbnails, no text"
362
  msgstr ""
363
 
364
- #: admin.inc.php:387
365
  msgid "Do not display thumbnails, only text."
366
  msgstr ""
367
 
368
- #: admin.inc.php:391
369
  msgid "Width of the thumbnail: "
370
  msgstr ""
371
 
372
- #: admin.inc.php:394
373
  msgid "Height of the thumbnail: "
374
  msgstr ""
375
 
376
- #: admin.inc.php:397
377
  msgid "Style attributes / Width and Height HTML attributes:"
378
  msgstr ""
379
 
380
- #: admin.inc.php:401
381
  msgid "Style attributes are used for width and height."
382
  msgstr ""
383
 
384
- #: admin.inc.php:405
385
  msgid "HTML width and height attributes are used for width and height."
386
  msgstr ""
387
 
388
- #: admin.inc.php:409
389
  msgid "Use timthumb to generate thumbnails? "
390
  msgstr ""
391
 
392
- #: admin.inc.php:412
393
  msgid ""
394
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
395
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
396
  msgstr ""
397
 
398
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
399
  msgid "Post thumbnail meta field name: "
400
  msgstr ""
401
 
402
- #: admin.inc.php:418
403
  msgid ""
404
  "The value of this field should contain the image source and is set in the "
405
  "<em>Add New Post</em> screen"
406
  msgstr ""
407
 
408
- #: admin.inc.php:421
409
  msgid ""
410
  "If the postmeta is not set, then should the plugin extract the first image "
411
  "from the post?"
412
  msgstr ""
413
 
414
- #: admin.inc.php:424
415
  msgid ""
416
  "This could slow down the loading of your page if the first image in the "
417
  "related posts is large in file-size"
418
  msgstr ""
419
 
420
- #: admin.inc.php:427
421
  msgid "Use default thumbnail? "
422
  msgstr ""
423
 
424
- #: admin.inc.php:430
425
  msgid ""
426
  "If checked, when no thumbnail is found, show a default one from the URL "
427
  "below. If not checked and no thumbnail is found, no image will be shown."
428
  msgstr ""
429
 
430
- #: admin.inc.php:433
431
  msgid "Default thumbnail: "
432
  msgstr ""
433
 
434
- #: admin.inc.php:437
435
  msgid ""
436
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
437
  "then it will check the meta field. If this is not available, then it will "
438
  "show the default image as specified above"
439
  msgstr ""
440
 
441
- #: admin.inc.php:444
442
  msgid "Custom CSS"
443
  msgstr ""
444
 
445
- #: admin.inc.php:447
446
  msgid "Use default style included in the plugin?"
447
  msgstr ""
448
 
449
- #: admin.inc.php:450
450
  msgid ""
451
  "Top 10 includes a default style that makes your popular posts list to look "
452
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -454,36 +478,36 @@ msgid ""
454
  "Widget."
455
  msgstr ""
456
 
457
- #: admin.inc.php:453
458
  msgid "Custom CSS to add to header:"
459
  msgstr ""
460
 
461
- #: admin.inc.php:456
462
  msgid ""
463
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
464
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
465
  "available CSS classes to style."
466
  msgstr ""
467
 
468
- #: admin.inc.php:463 admin.inc.php:529
469
  #, fuzzy
470
  msgid "Save Options"
471
  msgstr "विकल्प हैं:"
472
 
473
- #: admin.inc.php:464
474
  #, fuzzy
475
  msgid "Default Options"
476
  msgstr "विकल्प हैं:"
477
 
478
- #: admin.inc.php:464
479
  msgid "Do you want to set options to Default?"
480
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
481
 
482
- #: admin.inc.php:473
483
  msgid "Maintenance"
484
  msgstr ""
485
 
486
- #: admin.inc.php:477
487
  msgid ""
488
  "Over time the Daily Top 10 database grows in size, which reduces the "
489
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -491,321 +515,351 @@ msgid ""
491
  "will automatically delete entries older than 90 days."
492
  msgstr ""
493
 
494
- #: admin.inc.php:478
495
  msgid ""
496
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
497
  "everytime the job is rescheduled (i.e. you change the settings below)."
498
  msgstr ""
499
 
500
- #: admin.inc.php:481
501
  msgid "Enable scheduled maintenance of daily tables:"
502
  msgstr ""
503
 
504
- #: admin.inc.php:485
505
  msgid "Time to run maintenance"
506
  msgstr ""
507
 
508
- #: admin.inc.php:486
509
  msgid "hrs"
510
  msgstr ""
511
 
512
- #: admin.inc.php:486
513
  msgid "min"
514
  msgstr ""
515
 
516
- #: admin.inc.php:488
517
  msgid "How often should the maintenance be run:"
518
  msgstr ""
519
 
520
- #: admin.inc.php:492
521
  msgid "Daily"
522
  msgstr ""
523
 
524
- #: admin.inc.php:496
525
  msgid "Weekly"
526
  msgstr ""
527
 
528
- #: admin.inc.php:500
529
  msgid "Fortnightly"
530
  msgstr ""
531
 
532
- #: admin.inc.php:504
533
  msgid "Monthly"
534
  msgstr ""
535
 
536
- #: admin.inc.php:513
537
  msgid "The cron job has been scheduled. Maintenance will run "
538
  msgstr ""
539
 
540
- #: admin.inc.php:518
541
  msgid "The cron job is missing. Please resave this page to add the job"
542
  msgstr ""
543
 
544
- #: admin.inc.php:523
545
  msgid "Maintenance is turned off"
546
  msgstr ""
547
 
548
- #: admin.inc.php:537
549
  msgid "Reset count"
550
  msgstr ""
551
 
552
- #: admin.inc.php:540
553
  msgid ""
554
  "This cannot be reversed. Make sure that your database has been backed up "
555
  "before proceeding"
556
  msgstr ""
557
 
558
- #: admin.inc.php:543
559
  #, fuzzy
560
  msgid "Reset Popular Posts"
561
  msgstr "लोकप्रिय पोस्ट्स "
562
 
563
- #: admin.inc.php:543
564
  msgid "Are you sure you want to reset the popular posts?"
565
  msgstr ""
566
 
567
- #: admin.inc.php:544
568
  #, fuzzy
569
  msgid "Reset Daily Popular Posts"
570
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
571
 
572
- #: admin.inc.php:544
573
  msgid "Are you sure you want to reset the daily popular posts?"
574
  msgstr ""
575
 
576
- #: admin.inc.php:545
577
  msgid "Clear duplicates"
578
  msgstr ""
579
 
580
- #: admin.inc.php:545
581
  msgid "This will delete the duplicate entries in the tables. Proceed?"
582
  msgstr ""
583
 
584
- #: admin.inc.php:593 admin.inc.php:979
585
  msgid "Popular Posts"
586
  msgstr "लोकप्रिय पोस्ट्स "
587
 
588
- #: admin.inc.php:593 admin.inc.php:688
589
  msgid "Daily Popular Posts"
590
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
591
 
592
- #: admin.inc.php:621
593
  #, fuzzy
594
  msgid "Support the development"
595
  msgstr "समर्थन विकास"
596
 
597
- #: admin.inc.php:630
 
 
 
 
598
  msgid "Enter amount in USD: "
599
  msgstr ""
600
 
601
- #: admin.inc.php:634
602
- msgid "Send your donation to the author of"
603
  msgstr ""
604
 
605
- #: admin.inc.php:641
606
  msgid "Follow me"
607
  msgstr ""
608
 
609
- #: admin.inc.php:651
610
  msgid "Quick links"
611
  msgstr ""
612
 
613
- #: admin.inc.php:655
614
  msgid "Top 10 plugin page"
615
  msgstr ""
616
 
617
- #: admin.inc.php:656
618
  msgid "Other plugins"
619
  msgstr ""
620
 
621
- #: admin.inc.php:657
622
  msgid "Ajay's blog"
623
  msgstr ""
624
 
625
- #: admin.inc.php:658
626
  msgid "FAQ"
627
  msgstr ""
628
 
629
- #: admin.inc.php:659 top-10.php:1267
630
  msgid "Support"
631
  msgstr ""
632
 
633
- #: admin.inc.php:660
634
  msgid "Reviews"
635
  msgstr ""
636
 
637
- #: admin.inc.php:679 admin.inc.php:682
638
  #, fuzzy
639
  msgid "Top 10 Settings"
640
  msgstr "शीर्ष 10"
641
 
642
- #: admin.inc.php:679
643
  msgid "Top 10"
644
  msgstr "शीर्ष 10"
645
 
646
- #: admin.inc.php:685
647
  #, fuzzy
648
  msgid "Overall Popular Posts"
649
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
650
 
651
- #: admin.inc.php:850
652
  #, php-format
653
  msgid "Results %1$s to %2$s of %3$s"
654
  msgstr ""
655
 
656
- #: admin.inc.php:854
657
  #, php-format
658
  msgid "Page %s of %s"
659
  msgstr ""
660
 
661
- #: admin.inc.php:866
662
  msgid "View Daily Popular Posts"
663
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
664
 
665
- #: admin.inc.php:869 admin.inc.php:882
666
  msgid "Results per-page:"
667
  msgstr "प्रति परिणाम पृष्ठ:"
668
 
669
- #: admin.inc.php:879
670
  msgid "View Overall Popular Posts"
671
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
672
 
673
- #: admin.inc.php:908
674
  msgid "Previous"
675
  msgstr "पिछला"
676
 
677
- #: admin.inc.php:936
678
  msgid "Next"
679
  msgstr "अगला"
680
 
681
- #: admin.inc.php:980
682
  msgid "Daily Popular"
683
  msgstr "दैनिक लोकप्रिय"
684
 
685
- #: admin.inc.php:998
686
  #, fuzzy
687
  msgid "Total Views"
688
  msgstr "कुल / आज दर्शाव"
689
 
690
- #: admin.inc.php:999
691
  #, fuzzy
692
  msgid "Today's Views"
693
  msgstr "कुल / आज दर्शाव"
694
 
695
- #: admin.inc.php:1000
696
  #, fuzzy
697
  msgid "Views"
698
  msgstr "कुल / आज दर्शाव"
699
 
700
- #: top-10.php:438
701
- msgid " by "
 
 
 
 
 
 
 
 
 
 
702
  msgstr ""
703
 
704
- #: top-10.php:524
705
- msgid "Display the posts popular this week"
 
 
 
706
  msgstr ""
707
 
708
- #: top-10.php:525
 
 
 
 
 
 
 
 
709
  #, fuzzy
710
  msgid "Popular Posts [Top 10]"
711
  msgstr "लोकप्रिय पोस्ट्स "
712
 
713
- #: top-10.php:543
 
 
 
 
 
714
  msgid "Title"
715
  msgstr ""
716
 
717
- #: top-10.php:548
718
  msgid "No. of posts"
719
  msgstr ""
720
 
721
- #: top-10.php:553
722
  msgid "Overall"
723
  msgstr ""
724
 
725
- #: top-10.php:554
726
  msgid "Custom time period (Enter below)"
727
  msgstr ""
728
 
729
- #: top-10.php:559
730
  msgid "Range in number of days (applies only to custom option above)"
731
  msgstr ""
732
 
733
- #: top-10.php:564
734
- msgid " Show count?"
735
  msgstr ""
736
 
737
- #: top-10.php:569
738
- msgid " Show excerpt?"
739
  msgstr ""
740
 
741
- #: top-10.php:574
742
- msgid " Show author?"
743
  msgstr ""
744
 
745
- #: top-10.php:579
746
- msgid " Show date?"
747
  msgstr ""
748
 
749
- #: top-10.php:583
750
  msgid "Thumbnail options"
751
  msgstr ""
752
 
753
- #: top-10.php:585
754
  #, fuzzy
755
  msgid "Thumbnails inline, before title"
756
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
757
 
758
- #: top-10.php:586
759
  #, fuzzy
760
  msgid "Thumbnails inline, after title"
761
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
762
 
763
- #: top-10.php:587
764
  msgid "Only thumbnails, no text"
765
  msgstr ""
766
 
767
- #: top-10.php:588
768
  msgid "No thumbnails, only text."
769
  msgstr ""
770
 
771
- #: top-10.php:593
772
  msgid "Thumbnail height"
773
  msgstr ""
774
 
775
- #: top-10.php:598
776
  msgid "Thumbnail width"
777
  msgstr ""
778
 
779
- #: top-10.php:719
780
  msgid "<h3>Popular Posts</h3>"
781
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
782
 
783
- #: top-10.php:720
784
  msgid "<h3>Daily Popular</h3>"
785
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
786
 
787
- #: top-10.php:721
788
  #, fuzzy
789
  msgid "No top posts yet"
790
  msgstr "लोकप्रिय पदों का शीर्षक:"
791
 
792
- #: top-10.php:1184
793
  msgid "Once Weekly"
794
  msgstr ""
795
 
796
- #: top-10.php:1188
797
  msgid "Once Fortnightly"
798
  msgstr ""
799
 
800
- #: top-10.php:1192
801
  msgid "Once Monthly"
802
  msgstr ""
803
 
804
- #: top-10.php:1255
805
  msgid "Settings"
806
  msgstr ""
807
 
808
- #: top-10.php:1268
809
  msgid "Donate"
810
  msgstr ""
811
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
13
  "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
+ "X-Generator: Poedit 1.6.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:115
20
  msgid "Options saved successfully."
21
  msgstr "विकल्प सफलतापूर्वक बचाया."
22
 
23
+ #: admin.inc.php:125
24
  msgid "Options set to Default."
25
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
26
 
27
+ #: admin.inc.php:131
28
  #, fuzzy
29
  msgid "Top 10 popular posts reset"
30
  msgstr "लोकप्रिय पदों का शीर्षक:"
31
 
32
+ #: admin.inc.php:137
33
  #, fuzzy
34
  msgid "Top 10 daily popular posts reset"
35
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
36
 
37
+ #: admin.inc.php:144
38
  msgid "Duplicate rows cleaned from tables"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:156
42
  msgid "Scheduled maintenance enabled / modified"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:160
46
  msgid "Scheduled maintenance disabled"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
50
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
51
+ msgid "Click to toggle"
52
  msgstr ""
53
 
54
  #: admin.inc.php:176
55
+ msgid "General options"
56
+ msgstr ""
57
+
58
+ #: admin.inc.php:180
59
  msgid "Enable Overall stats"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:185
63
  msgid "Enable Daily stats"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:190
67
  msgid "W3 Total Cache fix:"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:192
71
  msgid ""
72
  "This will try to prevent W3 Total Cache from caching the addcount script of "
73
  "the plugin. Try toggling this option in case you find that our posts are not "
74
  "tracked."
75
  msgstr ""
76
 
77
+ #: admin.inc.php:196
78
  msgid "Number of popular posts to display: "
79
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
80
 
81
+ #: admin.inc.php:198
82
  msgid ""
83
  "Maximum number of posts that will be displayed in the list. This option is "
84
  "used if you don't specify the number of posts in the widget or shortcodes"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:202
88
  msgid "Daily Popular should contain views of how many days? "
89
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
90
 
91
+ #: admin.inc.php:204
92
  msgid ""
93
  "Instead of displaying popular posts fromt he past day, this setting lets you "
94
  "display posts for as many days as you want. This can be overridden in the "
95
  "widget."
96
  msgstr ""
97
 
98
+ #: admin.inc.php:207
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:218
103
  msgid "List of post or page IDs to exclude from the results: "
104
  msgstr ""
105
 
106
+ #: admin.inc.php:220 admin.inc.php:361
107
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:224
111
  msgid "Exclude Categories: "
112
  msgstr ""
113
 
114
+ #: admin.inc.php:239
115
  msgid ""
116
  "Comma separated list of category slugs. The field above has an autocomplete "
117
  "so simply start typing in the starting letters and it will prompt you with "
118
  "options"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:244
122
  #, fuzzy
123
  msgid "Display number of views on:"
124
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
125
 
126
+ #: admin.inc.php:246
127
  msgid "Posts"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:247
131
  #, fuzzy
132
  msgid "Pages"
133
  msgstr "पृष्ठ"
134
 
135
+ #: admin.inc.php:248
136
  msgid "Home page"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:249
140
  msgid "Feeds"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:250
144
  msgid "Category archives"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:251
148
  msgid "Tag archives"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:252
152
  msgid "Other archives"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:253
156
  msgid ""
157
+ "If you choose to disable this, please add <code>&lt;?php if "
158
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
159
+ "</code> to your template file where you want it displayed"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:256
163
  msgid "Always display latest post count"
164
  msgstr ""
165
 
166
+ #: admin.inc.php:258
167
  msgid ""
168
  "This option uses JavaScript and will increase your page load time. Turn this "
169
  "off if you are not using caching plugins or are OK with displaying older "
170
  "cached counts."
171
  msgstr ""
172
 
173
+ #: admin.inc.php:261
174
  msgid "Track visits of authors on their own posts?"
175
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
176
 
177
+ #: admin.inc.php:263
178
  msgid ""
179
  "Disabling this option will stop authors visits tracked on their own posts"
180
  msgstr ""
181
 
182
+ #: admin.inc.php:266
183
  #, fuzzy
184
  msgid "Track visits of admins?"
185
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
186
 
187
+ #: admin.inc.php:268
188
  msgid "Disabling this option will stop admin visits being tracked."
189
  msgstr ""
190
 
191
+ #: admin.inc.php:271
192
+ #, fuzzy
193
+ msgid "Track visits of Editors?"
194
+ msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
195
+
196
+ #: admin.inc.php:273
197
+ msgid "Disabling this option will stop editor visits being tracked."
198
+ msgstr ""
199
+
200
+ #: admin.inc.php:276
201
  msgid "Display page views on Posts and Pages in Admin"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:279
205
  msgid ""
206
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
207
  "and All Pages"
208
  msgstr ""
209
 
210
+ #: admin.inc.php:282
211
  #, fuzzy
212
  msgid "Show number of views to non-admins"
213
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
214
 
215
+ #: admin.inc.php:285
216
  msgid ""
217
  "If you disable this then non-admins won't see the above columns or view the "
218
  "independent pages with the top posts"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:288
222
  msgid "Link to Top 10 plugin page"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:291
226
  #, fuzzy
227
  msgid ""
228
  "A link to the plugin is added as an extra list item to the list of popular "
231
  "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
232
  "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
233
 
234
+ #: admin.inc.php:298
235
  #, fuzzy
236
  msgid "Output options"
237
  msgstr "विकल्प हैं:"
238
 
239
+ #: admin.inc.php:301
240
  #, fuzzy
241
  msgid "Format to display the post views:"
242
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
243
 
244
+ #: admin.inc.php:303
245
  #, fuzzy
246
  msgid ""
247
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
254
  "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
255
 
256
+ #: admin.inc.php:306
257
  msgid "What do display when there are no visits?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:308
261
  msgid ""
262
  "This text applies only when there are 0 hits for the post and it isn't a "
263
  "single page. e.g. if you display post views on the homepage or archives then "
265
  "option."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:311
269
  msgid "Title of popular posts: "
270
  msgstr "लोकप्रिय पदों का शीर्षक:"
271
 
272
+ #: admin.inc.php:314
273
  msgid "Title of daily popular posts: "
274
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
275
 
276
+ #: admin.inc.php:317
277
  msgid "When there are no posts, what should be shown?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Blank Output"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:325
285
  msgid "Display:"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:329
289
  msgid "Show post excerpt in list?"
290
  msgstr ""
291
 
292
+ #: admin.inc.php:332
293
  msgid "Length of excerpt (in words): "
294
  msgstr ""
295
 
296
+ #: admin.inc.php:335
297
  msgid "Show post author in list?"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:338
301
  msgid "Show post date in list?"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:341
305
  msgid "Limit post title length (in characters)"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:344
309
  msgid "Show view count in list?"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:347
313
  msgid "Always display latest post count in the daily lists?"
314
  msgstr ""
315
 
316
+ #: admin.inc.php:349
317
  msgid ""
318
  "This option uses JavaScript and will increase your page load time. When you "
319
  "enable this option, the daily widget will not use the options set there, but "
320
  "options will need to be set on this screen."
321
  msgstr ""
322
 
323
+ #: admin.inc.php:352
324
  msgid "Open links in new window"
325
  msgstr ""
326
 
327
+ #: admin.inc.php:355
328
  msgid "Add nofollow attribute to links in the list"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:358
332
  msgid "Exclude display of related posts on these posts / pages"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:364
336
  msgid "Customise the list HTML"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:366
340
  msgid "HTML to display before the list of posts: "
341
  msgstr ""
342
 
343
+ #: admin.inc.php:369
344
  msgid "HTML to display before each list item: "
345
  msgstr ""
346
 
347
+ #: admin.inc.php:372
348
  #, fuzzy
349
  msgid "HTML to display after each list item: "
350
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
351
 
352
+ #: admin.inc.php:375
353
  msgid "HTML to display after the list of posts: "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:378
357
  msgid "Post thumbnail options:"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:380
361
  msgid "Location of post thumbnail:"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:384
365
  #, fuzzy
366
  msgid "Display thumbnails inline with posts, before title"
367
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
368
 
369
+ #: admin.inc.php:388
370
  #, fuzzy
371
  msgid "Display thumbnails inline with posts, after title"
372
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
373
 
374
+ #: admin.inc.php:392
375
  msgid "Display only thumbnails, no text"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:396
379
  msgid "Do not display thumbnails, only text."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:400
383
  msgid "Width of the thumbnail: "
384
  msgstr ""
385
 
386
+ #: admin.inc.php:403
387
  msgid "Height of the thumbnail: "
388
  msgstr ""
389
 
390
+ #: admin.inc.php:406
391
  msgid "Style attributes / Width and Height HTML attributes:"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:410
395
  msgid "Style attributes are used for width and height."
396
  msgstr ""
397
 
398
+ #: admin.inc.php:414
399
  msgid "HTML width and height attributes are used for width and height."
400
  msgstr ""
401
 
402
+ #: admin.inc.php:418
403
  msgid "Use timthumb to generate thumbnails? "
404
  msgstr ""
405
 
406
+ #: admin.inc.php:421
407
  msgid ""
408
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
409
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:424
413
+ msgid "Quality of thumbnails generated by timthumb:"
414
+ msgstr ""
415
+
416
+ #: admin.inc.php:427
417
+ msgid ""
418
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
419
+ "file size. Suggested maximum value is 95. Default is 75."
420
+ msgstr ""
421
+
422
+ #: admin.inc.php:430
423
  msgid "Post thumbnail meta field name: "
424
  msgstr ""
425
 
426
+ #: admin.inc.php:433
427
  msgid ""
428
  "The value of this field should contain the image source and is set in the "
429
  "<em>Add New Post</em> screen"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:436
433
  msgid ""
434
  "If the postmeta is not set, then should the plugin extract the first image "
435
  "from the post?"
436
  msgstr ""
437
 
438
+ #: admin.inc.php:439
439
  msgid ""
440
  "This could slow down the loading of your page if the first image in the "
441
  "related posts is large in file-size"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:442
445
  msgid "Use default thumbnail? "
446
  msgstr ""
447
 
448
+ #: admin.inc.php:445
449
  msgid ""
450
  "If checked, when no thumbnail is found, show a default one from the URL "
451
  "below. If not checked and no thumbnail is found, no image will be shown."
452
  msgstr ""
453
 
454
+ #: admin.inc.php:448
455
  msgid "Default thumbnail: "
456
  msgstr ""
457
 
458
+ #: admin.inc.php:452
459
  msgid ""
460
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
461
  "then it will check the meta field. If this is not available, then it will "
462
  "show the default image as specified above"
463
  msgstr ""
464
 
465
+ #: admin.inc.php:459
466
  msgid "Custom CSS"
467
  msgstr ""
468
 
469
+ #: admin.inc.php:462
470
  msgid "Use default style included in the plugin?"
471
  msgstr ""
472
 
473
+ #: admin.inc.php:465
474
  msgid ""
475
  "Top 10 includes a default style that makes your popular posts list to look "
476
  "pretty. Check the box above if you want to use this. You will need to select "
478
  "Widget."
479
  msgstr ""
480
 
481
+ #: admin.inc.php:468
482
  msgid "Custom CSS to add to header:"
483
  msgstr ""
484
 
485
+ #: admin.inc.php:471
486
  msgid ""
487
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
488
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
489
  "available CSS classes to style."
490
  msgstr ""
491
 
492
+ #: admin.inc.php:478 admin.inc.php:544
493
  #, fuzzy
494
  msgid "Save Options"
495
  msgstr "विकल्प हैं:"
496
 
497
+ #: admin.inc.php:479
498
  #, fuzzy
499
  msgid "Default Options"
500
  msgstr "विकल्प हैं:"
501
 
502
+ #: admin.inc.php:479
503
  msgid "Do you want to set options to Default?"
504
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
505
 
506
+ #: admin.inc.php:488
507
  msgid "Maintenance"
508
  msgstr ""
509
 
510
+ #: admin.inc.php:492
511
  msgid ""
512
  "Over time the Daily Top 10 database grows in size, which reduces the "
513
  "performance of the plugin. Cleaning the database at regular intervals could "
515
  "will automatically delete entries older than 90 days."
516
  msgstr ""
517
 
518
+ #: admin.inc.php:493
519
  msgid ""
520
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
521
  "everytime the job is rescheduled (i.e. you change the settings below)."
522
  msgstr ""
523
 
524
+ #: admin.inc.php:496
525
  msgid "Enable scheduled maintenance of daily tables:"
526
  msgstr ""
527
 
528
+ #: admin.inc.php:500
529
  msgid "Time to run maintenance"
530
  msgstr ""
531
 
532
+ #: admin.inc.php:501
533
  msgid "hrs"
534
  msgstr ""
535
 
536
+ #: admin.inc.php:501
537
  msgid "min"
538
  msgstr ""
539
 
540
+ #: admin.inc.php:503
541
  msgid "How often should the maintenance be run:"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:507
545
  msgid "Daily"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:511
549
  msgid "Weekly"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:515
553
  msgid "Fortnightly"
554
  msgstr ""
555
 
556
+ #: admin.inc.php:519
557
  msgid "Monthly"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:528
561
  msgid "The cron job has been scheduled. Maintenance will run "
562
  msgstr ""
563
 
564
+ #: admin.inc.php:533
565
  msgid "The cron job is missing. Please resave this page to add the job"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:538
569
  msgid "Maintenance is turned off"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:552
573
  msgid "Reset count"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:555
577
  msgid ""
578
  "This cannot be reversed. Make sure that your database has been backed up "
579
  "before proceeding"
580
  msgstr ""
581
 
582
+ #: admin.inc.php:558
583
  #, fuzzy
584
  msgid "Reset Popular Posts"
585
  msgstr "लोकप्रिय पोस्ट्स "
586
 
587
+ #: admin.inc.php:558
588
  msgid "Are you sure you want to reset the popular posts?"
589
  msgstr ""
590
 
591
+ #: admin.inc.php:559
592
  #, fuzzy
593
  msgid "Reset Daily Popular Posts"
594
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
595
 
596
+ #: admin.inc.php:559
597
  msgid "Are you sure you want to reset the daily popular posts?"
598
  msgstr ""
599
 
600
+ #: admin.inc.php:560
601
  msgid "Clear duplicates"
602
  msgstr ""
603
 
604
+ #: admin.inc.php:560
605
  msgid "This will delete the duplicate entries in the tables. Proceed?"
606
  msgstr ""
607
 
608
+ #: admin.inc.php:612 admin.inc.php:1010
609
  msgid "Popular Posts"
610
  msgstr "लोकप्रिय पोस्ट्स "
611
 
612
+ #: admin.inc.php:614 admin.inc.php:713
613
  msgid "Daily Popular Posts"
614
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
615
 
616
+ #: admin.inc.php:645
617
  #, fuzzy
618
  msgid "Support the development"
619
  msgstr "समर्थन विकास"
620
 
621
+ #: admin.inc.php:652
622
+ msgid "Donation for Top 10"
623
+ msgstr ""
624
+
625
+ #: admin.inc.php:654
626
  msgid "Enter amount in USD: "
627
  msgstr ""
628
 
629
+ #: admin.inc.php:658
630
+ msgid "Send your donation to the author of Top 10"
631
  msgstr ""
632
 
633
+ #: admin.inc.php:665
634
  msgid "Follow me"
635
  msgstr ""
636
 
637
+ #: admin.inc.php:675
638
  msgid "Quick links"
639
  msgstr ""
640
 
641
+ #: admin.inc.php:679
642
  msgid "Top 10 plugin page"
643
  msgstr ""
644
 
645
+ #: admin.inc.php:680
646
  msgid "Other plugins"
647
  msgstr ""
648
 
649
+ #: admin.inc.php:681
650
  msgid "Ajay's blog"
651
  msgstr ""
652
 
653
+ #: admin.inc.php:682
654
  msgid "FAQ"
655
  msgstr ""
656
 
657
+ #: admin.inc.php:683 top-10.php:1345
658
  msgid "Support"
659
  msgstr ""
660
 
661
+ #: admin.inc.php:684
662
  msgid "Reviews"
663
  msgstr ""
664
 
665
+ #: admin.inc.php:704 admin.inc.php:707
666
  #, fuzzy
667
  msgid "Top 10 Settings"
668
  msgstr "शीर्ष 10"
669
 
670
+ #: admin.inc.php:704 admin.inc.php:1183
671
  msgid "Top 10"
672
  msgstr "शीर्ष 10"
673
 
674
+ #: admin.inc.php:710
675
  #, fuzzy
676
  msgid "Overall Popular Posts"
677
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
678
 
679
+ #: admin.inc.php:882
680
  #, php-format
681
  msgid "Results %1$s to %2$s of %3$s"
682
  msgstr ""
683
 
684
+ #: admin.inc.php:886
685
  #, php-format
686
  msgid "Page %s of %s"
687
  msgstr ""
688
 
689
+ #: admin.inc.php:898
690
  msgid "View Daily Popular Posts"
691
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
692
 
693
+ #: admin.inc.php:901 admin.inc.php:914
694
  msgid "Results per-page:"
695
  msgstr "प्रति परिणाम पृष्ठ:"
696
 
697
+ #: admin.inc.php:911
698
  msgid "View Overall Popular Posts"
699
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
700
 
701
+ #: admin.inc.php:940
702
  msgid "Previous"
703
  msgstr "पिछला"
704
 
705
+ #: admin.inc.php:968
706
  msgid "Next"
707
  msgstr "अगला"
708
 
709
+ #: admin.inc.php:1011
710
  msgid "Daily Popular"
711
  msgstr "दैनिक लोकप्रिय"
712
 
713
+ #: admin.inc.php:1029
714
  #, fuzzy
715
  msgid "Total Views"
716
  msgstr "कुल / आज दर्शाव"
717
 
718
+ #: admin.inc.php:1030
719
  #, fuzzy
720
  msgid "Today's Views"
721
  msgstr "कुल / आज दर्शाव"
722
 
723
+ #: admin.inc.php:1031
724
  #, fuzzy
725
  msgid "Views"
726
  msgstr "कुल / आज दर्शाव"
727
 
728
+ #: admin.inc.php:1217
729
+ msgid "Visit count:"
730
+ msgstr ""
731
+
732
+ #: admin.inc.php:1219
733
+ msgid ""
734
+ "Enter a number above to update the visit count. Leaving the above box blank "
735
+ "will set the count to zero"
736
+ msgstr ""
737
+
738
+ #: admin.inc.php:1229
739
+ msgid "Location of thumbnail:"
740
  msgstr ""
741
 
742
+ #: admin.inc.php:1231
743
+ msgid ""
744
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
745
+ "image will be used for the post. It will be resized to the thumbnail size "
746
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
747
  msgstr ""
748
 
749
+ #: admin.inc.php:1232
750
+ msgid "The URL above is saved in the meta field: "
751
+ msgstr ""
752
+
753
+ #: top-10.php:456
754
+ msgid " by "
755
+ msgstr ""
756
+
757
+ #: top-10.php:550
758
  #, fuzzy
759
  msgid "Popular Posts [Top 10]"
760
  msgstr "लोकप्रिय पोस्ट्स "
761
 
762
+ #: top-10.php:551
763
+ #, fuzzy
764
+ msgid "Display popular posts"
765
+ msgstr "दैनिक लोकप्रिय पोस्ट्स "
766
+
767
+ #: top-10.php:577
768
  msgid "Title"
769
  msgstr ""
770
 
771
+ #: top-10.php:582
772
  msgid "No. of posts"
773
  msgstr ""
774
 
775
+ #: top-10.php:587
776
  msgid "Overall"
777
  msgstr ""
778
 
779
+ #: top-10.php:588
780
  msgid "Custom time period (Enter below)"
781
  msgstr ""
782
 
783
+ #: top-10.php:593
784
  msgid "Range in number of days (applies only to custom option above)"
785
  msgstr ""
786
 
787
+ #: top-10.php:598
788
+ msgid "Show count?"
789
  msgstr ""
790
 
791
+ #: top-10.php:603
792
+ msgid "Show excerpt?"
793
  msgstr ""
794
 
795
+ #: top-10.php:608
796
+ msgid "Show author?"
797
  msgstr ""
798
 
799
+ #: top-10.php:613
800
+ msgid "Show date?"
801
  msgstr ""
802
 
803
+ #: top-10.php:617
804
  msgid "Thumbnail options"
805
  msgstr ""
806
 
807
+ #: top-10.php:619
808
  #, fuzzy
809
  msgid "Thumbnails inline, before title"
810
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
811
 
812
+ #: top-10.php:620
813
  #, fuzzy
814
  msgid "Thumbnails inline, after title"
815
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
816
 
817
+ #: top-10.php:621
818
  msgid "Only thumbnails, no text"
819
  msgstr ""
820
 
821
+ #: top-10.php:622
822
  msgid "No thumbnails, only text."
823
  msgstr ""
824
 
825
+ #: top-10.php:627
826
  msgid "Thumbnail height"
827
  msgstr ""
828
 
829
+ #: top-10.php:632
830
  msgid "Thumbnail width"
831
  msgstr ""
832
 
833
+ #: top-10.php:772
834
  msgid "<h3>Popular Posts</h3>"
835
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
836
 
837
+ #: top-10.php:773
838
  msgid "<h3>Daily Popular</h3>"
839
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
840
 
841
+ #: top-10.php:774
842
  #, fuzzy
843
  msgid "No top posts yet"
844
  msgstr "लोकप्रिय पदों का शीर्षक:"
845
 
846
+ #: top-10.php:1245
847
  msgid "Once Weekly"
848
  msgstr ""
849
 
850
+ #: top-10.php:1249
851
  msgid "Once Fortnightly"
852
  msgstr ""
853
 
854
+ #: top-10.php:1253
855
  msgid "Once Monthly"
856
  msgstr ""
857
 
858
+ #: top-10.php:1323
859
  msgid "Settings"
860
  msgstr ""
861
 
862
+ #: top-10.php:1346
863
  msgid "Donate"
864
  msgstr ""
865
 
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
@@ -12,206 +12,222 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Numero degli articoli più popolari da mostrare:"
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
  "Quanti giorni desideri siano considerati per il computo delle "
83
  "visualizzazioni per articoli più popolari del giorno?"
84
 
85
- #: admin.inc.php:200
86
  msgid ""
87
  "Instead of displaying popular posts fromt he past day, this setting lets you "
88
  "display posts for as many days as you want. This can be overridden in the "
89
  "widget."
90
  msgstr ""
91
 
92
- #: admin.inc.php:203
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
- #: admin.inc.php:214
97
  msgid "List of post or page IDs to exclude from the results: "
98
  msgstr ""
99
 
100
- #: admin.inc.php:216 admin.inc.php:352
101
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
102
  msgstr ""
103
 
104
- #: admin.inc.php:220
105
  msgid "Exclude Categories: "
106
  msgstr "Escludi categorie:"
107
 
108
- #: admin.inc.php:235
109
  msgid ""
110
  "Comma separated list of category slugs. The field above has an autocomplete "
111
  "so simply start typing in the starting letters and it will prompt you with "
112
  "options"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  #, fuzzy
117
  msgid "Display number of views on:"
118
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
119
 
120
- #: admin.inc.php:242
121
  msgid "Posts"
122
  msgstr ""
123
 
124
- #: admin.inc.php:243
125
  #, fuzzy
126
  msgid "Pages"
127
  msgstr "Pagina"
128
 
129
- #: admin.inc.php:244
130
  msgid "Home page"
131
  msgstr ""
132
 
133
- #: admin.inc.php:245
134
  msgid "Feeds"
135
  msgstr ""
136
 
137
- #: admin.inc.php:246
138
  msgid "Category archives"
139
  msgstr ""
140
 
141
- #: admin.inc.php:247
142
  msgid "Tag archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:248
146
  msgid "Other archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:249
150
  msgid ""
151
- "If you choose to disable this, please add <code>&lt;?php "
152
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
153
- "template file where you want it displayed"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Always display latest post count"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid ""
162
  "This option uses JavaScript and will increase your page load time. Turn this "
163
  "off if you are not using caching plugins or are OK with displaying older "
164
  "cached counts."
165
  msgstr ""
166
 
167
- #: admin.inc.php:257
168
  msgid "Track visits of authors on their own posts?"
169
  msgstr ""
170
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
171
  "del sito?"
172
 
173
- #: admin.inc.php:259
174
  msgid ""
175
  "Disabling this option will stop authors visits tracked on their own posts"
176
  msgstr ""
177
 
178
- #: admin.inc.php:262
179
  #, fuzzy
180
  msgid "Track visits of admins?"
181
  msgstr ""
182
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
183
  "del sito?"
184
 
185
- #: admin.inc.php:264
186
  msgid "Disabling this option will stop admin visits being tracked."
187
  msgstr ""
188
 
189
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
 
 
190
  msgid "Display page views on Posts and Pages in Admin"
191
  msgstr ""
192
 
193
- #: admin.inc.php:270
194
  msgid ""
195
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
196
  "and All Pages"
197
  msgstr ""
198
 
199
- #: admin.inc.php:273
200
  #, fuzzy
201
  msgid "Show number of views to non-admins"
202
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
203
 
204
- #: admin.inc.php:276
205
  msgid ""
206
  "If you disable this then non-admins won't see the above columns or view the "
207
  "independent pages with the top posts"
208
  msgstr ""
209
 
210
- #: admin.inc.php:279
211
  msgid "Link to Top 10 plugin page"
212
  msgstr ""
213
 
214
- #: admin.inc.php:282
215
  #, fuzzy
216
  msgid ""
217
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -221,17 +237,17 @@ msgstr ""
221
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
222
  "opzione!"
223
 
224
- #: admin.inc.php:289
225
  #, fuzzy
226
  msgid "Output options"
227
  msgstr "Opzioni output:"
228
 
229
- #: admin.inc.php:292
230
  #, fuzzy
231
  msgid "Format to display the post views:"
232
  msgstr "Formato per il conteggio:"
233
 
234
- #: admin.inc.php:294
235
  #, fuzzy
236
  msgid ""
237
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -244,11 +260,11 @@ msgstr ""
244
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
245
  "123 volte, 23 visite odierne)</code>"
246
 
247
- #: admin.inc.php:297
248
  msgid "What do display when there are no visits?"
249
  msgstr ""
250
 
251
- #: admin.inc.php:299
252
  msgid ""
253
  "This text applies only when there are 0 hits for the post and it isn't a "
254
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -256,163 +272,173 @@ msgid ""
256
  "option."
257
  msgstr ""
258
 
259
- #: admin.inc.php:302
260
  msgid "Title of popular posts: "
261
  msgstr "Titolo per gli articoli più popolari:"
262
 
263
- #: admin.inc.php:305
264
  msgid "Title of daily popular posts: "
265
  msgstr "Titolo per gli articoli più popolari del giorno:"
266
 
267
- #: admin.inc.php:308
268
  msgid "When there are no posts, what should be shown?"
269
  msgstr ""
270
 
271
- #: admin.inc.php:312
272
  msgid "Blank Output"
273
  msgstr ""
274
 
275
- #: admin.inc.php:316
276
  msgid "Display:"
277
  msgstr ""
278
 
279
- #: admin.inc.php:320
280
  msgid "Show post excerpt in list?"
281
  msgstr "Desideri mostrare gli estratti?"
282
 
283
- #: admin.inc.php:323
284
  msgid "Length of excerpt (in words): "
285
  msgstr "Lunghezza estratto (in parole):"
286
 
287
- #: admin.inc.php:326
288
  #, fuzzy
289
  msgid "Show post author in list?"
290
  msgstr "Desideri mostrare gli estratti?"
291
 
292
- #: admin.inc.php:329
293
  #, fuzzy
294
  msgid "Show post date in list?"
295
  msgstr "Desideri mostrare gli estratti?"
296
 
297
- #: admin.inc.php:332
298
  msgid "Limit post title length (in characters)"
299
  msgstr ""
300
 
301
- #: admin.inc.php:335
302
  #, fuzzy
303
  msgid "Show view count in list?"
304
  msgstr "Desideri mostrare gli estratti?"
305
 
306
- #: admin.inc.php:338
307
  msgid "Always display latest post count in the daily lists?"
308
  msgstr ""
309
 
310
- #: admin.inc.php:340
311
  msgid ""
312
  "This option uses JavaScript and will increase your page load time. When you "
313
  "enable this option, the daily widget will not use the options set there, but "
314
  "options will need to be set on this screen."
315
  msgstr ""
316
 
317
- #: admin.inc.php:343
318
  msgid "Open links in new window"
319
  msgstr ""
320
 
321
- #: admin.inc.php:346
322
  msgid "Add nofollow attribute to links in the list"
323
  msgstr ""
324
 
325
- #: admin.inc.php:349
326
  msgid "Exclude display of related posts on these posts / pages"
327
  msgstr ""
328
 
329
- #: admin.inc.php:355
330
  #, fuzzy
331
  msgid "Customise the list HTML"
332
  msgstr "Personalizzazione output:"
333
 
334
- #: admin.inc.php:357
335
  msgid "HTML to display before the list of posts: "
336
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
337
 
338
- #: admin.inc.php:360
339
  msgid "HTML to display before each list item: "
340
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
341
 
342
- #: admin.inc.php:363
343
  msgid "HTML to display after each list item: "
344
  msgstr "HTML da mostrare dopo ogni lista:"
345
 
346
- #: admin.inc.php:366
347
  msgid "HTML to display after the list of posts: "
348
  msgstr "HTML da mostrare dopo la lista degli articoli:"
349
 
350
- #: admin.inc.php:369
351
  msgid "Post thumbnail options:"
352
  msgstr "Opzioni miniature articolo:"
353
 
354
- #: admin.inc.php:371
355
  msgid "Location of post thumbnail:"
356
  msgstr ""
357
 
358
- #: admin.inc.php:375
359
  msgid "Display thumbnails inline with posts, before title"
360
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
361
 
362
- #: admin.inc.php:379
363
  msgid "Display thumbnails inline with posts, after title"
364
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
365
 
366
- #: admin.inc.php:383
367
  msgid "Display only thumbnails, no text"
368
  msgstr "Mostra le sole miniature, nessun testo"
369
 
370
- #: admin.inc.php:387
371
  msgid "Do not display thumbnails, only text."
372
  msgstr "Non mostrare le miniature, solo testo."
373
 
374
- #: admin.inc.php:391
375
  msgid "Width of the thumbnail: "
376
  msgstr ""
377
 
378
- #: admin.inc.php:394
379
  msgid "Height of the thumbnail: "
380
  msgstr ""
381
 
382
- #: admin.inc.php:397
383
  msgid "Style attributes / Width and Height HTML attributes:"
384
  msgstr ""
385
 
386
- #: admin.inc.php:401
387
  msgid "Style attributes are used for width and height."
388
  msgstr ""
389
 
390
- #: admin.inc.php:405
391
  msgid "HTML width and height attributes are used for width and height."
392
  msgstr ""
393
 
394
- #: admin.inc.php:409
395
  msgid "Use timthumb to generate thumbnails? "
396
  msgstr ""
397
 
398
- #: admin.inc.php:412
399
  msgid ""
400
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
401
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
402
  msgstr ""
403
 
404
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
405
  #, fuzzy
406
  msgid "Post thumbnail meta field name: "
407
  msgstr "Opzioni miniature articolo:"
408
 
409
- #: admin.inc.php:418
410
  msgid ""
411
  "The value of this field should contain the image source and is set in the "
412
  "<em>Add New Post</em> screen"
413
  msgstr ""
414
 
415
- #: admin.inc.php:421
416
  #, fuzzy
417
  msgid ""
418
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -423,7 +449,7 @@ msgstr ""
423
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
424
  "dimensioni"
425
 
426
- #: admin.inc.php:424
427
  #, fuzzy
428
  msgid ""
429
  "This could slow down the loading of your page if the first image in the "
@@ -434,11 +460,11 @@ msgstr ""
434
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
435
  "dimensioni"
436
 
437
- #: admin.inc.php:427
438
  msgid "Use default thumbnail? "
439
  msgstr ""
440
 
441
- #: admin.inc.php:430
442
  msgid ""
443
  "If checked, when no thumbnail is found, show a default one from the URL "
444
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -446,11 +472,11 @@ msgstr ""
446
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
447
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
448
 
449
- #: admin.inc.php:433
450
  msgid "Default thumbnail: "
451
  msgstr ""
452
 
453
- #: admin.inc.php:437
454
  #, fuzzy
455
  msgid ""
456
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -462,15 +488,15 @@ msgstr ""
462
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
463
  "specificato qui sotto:"
464
 
465
- #: admin.inc.php:444
466
  msgid "Custom CSS"
467
  msgstr ""
468
 
469
- #: admin.inc.php:447
470
  msgid "Use default style included in the plugin?"
471
  msgstr ""
472
 
473
- #: admin.inc.php:450
474
  msgid ""
475
  "Top 10 includes a default style that makes your popular posts list to look "
476
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -478,36 +504,36 @@ msgid ""
478
  "Widget."
479
  msgstr ""
480
 
481
- #: admin.inc.php:453
482
  msgid "Custom CSS to add to header:"
483
  msgstr ""
484
 
485
- #: admin.inc.php:456
486
  msgid ""
487
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
488
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
489
  "available CSS classes to style."
490
  msgstr ""
491
 
492
- #: admin.inc.php:463 admin.inc.php:529
493
  #, fuzzy
494
  msgid "Save Options"
495
  msgstr "Opzioni:"
496
 
497
- #: admin.inc.php:464
498
  #, fuzzy
499
  msgid "Default Options"
500
  msgstr "Opzioni output:"
501
 
502
- #: admin.inc.php:464
503
  msgid "Do you want to set options to Default?"
504
  msgstr "Desideri ripristinare alle predefinite?"
505
 
506
- #: admin.inc.php:473
507
  msgid "Maintenance"
508
  msgstr ""
509
 
510
- #: admin.inc.php:477
511
  msgid ""
512
  "Over time the Daily Top 10 database grows in size, which reduces the "
513
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -515,65 +541,65 @@ msgid ""
515
  "will automatically delete entries older than 90 days."
516
  msgstr ""
517
 
518
- #: admin.inc.php:478
519
  msgid ""
520
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
521
  "everytime the job is rescheduled (i.e. you change the settings below)."
522
  msgstr ""
523
 
524
- #: admin.inc.php:481
525
  msgid "Enable scheduled maintenance of daily tables:"
526
  msgstr ""
527
 
528
- #: admin.inc.php:485
529
  msgid "Time to run maintenance"
530
  msgstr ""
531
 
532
- #: admin.inc.php:486
533
  msgid "hrs"
534
  msgstr ""
535
 
536
- #: admin.inc.php:486
537
  msgid "min"
538
  msgstr ""
539
 
540
- #: admin.inc.php:488
541
  msgid "How often should the maintenance be run:"
542
  msgstr ""
543
 
544
- #: admin.inc.php:492
545
  msgid "Daily"
546
  msgstr ""
547
 
548
- #: admin.inc.php:496
549
  msgid "Weekly"
550
  msgstr ""
551
 
552
- #: admin.inc.php:500
553
  msgid "Fortnightly"
554
  msgstr ""
555
 
556
- #: admin.inc.php:504
557
  msgid "Monthly"
558
  msgstr ""
559
 
560
- #: admin.inc.php:513
561
  msgid "The cron job has been scheduled. Maintenance will run "
562
  msgstr ""
563
 
564
- #: admin.inc.php:518
565
  msgid "The cron job is missing. Please resave this page to add the job"
566
  msgstr ""
567
 
568
- #: admin.inc.php:523
569
  msgid "Maintenance is turned off"
570
  msgstr ""
571
 
572
- #: admin.inc.php:537
573
  msgid "Reset count"
574
  msgstr "Ripristino conteggio"
575
 
576
- #: admin.inc.php:540
577
  msgid ""
578
  "This cannot be reversed. Make sure that your database has been backed up "
579
  "before proceeding"
@@ -581,269 +607,305 @@ msgstr ""
581
  "Questa operazione non é reversibile. Effettua il backup del database prima "
582
  "di procedere"
583
 
584
- #: admin.inc.php:543
585
  #, fuzzy
586
  msgid "Reset Popular Posts"
587
  msgstr "Gli articoli più popolari"
588
 
589
- #: admin.inc.php:543
590
  msgid "Are you sure you want to reset the popular posts?"
591
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
592
 
593
- #: admin.inc.php:544
594
  #, fuzzy
595
  msgid "Reset Daily Popular Posts"
596
  msgstr "Gli articoli più popolari di oggi"
597
 
598
- #: admin.inc.php:544
599
  msgid "Are you sure you want to reset the daily popular posts?"
600
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
601
 
602
- #: admin.inc.php:545
603
  msgid "Clear duplicates"
604
  msgstr ""
605
 
606
- #: admin.inc.php:545
607
  msgid "This will delete the duplicate entries in the tables. Proceed?"
608
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
609
 
610
- #: admin.inc.php:593 admin.inc.php:979
611
  msgid "Popular Posts"
612
  msgstr "Gli articoli più popolari"
613
 
614
- #: admin.inc.php:593 admin.inc.php:688
615
  msgid "Daily Popular Posts"
616
  msgstr "Gli articoli più popolari di oggi"
617
 
618
- #: admin.inc.php:621
619
  msgid "Support the development"
620
  msgstr "Sostieni lo sviluppo"
621
 
622
- #: admin.inc.php:630
 
 
 
 
623
  msgid "Enter amount in USD: "
624
  msgstr "Inserisci la cifra in USD: "
625
 
626
- #: admin.inc.php:634
627
- msgid "Send your donation to the author of"
 
628
  msgstr "Invia la tua donazione all'autore di"
629
 
630
- #: admin.inc.php:641
631
  msgid "Follow me"
632
  msgstr ""
633
 
634
- #: admin.inc.php:651
635
  #, fuzzy
636
  msgid "Quick links"
637
  msgstr "Collegamenti veloci"
638
 
639
- #: admin.inc.php:655
640
  #, fuzzy
641
  msgid "Top 10 plugin page"
642
  msgstr "pagina plugin"
643
 
644
- #: admin.inc.php:656
645
  msgid "Other plugins"
646
  msgstr "Altri plugin"
647
 
648
- #: admin.inc.php:657
649
  msgid "Ajay's blog"
650
  msgstr "Il blog di Ajay"
651
 
652
- #: admin.inc.php:658
653
  msgid "FAQ"
654
  msgstr ""
655
 
656
- #: admin.inc.php:659 top-10.php:1267
657
  msgid "Support"
658
  msgstr "Supporto"
659
 
660
- #: admin.inc.php:660
661
  msgid "Reviews"
662
  msgstr ""
663
 
664
- #: admin.inc.php:679 admin.inc.php:682
665
  #, fuzzy
666
  msgid "Top 10 Settings"
667
  msgstr "Impostazioni"
668
 
669
- #: admin.inc.php:679
670
  msgid "Top 10"
671
  msgstr "Top 10"
672
 
673
- #: admin.inc.php:685
674
  #, fuzzy
675
  msgid "Overall Popular Posts"
676
  msgstr "Visualizza panoramica articoli più popolari"
677
 
678
- #: admin.inc.php:850
679
  #, php-format
680
  msgid "Results %1$s to %2$s of %3$s"
681
  msgstr ""
682
 
683
- #: admin.inc.php:854
684
  #, php-format
685
  msgid "Page %s of %s"
686
  msgstr ""
687
 
688
- #: admin.inc.php:866
689
  msgid "View Daily Popular Posts"
690
  msgstr "Visualizza gli articoli più letti di oggi"
691
 
692
- #: admin.inc.php:869 admin.inc.php:882
693
  msgid "Results per-page:"
694
  msgstr "Risultati per pagina:"
695
 
696
- #: admin.inc.php:879
697
  msgid "View Overall Popular Posts"
698
  msgstr "Visualizza panoramica articoli più popolari"
699
 
700
- #: admin.inc.php:908
701
  msgid "Previous"
702
  msgstr "Precedente"
703
 
704
- #: admin.inc.php:936
705
  msgid "Next"
706
  msgstr "Successiva"
707
 
708
- #: admin.inc.php:980
709
  msgid "Daily Popular"
710
  msgstr "I più letti di oggi"
711
 
712
- #: admin.inc.php:998
713
  #, fuzzy
714
  msgid "Total Views"
715
  msgstr "Totale / Visualizzazioni odierne"
716
 
717
- #: admin.inc.php:999
718
  #, fuzzy
719
  msgid "Today's Views"
720
  msgstr "Totale / Visualizzazioni odierne"
721
 
722
- #: admin.inc.php:1000
723
  #, fuzzy
724
  msgid "Views"
725
  msgstr "Totale / Visualizzazioni odierne"
726
 
727
- #: top-10.php:438
728
- msgid " by "
 
 
 
 
 
 
 
729
  msgstr ""
730
 
731
- #: top-10.php:524
732
- msgid "Display the posts popular this week"
733
- msgstr "Mostra articoli più popolari settimana in corso"
734
 
735
- #: top-10.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
736
  #, fuzzy
737
  msgid "Popular Posts [Top 10]"
738
  msgstr "Gli articoli più popolari"
739
 
740
- #: top-10.php:543
 
 
 
 
 
741
  msgid "Title"
742
  msgstr ""
743
 
744
- #: top-10.php:548
745
  msgid "No. of posts"
746
  msgstr ""
747
 
748
- #: top-10.php:553
749
  msgid "Overall"
750
  msgstr ""
751
 
752
- #: top-10.php:554
753
  msgid "Custom time period (Enter below)"
754
  msgstr ""
755
 
756
- #: top-10.php:559
757
  msgid "Range in number of days (applies only to custom option above)"
758
  msgstr ""
759
 
760
- #: top-10.php:564
761
  #, fuzzy
762
- msgid " Show count?"
763
  msgstr "Desideri mostrare gli estratti?"
764
 
765
- #: top-10.php:569
766
  #, fuzzy
767
- msgid " Show excerpt?"
768
  msgstr "Desideri mostrare gli estratti?"
769
 
770
- #: top-10.php:574
771
- msgid " Show author?"
772
- msgstr ""
 
773
 
774
- #: top-10.php:579
775
  #, fuzzy
776
- msgid " Show date?"
777
  msgstr "Desideri mostrare gli estratti?"
778
 
779
- #: top-10.php:583
780
  #, fuzzy
781
  msgid "Thumbnail options"
782
  msgstr "Opzioni miniature articolo:"
783
 
784
- #: top-10.php:585
785
  #, fuzzy
786
  msgid "Thumbnails inline, before title"
787
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
788
 
789
- #: top-10.php:586
790
  #, fuzzy
791
  msgid "Thumbnails inline, after title"
792
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
793
 
794
- #: top-10.php:587
795
  #, fuzzy
796
  msgid "Only thumbnails, no text"
797
  msgstr "Mostra le sole miniature, nessun testo"
798
 
799
- #: top-10.php:588
800
  #, fuzzy
801
  msgid "No thumbnails, only text."
802
  msgstr "Non mostrare le miniature, solo testo."
803
 
804
- #: top-10.php:593
805
  #, fuzzy
806
  msgid "Thumbnail height"
807
  msgstr "Opzioni miniature articolo:"
808
 
809
- #: top-10.php:598
810
  #, fuzzy
811
  msgid "Thumbnail width"
812
  msgstr "Opzioni miniature articolo:"
813
 
814
- #: top-10.php:719
815
  msgid "<h3>Popular Posts</h3>"
816
  msgstr "<h3>Articoli più letti</h3>"
817
 
818
- #: top-10.php:720
819
  msgid "<h3>Daily Popular</h3>"
820
  msgstr "<h3>I più letti di oggi</h3>"
821
 
822
- #: top-10.php:721
823
  #, fuzzy
824
  msgid "No top posts yet"
825
  msgstr "Ripristino 10 articoli più popolari"
826
 
827
- #: top-10.php:1184
828
  msgid "Once Weekly"
829
  msgstr ""
830
 
831
- #: top-10.php:1188
832
  msgid "Once Fortnightly"
833
  msgstr ""
834
 
835
- #: top-10.php:1192
836
  msgid "Once Monthly"
837
  msgstr ""
838
 
839
- #: top-10.php:1255
840
  msgid "Settings"
841
  msgstr "Impostazioni"
842
 
843
- #: top-10.php:1268
844
  msgid "Donate"
845
  msgstr "Donazione"
846
 
 
 
 
847
  #, fuzzy
848
  #~ msgid "This option uses JavaScript and will increase your page load time"
849
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Numero degli articoli più popolari da mostrare:"
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
  "Quanti giorni desideri siano considerati per il computo delle "
88
  "visualizzazioni per articoli più popolari del giorno?"
89
 
90
+ #: admin.inc.php:204
91
  msgid ""
92
  "Instead of displaying popular posts fromt he past day, this setting lets you "
93
  "display posts for as many days as you want. This can be overridden in the "
94
  "widget."
95
  msgstr ""
96
 
97
+ #: admin.inc.php:207
98
  msgid "Post types to include in results (including custom post types)"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:218
102
  msgid "List of post or page IDs to exclude from the results: "
103
  msgstr ""
104
 
105
+ #: admin.inc.php:220 admin.inc.php:361
106
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:224
110
  msgid "Exclude Categories: "
111
  msgstr "Escludi categorie:"
112
 
113
+ #: admin.inc.php:239
114
  msgid ""
115
  "Comma separated list of category slugs. The field above has an autocomplete "
116
  "so simply start typing in the starting letters and it will prompt you with "
117
  "options"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:244
121
  #, fuzzy
122
  msgid "Display number of views on:"
123
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
124
 
125
+ #: admin.inc.php:246
126
  msgid "Posts"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:247
130
  #, fuzzy
131
  msgid "Pages"
132
  msgstr "Pagina"
133
 
134
+ #: admin.inc.php:248
135
  msgid "Home page"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:249
139
  msgid "Feeds"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:250
143
  msgid "Category archives"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:251
147
  msgid "Tag archives"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:252
151
  msgid "Other archives"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:253
155
  msgid ""
156
+ "If you choose to disable this, please add <code>&lt;?php if "
157
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
158
+ "</code> to your template file where you want it displayed"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:256
162
  msgid "Always display latest post count"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:258
166
  msgid ""
167
  "This option uses JavaScript and will increase your page load time. Turn this "
168
  "off if you are not using caching plugins or are OK with displaying older "
169
  "cached counts."
170
  msgstr ""
171
 
172
+ #: admin.inc.php:261
173
  msgid "Track visits of authors on their own posts?"
174
  msgstr ""
175
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
176
  "del sito?"
177
 
178
+ #: admin.inc.php:263
179
  msgid ""
180
  "Disabling this option will stop authors visits tracked on their own posts"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:266
184
  #, fuzzy
185
  msgid "Track visits of admins?"
186
  msgstr ""
187
  "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
188
  "del sito?"
189
 
190
+ #: admin.inc.php:268
191
  msgid "Disabling this option will stop admin visits being tracked."
192
  msgstr ""
193
 
194
+ #: admin.inc.php:271
195
+ #, fuzzy
196
+ msgid "Track visits of Editors?"
197
+ msgstr ""
198
+ "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
199
+ "del sito?"
200
+
201
+ #: admin.inc.php:273
202
+ msgid "Disabling this option will stop editor visits being tracked."
203
+ msgstr ""
204
+
205
+ #: admin.inc.php:276
206
  msgid "Display page views on Posts and Pages in Admin"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:279
210
  msgid ""
211
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
212
  "and All Pages"
213
  msgstr ""
214
 
215
+ #: admin.inc.php:282
216
  #, fuzzy
217
  msgid "Show number of views to non-admins"
218
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
219
 
220
+ #: admin.inc.php:285
221
  msgid ""
222
  "If you disable this then non-admins won't see the above columns or view the "
223
  "independent pages with the top posts"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:288
227
  msgid "Link to Top 10 plugin page"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:291
231
  #, fuzzy
232
  msgid ""
233
  "A link to the plugin is added as an extra list item to the list of popular "
237
  "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
238
  "opzione!"
239
 
240
+ #: admin.inc.php:298
241
  #, fuzzy
242
  msgid "Output options"
243
  msgstr "Opzioni output:"
244
 
245
+ #: admin.inc.php:301
246
  #, fuzzy
247
  msgid "Format to display the post views:"
248
  msgstr "Formato per il conteggio:"
249
 
250
+ #: admin.inc.php:303
251
  #, fuzzy
252
  msgid ""
253
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
260
  "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
261
  "123 volte, 23 visite odierne)</code>"
262
 
263
+ #: admin.inc.php:306
264
  msgid "What do display when there are no visits?"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:308
268
  msgid ""
269
  "This text applies only when there are 0 hits for the post and it isn't a "
270
  "single page. e.g. if you display post views on the homepage or archives then "
272
  "option."
273
  msgstr ""
274
 
275
+ #: admin.inc.php:311
276
  msgid "Title of popular posts: "
277
  msgstr "Titolo per gli articoli più popolari:"
278
 
279
+ #: admin.inc.php:314
280
  msgid "Title of daily popular posts: "
281
  msgstr "Titolo per gli articoli più popolari del giorno:"
282
 
283
+ #: admin.inc.php:317
284
  msgid "When there are no posts, what should be shown?"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:321
288
  msgid "Blank Output"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:325
292
  msgid "Display:"
293
  msgstr ""
294
 
295
+ #: admin.inc.php:329
296
  msgid "Show post excerpt in list?"
297
  msgstr "Desideri mostrare gli estratti?"
298
 
299
+ #: admin.inc.php:332
300
  msgid "Length of excerpt (in words): "
301
  msgstr "Lunghezza estratto (in parole):"
302
 
303
+ #: admin.inc.php:335
304
  #, fuzzy
305
  msgid "Show post author in list?"
306
  msgstr "Desideri mostrare gli estratti?"
307
 
308
+ #: admin.inc.php:338
309
  #, fuzzy
310
  msgid "Show post date in list?"
311
  msgstr "Desideri mostrare gli estratti?"
312
 
313
+ #: admin.inc.php:341
314
  msgid "Limit post title length (in characters)"
315
  msgstr ""
316
 
317
+ #: admin.inc.php:344
318
  #, fuzzy
319
  msgid "Show view count in list?"
320
  msgstr "Desideri mostrare gli estratti?"
321
 
322
+ #: admin.inc.php:347
323
  msgid "Always display latest post count in the daily lists?"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:349
327
  msgid ""
328
  "This option uses JavaScript and will increase your page load time. When you "
329
  "enable this option, the daily widget will not use the options set there, but "
330
  "options will need to be set on this screen."
331
  msgstr ""
332
 
333
+ #: admin.inc.php:352
334
  msgid "Open links in new window"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:355
338
  msgid "Add nofollow attribute to links in the list"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:358
342
  msgid "Exclude display of related posts on these posts / pages"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:364
346
  #, fuzzy
347
  msgid "Customise the list HTML"
348
  msgstr "Personalizzazione output:"
349
 
350
+ #: admin.inc.php:366
351
  msgid "HTML to display before the list of posts: "
352
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
353
 
354
+ #: admin.inc.php:369
355
  msgid "HTML to display before each list item: "
356
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
357
 
358
+ #: admin.inc.php:372
359
  msgid "HTML to display after each list item: "
360
  msgstr "HTML da mostrare dopo ogni lista:"
361
 
362
+ #: admin.inc.php:375
363
  msgid "HTML to display after the list of posts: "
364
  msgstr "HTML da mostrare dopo la lista degli articoli:"
365
 
366
+ #: admin.inc.php:378
367
  msgid "Post thumbnail options:"
368
  msgstr "Opzioni miniature articolo:"
369
 
370
+ #: admin.inc.php:380
371
  msgid "Location of post thumbnail:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:384
375
  msgid "Display thumbnails inline with posts, before title"
376
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
377
 
378
+ #: admin.inc.php:388
379
  msgid "Display thumbnails inline with posts, after title"
380
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
381
 
382
+ #: admin.inc.php:392
383
  msgid "Display only thumbnails, no text"
384
  msgstr "Mostra le sole miniature, nessun testo"
385
 
386
+ #: admin.inc.php:396
387
  msgid "Do not display thumbnails, only text."
388
  msgstr "Non mostrare le miniature, solo testo."
389
 
390
+ #: admin.inc.php:400
391
  msgid "Width of the thumbnail: "
392
  msgstr ""
393
 
394
+ #: admin.inc.php:403
395
  msgid "Height of the thumbnail: "
396
  msgstr ""
397
 
398
+ #: admin.inc.php:406
399
  msgid "Style attributes / Width and Height HTML attributes:"
400
  msgstr ""
401
 
402
+ #: admin.inc.php:410
403
  msgid "Style attributes are used for width and height."
404
  msgstr ""
405
 
406
+ #: admin.inc.php:414
407
  msgid "HTML width and height attributes are used for width and height."
408
  msgstr ""
409
 
410
+ #: admin.inc.php:418
411
  msgid "Use timthumb to generate thumbnails? "
412
  msgstr ""
413
 
414
+ #: admin.inc.php:421
415
  msgid ""
416
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
417
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:424
421
+ msgid "Quality of thumbnails generated by timthumb:"
422
+ msgstr ""
423
+
424
+ #: admin.inc.php:427
425
+ msgid ""
426
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
427
+ "file size. Suggested maximum value is 95. Default is 75."
428
+ msgstr ""
429
+
430
+ #: admin.inc.php:430
431
  #, fuzzy
432
  msgid "Post thumbnail meta field name: "
433
  msgstr "Opzioni miniature articolo:"
434
 
435
+ #: admin.inc.php:433
436
  msgid ""
437
  "The value of this field should contain the image source and is set in the "
438
  "<em>Add New Post</em> screen"
439
  msgstr ""
440
 
441
+ #: admin.inc.php:436
442
  #, fuzzy
443
  msgid ""
444
  "If the postmeta is not set, then should the plugin extract the first image "
449
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
450
  "dimensioni"
451
 
452
+ #: admin.inc.php:439
453
  #, fuzzy
454
  msgid ""
455
  "This could slow down the loading of your page if the first image in the "
460
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
461
  "dimensioni"
462
 
463
+ #: admin.inc.php:442
464
  msgid "Use default thumbnail? "
465
  msgstr ""
466
 
467
+ #: admin.inc.php:445
468
  msgid ""
469
  "If checked, when no thumbnail is found, show a default one from the URL "
470
  "below. If not checked and no thumbnail is found, no image will be shown."
472
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
473
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
474
 
475
+ #: admin.inc.php:448
476
  msgid "Default thumbnail: "
477
  msgstr ""
478
 
479
+ #: admin.inc.php:452
480
  #, fuzzy
481
  msgid ""
482
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
488
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
489
  "specificato qui sotto:"
490
 
491
+ #: admin.inc.php:459
492
  msgid "Custom CSS"
493
  msgstr ""
494
 
495
+ #: admin.inc.php:462
496
  msgid "Use default style included in the plugin?"
497
  msgstr ""
498
 
499
+ #: admin.inc.php:465
500
  msgid ""
501
  "Top 10 includes a default style that makes your popular posts list to look "
502
  "pretty. Check the box above if you want to use this. You will need to select "
504
  "Widget."
505
  msgstr ""
506
 
507
+ #: admin.inc.php:468
508
  msgid "Custom CSS to add to header:"
509
  msgstr ""
510
 
511
+ #: admin.inc.php:471
512
  msgid ""
513
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
514
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
515
  "available CSS classes to style."
516
  msgstr ""
517
 
518
+ #: admin.inc.php:478 admin.inc.php:544
519
  #, fuzzy
520
  msgid "Save Options"
521
  msgstr "Opzioni:"
522
 
523
+ #: admin.inc.php:479
524
  #, fuzzy
525
  msgid "Default Options"
526
  msgstr "Opzioni output:"
527
 
528
+ #: admin.inc.php:479
529
  msgid "Do you want to set options to Default?"
530
  msgstr "Desideri ripristinare alle predefinite?"
531
 
532
+ #: admin.inc.php:488
533
  msgid "Maintenance"
534
  msgstr ""
535
 
536
+ #: admin.inc.php:492
537
  msgid ""
538
  "Over time the Daily Top 10 database grows in size, which reduces the "
539
  "performance of the plugin. Cleaning the database at regular intervals could "
541
  "will automatically delete entries older than 90 days."
542
  msgstr ""
543
 
544
+ #: admin.inc.php:493
545
  msgid ""
546
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
547
  "everytime the job is rescheduled (i.e. you change the settings below)."
548
  msgstr ""
549
 
550
+ #: admin.inc.php:496
551
  msgid "Enable scheduled maintenance of daily tables:"
552
  msgstr ""
553
 
554
+ #: admin.inc.php:500
555
  msgid "Time to run maintenance"
556
  msgstr ""
557
 
558
+ #: admin.inc.php:501
559
  msgid "hrs"
560
  msgstr ""
561
 
562
+ #: admin.inc.php:501
563
  msgid "min"
564
  msgstr ""
565
 
566
+ #: admin.inc.php:503
567
  msgid "How often should the maintenance be run:"
568
  msgstr ""
569
 
570
+ #: admin.inc.php:507
571
  msgid "Daily"
572
  msgstr ""
573
 
574
+ #: admin.inc.php:511
575
  msgid "Weekly"
576
  msgstr ""
577
 
578
+ #: admin.inc.php:515
579
  msgid "Fortnightly"
580
  msgstr ""
581
 
582
+ #: admin.inc.php:519
583
  msgid "Monthly"
584
  msgstr ""
585
 
586
+ #: admin.inc.php:528
587
  msgid "The cron job has been scheduled. Maintenance will run "
588
  msgstr ""
589
 
590
+ #: admin.inc.php:533
591
  msgid "The cron job is missing. Please resave this page to add the job"
592
  msgstr ""
593
 
594
+ #: admin.inc.php:538
595
  msgid "Maintenance is turned off"
596
  msgstr ""
597
 
598
+ #: admin.inc.php:552
599
  msgid "Reset count"
600
  msgstr "Ripristino conteggio"
601
 
602
+ #: admin.inc.php:555
603
  msgid ""
604
  "This cannot be reversed. Make sure that your database has been backed up "
605
  "before proceeding"
607
  "Questa operazione non é reversibile. Effettua il backup del database prima "
608
  "di procedere"
609
 
610
+ #: admin.inc.php:558
611
  #, fuzzy
612
  msgid "Reset Popular Posts"
613
  msgstr "Gli articoli più popolari"
614
 
615
+ #: admin.inc.php:558
616
  msgid "Are you sure you want to reset the popular posts?"
617
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
618
 
619
+ #: admin.inc.php:559
620
  #, fuzzy
621
  msgid "Reset Daily Popular Posts"
622
  msgstr "Gli articoli più popolari di oggi"
623
 
624
+ #: admin.inc.php:559
625
  msgid "Are you sure you want to reset the daily popular posts?"
626
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
627
 
628
+ #: admin.inc.php:560
629
  msgid "Clear duplicates"
630
  msgstr ""
631
 
632
+ #: admin.inc.php:560
633
  msgid "This will delete the duplicate entries in the tables. Proceed?"
634
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
635
 
636
+ #: admin.inc.php:612 admin.inc.php:1010
637
  msgid "Popular Posts"
638
  msgstr "Gli articoli più popolari"
639
 
640
+ #: admin.inc.php:614 admin.inc.php:713
641
  msgid "Daily Popular Posts"
642
  msgstr "Gli articoli più popolari di oggi"
643
 
644
+ #: admin.inc.php:645
645
  msgid "Support the development"
646
  msgstr "Sostieni lo sviluppo"
647
 
648
+ #: admin.inc.php:652
649
+ msgid "Donation for Top 10"
650
+ msgstr ""
651
+
652
+ #: admin.inc.php:654
653
  msgid "Enter amount in USD: "
654
  msgstr "Inserisci la cifra in USD: "
655
 
656
+ #: admin.inc.php:658
657
+ #, fuzzy
658
+ msgid "Send your donation to the author of Top 10"
659
  msgstr "Invia la tua donazione all'autore di"
660
 
661
+ #: admin.inc.php:665
662
  msgid "Follow me"
663
  msgstr ""
664
 
665
+ #: admin.inc.php:675
666
  #, fuzzy
667
  msgid "Quick links"
668
  msgstr "Collegamenti veloci"
669
 
670
+ #: admin.inc.php:679
671
  #, fuzzy
672
  msgid "Top 10 plugin page"
673
  msgstr "pagina plugin"
674
 
675
+ #: admin.inc.php:680
676
  msgid "Other plugins"
677
  msgstr "Altri plugin"
678
 
679
+ #: admin.inc.php:681
680
  msgid "Ajay's blog"
681
  msgstr "Il blog di Ajay"
682
 
683
+ #: admin.inc.php:682
684
  msgid "FAQ"
685
  msgstr ""
686
 
687
+ #: admin.inc.php:683 top-10.php:1345
688
  msgid "Support"
689
  msgstr "Supporto"
690
 
691
+ #: admin.inc.php:684
692
  msgid "Reviews"
693
  msgstr ""
694
 
695
+ #: admin.inc.php:704 admin.inc.php:707
696
  #, fuzzy
697
  msgid "Top 10 Settings"
698
  msgstr "Impostazioni"
699
 
700
+ #: admin.inc.php:704 admin.inc.php:1183
701
  msgid "Top 10"
702
  msgstr "Top 10"
703
 
704
+ #: admin.inc.php:710
705
  #, fuzzy
706
  msgid "Overall Popular Posts"
707
  msgstr "Visualizza panoramica articoli più popolari"
708
 
709
+ #: admin.inc.php:882
710
  #, php-format
711
  msgid "Results %1$s to %2$s of %3$s"
712
  msgstr ""
713
 
714
+ #: admin.inc.php:886
715
  #, php-format
716
  msgid "Page %s of %s"
717
  msgstr ""
718
 
719
+ #: admin.inc.php:898
720
  msgid "View Daily Popular Posts"
721
  msgstr "Visualizza gli articoli più letti di oggi"
722
 
723
+ #: admin.inc.php:901 admin.inc.php:914
724
  msgid "Results per-page:"
725
  msgstr "Risultati per pagina:"
726
 
727
+ #: admin.inc.php:911
728
  msgid "View Overall Popular Posts"
729
  msgstr "Visualizza panoramica articoli più popolari"
730
 
731
+ #: admin.inc.php:940
732
  msgid "Previous"
733
  msgstr "Precedente"
734
 
735
+ #: admin.inc.php:968
736
  msgid "Next"
737
  msgstr "Successiva"
738
 
739
+ #: admin.inc.php:1011
740
  msgid "Daily Popular"
741
  msgstr "I più letti di oggi"
742
 
743
+ #: admin.inc.php:1029
744
  #, fuzzy
745
  msgid "Total Views"
746
  msgstr "Totale / Visualizzazioni odierne"
747
 
748
+ #: admin.inc.php:1030
749
  #, fuzzy
750
  msgid "Today's Views"
751
  msgstr "Totale / Visualizzazioni odierne"
752
 
753
+ #: admin.inc.php:1031
754
  #, fuzzy
755
  msgid "Views"
756
  msgstr "Totale / Visualizzazioni odierne"
757
 
758
+ #: admin.inc.php:1217
759
+ #, fuzzy
760
+ msgid "Visit count:"
761
+ msgstr "Ripristino conteggio"
762
+
763
+ #: admin.inc.php:1219
764
+ msgid ""
765
+ "Enter a number above to update the visit count. Leaving the above box blank "
766
+ "will set the count to zero"
767
  msgstr ""
768
 
769
+ #: admin.inc.php:1229
770
+ msgid "Location of thumbnail:"
771
+ msgstr ""
772
 
773
+ #: admin.inc.php:1231
774
+ msgid ""
775
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
776
+ "image will be used for the post. It will be resized to the thumbnail size "
777
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
778
+ msgstr ""
779
+
780
+ #: admin.inc.php:1232
781
+ msgid "The URL above is saved in the meta field: "
782
+ msgstr ""
783
+
784
+ #: top-10.php:456
785
+ msgid " by "
786
+ msgstr ""
787
+
788
+ #: top-10.php:550
789
  #, fuzzy
790
  msgid "Popular Posts [Top 10]"
791
  msgstr "Gli articoli più popolari"
792
 
793
+ #: top-10.php:551
794
+ #, fuzzy
795
+ msgid "Display popular posts"
796
+ msgstr "Gli articoli più popolari di oggi"
797
+
798
+ #: top-10.php:577
799
  msgid "Title"
800
  msgstr ""
801
 
802
+ #: top-10.php:582
803
  msgid "No. of posts"
804
  msgstr ""
805
 
806
+ #: top-10.php:587
807
  msgid "Overall"
808
  msgstr ""
809
 
810
+ #: top-10.php:588
811
  msgid "Custom time period (Enter below)"
812
  msgstr ""
813
 
814
+ #: top-10.php:593
815
  msgid "Range in number of days (applies only to custom option above)"
816
  msgstr ""
817
 
818
+ #: top-10.php:598
819
  #, fuzzy
820
+ msgid "Show count?"
821
  msgstr "Desideri mostrare gli estratti?"
822
 
823
+ #: top-10.php:603
824
  #, fuzzy
825
+ msgid "Show excerpt?"
826
  msgstr "Desideri mostrare gli estratti?"
827
 
828
+ #: top-10.php:608
829
+ #, fuzzy
830
+ msgid "Show author?"
831
+ msgstr "Desideri mostrare gli estratti?"
832
 
833
+ #: top-10.php:613
834
  #, fuzzy
835
+ msgid "Show date?"
836
  msgstr "Desideri mostrare gli estratti?"
837
 
838
+ #: top-10.php:617
839
  #, fuzzy
840
  msgid "Thumbnail options"
841
  msgstr "Opzioni miniature articolo:"
842
 
843
+ #: top-10.php:619
844
  #, fuzzy
845
  msgid "Thumbnails inline, before title"
846
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
847
 
848
+ #: top-10.php:620
849
  #, fuzzy
850
  msgid "Thumbnails inline, after title"
851
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
852
 
853
+ #: top-10.php:621
854
  #, fuzzy
855
  msgid "Only thumbnails, no text"
856
  msgstr "Mostra le sole miniature, nessun testo"
857
 
858
+ #: top-10.php:622
859
  #, fuzzy
860
  msgid "No thumbnails, only text."
861
  msgstr "Non mostrare le miniature, solo testo."
862
 
863
+ #: top-10.php:627
864
  #, fuzzy
865
  msgid "Thumbnail height"
866
  msgstr "Opzioni miniature articolo:"
867
 
868
+ #: top-10.php:632
869
  #, fuzzy
870
  msgid "Thumbnail width"
871
  msgstr "Opzioni miniature articolo:"
872
 
873
+ #: top-10.php:772
874
  msgid "<h3>Popular Posts</h3>"
875
  msgstr "<h3>Articoli più letti</h3>"
876
 
877
+ #: top-10.php:773
878
  msgid "<h3>Daily Popular</h3>"
879
  msgstr "<h3>I più letti di oggi</h3>"
880
 
881
+ #: top-10.php:774
882
  #, fuzzy
883
  msgid "No top posts yet"
884
  msgstr "Ripristino 10 articoli più popolari"
885
 
886
+ #: top-10.php:1245
887
  msgid "Once Weekly"
888
  msgstr ""
889
 
890
+ #: top-10.php:1249
891
  msgid "Once Fortnightly"
892
  msgstr ""
893
 
894
+ #: top-10.php:1253
895
  msgid "Once Monthly"
896
  msgstr ""
897
 
898
+ #: top-10.php:1323
899
  msgid "Settings"
900
  msgstr "Impostazioni"
901
 
902
+ #: top-10.php:1346
903
  msgid "Donate"
904
  msgstr "Donazione"
905
 
906
+ #~ msgid "Display the posts popular this week"
907
+ #~ msgstr "Mostra articoli più popolari settimana in corso"
908
+
909
  #, fuzzy
910
  #~ msgid "This option uses JavaScript and will increase your page load time"
911
  #~ msgstr ""
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: 2014-02-20 23:16-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"
@@ -14,200 +14,214 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Generator: Poedit 1.6.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:112
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:122
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op Standaard."
27
 
28
- #: admin.inc.php:128
29
  msgid "Top 10 popular posts reset"
30
  msgstr "Reset Top 10 populaire berichten"
31
 
32
- #: admin.inc.php:134
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Reset Top 10 dagelijkse populaire berichten"
35
 
36
- #: admin.inc.php:141
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
- #: admin.inc.php:152
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
- #: admin.inc.php:156
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
- #: admin.inc.php:172
49
- msgid "General options"
 
50
  msgstr ""
51
 
52
  #: admin.inc.php:176
 
 
 
 
53
  msgid "Enable Overall stats"
54
  msgstr ""
55
 
56
- #: admin.inc.php:181
57
  msgid "Enable Daily stats"
58
  msgstr ""
59
 
60
- #: admin.inc.php:186
61
  msgid "W3 Total Cache fix:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:188
65
  msgid ""
66
  "This will try to prevent W3 Total Cache from caching the addcount script of "
67
  "the plugin. Try toggling this option in case you find that our posts are not "
68
  "tracked."
69
  msgstr ""
70
 
71
- #: admin.inc.php:192
72
  msgid "Number of popular posts to display: "
73
  msgstr "Aantal populaire berichten om weer te geven:"
74
 
75
- #: admin.inc.php:194
76
  msgid ""
77
  "Maximum number of posts that will be displayed in the list. This option is "
78
  "used if you don't specify the number of posts in the widget or shortcodes"
79
  msgstr ""
80
 
81
- #: admin.inc.php:198
82
  msgid "Daily Popular should contain views of how many days? "
83
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
84
 
85
- #: admin.inc.php:200
86
  msgid ""
87
  "Instead of displaying popular posts fromt he past day, this setting lets you "
88
  "display posts for as many days as you want. This can be overridden in the "
89
  "widget."
90
  msgstr ""
91
 
92
- #: admin.inc.php:203
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
- #: admin.inc.php:214
97
  msgid "List of post or page IDs to exclude from the results: "
98
  msgstr ""
99
 
100
- #: admin.inc.php:216 admin.inc.php:352
101
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
102
  msgstr ""
103
 
104
- #: admin.inc.php:220
105
  msgid "Exclude Categories: "
106
  msgstr ""
107
 
108
- #: admin.inc.php:235
109
  msgid ""
110
  "Comma separated list of category slugs. The field above has an autocomplete "
111
  "so simply start typing in the starting letters and it will prompt you with "
112
  "options"
113
  msgstr ""
114
 
115
- #: admin.inc.php:240
116
  #, fuzzy
117
  msgid "Display number of views on:"
118
  msgstr "Geef het aantal berichtweergaves weer?"
119
 
120
- #: admin.inc.php:242
121
  msgid "Posts"
122
  msgstr ""
123
 
124
- #: admin.inc.php:243
125
  #, fuzzy
126
  msgid "Pages"
127
  msgstr "Pagina"
128
 
129
- #: admin.inc.php:244
130
  msgid "Home page"
131
  msgstr ""
132
 
133
- #: admin.inc.php:245
134
  msgid "Feeds"
135
  msgstr ""
136
 
137
- #: admin.inc.php:246
138
  msgid "Category archives"
139
  msgstr ""
140
 
141
- #: admin.inc.php:247
142
  msgid "Tag archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:248
146
  msgid "Other archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:249
150
  msgid ""
151
- "If you choose to disable this, please add <code>&lt;?php "
152
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
153
- "template file where you want it displayed"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Always display latest post count"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid ""
162
  "This option uses JavaScript and will increase your page load time. Turn this "
163
  "off if you are not using caching plugins or are OK with displaying older "
164
  "cached counts."
165
  msgstr ""
166
 
167
- #: admin.inc.php:257
168
  msgid "Track visits of authors on their own posts?"
169
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
170
 
171
- #: admin.inc.php:259
172
  msgid ""
173
  "Disabling this option will stop authors visits tracked on their own posts"
174
  msgstr ""
175
 
176
- #: admin.inc.php:262
177
  #, fuzzy
178
  msgid "Track visits of admins?"
179
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
180
 
181
- #: admin.inc.php:264
182
  msgid "Disabling this option will stop admin visits being tracked."
183
  msgstr ""
184
 
185
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
186
  msgid "Display page views on Posts and Pages in Admin"
187
  msgstr ""
188
 
189
- #: admin.inc.php:270
190
  msgid ""
191
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
192
  "and All Pages"
193
  msgstr ""
194
 
195
- #: admin.inc.php:273
196
  #, fuzzy
197
  msgid "Show number of views to non-admins"
198
  msgstr "Geef het aantal paginaweergaves weer?"
199
 
200
- #: admin.inc.php:276
201
  msgid ""
202
  "If you disable this then non-admins won't see the above columns or view the "
203
  "independent pages with the top posts"
204
  msgstr ""
205
 
206
- #: admin.inc.php:279
207
  msgid "Link to Top 10 plugin page"
208
  msgstr ""
209
 
210
- #: admin.inc.php:282
211
  #, fuzzy
212
  msgid ""
213
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -217,17 +231,17 @@ msgstr ""
217
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
218
  "gewaardeerd!"
219
 
220
- #: admin.inc.php:289
221
  #, fuzzy
222
  msgid "Output options"
223
  msgstr "Output Opties:"
224
 
225
- #: admin.inc.php:292
226
  #, fuzzy
227
  msgid "Format to display the post views:"
228
  msgstr "Formaat om de optelling te laten zien:"
229
 
230
- #: admin.inc.php:294
231
  #, fuzzy
232
  msgid ""
233
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -239,11 +253,11 @@ msgstr ""
239
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
240
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
241
 
242
- #: admin.inc.php:297
243
  msgid "What do display when there are no visits?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:299
247
  msgid ""
248
  "This text applies only when there are 0 hits for the post and it isn't a "
249
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -251,165 +265,175 @@ msgid ""
251
  "option."
252
  msgstr ""
253
 
254
- #: admin.inc.php:302
255
  msgid "Title of popular posts: "
256
  msgstr "Titel van populaire berichten:"
257
 
258
- #: admin.inc.php:305
259
  msgid "Title of daily popular posts: "
260
  msgstr "Titel van dagelijkse populaire berichten:"
261
 
262
- #: admin.inc.php:308
263
  msgid "When there are no posts, what should be shown?"
264
  msgstr ""
265
 
266
- #: admin.inc.php:312
267
  msgid "Blank Output"
268
  msgstr ""
269
 
270
- #: admin.inc.php:316
271
  msgid "Display:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:320
275
  msgid "Show post excerpt in list?"
276
  msgstr "Laat bericht samenvatting zien in lijst?"
277
 
278
- #: admin.inc.php:323
279
  msgid "Length of excerpt (in words): "
280
  msgstr "Lengte van de samenvatting (in woorden):"
281
 
282
- #: admin.inc.php:326
283
  #, fuzzy
284
  msgid "Show post author in list?"
285
  msgstr "Laat bericht samenvatting zien in lijst?"
286
 
287
- #: admin.inc.php:329
288
  #, fuzzy
289
  msgid "Show post date in list?"
290
  msgstr "Laat bericht samenvatting zien in lijst?"
291
 
292
- #: admin.inc.php:332
293
  msgid "Limit post title length (in characters)"
294
  msgstr ""
295
 
296
- #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show view count in list?"
299
  msgstr "Laat bericht samenvatting zien in lijst?"
300
 
301
- #: admin.inc.php:338
302
  msgid "Always display latest post count in the daily lists?"
303
  msgstr ""
304
 
305
- #: admin.inc.php:340
306
  msgid ""
307
  "This option uses JavaScript and will increase your page load time. When you "
308
  "enable this option, the daily widget will not use the options set there, but "
309
  "options will need to be set on this screen."
310
  msgstr ""
311
 
312
- #: admin.inc.php:343
313
  msgid "Open links in new window"
314
  msgstr ""
315
 
316
- #: admin.inc.php:346
317
  msgid "Add nofollow attribute to links in the list"
318
  msgstr ""
319
 
320
- #: admin.inc.php:349
321
  msgid "Exclude display of related posts on these posts / pages"
322
  msgstr ""
323
 
324
- #: admin.inc.php:355
325
  #, fuzzy
326
  msgid "Customise the list HTML"
327
  msgstr "Aanpassen van de output:"
328
 
329
- #: admin.inc.php:357
330
  msgid "HTML to display before the list of posts: "
331
  msgstr "Te weergeven HTML voor de lijst met berichten:"
332
 
333
- #: admin.inc.php:360
334
  msgid "HTML to display before each list item: "
335
  msgstr "Te weergeven HTML voor elk lijst item:"
336
 
337
- #: admin.inc.php:363
338
  msgid "HTML to display after each list item: "
339
  msgstr "Te weergeven HTML na elk lijst item:"
340
 
341
- #: admin.inc.php:366
342
  msgid "HTML to display after the list of posts: "
343
  msgstr "Te weergeven HTML na de lijst met berichten:"
344
 
345
- #: admin.inc.php:369
346
  msgid "Post thumbnail options:"
347
  msgstr "Bericht miniatuurafbeelding opties:"
348
 
349
- #: admin.inc.php:371
350
  msgid "Location of post thumbnail:"
351
  msgstr ""
352
 
353
- #: admin.inc.php:375
354
  #, fuzzy
355
  msgid "Display thumbnails inline with posts, before title"
356
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
357
 
358
- #: admin.inc.php:379
359
  #, fuzzy
360
  msgid "Display thumbnails inline with posts, after title"
361
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
362
 
363
- #: admin.inc.php:383
364
  msgid "Display only thumbnails, no text"
365
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
366
 
367
- #: admin.inc.php:387
368
  msgid "Do not display thumbnails, only text."
369
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
370
 
371
- #: admin.inc.php:391
372
  msgid "Width of the thumbnail: "
373
  msgstr ""
374
 
375
- #: admin.inc.php:394
376
  msgid "Height of the thumbnail: "
377
  msgstr ""
378
 
379
- #: admin.inc.php:397
380
  msgid "Style attributes / Width and Height HTML attributes:"
381
  msgstr ""
382
 
383
- #: admin.inc.php:401
384
  msgid "Style attributes are used for width and height."
385
  msgstr ""
386
 
387
- #: admin.inc.php:405
388
  msgid "HTML width and height attributes are used for width and height."
389
  msgstr ""
390
 
391
- #: admin.inc.php:409
392
  msgid "Use timthumb to generate thumbnails? "
393
  msgstr ""
394
 
395
- #: admin.inc.php:412
396
  msgid ""
397
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
398
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
399
  msgstr ""
400
 
401
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
402
  #, fuzzy
403
  msgid "Post thumbnail meta field name: "
404
  msgstr "Bericht miniatuurafbeelding opties:"
405
 
406
- #: admin.inc.php:418
407
  msgid ""
408
  "The value of this field should contain the image source and is set in the "
409
  "<em>Add New Post</em> screen"
410
  msgstr ""
411
 
412
- #: admin.inc.php:421
413
  #, fuzzy
414
  msgid ""
415
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -420,7 +444,7 @@ msgstr ""
420
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
421
  "qua bestandsgrootte"
422
 
423
- #: admin.inc.php:424
424
  #, fuzzy
425
  msgid ""
426
  "This could slow down the loading of your page if the first image in the "
@@ -431,21 +455,21 @@ msgstr ""
431
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
432
  "qua bestandsgrootte"
433
 
434
- #: admin.inc.php:427
435
  msgid "Use default thumbnail? "
436
  msgstr ""
437
 
438
- #: admin.inc.php:430
439
  msgid ""
440
  "If checked, when no thumbnail is found, show a default one from the URL "
441
  "below. If not checked and no thumbnail is found, no image will be shown."
442
  msgstr ""
443
 
444
- #: admin.inc.php:433
445
  msgid "Default thumbnail: "
446
  msgstr ""
447
 
448
- #: admin.inc.php:437
449
  #, fuzzy
450
  msgid ""
451
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -457,15 +481,15 @@ msgstr ""
457
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
458
  "standaard afbeelding zoals hieronder aangegeven:"
459
 
460
- #: admin.inc.php:444
461
  msgid "Custom CSS"
462
  msgstr ""
463
 
464
- #: admin.inc.php:447
465
  msgid "Use default style included in the plugin?"
466
  msgstr ""
467
 
468
- #: admin.inc.php:450
469
  msgid ""
470
  "Top 10 includes a default style that makes your popular posts list to look "
471
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -473,36 +497,36 @@ msgid ""
473
  "Widget."
474
  msgstr ""
475
 
476
- #: admin.inc.php:453
477
  msgid "Custom CSS to add to header:"
478
  msgstr ""
479
 
480
- #: admin.inc.php:456
481
  msgid ""
482
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
483
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
484
  "available CSS classes to style."
485
  msgstr ""
486
 
487
- #: admin.inc.php:463 admin.inc.php:529
488
  #, fuzzy
489
  msgid "Save Options"
490
  msgstr "Opties:"
491
 
492
- #: admin.inc.php:464
493
  #, fuzzy
494
  msgid "Default Options"
495
  msgstr "Output Opties:"
496
 
497
- #: admin.inc.php:464
498
  msgid "Do you want to set options to Default?"
499
  msgstr "Wil je de opties terugzetten naar standaard?"
500
 
501
- #: admin.inc.php:473
502
  msgid "Maintenance"
503
  msgstr ""
504
 
505
- #: admin.inc.php:477
506
  msgid ""
507
  "Over time the Daily Top 10 database grows in size, which reduces the "
508
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -510,65 +534,65 @@ msgid ""
510
  "will automatically delete entries older than 90 days."
511
  msgstr ""
512
 
513
- #: admin.inc.php:478
514
  msgid ""
515
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
516
  "everytime the job is rescheduled (i.e. you change the settings below)."
517
  msgstr ""
518
 
519
- #: admin.inc.php:481
520
  msgid "Enable scheduled maintenance of daily tables:"
521
  msgstr ""
522
 
523
- #: admin.inc.php:485
524
  msgid "Time to run maintenance"
525
  msgstr ""
526
 
527
- #: admin.inc.php:486
528
  msgid "hrs"
529
  msgstr ""
530
 
531
- #: admin.inc.php:486
532
  msgid "min"
533
  msgstr ""
534
 
535
- #: admin.inc.php:488
536
  msgid "How often should the maintenance be run:"
537
  msgstr ""
538
 
539
- #: admin.inc.php:492
540
  msgid "Daily"
541
  msgstr ""
542
 
543
- #: admin.inc.php:496
544
  msgid "Weekly"
545
  msgstr ""
546
 
547
- #: admin.inc.php:500
548
  msgid "Fortnightly"
549
  msgstr ""
550
 
551
- #: admin.inc.php:504
552
  msgid "Monthly"
553
  msgstr ""
554
 
555
- #: admin.inc.php:513
556
  msgid "The cron job has been scheduled. Maintenance will run "
557
  msgstr ""
558
 
559
- #: admin.inc.php:518
560
  msgid "The cron job is missing. Please resave this page to add the job"
561
  msgstr ""
562
 
563
- #: admin.inc.php:523
564
  msgid "Maintenance is turned off"
565
  msgstr ""
566
 
567
- #: admin.inc.php:537
568
  msgid "Reset count"
569
  msgstr "Reset telling"
570
 
571
- #: admin.inc.php:540
572
  msgid ""
573
  "This cannot be reversed. Make sure that your database has been backed up "
574
  "before proceeding"
@@ -576,267 +600,300 @@ msgstr ""
576
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
577
  "database gemaakt hebt voordat je verder gaat"
578
 
579
- #: admin.inc.php:543
580
  #, fuzzy
581
  msgid "Reset Popular Posts"
582
  msgstr "Populaire Berichten"
583
 
584
- #: admin.inc.php:543
585
  msgid "Are you sure you want to reset the popular posts?"
586
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
587
 
588
- #: admin.inc.php:544
589
  #, fuzzy
590
  msgid "Reset Daily Popular Posts"
591
  msgstr "Dagelijkse Populaire Berichten"
592
 
593
- #: admin.inc.php:544
594
  msgid "Are you sure you want to reset the daily popular posts?"
595
  msgstr ""
596
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
597
 
598
- #: admin.inc.php:545
599
  msgid "Clear duplicates"
600
  msgstr ""
601
 
602
- #: admin.inc.php:545
603
  msgid "This will delete the duplicate entries in the tables. Proceed?"
604
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
605
 
606
- #: admin.inc.php:593 admin.inc.php:979
607
  msgid "Popular Posts"
608
  msgstr "Populaire Berichten"
609
 
610
- #: admin.inc.php:593 admin.inc.php:688
611
  msgid "Daily Popular Posts"
612
  msgstr "Dagelijkse Populaire Berichten"
613
 
614
- #: admin.inc.php:621
615
  msgid "Support the development"
616
  msgstr "Ondersteun de ontwikkeling"
617
 
618
- #: admin.inc.php:630
 
 
 
 
619
  msgid "Enter amount in USD: "
620
  msgstr "Voer het bedrag in in USD:"
621
 
622
- #: admin.inc.php:634
623
- msgid "Send your donation to the author of"
 
624
  msgstr "Zend je donatie naar de auteur van "
625
 
626
- #: admin.inc.php:641
627
  msgid "Follow me"
628
  msgstr ""
629
 
630
- #: admin.inc.php:651
631
  #, fuzzy
632
  msgid "Quick links"
633
  msgstr "Quick links"
634
 
635
- #: admin.inc.php:655
636
  #, fuzzy
637
  msgid "Top 10 plugin page"
638
  msgstr "plugin pagina"
639
 
640
- #: admin.inc.php:656
641
  msgid "Other plugins"
642
  msgstr "Andere plugins"
643
 
644
- #: admin.inc.php:657
645
  msgid "Ajay's blog"
646
  msgstr "De blog van Ajay"
647
 
648
- #: admin.inc.php:658
649
  msgid "FAQ"
650
  msgstr ""
651
 
652
- #: admin.inc.php:659 top-10.php:1267
653
  msgid "Support"
654
  msgstr "Ondersteuning"
655
 
656
- #: admin.inc.php:660
657
  msgid "Reviews"
658
  msgstr ""
659
 
660
- #: admin.inc.php:679 admin.inc.php:682
661
  #, fuzzy
662
  msgid "Top 10 Settings"
663
  msgstr "Instellingen"
664
 
665
- #: admin.inc.php:679
666
  msgid "Top 10"
667
  msgstr "Top 10"
668
 
669
- #: admin.inc.php:685
670
  #, fuzzy
671
  msgid "Overall Popular Posts"
672
  msgstr "Bekijk het Totaal Populaire Berichten"
673
 
674
- #: admin.inc.php:850
675
  #, php-format
676
  msgid "Results %1$s to %2$s of %3$s"
677
  msgstr ""
678
 
679
- #: admin.inc.php:854
680
  #, php-format
681
  msgid "Page %s of %s"
682
  msgstr ""
683
 
684
- #: admin.inc.php:866
685
  msgid "View Daily Popular Posts"
686
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
687
 
688
- #: admin.inc.php:869 admin.inc.php:882
689
  msgid "Results per-page:"
690
  msgstr "Resultaten per pagina:"
691
 
692
- #: admin.inc.php:879
693
  msgid "View Overall Popular Posts"
694
  msgstr "Bekijk het Totaal Populaire Berichten"
695
 
696
- #: admin.inc.php:908
697
  msgid "Previous"
698
  msgstr "Vorige"
699
 
700
- #: admin.inc.php:936
701
  msgid "Next"
702
  msgstr "Volgende"
703
 
704
- #: admin.inc.php:980
705
  msgid "Daily Popular"
706
  msgstr "Dagelijks Populair"
707
 
708
- #: admin.inc.php:998
709
  #, fuzzy
710
  msgid "Total Views"
711
  msgstr "Totale Weergaves / Weergaves van Vandaag"
712
 
713
- #: admin.inc.php:999
714
  #, fuzzy
715
  msgid "Today's Views"
716
  msgstr "Totale Weergaves / Weergaves van Vandaag"
717
 
718
- #: admin.inc.php:1000
719
  #, fuzzy
720
  msgid "Views"
721
  msgstr "Totale Weergaves / Weergaves van Vandaag"
722
 
723
- #: top-10.php:438
724
- msgid " by "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
725
  msgstr ""
726
 
727
- #: top-10.php:524
728
- msgid "Display the posts popular this week"
 
 
 
 
729
  msgstr ""
730
 
731
- #: top-10.php:525
732
  #, fuzzy
733
  msgid "Popular Posts [Top 10]"
734
  msgstr "Populaire Berichten"
735
 
736
- #: top-10.php:543
 
 
 
 
 
737
  msgid "Title"
738
  msgstr ""
739
 
740
- #: top-10.php:548
741
  msgid "No. of posts"
742
  msgstr ""
743
 
744
- #: top-10.php:553
745
  msgid "Overall"
746
  msgstr ""
747
 
748
- #: top-10.php:554
749
  msgid "Custom time period (Enter below)"
750
  msgstr ""
751
 
752
- #: top-10.php:559
753
  msgid "Range in number of days (applies only to custom option above)"
754
  msgstr ""
755
 
756
- #: top-10.php:564
757
  #, fuzzy
758
- msgid " Show count?"
759
  msgstr "Laat bericht samenvatting zien in lijst?"
760
 
761
- #: top-10.php:569
762
  #, fuzzy
763
- msgid " Show excerpt?"
764
  msgstr "Laat bericht samenvatting zien in lijst?"
765
 
766
- #: top-10.php:574
767
- msgid " Show author?"
768
- msgstr ""
 
769
 
770
- #: top-10.php:579
771
  #, fuzzy
772
- msgid " Show date?"
773
  msgstr "Laat bericht samenvatting zien in lijst?"
774
 
775
- #: top-10.php:583
776
  #, fuzzy
777
  msgid "Thumbnail options"
778
  msgstr "Bericht miniatuurafbeelding opties:"
779
 
780
- #: top-10.php:585
781
  #, fuzzy
782
  msgid "Thumbnails inline, before title"
783
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
784
 
785
- #: top-10.php:586
786
  #, fuzzy
787
  msgid "Thumbnails inline, after title"
788
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
789
 
790
- #: top-10.php:587
791
  #, fuzzy
792
  msgid "Only thumbnails, no text"
793
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
794
 
795
- #: top-10.php:588
796
  #, fuzzy
797
  msgid "No thumbnails, only text."
798
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
799
 
800
- #: top-10.php:593
801
  #, fuzzy
802
  msgid "Thumbnail height"
803
  msgstr "Bericht miniatuurafbeelding opties:"
804
 
805
- #: top-10.php:598
806
  #, fuzzy
807
  msgid "Thumbnail width"
808
  msgstr "Bericht miniatuurafbeelding opties:"
809
 
810
- #: top-10.php:719
811
  msgid "<h3>Popular Posts</h3>"
812
  msgstr "<h3>Populaire Berichten</h3>"
813
 
814
- #: top-10.php:720
815
  msgid "<h3>Daily Popular</h3>"
816
  msgstr "<h3>Dagelijks Populair</h3>"
817
 
818
- #: top-10.php:721
819
  #, fuzzy
820
  msgid "No top posts yet"
821
  msgstr "Reset Top 10 populaire berichten"
822
 
823
- #: top-10.php:1184
824
  msgid "Once Weekly"
825
  msgstr ""
826
 
827
- #: top-10.php:1188
828
  msgid "Once Fortnightly"
829
  msgstr ""
830
 
831
- #: top-10.php:1192
832
  msgid "Once Monthly"
833
  msgstr ""
834
 
835
- #: top-10.php:1255
836
  msgid "Settings"
837
  msgstr "Instellingen"
838
 
839
- #: top-10.php:1268
840
  msgid "Donate"
841
  msgstr "Doneer"
842
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.6.5\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:115
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin.inc.php:125
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op Standaard."
27
 
28
+ #: admin.inc.php:131
29
  msgid "Top 10 popular posts reset"
30
  msgstr "Reset Top 10 populaire berichten"
31
 
32
+ #: admin.inc.php:137
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Reset Top 10 dagelijkse populaire berichten"
35
 
36
+ #: admin.inc.php:144
37
  msgid "Duplicate rows cleaned from tables"
38
  msgstr ""
39
 
40
+ #: admin.inc.php:156
41
  msgid "Scheduled maintenance enabled / modified"
42
  msgstr ""
43
 
44
+ #: admin.inc.php:160
45
  msgid "Scheduled maintenance disabled"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
49
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
50
+ msgid "Click to toggle"
51
  msgstr ""
52
 
53
  #: admin.inc.php:176
54
+ msgid "General options"
55
+ msgstr ""
56
+
57
+ #: admin.inc.php:180
58
  msgid "Enable Overall stats"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:185
62
  msgid "Enable Daily stats"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:190
66
  msgid "W3 Total Cache fix:"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:192
70
  msgid ""
71
  "This will try to prevent W3 Total Cache from caching the addcount script of "
72
  "the plugin. Try toggling this option in case you find that our posts are not "
73
  "tracked."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:196
77
  msgid "Number of popular posts to display: "
78
  msgstr "Aantal populaire berichten om weer te geven:"
79
 
80
+ #: admin.inc.php:198
81
  msgid ""
82
  "Maximum number of posts that will be displayed in the list. This option is "
83
  "used if you don't specify the number of posts in the widget or shortcodes"
84
  msgstr ""
85
 
86
+ #: admin.inc.php:202
87
  msgid "Daily Popular should contain views of how many days? "
88
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
89
 
90
+ #: admin.inc.php:204
91
  msgid ""
92
  "Instead of displaying popular posts fromt he past day, this setting lets you "
93
  "display posts for as many days as you want. This can be overridden in the "
94
  "widget."
95
  msgstr ""
96
 
97
+ #: admin.inc.php:207
98
  msgid "Post types to include in results (including custom post types)"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:218
102
  msgid "List of post or page IDs to exclude from the results: "
103
  msgstr ""
104
 
105
+ #: admin.inc.php:220 admin.inc.php:361
106
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:224
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:239
114
  msgid ""
115
  "Comma separated list of category slugs. The field above has an autocomplete "
116
  "so simply start typing in the starting letters and it will prompt you with "
117
  "options"
118
  msgstr ""
119
 
120
+ #: admin.inc.php:244
121
  #, fuzzy
122
  msgid "Display number of views on:"
123
  msgstr "Geef het aantal berichtweergaves weer?"
124
 
125
+ #: admin.inc.php:246
126
  msgid "Posts"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:247
130
  #, fuzzy
131
  msgid "Pages"
132
  msgstr "Pagina"
133
 
134
+ #: admin.inc.php:248
135
  msgid "Home page"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:249
139
  msgid "Feeds"
140
  msgstr ""
141
 
142
+ #: admin.inc.php:250
143
  msgid "Category archives"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:251
147
  msgid "Tag archives"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:252
151
  msgid "Other archives"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:253
155
  msgid ""
156
+ "If you choose to disable this, please add <code>&lt;?php if "
157
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
158
+ "</code> to your template file where you want it displayed"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:256
162
  msgid "Always display latest post count"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:258
166
  msgid ""
167
  "This option uses JavaScript and will increase your page load time. Turn this "
168
  "off if you are not using caching plugins or are OK with displaying older "
169
  "cached counts."
170
  msgstr ""
171
 
172
+ #: admin.inc.php:261
173
  msgid "Track visits of authors on their own posts?"
174
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
175
 
176
+ #: admin.inc.php:263
177
  msgid ""
178
  "Disabling this option will stop authors visits tracked on their own posts"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:266
182
  #, fuzzy
183
  msgid "Track visits of admins?"
184
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
185
 
186
+ #: admin.inc.php:268
187
  msgid "Disabling this option will stop admin visits being tracked."
188
  msgstr ""
189
 
190
+ #: admin.inc.php:271
191
+ #, fuzzy
192
+ msgid "Track visits of Editors?"
193
+ msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
194
+
195
+ #: admin.inc.php:273
196
+ msgid "Disabling this option will stop editor visits being tracked."
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:276
200
  msgid "Display page views on Posts and Pages in Admin"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:279
204
  msgid ""
205
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
206
  "and All Pages"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:282
210
  #, fuzzy
211
  msgid "Show number of views to non-admins"
212
  msgstr "Geef het aantal paginaweergaves weer?"
213
 
214
+ #: admin.inc.php:285
215
  msgid ""
216
  "If you disable this then non-admins won't see the above columns or view the "
217
  "independent pages with the top posts"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:288
221
  msgid "Link to Top 10 plugin page"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:291
225
  #, fuzzy
226
  msgid ""
227
  "A link to the plugin is added as an extra list item to the list of popular "
231
  "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
232
  "gewaardeerd!"
233
 
234
+ #: admin.inc.php:298
235
  #, fuzzy
236
  msgid "Output options"
237
  msgstr "Output Opties:"
238
 
239
+ #: admin.inc.php:301
240
  #, fuzzy
241
  msgid "Format to display the post views:"
242
  msgstr "Formaat om de optelling te laten zien:"
243
 
244
+ #: admin.inc.php:303
245
  #, fuzzy
246
  msgid ""
247
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
254
  "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
255
 
256
+ #: admin.inc.php:306
257
  msgid "What do display when there are no visits?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:308
261
  msgid ""
262
  "This text applies only when there are 0 hits for the post and it isn't a "
263
  "single page. e.g. if you display post views on the homepage or archives then "
265
  "option."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:311
269
  msgid "Title of popular posts: "
270
  msgstr "Titel van populaire berichten:"
271
 
272
+ #: admin.inc.php:314
273
  msgid "Title of daily popular posts: "
274
  msgstr "Titel van dagelijkse populaire berichten:"
275
 
276
+ #: admin.inc.php:317
277
  msgid "When there are no posts, what should be shown?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Blank Output"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:325
285
  msgid "Display:"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:329
289
  msgid "Show post excerpt in list?"
290
  msgstr "Laat bericht samenvatting zien in lijst?"
291
 
292
+ #: admin.inc.php:332
293
  msgid "Length of excerpt (in words): "
294
  msgstr "Lengte van de samenvatting (in woorden):"
295
 
296
+ #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show post author in list?"
299
  msgstr "Laat bericht samenvatting zien in lijst?"
300
 
301
+ #: admin.inc.php:338
302
  #, fuzzy
303
  msgid "Show post date in list?"
304
  msgstr "Laat bericht samenvatting zien in lijst?"
305
 
306
+ #: admin.inc.php:341
307
  msgid "Limit post title length (in characters)"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:344
311
  #, fuzzy
312
  msgid "Show view count in list?"
313
  msgstr "Laat bericht samenvatting zien in lijst?"
314
 
315
+ #: admin.inc.php:347
316
  msgid "Always display latest post count in the daily lists?"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:349
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. When you "
322
  "enable this option, the daily widget will not use the options set there, but "
323
  "options will need to be set on this screen."
324
  msgstr ""
325
 
326
+ #: admin.inc.php:352
327
  msgid "Open links in new window"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:355
331
  msgid "Add nofollow attribute to links in the list"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:358
335
  msgid "Exclude display of related posts on these posts / pages"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:364
339
  #, fuzzy
340
  msgid "Customise the list HTML"
341
  msgstr "Aanpassen van de output:"
342
 
343
+ #: admin.inc.php:366
344
  msgid "HTML to display before the list of posts: "
345
  msgstr "Te weergeven HTML voor de lijst met berichten:"
346
 
347
+ #: admin.inc.php:369
348
  msgid "HTML to display before each list item: "
349
  msgstr "Te weergeven HTML voor elk lijst item:"
350
 
351
+ #: admin.inc.php:372
352
  msgid "HTML to display after each list item: "
353
  msgstr "Te weergeven HTML na elk lijst item:"
354
 
355
+ #: admin.inc.php:375
356
  msgid "HTML to display after the list of posts: "
357
  msgstr "Te weergeven HTML na de lijst met berichten:"
358
 
359
+ #: admin.inc.php:378
360
  msgid "Post thumbnail options:"
361
  msgstr "Bericht miniatuurafbeelding opties:"
362
 
363
+ #: admin.inc.php:380
364
  msgid "Location of post thumbnail:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:384
368
  #, fuzzy
369
  msgid "Display thumbnails inline with posts, before title"
370
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
371
 
372
+ #: admin.inc.php:388
373
  #, fuzzy
374
  msgid "Display thumbnails inline with posts, after title"
375
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
376
 
377
+ #: admin.inc.php:392
378
  msgid "Display only thumbnails, no text"
379
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
380
 
381
+ #: admin.inc.php:396
382
  msgid "Do not display thumbnails, only text."
383
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
384
 
385
+ #: admin.inc.php:400
386
  msgid "Width of the thumbnail: "
387
  msgstr ""
388
 
389
+ #: admin.inc.php:403
390
  msgid "Height of the thumbnail: "
391
  msgstr ""
392
 
393
+ #: admin.inc.php:406
394
  msgid "Style attributes / Width and Height HTML attributes:"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:410
398
  msgid "Style attributes are used for width and height."
399
  msgstr ""
400
 
401
+ #: admin.inc.php:414
402
  msgid "HTML width and height attributes are used for width and height."
403
  msgstr ""
404
 
405
+ #: admin.inc.php:418
406
  msgid "Use timthumb to generate thumbnails? "
407
  msgstr ""
408
 
409
+ #: admin.inc.php:421
410
  msgid ""
411
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
412
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:424
416
+ msgid "Quality of thumbnails generated by timthumb:"
417
+ msgstr ""
418
+
419
+ #: admin.inc.php:427
420
+ msgid ""
421
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
422
+ "file size. Suggested maximum value is 95. Default is 75."
423
+ msgstr ""
424
+
425
+ #: admin.inc.php:430
426
  #, fuzzy
427
  msgid "Post thumbnail meta field name: "
428
  msgstr "Bericht miniatuurafbeelding opties:"
429
 
430
+ #: admin.inc.php:433
431
  msgid ""
432
  "The value of this field should contain the image source and is set in the "
433
  "<em>Add New Post</em> screen"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:436
437
  #, fuzzy
438
  msgid ""
439
  "If the postmeta is not set, then should the plugin extract the first image "
444
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
445
  "qua bestandsgrootte"
446
 
447
+ #: admin.inc.php:439
448
  #, fuzzy
449
  msgid ""
450
  "This could slow down the loading of your page if the first image in the "
455
  "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
456
  "qua bestandsgrootte"
457
 
458
+ #: admin.inc.php:442
459
  msgid "Use default thumbnail? "
460
  msgstr ""
461
 
462
+ #: admin.inc.php:445
463
  msgid ""
464
  "If checked, when no thumbnail is found, show a default one from the URL "
465
  "below. If not checked and no thumbnail is found, no image will be shown."
466
  msgstr ""
467
 
468
+ #: admin.inc.php:448
469
  msgid "Default thumbnail: "
470
  msgstr ""
471
 
472
+ #: admin.inc.php:452
473
  #, fuzzy
474
  msgid ""
475
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
481
  "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
482
  "standaard afbeelding zoals hieronder aangegeven:"
483
 
484
+ #: admin.inc.php:459
485
  msgid "Custom CSS"
486
  msgstr ""
487
 
488
+ #: admin.inc.php:462
489
  msgid "Use default style included in the plugin?"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:465
493
  msgid ""
494
  "Top 10 includes a default style that makes your popular posts list to look "
495
  "pretty. Check the box above if you want to use this. You will need to select "
497
  "Widget."
498
  msgstr ""
499
 
500
+ #: admin.inc.php:468
501
  msgid "Custom CSS to add to header:"
502
  msgstr ""
503
 
504
+ #: admin.inc.php:471
505
  msgid ""
506
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
507
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
508
  "available CSS classes to style."
509
  msgstr ""
510
 
511
+ #: admin.inc.php:478 admin.inc.php:544
512
  #, fuzzy
513
  msgid "Save Options"
514
  msgstr "Opties:"
515
 
516
+ #: admin.inc.php:479
517
  #, fuzzy
518
  msgid "Default Options"
519
  msgstr "Output Opties:"
520
 
521
+ #: admin.inc.php:479
522
  msgid "Do you want to set options to Default?"
523
  msgstr "Wil je de opties terugzetten naar standaard?"
524
 
525
+ #: admin.inc.php:488
526
  msgid "Maintenance"
527
  msgstr ""
528
 
529
+ #: admin.inc.php:492
530
  msgid ""
531
  "Over time the Daily Top 10 database grows in size, which reduces the "
532
  "performance of the plugin. Cleaning the database at regular intervals could "
534
  "will automatically delete entries older than 90 days."
535
  msgstr ""
536
 
537
+ #: admin.inc.php:493
538
  msgid ""
539
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
540
  "everytime the job is rescheduled (i.e. you change the settings below)."
541
  msgstr ""
542
 
543
+ #: admin.inc.php:496
544
  msgid "Enable scheduled maintenance of daily tables:"
545
  msgstr ""
546
 
547
+ #: admin.inc.php:500
548
  msgid "Time to run maintenance"
549
  msgstr ""
550
 
551
+ #: admin.inc.php:501
552
  msgid "hrs"
553
  msgstr ""
554
 
555
+ #: admin.inc.php:501
556
  msgid "min"
557
  msgstr ""
558
 
559
+ #: admin.inc.php:503
560
  msgid "How often should the maintenance be run:"
561
  msgstr ""
562
 
563
+ #: admin.inc.php:507
564
  msgid "Daily"
565
  msgstr ""
566
 
567
+ #: admin.inc.php:511
568
  msgid "Weekly"
569
  msgstr ""
570
 
571
+ #: admin.inc.php:515
572
  msgid "Fortnightly"
573
  msgstr ""
574
 
575
+ #: admin.inc.php:519
576
  msgid "Monthly"
577
  msgstr ""
578
 
579
+ #: admin.inc.php:528
580
  msgid "The cron job has been scheduled. Maintenance will run "
581
  msgstr ""
582
 
583
+ #: admin.inc.php:533
584
  msgid "The cron job is missing. Please resave this page to add the job"
585
  msgstr ""
586
 
587
+ #: admin.inc.php:538
588
  msgid "Maintenance is turned off"
589
  msgstr ""
590
 
591
+ #: admin.inc.php:552
592
  msgid "Reset count"
593
  msgstr "Reset telling"
594
 
595
+ #: admin.inc.php:555
596
  msgid ""
597
  "This cannot be reversed. Make sure that your database has been backed up "
598
  "before proceeding"
600
  "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
601
  "database gemaakt hebt voordat je verder gaat"
602
 
603
+ #: admin.inc.php:558
604
  #, fuzzy
605
  msgid "Reset Popular Posts"
606
  msgstr "Populaire Berichten"
607
 
608
+ #: admin.inc.php:558
609
  msgid "Are you sure you want to reset the popular posts?"
610
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
611
 
612
+ #: admin.inc.php:559
613
  #, fuzzy
614
  msgid "Reset Daily Popular Posts"
615
  msgstr "Dagelijkse Populaire Berichten"
616
 
617
+ #: admin.inc.php:559
618
  msgid "Are you sure you want to reset the daily popular posts?"
619
  msgstr ""
620
  "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
621
 
622
+ #: admin.inc.php:560
623
  msgid "Clear duplicates"
624
  msgstr ""
625
 
626
+ #: admin.inc.php:560
627
  msgid "This will delete the duplicate entries in the tables. Proceed?"
628
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
629
 
630
+ #: admin.inc.php:612 admin.inc.php:1010
631
  msgid "Popular Posts"
632
  msgstr "Populaire Berichten"
633
 
634
+ #: admin.inc.php:614 admin.inc.php:713
635
  msgid "Daily Popular Posts"
636
  msgstr "Dagelijkse Populaire Berichten"
637
 
638
+ #: admin.inc.php:645
639
  msgid "Support the development"
640
  msgstr "Ondersteun de ontwikkeling"
641
 
642
+ #: admin.inc.php:652
643
+ msgid "Donation for Top 10"
644
+ msgstr ""
645
+
646
+ #: admin.inc.php:654
647
  msgid "Enter amount in USD: "
648
  msgstr "Voer het bedrag in in USD:"
649
 
650
+ #: admin.inc.php:658
651
+ #, fuzzy
652
+ msgid "Send your donation to the author of Top 10"
653
  msgstr "Zend je donatie naar de auteur van "
654
 
655
+ #: admin.inc.php:665
656
  msgid "Follow me"
657
  msgstr ""
658
 
659
+ #: admin.inc.php:675
660
  #, fuzzy
661
  msgid "Quick links"
662
  msgstr "Quick links"
663
 
664
+ #: admin.inc.php:679
665
  #, fuzzy
666
  msgid "Top 10 plugin page"
667
  msgstr "plugin pagina"
668
 
669
+ #: admin.inc.php:680
670
  msgid "Other plugins"
671
  msgstr "Andere plugins"
672
 
673
+ #: admin.inc.php:681
674
  msgid "Ajay's blog"
675
  msgstr "De blog van Ajay"
676
 
677
+ #: admin.inc.php:682
678
  msgid "FAQ"
679
  msgstr ""
680
 
681
+ #: admin.inc.php:683 top-10.php:1345
682
  msgid "Support"
683
  msgstr "Ondersteuning"
684
 
685
+ #: admin.inc.php:684
686
  msgid "Reviews"
687
  msgstr ""
688
 
689
+ #: admin.inc.php:704 admin.inc.php:707
690
  #, fuzzy
691
  msgid "Top 10 Settings"
692
  msgstr "Instellingen"
693
 
694
+ #: admin.inc.php:704 admin.inc.php:1183
695
  msgid "Top 10"
696
  msgstr "Top 10"
697
 
698
+ #: admin.inc.php:710
699
  #, fuzzy
700
  msgid "Overall Popular Posts"
701
  msgstr "Bekijk het Totaal Populaire Berichten"
702
 
703
+ #: admin.inc.php:882
704
  #, php-format
705
  msgid "Results %1$s to %2$s of %3$s"
706
  msgstr ""
707
 
708
+ #: admin.inc.php:886
709
  #, php-format
710
  msgid "Page %s of %s"
711
  msgstr ""
712
 
713
+ #: admin.inc.php:898
714
  msgid "View Daily Popular Posts"
715
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
716
 
717
+ #: admin.inc.php:901 admin.inc.php:914
718
  msgid "Results per-page:"
719
  msgstr "Resultaten per pagina:"
720
 
721
+ #: admin.inc.php:911
722
  msgid "View Overall Popular Posts"
723
  msgstr "Bekijk het Totaal Populaire Berichten"
724
 
725
+ #: admin.inc.php:940
726
  msgid "Previous"
727
  msgstr "Vorige"
728
 
729
+ #: admin.inc.php:968
730
  msgid "Next"
731
  msgstr "Volgende"
732
 
733
+ #: admin.inc.php:1011
734
  msgid "Daily Popular"
735
  msgstr "Dagelijks Populair"
736
 
737
+ #: admin.inc.php:1029
738
  #, fuzzy
739
  msgid "Total Views"
740
  msgstr "Totale Weergaves / Weergaves van Vandaag"
741
 
742
+ #: admin.inc.php:1030
743
  #, fuzzy
744
  msgid "Today's Views"
745
  msgstr "Totale Weergaves / Weergaves van Vandaag"
746
 
747
+ #: admin.inc.php:1031
748
  #, fuzzy
749
  msgid "Views"
750
  msgstr "Totale Weergaves / Weergaves van Vandaag"
751
 
752
+ #: admin.inc.php:1217
753
+ #, fuzzy
754
+ msgid "Visit count:"
755
+ msgstr "Reset telling"
756
+
757
+ #: admin.inc.php:1219
758
+ msgid ""
759
+ "Enter a number above to update the visit count. Leaving the above box blank "
760
+ "will set the count to zero"
761
+ msgstr ""
762
+
763
+ #: admin.inc.php:1229
764
+ msgid "Location of thumbnail:"
765
+ msgstr ""
766
+
767
+ #: admin.inc.php:1231
768
+ msgid ""
769
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
770
+ "image will be used for the post. It will be resized to the thumbnail size "
771
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
772
  msgstr ""
773
 
774
+ #: admin.inc.php:1232
775
+ msgid "The URL above is saved in the meta field: "
776
+ msgstr ""
777
+
778
+ #: top-10.php:456
779
+ msgid " by "
780
  msgstr ""
781
 
782
+ #: top-10.php:550
783
  #, fuzzy
784
  msgid "Popular Posts [Top 10]"
785
  msgstr "Populaire Berichten"
786
 
787
+ #: top-10.php:551
788
+ #, fuzzy
789
+ msgid "Display popular posts"
790
+ msgstr "Dagelijkse Populaire Berichten"
791
+
792
+ #: top-10.php:577
793
  msgid "Title"
794
  msgstr ""
795
 
796
+ #: top-10.php:582
797
  msgid "No. of posts"
798
  msgstr ""
799
 
800
+ #: top-10.php:587
801
  msgid "Overall"
802
  msgstr ""
803
 
804
+ #: top-10.php:588
805
  msgid "Custom time period (Enter below)"
806
  msgstr ""
807
 
808
+ #: top-10.php:593
809
  msgid "Range in number of days (applies only to custom option above)"
810
  msgstr ""
811
 
812
+ #: top-10.php:598
813
  #, fuzzy
814
+ msgid "Show count?"
815
  msgstr "Laat bericht samenvatting zien in lijst?"
816
 
817
+ #: top-10.php:603
818
  #, fuzzy
819
+ msgid "Show excerpt?"
820
  msgstr "Laat bericht samenvatting zien in lijst?"
821
 
822
+ #: top-10.php:608
823
+ #, fuzzy
824
+ msgid "Show author?"
825
+ msgstr "Laat bericht samenvatting zien in lijst?"
826
 
827
+ #: top-10.php:613
828
  #, fuzzy
829
+ msgid "Show date?"
830
  msgstr "Laat bericht samenvatting zien in lijst?"
831
 
832
+ #: top-10.php:617
833
  #, fuzzy
834
  msgid "Thumbnail options"
835
  msgstr "Bericht miniatuurafbeelding opties:"
836
 
837
+ #: top-10.php:619
838
  #, fuzzy
839
  msgid "Thumbnails inline, before title"
840
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
841
 
842
+ #: top-10.php:620
843
  #, fuzzy
844
  msgid "Thumbnails inline, after title"
845
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
846
 
847
+ #: top-10.php:621
848
  #, fuzzy
849
  msgid "Only thumbnails, no text"
850
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
851
 
852
+ #: top-10.php:622
853
  #, fuzzy
854
  msgid "No thumbnails, only text."
855
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
856
 
857
+ #: top-10.php:627
858
  #, fuzzy
859
  msgid "Thumbnail height"
860
  msgstr "Bericht miniatuurafbeelding opties:"
861
 
862
+ #: top-10.php:632
863
  #, fuzzy
864
  msgid "Thumbnail width"
865
  msgstr "Bericht miniatuurafbeelding opties:"
866
 
867
+ #: top-10.php:772
868
  msgid "<h3>Popular Posts</h3>"
869
  msgstr "<h3>Populaire Berichten</h3>"
870
 
871
+ #: top-10.php:773
872
  msgid "<h3>Daily Popular</h3>"
873
  msgstr "<h3>Dagelijks Populair</h3>"
874
 
875
+ #: top-10.php:774
876
  #, fuzzy
877
  msgid "No top posts yet"
878
  msgstr "Reset Top 10 populaire berichten"
879
 
880
+ #: top-10.php:1245
881
  msgid "Once Weekly"
882
  msgstr ""
883
 
884
+ #: top-10.php:1249
885
  msgid "Once Fortnightly"
886
  msgstr ""
887
 
888
+ #: top-10.php:1253
889
  msgid "Once Monthly"
890
  msgstr ""
891
 
892
+ #: top-10.php:1323
893
  msgid "Settings"
894
  msgstr "Instellingen"
895
 
896
+ #: top-10.php:1346
897
  msgid "Donate"
898
  msgstr "Doneer"
899
 
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
@@ -12,200 +12,214 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Opţiuni salvat cu succes."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Opţiunile setate la valorile implicite."
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Top 10 populare posturi Resetare"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Top 10 posturi populare daily Reiniţializare"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Numărul de posturi populare pentru a afişa: "
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
82
 
83
- #: admin.inc.php:200
84
  msgid ""
85
  "Instead of displaying popular posts fromt he past day, this setting lets you "
86
  "display posts for as many days as you want. This can be overridden in the "
87
  "widget."
88
  msgstr ""
89
 
90
- #: admin.inc.php:203
91
  msgid "Post types to include in results (including custom post types)"
92
  msgstr ""
93
 
94
- #: admin.inc.php:214
95
  msgid "List of post or page IDs to exclude from the results: "
96
  msgstr ""
97
 
98
- #: admin.inc.php:216 admin.inc.php:352
99
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
100
  msgstr ""
101
 
102
- #: admin.inc.php:220
103
  msgid "Exclude Categories: "
104
  msgstr "Excludeţi categorii: "
105
 
106
- #: admin.inc.php:235
107
  msgid ""
108
  "Comma separated list of category slugs. The field above has an autocomplete "
109
  "so simply start typing in the starting letters and it will prompt you with "
110
  "options"
111
  msgstr ""
112
 
113
- #: admin.inc.php:240
114
  #, fuzzy
115
  msgid "Display number of views on:"
116
  msgstr "Afişează numărul de vizualizări pe posturi?"
117
 
118
- #: admin.inc.php:242
119
  msgid "Posts"
120
  msgstr ""
121
 
122
- #: admin.inc.php:243
123
  #, fuzzy
124
  msgid "Pages"
125
  msgstr "Pagină"
126
 
127
- #: admin.inc.php:244
128
  msgid "Home page"
129
  msgstr ""
130
 
131
- #: admin.inc.php:245
132
  msgid "Feeds"
133
  msgstr ""
134
 
135
- #: admin.inc.php:246
136
  msgid "Category archives"
137
  msgstr ""
138
 
139
- #: admin.inc.php:247
140
  msgid "Tag archives"
141
  msgstr ""
142
 
143
- #: admin.inc.php:248
144
  msgid "Other archives"
145
  msgstr ""
146
 
147
- #: admin.inc.php:249
148
  msgid ""
149
- "If you choose to disable this, please add <code>&lt;?php "
150
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
151
- "template file where you want it displayed"
152
  msgstr ""
153
 
154
- #: admin.inc.php:252
155
  msgid "Always display latest post count"
156
  msgstr ""
157
 
158
- #: admin.inc.php:254
159
  msgid ""
160
  "This option uses JavaScript and will increase your page load time. Turn this "
161
  "off if you are not using caching plugins or are OK with displaying older "
162
  "cached counts."
163
  msgstr ""
164
 
165
- #: admin.inc.php:257
166
  msgid "Track visits of authors on their own posts?"
167
  msgstr "Track vizite de autori pe posturile lor proprii?"
168
 
169
- #: admin.inc.php:259
170
  msgid ""
171
  "Disabling this option will stop authors visits tracked on their own posts"
172
  msgstr ""
173
 
174
- #: admin.inc.php:262
175
  #, fuzzy
176
  msgid "Track visits of admins?"
177
  msgstr "Track vizite de autori pe posturile lor proprii?"
178
 
179
- #: admin.inc.php:264
180
  msgid "Disabling this option will stop admin visits being tracked."
181
  msgstr ""
182
 
183
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
184
  msgid "Display page views on Posts and Pages in Admin"
185
  msgstr ""
186
 
187
- #: admin.inc.php:270
188
  msgid ""
189
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
190
  "and All Pages"
191
  msgstr ""
192
 
193
- #: admin.inc.php:273
194
  #, fuzzy
195
  msgid "Show number of views to non-admins"
196
  msgstr "Afişează numărul de vizualizări pe pagini?"
197
 
198
- #: admin.inc.php:276
199
  msgid ""
200
  "If you disable this then non-admins won't see the above columns or view the "
201
  "independent pages with the top posts"
202
  msgstr ""
203
 
204
- #: admin.inc.php:279
205
  msgid "Link to Top 10 plugin page"
206
  msgstr ""
207
 
208
- #: admin.inc.php:282
209
  #, fuzzy
210
  msgid ""
211
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -214,17 +228,17 @@ msgstr ""
214
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
215
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
216
 
217
- #: admin.inc.php:289
218
  #, fuzzy
219
  msgid "Output options"
220
  msgstr "Opţiuni de ieşire:"
221
 
222
- #: admin.inc.php:292
223
  #, fuzzy
224
  msgid "Format to display the post views:"
225
  msgstr "Format pentru a afişa numărul în: "
226
 
227
- #: admin.inc.php:294
228
  #, fuzzy
229
  msgid ""
230
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -236,11 +250,11 @@ msgstr ""
236
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
237
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
238
 
239
- #: admin.inc.php:297
240
  msgid "What do display when there are no visits?"
241
  msgstr ""
242
 
243
- #: admin.inc.php:299
244
  msgid ""
245
  "This text applies only when there are 0 hits for the post and it isn't a "
246
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -248,163 +262,173 @@ msgid ""
248
  "option."
249
  msgstr ""
250
 
251
- #: admin.inc.php:302
252
  msgid "Title of popular posts: "
253
  msgstr "Titlul de posturi populare: "
254
 
255
- #: admin.inc.php:305
256
  msgid "Title of daily popular posts: "
257
  msgstr "Titlul de zi cu zi de posturi populare: "
258
 
259
- #: admin.inc.php:308
260
  msgid "When there are no posts, what should be shown?"
261
  msgstr ""
262
 
263
- #: admin.inc.php:312
264
  msgid "Blank Output"
265
  msgstr ""
266
 
267
- #: admin.inc.php:316
268
  msgid "Display:"
269
  msgstr ""
270
 
271
- #: admin.inc.php:320
272
  msgid "Show post excerpt in list?"
273
  msgstr "Afişează post extras din lista?"
274
 
275
- #: admin.inc.php:323
276
  msgid "Length of excerpt (in words): "
277
  msgstr "Lungimea extras (în cuvinte): "
278
 
279
- #: admin.inc.php:326
280
  #, fuzzy
281
  msgid "Show post author in list?"
282
  msgstr "Afişează post extras din lista?"
283
 
284
- #: admin.inc.php:329
285
  #, fuzzy
286
  msgid "Show post date in list?"
287
  msgstr "Afişează post extras din lista?"
288
 
289
- #: admin.inc.php:332
290
  msgid "Limit post title length (in characters)"
291
  msgstr ""
292
 
293
- #: admin.inc.php:335
294
  #, fuzzy
295
  msgid "Show view count in list?"
296
  msgstr "Afişează post extras din lista?"
297
 
298
- #: admin.inc.php:338
299
  msgid "Always display latest post count in the daily lists?"
300
  msgstr ""
301
 
302
- #: admin.inc.php:340
303
  msgid ""
304
  "This option uses JavaScript and will increase your page load time. When you "
305
  "enable this option, the daily widget will not use the options set there, but "
306
  "options will need to be set on this screen."
307
  msgstr ""
308
 
309
- #: admin.inc.php:343
310
  msgid "Open links in new window"
311
  msgstr ""
312
 
313
- #: admin.inc.php:346
314
  msgid "Add nofollow attribute to links in the list"
315
  msgstr ""
316
 
317
- #: admin.inc.php:349
318
  msgid "Exclude display of related posts on these posts / pages"
319
  msgstr ""
320
 
321
- #: admin.inc.php:355
322
  #, fuzzy
323
  msgid "Customise the list HTML"
324
  msgstr "Personaliza ieşire:"
325
 
326
- #: admin.inc.php:357
327
  msgid "HTML to display before the list of posts: "
328
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
329
 
330
- #: admin.inc.php:360
331
  msgid "HTML to display before each list item: "
332
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
333
 
334
- #: admin.inc.php:363
335
  msgid "HTML to display after each list item: "
336
  msgstr "HTML pentru a afişa după fiecare element din listă: "
337
 
338
- #: admin.inc.php:366
339
  msgid "HTML to display after the list of posts: "
340
  msgstr "HTML pentru a afişa după lista de posturi: "
341
 
342
- #: admin.inc.php:369
343
  msgid "Post thumbnail options:"
344
  msgstr "Post Opţiuni pictograme:"
345
 
346
- #: admin.inc.php:371
347
  msgid "Location of post thumbnail:"
348
  msgstr ""
349
 
350
- #: admin.inc.php:375
351
  msgid "Display thumbnails inline with posts, before title"
352
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
353
 
354
- #: admin.inc.php:379
355
  msgid "Display thumbnails inline with posts, after title"
356
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
357
 
358
- #: admin.inc.php:383
359
  msgid "Display only thumbnails, no text"
360
  msgstr "Afişa numai miniaturi, nici un text"
361
 
362
- #: admin.inc.php:387
363
  msgid "Do not display thumbnails, only text."
364
  msgstr "Nu se afişează miniaturi, numai textul."
365
 
366
- #: admin.inc.php:391
367
  msgid "Width of the thumbnail: "
368
  msgstr ""
369
 
370
- #: admin.inc.php:394
371
  msgid "Height of the thumbnail: "
372
  msgstr ""
373
 
374
- #: admin.inc.php:397
375
  msgid "Style attributes / Width and Height HTML attributes:"
376
  msgstr ""
377
 
378
- #: admin.inc.php:401
379
  msgid "Style attributes are used for width and height."
380
  msgstr ""
381
 
382
- #: admin.inc.php:405
383
  msgid "HTML width and height attributes are used for width and height."
384
  msgstr ""
385
 
386
- #: admin.inc.php:409
387
  msgid "Use timthumb to generate thumbnails? "
388
  msgstr ""
389
 
390
- #: admin.inc.php:412
391
  msgid ""
392
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
393
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
394
  msgstr ""
395
 
396
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
397
  #, fuzzy
398
  msgid "Post thumbnail meta field name: "
399
  msgstr "Post Opţiuni pictograme:"
400
 
401
- #: admin.inc.php:418
402
  msgid ""
403
  "The value of this field should contain the image source and is set in the "
404
  "<em>Add New Post</em> screen"
405
  msgstr ""
406
 
407
- #: admin.inc.php:421
408
  #, fuzzy
409
  msgid ""
410
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -415,7 +439,7 @@ msgstr ""
415
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
416
  "fişier"
417
 
418
- #: admin.inc.php:424
419
  #, fuzzy
420
  msgid ""
421
  "This could slow down the loading of your page if the first image in the "
@@ -426,11 +450,11 @@ msgstr ""
426
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
427
  "fişier"
428
 
429
- #: admin.inc.php:427
430
  msgid "Use default thumbnail? "
431
  msgstr ""
432
 
433
- #: admin.inc.php:430
434
  msgid ""
435
  "If checked, when no thumbnail is found, show a default one from the URL "
436
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -439,26 +463,26 @@ msgstr ""
439
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
440
  "thumbnail, imaginea nu va fi indicat."
441
 
442
- #: admin.inc.php:433
443
  msgid "Default thumbnail: "
444
  msgstr ""
445
 
446
- #: admin.inc.php:437
447
  msgid ""
448
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
449
  "then it will check the meta field. If this is not available, then it will "
450
  "show the default image as specified above"
451
  msgstr ""
452
 
453
- #: admin.inc.php:444
454
  msgid "Custom CSS"
455
  msgstr ""
456
 
457
- #: admin.inc.php:447
458
  msgid "Use default style included in the plugin?"
459
  msgstr ""
460
 
461
- #: admin.inc.php:450
462
  msgid ""
463
  "Top 10 includes a default style that makes your popular posts list to look "
464
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -466,36 +490,36 @@ msgid ""
466
  "Widget."
467
  msgstr ""
468
 
469
- #: admin.inc.php:453
470
  msgid "Custom CSS to add to header:"
471
  msgstr ""
472
 
473
- #: admin.inc.php:456
474
  msgid ""
475
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
476
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
477
  "available CSS classes to style."
478
  msgstr ""
479
 
480
- #: admin.inc.php:463 admin.inc.php:529
481
  #, fuzzy
482
  msgid "Save Options"
483
  msgstr "Opţiuni:"
484
 
485
- #: admin.inc.php:464
486
  #, fuzzy
487
  msgid "Default Options"
488
  msgstr "Opţiuni de ieşire:"
489
 
490
- #: admin.inc.php:464
491
  msgid "Do you want to set options to Default?"
492
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
493
 
494
- #: admin.inc.php:473
495
  msgid "Maintenance"
496
  msgstr ""
497
 
498
- #: admin.inc.php:477
499
  msgid ""
500
  "Over time the Daily Top 10 database grows in size, which reduces the "
501
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -503,65 +527,65 @@ msgid ""
503
  "will automatically delete entries older than 90 days."
504
  msgstr ""
505
 
506
- #: admin.inc.php:478
507
  msgid ""
508
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
509
  "everytime the job is rescheduled (i.e. you change the settings below)."
510
  msgstr ""
511
 
512
- #: admin.inc.php:481
513
  msgid "Enable scheduled maintenance of daily tables:"
514
  msgstr ""
515
 
516
- #: admin.inc.php:485
517
  msgid "Time to run maintenance"
518
  msgstr ""
519
 
520
- #: admin.inc.php:486
521
  msgid "hrs"
522
  msgstr ""
523
 
524
- #: admin.inc.php:486
525
  msgid "min"
526
  msgstr ""
527
 
528
- #: admin.inc.php:488
529
  msgid "How often should the maintenance be run:"
530
  msgstr ""
531
 
532
- #: admin.inc.php:492
533
  msgid "Daily"
534
  msgstr ""
535
 
536
- #: admin.inc.php:496
537
  msgid "Weekly"
538
  msgstr ""
539
 
540
- #: admin.inc.php:500
541
  msgid "Fortnightly"
542
  msgstr ""
543
 
544
- #: admin.inc.php:504
545
  msgid "Monthly"
546
  msgstr ""
547
 
548
- #: admin.inc.php:513
549
  msgid "The cron job has been scheduled. Maintenance will run "
550
  msgstr ""
551
 
552
- #: admin.inc.php:518
553
  msgid "The cron job is missing. Please resave this page to add the job"
554
  msgstr ""
555
 
556
- #: admin.inc.php:523
557
  msgid "Maintenance is turned off"
558
  msgstr ""
559
 
560
- #: admin.inc.php:537
561
  msgid "Reset count"
562
  msgstr "Reiniţializare count"
563
 
564
- #: admin.inc.php:540
565
  msgid ""
566
  "This cannot be reversed. Make sure that your database has been backed up "
567
  "before proceeding"
@@ -569,269 +593,305 @@ msgstr ""
569
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
570
  "înainte de a continua"
571
 
572
- #: admin.inc.php:543
573
  #, fuzzy
574
  msgid "Reset Popular Posts"
575
  msgstr "Posturi populare"
576
 
577
- #: admin.inc.php:543
578
  msgid "Are you sure you want to reset the popular posts?"
579
  msgstr "Sigur reiniţializaţi posturi populare?"
580
 
581
- #: admin.inc.php:544
582
  #, fuzzy
583
  msgid "Reset Daily Popular Posts"
584
  msgstr "Posturi populare de zi cu zi"
585
 
586
- #: admin.inc.php:544
587
  msgid "Are you sure you want to reset the daily popular posts?"
588
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
589
 
590
- #: admin.inc.php:545
591
  msgid "Clear duplicates"
592
  msgstr ""
593
 
594
- #: admin.inc.php:545
595
  msgid "This will delete the duplicate entries in the tables. Proceed?"
596
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
597
 
598
- #: admin.inc.php:593 admin.inc.php:979
599
  msgid "Popular Posts"
600
  msgstr "Posturi populare"
601
 
602
- #: admin.inc.php:593 admin.inc.php:688
603
  msgid "Daily Popular Posts"
604
  msgstr "Posturi populare de zi cu zi"
605
 
606
- #: admin.inc.php:621
607
  msgid "Support the development"
608
  msgstr "Sprijinirea dezvoltării"
609
 
610
- #: admin.inc.php:630
 
 
 
 
611
  msgid "Enter amount in USD: "
612
  msgstr "Introduceţi valoarea în USD: "
613
 
614
- #: admin.inc.php:634
615
- msgid "Send your donation to the author of"
 
616
  msgstr "Trimite donatie autorului"
617
 
618
- #: admin.inc.php:641
619
  msgid "Follow me"
620
  msgstr ""
621
 
622
- #: admin.inc.php:651
623
  #, fuzzy
624
  msgid "Quick links"
625
  msgstr "Legături rapide pentru"
626
 
627
- #: admin.inc.php:655
628
  #, fuzzy
629
  msgid "Top 10 plugin page"
630
  msgstr "plug-in pagina"
631
 
632
- #: admin.inc.php:656
633
  msgid "Other plugins"
634
  msgstr "Alte plugin-uri"
635
 
636
- #: admin.inc.php:657
637
  msgid "Ajay's blog"
638
  msgstr "Ajay's blog"
639
 
640
- #: admin.inc.php:658
641
  msgid "FAQ"
642
  msgstr ""
643
 
644
- #: admin.inc.php:659 top-10.php:1267
645
  msgid "Support"
646
  msgstr "Suport"
647
 
648
- #: admin.inc.php:660
649
  msgid "Reviews"
650
  msgstr ""
651
 
652
- #: admin.inc.php:679 admin.inc.php:682
653
  #, fuzzy
654
  msgid "Top 10 Settings"
655
  msgstr "Setări"
656
 
657
- #: admin.inc.php:679
658
  msgid "Top 10"
659
  msgstr "Top 10"
660
 
661
- #: admin.inc.php:685
662
  #, fuzzy
663
  msgid "Overall Popular Posts"
664
  msgstr "Vedere de ansamblu posturi populare"
665
 
666
- #: admin.inc.php:850
667
  #, php-format
668
  msgid "Results %1$s to %2$s of %3$s"
669
  msgstr ""
670
 
671
- #: admin.inc.php:854
672
  #, php-format
673
  msgid "Page %s of %s"
674
  msgstr ""
675
 
676
- #: admin.inc.php:866
677
  msgid "View Daily Popular Posts"
678
  msgstr "Vizualizare zi posturi populare"
679
 
680
- #: admin.inc.php:869 admin.inc.php:882
681
  msgid "Results per-page:"
682
  msgstr "Rezultate pe pagină:"
683
 
684
- #: admin.inc.php:879
685
  msgid "View Overall Popular Posts"
686
  msgstr "Vedere de ansamblu posturi populare"
687
 
688
- #: admin.inc.php:908
689
  msgid "Previous"
690
  msgstr "Anterioară"
691
 
692
- #: admin.inc.php:936
693
  msgid "Next"
694
  msgstr "Următorul"
695
 
696
- #: admin.inc.php:980
697
  msgid "Daily Popular"
698
  msgstr "Daily populare"
699
 
700
- #: admin.inc.php:998
701
  #, fuzzy
702
  msgid "Total Views"
703
  msgstr "Total / astăzi lui vizitări"
704
 
705
- #: admin.inc.php:999
706
  #, fuzzy
707
  msgid "Today's Views"
708
  msgstr "Total / astăzi lui vizitări"
709
 
710
- #: admin.inc.php:1000
711
  #, fuzzy
712
  msgid "Views"
713
  msgstr "Total / astăzi lui vizitări"
714
 
715
- #: top-10.php:438
716
- msgid " by "
 
 
 
 
 
 
 
717
  msgstr ""
718
 
719
- #: top-10.php:524
720
- msgid "Display the posts popular this week"
721
- msgstr "Afişa posturi populare în această săptămână"
722
 
723
- #: top-10.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
  #, fuzzy
725
  msgid "Popular Posts [Top 10]"
726
  msgstr "Posturi populare"
727
 
728
- #: top-10.php:543
 
 
 
 
 
729
  msgid "Title"
730
  msgstr ""
731
 
732
- #: top-10.php:548
733
  msgid "No. of posts"
734
  msgstr ""
735
 
736
- #: top-10.php:553
737
  msgid "Overall"
738
  msgstr ""
739
 
740
- #: top-10.php:554
741
  msgid "Custom time period (Enter below)"
742
  msgstr ""
743
 
744
- #: top-10.php:559
745
  msgid "Range in number of days (applies only to custom option above)"
746
  msgstr ""
747
 
748
- #: top-10.php:564
749
  #, fuzzy
750
- msgid " Show count?"
751
  msgstr "Afişează post extras din lista?"
752
 
753
- #: top-10.php:569
754
  #, fuzzy
755
- msgid " Show excerpt?"
756
  msgstr "Afişează post extras din lista?"
757
 
758
- #: top-10.php:574
759
- msgid " Show author?"
760
- msgstr ""
 
761
 
762
- #: top-10.php:579
763
  #, fuzzy
764
- msgid " Show date?"
765
  msgstr "Afişează post extras din lista?"
766
 
767
- #: top-10.php:583
768
  #, fuzzy
769
  msgid "Thumbnail options"
770
  msgstr "Post Opţiuni pictograme:"
771
 
772
- #: top-10.php:585
773
  #, fuzzy
774
  msgid "Thumbnails inline, before title"
775
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
776
 
777
- #: top-10.php:586
778
  #, fuzzy
779
  msgid "Thumbnails inline, after title"
780
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
781
 
782
- #: top-10.php:587
783
  #, fuzzy
784
  msgid "Only thumbnails, no text"
785
  msgstr "Afişa numai miniaturi, nici un text"
786
 
787
- #: top-10.php:588
788
  #, fuzzy
789
  msgid "No thumbnails, only text."
790
  msgstr "Nu se afişează miniaturi, numai textul."
791
 
792
- #: top-10.php:593
793
  #, fuzzy
794
  msgid "Thumbnail height"
795
  msgstr "Post Opţiuni pictograme:"
796
 
797
- #: top-10.php:598
798
  #, fuzzy
799
  msgid "Thumbnail width"
800
  msgstr "Post Opţiuni pictograme:"
801
 
802
- #: top-10.php:719
803
  msgid "<h3>Popular Posts</h3>"
804
  msgstr "<h3>Posturi populare</h3>"
805
 
806
- #: top-10.php:720
807
  msgid "<h3>Daily Popular</h3>"
808
  msgstr "<h3>Daily populare</h3>"
809
 
810
- #: top-10.php:721
811
  #, fuzzy
812
  msgid "No top posts yet"
813
  msgstr "Top 10 populare posturi Resetare"
814
 
815
- #: top-10.php:1184
816
  msgid "Once Weekly"
817
  msgstr ""
818
 
819
- #: top-10.php:1188
820
  msgid "Once Fortnightly"
821
  msgstr ""
822
 
823
- #: top-10.php:1192
824
  msgid "Once Monthly"
825
  msgstr ""
826
 
827
- #: top-10.php:1255
828
  msgid "Settings"
829
  msgstr "Setări"
830
 
831
- #: top-10.php:1268
832
  msgid "Donate"
833
  msgstr "Dona"
834
 
 
 
 
835
  #, fuzzy
836
  #~ msgid "This option uses JavaScript and will increase your page load time"
837
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Web Geeks\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Opţiuni salvat cu succes."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Opţiunile setate la valorile implicite."
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Top 10 populare posturi Resetare"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Top 10 posturi populare daily Reiniţializare"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Numărul de posturi populare pentru a afişa: "
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
87
 
88
+ #: admin.inc.php:204
89
  msgid ""
90
  "Instead of displaying popular posts fromt he past day, this setting lets you "
91
  "display posts for as many days as you want. This can be overridden in the "
92
  "widget."
93
  msgstr ""
94
 
95
+ #: admin.inc.php:207
96
  msgid "Post types to include in results (including custom post types)"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:218
100
  msgid "List of post or page IDs to exclude from the results: "
101
  msgstr ""
102
 
103
+ #: admin.inc.php:220 admin.inc.php:361
104
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:224
108
  msgid "Exclude Categories: "
109
  msgstr "Excludeţi categorii: "
110
 
111
+ #: admin.inc.php:239
112
  msgid ""
113
  "Comma separated list of category slugs. The field above has an autocomplete "
114
  "so simply start typing in the starting letters and it will prompt you with "
115
  "options"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:244
119
  #, fuzzy
120
  msgid "Display number of views on:"
121
  msgstr "Afişează numărul de vizualizări pe posturi?"
122
 
123
+ #: admin.inc.php:246
124
  msgid "Posts"
125
  msgstr ""
126
 
127
+ #: admin.inc.php:247
128
  #, fuzzy
129
  msgid "Pages"
130
  msgstr "Pagină"
131
 
132
+ #: admin.inc.php:248
133
  msgid "Home page"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:249
137
  msgid "Feeds"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:250
141
  msgid "Category archives"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:251
145
  msgid "Tag archives"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:252
149
  msgid "Other archives"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:253
153
  msgid ""
154
+ "If you choose to disable this, please add <code>&lt;?php if "
155
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
156
+ "</code> to your template file where you want it displayed"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:256
160
  msgid "Always display latest post count"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:258
164
  msgid ""
165
  "This option uses JavaScript and will increase your page load time. Turn this "
166
  "off if you are not using caching plugins or are OK with displaying older "
167
  "cached counts."
168
  msgstr ""
169
 
170
+ #: admin.inc.php:261
171
  msgid "Track visits of authors on their own posts?"
172
  msgstr "Track vizite de autori pe posturile lor proprii?"
173
 
174
+ #: admin.inc.php:263
175
  msgid ""
176
  "Disabling this option will stop authors visits tracked on their own posts"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:266
180
  #, fuzzy
181
  msgid "Track visits of admins?"
182
  msgstr "Track vizite de autori pe posturile lor proprii?"
183
 
184
+ #: admin.inc.php:268
185
  msgid "Disabling this option will stop admin visits being tracked."
186
  msgstr ""
187
 
188
+ #: admin.inc.php:271
189
+ #, fuzzy
190
+ msgid "Track visits of Editors?"
191
+ msgstr "Track vizite de autori pe posturile lor proprii?"
192
+
193
+ #: admin.inc.php:273
194
+ msgid "Disabling this option will stop editor visits being tracked."
195
+ msgstr ""
196
+
197
+ #: admin.inc.php:276
198
  msgid "Display page views on Posts and Pages in Admin"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:279
202
  msgid ""
203
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
204
  "and All Pages"
205
  msgstr ""
206
 
207
+ #: admin.inc.php:282
208
  #, fuzzy
209
  msgid "Show number of views to non-admins"
210
  msgstr "Afişează numărul de vizualizări pe pagini?"
211
 
212
+ #: admin.inc.php:285
213
  msgid ""
214
  "If you disable this then non-admins won't see the above columns or view the "
215
  "independent pages with the top posts"
216
  msgstr ""
217
 
218
+ #: admin.inc.php:288
219
  msgid "Link to Top 10 plugin page"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:291
223
  #, fuzzy
224
  msgid ""
225
  "A link to the plugin is added as an extra list item to the list of popular "
228
  "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
229
  "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
230
 
231
+ #: admin.inc.php:298
232
  #, fuzzy
233
  msgid "Output options"
234
  msgstr "Opţiuni de ieşire:"
235
 
236
+ #: admin.inc.php:301
237
  #, fuzzy
238
  msgid "Format to display the post views:"
239
  msgstr "Format pentru a afişa numărul în: "
240
 
241
+ #: admin.inc.php:303
242
  #, fuzzy
243
  msgid ""
244
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
250
  "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
251
  "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
252
 
253
+ #: admin.inc.php:306
254
  msgid "What do display when there are no visits?"
255
  msgstr ""
256
 
257
+ #: admin.inc.php:308
258
  msgid ""
259
  "This text applies only when there are 0 hits for the post and it isn't a "
260
  "single page. e.g. if you display post views on the homepage or archives then "
262
  "option."
263
  msgstr ""
264
 
265
+ #: admin.inc.php:311
266
  msgid "Title of popular posts: "
267
  msgstr "Titlul de posturi populare: "
268
 
269
+ #: admin.inc.php:314
270
  msgid "Title of daily popular posts: "
271
  msgstr "Titlul de zi cu zi de posturi populare: "
272
 
273
+ #: admin.inc.php:317
274
  msgid "When there are no posts, what should be shown?"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:321
278
  msgid "Blank Output"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:325
282
  msgid "Display:"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:329
286
  msgid "Show post excerpt in list?"
287
  msgstr "Afişează post extras din lista?"
288
 
289
+ #: admin.inc.php:332
290
  msgid "Length of excerpt (in words): "
291
  msgstr "Lungimea extras (în cuvinte): "
292
 
293
+ #: admin.inc.php:335
294
  #, fuzzy
295
  msgid "Show post author in list?"
296
  msgstr "Afişează post extras din lista?"
297
 
298
+ #: admin.inc.php:338
299
  #, fuzzy
300
  msgid "Show post date in list?"
301
  msgstr "Afişează post extras din lista?"
302
 
303
+ #: admin.inc.php:341
304
  msgid "Limit post title length (in characters)"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:344
308
  #, fuzzy
309
  msgid "Show view count in list?"
310
  msgstr "Afişează post extras din lista?"
311
 
312
+ #: admin.inc.php:347
313
  msgid "Always display latest post count in the daily lists?"
314
  msgstr ""
315
 
316
+ #: admin.inc.php:349
317
  msgid ""
318
  "This option uses JavaScript and will increase your page load time. When you "
319
  "enable this option, the daily widget will not use the options set there, but "
320
  "options will need to be set on this screen."
321
  msgstr ""
322
 
323
+ #: admin.inc.php:352
324
  msgid "Open links in new window"
325
  msgstr ""
326
 
327
+ #: admin.inc.php:355
328
  msgid "Add nofollow attribute to links in the list"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:358
332
  msgid "Exclude display of related posts on these posts / pages"
333
  msgstr ""
334
 
335
+ #: admin.inc.php:364
336
  #, fuzzy
337
  msgid "Customise the list HTML"
338
  msgstr "Personaliza ieşire:"
339
 
340
+ #: admin.inc.php:366
341
  msgid "HTML to display before the list of posts: "
342
  msgstr "HTML pentru a afişa înainte de lista de posturi: "
343
 
344
+ #: admin.inc.php:369
345
  msgid "HTML to display before each list item: "
346
  msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
347
 
348
+ #: admin.inc.php:372
349
  msgid "HTML to display after each list item: "
350
  msgstr "HTML pentru a afişa după fiecare element din listă: "
351
 
352
+ #: admin.inc.php:375
353
  msgid "HTML to display after the list of posts: "
354
  msgstr "HTML pentru a afişa după lista de posturi: "
355
 
356
+ #: admin.inc.php:378
357
  msgid "Post thumbnail options:"
358
  msgstr "Post Opţiuni pictograme:"
359
 
360
+ #: admin.inc.php:380
361
  msgid "Location of post thumbnail:"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:384
365
  msgid "Display thumbnails inline with posts, before title"
366
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
367
 
368
+ #: admin.inc.php:388
369
  msgid "Display thumbnails inline with posts, after title"
370
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
371
 
372
+ #: admin.inc.php:392
373
  msgid "Display only thumbnails, no text"
374
  msgstr "Afişa numai miniaturi, nici un text"
375
 
376
+ #: admin.inc.php:396
377
  msgid "Do not display thumbnails, only text."
378
  msgstr "Nu se afişează miniaturi, numai textul."
379
 
380
+ #: admin.inc.php:400
381
  msgid "Width of the thumbnail: "
382
  msgstr ""
383
 
384
+ #: admin.inc.php:403
385
  msgid "Height of the thumbnail: "
386
  msgstr ""
387
 
388
+ #: admin.inc.php:406
389
  msgid "Style attributes / Width and Height HTML attributes:"
390
  msgstr ""
391
 
392
+ #: admin.inc.php:410
393
  msgid "Style attributes are used for width and height."
394
  msgstr ""
395
 
396
+ #: admin.inc.php:414
397
  msgid "HTML width and height attributes are used for width and height."
398
  msgstr ""
399
 
400
+ #: admin.inc.php:418
401
  msgid "Use timthumb to generate thumbnails? "
402
  msgstr ""
403
 
404
+ #: admin.inc.php:421
405
  msgid ""
406
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
407
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
408
  msgstr ""
409
 
410
+ #: admin.inc.php:424
411
+ msgid "Quality of thumbnails generated by timthumb:"
412
+ msgstr ""
413
+
414
+ #: admin.inc.php:427
415
+ msgid ""
416
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
417
+ "file size. Suggested maximum value is 95. Default is 75."
418
+ msgstr ""
419
+
420
+ #: admin.inc.php:430
421
  #, fuzzy
422
  msgid "Post thumbnail meta field name: "
423
  msgstr "Post Opţiuni pictograme:"
424
 
425
+ #: admin.inc.php:433
426
  msgid ""
427
  "The value of this field should contain the image source and is set in the "
428
  "<em>Add New Post</em> screen"
429
  msgstr ""
430
 
431
+ #: admin.inc.php:436
432
  #, fuzzy
433
  msgid ""
434
  "If the postmeta is not set, then should the plugin extract the first image "
439
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
440
  "fişier"
441
 
442
+ #: admin.inc.php:439
443
  #, fuzzy
444
  msgid ""
445
  "This could slow down the loading of your page if the first image in the "
450
  "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
451
  "fişier"
452
 
453
+ #: admin.inc.php:442
454
  msgid "Use default thumbnail? "
455
  msgstr ""
456
 
457
+ #: admin.inc.php:445
458
  msgid ""
459
  "If checked, when no thumbnail is found, show a default one from the URL "
460
  "below. If not checked and no thumbnail is found, no image will be shown."
463
  "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
464
  "thumbnail, imaginea nu va fi indicat."
465
 
466
+ #: admin.inc.php:448
467
  msgid "Default thumbnail: "
468
  msgstr ""
469
 
470
+ #: admin.inc.php:452
471
  msgid ""
472
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
473
  "then it will check the meta field. If this is not available, then it will "
474
  "show the default image as specified above"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:459
478
  msgid "Custom CSS"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:462
482
  msgid "Use default style included in the plugin?"
483
  msgstr ""
484
 
485
+ #: admin.inc.php:465
486
  msgid ""
487
  "Top 10 includes a default style that makes your popular posts list to look "
488
  "pretty. Check the box above if you want to use this. You will need to select "
490
  "Widget."
491
  msgstr ""
492
 
493
+ #: admin.inc.php:468
494
  msgid "Custom CSS to add to header:"
495
  msgstr ""
496
 
497
+ #: admin.inc.php:471
498
  msgid ""
499
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
500
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
501
  "available CSS classes to style."
502
  msgstr ""
503
 
504
+ #: admin.inc.php:478 admin.inc.php:544
505
  #, fuzzy
506
  msgid "Save Options"
507
  msgstr "Opţiuni:"
508
 
509
+ #: admin.inc.php:479
510
  #, fuzzy
511
  msgid "Default Options"
512
  msgstr "Opţiuni de ieşire:"
513
 
514
+ #: admin.inc.php:479
515
  msgid "Do you want to set options to Default?"
516
  msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
517
 
518
+ #: admin.inc.php:488
519
  msgid "Maintenance"
520
  msgstr ""
521
 
522
+ #: admin.inc.php:492
523
  msgid ""
524
  "Over time the Daily Top 10 database grows in size, which reduces the "
525
  "performance of the plugin. Cleaning the database at regular intervals could "
527
  "will automatically delete entries older than 90 days."
528
  msgstr ""
529
 
530
+ #: admin.inc.php:493
531
  msgid ""
532
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
533
  "everytime the job is rescheduled (i.e. you change the settings below)."
534
  msgstr ""
535
 
536
+ #: admin.inc.php:496
537
  msgid "Enable scheduled maintenance of daily tables:"
538
  msgstr ""
539
 
540
+ #: admin.inc.php:500
541
  msgid "Time to run maintenance"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:501
545
  msgid "hrs"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:501
549
  msgid "min"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:503
553
  msgid "How often should the maintenance be run:"
554
  msgstr ""
555
 
556
+ #: admin.inc.php:507
557
  msgid "Daily"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:511
561
  msgid "Weekly"
562
  msgstr ""
563
 
564
+ #: admin.inc.php:515
565
  msgid "Fortnightly"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:519
569
  msgid "Monthly"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:528
573
  msgid "The cron job has been scheduled. Maintenance will run "
574
  msgstr ""
575
 
576
+ #: admin.inc.php:533
577
  msgid "The cron job is missing. Please resave this page to add the job"
578
  msgstr ""
579
 
580
+ #: admin.inc.php:538
581
  msgid "Maintenance is turned off"
582
  msgstr ""
583
 
584
+ #: admin.inc.php:552
585
  msgid "Reset count"
586
  msgstr "Reiniţializare count"
587
 
588
+ #: admin.inc.php:555
589
  msgid ""
590
  "This cannot be reversed. Make sure that your database has been backed up "
591
  "before proceeding"
593
  "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
594
  "înainte de a continua"
595
 
596
+ #: admin.inc.php:558
597
  #, fuzzy
598
  msgid "Reset Popular Posts"
599
  msgstr "Posturi populare"
600
 
601
+ #: admin.inc.php:558
602
  msgid "Are you sure you want to reset the popular posts?"
603
  msgstr "Sigur reiniţializaţi posturi populare?"
604
 
605
+ #: admin.inc.php:559
606
  #, fuzzy
607
  msgid "Reset Daily Popular Posts"
608
  msgstr "Posturi populare de zi cu zi"
609
 
610
+ #: admin.inc.php:559
611
  msgid "Are you sure you want to reset the daily popular posts?"
612
  msgstr "Sigur reiniţializaţi posturi populare zilnic?"
613
 
614
+ #: admin.inc.php:560
615
  msgid "Clear duplicates"
616
  msgstr ""
617
 
618
+ #: admin.inc.php:560
619
  msgid "This will delete the duplicate entries in the tables. Proceed?"
620
  msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
621
 
622
+ #: admin.inc.php:612 admin.inc.php:1010
623
  msgid "Popular Posts"
624
  msgstr "Posturi populare"
625
 
626
+ #: admin.inc.php:614 admin.inc.php:713
627
  msgid "Daily Popular Posts"
628
  msgstr "Posturi populare de zi cu zi"
629
 
630
+ #: admin.inc.php:645
631
  msgid "Support the development"
632
  msgstr "Sprijinirea dezvoltării"
633
 
634
+ #: admin.inc.php:652
635
+ msgid "Donation for Top 10"
636
+ msgstr ""
637
+
638
+ #: admin.inc.php:654
639
  msgid "Enter amount in USD: "
640
  msgstr "Introduceţi valoarea în USD: "
641
 
642
+ #: admin.inc.php:658
643
+ #, fuzzy
644
+ msgid "Send your donation to the author of Top 10"
645
  msgstr "Trimite donatie autorului"
646
 
647
+ #: admin.inc.php:665
648
  msgid "Follow me"
649
  msgstr ""
650
 
651
+ #: admin.inc.php:675
652
  #, fuzzy
653
  msgid "Quick links"
654
  msgstr "Legături rapide pentru"
655
 
656
+ #: admin.inc.php:679
657
  #, fuzzy
658
  msgid "Top 10 plugin page"
659
  msgstr "plug-in pagina"
660
 
661
+ #: admin.inc.php:680
662
  msgid "Other plugins"
663
  msgstr "Alte plugin-uri"
664
 
665
+ #: admin.inc.php:681
666
  msgid "Ajay's blog"
667
  msgstr "Ajay's blog"
668
 
669
+ #: admin.inc.php:682
670
  msgid "FAQ"
671
  msgstr ""
672
 
673
+ #: admin.inc.php:683 top-10.php:1345
674
  msgid "Support"
675
  msgstr "Suport"
676
 
677
+ #: admin.inc.php:684
678
  msgid "Reviews"
679
  msgstr ""
680
 
681
+ #: admin.inc.php:704 admin.inc.php:707
682
  #, fuzzy
683
  msgid "Top 10 Settings"
684
  msgstr "Setări"
685
 
686
+ #: admin.inc.php:704 admin.inc.php:1183
687
  msgid "Top 10"
688
  msgstr "Top 10"
689
 
690
+ #: admin.inc.php:710
691
  #, fuzzy
692
  msgid "Overall Popular Posts"
693
  msgstr "Vedere de ansamblu posturi populare"
694
 
695
+ #: admin.inc.php:882
696
  #, php-format
697
  msgid "Results %1$s to %2$s of %3$s"
698
  msgstr ""
699
 
700
+ #: admin.inc.php:886
701
  #, php-format
702
  msgid "Page %s of %s"
703
  msgstr ""
704
 
705
+ #: admin.inc.php:898
706
  msgid "View Daily Popular Posts"
707
  msgstr "Vizualizare zi posturi populare"
708
 
709
+ #: admin.inc.php:901 admin.inc.php:914
710
  msgid "Results per-page:"
711
  msgstr "Rezultate pe pagină:"
712
 
713
+ #: admin.inc.php:911
714
  msgid "View Overall Popular Posts"
715
  msgstr "Vedere de ansamblu posturi populare"
716
 
717
+ #: admin.inc.php:940
718
  msgid "Previous"
719
  msgstr "Anterioară"
720
 
721
+ #: admin.inc.php:968
722
  msgid "Next"
723
  msgstr "Următorul"
724
 
725
+ #: admin.inc.php:1011
726
  msgid "Daily Popular"
727
  msgstr "Daily populare"
728
 
729
+ #: admin.inc.php:1029
730
  #, fuzzy
731
  msgid "Total Views"
732
  msgstr "Total / astăzi lui vizitări"
733
 
734
+ #: admin.inc.php:1030
735
  #, fuzzy
736
  msgid "Today's Views"
737
  msgstr "Total / astăzi lui vizitări"
738
 
739
+ #: admin.inc.php:1031
740
  #, fuzzy
741
  msgid "Views"
742
  msgstr "Total / astăzi lui vizitări"
743
 
744
+ #: admin.inc.php:1217
745
+ #, fuzzy
746
+ msgid "Visit count:"
747
+ msgstr "Reiniţializare count"
748
+
749
+ #: admin.inc.php:1219
750
+ msgid ""
751
+ "Enter a number above to update the visit count. Leaving the above box blank "
752
+ "will set the count to zero"
753
  msgstr ""
754
 
755
+ #: admin.inc.php:1229
756
+ msgid "Location of thumbnail:"
757
+ msgstr ""
758
 
759
+ #: admin.inc.php:1231
760
+ msgid ""
761
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
762
+ "image will be used for the post. It will be resized to the thumbnail size "
763
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
764
+ msgstr ""
765
+
766
+ #: admin.inc.php:1232
767
+ msgid "The URL above is saved in the meta field: "
768
+ msgstr ""
769
+
770
+ #: top-10.php:456
771
+ msgid " by "
772
+ msgstr ""
773
+
774
+ #: top-10.php:550
775
  #, fuzzy
776
  msgid "Popular Posts [Top 10]"
777
  msgstr "Posturi populare"
778
 
779
+ #: top-10.php:551
780
+ #, fuzzy
781
+ msgid "Display popular posts"
782
+ msgstr "Posturi populare de zi cu zi"
783
+
784
+ #: top-10.php:577
785
  msgid "Title"
786
  msgstr ""
787
 
788
+ #: top-10.php:582
789
  msgid "No. of posts"
790
  msgstr ""
791
 
792
+ #: top-10.php:587
793
  msgid "Overall"
794
  msgstr ""
795
 
796
+ #: top-10.php:588
797
  msgid "Custom time period (Enter below)"
798
  msgstr ""
799
 
800
+ #: top-10.php:593
801
  msgid "Range in number of days (applies only to custom option above)"
802
  msgstr ""
803
 
804
+ #: top-10.php:598
805
  #, fuzzy
806
+ msgid "Show count?"
807
  msgstr "Afişează post extras din lista?"
808
 
809
+ #: top-10.php:603
810
  #, fuzzy
811
+ msgid "Show excerpt?"
812
  msgstr "Afişează post extras din lista?"
813
 
814
+ #: top-10.php:608
815
+ #, fuzzy
816
+ msgid "Show author?"
817
+ msgstr "Afişează post extras din lista?"
818
 
819
+ #: top-10.php:613
820
  #, fuzzy
821
+ msgid "Show date?"
822
  msgstr "Afişează post extras din lista?"
823
 
824
+ #: top-10.php:617
825
  #, fuzzy
826
  msgid "Thumbnail options"
827
  msgstr "Post Opţiuni pictograme:"
828
 
829
+ #: top-10.php:619
830
  #, fuzzy
831
  msgid "Thumbnails inline, before title"
832
  msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
833
 
834
+ #: top-10.php:620
835
  #, fuzzy
836
  msgid "Thumbnails inline, after title"
837
  msgstr "Afişare miniaturi inline cu posturi, după titlul"
838
 
839
+ #: top-10.php:621
840
  #, fuzzy
841
  msgid "Only thumbnails, no text"
842
  msgstr "Afişa numai miniaturi, nici un text"
843
 
844
+ #: top-10.php:622
845
  #, fuzzy
846
  msgid "No thumbnails, only text."
847
  msgstr "Nu se afişează miniaturi, numai textul."
848
 
849
+ #: top-10.php:627
850
  #, fuzzy
851
  msgid "Thumbnail height"
852
  msgstr "Post Opţiuni pictograme:"
853
 
854
+ #: top-10.php:632
855
  #, fuzzy
856
  msgid "Thumbnail width"
857
  msgstr "Post Opţiuni pictograme:"
858
 
859
+ #: top-10.php:772
860
  msgid "<h3>Popular Posts</h3>"
861
  msgstr "<h3>Posturi populare</h3>"
862
 
863
+ #: top-10.php:773
864
  msgid "<h3>Daily Popular</h3>"
865
  msgstr "<h3>Daily populare</h3>"
866
 
867
+ #: top-10.php:774
868
  #, fuzzy
869
  msgid "No top posts yet"
870
  msgstr "Top 10 populare posturi Resetare"
871
 
872
+ #: top-10.php:1245
873
  msgid "Once Weekly"
874
  msgstr ""
875
 
876
+ #: top-10.php:1249
877
  msgid "Once Fortnightly"
878
  msgstr ""
879
 
880
+ #: top-10.php:1253
881
  msgid "Once Monthly"
882
  msgstr ""
883
 
884
+ #: top-10.php:1323
885
  msgid "Settings"
886
  msgstr "Setări"
887
 
888
+ #: top-10.php:1346
889
  msgid "Donate"
890
  msgstr "Dona"
891
 
892
+ #~ msgid "Display the posts popular this week"
893
+ #~ msgstr "Afişa posturi populare în această săptămână"
894
+
895
  #, fuzzy
896
  #~ msgid "This option uses JavaScript and will increase your page load time"
897
  #~ msgstr ""
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
@@ -12,201 +12,215 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Количество Популярных записей в списке:"
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
83
 
84
- #: admin.inc.php:200
85
  msgid ""
86
  "Instead of displaying popular posts fromt he past day, this setting lets you "
87
  "display posts for as many days as you want. This can be overridden in the "
88
  "widget."
89
  msgstr ""
90
 
91
- #: admin.inc.php:203
92
  msgid "Post types to include in results (including custom post types)"
93
  msgstr ""
94
 
95
- #: admin.inc.php:214
96
  msgid "List of post or page IDs to exclude from the results: "
97
  msgstr ""
98
 
99
- #: admin.inc.php:216 admin.inc.php:352
100
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
101
  msgstr ""
102
 
103
- #: admin.inc.php:220
104
  msgid "Exclude Categories: "
105
  msgstr "Исключить рубрики:"
106
 
107
- #: admin.inc.php:235
108
  msgid ""
109
  "Comma separated list of category slugs. The field above has an autocomplete "
110
  "so simply start typing in the starting letters and it will prompt you with "
111
  "options"
112
  msgstr ""
113
 
114
- #: admin.inc.php:240
115
  #, fuzzy
116
  msgid "Display number of views on:"
117
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
118
 
119
- #: admin.inc.php:242
120
  msgid "Posts"
121
  msgstr ""
122
 
123
- #: admin.inc.php:243
124
  #, fuzzy
125
  msgid "Pages"
126
  msgstr "Страница"
127
 
128
- #: admin.inc.php:244
129
  msgid "Home page"
130
  msgstr ""
131
 
132
- #: admin.inc.php:245
133
  msgid "Feeds"
134
  msgstr ""
135
 
136
- #: admin.inc.php:246
137
  msgid "Category archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:247
141
  msgid "Tag archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:248
145
  msgid "Other archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:249
149
  msgid ""
150
- "If you choose to disable this, please add <code>&lt;?php "
151
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
152
- "template file where you want it displayed"
153
  msgstr ""
154
 
155
- #: admin.inc.php:252
156
  msgid "Always display latest post count"
157
  msgstr ""
158
 
159
- #: admin.inc.php:254
160
  msgid ""
161
  "This option uses JavaScript and will increase your page load time. Turn this "
162
  "off if you are not using caching plugins or are OK with displaying older "
163
  "cached counts."
164
  msgstr ""
165
 
166
- #: admin.inc.php:257
167
  msgid "Track visits of authors on their own posts?"
168
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
169
 
170
- #: admin.inc.php:259
171
  msgid ""
172
  "Disabling this option will stop authors visits tracked on their own posts"
173
  msgstr ""
174
 
175
- #: admin.inc.php:262
176
  #, fuzzy
177
  msgid "Track visits of admins?"
178
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
179
 
180
- #: admin.inc.php:264
181
  msgid "Disabling this option will stop admin visits being tracked."
182
  msgstr ""
183
 
184
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
185
  msgid "Display page views on Posts and Pages in Admin"
186
  msgstr ""
187
 
188
- #: admin.inc.php:270
189
  msgid ""
190
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
191
  "and All Pages"
192
  msgstr ""
193
 
194
- #: admin.inc.php:273
195
  #, fuzzy
196
  msgid "Show number of views to non-admins"
197
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
198
 
199
- #: admin.inc.php:276
200
  msgid ""
201
  "If you disable this then non-admins won't see the above columns or view the "
202
  "independent pages with the top posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:279
206
  msgid "Link to Top 10 plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:282
210
  #, fuzzy
211
  msgid ""
212
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -215,19 +229,19 @@ msgstr ""
215
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
216
  "бы очень благодарен Вам, если Вы ее все же оставите!"
217
 
218
- #: admin.inc.php:289
219
  #, fuzzy
220
  msgid "Output options"
221
  msgstr "Настройки плагина:"
222
 
223
- #: admin.inc.php:292
224
  #, fuzzy
225
  msgid "Format to display the post views:"
226
  msgstr ""
227
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
228
  "день, за все время для записей/страниц:"
229
 
230
- #: admin.inc.php:294
231
  #, fuzzy
232
  msgid ""
233
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -239,11 +253,11 @@ msgstr ""
239
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
240
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
241
 
242
- #: admin.inc.php:297
243
  msgid "What do display when there are no visits?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:299
247
  msgid ""
248
  "This text applies only when there are 0 hits for the post and it isn't a "
249
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -251,163 +265,173 @@ msgid ""
251
  "option."
252
  msgstr ""
253
 
254
- #: admin.inc.php:302
255
  msgid "Title of popular posts: "
256
  msgstr "Заголовок списка Популярных записей:"
257
 
258
- #: admin.inc.php:305
259
  msgid "Title of daily popular posts: "
260
  msgstr "Заголовок списка Популярных сегодня записей:"
261
 
262
- #: admin.inc.php:308
263
  msgid "When there are no posts, what should be shown?"
264
  msgstr ""
265
 
266
- #: admin.inc.php:312
267
  msgid "Blank Output"
268
  msgstr ""
269
 
270
- #: admin.inc.php:316
271
  msgid "Display:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:320
275
  msgid "Show post excerpt in list?"
276
  msgstr "Показывать текст записи в списке?"
277
 
278
- #: admin.inc.php:323
279
  msgid "Length of excerpt (in words): "
280
  msgstr "Длина выводимого текста (в словах):"
281
 
282
- #: admin.inc.php:326
283
  #, fuzzy
284
  msgid "Show post author in list?"
285
  msgstr "Показывать текст записи в списке?"
286
 
287
- #: admin.inc.php:329
288
  #, fuzzy
289
  msgid "Show post date in list?"
290
  msgstr "Показывать текст записи в списке?"
291
 
292
- #: admin.inc.php:332
293
  msgid "Limit post title length (in characters)"
294
  msgstr ""
295
 
296
- #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show view count in list?"
299
  msgstr "Показывать текст записи в списке?"
300
 
301
- #: admin.inc.php:338
302
  msgid "Always display latest post count in the daily lists?"
303
  msgstr ""
304
 
305
- #: admin.inc.php:340
306
  msgid ""
307
  "This option uses JavaScript and will increase your page load time. When you "
308
  "enable this option, the daily widget will not use the options set there, but "
309
  "options will need to be set on this screen."
310
  msgstr ""
311
 
312
- #: admin.inc.php:343
313
  msgid "Open links in new window"
314
  msgstr ""
315
 
316
- #: admin.inc.php:346
317
  msgid "Add nofollow attribute to links in the list"
318
  msgstr ""
319
 
320
- #: admin.inc.php:349
321
  msgid "Exclude display of related posts on these posts / pages"
322
  msgstr ""
323
 
324
- #: admin.inc.php:355
325
  #, fuzzy
326
  msgid "Customise the list HTML"
327
  msgstr "Настройки оформления списка:"
328
 
329
- #: admin.inc.php:357
330
  msgid "HTML to display before the list of posts: "
331
  msgstr "HTML-тег, используемый перед списком:"
332
 
333
- #: admin.inc.php:360
334
  msgid "HTML to display before each list item: "
335
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
336
 
337
- #: admin.inc.php:363
338
  msgid "HTML to display after each list item: "
339
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
340
 
341
- #: admin.inc.php:366
342
  msgid "HTML to display after the list of posts: "
343
  msgstr "HTML-тег, используемый после списка:"
344
 
345
- #: admin.inc.php:369
346
  msgid "Post thumbnail options:"
347
  msgstr "Настройки превью к записям:"
348
 
349
- #: admin.inc.php:371
350
  msgid "Location of post thumbnail:"
351
  msgstr ""
352
 
353
- #: admin.inc.php:375
354
  msgid "Display thumbnails inline with posts, before title"
355
  msgstr "Отображать превью к записи сразу перед заголовком"
356
 
357
- #: admin.inc.php:379
358
  msgid "Display thumbnails inline with posts, after title"
359
  msgstr "Отображать превью к записи сразу после заголовка"
360
 
361
- #: admin.inc.php:383
362
  msgid "Display only thumbnails, no text"
363
  msgstr "Отображать только превью, без текста"
364
 
365
- #: admin.inc.php:387
366
  msgid "Do not display thumbnails, only text."
367
  msgstr "Отображать только текст, без превью"
368
 
369
- #: admin.inc.php:391
370
  msgid "Width of the thumbnail: "
371
  msgstr ""
372
 
373
- #: admin.inc.php:394
374
  msgid "Height of the thumbnail: "
375
  msgstr ""
376
 
377
- #: admin.inc.php:397
378
  msgid "Style attributes / Width and Height HTML attributes:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:401
382
  msgid "Style attributes are used for width and height."
383
  msgstr ""
384
 
385
- #: admin.inc.php:405
386
  msgid "HTML width and height attributes are used for width and height."
387
  msgstr ""
388
 
389
- #: admin.inc.php:409
390
  msgid "Use timthumb to generate thumbnails? "
391
  msgstr ""
392
 
393
- #: admin.inc.php:412
394
  msgid ""
395
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
396
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
397
  msgstr ""
398
 
399
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
400
  #, fuzzy
401
  msgid "Post thumbnail meta field name: "
402
  msgstr "Настройки превью к записям:"
403
 
404
- #: admin.inc.php:418
405
  msgid ""
406
  "The value of this field should contain the image source and is set in the "
407
  "<em>Add New Post</em> screen"
408
  msgstr ""
409
 
410
- #: admin.inc.php:421
411
  #, fuzzy
412
  msgid ""
413
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -417,7 +441,7 @@ msgstr ""
417
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
418
  "как будет создаваться уменьшенная копия изображения"
419
 
420
- #: admin.inc.php:424
421
  #, fuzzy
422
  msgid ""
423
  "This could slow down the loading of your page if the first image in the "
@@ -427,11 +451,11 @@ msgstr ""
427
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
428
  "как будет создаваться уменьшенная копия изображения"
429
 
430
- #: admin.inc.php:427
431
  msgid "Use default thumbnail? "
432
  msgstr ""
433
 
434
- #: admin.inc.php:430
435
  msgid ""
436
  "If checked, when no thumbnail is found, show a default one from the URL "
437
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -440,11 +464,11 @@ msgstr ""
440
  "добавлено стандартное изображение. Если превью задано к записи - будет "
441
  "отображаться только оно."
442
 
443
- #: admin.inc.php:433
444
  msgid "Default thumbnail: "
445
  msgstr ""
446
 
447
- #: admin.inc.php:437
448
  #, fuzzy
449
  msgid ""
450
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -455,15 +479,15 @@ msgstr ""
455
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
456
  "выводиться картинка по-умолчанию:"
457
 
458
- #: admin.inc.php:444
459
  msgid "Custom CSS"
460
  msgstr ""
461
 
462
- #: admin.inc.php:447
463
  msgid "Use default style included in the plugin?"
464
  msgstr ""
465
 
466
- #: admin.inc.php:450
467
  msgid ""
468
  "Top 10 includes a default style that makes your popular posts list to look "
469
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -471,36 +495,36 @@ msgid ""
471
  "Widget."
472
  msgstr ""
473
 
474
- #: admin.inc.php:453
475
  msgid "Custom CSS to add to header:"
476
  msgstr ""
477
 
478
- #: admin.inc.php:456
479
  msgid ""
480
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
481
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
482
  "available CSS classes to style."
483
  msgstr ""
484
 
485
- #: admin.inc.php:463 admin.inc.php:529
486
  #, fuzzy
487
  msgid "Save Options"
488
  msgstr "Настройки плагина:"
489
 
490
- #: admin.inc.php:464
491
  #, fuzzy
492
  msgid "Default Options"
493
  msgstr "Настройки плагина:"
494
 
495
- #: admin.inc.php:464
496
  msgid "Do you want to set options to Default?"
497
  msgstr "Сбросить настройки плагина?"
498
 
499
- #: admin.inc.php:473
500
  msgid "Maintenance"
501
  msgstr ""
502
 
503
- #: admin.inc.php:477
504
  msgid ""
505
  "Over time the Daily Top 10 database grows in size, which reduces the "
506
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -508,65 +532,65 @@ msgid ""
508
  "will automatically delete entries older than 90 days."
509
  msgstr ""
510
 
511
- #: admin.inc.php:478
512
  msgid ""
513
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
514
  "everytime the job is rescheduled (i.e. you change the settings below)."
515
  msgstr ""
516
 
517
- #: admin.inc.php:481
518
  msgid "Enable scheduled maintenance of daily tables:"
519
  msgstr ""
520
 
521
- #: admin.inc.php:485
522
  msgid "Time to run maintenance"
523
  msgstr ""
524
 
525
- #: admin.inc.php:486
526
  msgid "hrs"
527
  msgstr ""
528
 
529
- #: admin.inc.php:486
530
  msgid "min"
531
  msgstr ""
532
 
533
- #: admin.inc.php:488
534
  msgid "How often should the maintenance be run:"
535
  msgstr ""
536
 
537
- #: admin.inc.php:492
538
  msgid "Daily"
539
  msgstr ""
540
 
541
- #: admin.inc.php:496
542
  msgid "Weekly"
543
  msgstr ""
544
 
545
- #: admin.inc.php:500
546
  msgid "Fortnightly"
547
  msgstr ""
548
 
549
- #: admin.inc.php:504
550
  msgid "Monthly"
551
  msgstr ""
552
 
553
- #: admin.inc.php:513
554
  msgid "The cron job has been scheduled. Maintenance will run "
555
  msgstr ""
556
 
557
- #: admin.inc.php:518
558
  msgid "The cron job is missing. Please resave this page to add the job"
559
  msgstr ""
560
 
561
- #: admin.inc.php:523
562
  msgid "Maintenance is turned off"
563
  msgstr ""
564
 
565
- #: admin.inc.php:537
566
  msgid "Reset count"
567
  msgstr "Сбросить статистику"
568
 
569
- #: admin.inc.php:540
570
  msgid ""
571
  "This cannot be reversed. Make sure that your database has been backed up "
572
  "before proceeding"
@@ -574,271 +598,307 @@ msgstr ""
574
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
575
  "убедитесь, что у вас есть копия вашей базы данных!"
576
 
577
- #: admin.inc.php:543
578
  #, fuzzy
579
  msgid "Reset Popular Posts"
580
  msgstr "Популярные записи"
581
 
582
- #: admin.inc.php:543
583
  msgid "Are you sure you want to reset the popular posts?"
584
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
585
 
586
- #: admin.inc.php:544
587
  #, fuzzy
588
  msgid "Reset Daily Popular Posts"
589
  msgstr "Популярные сегодня записи"
590
 
591
- #: admin.inc.php:544
592
  msgid "Are you sure you want to reset the daily popular posts?"
593
  msgstr ""
594
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
595
 
596
- #: admin.inc.php:545
597
  msgid "Clear duplicates"
598
  msgstr ""
599
 
600
- #: admin.inc.php:545
601
  msgid "This will delete the duplicate entries in the tables. Proceed?"
602
  msgstr ""
603
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
604
 
605
- #: admin.inc.php:593 admin.inc.php:979
606
  msgid "Popular Posts"
607
  msgstr "Популярные записи"
608
 
609
- #: admin.inc.php:593 admin.inc.php:688
610
  msgid "Daily Popular Posts"
611
  msgstr "Популярные сегодня записи"
612
 
613
- #: admin.inc.php:621
614
  msgid "Support the development"
615
  msgstr "Поддержать автора плагина"
616
 
617
- #: admin.inc.php:630
 
 
 
 
618
  msgid "Enter amount in USD: "
619
  msgstr "Сколько вы готовы пожертвовать (в USD):"
620
 
621
- #: admin.inc.php:634
622
- msgid "Send your donation to the author of"
 
623
  msgstr "Отправьте пожертвование автору"
624
 
625
- #: admin.inc.php:641
626
  msgid "Follow me"
627
  msgstr ""
628
 
629
- #: admin.inc.php:651
630
  #, fuzzy
631
  msgid "Quick links"
632
  msgstr "Полезные ссылки"
633
 
634
- #: admin.inc.php:655
635
  #, fuzzy
636
  msgid "Top 10 plugin page"
637
  msgstr "страница плагина"
638
 
639
- #: admin.inc.php:656
640
  msgid "Other plugins"
641
  msgstr "Другие плагины автора"
642
 
643
- #: admin.inc.php:657
644
  msgid "Ajay's blog"
645
  msgstr "Блог Ajay"
646
 
647
- #: admin.inc.php:658
648
  msgid "FAQ"
649
  msgstr ""
650
 
651
- #: admin.inc.php:659 top-10.php:1267
652
  msgid "Support"
653
  msgstr "Поддержка (англ.)"
654
 
655
- #: admin.inc.php:660
656
  msgid "Reviews"
657
  msgstr ""
658
 
659
- #: admin.inc.php:679 admin.inc.php:682
660
  #, fuzzy
661
  msgid "Top 10 Settings"
662
  msgstr "Настроки плагина"
663
 
664
- #: admin.inc.php:679
665
  msgid "Top 10"
666
  msgstr "Топ 10 записей"
667
 
668
- #: admin.inc.php:685
669
  #, fuzzy
670
  msgid "Overall Popular Posts"
671
  msgstr "Посмотреть все Популярные записи"
672
 
673
- #: admin.inc.php:850
674
  #, php-format
675
  msgid "Results %1$s to %2$s of %3$s"
676
  msgstr ""
677
 
678
- #: admin.inc.php:854
679
  #, php-format
680
  msgid "Page %s of %s"
681
  msgstr ""
682
 
683
- #: admin.inc.php:866
684
  msgid "View Daily Popular Posts"
685
  msgstr "Посмотреть все Популярные сегодня записи"
686
 
687
- #: admin.inc.php:869 admin.inc.php:882
688
  msgid "Results per-page:"
689
  msgstr "Результатов на страницу:"
690
 
691
- #: admin.inc.php:879
692
  msgid "View Overall Popular Posts"
693
  msgstr "Посмотреть все Популярные записи"
694
 
695
- #: admin.inc.php:908
696
  msgid "Previous"
697
  msgstr "Предыдущая страница"
698
 
699
- #: admin.inc.php:936
700
  msgid "Next"
701
  msgstr "Следующая страница"
702
 
703
- #: admin.inc.php:980
704
  msgid "Daily Popular"
705
  msgstr "Популярные сегодня записи"
706
 
707
- #: admin.inc.php:998
708
  #, fuzzy
709
  msgid "Total Views"
710
  msgstr "Всего/Сегодня"
711
 
712
- #: admin.inc.php:999
713
  #, fuzzy
714
  msgid "Today's Views"
715
  msgstr "Всего/Сегодня"
716
 
717
- #: admin.inc.php:1000
718
  #, fuzzy
719
  msgid "Views"
720
  msgstr "Всего/Сегодня"
721
 
722
- #: top-10.php:438
723
- msgid " by "
 
 
 
 
 
 
 
724
  msgstr ""
725
 
726
- #: top-10.php:524
727
- msgid "Display the posts popular this week"
728
- msgstr "Отображать списки популярных записей за неделю"
729
 
730
- #: top-10.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  #, fuzzy
732
  msgid "Popular Posts [Top 10]"
733
  msgstr "Популярные записи"
734
 
735
- #: top-10.php:543
 
 
 
 
 
736
  msgid "Title"
737
  msgstr ""
738
 
739
- #: top-10.php:548
740
  msgid "No. of posts"
741
  msgstr ""
742
 
743
- #: top-10.php:553
744
  msgid "Overall"
745
  msgstr ""
746
 
747
- #: top-10.php:554
748
  msgid "Custom time period (Enter below)"
749
  msgstr ""
750
 
751
- #: top-10.php:559
752
  msgid "Range in number of days (applies only to custom option above)"
753
  msgstr ""
754
 
755
- #: top-10.php:564
756
  #, fuzzy
757
- msgid " Show count?"
758
  msgstr "Показывать текст записи в списке?"
759
 
760
- #: top-10.php:569
761
  #, fuzzy
762
- msgid " Show excerpt?"
763
  msgstr "Показывать текст записи в списке?"
764
 
765
- #: top-10.php:574
766
- msgid " Show author?"
767
- msgstr ""
 
768
 
769
- #: top-10.php:579
770
  #, fuzzy
771
- msgid " Show date?"
772
  msgstr "Показывать текст записи в списке?"
773
 
774
- #: top-10.php:583
775
  #, fuzzy
776
  msgid "Thumbnail options"
777
  msgstr "Настройки превью к записям:"
778
 
779
- #: top-10.php:585
780
  #, fuzzy
781
  msgid "Thumbnails inline, before title"
782
  msgstr "Отображать превью к записи сразу перед заголовком"
783
 
784
- #: top-10.php:586
785
  #, fuzzy
786
  msgid "Thumbnails inline, after title"
787
  msgstr "Отображать превью к записи сразу после заголовка"
788
 
789
- #: top-10.php:587
790
  #, fuzzy
791
  msgid "Only thumbnails, no text"
792
  msgstr "Отображать только превью, без текста"
793
 
794
- #: top-10.php:588
795
  #, fuzzy
796
  msgid "No thumbnails, only text."
797
  msgstr "Отображать только текст, без превью"
798
 
799
- #: top-10.php:593
800
  #, fuzzy
801
  msgid "Thumbnail height"
802
  msgstr "Настройки превью к записям:"
803
 
804
- #: top-10.php:598
805
  #, fuzzy
806
  msgid "Thumbnail width"
807
  msgstr "Настройки превью к записям:"
808
 
809
- #: top-10.php:719
810
  msgid "<h3>Popular Posts</h3>"
811
  msgstr "<h3>Популярные записи</h3>"
812
 
813
- #: top-10.php:720
814
  msgid "<h3>Daily Popular</h3>"
815
  msgstr "<h3>Популярные сегодня записи</h3>"
816
 
817
- #: top-10.php:721
818
  #, fuzzy
819
  msgid "No top posts yet"
820
  msgstr "Сбросить статистику популярных записей"
821
 
822
- #: top-10.php:1184
823
  msgid "Once Weekly"
824
  msgstr ""
825
 
826
- #: top-10.php:1188
827
  msgid "Once Fortnightly"
828
  msgstr ""
829
 
830
- #: top-10.php:1192
831
  msgid "Once Monthly"
832
  msgstr ""
833
 
834
- #: top-10.php:1255
835
  msgid "Settings"
836
  msgstr "Настроки плагина"
837
 
838
- #: top-10.php:1268
839
  msgid "Donate"
840
  msgstr "Сделать пожертвование"
841
 
 
 
 
842
  #, fuzzy
843
  #~ msgid "This option uses JavaScript and will increase your page load time"
844
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Количество Популярных записей в списке:"
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
88
 
89
+ #: admin.inc.php:204
90
  msgid ""
91
  "Instead of displaying popular posts fromt he past day, this setting lets you "
92
  "display posts for as many days as you want. This can be overridden in the "
93
  "widget."
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:218
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
+ #: admin.inc.php:220 admin.inc.php:361
105
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:224
109
  msgid "Exclude Categories: "
110
  msgstr "Исключить рубрики:"
111
 
112
+ #: admin.inc.php:239
113
  msgid ""
114
  "Comma separated list of category slugs. The field above has an autocomplete "
115
  "so simply start typing in the starting letters and it will prompt you with "
116
  "options"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:244
120
  #, fuzzy
121
  msgid "Display number of views on:"
122
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
123
 
124
+ #: admin.inc.php:246
125
  msgid "Posts"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:247
129
  #, fuzzy
130
  msgid "Pages"
131
  msgstr "Страница"
132
 
133
+ #: admin.inc.php:248
134
  msgid "Home page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:249
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:250
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:251
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:252
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:253
154
  msgid ""
155
+ "If you choose to disable this, please add <code>&lt;?php if "
156
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
157
+ "</code> to your template file where you want it displayed"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:256
161
  msgid "Always display latest post count"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:258
165
  msgid ""
166
  "This option uses JavaScript and will increase your page load time. Turn this "
167
  "off if you are not using caching plugins or are OK with displaying older "
168
  "cached counts."
169
  msgstr ""
170
 
171
+ #: admin.inc.php:261
172
  msgid "Track visits of authors on their own posts?"
173
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
174
 
175
+ #: admin.inc.php:263
176
  msgid ""
177
  "Disabling this option will stop authors visits tracked on their own posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid "Track visits of admins?"
183
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
184
 
185
+ #: admin.inc.php:268
186
  msgid "Disabling this option will stop admin visits being tracked."
187
  msgstr ""
188
 
189
+ #: admin.inc.php:271
190
+ #, fuzzy
191
+ msgid "Track visits of Editors?"
192
+ msgstr "Учитывать просмотры записей, сделанные их же авторами?"
193
+
194
+ #: admin.inc.php:273
195
+ msgid "Disabling this option will stop editor visits being tracked."
196
+ msgstr ""
197
+
198
+ #: admin.inc.php:276
199
  msgid "Display page views on Posts and Pages in Admin"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:279
203
  msgid ""
204
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
205
  "and All Pages"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:282
209
  #, fuzzy
210
  msgid "Show number of views to non-admins"
211
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
212
 
213
+ #: admin.inc.php:285
214
  msgid ""
215
  "If you disable this then non-admins won't see the above columns or view the "
216
  "independent pages with the top posts"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:288
220
  msgid "Link to Top 10 plugin page"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  #, fuzzy
225
  msgid ""
226
  "A link to the plugin is added as an extra list item to the list of popular "
229
  "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
230
  "бы очень благодарен Вам, если Вы ее все же оставите!"
231
 
232
+ #: admin.inc.php:298
233
  #, fuzzy
234
  msgid "Output options"
235
  msgstr "Настройки плагина:"
236
 
237
+ #: admin.inc.php:301
238
  #, fuzzy
239
  msgid "Format to display the post views:"
240
  msgstr ""
241
  "В поле ниже вы можете настроить формат отображения количества просмотров за "
242
  "день, за все время для записей/страниц:"
243
 
244
+ #: admin.inc.php:303
245
  #, fuzzy
246
  msgid ""
247
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
254
  "просмотрена 123 раза, сегодня просмотров было 23)</code>."
255
 
256
+ #: admin.inc.php:306
257
  msgid "What do display when there are no visits?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:308
261
  msgid ""
262
  "This text applies only when there are 0 hits for the post and it isn't a "
263
  "single page. e.g. if you display post views on the homepage or archives then "
265
  "option."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:311
269
  msgid "Title of popular posts: "
270
  msgstr "Заголовок списка Популярных записей:"
271
 
272
+ #: admin.inc.php:314
273
  msgid "Title of daily popular posts: "
274
  msgstr "Заголовок списка Популярных сегодня записей:"
275
 
276
+ #: admin.inc.php:317
277
  msgid "When there are no posts, what should be shown?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Blank Output"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:325
285
  msgid "Display:"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:329
289
  msgid "Show post excerpt in list?"
290
  msgstr "Показывать текст записи в списке?"
291
 
292
+ #: admin.inc.php:332
293
  msgid "Length of excerpt (in words): "
294
  msgstr "Длина выводимого текста (в словах):"
295
 
296
+ #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show post author in list?"
299
  msgstr "Показывать текст записи в списке?"
300
 
301
+ #: admin.inc.php:338
302
  #, fuzzy
303
  msgid "Show post date in list?"
304
  msgstr "Показывать текст записи в списке?"
305
 
306
+ #: admin.inc.php:341
307
  msgid "Limit post title length (in characters)"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:344
311
  #, fuzzy
312
  msgid "Show view count in list?"
313
  msgstr "Показывать текст записи в списке?"
314
 
315
+ #: admin.inc.php:347
316
  msgid "Always display latest post count in the daily lists?"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:349
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. When you "
322
  "enable this option, the daily widget will not use the options set there, but "
323
  "options will need to be set on this screen."
324
  msgstr ""
325
 
326
+ #: admin.inc.php:352
327
  msgid "Open links in new window"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:355
331
  msgid "Add nofollow attribute to links in the list"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:358
335
  msgid "Exclude display of related posts on these posts / pages"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:364
339
  #, fuzzy
340
  msgid "Customise the list HTML"
341
  msgstr "Настройки оформления списка:"
342
 
343
+ #: admin.inc.php:366
344
  msgid "HTML to display before the list of posts: "
345
  msgstr "HTML-тег, используемый перед списком:"
346
 
347
+ #: admin.inc.php:369
348
  msgid "HTML to display before each list item: "
349
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
350
 
351
+ #: admin.inc.php:372
352
  msgid "HTML to display after each list item: "
353
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
354
 
355
+ #: admin.inc.php:375
356
  msgid "HTML to display after the list of posts: "
357
  msgstr "HTML-тег, используемый после списка:"
358
 
359
+ #: admin.inc.php:378
360
  msgid "Post thumbnail options:"
361
  msgstr "Настройки превью к записям:"
362
 
363
+ #: admin.inc.php:380
364
  msgid "Location of post thumbnail:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:384
368
  msgid "Display thumbnails inline with posts, before title"
369
  msgstr "Отображать превью к записи сразу перед заголовком"
370
 
371
+ #: admin.inc.php:388
372
  msgid "Display thumbnails inline with posts, after title"
373
  msgstr "Отображать превью к записи сразу после заголовка"
374
 
375
+ #: admin.inc.php:392
376
  msgid "Display only thumbnails, no text"
377
  msgstr "Отображать только превью, без текста"
378
 
379
+ #: admin.inc.php:396
380
  msgid "Do not display thumbnails, only text."
381
  msgstr "Отображать только текст, без превью"
382
 
383
+ #: admin.inc.php:400
384
  msgid "Width of the thumbnail: "
385
  msgstr ""
386
 
387
+ #: admin.inc.php:403
388
  msgid "Height of the thumbnail: "
389
  msgstr ""
390
 
391
+ #: admin.inc.php:406
392
  msgid "Style attributes / Width and Height HTML attributes:"
393
  msgstr ""
394
 
395
+ #: admin.inc.php:410
396
  msgid "Style attributes are used for width and height."
397
  msgstr ""
398
 
399
+ #: admin.inc.php:414
400
  msgid "HTML width and height attributes are used for width and height."
401
  msgstr ""
402
 
403
+ #: admin.inc.php:418
404
  msgid "Use timthumb to generate thumbnails? "
405
  msgstr ""
406
 
407
+ #: admin.inc.php:421
408
  msgid ""
409
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
410
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
411
  msgstr ""
412
 
413
+ #: admin.inc.php:424
414
+ msgid "Quality of thumbnails generated by timthumb:"
415
+ msgstr ""
416
+
417
+ #: admin.inc.php:427
418
+ msgid ""
419
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
420
+ "file size. Suggested maximum value is 95. Default is 75."
421
+ msgstr ""
422
+
423
+ #: admin.inc.php:430
424
  #, fuzzy
425
  msgid "Post thumbnail meta field name: "
426
  msgstr "Настройки превью к записям:"
427
 
428
+ #: admin.inc.php:433
429
  msgid ""
430
  "The value of this field should contain the image source and is set in the "
431
  "<em>Add New Post</em> screen"
432
  msgstr ""
433
 
434
+ #: admin.inc.php:436
435
  #, fuzzy
436
  msgid ""
437
  "If the postmeta is not set, then should the plugin extract the first image "
441
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
442
  "как будет создаваться уменьшенная копия изображения"
443
 
444
+ #: admin.inc.php:439
445
  #, fuzzy
446
  msgid ""
447
  "This could slow down the loading of your page if the first image in the "
451
  "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
452
  "как будет создаваться уменьшенная копия изображения"
453
 
454
+ #: admin.inc.php:442
455
  msgid "Use default thumbnail? "
456
  msgstr ""
457
 
458
+ #: admin.inc.php:445
459
  msgid ""
460
  "If checked, when no thumbnail is found, show a default one from the URL "
461
  "below. If not checked and no thumbnail is found, no image will be shown."
464
  "добавлено стандартное изображение. Если превью задано к записи - будет "
465
  "отображаться только оно."
466
 
467
+ #: admin.inc.php:448
468
  msgid "Default thumbnail: "
469
  msgstr ""
470
 
471
+ #: admin.inc.php:452
472
  #, fuzzy
473
  msgid ""
474
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
479
  "заданному ранее произвольному мета-полю). Если же превью нет - будет "
480
  "выводиться картинка по-умолчанию:"
481
 
482
+ #: admin.inc.php:459
483
  msgid "Custom CSS"
484
  msgstr ""
485
 
486
+ #: admin.inc.php:462
487
  msgid "Use default style included in the plugin?"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:465
491
  msgid ""
492
  "Top 10 includes a default style that makes your popular posts list to look "
493
  "pretty. Check the box above if you want to use this. You will need to select "
495
  "Widget."
496
  msgstr ""
497
 
498
+ #: admin.inc.php:468
499
  msgid "Custom CSS to add to header:"
500
  msgstr ""
501
 
502
+ #: admin.inc.php:471
503
  msgid ""
504
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
505
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
506
  "available CSS classes to style."
507
  msgstr ""
508
 
509
+ #: admin.inc.php:478 admin.inc.php:544
510
  #, fuzzy
511
  msgid "Save Options"
512
  msgstr "Настройки плагина:"
513
 
514
+ #: admin.inc.php:479
515
  #, fuzzy
516
  msgid "Default Options"
517
  msgstr "Настройки плагина:"
518
 
519
+ #: admin.inc.php:479
520
  msgid "Do you want to set options to Default?"
521
  msgstr "Сбросить настройки плагина?"
522
 
523
+ #: admin.inc.php:488
524
  msgid "Maintenance"
525
  msgstr ""
526
 
527
+ #: admin.inc.php:492
528
  msgid ""
529
  "Over time the Daily Top 10 database grows in size, which reduces the "
530
  "performance of the plugin. Cleaning the database at regular intervals could "
532
  "will automatically delete entries older than 90 days."
533
  msgstr ""
534
 
535
+ #: admin.inc.php:493
536
  msgid ""
537
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
538
  "everytime the job is rescheduled (i.e. you change the settings below)."
539
  msgstr ""
540
 
541
+ #: admin.inc.php:496
542
  msgid "Enable scheduled maintenance of daily tables:"
543
  msgstr ""
544
 
545
+ #: admin.inc.php:500
546
  msgid "Time to run maintenance"
547
  msgstr ""
548
 
549
+ #: admin.inc.php:501
550
  msgid "hrs"
551
  msgstr ""
552
 
553
+ #: admin.inc.php:501
554
  msgid "min"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:503
558
  msgid "How often should the maintenance be run:"
559
  msgstr ""
560
 
561
+ #: admin.inc.php:507
562
  msgid "Daily"
563
  msgstr ""
564
 
565
+ #: admin.inc.php:511
566
  msgid "Weekly"
567
  msgstr ""
568
 
569
+ #: admin.inc.php:515
570
  msgid "Fortnightly"
571
  msgstr ""
572
 
573
+ #: admin.inc.php:519
574
  msgid "Monthly"
575
  msgstr ""
576
 
577
+ #: admin.inc.php:528
578
  msgid "The cron job has been scheduled. Maintenance will run "
579
  msgstr ""
580
 
581
+ #: admin.inc.php:533
582
  msgid "The cron job is missing. Please resave this page to add the job"
583
  msgstr ""
584
 
585
+ #: admin.inc.php:538
586
  msgid "Maintenance is turned off"
587
  msgstr ""
588
 
589
+ #: admin.inc.php:552
590
  msgid "Reset count"
591
  msgstr "Сбросить статистику"
592
 
593
+ #: admin.inc.php:555
594
  msgid ""
595
  "This cannot be reversed. Make sure that your database has been backed up "
596
  "before proceeding"
598
  "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
599
  "убедитесь, что у вас есть копия вашей базы данных!"
600
 
601
+ #: admin.inc.php:558
602
  #, fuzzy
603
  msgid "Reset Popular Posts"
604
  msgstr "Популярные записи"
605
 
606
+ #: admin.inc.php:558
607
  msgid "Are you sure you want to reset the popular posts?"
608
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
609
 
610
+ #: admin.inc.php:559
611
  #, fuzzy
612
  msgid "Reset Daily Popular Posts"
613
  msgstr "Популярные сегодня записи"
614
 
615
+ #: admin.inc.php:559
616
  msgid "Are you sure you want to reset the daily popular posts?"
617
  msgstr ""
618
  "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
619
 
620
+ #: admin.inc.php:560
621
  msgid "Clear duplicates"
622
  msgstr ""
623
 
624
+ #: admin.inc.php:560
625
  msgid "This will delete the duplicate entries in the tables. Proceed?"
626
  msgstr ""
627
  "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
628
 
629
+ #: admin.inc.php:612 admin.inc.php:1010
630
  msgid "Popular Posts"
631
  msgstr "Популярные записи"
632
 
633
+ #: admin.inc.php:614 admin.inc.php:713
634
  msgid "Daily Popular Posts"
635
  msgstr "Популярные сегодня записи"
636
 
637
+ #: admin.inc.php:645
638
  msgid "Support the development"
639
  msgstr "Поддержать автора плагина"
640
 
641
+ #: admin.inc.php:652
642
+ msgid "Donation for Top 10"
643
+ msgstr ""
644
+
645
+ #: admin.inc.php:654
646
  msgid "Enter amount in USD: "
647
  msgstr "Сколько вы готовы пожертвовать (в USD):"
648
 
649
+ #: admin.inc.php:658
650
+ #, fuzzy
651
+ msgid "Send your donation to the author of Top 10"
652
  msgstr "Отправьте пожертвование автору"
653
 
654
+ #: admin.inc.php:665
655
  msgid "Follow me"
656
  msgstr ""
657
 
658
+ #: admin.inc.php:675
659
  #, fuzzy
660
  msgid "Quick links"
661
  msgstr "Полезные ссылки"
662
 
663
+ #: admin.inc.php:679
664
  #, fuzzy
665
  msgid "Top 10 plugin page"
666
  msgstr "страница плагина"
667
 
668
+ #: admin.inc.php:680
669
  msgid "Other plugins"
670
  msgstr "Другие плагины автора"
671
 
672
+ #: admin.inc.php:681
673
  msgid "Ajay's blog"
674
  msgstr "Блог Ajay"
675
 
676
+ #: admin.inc.php:682
677
  msgid "FAQ"
678
  msgstr ""
679
 
680
+ #: admin.inc.php:683 top-10.php:1345
681
  msgid "Support"
682
  msgstr "Поддержка (англ.)"
683
 
684
+ #: admin.inc.php:684
685
  msgid "Reviews"
686
  msgstr ""
687
 
688
+ #: admin.inc.php:704 admin.inc.php:707
689
  #, fuzzy
690
  msgid "Top 10 Settings"
691
  msgstr "Настроки плагина"
692
 
693
+ #: admin.inc.php:704 admin.inc.php:1183
694
  msgid "Top 10"
695
  msgstr "Топ 10 записей"
696
 
697
+ #: admin.inc.php:710
698
  #, fuzzy
699
  msgid "Overall Popular Posts"
700
  msgstr "Посмотреть все Популярные записи"
701
 
702
+ #: admin.inc.php:882
703
  #, php-format
704
  msgid "Results %1$s to %2$s of %3$s"
705
  msgstr ""
706
 
707
+ #: admin.inc.php:886
708
  #, php-format
709
  msgid "Page %s of %s"
710
  msgstr ""
711
 
712
+ #: admin.inc.php:898
713
  msgid "View Daily Popular Posts"
714
  msgstr "Посмотреть все Популярные сегодня записи"
715
 
716
+ #: admin.inc.php:901 admin.inc.php:914
717
  msgid "Results per-page:"
718
  msgstr "Результатов на страницу:"
719
 
720
+ #: admin.inc.php:911
721
  msgid "View Overall Popular Posts"
722
  msgstr "Посмотреть все Популярные записи"
723
 
724
+ #: admin.inc.php:940
725
  msgid "Previous"
726
  msgstr "Предыдущая страница"
727
 
728
+ #: admin.inc.php:968
729
  msgid "Next"
730
  msgstr "Следующая страница"
731
 
732
+ #: admin.inc.php:1011
733
  msgid "Daily Popular"
734
  msgstr "Популярные сегодня записи"
735
 
736
+ #: admin.inc.php:1029
737
  #, fuzzy
738
  msgid "Total Views"
739
  msgstr "Всего/Сегодня"
740
 
741
+ #: admin.inc.php:1030
742
  #, fuzzy
743
  msgid "Today's Views"
744
  msgstr "Всего/Сегодня"
745
 
746
+ #: admin.inc.php:1031
747
  #, fuzzy
748
  msgid "Views"
749
  msgstr "Всего/Сегодня"
750
 
751
+ #: admin.inc.php:1217
752
+ #, fuzzy
753
+ msgid "Visit count:"
754
+ msgstr "Сбросить статистику"
755
+
756
+ #: admin.inc.php:1219
757
+ msgid ""
758
+ "Enter a number above to update the visit count. Leaving the above box blank "
759
+ "will set the count to zero"
760
  msgstr ""
761
 
762
+ #: admin.inc.php:1229
763
+ msgid "Location of thumbnail:"
764
+ msgstr ""
765
 
766
+ #: admin.inc.php:1231
767
+ msgid ""
768
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
769
+ "image will be used for the post. It will be resized to the thumbnail size "
770
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
771
+ msgstr ""
772
+
773
+ #: admin.inc.php:1232
774
+ msgid "The URL above is saved in the meta field: "
775
+ msgstr ""
776
+
777
+ #: top-10.php:456
778
+ msgid " by "
779
+ msgstr ""
780
+
781
+ #: top-10.php:550
782
  #, fuzzy
783
  msgid "Popular Posts [Top 10]"
784
  msgstr "Популярные записи"
785
 
786
+ #: top-10.php:551
787
+ #, fuzzy
788
+ msgid "Display popular posts"
789
+ msgstr "Популярные сегодня записи"
790
+
791
+ #: top-10.php:577
792
  msgid "Title"
793
  msgstr ""
794
 
795
+ #: top-10.php:582
796
  msgid "No. of posts"
797
  msgstr ""
798
 
799
+ #: top-10.php:587
800
  msgid "Overall"
801
  msgstr ""
802
 
803
+ #: top-10.php:588
804
  msgid "Custom time period (Enter below)"
805
  msgstr ""
806
 
807
+ #: top-10.php:593
808
  msgid "Range in number of days (applies only to custom option above)"
809
  msgstr ""
810
 
811
+ #: top-10.php:598
812
  #, fuzzy
813
+ msgid "Show count?"
814
  msgstr "Показывать текст записи в списке?"
815
 
816
+ #: top-10.php:603
817
  #, fuzzy
818
+ msgid "Show excerpt?"
819
  msgstr "Показывать текст записи в списке?"
820
 
821
+ #: top-10.php:608
822
+ #, fuzzy
823
+ msgid "Show author?"
824
+ msgstr "Показывать текст записи в списке?"
825
 
826
+ #: top-10.php:613
827
  #, fuzzy
828
+ msgid "Show date?"
829
  msgstr "Показывать текст записи в списке?"
830
 
831
+ #: top-10.php:617
832
  #, fuzzy
833
  msgid "Thumbnail options"
834
  msgstr "Настройки превью к записям:"
835
 
836
+ #: top-10.php:619
837
  #, fuzzy
838
  msgid "Thumbnails inline, before title"
839
  msgstr "Отображать превью к записи сразу перед заголовком"
840
 
841
+ #: top-10.php:620
842
  #, fuzzy
843
  msgid "Thumbnails inline, after title"
844
  msgstr "Отображать превью к записи сразу после заголовка"
845
 
846
+ #: top-10.php:621
847
  #, fuzzy
848
  msgid "Only thumbnails, no text"
849
  msgstr "Отображать только превью, без текста"
850
 
851
+ #: top-10.php:622
852
  #, fuzzy
853
  msgid "No thumbnails, only text."
854
  msgstr "Отображать только текст, без превью"
855
 
856
+ #: top-10.php:627
857
  #, fuzzy
858
  msgid "Thumbnail height"
859
  msgstr "Настройки превью к записям:"
860
 
861
+ #: top-10.php:632
862
  #, fuzzy
863
  msgid "Thumbnail width"
864
  msgstr "Настройки превью к записям:"
865
 
866
+ #: top-10.php:772
867
  msgid "<h3>Popular Posts</h3>"
868
  msgstr "<h3>Популярные записи</h3>"
869
 
870
+ #: top-10.php:773
871
  msgid "<h3>Daily Popular</h3>"
872
  msgstr "<h3>Популярные сегодня записи</h3>"
873
 
874
+ #: top-10.php:774
875
  #, fuzzy
876
  msgid "No top posts yet"
877
  msgstr "Сбросить статистику популярных записей"
878
 
879
+ #: top-10.php:1245
880
  msgid "Once Weekly"
881
  msgstr ""
882
 
883
+ #: top-10.php:1249
884
  msgid "Once Fortnightly"
885
  msgstr ""
886
 
887
+ #: top-10.php:1253
888
  msgid "Once Monthly"
889
  msgstr ""
890
 
891
+ #: top-10.php:1323
892
  msgid "Settings"
893
  msgstr "Настроки плагина"
894
 
895
+ #: top-10.php:1346
896
  msgid "Donate"
897
  msgstr "Сделать пожертвование"
898
 
899
+ #~ msgid "Display the posts popular this week"
900
+ #~ msgstr "Отображать списки популярных записей за неделю"
901
+
902
  #, fuzzy
903
  #~ msgid "This option uses JavaScript and will increase your page load time"
904
  #~ msgstr ""
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -12,54 +12,59 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Opcije uspešno sašuvane"
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Opcije podešene po Default-u."
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Resetuj Top 10 popularnih postova"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr "Umnoži redove očišćene sa tabela"
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr "Raspored održavanja omogućen modifikovan"
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr "Raspoed održavanja onemogućen"
45
 
46
- #: admin.inc.php:172
 
 
 
 
 
47
  msgid "General options"
48
  msgstr "Opšta pitanja"
49
 
50
- #: admin.inc.php:176
51
  msgid "Enable Overall stats"
52
  msgstr "Omogući statistiku svega"
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr "Omogući dnevne statistike"
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr "W3 Total Cache fix:"
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
@@ -69,44 +74,44 @@ msgstr ""
69
  "plugina. Pokušajte da toglujete ovu opciju u slučaju da otkrijete da naši "
70
  "postovi nisu praćeni."
71
 
72
- #: admin.inc.php:192
73
  msgid "Number of popular posts to display: "
74
  msgstr "Broj popularnih postova za prikaz."
75
 
76
- #: admin.inc.php:194
77
  msgid ""
78
  "Maximum number of posts that will be displayed in the list. This option is "
79
  "used if you don't specify the number of posts in the widget or shortcodes"
80
  msgstr ""
81
 
82
- #: admin.inc.php:198
83
  msgid "Daily Popular should contain views of how many days? "
84
  msgstr "Dnevni popularni bi trebali da sadrže preglede od koliko dana?"
85
 
86
- #: admin.inc.php:200
87
  msgid ""
88
  "Instead of displaying popular posts fromt he past day, this setting lets you "
89
  "display posts for as many days as you want. This can be overridden in the "
90
  "widget."
91
  msgstr ""
92
 
93
- #: admin.inc.php:203
94
  msgid "Post types to include in results (including custom post types)"
95
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
96
 
97
- #: admin.inc.php:214
98
  msgid "List of post or page IDs to exclude from the results: "
99
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
100
 
101
- #: admin.inc.php:216 admin.inc.php:352
102
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
103
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
104
 
105
- #: admin.inc.php:220
106
  msgid "Exclude Categories: "
107
  msgstr "Isključene kategorije"
108
 
109
- #: admin.inc.php:235
110
  msgid ""
111
  "Comma separated list of category slugs. The field above has an autocomplete "
112
  "so simply start typing in the starting letters and it will prompt you with "
@@ -115,55 +120,56 @@ msgstr ""
115
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
116
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
117
 
118
- #: admin.inc.php:240
119
  #, fuzzy
120
  msgid "Display number of views on:"
121
  msgstr "Afficher le nombre des visionnages du message?"
122
 
123
- #: admin.inc.php:242
124
  msgid "Posts"
125
  msgstr "Postovi"
126
 
127
- #: admin.inc.php:243
128
  #, fuzzy
129
  msgid "Pages"
130
  msgstr "Page"
131
 
132
- #: admin.inc.php:244
133
  msgid "Home page"
134
  msgstr "Početna stranica"
135
 
136
- #: admin.inc.php:245
137
  msgid "Feeds"
138
  msgstr "Feeds"
139
 
140
- #: admin.inc.php:246
141
  msgid "Category archives"
142
  msgstr "Kategorija arhiva"
143
 
144
- #: admin.inc.php:247
145
  msgid "Tag archives"
146
  msgstr "Tag arhiva"
147
 
148
- #: admin.inc.php:248
149
  msgid "Other archives"
150
  msgstr "Druge arhive"
151
 
152
- #: admin.inc.php:249
 
153
  msgid ""
154
- "If you choose to disable this, please add <code>&lt;?php "
155
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
156
- "template file where you want it displayed"
157
  msgstr ""
158
  "Ako odlučite da onemogućite ovo, molim vas dodajte <code>&lt;?php "
159
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
160
  "template fajlu gde želite da bude prikazano. "
161
 
162
- #: admin.inc.php:252
163
  msgid "Always display latest post count"
164
  msgstr "Uvek prikaži posldenje brojanje posta"
165
 
166
- #: admin.inc.php:254
167
  #, fuzzy
168
  msgid ""
169
  "This option uses JavaScript and will increase your page load time. Turn this "
@@ -176,53 +182,62 @@ msgstr ""
176
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
177
  "se podese na ovom ekranu."
178
 
179
- #: admin.inc.php:257
180
  msgid "Track visits of authors on their own posts?"
181
  msgstr ""
182
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
183
  "posete autora na njihovim postovima?"
184
 
185
- #: admin.inc.php:259
186
  msgid ""
187
  "Disabling this option will stop authors visits tracked on their own posts"
188
  msgstr ""
189
 
190
- #: admin.inc.php:262
191
  #, fuzzy
192
  msgid "Track visits of admins?"
193
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
194
 
195
- #: admin.inc.php:264
196
  msgid "Disabling this option will stop admin visits being tracked."
197
  msgstr ""
198
 
199
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
200
  #, fuzzy
201
  msgid "Display page views on Posts and Pages in Admin"
202
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
203
 
204
- #: admin.inc.php:270
205
  msgid ""
206
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
207
  "and All Pages"
208
  msgstr ""
209
 
210
- #: admin.inc.php:273
211
  #, fuzzy
212
  msgid "Show number of views to non-admins"
213
  msgstr "Afficher le nombre des visionnages sur les pages?"
214
 
215
- #: admin.inc.php:276
216
  msgid ""
217
  "If you disable this then non-admins won't see the above columns or view the "
218
  "independent pages with the top posts"
219
  msgstr ""
220
 
221
- #: admin.inc.php:279
222
  msgid "Link to Top 10 plugin page"
223
  msgstr "Povežite se na Top 10 plugin stranicu"
224
 
225
- #: admin.inc.php:282
226
  #, fuzzy
227
  msgid ""
228
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -232,17 +247,17 @@ msgstr ""
232
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
233
  "mais nous vous y remercions!"
234
 
235
- #: admin.inc.php:289
236
  #, fuzzy
237
  msgid "Output options"
238
  msgstr "Paramètres de sortie"
239
 
240
- #: admin.inc.php:292
241
  #, fuzzy
242
  msgid "Format to display the post views:"
243
  msgstr "Format za prikaz brojanja u:"
244
 
245
- #: admin.inc.php:294
246
  #, fuzzy
247
  msgid ""
248
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -255,11 +270,11 @@ msgstr ""
255
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
256
  "123 times, 23 visits today)</code>"
257
 
258
- #: admin.inc.php:297
259
  msgid "What do display when there are no visits?"
260
  msgstr ""
261
 
262
- #: admin.inc.php:299
263
  msgid ""
264
  "This text applies only when there are 0 hits for the post and it isn't a "
265
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -267,59 +282,59 @@ msgid ""
267
  "option."
268
  msgstr ""
269
 
270
- #: admin.inc.php:302
271
  msgid "Title of popular posts: "
272
  msgstr "Naslov popularnih postova:"
273
 
274
- #: admin.inc.php:305
275
  msgid "Title of daily popular posts: "
276
  msgstr "Naslov popularnih dnevnih postova:"
277
 
278
- #: admin.inc.php:308
279
  msgid "When there are no posts, what should be shown?"
280
  msgstr "Kada nema postova šta da prikažemo?"
281
 
282
- #: admin.inc.php:312
283
  msgid "Blank Output"
284
  msgstr "Prazan izlaz"
285
 
286
- #: admin.inc.php:316
287
  msgid "Display:"
288
  msgstr "Prikaz:"
289
 
290
- #: admin.inc.php:320
291
  msgid "Show post excerpt in list?"
292
  msgstr "Pokaži post izvoda na listi?"
293
 
294
- #: admin.inc.php:323
295
  msgid "Length of excerpt (in words): "
296
  msgstr "Dužina izvoda (u rečima):"
297
 
298
- #: admin.inc.php:326
299
  #, fuzzy
300
  msgid "Show post author in list?"
301
  msgstr "Afficher le fragment du message dans la liste?"
302
 
303
- #: admin.inc.php:329
304
  #, fuzzy
305
  msgid "Show post date in list?"
306
  msgstr "Afficher le fragment du message dans la liste?"
307
 
308
- #: admin.inc.php:332
309
  msgid "Limit post title length (in characters)"
310
  msgstr "Limit dužine postova naslova (u karakterima)"
311
 
312
- #: admin.inc.php:335
313
  #, fuzzy
314
  msgid "Show view count in list?"
315
  msgstr "Afficher le fragment du message dans la liste?"
316
 
317
- #: admin.inc.php:338
318
  #, fuzzy
319
  msgid "Always display latest post count in the daily lists?"
320
  msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
321
 
322
- #: admin.inc.php:340
323
  #, fuzzy
324
  msgid ""
325
  "This option uses JavaScript and will increase your page load time. When you "
@@ -332,92 +347,92 @@ msgstr ""
332
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
333
  "se podese na ovom ekranu."
334
 
335
- #: admin.inc.php:343
336
  msgid "Open links in new window"
337
  msgstr "Otvori linkove u novim prozorima"
338
 
339
- #: admin.inc.php:346
340
  msgid "Add nofollow attribute to links in the list"
341
  msgstr "Dodaj nofollow atribut linkovima u listi"
342
 
343
- #: admin.inc.php:349
344
  msgid "Exclude display of related posts on these posts / pages"
345
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
346
 
347
- #: admin.inc.php:355
348
  #, fuzzy
349
  msgid "Customise the list HTML"
350
  msgstr "Sredite output:"
351
 
352
- #: admin.inc.php:357
353
  msgid "HTML to display before the list of posts: "
354
  msgstr "HTML tza prikaz pre liste postova:"
355
 
356
- #: admin.inc.php:360
357
  msgid "HTML to display before each list item: "
358
  msgstr "HTML za prikaz svake stavke sa liste:"
359
 
360
- #: admin.inc.php:363
361
  msgid "HTML to display after each list item: "
362
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
363
 
364
- #: admin.inc.php:366
365
  msgid "HTML to display after the list of posts: "
366
  msgstr "HTML za prikaz posle liste postova:"
367
 
368
- #: admin.inc.php:369
369
  msgid "Post thumbnail options:"
370
  msgstr "Post thumbnail opcije:"
371
 
372
- #: admin.inc.php:371
373
  msgid "Location of post thumbnail:"
374
  msgstr "Lokacija posta thumbnaila:"
375
 
376
- #: admin.inc.php:375
377
  msgid "Display thumbnails inline with posts, before title"
378
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
379
 
380
- #: admin.inc.php:379
381
  msgid "Display thumbnails inline with posts, after title"
382
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
383
 
384
- #: admin.inc.php:383
385
  msgid "Display only thumbnails, no text"
386
  msgstr "Prikaži samo thumbnails, bez teksta"
387
 
388
- #: admin.inc.php:387
389
  msgid "Do not display thumbnails, only text."
390
  msgstr "Ne prikazujte thumbnails, samo tekst"
391
 
392
- #: admin.inc.php:391
393
  msgid "Width of the thumbnail: "
394
  msgstr "Širina thumbnaila:"
395
 
396
- #: admin.inc.php:394
397
  msgid "Height of the thumbnail: "
398
  msgstr "Visina thumbnaila:"
399
 
400
- #: admin.inc.php:397
401
  msgid "Style attributes / Width and Height HTML attributes:"
402
  msgstr "Stil atributa /širina i visina HTML atributa:"
403
 
404
- #: admin.inc.php:401
405
  #, fuzzy
406
  msgid "Style attributes are used for width and height."
407
  msgstr ""
408
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
409
 
410
- #: admin.inc.php:405
411
  #, fuzzy
412
  msgid "HTML width and height attributes are used for width and height."
413
  msgstr ""
414
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
415
 
416
- #: admin.inc.php:409
417
  msgid "Use timthumb to generate thumbnails? "
418
  msgstr "Upotreba timthumb za generisanja thumbnails?"
419
 
420
- #: admin.inc.php:412
421
  #, fuzzy
422
  msgid ""
423
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
@@ -426,12 +441,22 @@ msgstr ""
426
  "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
427
  "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
428
 
429
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
430
  #, fuzzy
431
  msgid "Post thumbnail meta field name: "
432
  msgstr "Options thumbnail des messages:"
433
 
434
- #: admin.inc.php:418
435
  msgid ""
436
  "The value of this field should contain the image source and is set in the "
437
  "<em>Add New Post</em> screen"
@@ -439,7 +464,7 @@ msgstr ""
439
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
440
  "<em>Add New Post</em> ekranu"
441
 
442
- #: admin.inc.php:421
443
  #, fuzzy
444
  msgid ""
445
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -450,7 +475,7 @@ msgstr ""
450
  "première image de la résolution correspondante du fichier est de taille "
451
  "supérieure"
452
 
453
- #: admin.inc.php:424
454
  #, fuzzy
455
  msgid ""
456
  "This could slow down the loading of your page if the first image in the "
@@ -461,11 +486,11 @@ msgstr ""
461
  "première image de la résolution correspondante du fichier est de taille "
462
  "supérieure"
463
 
464
- #: admin.inc.php:427
465
  msgid "Use default thumbnail? "
466
  msgstr "Koristite default thumbnail?"
467
 
468
- #: admin.inc.php:430
469
  msgid ""
470
  "If checked, when no thumbnail is found, show a default one from the URL "
471
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -473,11 +498,11 @@ msgstr ""
473
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
474
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
475
 
476
- #: admin.inc.php:433
477
  msgid "Default thumbnail: "
478
  msgstr "Default thumbnail:"
479
 
480
- #: admin.inc.php:437
481
  msgid ""
482
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
483
  "then it will check the meta field. If this is not available, then it will "
@@ -487,16 +512,16 @@ msgstr ""
487
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
488
  "sliku kao što je odredjeno iznad"
489
 
490
- #: admin.inc.php:444
491
  #, fuzzy
492
  msgid "Custom CSS"
493
  msgstr "Custom stilovi"
494
 
495
- #: admin.inc.php:447
496
  msgid "Use default style included in the plugin?"
497
  msgstr ""
498
 
499
- #: admin.inc.php:450
500
  msgid ""
501
  "Top 10 includes a default style that makes your popular posts list to look "
502
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -504,11 +529,11 @@ msgid ""
504
  "Widget."
505
  msgstr ""
506
 
507
- #: admin.inc.php:453
508
  msgid "Custom CSS to add to header:"
509
  msgstr "Custom CSS je dodat header-u"
510
 
511
- #: admin.inc.php:456
512
  msgid ""
513
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
514
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
@@ -518,25 +543,25 @@ msgstr ""
518
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
519
  "dostupne CSS klase za stilizovanje."
520
 
521
- #: admin.inc.php:463 admin.inc.php:529
522
  #, fuzzy
523
  msgid "Save Options"
524
  msgstr "Options:"
525
 
526
- #: admin.inc.php:464
527
  #, fuzzy
528
  msgid "Default Options"
529
  msgstr "Paramètres de sortie"
530
 
531
- #: admin.inc.php:464
532
  msgid "Do you want to set options to Default?"
533
  msgstr "Da li želite da postavite opcije na Default?"
534
 
535
- #: admin.inc.php:473
536
  msgid "Maintenance"
537
  msgstr "Održavanje"
538
 
539
- #: admin.inc.php:477
540
  #, fuzzy
541
  msgid ""
542
  "Over time the Daily Top 10 database grows in size, which reduces the "
@@ -548,7 +573,7 @@ msgstr ""
548
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
549
  "performanse naročito na blogovima sa velikim saobraćajem."
550
 
551
- #: admin.inc.php:478
552
  #, fuzzy
553
  msgid ""
554
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
@@ -558,61 +583,61 @@ msgstr ""
558
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
559
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
560
 
561
- #: admin.inc.php:481
562
  msgid "Enable scheduled maintenance of daily tables:"
563
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
564
 
565
- #: admin.inc.php:485
566
  msgid "Time to run maintenance"
567
  msgstr "Pokrenuti održavanje"
568
 
569
- #: admin.inc.php:486
570
  msgid "hrs"
571
  msgstr ""
572
 
573
- #: admin.inc.php:486
574
  msgid "min"
575
  msgstr ""
576
 
577
- #: admin.inc.php:488
578
  msgid "How often should the maintenance be run:"
579
  msgstr "Održavanje ne treba često da se pokreće"
580
 
581
- #: admin.inc.php:492
582
  msgid "Daily"
583
  msgstr "Dnevno"
584
 
585
- #: admin.inc.php:496
586
  msgid "Weekly"
587
  msgstr "Nedeljno"
588
 
589
- #: admin.inc.php:500
590
  msgid "Fortnightly"
591
  msgstr "Na dve nedelje"
592
 
593
- #: admin.inc.php:504
594
  msgid "Monthly"
595
  msgstr "Mesečno"
596
 
597
- #: admin.inc.php:513
598
  msgid "The cron job has been scheduled. Maintenance will run "
599
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
600
 
601
- #: admin.inc.php:518
602
  msgid "The cron job is missing. Please resave this page to add the job"
603
  msgstr ""
604
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
605
  "dodali posao"
606
 
607
- #: admin.inc.php:523
608
  msgid "Maintenance is turned off"
609
  msgstr "Održavanje je ugašeno"
610
 
611
- #: admin.inc.php:537
612
  msgid "Reset count"
613
  msgstr "Resetuj brojanje"
614
 
615
- #: admin.inc.php:540
616
  msgid ""
617
  "This cannot be reversed. Make sure that your database has been backed up "
618
  "before proceeding"
@@ -620,270 +645,307 @@ msgstr ""
620
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
621
  "back up-u pre nego što nastavite"
622
 
623
- #: admin.inc.php:543
624
  #, fuzzy
625
  msgid "Reset Popular Posts"
626
  msgstr "Postes populaires"
627
 
628
- #: admin.inc.php:543
629
  msgid "Are you sure you want to reset the popular posts?"
630
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
631
 
632
- #: admin.inc.php:544
633
  #, fuzzy
634
  msgid "Reset Daily Popular Posts"
635
  msgstr "Postes populaires journaliers"
636
 
637
- #: admin.inc.php:544
638
  msgid "Are you sure you want to reset the daily popular posts?"
639
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
640
 
641
- #: admin.inc.php:545
642
  msgid "Clear duplicates"
643
  msgstr "Obrišite duplikate"
644
 
645
- #: admin.inc.php:545
646
  msgid "This will delete the duplicate entries in the tables. Proceed?"
647
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
648
 
649
- #: admin.inc.php:593 admin.inc.php:979
650
  msgid "Popular Posts"
651
  msgstr "Popularni postovi"
652
 
653
- #: admin.inc.php:593 admin.inc.php:688
654
  msgid "Daily Popular Posts"
655
  msgstr "Dnevni popularni postovi"
656
 
657
- #: admin.inc.php:621
658
  msgid "Support the development"
659
  msgstr "Podrška razvoju"
660
 
661
- #: admin.inc.php:630
 
 
 
 
662
  msgid "Enter amount in USD: "
663
  msgstr "Unesite veličinu u USD:"
664
 
665
- #: admin.inc.php:634
666
- msgid "Send your donation to the author of"
 
667
  msgstr "Pošalji vašu donaciju autoru"
668
 
669
- #: admin.inc.php:641
670
  #, fuzzy
671
  msgid "Follow me"
672
  msgstr "Pratite nas"
673
 
674
- #: admin.inc.php:651
675
  #, fuzzy
676
  msgid "Quick links"
677
  msgstr "Liens rapides"
678
 
679
- #: admin.inc.php:655
680
  #, fuzzy
681
  msgid "Top 10 plugin page"
682
  msgstr "Page de plugin"
683
 
684
- #: admin.inc.php:656
685
  msgid "Other plugins"
686
  msgstr "Brzi linkovi"
687
 
688
- #: admin.inc.php:657
689
  msgid "Ajay's blog"
690
  msgstr "Ajayov blog"
691
 
692
- #: admin.inc.php:658
693
  msgid "FAQ"
694
  msgstr ""
695
 
696
- #: admin.inc.php:659 top-10.php:1267
697
  msgid "Support"
698
  msgstr "Podrška"
699
 
700
- #: admin.inc.php:660
701
  msgid "Reviews"
702
  msgstr ""
703
 
704
- #: admin.inc.php:679 admin.inc.php:682
705
  #, fuzzy
706
  msgid "Top 10 Settings"
707
  msgstr "Paramètres"
708
 
709
- #: admin.inc.php:679
710
  msgid "Top 10"
711
  msgstr "Top 10"
712
 
713
- #: admin.inc.php:685
714
  #, fuzzy
715
  msgid "Overall Popular Posts"
716
  msgstr "Voir tous les postes populaires"
717
 
718
- #: admin.inc.php:850
719
  #, php-format
720
  msgid "Results %1$s to %2$s of %3$s"
721
  msgstr ""
722
 
723
- #: admin.inc.php:854
724
  #, php-format
725
  msgid "Page %s of %s"
726
  msgstr ""
727
 
728
- #: admin.inc.php:866
729
  msgid "View Daily Popular Posts"
730
  msgstr "Pregledaj dnevne popularne postove"
731
 
732
- #: admin.inc.php:869 admin.inc.php:882
733
  msgid "Results per-page:"
734
  msgstr "Rezultat po stranici:"
735
 
736
- #: admin.inc.php:879
737
  msgid "View Overall Popular Posts"
738
  msgstr "Pregledaj sve popularne postove"
739
 
740
- #: admin.inc.php:908
741
  msgid "Previous"
742
  msgstr "Prethodni"
743
 
744
- #: admin.inc.php:936
745
  msgid "Next"
746
  msgstr "Sledeći"
747
 
748
- #: admin.inc.php:980
749
  msgid "Daily Popular"
750
  msgstr "Dnevno popularno"
751
 
752
- #: admin.inc.php:998
753
  #, fuzzy
754
  msgid "Total Views"
755
  msgstr "Total/aujourd'hui visionnages"
756
 
757
- #: admin.inc.php:999
758
  #, fuzzy
759
  msgid "Today's Views"
760
  msgstr "Total/aujourd'hui visionnages"
761
 
762
- #: admin.inc.php:1000
763
  #, fuzzy
764
  msgid "Views"
765
  msgstr "Total/aujourd'hui visionnages"
766
 
767
- #: top-10.php:438
768
- msgid " by "
 
 
 
 
 
 
 
769
  msgstr ""
770
 
771
- #: top-10.php:524
772
- msgid "Display the posts popular this week"
773
- msgstr "Prikazati postove popularne ove nedelje"
 
774
 
775
- #: top-10.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  #, fuzzy
777
  msgid "Popular Posts [Top 10]"
778
  msgstr "Postes populaires"
779
 
780
- #: top-10.php:543
 
 
 
 
 
781
  msgid "Title"
782
  msgstr "Naslov"
783
 
784
- #: top-10.php:548
785
  msgid "No. of posts"
786
  msgstr "Broj postova"
787
 
788
- #: top-10.php:553
789
  msgid "Overall"
790
  msgstr "Sve ukupno"
791
 
792
- #: top-10.php:554
793
  msgid "Custom time period (Enter below)"
794
  msgstr "Vremenski period (unesite ispod)"
795
 
796
- #: top-10.php:559
797
  msgid "Range in number of days (applies only to custom option above)"
798
  msgstr "Raspon dana (odnosi se samo na iznad)"
799
 
800
- #: top-10.php:564
801
  #, fuzzy
802
- msgid " Show count?"
803
  msgstr "Prikaži autora?"
804
 
805
- #: top-10.php:569
806
  #, fuzzy
807
- msgid " Show excerpt?"
808
  msgstr "Afficher le fragment du message dans la liste?"
809
 
810
- #: top-10.php:574
811
- msgid " Show author?"
 
812
  msgstr "Prikaži autora?"
813
 
814
- #: top-10.php:579
815
  #, fuzzy
816
- msgid " Show date?"
817
  msgstr "Afficher le fragment du message dans la liste?"
818
 
819
- #: top-10.php:583
820
  #, fuzzy
821
  msgid "Thumbnail options"
822
  msgstr "Options thumbnail des messages:"
823
 
824
- #: top-10.php:585
825
  #, fuzzy
826
  msgid "Thumbnails inline, before title"
827
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
828
 
829
- #: top-10.php:586
830
  #, fuzzy
831
  msgid "Thumbnails inline, after title"
832
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
833
 
834
- #: top-10.php:587
835
  #, fuzzy
836
  msgid "Only thumbnails, no text"
837
  msgstr "Afficher uniquement le thumbnail, sans le texte"
838
 
839
- #: top-10.php:588
840
  #, fuzzy
841
  msgid "No thumbnails, only text."
842
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
843
 
844
- #: top-10.php:593
845
  #, fuzzy
846
  msgid "Thumbnail height"
847
  msgstr "Options thumbnail des messages:"
848
 
849
- #: top-10.php:598
850
  #, fuzzy
851
  msgid "Thumbnail width"
852
  msgstr "Options thumbnail des messages:"
853
 
854
- #: top-10.php:719
855
  msgid "<h3>Popular Posts</h3>"
856
  msgstr "<h3>Popularni Postovi</h3>"
857
 
858
- #: top-10.php:720
859
  msgid "<h3>Daily Popular</h3>"
860
  msgstr "<h3>Dnevni popularni</h3>"
861
 
862
- #: top-10.php:721
863
  #, fuzzy
864
  msgid "No top posts yet"
865
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
866
 
867
- #: top-10.php:1184
868
  msgid "Once Weekly"
869
  msgstr "Jednom nedeljno"
870
 
871
- #: top-10.php:1188
872
  msgid "Once Fortnightly"
873
  msgstr "Jednom u dve nedelje"
874
 
875
- #: top-10.php:1192
876
  msgid "Once Monthly"
877
  msgstr "Jednom mesečno"
878
 
879
- #: top-10.php:1255
880
  msgid "Settings"
881
  msgstr "Postavke"
882
 
883
- #: top-10.php:1268
884
  msgid "Donate"
885
  msgstr "Donirajte"
886
 
 
 
 
887
  #, fuzzy
888
  #~ msgid "This option uses JavaScript and will increase your page load time"
889
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Opcije uspešno sašuvane"
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Opcije podešene po Default-u."
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Resetuj Top 10 popularnih postova"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Resetuj Top 10 dnevnih popularnih postova"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr "Umnoži redove očišćene sa tabela"
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr "Raspored održavanja omogućen modifikovan"
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr "Raspoed održavanja onemogućen"
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
+ msgstr ""
50
+
51
+ #: admin.inc.php:176
52
  msgid "General options"
53
  msgstr "Opšta pitanja"
54
 
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr "Omogući statistiku svega"
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr "Omogući dnevne statistike"
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr "W3 Total Cache fix:"
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
74
  "plugina. Pokušajte da toglujete ovu opciju u slučaju da otkrijete da naši "
75
  "postovi nisu praćeni."
76
 
77
+ #: admin.inc.php:196
78
  msgid "Number of popular posts to display: "
79
  msgstr "Broj popularnih postova za prikaz."
80
 
81
+ #: admin.inc.php:198
82
  msgid ""
83
  "Maximum number of posts that will be displayed in the list. This option is "
84
  "used if you don't specify the number of posts in the widget or shortcodes"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:202
88
  msgid "Daily Popular should contain views of how many days? "
89
  msgstr "Dnevni popularni bi trebali da sadrže preglede od koliko dana?"
90
 
91
+ #: admin.inc.php:204
92
  msgid ""
93
  "Instead of displaying popular posts fromt he past day, this setting lets you "
94
  "display posts for as many days as you want. This can be overridden in the "
95
  "widget."
96
  msgstr ""
97
 
98
+ #: admin.inc.php:207
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr "Tipovi postova da uključe rezultate (uključujući i custom post tipove)"
101
 
102
+ #: admin.inc.php:218
103
  msgid "List of post or page IDs to exclude from the results: "
104
  msgstr "Lista postova ili IDs stranice da budu isključeni iz rezultata"
105
 
106
+ #: admin.inc.php:220 admin.inc.php:361
107
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
108
  msgstr "Unesite zarezom odvojenu listu IDa npr.188,320,500"
109
 
110
+ #: admin.inc.php:224
111
  msgid "Exclude Categories: "
112
  msgstr "Isključene kategorije"
113
 
114
+ #: admin.inc.php:239
115
  msgid ""
116
  "Comma separated list of category slugs. The field above has an autocomplete "
117
  "so simply start typing in the starting letters and it will prompt you with "
120
  "Zarezima separatisana lista kategorije. Polje iznad je autokompletno tako da "
121
  "jednostavno samo počnite da kucate ključna slova i pokazaće vam se opcije"
122
 
123
+ #: admin.inc.php:244
124
  #, fuzzy
125
  msgid "Display number of views on:"
126
  msgstr "Afficher le nombre des visionnages du message?"
127
 
128
+ #: admin.inc.php:246
129
  msgid "Posts"
130
  msgstr "Postovi"
131
 
132
+ #: admin.inc.php:247
133
  #, fuzzy
134
  msgid "Pages"
135
  msgstr "Page"
136
 
137
+ #: admin.inc.php:248
138
  msgid "Home page"
139
  msgstr "Početna stranica"
140
 
141
+ #: admin.inc.php:249
142
  msgid "Feeds"
143
  msgstr "Feeds"
144
 
145
+ #: admin.inc.php:250
146
  msgid "Category archives"
147
  msgstr "Kategorija arhiva"
148
 
149
+ #: admin.inc.php:251
150
  msgid "Tag archives"
151
  msgstr "Tag arhiva"
152
 
153
+ #: admin.inc.php:252
154
  msgid "Other archives"
155
  msgstr "Druge arhive"
156
 
157
+ #: admin.inc.php:253
158
+ #, fuzzy
159
  msgid ""
160
+ "If you choose to disable this, please add <code>&lt;?php if "
161
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
162
+ "</code> to your template file where you want it displayed"
163
  msgstr ""
164
  "Ako odlučite da onemogućite ovo, molim vas dodajte <code>&lt;?php "
165
  "if(function_exists('echo_ald_tptn')) echo_ald_tptn();?&gt;</code> vašem "
166
  "template fajlu gde želite da bude prikazano. "
167
 
168
+ #: admin.inc.php:256
169
  msgid "Always display latest post count"
170
  msgstr "Uvek prikaži posldenje brojanje posta"
171
 
172
+ #: admin.inc.php:258
173
  #, fuzzy
174
  msgid ""
175
  "This option uses JavaScript and will increase your page load time. Turn this "
182
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
183
  "se podese na ovom ekranu."
184
 
185
+ #: admin.inc.php:261
186
  msgid "Track visits of authors on their own posts?"
187
  msgstr ""
188
  "Opcije koriste JavaScript i povećaće vreme učitavanja vaše stranicePratite "
189
  "posete autora na njihovim postovima?"
190
 
191
+ #: admin.inc.php:263
192
  msgid ""
193
  "Disabling this option will stop authors visits tracked on their own posts"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:266
197
  #, fuzzy
198
  msgid "Track visits of admins?"
199
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
200
 
201
+ #: admin.inc.php:268
202
  msgid "Disabling this option will stop admin visits being tracked."
203
  msgstr ""
204
 
205
+ #: admin.inc.php:271
206
+ #, fuzzy
207
+ msgid "Track visits of Editors?"
208
+ msgstr "Suivre les visites des auteurs de leurs propres messages?"
209
+
210
+ #: admin.inc.php:273
211
+ msgid "Disabling this option will stop editor visits being tracked."
212
+ msgstr ""
213
+
214
+ #: admin.inc.php:276
215
  #, fuzzy
216
  msgid "Display page views on Posts and Pages in Admin"
217
  msgstr "Prikaži preglede stranice na Posts > All Posts u Admin"
218
 
219
+ #: admin.inc.php:279
220
  msgid ""
221
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
222
  "and All Pages"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:282
226
  #, fuzzy
227
  msgid "Show number of views to non-admins"
228
  msgstr "Afficher le nombre des visionnages sur les pages?"
229
 
230
+ #: admin.inc.php:285
231
  msgid ""
232
  "If you disable this then non-admins won't see the above columns or view the "
233
  "independent pages with the top posts"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:288
237
  msgid "Link to Top 10 plugin page"
238
  msgstr "Povežite se na Top 10 plugin stranicu"
239
 
240
+ #: admin.inc.php:291
241
  #, fuzzy
242
  msgid ""
243
  "A link to the plugin is added as an extra list item to the list of popular "
247
  "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
248
  "mais nous vous y remercions!"
249
 
250
+ #: admin.inc.php:298
251
  #, fuzzy
252
  msgid "Output options"
253
  msgstr "Paramètres de sortie"
254
 
255
+ #: admin.inc.php:301
256
  #, fuzzy
257
  msgid "Format to display the post views:"
258
  msgstr "Format za prikaz brojanja u:"
259
 
260
+ #: admin.inc.php:303
261
  #, fuzzy
262
  msgid ""
263
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
270
  "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
271
  "123 times, 23 visits today)</code>"
272
 
273
+ #: admin.inc.php:306
274
  msgid "What do display when there are no visits?"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:308
278
  msgid ""
279
  "This text applies only when there are 0 hits for the post and it isn't a "
280
  "single page. e.g. if you display post views on the homepage or archives then "
282
  "option."
283
  msgstr ""
284
 
285
+ #: admin.inc.php:311
286
  msgid "Title of popular posts: "
287
  msgstr "Naslov popularnih postova:"
288
 
289
+ #: admin.inc.php:314
290
  msgid "Title of daily popular posts: "
291
  msgstr "Naslov popularnih dnevnih postova:"
292
 
293
+ #: admin.inc.php:317
294
  msgid "When there are no posts, what should be shown?"
295
  msgstr "Kada nema postova šta da prikažemo?"
296
 
297
+ #: admin.inc.php:321
298
  msgid "Blank Output"
299
  msgstr "Prazan izlaz"
300
 
301
+ #: admin.inc.php:325
302
  msgid "Display:"
303
  msgstr "Prikaz:"
304
 
305
+ #: admin.inc.php:329
306
  msgid "Show post excerpt in list?"
307
  msgstr "Pokaži post izvoda na listi?"
308
 
309
+ #: admin.inc.php:332
310
  msgid "Length of excerpt (in words): "
311
  msgstr "Dužina izvoda (u rečima):"
312
 
313
+ #: admin.inc.php:335
314
  #, fuzzy
315
  msgid "Show post author in list?"
316
  msgstr "Afficher le fragment du message dans la liste?"
317
 
318
+ #: admin.inc.php:338
319
  #, fuzzy
320
  msgid "Show post date in list?"
321
  msgstr "Afficher le fragment du message dans la liste?"
322
 
323
+ #: admin.inc.php:341
324
  msgid "Limit post title length (in characters)"
325
  msgstr "Limit dužine postova naslova (u karakterima)"
326
 
327
+ #: admin.inc.php:344
328
  #, fuzzy
329
  msgid "Show view count in list?"
330
  msgstr "Afficher le fragment du message dans la liste?"
331
 
332
+ #: admin.inc.php:347
333
  #, fuzzy
334
  msgid "Always display latest post count in the daily lists?"
335
  msgstr "Uvek prikaži poslednje brojanje posta u dnevnoj listi"
336
 
337
+ #: admin.inc.php:349
338
  #, fuzzy
339
  msgid ""
340
  "This option uses JavaScript and will increase your page load time. When you "
347
  "widget neće koristiti opcije koje su nameštene tu, ali opcije će morati da "
348
  "se podese na ovom ekranu."
349
 
350
+ #: admin.inc.php:352
351
  msgid "Open links in new window"
352
  msgstr "Otvori linkove u novim prozorima"
353
 
354
+ #: admin.inc.php:355
355
  msgid "Add nofollow attribute to links in the list"
356
  msgstr "Dodaj nofollow atribut linkovima u listi"
357
 
358
+ #: admin.inc.php:358
359
  msgid "Exclude display of related posts on these posts / pages"
360
  msgstr "Isključi pregled vezanih postova na ovim postovima-stranicama"
361
 
362
+ #: admin.inc.php:364
363
  #, fuzzy
364
  msgid "Customise the list HTML"
365
  msgstr "Sredite output:"
366
 
367
+ #: admin.inc.php:366
368
  msgid "HTML to display before the list of posts: "
369
  msgstr "HTML tza prikaz pre liste postova:"
370
 
371
+ #: admin.inc.php:369
372
  msgid "HTML to display before each list item: "
373
  msgstr "HTML za prikaz svake stavke sa liste:"
374
 
375
+ #: admin.inc.php:372
376
  msgid "HTML to display after each list item: "
377
  msgstr "HTML tza prikaz posle svake stavke sa liste:"
378
 
379
+ #: admin.inc.php:375
380
  msgid "HTML to display after the list of posts: "
381
  msgstr "HTML za prikaz posle liste postova:"
382
 
383
+ #: admin.inc.php:378
384
  msgid "Post thumbnail options:"
385
  msgstr "Post thumbnail opcije:"
386
 
387
+ #: admin.inc.php:380
388
  msgid "Location of post thumbnail:"
389
  msgstr "Lokacija posta thumbnaila:"
390
 
391
+ #: admin.inc.php:384
392
  msgid "Display thumbnails inline with posts, before title"
393
  msgstr "Prikaži thumbnails inline sa postovima pre naslova"
394
 
395
+ #: admin.inc.php:388
396
  msgid "Display thumbnails inline with posts, after title"
397
  msgstr "Prikaži thumbnails inline sa postovima posle naslova"
398
 
399
+ #: admin.inc.php:392
400
  msgid "Display only thumbnails, no text"
401
  msgstr "Prikaži samo thumbnails, bez teksta"
402
 
403
+ #: admin.inc.php:396
404
  msgid "Do not display thumbnails, only text."
405
  msgstr "Ne prikazujte thumbnails, samo tekst"
406
 
407
+ #: admin.inc.php:400
408
  msgid "Width of the thumbnail: "
409
  msgstr "Širina thumbnaila:"
410
 
411
+ #: admin.inc.php:403
412
  msgid "Height of the thumbnail: "
413
  msgstr "Visina thumbnaila:"
414
 
415
+ #: admin.inc.php:406
416
  msgid "Style attributes / Width and Height HTML attributes:"
417
  msgstr "Stil atributa /širina i visina HTML atributa:"
418
 
419
+ #: admin.inc.php:410
420
  #, fuzzy
421
  msgid "Style attributes are used for width and height."
422
  msgstr ""
423
  "Stilovi atributa su korišćeni za čirinu i visinu. <code>style=\"max-width:"
424
 
425
+ #: admin.inc.php:414
426
  #, fuzzy
427
  msgid "HTML width and height attributes are used for width and height."
428
  msgstr ""
429
  "HTML širina i visina atributa se koristi za širinu i visinu.<code>width=\""
430
 
431
+ #: admin.inc.php:418
432
  msgid "Use timthumb to generate thumbnails? "
433
  msgstr "Upotreba timthumb za generisanja thumbnails?"
434
 
435
+ #: admin.inc.php:421
436
  #, fuzzy
437
  msgid ""
438
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
441
  "Ak je čekirano, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
442
  "\">timthumb</a> će se koristiti za generisanje thumbnails-a"
443
 
444
+ #: admin.inc.php:424
445
+ msgid "Quality of thumbnails generated by timthumb:"
446
+ msgstr ""
447
+
448
+ #: admin.inc.php:427
449
+ msgid ""
450
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
451
+ "file size. Suggested maximum value is 95. Default is 75."
452
+ msgstr ""
453
+
454
+ #: admin.inc.php:430
455
  #, fuzzy
456
  msgid "Post thumbnail meta field name: "
457
  msgstr "Options thumbnail des messages:"
458
 
459
+ #: admin.inc.php:433
460
  msgid ""
461
  "The value of this field should contain the image source and is set in the "
462
  "<em>Add New Post</em> screen"
464
  "Vrednost ovog polja bi trebala da sadrži source slike i njne postavke u "
465
  "<em>Add New Post</em> ekranu"
466
 
467
+ #: admin.inc.php:436
468
  #, fuzzy
469
  msgid ""
470
  "If the postmeta is not set, then should the plugin extract the first image "
475
  "première image de la résolution correspondante du fichier est de taille "
476
  "supérieure"
477
 
478
+ #: admin.inc.php:439
479
  #, fuzzy
480
  msgid ""
481
  "This could slow down the loading of your page if the first image in the "
486
  "première image de la résolution correspondante du fichier est de taille "
487
  "supérieure"
488
 
489
+ #: admin.inc.php:442
490
  msgid "Use default thumbnail? "
491
  msgstr "Koristite default thumbnail?"
492
 
493
+ #: admin.inc.php:445
494
  msgid ""
495
  "If checked, when no thumbnail is found, show a default one from the URL "
496
  "below. If not checked and no thumbnail is found, no image will be shown."
498
  "Ako je čekirano, kada nijedna thumnail nije pronadjena prikaži default iz "
499
  "URLa ispod. Ako nije čekirano i nema thumbnaila, slika neće biti prikazana."
500
 
501
+ #: admin.inc.php:448
502
  msgid "Default thumbnail: "
503
  msgstr "Default thumbnail:"
504
 
505
+ #: admin.inc.php:452
506
  msgid ""
507
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
508
  "then it will check the meta field. If this is not available, then it will "
512
  "proveriti meta polje. Ako to nije dopstupno, onda će vam pokazati default "
513
  "sliku kao što je odredjeno iznad"
514
 
515
+ #: admin.inc.php:459
516
  #, fuzzy
517
  msgid "Custom CSS"
518
  msgstr "Custom stilovi"
519
 
520
+ #: admin.inc.php:462
521
  msgid "Use default style included in the plugin?"
522
  msgstr ""
523
 
524
+ #: admin.inc.php:465
525
  msgid ""
526
  "Top 10 includes a default style that makes your popular posts list to look "
527
  "pretty. Check the box above if you want to use this. You will need to select "
529
  "Widget."
530
  msgstr ""
531
 
532
+ #: admin.inc.php:468
533
  msgid "Custom CSS to add to header:"
534
  msgstr "Custom CSS je dodat header-u"
535
 
536
+ #: admin.inc.php:471
537
  msgid ""
538
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
539
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
543
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> za "
544
  "dostupne CSS klase za stilizovanje."
545
 
546
+ #: admin.inc.php:478 admin.inc.php:544
547
  #, fuzzy
548
  msgid "Save Options"
549
  msgstr "Options:"
550
 
551
+ #: admin.inc.php:479
552
  #, fuzzy
553
  msgid "Default Options"
554
  msgstr "Paramètres de sortie"
555
 
556
+ #: admin.inc.php:479
557
  msgid "Do you want to set options to Default?"
558
  msgstr "Da li želite da postavite opcije na Default?"
559
 
560
+ #: admin.inc.php:488
561
  msgid "Maintenance"
562
  msgstr "Održavanje"
563
 
564
+ #: admin.inc.php:492
565
  #, fuzzy
566
  msgid ""
567
  "Over time the Daily Top 10 database grows in size, which reduces the "
573
  "plugina. Čišćenje baze podataka u regularnim intervalima može poboljšati "
574
  "performanse naročito na blogovima sa velikim saobraćajem."
575
 
576
+ #: admin.inc.php:493
577
  #, fuzzy
578
  msgid ""
579
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
583
  "kroniranje svaki put kada se poslu promeni raspored (npr. ako promenite "
584
  "postavke ispod) Ovo prouzrokuje dnevne postove tabele za resetovanje."
585
 
586
+ #: admin.inc.php:496
587
  msgid "Enable scheduled maintenance of daily tables:"
588
  msgstr "Omogući raspored održavanja u dnevnim tabelama"
589
 
590
+ #: admin.inc.php:500
591
  msgid "Time to run maintenance"
592
  msgstr "Pokrenuti održavanje"
593
 
594
+ #: admin.inc.php:501
595
  msgid "hrs"
596
  msgstr ""
597
 
598
+ #: admin.inc.php:501
599
  msgid "min"
600
  msgstr ""
601
 
602
+ #: admin.inc.php:503
603
  msgid "How often should the maintenance be run:"
604
  msgstr "Održavanje ne treba često da se pokreće"
605
 
606
+ #: admin.inc.php:507
607
  msgid "Daily"
608
  msgstr "Dnevno"
609
 
610
+ #: admin.inc.php:511
611
  msgid "Weekly"
612
  msgstr "Nedeljno"
613
 
614
+ #: admin.inc.php:515
615
  msgid "Fortnightly"
616
  msgstr "Na dve nedelje"
617
 
618
+ #: admin.inc.php:519
619
  msgid "Monthly"
620
  msgstr "Mesečno"
621
 
622
+ #: admin.inc.php:528
623
  msgid "The cron job has been scheduled. Maintenance will run "
624
  msgstr "Kroniranje je zakazano. Održavanje će se pokrenuti"
625
 
626
+ #: admin.inc.php:533
627
  msgid "The cron job is missing. Please resave this page to add the job"
628
  msgstr ""
629
  "Nedostaje kroniranje. Molim vas ponovo sašuvajte ovu stranicu da biste "
630
  "dodali posao"
631
 
632
+ #: admin.inc.php:538
633
  msgid "Maintenance is turned off"
634
  msgstr "Održavanje je ugašeno"
635
 
636
+ #: admin.inc.php:552
637
  msgid "Reset count"
638
  msgstr "Resetuj brojanje"
639
 
640
+ #: admin.inc.php:555
641
  msgid ""
642
  "This cannot be reversed. Make sure that your database has been backed up "
643
  "before proceeding"
645
  "Ovo ne možete da proništite. Proverite da li vam je baza podataka sačuvana u "
646
  "back up-u pre nego što nastavite"
647
 
648
+ #: admin.inc.php:558
649
  #, fuzzy
650
  msgid "Reset Popular Posts"
651
  msgstr "Postes populaires"
652
 
653
+ #: admin.inc.php:558
654
  msgid "Are you sure you want to reset the popular posts?"
655
  msgstr "Da li ste sigurni da želite da resetujete popularne postove?"
656
 
657
+ #: admin.inc.php:559
658
  #, fuzzy
659
  msgid "Reset Daily Popular Posts"
660
  msgstr "Postes populaires journaliers"
661
 
662
+ #: admin.inc.php:559
663
  msgid "Are you sure you want to reset the daily popular posts?"
664
  msgstr "Da li ste sigurni da želite da resetujete dnevne popularne postove?"
665
 
666
+ #: admin.inc.php:560
667
  msgid "Clear duplicates"
668
  msgstr "Obrišite duplikate"
669
 
670
+ #: admin.inc.php:560
671
  msgid "This will delete the duplicate entries in the tables. Proceed?"
672
  msgstr "Ovo će obrisati duple unose u tabelama. Nastaviti?"
673
 
674
+ #: admin.inc.php:612 admin.inc.php:1010
675
  msgid "Popular Posts"
676
  msgstr "Popularni postovi"
677
 
678
+ #: admin.inc.php:614 admin.inc.php:713
679
  msgid "Daily Popular Posts"
680
  msgstr "Dnevni popularni postovi"
681
 
682
+ #: admin.inc.php:645
683
  msgid "Support the development"
684
  msgstr "Podrška razvoju"
685
 
686
+ #: admin.inc.php:652
687
+ msgid "Donation for Top 10"
688
+ msgstr ""
689
+
690
+ #: admin.inc.php:654
691
  msgid "Enter amount in USD: "
692
  msgstr "Unesite veličinu u USD:"
693
 
694
+ #: admin.inc.php:658
695
+ #, fuzzy
696
+ msgid "Send your donation to the author of Top 10"
697
  msgstr "Pošalji vašu donaciju autoru"
698
 
699
+ #: admin.inc.php:665
700
  #, fuzzy
701
  msgid "Follow me"
702
  msgstr "Pratite nas"
703
 
704
+ #: admin.inc.php:675
705
  #, fuzzy
706
  msgid "Quick links"
707
  msgstr "Liens rapides"
708
 
709
+ #: admin.inc.php:679
710
  #, fuzzy
711
  msgid "Top 10 plugin page"
712
  msgstr "Page de plugin"
713
 
714
+ #: admin.inc.php:680
715
  msgid "Other plugins"
716
  msgstr "Brzi linkovi"
717
 
718
+ #: admin.inc.php:681
719
  msgid "Ajay's blog"
720
  msgstr "Ajayov blog"
721
 
722
+ #: admin.inc.php:682
723
  msgid "FAQ"
724
  msgstr ""
725
 
726
+ #: admin.inc.php:683 top-10.php:1345
727
  msgid "Support"
728
  msgstr "Podrška"
729
 
730
+ #: admin.inc.php:684
731
  msgid "Reviews"
732
  msgstr ""
733
 
734
+ #: admin.inc.php:704 admin.inc.php:707
735
  #, fuzzy
736
  msgid "Top 10 Settings"
737
  msgstr "Paramètres"
738
 
739
+ #: admin.inc.php:704 admin.inc.php:1183
740
  msgid "Top 10"
741
  msgstr "Top 10"
742
 
743
+ #: admin.inc.php:710
744
  #, fuzzy
745
  msgid "Overall Popular Posts"
746
  msgstr "Voir tous les postes populaires"
747
 
748
+ #: admin.inc.php:882
749
  #, php-format
750
  msgid "Results %1$s to %2$s of %3$s"
751
  msgstr ""
752
 
753
+ #: admin.inc.php:886
754
  #, php-format
755
  msgid "Page %s of %s"
756
  msgstr ""
757
 
758
+ #: admin.inc.php:898
759
  msgid "View Daily Popular Posts"
760
  msgstr "Pregledaj dnevne popularne postove"
761
 
762
+ #: admin.inc.php:901 admin.inc.php:914
763
  msgid "Results per-page:"
764
  msgstr "Rezultat po stranici:"
765
 
766
+ #: admin.inc.php:911
767
  msgid "View Overall Popular Posts"
768
  msgstr "Pregledaj sve popularne postove"
769
 
770
+ #: admin.inc.php:940
771
  msgid "Previous"
772
  msgstr "Prethodni"
773
 
774
+ #: admin.inc.php:968
775
  msgid "Next"
776
  msgstr "Sledeći"
777
 
778
+ #: admin.inc.php:1011
779
  msgid "Daily Popular"
780
  msgstr "Dnevno popularno"
781
 
782
+ #: admin.inc.php:1029
783
  #, fuzzy
784
  msgid "Total Views"
785
  msgstr "Total/aujourd'hui visionnages"
786
 
787
+ #: admin.inc.php:1030
788
  #, fuzzy
789
  msgid "Today's Views"
790
  msgstr "Total/aujourd'hui visionnages"
791
 
792
+ #: admin.inc.php:1031
793
  #, fuzzy
794
  msgid "Views"
795
  msgstr "Total/aujourd'hui visionnages"
796
 
797
+ #: admin.inc.php:1217
798
+ #, fuzzy
799
+ msgid "Visit count:"
800
+ msgstr "Resetuj brojanje"
801
+
802
+ #: admin.inc.php:1219
803
+ msgid ""
804
+ "Enter a number above to update the visit count. Leaving the above box blank "
805
+ "will set the count to zero"
806
  msgstr ""
807
 
808
+ #: admin.inc.php:1229
809
+ #, fuzzy
810
+ msgid "Location of thumbnail:"
811
+ msgstr "Lokacija posta thumbnaila:"
812
 
813
+ #: admin.inc.php:1231
814
+ msgid ""
815
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
816
+ "image will be used for the post. It will be resized to the thumbnail size "
817
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
818
+ msgstr ""
819
+
820
+ #: admin.inc.php:1232
821
+ msgid "The URL above is saved in the meta field: "
822
+ msgstr ""
823
+
824
+ #: top-10.php:456
825
+ msgid " by "
826
+ msgstr ""
827
+
828
+ #: top-10.php:550
829
  #, fuzzy
830
  msgid "Popular Posts [Top 10]"
831
  msgstr "Postes populaires"
832
 
833
+ #: top-10.php:551
834
+ #, fuzzy
835
+ msgid "Display popular posts"
836
+ msgstr "Dnevni popularni postovi"
837
+
838
+ #: top-10.php:577
839
  msgid "Title"
840
  msgstr "Naslov"
841
 
842
+ #: top-10.php:582
843
  msgid "No. of posts"
844
  msgstr "Broj postova"
845
 
846
+ #: top-10.php:587
847
  msgid "Overall"
848
  msgstr "Sve ukupno"
849
 
850
+ #: top-10.php:588
851
  msgid "Custom time period (Enter below)"
852
  msgstr "Vremenski period (unesite ispod)"
853
 
854
+ #: top-10.php:593
855
  msgid "Range in number of days (applies only to custom option above)"
856
  msgstr "Raspon dana (odnosi se samo na iznad)"
857
 
858
+ #: top-10.php:598
859
  #, fuzzy
860
+ msgid "Show count?"
861
  msgstr "Prikaži autora?"
862
 
863
+ #: top-10.php:603
864
  #, fuzzy
865
+ msgid "Show excerpt?"
866
  msgstr "Afficher le fragment du message dans la liste?"
867
 
868
+ #: top-10.php:608
869
+ #, fuzzy
870
+ msgid "Show author?"
871
  msgstr "Prikaži autora?"
872
 
873
+ #: top-10.php:613
874
  #, fuzzy
875
+ msgid "Show date?"
876
  msgstr "Afficher le fragment du message dans la liste?"
877
 
878
+ #: top-10.php:617
879
  #, fuzzy
880
  msgid "Thumbnail options"
881
  msgstr "Options thumbnail des messages:"
882
 
883
+ #: top-10.php:619
884
  #, fuzzy
885
  msgid "Thumbnails inline, before title"
886
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
887
 
888
+ #: top-10.php:620
889
  #, fuzzy
890
  msgid "Thumbnails inline, after title"
891
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
892
 
893
+ #: top-10.php:621
894
  #, fuzzy
895
  msgid "Only thumbnails, no text"
896
  msgstr "Afficher uniquement le thumbnail, sans le texte"
897
 
898
+ #: top-10.php:622
899
  #, fuzzy
900
  msgid "No thumbnails, only text."
901
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
902
 
903
+ #: top-10.php:627
904
  #, fuzzy
905
  msgid "Thumbnail height"
906
  msgstr "Options thumbnail des messages:"
907
 
908
+ #: top-10.php:632
909
  #, fuzzy
910
  msgid "Thumbnail width"
911
  msgstr "Options thumbnail des messages:"
912
 
913
+ #: top-10.php:772
914
  msgid "<h3>Popular Posts</h3>"
915
  msgstr "<h3>Popularni Postovi</h3>"
916
 
917
+ #: top-10.php:773
918
  msgid "<h3>Daily Popular</h3>"
919
  msgstr "<h3>Dnevni popularni</h3>"
920
 
921
+ #: top-10.php:774
922
  #, fuzzy
923
  msgid "No top posts yet"
924
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
925
 
926
+ #: top-10.php:1245
927
  msgid "Once Weekly"
928
  msgstr "Jednom nedeljno"
929
 
930
+ #: top-10.php:1249
931
  msgid "Once Fortnightly"
932
  msgstr "Jednom u dve nedelje"
933
 
934
+ #: top-10.php:1253
935
  msgid "Once Monthly"
936
  msgstr "Jednom mesečno"
937
 
938
+ #: top-10.php:1323
939
  msgid "Settings"
940
  msgstr "Postavke"
941
 
942
+ #: top-10.php:1346
943
  msgid "Donate"
944
  msgstr "Donirajte"
945
 
946
+ #~ msgid "Display the posts popular this week"
947
+ #~ msgstr "Prikazati postove popularne ove nedelje"
948
+
949
  #, fuzzy
950
  #~ msgid "This option uses JavaScript and will increase your page load time"
951
  #~ msgstr ""
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: 2014-02-20 23:16-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
@@ -12,201 +12,215 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:112
19
  msgid "Options saved successfully."
20
  msgstr "Установки збережені."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Установки скинуті."
25
 
26
- #: admin.inc.php:128
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Скинути статистику найпопулярніших записів"
29
 
30
- #: admin.inc.php:134
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
33
 
34
- #: admin.inc.php:141
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
- #: admin.inc.php:156
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
- #: admin.inc.php:172
47
- msgid "General options"
 
48
  msgstr ""
49
 
50
  #: admin.inc.php:176
 
 
 
 
51
  msgid "Enable Overall stats"
52
  msgstr ""
53
 
54
- #: admin.inc.php:181
55
  msgid "Enable Daily stats"
56
  msgstr ""
57
 
58
- #: admin.inc.php:186
59
  msgid "W3 Total Cache fix:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:188
63
  msgid ""
64
  "This will try to prevent W3 Total Cache from caching the addcount script of "
65
  "the plugin. Try toggling this option in case you find that our posts are not "
66
  "tracked."
67
  msgstr ""
68
 
69
- #: admin.inc.php:192
70
  msgid "Number of popular posts to display: "
71
  msgstr "Кількість Популярних записів у списку:"
72
 
73
- #: admin.inc.php:194
74
  msgid ""
75
  "Maximum number of posts that will be displayed in the list. This option is "
76
  "used if you don't specify the number of posts in the widget or shortcodes"
77
  msgstr ""
78
 
79
- #: admin.inc.php:198
80
  msgid "Daily Popular should contain views of how many days? "
81
  msgstr ""
82
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
83
 
84
- #: admin.inc.php:200
85
  msgid ""
86
  "Instead of displaying popular posts fromt he past day, this setting lets you "
87
  "display posts for as many days as you want. This can be overridden in the "
88
  "widget."
89
  msgstr ""
90
 
91
- #: admin.inc.php:203
92
  msgid "Post types to include in results (including custom post types)"
93
  msgstr ""
94
 
95
- #: admin.inc.php:214
96
  msgid "List of post or page IDs to exclude from the results: "
97
  msgstr ""
98
 
99
- #: admin.inc.php:216 admin.inc.php:352
100
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
101
  msgstr ""
102
 
103
- #: admin.inc.php:220
104
  msgid "Exclude Categories: "
105
  msgstr "Виключити Категорії:"
106
 
107
- #: admin.inc.php:235
108
  msgid ""
109
  "Comma separated list of category slugs. The field above has an autocomplete "
110
  "so simply start typing in the starting letters and it will prompt you with "
111
  "options"
112
  msgstr ""
113
 
114
- #: admin.inc.php:240
115
  #, fuzzy
116
  msgid "Display number of views on:"
117
  msgstr "Показувати кількість переглядів запису?"
118
 
119
- #: admin.inc.php:242
120
  msgid "Posts"
121
  msgstr ""
122
 
123
- #: admin.inc.php:243
124
  #, fuzzy
125
  msgid "Pages"
126
  msgstr "Сторінка"
127
 
128
- #: admin.inc.php:244
129
  msgid "Home page"
130
  msgstr ""
131
 
132
- #: admin.inc.php:245
133
  msgid "Feeds"
134
  msgstr ""
135
 
136
- #: admin.inc.php:246
137
  msgid "Category archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:247
141
  msgid "Tag archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:248
145
  msgid "Other archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:249
149
  msgid ""
150
- "If you choose to disable this, please add <code>&lt;?php "
151
- "if(function_exists('echo_ald_tptn')) echo_ald_tptn(); ?&gt;</code> to your "
152
- "template file where you want it displayed"
153
  msgstr ""
154
 
155
- #: admin.inc.php:252
156
  msgid "Always display latest post count"
157
  msgstr ""
158
 
159
- #: admin.inc.php:254
160
  msgid ""
161
  "This option uses JavaScript and will increase your page load time. Turn this "
162
  "off if you are not using caching plugins or are OK with displaying older "
163
  "cached counts."
164
  msgstr ""
165
 
166
- #: admin.inc.php:257
167
  msgid "Track visits of authors on their own posts?"
168
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
169
 
170
- #: admin.inc.php:259
171
  msgid ""
172
  "Disabling this option will stop authors visits tracked on their own posts"
173
  msgstr ""
174
 
175
- #: admin.inc.php:262
176
  #, fuzzy
177
  msgid "Track visits of admins?"
178
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
179
 
180
- #: admin.inc.php:264
181
  msgid "Disabling this option will stop admin visits being tracked."
182
  msgstr ""
183
 
184
- #: admin.inc.php:267
 
 
 
 
 
 
 
 
 
185
  msgid "Display page views on Posts and Pages in Admin"
186
  msgstr ""
187
 
188
- #: admin.inc.php:270
189
  msgid ""
190
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
191
  "and All Pages"
192
  msgstr ""
193
 
194
- #: admin.inc.php:273
195
  #, fuzzy
196
  msgid "Show number of views to non-admins"
197
  msgstr "Показувати кількість переглядів сторінки?"
198
 
199
- #: admin.inc.php:276
200
  msgid ""
201
  "If you disable this then non-admins won't see the above columns or view the "
202
  "independent pages with the top posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:279
206
  msgid "Link to Top 10 plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:282
210
  #, fuzzy
211
  msgid ""
212
  "A link to the plugin is added as an extra list item to the list of popular "
@@ -215,19 +229,19 @@ msgstr ""
215
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
216
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
217
 
218
- #: admin.inc.php:289
219
  #, fuzzy
220
  msgid "Output options"
221
  msgstr "Установки плагіна:"
222
 
223
- #: admin.inc.php:292
224
  #, fuzzy
225
  msgid "Format to display the post views:"
226
  msgstr ""
227
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
228
  "за день, за весь час для записів/сторінок:"
229
 
230
- #: admin.inc.php:294
231
  #, fuzzy
232
  msgid ""
233
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
@@ -239,11 +253,11 @@ msgstr ""
239
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
240
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
241
 
242
- #: admin.inc.php:297
243
  msgid "What do display when there are no visits?"
244
  msgstr ""
245
 
246
- #: admin.inc.php:299
247
  msgid ""
248
  "This text applies only when there are 0 hits for the post and it isn't a "
249
  "single page. e.g. if you display post views on the homepage or archives then "
@@ -251,165 +265,175 @@ msgid ""
251
  "option."
252
  msgstr ""
253
 
254
- #: admin.inc.php:302
255
  msgid "Title of popular posts: "
256
  msgstr "Заголовок списку Популярних записів:"
257
 
258
- #: admin.inc.php:305
259
  msgid "Title of daily popular posts: "
260
  msgstr "Заголовок списку Популярних сьогодні записів:"
261
 
262
- #: admin.inc.php:308
263
  msgid "When there are no posts, what should be shown?"
264
  msgstr ""
265
 
266
- #: admin.inc.php:312
267
  msgid "Blank Output"
268
  msgstr ""
269
 
270
- #: admin.inc.php:316
271
  msgid "Display:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:320
275
  msgid "Show post excerpt in list?"
276
  msgstr "Показувати текст запису в списку?"
277
 
278
- #: admin.inc.php:323
279
  msgid "Length of excerpt (in words): "
280
  msgstr "Довжина виведеного тексту (в словах):"
281
 
282
- #: admin.inc.php:326
283
  #, fuzzy
284
  msgid "Show post author in list?"
285
  msgstr "Показувати текст запису в списку?"
286
 
287
- #: admin.inc.php:329
288
  #, fuzzy
289
  msgid "Show post date in list?"
290
  msgstr "Показувати текст запису в списку?"
291
 
292
- #: admin.inc.php:332
293
  msgid "Limit post title length (in characters)"
294
  msgstr ""
295
 
296
- #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show view count in list?"
299
  msgstr "Показувати текст запису в списку?"
300
 
301
- #: admin.inc.php:338
302
  msgid "Always display latest post count in the daily lists?"
303
  msgstr ""
304
 
305
- #: admin.inc.php:340
306
  msgid ""
307
  "This option uses JavaScript and will increase your page load time. When you "
308
  "enable this option, the daily widget will not use the options set there, but "
309
  "options will need to be set on this screen."
310
  msgstr ""
311
 
312
- #: admin.inc.php:343
313
  msgid "Open links in new window"
314
  msgstr ""
315
 
316
- #: admin.inc.php:346
317
  msgid "Add nofollow attribute to links in the list"
318
  msgstr ""
319
 
320
- #: admin.inc.php:349
321
  msgid "Exclude display of related posts on these posts / pages"
322
  msgstr ""
323
 
324
- #: admin.inc.php:355
325
  #, fuzzy
326
  msgid "Customise the list HTML"
327
  msgstr "Установки оформлення списку:"
328
 
329
- #: admin.inc.php:357
330
  msgid "HTML to display before the list of posts: "
331
  msgstr "HTML-тег, який використовується перед списком:"
332
 
333
- #: admin.inc.php:360
334
  msgid "HTML to display before each list item: "
335
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
336
 
337
- #: admin.inc.php:363
338
  msgid "HTML to display after each list item: "
339
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
340
 
341
- #: admin.inc.php:366
342
  msgid "HTML to display after the list of posts: "
343
  msgstr "HTML-тег, який використовується після списку:"
344
 
345
- #: admin.inc.php:369
346
  msgid "Post thumbnail options:"
347
  msgstr "Установки превью до записів:"
348
 
349
- #: admin.inc.php:371
350
  msgid "Location of post thumbnail:"
351
  msgstr ""
352
 
353
- #: admin.inc.php:375
354
  #, fuzzy
355
  msgid "Display thumbnails inline with posts, before title"
356
  msgstr "Відображати і превью, і текст"
357
 
358
- #: admin.inc.php:379
359
  #, fuzzy
360
  msgid "Display thumbnails inline with posts, after title"
361
  msgstr "Відображати і превью, і текст"
362
 
363
- #: admin.inc.php:383
364
  msgid "Display only thumbnails, no text"
365
  msgstr "Показувати тільки превью, без тексту"
366
 
367
- #: admin.inc.php:387
368
  msgid "Do not display thumbnails, only text."
369
  msgstr "Показувати лише текст, без превью"
370
 
371
- #: admin.inc.php:391
372
  msgid "Width of the thumbnail: "
373
  msgstr ""
374
 
375
- #: admin.inc.php:394
376
  msgid "Height of the thumbnail: "
377
  msgstr ""
378
 
379
- #: admin.inc.php:397
380
  msgid "Style attributes / Width and Height HTML attributes:"
381
  msgstr ""
382
 
383
- #: admin.inc.php:401
384
  msgid "Style attributes are used for width and height."
385
  msgstr ""
386
 
387
- #: admin.inc.php:405
388
  msgid "HTML width and height attributes are used for width and height."
389
  msgstr ""
390
 
391
- #: admin.inc.php:409
392
  msgid "Use timthumb to generate thumbnails? "
393
  msgstr ""
394
 
395
- #: admin.inc.php:412
396
  msgid ""
397
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
398
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
399
  msgstr ""
400
 
401
- #: admin.inc.php:415
 
 
 
 
 
 
 
 
 
 
402
  #, fuzzy
403
  msgid "Post thumbnail meta field name: "
404
  msgstr "Установки превью до записів:"
405
 
406
- #: admin.inc.php:418
407
  msgid ""
408
  "The value of this field should contain the image source and is set in the "
409
  "<em>Add New Post</em> screen"
410
  msgstr ""
411
 
412
- #: admin.inc.php:421
413
  #, fuzzy
414
  msgid ""
415
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -419,7 +443,7 @@ msgstr ""
419
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
420
  "так як буде створюватися зменшена копія зображення"
421
 
422
- #: admin.inc.php:424
423
  #, fuzzy
424
  msgid ""
425
  "This could slow down the loading of your page if the first image in the "
@@ -429,21 +453,21 @@ msgstr ""
429
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
430
  "так як буде створюватися зменшена копія зображення"
431
 
432
- #: admin.inc.php:427
433
  msgid "Use default thumbnail? "
434
  msgstr ""
435
 
436
- #: admin.inc.php:430
437
  msgid ""
438
  "If checked, when no thumbnail is found, show a default one from the URL "
439
  "below. If not checked and no thumbnail is found, no image will be shown."
440
  msgstr ""
441
 
442
- #: admin.inc.php:433
443
  msgid "Default thumbnail: "
444
  msgstr ""
445
 
446
- #: admin.inc.php:437
447
  #, fuzzy
448
  msgid ""
449
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -454,15 +478,15 @@ msgstr ""
454
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
455
  "замовчунням:"
456
 
457
- #: admin.inc.php:444
458
  msgid "Custom CSS"
459
  msgstr ""
460
 
461
- #: admin.inc.php:447
462
  msgid "Use default style included in the plugin?"
463
  msgstr ""
464
 
465
- #: admin.inc.php:450
466
  msgid ""
467
  "Top 10 includes a default style that makes your popular posts list to look "
468
  "pretty. Check the box above if you want to use this. You will need to select "
@@ -470,36 +494,36 @@ msgid ""
470
  "Widget."
471
  msgstr ""
472
 
473
- #: admin.inc.php:453
474
  msgid "Custom CSS to add to header:"
475
  msgstr ""
476
 
477
- #: admin.inc.php:456
478
  msgid ""
479
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
480
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
481
  "available CSS classes to style."
482
  msgstr ""
483
 
484
- #: admin.inc.php:463 admin.inc.php:529
485
  #, fuzzy
486
  msgid "Save Options"
487
  msgstr "Установки плагіна:"
488
 
489
- #: admin.inc.php:464
490
  #, fuzzy
491
  msgid "Default Options"
492
  msgstr "Установки плагіна:"
493
 
494
- #: admin.inc.php:464
495
  msgid "Do you want to set options to Default?"
496
  msgstr "Скинути налаштування плагіна?"
497
 
498
- #: admin.inc.php:473
499
  msgid "Maintenance"
500
  msgstr ""
501
 
502
- #: admin.inc.php:477
503
  msgid ""
504
  "Over time the Daily Top 10 database grows in size, which reduces the "
505
  "performance of the plugin. Cleaning the database at regular intervals could "
@@ -507,65 +531,65 @@ msgid ""
507
  "will automatically delete entries older than 90 days."
508
  msgstr ""
509
 
510
- #: admin.inc.php:478
511
  msgid ""
512
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
513
  "everytime the job is rescheduled (i.e. you change the settings below)."
514
  msgstr ""
515
 
516
- #: admin.inc.php:481
517
  msgid "Enable scheduled maintenance of daily tables:"
518
  msgstr ""
519
 
520
- #: admin.inc.php:485
521
  msgid "Time to run maintenance"
522
  msgstr ""
523
 
524
- #: admin.inc.php:486
525
  msgid "hrs"
526
  msgstr ""
527
 
528
- #: admin.inc.php:486
529
  msgid "min"
530
  msgstr ""
531
 
532
- #: admin.inc.php:488
533
  msgid "How often should the maintenance be run:"
534
  msgstr ""
535
 
536
- #: admin.inc.php:492
537
  msgid "Daily"
538
  msgstr ""
539
 
540
- #: admin.inc.php:496
541
  msgid "Weekly"
542
  msgstr ""
543
 
544
- #: admin.inc.php:500
545
  msgid "Fortnightly"
546
  msgstr ""
547
 
548
- #: admin.inc.php:504
549
  msgid "Monthly"
550
  msgstr ""
551
 
552
- #: admin.inc.php:513
553
  msgid "The cron job has been scheduled. Maintenance will run "
554
  msgstr ""
555
 
556
- #: admin.inc.php:518
557
  msgid "The cron job is missing. Please resave this page to add the job"
558
  msgstr ""
559
 
560
- #: admin.inc.php:523
561
  msgid "Maintenance is turned off"
562
  msgstr ""
563
 
564
- #: admin.inc.php:537
565
  msgid "Reset count"
566
  msgstr "Скинути статистику"
567
 
568
- #: admin.inc.php:540
569
  msgid ""
570
  "This cannot be reversed. Make sure that your database has been backed up "
571
  "before proceeding"
@@ -573,267 +597,300 @@ msgstr ""
573
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
574
  "переконайтесь, що у вас є копія вашої бази даних!"
575
 
576
- #: admin.inc.php:543
577
  #, fuzzy
578
  msgid "Reset Popular Posts"
579
  msgstr "Популярні записи"
580
 
581
- #: admin.inc.php:543
582
  msgid "Are you sure you want to reset the popular posts?"
583
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
584
 
585
- #: admin.inc.php:544
586
  #, fuzzy
587
  msgid "Reset Daily Popular Posts"
588
  msgstr "Популярні сьогодні записи"
589
 
590
- #: admin.inc.php:544
591
  msgid "Are you sure you want to reset the daily popular posts?"
592
  msgstr ""
593
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
594
 
595
- #: admin.inc.php:545
596
  msgid "Clear duplicates"
597
  msgstr ""
598
 
599
- #: admin.inc.php:545
600
  msgid "This will delete the duplicate entries in the tables. Proceed?"
601
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
602
 
603
- #: admin.inc.php:593 admin.inc.php:979
604
  msgid "Popular Posts"
605
  msgstr "Популярні записи"
606
 
607
- #: admin.inc.php:593 admin.inc.php:688
608
  msgid "Daily Popular Posts"
609
  msgstr "Популярні сьогодні записи"
610
 
611
- #: admin.inc.php:621
612
  msgid "Support the development"
613
  msgstr "Підтримати автора плагіна"
614
 
615
- #: admin.inc.php:630
 
 
 
 
616
  msgid "Enter amount in USD: "
617
  msgstr "Скільки ви готові пожертвувати (в USD):"
618
 
619
- #: admin.inc.php:634
620
- msgid "Send your donation to the author of"
 
621
  msgstr "Відправте пожертву автору"
622
 
623
- #: admin.inc.php:641
624
  msgid "Follow me"
625
  msgstr ""
626
 
627
- #: admin.inc.php:651
628
  #, fuzzy
629
  msgid "Quick links"
630
  msgstr "Корисні посилання"
631
 
632
- #: admin.inc.php:655
633
  #, fuzzy
634
  msgid "Top 10 plugin page"
635
  msgstr "Сторінка плагіна"
636
 
637
- #: admin.inc.php:656
638
  msgid "Other plugins"
639
  msgstr "Інші плагіни автора"
640
 
641
- #: admin.inc.php:657
642
  msgid "Ajay's blog"
643
  msgstr "Блог Ajay"
644
 
645
- #: admin.inc.php:658
646
  msgid "FAQ"
647
  msgstr ""
648
 
649
- #: admin.inc.php:659 top-10.php:1267
650
  msgid "Support"
651
  msgstr "Підтримка (англ.)"
652
 
653
- #: admin.inc.php:660
654
  msgid "Reviews"
655
  msgstr ""
656
 
657
- #: admin.inc.php:679 admin.inc.php:682
658
  #, fuzzy
659
  msgid "Top 10 Settings"
660
  msgstr "Налаштування плагіна"
661
 
662
- #: admin.inc.php:679
663
  msgid "Top 10"
664
  msgstr "Топ 10 записів"
665
 
666
- #: admin.inc.php:685
667
  #, fuzzy
668
  msgid "Overall Popular Posts"
669
  msgstr "Подивитися всі Популярні записи"
670
 
671
- #: admin.inc.php:850
672
  #, php-format
673
  msgid "Results %1$s to %2$s of %3$s"
674
  msgstr ""
675
 
676
- #: admin.inc.php:854
677
  #, php-format
678
  msgid "Page %s of %s"
679
  msgstr ""
680
 
681
- #: admin.inc.php:866
682
  msgid "View Daily Popular Posts"
683
  msgstr "Подивитися всі Популярні сьогодні записи"
684
 
685
- #: admin.inc.php:869 admin.inc.php:882
686
  msgid "Results per-page:"
687
  msgstr "Результатів на сторінку:"
688
 
689
- #: admin.inc.php:879
690
  msgid "View Overall Popular Posts"
691
  msgstr "Подивитися всі Популярні записи"
692
 
693
- #: admin.inc.php:908
694
  msgid "Previous"
695
  msgstr "Попередня сторінка"
696
 
697
- #: admin.inc.php:936
698
  msgid "Next"
699
  msgstr "Наступна сторінка"
700
 
701
- #: admin.inc.php:980
702
  msgid "Daily Popular"
703
  msgstr "Популярні сьогодні записи"
704
 
705
- #: admin.inc.php:998
706
  #, fuzzy
707
  msgid "Total Views"
708
  msgstr "Всього/Сьогодні"
709
 
710
- #: admin.inc.php:999
711
  #, fuzzy
712
  msgid "Today's Views"
713
  msgstr "Всього/Сьогодні"
714
 
715
- #: admin.inc.php:1000
716
  #, fuzzy
717
  msgid "Views"
718
  msgstr "Всього/Сьогодні"
719
 
720
- #: top-10.php:438
721
- msgid " by "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  msgstr ""
723
 
724
- #: top-10.php:524
725
- msgid "Display the posts popular this week"
 
 
 
 
726
  msgstr ""
727
 
728
- #: top-10.php:525
729
  #, fuzzy
730
  msgid "Popular Posts [Top 10]"
731
  msgstr "Популярні записи"
732
 
733
- #: top-10.php:543
 
 
 
 
 
734
  msgid "Title"
735
  msgstr ""
736
 
737
- #: top-10.php:548
738
  msgid "No. of posts"
739
  msgstr ""
740
 
741
- #: top-10.php:553
742
  msgid "Overall"
743
  msgstr ""
744
 
745
- #: top-10.php:554
746
  msgid "Custom time period (Enter below)"
747
  msgstr ""
748
 
749
- #: top-10.php:559
750
  msgid "Range in number of days (applies only to custom option above)"
751
  msgstr ""
752
 
753
- #: top-10.php:564
754
  #, fuzzy
755
- msgid " Show count?"
756
  msgstr "Показувати текст запису в списку?"
757
 
758
- #: top-10.php:569
759
  #, fuzzy
760
- msgid " Show excerpt?"
761
  msgstr "Показувати текст запису в списку?"
762
 
763
- #: top-10.php:574
764
- msgid " Show author?"
765
- msgstr ""
 
766
 
767
- #: top-10.php:579
768
  #, fuzzy
769
- msgid " Show date?"
770
  msgstr "Показувати текст запису в списку?"
771
 
772
- #: top-10.php:583
773
  #, fuzzy
774
  msgid "Thumbnail options"
775
  msgstr "Установки превью до записів:"
776
 
777
- #: top-10.php:585
778
  #, fuzzy
779
  msgid "Thumbnails inline, before title"
780
  msgstr "Відображати і превью, і текст"
781
 
782
- #: top-10.php:586
783
  #, fuzzy
784
  msgid "Thumbnails inline, after title"
785
  msgstr "Відображати і превью, і текст"
786
 
787
- #: top-10.php:587
788
  #, fuzzy
789
  msgid "Only thumbnails, no text"
790
  msgstr "Показувати тільки превью, без тексту"
791
 
792
- #: top-10.php:588
793
  #, fuzzy
794
  msgid "No thumbnails, only text."
795
  msgstr "Показувати лише текст, без превью"
796
 
797
- #: top-10.php:593
798
  #, fuzzy
799
  msgid "Thumbnail height"
800
  msgstr "Установки превью до записів:"
801
 
802
- #: top-10.php:598
803
  #, fuzzy
804
  msgid "Thumbnail width"
805
  msgstr "Установки превью до записів:"
806
 
807
- #: top-10.php:719
808
  msgid "<h3>Popular Posts</h3>"
809
  msgstr "<h3>Популярні записи</h3>"
810
 
811
- #: top-10.php:720
812
  msgid "<h3>Daily Popular</h3>"
813
  msgstr "<h3>Популярні сьогодні записи</h3>"
814
 
815
- #: top-10.php:721
816
  #, fuzzy
817
  msgid "No top posts yet"
818
  msgstr "Скинути статистику найпопулярніших записів"
819
 
820
- #: top-10.php:1184
821
  msgid "Once Weekly"
822
  msgstr ""
823
 
824
- #: top-10.php:1188
825
  msgid "Once Fortnightly"
826
  msgstr ""
827
 
828
- #: top-10.php:1192
829
  msgid "Once Monthly"
830
  msgstr ""
831
 
832
- #: top-10.php:1255
833
  msgid "Settings"
834
  msgstr "Налаштування плагіна"
835
 
836
- #: top-10.php:1268
837
  msgid "Donate"
838
  msgstr "Зробити внесок"
839
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-21 21:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.6.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:115
19
  msgid "Options saved successfully."
20
  msgstr "Установки збережені."
21
 
22
+ #: admin.inc.php:125
23
  msgid "Options set to Default."
24
  msgstr "Установки скинуті."
25
 
26
+ #: admin.inc.php:131
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Скинути статистику найпопулярніших записів"
29
 
30
+ #: admin.inc.php:137
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
33
 
34
+ #: admin.inc.php:144
35
  msgid "Duplicate rows cleaned from tables"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:156
39
  msgid "Scheduled maintenance enabled / modified"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:160
43
  msgid "Scheduled maintenance disabled"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175 admin.inc.php:297 admin.inc.php:458 admin.inc.php:487
47
+ #: admin.inc.php:551 admin.inc.php:644 admin.inc.php:664 admin.inc.php:674
48
+ msgid "Click to toggle"
49
  msgstr ""
50
 
51
  #: admin.inc.php:176
52
+ msgid "General options"
53
+ msgstr ""
54
+
55
+ #: admin.inc.php:180
56
  msgid "Enable Overall stats"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:185
60
  msgid "Enable Daily stats"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:190
64
  msgid "W3 Total Cache fix:"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:192
68
  msgid ""
69
  "This will try to prevent W3 Total Cache from caching the addcount script of "
70
  "the plugin. Try toggling this option in case you find that our posts are not "
71
  "tracked."
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "Number of popular posts to display: "
76
  msgstr "Кількість Популярних записів у списку:"
77
 
78
+ #: admin.inc.php:198
79
  msgid ""
80
  "Maximum number of posts that will be displayed in the list. This option is "
81
  "used if you don't specify the number of posts in the widget or shortcodes"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:202
85
  msgid "Daily Popular should contain views of how many days? "
86
  msgstr ""
87
  "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
88
 
89
+ #: admin.inc.php:204
90
  msgid ""
91
  "Instead of displaying popular posts fromt he past day, this setting lets you "
92
  "display posts for as many days as you want. This can be overridden in the "
93
  "widget."
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:218
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
+ #: admin.inc.php:220 admin.inc.php:361
105
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:224
109
  msgid "Exclude Categories: "
110
  msgstr "Виключити Категорії:"
111
 
112
+ #: admin.inc.php:239
113
  msgid ""
114
  "Comma separated list of category slugs. The field above has an autocomplete "
115
  "so simply start typing in the starting letters and it will prompt you with "
116
  "options"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:244
120
  #, fuzzy
121
  msgid "Display number of views on:"
122
  msgstr "Показувати кількість переглядів запису?"
123
 
124
+ #: admin.inc.php:246
125
  msgid "Posts"
126
  msgstr ""
127
 
128
+ #: admin.inc.php:247
129
  #, fuzzy
130
  msgid "Pages"
131
  msgstr "Сторінка"
132
 
133
+ #: admin.inc.php:248
134
  msgid "Home page"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:249
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:250
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:251
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:252
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:253
154
  msgid ""
155
+ "If you choose to disable this, please add <code>&lt;?php if "
156
+ "( function_exists ( 'echo_tptn_post_count' ) ) echo_tptn_post_count(); ?&gt;"
157
+ "</code> to your template file where you want it displayed"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:256
161
  msgid "Always display latest post count"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:258
165
  msgid ""
166
  "This option uses JavaScript and will increase your page load time. Turn this "
167
  "off if you are not using caching plugins or are OK with displaying older "
168
  "cached counts."
169
  msgstr ""
170
 
171
+ #: admin.inc.php:261
172
  msgid "Track visits of authors on their own posts?"
173
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
174
 
175
+ #: admin.inc.php:263
176
  msgid ""
177
  "Disabling this option will stop authors visits tracked on their own posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  #, fuzzy
182
  msgid "Track visits of admins?"
183
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
184
 
185
+ #: admin.inc.php:268
186
  msgid "Disabling this option will stop admin visits being tracked."
187
  msgstr ""
188
 
189
+ #: admin.inc.php:271
190
+ #, fuzzy
191
+ msgid "Track visits of Editors?"
192
+ msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
193
+
194
+ #: admin.inc.php:273
195
+ msgid "Disabling this option will stop editor visits being tracked."
196
+ msgstr ""
197
+
198
+ #: admin.inc.php:276
199
  msgid "Display page views on Posts and Pages in Admin"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:279
203
  msgid ""
204
  "Adds three columns called Total Views, Today's Views and Views to All Posts "
205
  "and All Pages"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:282
209
  #, fuzzy
210
  msgid "Show number of views to non-admins"
211
  msgstr "Показувати кількість переглядів сторінки?"
212
 
213
+ #: admin.inc.php:285
214
  msgid ""
215
  "If you disable this then non-admins won't see the above columns or view the "
216
  "independent pages with the top posts"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:288
220
  msgid "Link to Top 10 plugin page"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:291
224
  #, fuzzy
225
  msgid ""
226
  "A link to the plugin is added as an extra list item to the list of popular "
229
  "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
230
  "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
231
 
232
+ #: admin.inc.php:298
233
  #, fuzzy
234
  msgid "Output options"
235
  msgstr "Установки плагіна:"
236
 
237
+ #: admin.inc.php:301
238
  #, fuzzy
239
  msgid "Format to display the post views:"
240
  msgstr ""
241
  "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
242
  "за день, за весь час для записів/сторінок:"
243
 
244
+ #: admin.inc.php:303
245
  #, fuzzy
246
  msgid ""
247
  "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
253
  "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
254
  "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
255
 
256
+ #: admin.inc.php:306
257
  msgid "What do display when there are no visits?"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:308
261
  msgid ""
262
  "This text applies only when there are 0 hits for the post and it isn't a "
263
  "single page. e.g. if you display post views on the homepage or archives then "
265
  "option."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:311
269
  msgid "Title of popular posts: "
270
  msgstr "Заголовок списку Популярних записів:"
271
 
272
+ #: admin.inc.php:314
273
  msgid "Title of daily popular posts: "
274
  msgstr "Заголовок списку Популярних сьогодні записів:"
275
 
276
+ #: admin.inc.php:317
277
  msgid "When there are no posts, what should be shown?"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Blank Output"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:325
285
  msgid "Display:"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:329
289
  msgid "Show post excerpt in list?"
290
  msgstr "Показувати текст запису в списку?"
291
 
292
+ #: admin.inc.php:332
293
  msgid "Length of excerpt (in words): "
294
  msgstr "Довжина виведеного тексту (в словах):"
295
 
296
+ #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Show post author in list?"
299
  msgstr "Показувати текст запису в списку?"
300
 
301
+ #: admin.inc.php:338
302
  #, fuzzy
303
  msgid "Show post date in list?"
304
  msgstr "Показувати текст запису в списку?"
305
 
306
+ #: admin.inc.php:341
307
  msgid "Limit post title length (in characters)"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:344
311
  #, fuzzy
312
  msgid "Show view count in list?"
313
  msgstr "Показувати текст запису в списку?"
314
 
315
+ #: admin.inc.php:347
316
  msgid "Always display latest post count in the daily lists?"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:349
320
  msgid ""
321
  "This option uses JavaScript and will increase your page load time. When you "
322
  "enable this option, the daily widget will not use the options set there, but "
323
  "options will need to be set on this screen."
324
  msgstr ""
325
 
326
+ #: admin.inc.php:352
327
  msgid "Open links in new window"
328
  msgstr ""
329
 
330
+ #: admin.inc.php:355
331
  msgid "Add nofollow attribute to links in the list"
332
  msgstr ""
333
 
334
+ #: admin.inc.php:358
335
  msgid "Exclude display of related posts on these posts / pages"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:364
339
  #, fuzzy
340
  msgid "Customise the list HTML"
341
  msgstr "Установки оформлення списку:"
342
 
343
+ #: admin.inc.php:366
344
  msgid "HTML to display before the list of posts: "
345
  msgstr "HTML-тег, який використовується перед списком:"
346
 
347
+ #: admin.inc.php:369
348
  msgid "HTML to display before each list item: "
349
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
350
 
351
+ #: admin.inc.php:372
352
  msgid "HTML to display after each list item: "
353
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
354
 
355
+ #: admin.inc.php:375
356
  msgid "HTML to display after the list of posts: "
357
  msgstr "HTML-тег, який використовується після списку:"
358
 
359
+ #: admin.inc.php:378
360
  msgid "Post thumbnail options:"
361
  msgstr "Установки превью до записів:"
362
 
363
+ #: admin.inc.php:380
364
  msgid "Location of post thumbnail:"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:384
368
  #, fuzzy
369
  msgid "Display thumbnails inline with posts, before title"
370
  msgstr "Відображати і превью, і текст"
371
 
372
+ #: admin.inc.php:388
373
  #, fuzzy
374
  msgid "Display thumbnails inline with posts, after title"
375
  msgstr "Відображати і превью, і текст"
376
 
377
+ #: admin.inc.php:392
378
  msgid "Display only thumbnails, no text"
379
  msgstr "Показувати тільки превью, без тексту"
380
 
381
+ #: admin.inc.php:396
382
  msgid "Do not display thumbnails, only text."
383
  msgstr "Показувати лише текст, без превью"
384
 
385
+ #: admin.inc.php:400
386
  msgid "Width of the thumbnail: "
387
  msgstr ""
388
 
389
+ #: admin.inc.php:403
390
  msgid "Height of the thumbnail: "
391
  msgstr ""
392
 
393
+ #: admin.inc.php:406
394
  msgid "Style attributes / Width and Height HTML attributes:"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:410
398
  msgid "Style attributes are used for width and height."
399
  msgstr ""
400
 
401
+ #: admin.inc.php:414
402
  msgid "HTML width and height attributes are used for width and height."
403
  msgstr ""
404
 
405
+ #: admin.inc.php:418
406
  msgid "Use timthumb to generate thumbnails? "
407
  msgstr ""
408
 
409
+ #: admin.inc.php:421
410
  msgid ""
411
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
412
  "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:424
416
+ msgid "Quality of thumbnails generated by timthumb:"
417
+ msgstr ""
418
+
419
+ #: admin.inc.php:427
420
+ msgid ""
421
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
422
+ "file size. Suggested maximum value is 95. Default is 75."
423
+ msgstr ""
424
+
425
+ #: admin.inc.php:430
426
  #, fuzzy
427
  msgid "Post thumbnail meta field name: "
428
  msgstr "Установки превью до записів:"
429
 
430
+ #: admin.inc.php:433
431
  msgid ""
432
  "The value of this field should contain the image source and is set in the "
433
  "<em>Add New Post</em> screen"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:436
437
  #, fuzzy
438
  msgid ""
439
  "If the postmeta is not set, then should the plugin extract the first image "
443
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
444
  "так як буде створюватися зменшена копія зображення"
445
 
446
+ #: admin.inc.php:439
447
  #, fuzzy
448
  msgid ""
449
  "This could slow down the loading of your page if the first image in the "
453
  "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
454
  "так як буде створюватися зменшена копія зображення"
455
 
456
+ #: admin.inc.php:442
457
  msgid "Use default thumbnail? "
458
  msgstr ""
459
 
460
+ #: admin.inc.php:445
461
  msgid ""
462
  "If checked, when no thumbnail is found, show a default one from the URL "
463
  "below. If not checked and no thumbnail is found, no image will be shown."
464
  msgstr ""
465
 
466
+ #: admin.inc.php:448
467
  msgid "Default thumbnail: "
468
  msgstr ""
469
 
470
+ #: admin.inc.php:452
471
  #, fuzzy
472
  msgid ""
473
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
478
  "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
479
  "замовчунням:"
480
 
481
+ #: admin.inc.php:459
482
  msgid "Custom CSS"
483
  msgstr ""
484
 
485
+ #: admin.inc.php:462
486
  msgid "Use default style included in the plugin?"
487
  msgstr ""
488
 
489
+ #: admin.inc.php:465
490
  msgid ""
491
  "Top 10 includes a default style that makes your popular posts list to look "
492
  "pretty. Check the box above if you want to use this. You will need to select "
494
  "Widget."
495
  msgstr ""
496
 
497
+ #: admin.inc.php:468
498
  msgid "Custom CSS to add to header:"
499
  msgstr ""
500
 
501
+ #: admin.inc.php:471
502
  msgid ""
503
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
504
  "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
505
  "available CSS classes to style."
506
  msgstr ""
507
 
508
+ #: admin.inc.php:478 admin.inc.php:544
509
  #, fuzzy
510
  msgid "Save Options"
511
  msgstr "Установки плагіна:"
512
 
513
+ #: admin.inc.php:479
514
  #, fuzzy
515
  msgid "Default Options"
516
  msgstr "Установки плагіна:"
517
 
518
+ #: admin.inc.php:479
519
  msgid "Do you want to set options to Default?"
520
  msgstr "Скинути налаштування плагіна?"
521
 
522
+ #: admin.inc.php:488
523
  msgid "Maintenance"
524
  msgstr ""
525
 
526
+ #: admin.inc.php:492
527
  msgid ""
528
  "Over time the Daily Top 10 database grows in size, which reduces the "
529
  "performance of the plugin. Cleaning the database at regular intervals could "
531
  "will automatically delete entries older than 90 days."
532
  msgstr ""
533
 
534
+ #: admin.inc.php:493
535
  msgid ""
536
  "Note: When scheduled maintenance is enabled, WordPress will run the cron job "
537
  "everytime the job is rescheduled (i.e. you change the settings below)."
538
  msgstr ""
539
 
540
+ #: admin.inc.php:496
541
  msgid "Enable scheduled maintenance of daily tables:"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:500
545
  msgid "Time to run maintenance"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:501
549
  msgid "hrs"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:501
553
  msgid "min"
554
  msgstr ""
555
 
556
+ #: admin.inc.php:503
557
  msgid "How often should the maintenance be run:"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:507
561
  msgid "Daily"
562
  msgstr ""
563
 
564
+ #: admin.inc.php:511
565
  msgid "Weekly"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:515
569
  msgid "Fortnightly"
570
  msgstr ""
571
 
572
+ #: admin.inc.php:519
573
  msgid "Monthly"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:528
577
  msgid "The cron job has been scheduled. Maintenance will run "
578
  msgstr ""
579
 
580
+ #: admin.inc.php:533
581
  msgid "The cron job is missing. Please resave this page to add the job"
582
  msgstr ""
583
 
584
+ #: admin.inc.php:538
585
  msgid "Maintenance is turned off"
586
  msgstr ""
587
 
588
+ #: admin.inc.php:552
589
  msgid "Reset count"
590
  msgstr "Скинути статистику"
591
 
592
+ #: admin.inc.php:555
593
  msgid ""
594
  "This cannot be reversed. Make sure that your database has been backed up "
595
  "before proceeding"
597
  "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
598
  "переконайтесь, що у вас є копія вашої бази даних!"
599
 
600
+ #: admin.inc.php:558
601
  #, fuzzy
602
  msgid "Reset Popular Posts"
603
  msgstr "Популярні записи"
604
 
605
+ #: admin.inc.php:558
606
  msgid "Are you sure you want to reset the popular posts?"
607
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
608
 
609
+ #: admin.inc.php:559
610
  #, fuzzy
611
  msgid "Reset Daily Popular Posts"
612
  msgstr "Популярні сьогодні записи"
613
 
614
+ #: admin.inc.php:559
615
  msgid "Are you sure you want to reset the daily popular posts?"
616
  msgstr ""
617
  "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
618
 
619
+ #: admin.inc.php:560
620
  msgid "Clear duplicates"
621
  msgstr ""
622
 
623
+ #: admin.inc.php:560
624
  msgid "This will delete the duplicate entries in the tables. Proceed?"
625
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
626
 
627
+ #: admin.inc.php:612 admin.inc.php:1010
628
  msgid "Popular Posts"
629
  msgstr "Популярні записи"
630
 
631
+ #: admin.inc.php:614 admin.inc.php:713
632
  msgid "Daily Popular Posts"
633
  msgstr "Популярні сьогодні записи"
634
 
635
+ #: admin.inc.php:645
636
  msgid "Support the development"
637
  msgstr "Підтримати автора плагіна"
638
 
639
+ #: admin.inc.php:652
640
+ msgid "Donation for Top 10"
641
+ msgstr ""
642
+
643
+ #: admin.inc.php:654
644
  msgid "Enter amount in USD: "
645
  msgstr "Скільки ви готові пожертвувати (в USD):"
646
 
647
+ #: admin.inc.php:658
648
+ #, fuzzy
649
+ msgid "Send your donation to the author of Top 10"
650
  msgstr "Відправте пожертву автору"
651
 
652
+ #: admin.inc.php:665
653
  msgid "Follow me"
654
  msgstr ""
655
 
656
+ #: admin.inc.php:675
657
  #, fuzzy
658
  msgid "Quick links"
659
  msgstr "Корисні посилання"
660
 
661
+ #: admin.inc.php:679
662
  #, fuzzy
663
  msgid "Top 10 plugin page"
664
  msgstr "Сторінка плагіна"
665
 
666
+ #: admin.inc.php:680
667
  msgid "Other plugins"
668
  msgstr "Інші плагіни автора"
669
 
670
+ #: admin.inc.php:681
671
  msgid "Ajay's blog"
672
  msgstr "Блог Ajay"
673
 
674
+ #: admin.inc.php:682
675
  msgid "FAQ"
676
  msgstr ""
677
 
678
+ #: admin.inc.php:683 top-10.php:1345
679
  msgid "Support"
680
  msgstr "Підтримка (англ.)"
681
 
682
+ #: admin.inc.php:684
683
  msgid "Reviews"
684
  msgstr ""
685
 
686
+ #: admin.inc.php:704 admin.inc.php:707
687
  #, fuzzy
688
  msgid "Top 10 Settings"
689
  msgstr "Налаштування плагіна"
690
 
691
+ #: admin.inc.php:704 admin.inc.php:1183
692
  msgid "Top 10"
693
  msgstr "Топ 10 записів"
694
 
695
+ #: admin.inc.php:710
696
  #, fuzzy
697
  msgid "Overall Popular Posts"
698
  msgstr "Подивитися всі Популярні записи"
699
 
700
+ #: admin.inc.php:882
701
  #, php-format
702
  msgid "Results %1$s to %2$s of %3$s"
703
  msgstr ""
704
 
705
+ #: admin.inc.php:886
706
  #, php-format
707
  msgid "Page %s of %s"
708
  msgstr ""
709
 
710
+ #: admin.inc.php:898
711
  msgid "View Daily Popular Posts"
712
  msgstr "Подивитися всі Популярні сьогодні записи"
713
 
714
+ #: admin.inc.php:901 admin.inc.php:914
715
  msgid "Results per-page:"
716
  msgstr "Результатів на сторінку:"
717
 
718
+ #: admin.inc.php:911
719
  msgid "View Overall Popular Posts"
720
  msgstr "Подивитися всі Популярні записи"
721
 
722
+ #: admin.inc.php:940
723
  msgid "Previous"
724
  msgstr "Попередня сторінка"
725
 
726
+ #: admin.inc.php:968
727
  msgid "Next"
728
  msgstr "Наступна сторінка"
729
 
730
+ #: admin.inc.php:1011
731
  msgid "Daily Popular"
732
  msgstr "Популярні сьогодні записи"
733
 
734
+ #: admin.inc.php:1029
735
  #, fuzzy
736
  msgid "Total Views"
737
  msgstr "Всього/Сьогодні"
738
 
739
+ #: admin.inc.php:1030
740
  #, fuzzy
741
  msgid "Today's Views"
742
  msgstr "Всього/Сьогодні"
743
 
744
+ #: admin.inc.php:1031
745
  #, fuzzy
746
  msgid "Views"
747
  msgstr "Всього/Сьогодні"
748
 
749
+ #: admin.inc.php:1217
750
+ #, fuzzy
751
+ msgid "Visit count:"
752
+ msgstr "Скинути статистику"
753
+
754
+ #: admin.inc.php:1219
755
+ msgid ""
756
+ "Enter a number above to update the visit count. Leaving the above box blank "
757
+ "will set the count to zero"
758
+ msgstr ""
759
+
760
+ #: admin.inc.php:1229
761
+ msgid "Location of thumbnail:"
762
+ msgstr ""
763
+
764
+ #: admin.inc.php:1231
765
+ msgid ""
766
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
767
+ "image will be used for the post. It will be resized to the thumbnail size "
768
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
769
  msgstr ""
770
 
771
+ #: admin.inc.php:1232
772
+ msgid "The URL above is saved in the meta field: "
773
+ msgstr ""
774
+
775
+ #: top-10.php:456
776
+ msgid " by "
777
  msgstr ""
778
 
779
+ #: top-10.php:550
780
  #, fuzzy
781
  msgid "Popular Posts [Top 10]"
782
  msgstr "Популярні записи"
783
 
784
+ #: top-10.php:551
785
+ #, fuzzy
786
+ msgid "Display popular posts"
787
+ msgstr "Популярні сьогодні записи"
788
+
789
+ #: top-10.php:577
790
  msgid "Title"
791
  msgstr ""
792
 
793
+ #: top-10.php:582
794
  msgid "No. of posts"
795
  msgstr ""
796
 
797
+ #: top-10.php:587
798
  msgid "Overall"
799
  msgstr ""
800
 
801
+ #: top-10.php:588
802
  msgid "Custom time period (Enter below)"
803
  msgstr ""
804
 
805
+ #: top-10.php:593
806
  msgid "Range in number of days (applies only to custom option above)"
807
  msgstr ""
808
 
809
+ #: top-10.php:598
810
  #, fuzzy
811
+ msgid "Show count?"
812
  msgstr "Показувати текст запису в списку?"
813
 
814
+ #: top-10.php:603
815
  #, fuzzy
816
+ msgid "Show excerpt?"
817
  msgstr "Показувати текст запису в списку?"
818
 
819
+ #: top-10.php:608
820
+ #, fuzzy
821
+ msgid "Show author?"
822
+ msgstr "Показувати текст запису в списку?"
823
 
824
+ #: top-10.php:613
825
  #, fuzzy
826
+ msgid "Show date?"
827
  msgstr "Показувати текст запису в списку?"
828
 
829
+ #: top-10.php:617
830
  #, fuzzy
831
  msgid "Thumbnail options"
832
  msgstr "Установки превью до записів:"
833
 
834
+ #: top-10.php:619
835
  #, fuzzy
836
  msgid "Thumbnails inline, before title"
837
  msgstr "Відображати і превью, і текст"
838
 
839
+ #: top-10.php:620
840
  #, fuzzy
841
  msgid "Thumbnails inline, after title"
842
  msgstr "Відображати і превью, і текст"
843
 
844
+ #: top-10.php:621
845
  #, fuzzy
846
  msgid "Only thumbnails, no text"
847
  msgstr "Показувати тільки превью, без тексту"
848
 
849
+ #: top-10.php:622
850
  #, fuzzy
851
  msgid "No thumbnails, only text."
852
  msgstr "Показувати лише текст, без превью"
853
 
854
+ #: top-10.php:627
855
  #, fuzzy
856
  msgid "Thumbnail height"
857
  msgstr "Установки превью до записів:"
858
 
859
+ #: top-10.php:632
860
  #, fuzzy
861
  msgid "Thumbnail width"
862
  msgstr "Установки превью до записів:"
863
 
864
+ #: top-10.php:772
865
  msgid "<h3>Popular Posts</h3>"
866
  msgstr "<h3>Популярні записи</h3>"
867
 
868
+ #: top-10.php:773
869
  msgid "<h3>Daily Popular</h3>"
870
  msgstr "<h3>Популярні сьогодні записи</h3>"
871
 
872
+ #: top-10.php:774
873
  #, fuzzy
874
  msgid "No top posts yet"
875
  msgstr "Скинути статистику найпопулярніших записів"
876
 
877
+ #: top-10.php:1245
878
  msgid "Once Weekly"
879
  msgstr ""
880
 
881
+ #: top-10.php:1249
882
  msgid "Once Fortnightly"
883
  msgstr ""
884
 
885
+ #: top-10.php:1253
886
  msgid "Once Monthly"
887
  msgstr ""
888
 
889
+ #: top-10.php:1323
890
  msgid "Settings"
891
  msgstr "Налаштування плагіна"
892
 
893
+ #: top-10.php:1346
894
  msgid "Donate"
895
  msgstr "Зробити внесок"
896
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Top 10 - Popular posts plugin for WordPress ===
2
- Tags: top 10, counter, popular posts, top posts, daily popular, page views, statistics
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.3
7
- Tested up to: 3.9
8
  License: GPLv2 or later
9
 
10
 
@@ -42,21 +42,36 @@ If you're looking for a plugin to display related, look no further than my other
42
 
43
  == Screenshots ==
44
 
45
- 1. Top-10 options - General options
46
- 2. Top-10 options - Output options
47
- 3. Top-10 options - Custom styles
48
- 4. Top-10 options - Maintenance
49
- 5. Top-10 widget options
 
 
50
 
51
 
52
  == Upgrade Notice ==
53
 
54
- = 1.9.9.2 =
55
- Bug fixes for widget, exclude posts and thumbnail detection.
56
- Refer to the Changelog for more details
57
 
58
  == Changelog ==
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  = 1.9.9.2 =
61
  * Fixed: Show count in widget was always checked
62
  * Fixed: "List of post or page IDs to exclude from the results" did not work for more than one post
1
  === Top 10 - Popular posts plugin for WordPress ===
2
+ Tags: popular posts, top 10, counter, top posts, daily popular, page views, statistics
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.3
7
+ Tested up to: 4.0
8
  License: GPLv2 or later
9
 
10
 
42
 
43
  == Screenshots ==
44
 
45
+ 1. Top 10 options - General options
46
+ 2. Top 10 options - Output options
47
+ 3. Top 10 options - Custom styles
48
+ 4. Top 10 options - Maintenance
49
+ 5. Top 10 options - Reset count
50
+ 6. Top 10 widget options
51
+ 7. Top 10 Meta box on the Edit Post screen
52
 
53
 
54
  == Upgrade Notice ==
55
 
56
+ = 1.9.10 =
57
+ New meta box to set thumbnails; Edit total view count; Stop tracking Editors; Shortcode accepts all parameters as options page;
58
+ Refer to the Changelog for full list of changes.
59
 
60
  == Changelog ==
61
 
62
+ = 1.9.10 =
63
+ * New: Meta box on Edit post / page and similar screens that allow you to set the Top 10 (and my other plugins) specific thumbnail for the current post (different from the Featured thumb)
64
+ * New: Admins can edit the number of total views (find it in the same meta box as above)
65
+ * New: Turn of tracking for Editors
66
+ * New: Added w.org and github.com to list of allowed sites for timthumb
67
+ * New: Option to add quality settings for thumbnails created by timthumb
68
+ * Modified: Shortcode now accepts all the parameters that `tptn_pop_posts()` can take. For a full list of parameters, please check out the FAQ.
69
+ * Modified: Widget initialisation to latest standards
70
+ * Fixed: Localisation initialisation
71
+ * Fixed: Validation for hour and minute settings for the cron job
72
+ * New: Several new filters allowing you to hook in an modify the output without editting plugin files
73
+ * Modified: Reformatted code
74
+
75
  = 1.9.9.2 =
76
  * Fixed: Show count in widget was always checked
77
  * Fixed: "List of post or page IDs to exclude from the results" did not work for more than one post
timthumb/timthumb.php CHANGED
@@ -143,6 +143,8 @@ if(! isset($ALLOWED_SITES)){
143
  'wordpress.org',
144
  'wp.com',
145
  's3.amazonaws.com',
 
 
146
  );
147
  }
148
  // -------------------------------------------------------------
143
  'wordpress.org',
144
  'wp.com',
145
  's3.amazonaws.com',
146
+ 'w.org',
147
+ 'github.com',
148
  );
149
  }
150
  // -------------------------------------------------------------
top-10.php CHANGED
@@ -1,45 +1,38 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.9.9.2
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
8
  Author URI: http://ajaydsouza.com/
9
  */
10
 
11
- if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
12
- define('ALD_TPTN_DIR', dirname(__FILE__));
13
- define('TPTN_LOCAL_NAME', 'tptn');
14
 
15
  // Guess the location
16
- $tptn_path = plugin_dir_path(__FILE__);
17
- $tptn_url = plugins_url().'/'.plugin_basename(dirname(__FILE__));
18
 
19
  global $tptn_db_version;
20
  $tptn_db_version = "3.0";
21
 
 
 
 
 
22
  /**
23
  * Function to load translation files.
24
  *
25
  * @access public
26
  * @return void
27
  */
28
- function ald_tptn_init() {
29
- //* Begin Localization Code */
30
- $tc_localizationName = TPTN_LOCAL_NAME;
31
- $tc_comments_locale = get_locale();
32
- $tc_comments_mofile = ALD_TPTN_DIR . "/languages/" . $tc_localizationName . "-". $tc_comments_locale.".mo";
33
- load_textdomain($tc_localizationName, $tc_comments_mofile);
34
- //* End Localization Code */
35
  }
36
- add_action('init', 'ald_tptn_init');
37
-
38
- /*********************************************************************
39
- * Main Functions *
40
- ********************************************************************/
41
- global $tptn_settings;
42
- $tptn_settings = tptn_read_options();
43
 
44
 
45
  /**
@@ -49,44 +42,46 @@ $tptn_settings = tptn_read_options();
49
  * @param string $content Post content
50
  * @return string Filtered content
51
  */
52
- function tptn_add_viewed_count($content) {
53
  global $post, $wpdb, $single, $tptn_url, $tptn_path;
54
  $table_name = $wpdb->prefix . "top_ten";
55
 
56
- if(is_singular()) {
57
 
58
  global $tptn_settings;
59
 
60
  $current_user = wp_get_current_user();
61
- $post_author = ( $current_user->ID == $post->post_author ? true : false );
62
- $current_user_admin = ( (current_user_can( 'manage_options' )) ? true : false );
 
63
 
64
  $include_code = true;
65
- if ( ($post_author) && (!$tptn_settings['track_authors']) ) $include_code = false;
66
- if ( ($current_user_admin) && (!$tptn_settings['track_admins']) ) $include_code = false;
 
67
 
68
- if ($include_code) {
69
  $output = '';
70
- $id = intval($post->ID);
71
- $activate_counter = ($tptn_settings['activate_overall'] ? 1 : 0);
72
- $activate_counter = $activate_counter + ($tptn_settings['activate_daily'] ? 10 : 0 );
73
- if ($activate_counter>0) {
74
- if ($tptn_settings['cache_fix']) {
75
  $output = '<script type="text/javascript">jQuery.ajax({url: "' .$tptn_url. '/top-10-addcount.js.php", data: {top_ten_id: ' .$id. ', activate_counter: ' . $activate_counter . ', top10_rnd: (new Date()).getTime() + "-" + Math.floor(Math.random()*100000)}});</script>';
76
  } else {
77
  $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'&amp;activate_counter='.$activate_counter.'"></script>';
78
  }
79
  }
80
- $output = apply_filters('tptn_viewed_count',$output);
81
  return $content.$output;
82
  } else {
83
  return $content;
84
- }
85
  } else {
86
  return $content;
87
  }
88
  }
89
- add_filter('the_content','tptn_add_viewed_count');
90
 
91
 
92
  /**
@@ -98,7 +93,7 @@ add_filter('the_content','tptn_add_viewed_count');
98
  function tptn_enqueue_scripts() {
99
  global $tptn_settings;
100
 
101
- if ($tptn_settings['cache_fix']) wp_enqueue_script( 'jquery' );
102
  }
103
  add_action( 'wp_enqueue_scripts', 'tptn_enqueue_scripts' ); // wp_enqueue_scripts action hook to link only on the front-end
104
 
@@ -110,31 +105,32 @@ add_action( 'wp_enqueue_scripts', 'tptn_enqueue_scripts' ); // wp_enqueue_script
110
  * @param string $content
111
  * @return string
112
  */
113
- function tptn_pc_content($content) {
114
- global $single, $post;
115
- global $tptn_settings;
116
 
117
- $exclude_on_post_ids = explode(',',$tptn_settings['exclude_on_post_ids']);
118
 
119
- if (in_array($post->ID, $exclude_on_post_ids)) return $content; // Exit without adding related posts
 
 
120
 
121
- if((is_single())&&($tptn_settings['add_to_content'])) {
122
  return $content.echo_tptn_post_count(0);
123
- } elseif((is_page())&&($tptn_settings['count_on_pages'])) {
124
  return $content.echo_tptn_post_count(0);
125
- } elseif((is_home())&&($tptn_settings['add_to_home'])) {
126
  return $content.echo_tptn_post_count(0);
127
- } elseif((is_category())&&($tptn_settings['add_to_category_archives'])) {
128
  return $content.echo_tptn_post_count(0);
129
- } elseif((is_tag())&&($tptn_settings['add_to_tag_archives'])) {
130
  return $content.echo_tptn_post_count(0);
131
- } elseif( ( (is_tax()) || (is_author()) || (is_date()) ) &&($tptn_settings['add_to_archives'])) {
132
  return $content.echo_tptn_post_count(0);
133
  } else {
134
  return $content;
135
  }
136
  }
137
- add_filter('the_content', 'tptn_pc_content');
138
 
139
 
140
  /**
@@ -144,19 +140,19 @@ add_filter('the_content', 'tptn_pc_content');
144
  * @param string $content
145
  * @return string
146
  */
147
- function ald_tptn_rss($content) {
148
- global $post;
149
- global $tptn_settings;
150
- $id = intval($post->ID);
151
 
152
- if($tptn_settings['add_to_feed']) {
153
- return $content.'<div class="tptn_counter" id="tptn_counter_'.$id.'">'.get_tptn_post_count($id).'</div>';
 
 
154
  } else {
155
  return $content;
156
  }
157
  }
158
- add_filter('the_excerpt_rss', 'ald_tptn_rss');
159
- add_filter('the_content_feed', 'ald_tptn_rss');
160
 
161
 
162
  /**
@@ -166,21 +162,21 @@ add_filter('the_content_feed', 'ald_tptn_rss');
166
  * @param int|boolean $echo (default: 1)
167
  * @return string
168
  */
169
- function echo_tptn_post_count($echo=1) {
170
- global $post,$tptn_url,$tptn_path;
171
- global $tptn_settings;
172
- $id = intval($post->ID);
173
 
174
- $nonce_action = 'tptn-nonce-'.$id;
175
- $nonce = wp_create_nonce($nonce_action);
 
 
176
 
177
- if ($tptn_settings['dynamic_post_count']) {
178
- $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'"><script type="text/javascript" data-cfasync="false" src="'.$tptn_url.'/top-10-counter.js.php?top_ten_id='.$id.'&amp;_wpnonce='.$nonce.'"></script></div>';
179
  } else {
180
- $output = '<div class="tptn_counter" id="tptn_counter_'.$id.'">'.get_tptn_post_count($id).'</div>';
181
  }
182
 
183
- if ($echo) {
184
  echo $output;
185
  } else {
186
  return $output;
@@ -189,72 +185,73 @@ function echo_tptn_post_count($echo=1) {
189
 
190
 
191
  /**
192
- * Return the post count.
193
  *
194
  * @access public
195
  * @param int|string $id Post ID
196
- * @return int Post count
197
  */
198
- function get_tptn_post_count($id = FALSE) {
199
- global $wpdb;
200
 
201
  $table_name = $wpdb->prefix . "top_ten";
202
  $table_name_daily = $wpdb->prefix . "top_ten_daily";
203
- global $tptn_settings;
204
- $count_disp_form = stripslashes($tptn_settings['count_disp_form']);
205
- $count_disp_form_zero = stripslashes($tptn_settings['count_disp_form_zero']);
206
- $totalcntaccess = get_tptn_post_count_only($id,'total');
207
 
208
- if($id > 0) {
209
 
210
  // Total count per post
211
- if ( (strpos($count_disp_form, "%totalcount%") !== false) || (strpos($count_disp_form_zero, "%totalcount%") !== false) ) {
212
- if ( (0 == $totalcntaccess) && (!is_singular()) ) {
213
- $count_disp_form_zero = str_replace("%totalcount%", $totalcntaccess, $count_disp_form_zero);
214
  } else {
215
- $count_disp_form = str_replace("%totalcount%", (0 == $totalcntaccess ? $totalcntaccess+1 : $totalcntaccess), $count_disp_form);
216
  }
217
  }
218
 
219
  // Now process daily count
220
- if ( (strpos($count_disp_form, "%dailycount%") !== false) || (strpos($count_disp_form_zero, "%dailycount%") !== false) ) {
221
- $cntaccess = get_tptn_post_count_only($id,'daily');
222
- if ( (0 == $totalcntaccess) && (!is_singular()) ) {
223
- $count_disp_form_zero = str_replace("%dailycount%", $cntaccess, $count_disp_form_zero);
224
  } else {
225
- $count_disp_form = str_replace("%dailycount%", (0 == $cntaccess ? $cntaccess+1 : $cntaccess), $count_disp_form);
226
  }
227
  }
228
 
229
  // Now process overall count
230
- if ( (strpos($count_disp_form, "%overallcount%") !== false) || (strpos($count_disp_form_zero, "%overallcount%") !== false) ) {
231
- $cntaccess = get_tptn_post_count_only($id,'overall');
232
- if ( (0 == $cntaccess) && (!is_singular()) ) {
233
- $count_disp_form_zero = str_replace("%overallcount%", $cntaccess, $count_disp_form_zero);
234
  } else {
235
- $count_disp_form = str_replace("%overallcount%", (0 == $cntaccess ? $cntaccess+1 : $cntaccess), $count_disp_form);
236
  }
237
  }
238
 
239
- if ( (0 == $totalcntaccess) && (!is_singular()) ) {
240
- return apply_filters('tptn_post_count',$count_disp_form_zero);
241
  } else {
242
- return apply_filters('tptn_post_count',$count_disp_form);
243
  }
244
  } else {
245
  return 0;
246
  }
247
  }
248
 
 
249
  /**
250
  * Returns the post count.
251
  *
252
  * @access public
253
  * @param mixed $id (default: FALSE) Post ID
254
- * @param string $count (default: 'total') Which count to return. total, daily or overall
255
- * @return void
256
  */
257
- function get_tptn_post_count_only($id = FALSE, $count = 'total') {
258
  global $wpdb;
259
 
260
  $table_name = $wpdb->prefix . "top_ten";
@@ -281,7 +278,7 @@ function get_tptn_post_count_only($id = FALSE, $count = 'total') {
281
  $cntaccess = number_format_i18n((($resultscount) ? $resultscount->sumCount : 0));
282
  break;
283
  }
284
- return apply_filters('tptn_post_count_only',$cntaccess);
285
  } else {
286
  return 0;
287
  }
@@ -292,11 +289,10 @@ function get_tptn_post_count_only($id = FALSE, $count = 'total') {
292
  *
293
  * @access public
294
  * @param mixed $args
295
- * @return void
296
  */
297
  function tptn_pop_posts( $args ) {
298
- global $wpdb, $siteurl, $tableposts, $id;
299
- global $tptn_settings;
300
 
301
  $defaults = array(
302
  'is_widget' => FALSE,
@@ -304,8 +300,10 @@ function tptn_pop_posts( $args ) {
304
  'echo' => FALSE,
305
  'strict_limit' => FALSE,
306
  'posts_only' => FALSE,
 
 
307
  );
308
- $defaults = array_merge($defaults, $tptn_settings);
309
 
310
  // Parse incomming $args into an array and merge it with $defaults
311
  $args = wp_parse_args( $args, $defaults );
@@ -319,37 +317,37 @@ function tptn_pop_posts( $args ) {
319
  $table_name = $wpdb->prefix . "top_ten";
320
  }
321
 
322
- $limit = ($strict_limit) ? $limit : ($limit*5);
323
 
324
- $exclude_categories = explode(',',$exclude_categories);
325
 
326
- $target_attribute = ($link_new_window) ? ' target="_blank" ' : ' '; // Set Target attribute
327
- $rel_attribute = ($link_nofollow) ? ' nofollow' : ''; // Set nofollow attribute
328
 
329
- parse_str($post_types,$post_types); // Save post types in $post_types variable
330
 
331
- if (!$daily) {
332
  $args = array();
333
  $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status ";
334
  $sql .= "FROM {$table_name} INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
335
  $sql .= "AND post_status = 'publish' ";
336
- if ($exclude_post_ids!='') {
337
  $sql .= "AND ID NOT IN ({$exclude_post_ids}) ";
338
  }
339
  $sql .= "AND ( ";
340
  $multiple = false;
341
- foreach ($post_types as $post_type) {
342
  if ( $multiple ) $sql .= ' OR ';
343
  $sql .= " post_type = '%s' ";
344
  $multiple = true;
345
  $args[] = $post_type; // Add the post types to the $args array
346
  }
347
- $sql .=" ) ";
348
  $sql .= "ORDER BY sumCount DESC LIMIT %d";
349
  $args[] = $limit;
350
  } else {
351
  $current_time = current_time( 'timestamp', 0 );
352
- $current_time = $current_time - ($daily_range-1) * 3600 * 24;
353
  $current_date = date( 'Y-m-j', $current_time );
354
 
355
  $args = array(
@@ -358,110 +356,134 @@ function tptn_pop_posts( $args ) {
358
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
359
  $sql .= "FROM {$table_name} INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
360
  $sql .= "AND post_status = 'publish' AND dp_date >= '%s' ";
361
- if ($exclude_post_ids!='') {
362
  $sql .= "AND ID NOT IN ({$exclude_post_ids}) ";
363
  }
364
  $sql .= "AND ( ";
365
  $multiple = false;
366
- foreach ($post_types as $post_type) {
367
  if ( $multiple ) $sql .= ' OR ';
368
  $sql .= " post_type = '%s' ";
369
  $multiple = true;
370
  $args[] = $post_type; // Add the post types to the $args array
371
  }
372
- $sql .=" ) ";
373
  $sql .= "GROUP BY postnumber ";
374
  $sql .= "ORDER BY sumCount DESC LIMIT %d";
375
  $args[] = $limit;
376
  }
377
- if($posts_only) return apply_filters('tptn_pop_posts_array', $wpdb->get_results( $wpdb->prepare( $sql , $args ) , ARRAY_A) ); // Return the array of posts only if the variable is set
 
 
 
 
378
  $results = $wpdb->get_results( $wpdb->prepare( $sql , $args ) );
379
 
380
  $counter = 0;
381
 
382
  $output = '';
 
 
 
383
 
384
- if (!$is_widget) {
385
- if (!$daily) {
386
- $output .= '<div id="tptn_related" class="tptn_posts">'.apply_filters('tptn_heading_title',$title);
387
  } else {
388
- $output .= '<div id="tptn_related_daily" class="tptn_posts_daily">'.apply_filters('tptn_heading_title',$title_daily);
389
  }
390
  } else {
391
- if (!$daily) {
392
- $output .= '<div class="tptn_posts tptn_posts_widget">';
393
  } else {
394
- $output .= '<div class="tptn_posts_daily tptn_posts_widget">';
395
  }
396
  }
397
 
398
- if ($results) {
399
- $output .= $before_list;
400
- foreach ($results as $result) {
401
  $sumcount = $result->sumCount;
402
- $result = get_post(apply_filters('tptn_post_id',$result->ID)); // Let's get the Post using the ID
403
 
404
- $categorys = get_the_category(apply_filters('tptn_post_cat_id',$result->ID)); //Fetch categories of the plugin
405
  $p_in_c = false; // Variable to check if post exists in a particular category
406
 
407
- foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
408
- $p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
409
- if ($p_in_c) break; // End loop if post found in category
410
  }
411
 
412
- $title = tptn_max_formatted_content(get_the_title($result->ID),$title_length);
413
 
414
- if (!$p_in_c) {
415
- $output .= $before_list_item;
416
 
417
- if ($post_thumb_op=='after') {
418
- $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
419
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
420
  $output .= '</a>'; // Close the link
421
  }
422
- if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
423
- $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
424
- $output .= tptn_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$thumb_meta.'&thumb_html='.$thumb_html.'&thumb_default='.$thumb_default.'&thumb_default_show='.$thumb_default_show.'&thumb_timthumb='.$thumb_timthumb.'&scan_images='.$scan_images.'&class=tptn_thumb&filter=tptn_postimage');
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  $output .= '</a>'; // Close the link
426
  }
427
- if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
428
  $output .= '<span class="tptn_after_thumb">';
429
- $output .= '<a href="'.get_permalink($result->ID).'" rel="bookmark'.$rel_attribute.'" '.$target_attribute.'class="tptn_link">'; // Add beginning of link
430
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
431
  $output .= '</a>'; // Close the link
432
  }
433
- if ($show_author) {
434
- $author_info = get_userdata($result->post_author);
435
- $author_name = ucwords(trim(stripslashes($author_info->display_name)));
436
  $author_link = get_author_posts_url( $author_info->ID );
437
 
438
- $output .= '<span class="tptn_author"> '.__(' by ', TPTN_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
439
  }
440
- if ($show_date) {
441
- $output .= '<span class="tptn_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
442
  }
443
- if ($show_excerpt) {
444
- $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->ID,$excerpt_length).'</span>';
445
  }
446
- if ($disp_list_count) $output .= ' <span class="tptn_list_count">('.number_format_i18n($sumcount).')</span>';
447
 
448
- if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
449
  $output .= '</span>';
450
  }
451
 
452
- $output .= $after_list_item;
453
  $counter++;
454
  }
455
- if ($counter == $limit/5) break; // End loop when related posts limit is reached
 
 
 
 
 
456
  }
457
- if ($show_credit) $output .= $before_list_item.'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/" rel="nofollow">Top 10 plugin</a>'.$after_list_item;
458
- $output .= $after_list;
459
  } else {
460
- $output .= ($blank_output) ? '' : $blank_output_text;
461
  }
462
  $output .= '</div>';
463
 
464
- return apply_filters('tptn_pop_posts',$output);
465
  }
466
 
467
 
@@ -483,12 +505,12 @@ function tptn_show_pop_posts( $args = NULL ) {
483
  * @return void
484
  */
485
  function tptn_show_daily_pop_posts() {
486
- global $tptn_url;
487
- global $tptn_settings;
488
- if ($tptn_settings['d_use_js']) {
489
- echo '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
490
  } else {
491
- echo tptn_pop_posts('daily=1&is_widget=0');
492
  }
493
  }
494
 
@@ -500,145 +522,178 @@ function tptn_show_daily_pop_posts() {
500
  * @return void
501
  */
502
  function tptn_header() {
503
- global $wpdb, $post, $single;
504
-
505
- global $tptn_settings;
506
- $tptn_custom_CSS = stripslashes($tptn_settings['custom_CSS']);
507
 
508
  // Add CSS to header
509
- if ($tptn_custom_CSS != '') {
510
- echo '<style type="text/css">'.$tptn_custom_CSS.'</style>';
511
  }
512
  }
513
  add_action('wp_head','tptn_header');
 
514
 
515
  /**
516
  * Top 10 Widget.
517
  *
518
  * @extends WP_Widget
519
  */
520
- class WidgetTopTen extends WP_Widget
521
- {
522
- function WidgetTopTen()
523
- {
524
- $widget_ops = array('classname' => 'widget_tptn_pop', 'description' => __( 'Display the posts popular this week',TPTN_LOCAL_NAME) );
525
- $this->WP_Widget('widget_tptn_pop',__('Popular Posts [Top 10]',TPTN_LOCAL_NAME), $widget_ops);
 
 
 
 
 
526
  }
527
-
528
- function form($instance) {
529
- $title = isset($instance['title']) ? esc_attr($instance['title']) : '';
530
- $limit = isset($instance['limit']) ? esc_attr($instance['limit']) : '';
531
- $disp_list_count = isset($instance['disp_list_count']) ? esc_attr($instance['disp_list_count']) : '';
532
- $show_excerpt = isset($instance['show_excerpt']) ? esc_attr($instance['show_excerpt']) : '';
533
- $show_author = isset($instance['show_author']) ? esc_attr($instance['show_author']) : '';
534
- $show_date = isset($instance['show_date']) ? esc_attr($instance['show_date']) : '';
535
- $post_thumb_op = isset($instance['post_thumb_op']) ? esc_attr($instance['post_thumb_op']) : 'text_only';
536
- $thumb_height = isset($instance['thumb_height']) ? esc_attr($instance['thumb_height']) : '';
537
- $thumb_width = isset($instance['thumb_width']) ? esc_attr($instance['thumb_width']) : '';
538
- $daily = isset($instance['daily']) ? esc_attr($instance['daily']) : 'overall';
539
- $daily_range = isset($instance['daily_range']) ? esc_attr($instance['daily_range']) : '';
 
 
 
 
 
 
 
540
  ?>
541
  <p>
542
- <label for="<?php echo $this->get_field_id('title'); ?>">
543
- <?php _e('Title', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
544
  </label>
545
  </p>
546
  <p>
547
- <label for="<?php echo $this->get_field_id('limit'); ?>">
548
- <?php _e('No. of posts', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('limit'); ?>" name="<?php echo $this->get_field_name('limit'); ?>" type="text" value="<?php echo esc_attr($limit); ?>" />
549
  </label>
550
  </p>
551
  <p>
552
- <select class="widefat" id="<?php echo $this->get_field_id('daily'); ?>" name="<?php echo $this->get_field_name('daily'); ?>">
553
- <option value="overall" <?php if ($daily=='overall') echo 'selected="selected"' ?>><?php _e('Overall', TPTN_LOCAL_NAME); ?></option>
554
- <option value="daily" <?php if ($daily=='daily') echo 'selected="selected"' ?>><?php _e('Custom time period (Enter below)', TPTN_LOCAL_NAME); ?></option>
555
  </select>
556
  </p>
557
  <p>
558
- <label for="<?php echo $this->get_field_id('daily_range'); ?>">
559
- <?php _e('Range in number of days (applies only to custom option above)', TPTN_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('daily_range'); ?>" name="<?php echo $this->get_field_name('daily_range'); ?>" type="text" value="<?php echo esc_attr($daily_range); ?>" />
560
  </label>
561
  </p>
562
  <p>
563
- <label for="<?php echo $this->get_field_id('disp_list_count'); ?>">
564
- <input id="<?php echo $this->get_field_id('disp_list_count'); ?>" name="<?php echo $this->get_field_name('disp_list_count'); ?>" type="checkbox" <?php if ($disp_list_count) echo 'checked="checked"' ?> /> <?php _e(' Show count?', TPTN_LOCAL_NAME); ?>
565
  </label>
566
  </p>
567
  <p>
568
- <label for="<?php echo $this->get_field_id('show_excerpt'); ?>">
569
- <input id="<?php echo $this->get_field_id('show_excerpt'); ?>" name="<?php echo $this->get_field_name('show_excerpt'); ?>" type="checkbox" <?php if ($show_excerpt) echo 'checked="checked"' ?> /> <?php _e(' Show excerpt?', TPTN_LOCAL_NAME); ?>
570
  </label>
571
  </p>
572
  <p>
573
- <label for="<?php echo $this->get_field_id('show_author'); ?>">
574
- <input id="<?php echo $this->get_field_id('show_author'); ?>" name="<?php echo $this->get_field_name('show_author'); ?>" type="checkbox" <?php if ($show_author) echo 'checked="checked"' ?> /> <?php _e(' Show author?', TPTN_LOCAL_NAME); ?>
575
  </label>
576
  </p>
577
  <p>
578
- <label for="<?php echo $this->get_field_id('show_date'); ?>">
579
- <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); ?>
580
  </label>
581
  </p>
582
  <p>
583
- <?php _e('Thumbnail options', TPTN_LOCAL_NAME); ?>: <br />
584
- <select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
585
- <option value="inline" <?php if ($post_thumb_op=='inline') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, before title',TPTN_LOCAL_NAME); ?></option>
586
- <option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',TPTN_LOCAL_NAME); ?></option>
587
- <option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',TPTN_LOCAL_NAME); ?></option>
588
- <option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',TPTN_LOCAL_NAME); ?></option>
589
  </select>
590
  </p>
591
  <p>
592
- <label for="<?php echo $this->get_field_id('thumb_height'); ?>">
593
- <?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); ?>" />
594
  </label>
595
  </p>
596
  <p>
597
- <label for="<?php echo $this->get_field_id('thumb_width'); ?>">
598
- <?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); ?>" />
599
  </label>
600
  </p>
601
  <?php
602
  } //ending form creation
603
- function update($new_instance, $old_instance) {
 
 
 
 
 
 
 
 
 
 
 
604
  $instance = $old_instance;
605
- $instance['title'] = strip_tags($new_instance['title']);
606
- $instance['limit'] = ($new_instance['limit']);
607
- $instance['daily'] = ($new_instance['daily']);
608
- $instance['daily_range'] = strip_tags($new_instance['daily_range']);
609
- $instance['disp_list_count'] = ($new_instance['disp_list_count']);
610
- $instance['show_excerpt'] = ($new_instance['show_excerpt']);
611
- $instance['show_author'] = ($new_instance['show_author']);
612
- $instance['show_date'] = ($new_instance['show_date']);
613
- $instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
614
- $instance['thumb_height'] = ($new_instance['thumb_height']);
615
- $instance['thumb_width'] = ($new_instance['thumb_width']);
616
  return $instance;
617
  } //ending update
618
- function widget($args, $instance) {
619
- global $wpdb, $tptn_url;
 
 
 
 
 
 
 
 
 
620
 
621
- extract($args, EXTR_SKIP);
622
 
623
- global $tptn_settings;
624
-
625
- $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings['title']) : $instance['title']);
626
  $limit = $instance['limit'];
627
- if (empty($limit)) $limit = $tptn_settings['limit'];
 
 
628
 
629
- $daily_range = (empty($instance['daily_range'])) ? $tptn_settings['daily_range'] : $instance['daily_range'];
630
 
631
- $daily = ($instance['daily']=="daily") ? true : false;
632
 
633
  $output = $before_widget;
634
  $output .= $before_title . $title . $after_title;
635
 
636
- if ($daily) {
637
- if ($tptn_settings['d_use_js']) {
638
- $output .= '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
639
  } else {
640
  $output .= tptn_pop_posts( array(
641
  'is_widget' => 1,
 
642
  'limit' => $limit,
643
  'daily' => 1,
644
  'daily_range' => $daily_range,
@@ -650,11 +705,11 @@ class WidgetTopTen extends WP_Widget
650
  'thumb_width' => $instance['thumb_width'],
651
  'disp_list_count' => $instance['disp_list_count'],
652
  ) );
653
-
654
  }
655
  } else {
656
  $output .= tptn_pop_posts( array(
657
  'is_widget' => 1,
 
658
  'limit' => $limit,
659
  'daily' => 0,
660
  'daily_range' => $daily_range,
@@ -666,7 +721,6 @@ class WidgetTopTen extends WP_Widget
666
  'thumb_width' => $instance['thumb_width'],
667
  'disp_list_count' => $instance['disp_list_count'],
668
  ) );
669
-
670
  }
671
 
672
  $output .= $after_widget;
@@ -676,6 +730,7 @@ class WidgetTopTen extends WP_Widget
676
  } //ending function widget
677
  }
678
 
 
679
  /**
680
  * Initialise the widget.
681
  *
@@ -683,12 +738,9 @@ class WidgetTopTen extends WP_Widget
683
  * @return void
684
  */
685
  function tptn_register_widget() {
686
-
687
- if (function_exists('register_widget')) {
688
- register_widget('WidgetTopTen');
689
- }
690
  }
691
- add_action('widgets_init', 'tptn_register_widget', 1);
692
 
693
 
694
  /**
@@ -700,9 +752,9 @@ add_action('widgets_init', 'tptn_register_widget', 1);
700
  function tptn_heading_styles() {
701
  global $tptn_settings;
702
 
703
- if ($tptn_settings['include_default_style']) {
704
- wp_register_style('tptn_list_style', plugins_url('css/default-style.css', __FILE__));
705
- wp_enqueue_style('tptn_list_style');
706
  }
707
  }
708
  add_action( 'wp_enqueue_scripts', 'tptn_heading_styles' );
@@ -716,88 +768,91 @@ add_action( 'wp_enqueue_scripts', 'tptn_heading_styles' );
716
  */
717
  function tptn_default_options() {
718
  global $tptn_url;
719
- $title = __('<h3>Popular Posts</h3>',TPTN_LOCAL_NAME);
720
- $title_daily = __('<h3>Daily Popular</h3>',TPTN_LOCAL_NAME);
721
- $blank_output_text = __('No top posts yet',TPTN_LOCAL_NAME);
722
- $thumb_default = $tptn_url.'/default.png';
 
723
 
724
  // get relevant post types
725
  $args = array (
726
- 'public' => true,
727
- '_builtin' => true
728
- );
729
- $post_types = http_build_query(get_post_types($args), '', '&');
730
-
731
- $tptn_settings = Array (
732
- 'show_credit' => false, // Add link to plugin page of my blog in top posts list
733
- 'add_to_content' => true, // Add post count to content (only on single posts)
734
- 'count_on_pages' => true, // Add post count to pages
735
- 'add_to_feed' => false, // Add post count to feed (full)
736
- 'add_to_home' => false, // Add post count to home page
737
- 'add_to_category_archives' => false, // Add post count to category archives
738
- 'add_to_tag_archives' => false, // Add post count to tag archives
739
- 'add_to_archives' => false, // Add post count to other archives
740
-
741
- 'track_authors' => false, // Track Authors visits
742
- 'track_admins' => true, // Track Admin visits
743
- 'pv_in_admin' => true, // Add an extra column on edit posts/pages to display page views?
744
- 'show_count_non_admins' => true, // Show counts to non-admins
745
-
746
- 'blank_output' => false, // Blank output? Default is "blank Output test"
747
- 'blank_output_text' => $blank_output_text, // Blank output text
748
- 'disp_list_count' => true, // Display count in popular lists?
749
- 'd_use_js' => false, // Use JavaScript for displaying daily posts
750
- 'dynamic_post_count' => true, // Use JavaScript for displaying the post count
751
- 'count_disp_form' => '(Visited %totalcount% time, %dailycount% visit today)', // Format to display the count
752
- 'count_disp_form_zero' => 'No visits yet', // What to display where there are no hits?
753
-
754
- 'title' => $title, // Title of Popular Posts
755
- 'title_daily' => $title_daily, // Title of Daily Popular
756
- 'limit' => '10', // How many posts to display?
757
- 'daily_range' => '1', // Daily Popular will contain posts of how many days?
758
-
759
- 'before_list' => '<ul>', // Before the entire list
760
- 'after_list' => '</ul>', // After the entire list
761
- 'before_list_item' => '<li>', // Before each list item
762
- 'after_list_item' => '</li>', // After each list item
763
-
764
- 'post_thumb_op' => 'text_only', // Display only text in posts
765
- 'thumb_height' => '50', // Max height of thumbnails
766
- 'thumb_width' => '50', // Max width of thumbnails
767
- 'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
768
- 'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
769
- 'thumb_default' => $thumb_default, // Default thumbnail image
770
- 'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
771
- 'thumb_timthumb' => true, // Use timthumb
772
- 'scan_images' => true, // Scan post for images
773
-
774
- 'show_excerpt' => false, // Show description in list item
775
- 'excerpt_length' => '10', // Length of characters
776
- 'show_date' => false, // Show date in list item
777
- 'show_author' => false, // Show author in list item
778
- 'title_length' => '60', // Limit length of post title
779
-
780
- 'exclude_categories' => '', // Exclude these categories
781
- 'exclude_cat_slugs' => '', // Exclude these categories (slugs)
782
- 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
783
- 'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
784
-
785
- 'custom_CSS' => '', // Custom CSS to style the output
786
- 'include_default_style' => false, // Include default Top 10 style
787
-
788
- 'activate_daily' => true, // Activate the daily count
789
- 'activate_overall' => true, // activate overall count
790
- 'cache_fix' => false, // Temporary fix for W3 Total Cache
791
- 'post_types' => $post_types, // WordPress custom post types
792
- 'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
793
- 'link_nofollow' => false, // Includes rel="nofollow" to links
794
-
795
- 'cron_on' => false, // Run cron daily?
796
- 'cron_hour' => '0', // Cron Hour
797
- 'cron_min' => '0', // Cron Minute
798
- 'cron_recurrence' => 'weekly', // Frequency of cron
799
- );
800
- return $tptn_settings;
 
 
801
  }
802
 
803
 
@@ -813,26 +868,28 @@ function tptn_read_options() {
813
  global $tptn_db_version;
814
  $installed_ver = get_option( "tptn_db_version" );
815
 
816
- if( $installed_ver != $tptn_db_version ) tptn_install();
 
 
817
 
818
  $tptn_settings_changed = false;
819
 
820
  $defaults = tptn_default_options();
821
 
822
- $tptn_settings = array_map('stripslashes',(array)get_option('ald_tptn_settings'));
823
- unset($tptn_settings[0]); // produced by the (array) casting when there's nothing in the DB
824
 
825
- foreach ($defaults as $k=>$v) {
826
- if (!isset($tptn_settings[$k])) {
827
  $tptn_settings[$k] = $v;
828
  $tptn_settings_changed = true;
829
  }
830
  }
831
- if ($tptn_settings_changed == true)
832
  update_option('ald_tptn_settings', $tptn_settings);
 
833
 
834
- return $tptn_settings;
835
-
836
  }
837
 
838
 
@@ -842,64 +899,63 @@ function tptn_read_options() {
842
  * @access public
843
  * @return void
844
  */
845
- function tptn_install() {
846
- global $wpdb;
847
- global $tptn_db_version;
848
 
849
- $table_name = $wpdb->prefix . "top_ten";
850
- $table_name_daily = $wpdb->prefix . "top_ten_daily";
851
 
852
- if($wpdb->get_var("show tables like '$table_name'") != $table_name) {
853
-
854
- $sql = "CREATE TABLE " . $table_name . " (
855
- postnumber int NOT NULL,
856
- cntaccess int NOT NULL,
857
- PRIMARY KEY (postnumber)
858
- );";
859
-
860
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
861
- dbDelta($sql);
862
 
863
- add_option("tptn_db_version", $tptn_db_version);
864
- }
865
-
866
- if($wpdb->get_var("show tables like '$table_name_daily'") != $table_name_daily) {
867
-
868
- $sql = "CREATE TABLE " . $table_name_daily . " (
869
- postnumber int NOT NULL,
870
- cntaccess int NOT NULL,
871
- dp_date date NOT NULL,
872
- PRIMARY KEY (postnumber, dp_date)
873
- );";
874
-
875
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
876
- dbDelta($sql);
877
 
878
- add_option("tptn_db_version", $tptn_db_version);
879
- }
880
-
881
- // Upgrade table code
882
- $installed_ver = get_option( "tptn_db_version" );
 
 
 
 
 
 
 
 
 
 
 
 
883
 
884
- if( $installed_ver != $tptn_db_version ) {
 
885
 
886
- $sql = "ALTER TABLE " . $table_name . " DROP COLUMN accessedid ";
887
- $wpdb->query($sql);
888
- $sql = "ALTER IGNORE TABLE " . $table_name . " ADD PRIMARY KEY (postnumber) ";
889
- $wpdb->query($sql);
890
 
891
- $sql = "ALTER TABLE " . $table_name_daily . " DROP COLUMN accessedid ";
892
- $wpdb->query($sql);
893
- $sql = "ALTER IGNORE TABLE " . $table_name_daily . " ADD PRIMARY KEY (postnumber, dp_date) ";
894
- $wpdb->query($sql);
895
-
896
- update_option( "tptn_db_version", $tptn_db_version );
897
- }
 
 
 
 
 
898
 
899
  }
900
- if (function_exists('register_activation_hook')) {
901
- register_activation_hook(__FILE__,'tptn_install');
902
- }
903
  /**
904
  * Function to call install function if needed.
905
  *
@@ -908,11 +964,12 @@ if (function_exists('register_activation_hook')) {
908
  */
909
  function tptn_update_db_check() {
910
  global $tptn_db_version;
 
911
  if (get_site_option('tptn_db_version') != $tptn_db_version) {
912
- tptn_install();
913
  }
914
  }
915
- add_action('plugins_loaded', 'tptn_update_db_check');
916
 
917
 
918
  /**
@@ -922,18 +979,17 @@ add_action('plugins_loaded', 'tptn_update_db_check');
922
  * @param bool $daily (default: false)
923
  * @return void
924
  */
925
- function tptn_trunc_count($daily = false) {
926
  global $wpdb;
 
927
  $table_name = $wpdb->prefix . "top_ten";
928
- if ($daily) $table_name .= "_daily";
929
 
930
  $sql = "TRUNCATE TABLE $table_name";
931
- $wpdb->query($sql);
932
  }
933
 
934
- /*********************************************************************
935
- * Utility Functions *
936
- ********************************************************************/
937
  /**
938
  * Filter function to resize post thumbnail. Filters out tp10_postimage.
939
  *
@@ -942,19 +998,20 @@ function tptn_trunc_count($daily = false) {
942
  * @param string|int $thumb_width
943
  * @param string|int $thumb_height
944
  * @param string|int $thumb_timthumb
945
- * @return string
 
946
  */
947
- function tptn_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb) {
948
  global $tptn_url;
949
 
950
- if ($thumb_timthumb) {
951
- $new_pi = $tptn_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
952
  } else {
953
  $new_pi = $postimage;
954
  }
955
  return $new_pi;
956
  }
957
- add_filter('tptn_postimage', 'tptn_scale_thumbs', 10, 4);
958
 
959
 
960
  /**
@@ -964,9 +1021,10 @@ add_filter('tptn_postimage', 'tptn_scale_thumbs', 10, 4);
964
  * @param array $args (default: array()) Query string of options related to thumbnails
965
  * @return string
966
  */
967
- function tptn_get_the_post_thumbnail($args = array()) {
968
 
969
  global $tptn_url;
 
970
  $defaults = array(
971
  'postid' => '',
972
  'thumb_height' => '50', // Max height of thumbnails
@@ -976,6 +1034,7 @@ function tptn_get_the_post_thumbnail($args = array()) {
976
  'thumb_default' => '', // Default thumbnail image
977
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
978
  'thumb_timthumb' => true, // Use timthumb
 
979
  'scan_images' => false, // Scan post for images
980
  'class' => 'tptn_thumb', // Class of the thumbnail
981
  'filter' => 'tptn_postimage', // Class of the thumbnail
@@ -987,43 +1046,47 @@ function tptn_get_the_post_thumbnail($args = array()) {
987
  // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
988
  extract( $args, EXTR_SKIP );
989
 
990
- $result = get_post($postid);
 
991
 
992
  $output = '';
993
- $title = get_the_title($postid);
994
- $thumb_html = ($thumb_html=='css') ? 'style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;"' : 'width="'.$thumb_width.'" height="'.$thumb_height.'"';
995
 
996
- if (function_exists('has_post_thumbnail') && ( (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!='') || (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!= false) ) ) {
997
- $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
998
 
999
- if ( ($postimage[1] < $thumb_width) || ($postimage[2] < $thumb_height) ) $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) , 'full' );
1000
- $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb );
1001
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
1002
-
 
1003
  } else {
1004
- $postimage = get_post_meta($result->ID, $thumb_meta, true); // Check
1005
- if (!$postimage) $postimage = tptn_get_first_image($result->ID); // Get the first image
1006
- if (!$postimage && $scan_images) {
1007
- preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
1008
- // any image there?
1009
- if (isset($matches[1][0]) && $matches[1][0]) {
1010
- $postimage = preg_replace('/\?.*/', '', $matches[1][0]); // we need the first one only!
1011
  }
1012
  }
1013
- if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
1014
- if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
1015
- if ($postimage) {
1016
- if ($thumb_timthumb) {
1017
- $output .= '<img src="'.$tptn_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
1018
- } else {
1019
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
1020
- }
 
 
 
 
1021
  }
1022
  }
1023
 
1024
- return $output;
1025
  }
1026
 
 
1027
  /**
1028
  * Get the first image in the post.
1029
  *
@@ -1047,7 +1110,7 @@ function tptn_get_first_image( $postID ) {
1047
  foreach ( $attachments as $attachment ) {
1048
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) : wp_get_attachment_image_src( $attachment->ID, 'full' );
1049
 
1050
- return $image_attributes[0];
1051
  }
1052
  } else {
1053
  return false;
@@ -1059,32 +1122,29 @@ function tptn_get_first_image( $postID ) {
1059
  * Function to create an excerpt for the post.
1060
  *
1061
  * @access public
1062
- * @param string|int $postid Post ID
1063
- * @param int $excerpt_length Length of the excerpt
1064
- * @return string Formatted excerpt
1065
  */
1066
- function tptn_excerpt($postid,$excerpt_length){
1067
- $content = get_post($postid)->post_excerpt;
1068
- if ($content=='') $content = get_post($postid)->post_content;
1069
- $out = strip_tags(strip_shortcodes($content));
1070
- $blah = explode(' ',$out);
1071
- if (!$excerpt_length) $excerpt_length = 10;
1072
- if(count($blah) > $excerpt_length){
1073
- $k = $excerpt_length;
1074
- $use_dotdotdot = 1;
1075
- }else{
1076
- $k = count($blah);
1077
- $use_dotdotdot = 0;
1078
  }
1079
- $excerpt = '';
1080
- for($i=0; $i<$k; $i++){
1081
- $excerpt .= $blah[$i].' ';
 
 
1082
  }
1083
- $excerpt .= ($use_dotdotdot) ? '...' : '';
1084
- $out = $excerpt;
1085
- return $out;
1086
  }
1087
 
 
1088
  /**
1089
  * Function to limit content by characters.
1090
  *
@@ -1093,26 +1153,24 @@ function tptn_excerpt($postid,$excerpt_length){
1093
  * @param int $MaxLength (default: -1) Maximum length of excerpt in characters
1094
  * @return string Formatted content
1095
  */
1096
- function tptn_max_formatted_content($content, $MaxLength = -1) {
1097
- $content = strip_tags($content); // Remove CRLFs, leaving space in their wake
1098
 
1099
- if (($MaxLength > 0) && (strlen($content) > $MaxLength)) {
1100
- $aWords = preg_split("/[\s]+/", substr($content, 0, $MaxLength));
1101
 
1102
- // Break back down into a string of words, but drop the last one if it's chopped off
1103
- if (substr($content, $MaxLength, 1) == " ") {
1104
- $content = implode(" ", $aWords);
1105
- } else {
1106
- $content = implode(" ", array_slice($aWords, 0, -1)).'&hellip;';
1107
- }
1108
- }
1109
 
1110
- return $content;
1111
  }
1112
 
1113
- /*********************************************************************
1114
- * Cron Functions *
1115
- ********************************************************************/
1116
  /**
1117
  * Function to truncate daily run.
1118
  *
@@ -1128,10 +1186,13 @@ function ald_tptn_cron() {
1128
  $current_date = strtotime ( '-90 DAY' , strtotime ( $current_time ) );
1129
  $current_date = date ( 'Y-m-j' , $current_date );
1130
 
1131
- $resultscount = $wpdb->query( $wpdb->prepare( "DELETE FROM {$table_name_daily} WHERE dp_date <= '%s' ", $current_date ) );
 
 
 
1132
 
1133
  }
1134
- add_action('ald_tptn_hook', 'ald_tptn_cron');
1135
 
1136
 
1137
  /**
@@ -1143,14 +1204,14 @@ add_action('ald_tptn_hook', 'ald_tptn_cron');
1143
  * @param int $recurrence
1144
  * @return void
1145
  */
1146
- function tptn_enable_run($hour, $min, $recurrence) {
1147
- if (function_exists('wp_schedule_event')) {
1148
  // Invoke WordPress internal cron
1149
- if (!wp_next_scheduled('ald_tptn_hook')) {
1150
- wp_schedule_event( mktime($hour,$min, 0), $recurrence, 'ald_tptn_hook' );
1151
  } else {
1152
- wp_clear_scheduled_hook('ald_tptn_hook');
1153
- wp_schedule_event( mktime($hour,$min, 0), $recurrence, 'ald_tptn_hook' );
1154
  }
1155
  }
1156
  }
@@ -1163,14 +1224,14 @@ function tptn_enable_run($hour, $min, $recurrence) {
1163
  * @return void
1164
  */
1165
  function tptn_disable_run() {
1166
- if (function_exists('wp_schedule_event')) {
1167
- if (wp_next_scheduled('ald_tptn_hook')) {
1168
- wp_clear_scheduled_hook('ald_tptn_hook');
1169
  }
1170
  }
1171
  }
1172
 
1173
- if (!function_exists('ald_more_reccurences')) {
1174
  /**
1175
  * Function to add weekly and fortnightly recurrences - Sample Code courtesy http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/.
1176
  *
@@ -1181,47 +1242,48 @@ function ald_more_reccurences() {
1181
  // add a 'weekly' interval
1182
  $schedules['weekly'] = array(
1183
  'interval' => 604800,
1184
- 'display' => __('Once Weekly', TPTN_LOCAL_NAME)
1185
  );
1186
  $schedules['fortnightly'] = array(
1187
  'interval' => 1209600,
1188
- 'display' => __('Once Fortnightly', TPTN_LOCAL_NAME)
1189
  );
1190
  $schedules['monthly'] = array(
1191
  'interval' => 2635200,
1192
- 'display' => __('Once Monthly', TPTN_LOCAL_NAME)
1193
  );
1194
  return $schedules;
1195
  }
1196
- add_filter('cron_schedules', 'ald_more_reccurences');
1197
- }
 
1198
 
1199
 
1200
- /*********************************************************************
1201
- * Shortcode functions *
1202
- ********************************************************************/
1203
  /**
1204
  * Creates a shortcode [tptn_list limit="5" heading="1" daily="0"].
1205
  *
1206
  * @access public
1207
  * @param array $atts
1208
  * @param string $content (default: null)
1209
- * @return void
1210
  */
1211
  function tptn_shortcode( $atts, $content = null ) {
1212
  global $tptn_settings;
1213
 
1214
- extract( shortcode_atts( array(
1215
- 'limit' => $tptn_settings['limit'],
1216
- 'heading' => '1',
1217
- 'daily' => '0',
1218
- ), $atts ) );
1219
-
1220
- $heading = 1 - $heading;
1221
- return tptn_pop_posts('is_widget='.$heading.'&limit='.$limit.'&daily='.$daily);
 
 
1222
  }
1223
  add_shortcode( 'tptn_list', 'tptn_shortcode' );
1224
 
 
1225
  /**
1226
  * Creates a shortcode [tptn_views daily="0"].
1227
  *
@@ -1230,7 +1292,7 @@ add_shortcode( 'tptn_list', 'tptn_shortcode' );
1230
  * @param string $content (default: null)
1231
  * @return void
1232
  */
1233
- function tptn_shortcode_views($atts , $content=null) {
1234
  extract( shortcode_atts( array(
1235
  'daily' => '0',
1236
  ), $atts ) );
@@ -1239,40 +1301,60 @@ function tptn_shortcode_views($atts , $content=null) {
1239
  }
1240
  add_shortcode( 'tptn_views', 'tptn_shortcode_views' );
1241
 
 
1242
  /*********************************************************************
1243
  * Admin interface *
1244
  ********************************************************************/
1245
  // This function adds an Options page in WP Admin
1246
- if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
1247
- require_once(ALD_TPTN_DIR . "/admin.inc.php");
1248
-
1249
- // Adding WordPress plugin action links
1250
- add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'tptn_plugin_actions_links' );
 
 
 
 
 
1251
  function tptn_plugin_actions_links( $links ) {
1252
 
1253
  return array_merge(
1254
  array(
1255
- 'settings' => '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>'
1256
  ),
1257
  $links
1258
  );
1259
 
1260
  }
1261
- // Add meta links
 
 
 
 
 
 
 
 
 
 
1262
  function tptn_plugin_actions( $links, $file ) {
1263
- $plugin = plugin_basename(__FILE__);
1264
 
1265
  // create link
1266
- if ($file == $plugin) {
1267
- $links[] = '<a href="http://ajaydsouza.com/support/">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
1268
- $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
1269
  }
1270
  return $links;
1271
  }
 
1272
  global $wp_version;
1273
- if ( version_compare( $wp_version, '2.8alpha', '>' ) )
 
1274
  add_filter( 'plugin_row_meta', 'tptn_plugin_actions', 10, 2 ); // only 2.8 and higher
1275
- else add_filter( 'plugin_action_links', 'tptn_plugin_actions', 10, 2 );
 
 
1276
 
1277
  } // End admin.inc
1278
 
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9.10
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
8
  Author URI: http://ajaydsouza.com/
9
  */
10
 
11
+ if ( ! defined( 'ABSPATH' ) ) die( "Aren't you supposed to come here via WP-Admin?" );
12
+ define( 'ALD_TPTN_DIR', dirname( __FILE__ ) );
13
+ define( 'TPTN_LOCAL_NAME', 'tptn' );
14
 
15
  // Guess the location
16
+ $tptn_path = plugin_dir_path( __FILE__ );
17
+ $tptn_url = plugins_url() . '/' . plugin_basename( dirname( __FILE__ ) );
18
 
19
  global $tptn_db_version;
20
  $tptn_db_version = "3.0";
21
 
22
+ global $tptn_settings;
23
+ $tptn_settings = tptn_read_options();
24
+
25
+
26
  /**
27
  * Function to load translation files.
28
  *
29
  * @access public
30
  * @return void
31
  */
32
+ function tptn_lang_init() {
33
+ load_plugin_textdomain( TPTN_LOCAL_NAME, false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
 
 
 
 
 
34
  }
35
+ add_action( 'init', 'tptn_lang_init' );
 
 
 
 
 
 
36
 
37
 
38
  /**
42
  * @param string $content Post content
43
  * @return string Filtered content
44
  */
45
+ function tptn_add_viewed_count( $content ) {
46
  global $post, $wpdb, $single, $tptn_url, $tptn_path;
47
  $table_name = $wpdb->prefix . "top_ten";
48
 
49
+ if ( is_singular() ) {
50
 
51
  global $tptn_settings;
52
 
53
  $current_user = wp_get_current_user();
54
+ $post_author = ( $current_user->ID == $post->post_author ) ? true : false; // Is the current user the post author?
55
+ $current_user_admin = ( current_user_can( 'manage_options' ) ) ? true : false; // Is the current user an admin?
56
+ $current_user_editor = ( ( current_user_can( 'edit_others_posts' ) ) && ( ! current_user_can( 'manage_options' ) ) ) ? true : false; // Is the current user pure editor?
57
 
58
  $include_code = true;
59
+ if ( ( $post_author ) && ( ! $tptn_settings['track_authors'] ) ) $include_code = false;
60
+ if ( ( $current_user_admin ) && ( ! $tptn_settings['track_admins'] ) ) $include_code = false;
61
+ if ( ( $current_user_editor ) && ( ! $tptn_settings['track_editors'] ) ) $include_code = false;
62
 
63
+ if ( $include_code ) {
64
  $output = '';
65
+ $id = intval( $post->ID );
66
+ $activate_counter = $tptn_settings['activate_overall'] ? 1 : 0;
67
+ $activate_counter = $activate_counter + ( $tptn_settings['activate_daily'] ? 10 : 0 );
68
+ if ( $activate_counter > 0 ) {
69
+ if ( $tptn_settings['cache_fix'] ) {
70
  $output = '<script type="text/javascript">jQuery.ajax({url: "' .$tptn_url. '/top-10-addcount.js.php", data: {top_ten_id: ' .$id. ', activate_counter: ' . $activate_counter . ', top10_rnd: (new Date()).getTime() + "-" + Math.floor(Math.random()*100000)}});</script>';
71
  } else {
72
  $output = '<script type="text/javascript" src="'.$tptn_url.'/top-10-addcount.js.php?top_ten_id='.$id.'&amp;activate_counter='.$activate_counter.'"></script>';
73
  }
74
  }
75
+ $output = apply_filters( 'tptn_viewed_count', $output );
76
  return $content.$output;
77
  } else {
78
  return $content;
79
+ }
80
  } else {
81
  return $content;
82
  }
83
  }
84
+ add_filter( 'the_content', 'tptn_add_viewed_count' );
85
 
86
 
87
  /**
93
  function tptn_enqueue_scripts() {
94
  global $tptn_settings;
95
 
96
+ if ( $tptn_settings['cache_fix'] ) wp_enqueue_script( 'jquery' );
97
  }
98
  add_action( 'wp_enqueue_scripts', 'tptn_enqueue_scripts' ); // wp_enqueue_scripts action hook to link only on the front-end
99
 
105
  * @param string $content
106
  * @return string
107
  */
108
+ function tptn_pc_content( $content ) {
109
+ global $single, $post, $tptn_settings;
 
110
 
111
+ $exclude_on_post_ids = explode( ',', $tptn_settings['exclude_on_post_ids'] );
112
 
113
+ if ( in_array( $post->ID, $exclude_on_post_ids ) ) {
114
+ return $content; // Exit without adding related posts
115
+ }
116
 
117
+ if ( ( is_single() ) && ( $tptn_settings['add_to_content'] ) ) {
118
  return $content.echo_tptn_post_count(0);
119
+ } elseif ( ( is_page() ) && ( $tptn_settings['count_on_pages'] ) ) {
120
  return $content.echo_tptn_post_count(0);
121
+ } elseif ( ( is_home() ) && ( $tptn_settings['add_to_home'] ) ) {
122
  return $content.echo_tptn_post_count(0);
123
+ } elseif ( ( is_category() ) && ( $tptn_settings['add_to_category_archives'] ) ) {
124
  return $content.echo_tptn_post_count(0);
125
+ } elseif ( ( is_tag() ) && ( $tptn_settings['add_to_tag_archives'] ) ) {
126
  return $content.echo_tptn_post_count(0);
127
+ } elseif ( ( ( is_tax() ) || ( is_author() ) || ( is_date() ) ) && ( $tptn_settings['add_to_archives'] ) ) {
128
  return $content.echo_tptn_post_count(0);
129
  } else {
130
  return $content;
131
  }
132
  }
133
+ add_filter( 'the_content', 'tptn_pc_content' );
134
 
135
 
136
  /**
140
  * @param string $content
141
  * @return string
142
  */
143
+ function ald_tptn_rss( $content ) {
144
+ global $post, $tptn_settings;
 
 
145
 
146
+ $id = intval( $post->ID );
147
+
148
+ if ( $tptn_settings['add_to_feed'] ) {
149
+ return $content.'<div class="tptn_counter" id="tptn_counter_' . $id . '">' . get_tptn_post_count( $id ) . '</div>';
150
  } else {
151
  return $content;
152
  }
153
  }
154
+ add_filter( 'the_excerpt_rss', 'ald_tptn_rss' );
155
+ add_filter( 'the_content_feed', 'ald_tptn_rss' );
156
 
157
 
158
  /**
162
  * @param int|boolean $echo (default: 1)
163
  * @return string
164
  */
165
+ function echo_tptn_post_count( $echo = 1 ) {
166
+ global $post, $tptn_url, $tptn_path, $tptn_settings;
 
 
167
 
168
+ $id = intval( $post->ID );
169
+
170
+ $nonce_action = 'tptn-nonce-' . $id ;
171
+ $nonce = wp_create_nonce( $nonce_action );
172
 
173
+ if ( $tptn_settings['dynamic_post_count'] ) {
174
+ $output = '<div class="tptn_counter" id="tptn_counter_' . $id . '"><script type="text/javascript" data-cfasync="false" src="' . $tptn_url . '/top-10-counter.js.php?top_ten_id='.$id.'&amp;_wpnonce=' . $nonce . '"></script></div>';
175
  } else {
176
+ $output = '<div class="tptn_counter" id="tptn_counter_' . $id . '">' . get_tptn_post_count( $id ) . '</div>';
177
  }
178
 
179
+ if ( $echo ) {
180
  echo $output;
181
  } else {
182
  return $output;
185
 
186
 
187
  /**
188
+ * Return the formatted post count for the supplied ID.
189
  *
190
  * @access public
191
  * @param int|string $id Post ID
192
+ * @return int|string Formatted post count
193
  */
194
+ function get_tptn_post_count( $id = FALSE ) {
195
+ global $wpdb, $tptn_settings;
196
 
197
  $table_name = $wpdb->prefix . "top_ten";
198
  $table_name_daily = $wpdb->prefix . "top_ten_daily";
199
+
200
+ $count_disp_form = stripslashes( $tptn_settings['count_disp_form'] );
201
+ $count_disp_form_zero = stripslashes( $tptn_settings['count_disp_form_zero'] );
202
+ $totalcntaccess = get_tptn_post_count_only( $id, 'total' );
203
 
204
+ if ( $id > 0 ) {
205
 
206
  // Total count per post
207
+ if ( ( false !== strpos( $count_disp_form, "%totalcount%" ) ) || ( false !== strpos( $count_disp_form_zero, "%totalcount%" ) ) ) {
208
+ if ( ( 0 == $totalcntaccess ) && ( ! is_singular() ) ) {
209
+ $count_disp_form_zero = str_replace( "%totalcount%", $totalcntaccess, $count_disp_form_zero );
210
  } else {
211
+ $count_disp_form = str_replace( "%totalcount%", ( 0 == $totalcntaccess ? $totalcntaccess + 1 : $totalcntaccess ), $count_disp_form );
212
  }
213
  }
214
 
215
  // Now process daily count
216
+ if ( ( false !== strpos( $count_disp_form, "%dailycount%" ) ) || ( false !== strpos( $count_disp_form_zero, "%dailycount%" ) ) ) {
217
+ $cntaccess = get_tptn_post_count_only( $id, 'daily' );
218
+ if ( ( 0 == $totalcntaccess ) && ( ! is_singular() ) ) {
219
+ $count_disp_form_zero = str_replace( "%dailycount%", $cntaccess, $count_disp_form_zero );
220
  } else {
221
+ $count_disp_form = str_replace( "%dailycount%", ( 0 == $cntaccess ? $cntaccess + 1 : $cntaccess ), $count_disp_form );
222
  }
223
  }
224
 
225
  // Now process overall count
226
+ if ( ( false !== strpos( $count_disp_form, "%overallcount%" ) ) || ( false !== strpos( $count_disp_form_zero, "%overallcount%" ) ) ) {
227
+ $cntaccess = get_tptn_post_count_only( $id, 'overall' );
228
+ if ( ( 0 == $cntaccess ) && ( ! is_singular() ) ) {
229
+ $count_disp_form_zero = str_replace( "%overallcount%", $cntaccess, $count_disp_form_zero );
230
  } else {
231
+ $count_disp_form = str_replace( "%overallcount%", ( 0 == $cntaccess ? $cntaccess + 1 : $cntaccess ), $count_disp_form );
232
  }
233
  }
234
 
235
+ if ( ( 0 == $totalcntaccess ) && ( ! is_singular() ) ) {
236
+ return apply_filters( 'tptn_post_count', $count_disp_form_zero );
237
  } else {
238
+ return apply_filters( 'tptn_post_count', $count_disp_form );
239
  }
240
  } else {
241
  return 0;
242
  }
243
  }
244
 
245
+
246
  /**
247
  * Returns the post count.
248
  *
249
  * @access public
250
  * @param mixed $id (default: FALSE) Post ID
251
+ * @param string $count (default: 'total') Which count to return? total, daily or overall
252
+ * @return int Post count
253
  */
254
+ function get_tptn_post_count_only( $id = FALSE, $count = 'total' ) {
255
  global $wpdb;
256
 
257
  $table_name = $wpdb->prefix . "top_ten";
278
  $cntaccess = number_format_i18n((($resultscount) ? $resultscount->sumCount : 0));
279
  break;
280
  }
281
+ return apply_filters( 'tptn_post_count_only', $cntaccess );
282
  } else {
283
  return 0;
284
  }
289
  *
290
  * @access public
291
  * @param mixed $args
292
+ * @return array|string Array of posts if posts_only = 0 or a formatted string if posts_only = 1
293
  */
294
  function tptn_pop_posts( $args ) {
295
+ global $wpdb, $siteurl, $tableposts, $id, $tptn_settings;
 
296
 
297
  $defaults = array(
298
  'is_widget' => FALSE,
300
  'echo' => FALSE,
301
  'strict_limit' => FALSE,
302
  'posts_only' => FALSE,
303
+ 'is_shortcode' => FALSE,
304
+ 'heading' => 1,
305
  );
306
+ $defaults = array_merge( $defaults, $tptn_settings );
307
 
308
  // Parse incomming $args into an array and merge it with $defaults
309
  $args = wp_parse_args( $args, $defaults );
317
  $table_name = $wpdb->prefix . "top_ten";
318
  }
319
 
320
+ $limit = ( $strict_limit ) ? $limit : ( $limit * 5 );
321
 
322
+ $exclude_categories = explode( ',', $exclude_categories );
323
 
324
+ $target_attribute = ( $link_new_window ) ? ' target="_blank" ' : ' '; // Set Target attribute
325
+ $rel_attribute = ( $link_nofollow ) ? ' nofollow' : ''; // Set nofollow attribute
326
 
327
+ parse_str( $post_types, $post_types ); // Save post types in $post_types variable
328
 
329
+ if ( ! $daily ) {
330
  $args = array();
331
  $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status ";
332
  $sql .= "FROM {$table_name} INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
333
  $sql .= "AND post_status = 'publish' ";
334
+ if ( '' != $exclude_post_ids ) {
335
  $sql .= "AND ID NOT IN ({$exclude_post_ids}) ";
336
  }
337
  $sql .= "AND ( ";
338
  $multiple = false;
339
+ foreach ( $post_types as $post_type ) {
340
  if ( $multiple ) $sql .= ' OR ';
341
  $sql .= " post_type = '%s' ";
342
  $multiple = true;
343
  $args[] = $post_type; // Add the post types to the $args array
344
  }
345
+ $sql .= " ) ";
346
  $sql .= "ORDER BY sumCount DESC LIMIT %d";
347
  $args[] = $limit;
348
  } else {
349
  $current_time = current_time( 'timestamp', 0 );
350
+ $current_time = $current_time - ( $daily_range - 1 ) * 3600 * 24;
351
  $current_date = date( 'Y-m-j', $current_time );
352
 
353
  $args = array(
356
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
357
  $sql .= "FROM {$table_name} INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
358
  $sql .= "AND post_status = 'publish' AND dp_date >= '%s' ";
359
+ if ( '' != $exclude_post_ids ) {
360
  $sql .= "AND ID NOT IN ({$exclude_post_ids}) ";
361
  }
362
  $sql .= "AND ( ";
363
  $multiple = false;
364
+ foreach ( $post_types as $post_type ) {
365
  if ( $multiple ) $sql .= ' OR ';
366
  $sql .= " post_type = '%s' ";
367
  $multiple = true;
368
  $args[] = $post_type; // Add the post types to the $args array
369
  }
370
+ $sql .= " ) ";
371
  $sql .= "GROUP BY postnumber ";
372
  $sql .= "ORDER BY sumCount DESC LIMIT %d";
373
  $args[] = $limit;
374
  }
375
+
376
+ if ( $posts_only ) { // Return the array of posts only if the variable is set
377
+ return apply_filters( 'tptn_pop_posts_array', $wpdb->get_results( $wpdb->prepare( $sql , $args ) , ARRAY_A ) );
378
+ }
379
+
380
  $results = $wpdb->get_results( $wpdb->prepare( $sql , $args ) );
381
 
382
  $counter = 0;
383
 
384
  $output = '';
385
+
386
+ $shortcode_class = $is_shortcode ? ' tptn_posts_shortcode' : '';
387
+ $widget_class = $is_widget ? ' tptn_posts_widget' : '';
388
 
389
+ if ( $heading ) {
390
+ if ( ! $daily ) {
391
+ $output .= '<div id="tptn_related" class="tptn_posts ' . $widget_class . $shortcode_class . '">' . apply_filters( 'tptn_heading_title', $title );
392
  } else {
393
+ $output .= '<div id="tptn_related_daily" class="tptn_posts_daily' . $shortcode_class . '">' . apply_filters( 'tptn_heading_title', $title_daily );
394
  }
395
  } else {
396
+ if ( ! $daily ) {
397
+ $output .= '<div class="tptn_posts' . $widget_class . $shortcode_class . '">';
398
  } else {
399
+ $output .= '<div class="tptn_posts_daily' . $widget_class . $shortcode_class . '">';
400
  }
401
  }
402
 
403
+ if ( $results ) {
404
+ $output .= apply_filters( 'tptn_before_list', $before_list );
405
+ foreach ( $results as $result ) {
406
  $sumcount = $result->sumCount;
407
+ $result = get_post( apply_filters( 'tptn_post_id', $result->ID ) ); // Let's get the Post using the ID
408
 
409
+ $categorys = get_the_category( apply_filters( 'tptn_post_cat_id', $result->ID ) ); //Fetch categories of the plugin
410
  $p_in_c = false; // Variable to check if post exists in a particular category
411
 
412
+ foreach ( $categorys as $cat ) { // Loop to check if post exists in excluded category
413
+ $p_in_c = ( in_array( $cat->cat_ID, $exclude_categories ) ) ? true : false;
414
+ if ( $p_in_c ) break; // End loop if post found in category
415
  }
416
 
417
+ $title = tptn_max_formatted_content( get_the_title( $result->ID ), $title_length );
418
 
419
+ if ( ! $p_in_c ) {
420
+ $output .= apply_filters( 'tptn_before_list_item', $before_list_item, $result->ID );
421
 
422
+ if ( 'after' == $post_thumb_op ) {
423
+ $output .= '<a href="' . get_permalink( $result->ID ) . '" rel="bookmark' . $rel_attribute . '" ' . $target_attribute . 'class="tptn_link">'; // Add beginning of link
424
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title if post thumbnail is to be displayed after
425
  $output .= '</a>'; // Close the link
426
  }
427
+ if ( 'inline' == $post_thumb_op || 'after' == $post_thumb_op || 'thumbs_only' == $post_thumb_op ) {
428
+ $output .= '<a href="' . get_permalink( $result->ID ) . '" rel="bookmark' . $rel_attribute . '" ' . $target_attribute . 'class="tptn_link">'; // Add beginning of link
429
+ $output .= tptn_get_the_post_thumbnail( array(
430
+ 'postid' => $result->ID,
431
+ 'thumb_height' => $thumb_height,
432
+ 'thumb_width' => $thumb_width,
433
+ 'thumb_meta' => $thumb_meta,
434
+ 'thumb_html' => $thumb_html,
435
+ 'thumb_default' => $thumb_default,
436
+ 'thumb_default_show' => $thumb_default_show,
437
+ 'thumb_timthumb' => $thumb_timthumb,
438
+ 'thumb_timthumb_q' => $thumb_timthumb_q,
439
+ 'scan_images' => $scan_images,
440
+ 'class' => "tptn_thumb",
441
+ 'filter' => "tptn_postimage",
442
+ ) );
443
  $output .= '</a>'; // Close the link
444
  }
445
+ if ( 'inline' == $post_thumb_op || 'text_only' == $post_thumb_op ) {
446
  $output .= '<span class="tptn_after_thumb">';
447
+ $output .= '<a href="' . get_permalink( $result->ID ) . '" rel="bookmark' . $rel_attribute . '" ' . $target_attribute . 'class="tptn_link">'; // Add beginning of link
448
  $output .= '<span class="tptn_title">' . $title . '</span>'; // Add title when required by settings
449
  $output .= '</a>'; // Close the link
450
  }
451
+ if ( $show_author ) {
452
+ $author_info = get_userdata( $result->post_author );
453
+ $author_name = ucwords( trim( stripslashes( $author_info->display_name ) ) );
454
  $author_link = get_author_posts_url( $author_info->ID );
455
 
456
+ $output .= '<span class="tptn_author"> ' . __( ' by ', TPTN_LOCAL_NAME ).'<a href="' . $author_link . '">' . $author_name . '</a></span> ';
457
  }
458
+ if ( $show_date ) {
459
+ $output .= '<span class="tptn_date"> ' . mysql2date( get_option( 'date_format', 'd/m/y' ), $result->post_date ).'</span> ';
460
  }
461
+ if ( $show_excerpt ) {
462
+ $output .= '<span class="tptn_excerpt"> ' . tptn_excerpt( $result->ID, $excerpt_length ).'</span>';
463
  }
464
+ if ( $disp_list_count ) $output .= ' <span class="tptn_list_count">(' . number_format_i18n( $sumcount ) . ')</span>';
465
 
466
+ if ( 'inline' == $post_thumb_op || 'text_only' == $post_thumb_op ) {
467
  $output .= '</span>';
468
  }
469
 
470
+ $output .= apply_filters( 'tptn_after_list_item', $after_list_item, $result->ID );
471
  $counter++;
472
  }
473
+ if ( $counter == $limit/5 ) break; // End loop when related posts limit is reached
474
+ }
475
+ if ( $show_credit ) {
476
+ $output .= apply_filters( 'tptn_before_list_item', $before_list_item, $result->ID );
477
+ $output .= sprintf( 'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/" rel="nofollow">Top 10 plugin</a>', TPTN_LOCAL_NAME );
478
+ $output .= apply_filters( 'tptn_after_list_item', $after_list_item, $result->ID );
479
  }
480
+ $output .= apply_filters( 'tptn_after_list', $after_list );
 
481
  } else {
482
+ $output .= ( $blank_output ) ? '' : $blank_output_text;
483
  }
484
  $output .= '</div>';
485
 
486
+ return apply_filters( 'tptn_pop_posts', $output );
487
  }
488
 
489
 
505
  * @return void
506
  */
507
  function tptn_show_daily_pop_posts() {
508
+ global $tptn_url, $tptn_settings;
509
+
510
+ if ( $tptn_settings['d_use_js'] ) {
511
+ echo '<script type="text/javascript" src="' . $tptn_url . '/top-10-daily.js.php?widget=1"></script>';
512
  } else {
513
+ echo tptn_pop_posts( 'daily=1&is_widget=0' );
514
  }
515
  }
516
 
522
  * @return void
523
  */
524
  function tptn_header() {
525
+ global $wpdb, $post, $single, $tptn_settings;
526
+
527
+ $tptn_custom_CSS = stripslashes( $tptn_settings['custom_CSS'] );
 
528
 
529
  // Add CSS to header
530
+ if ( '' != $tptn_custom_CSS ) {
531
+ echo '<style type="text/css">' . $tptn_custom_CSS . '</style>';
532
  }
533
  }
534
  add_action('wp_head','tptn_header');
535
+
536
 
537
  /**
538
  * Top 10 Widget.
539
  *
540
  * @extends WP_Widget
541
  */
542
+ class Top_Ten_Widget extends WP_Widget {
543
+
544
+ /**
545
+ * Register widget with WordPress.
546
+ */
547
+ function __construct() {
548
+ parent::__construct(
549
+ 'widget_tptn_pop', // Base ID
550
+ __( 'Popular Posts [Top 10]', TPTN_LOCAL_NAME ), // Name
551
+ array( 'description' => __( 'Display popular posts', TPTN_LOCAL_NAME ), ) // Args
552
+ );
553
  }
554
+
555
+ /**
556
+ * Back-end widget form.
557
+ *
558
+ * @see WP_Widget::form()
559
+ *
560
+ * @param array $instance Previously saved values from database.
561
+ */
562
+ function form( $instance ) {
563
+ $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
564
+ $limit = isset( $instance['limit'] ) ? esc_attr( $instance['limit'] ) : '';
565
+ $disp_list_count = isset( $instance['disp_list_count'] ) ? esc_attr( $instance['disp_list_count'] ) : '';
566
+ $show_excerpt = isset( $instance['show_excerpt'] ) ? esc_attr( $instance['show_excerpt'] ) : '';
567
+ $show_author = isset( $instance['show_author'] ) ? esc_attr( $instance['show_author'] ) : '';
568
+ $show_date = isset( $instance['show_date'] ) ? esc_attr( $instance['show_date'] ) : '';
569
+ $post_thumb_op = isset( $instance['post_thumb_op'] ) ? esc_attr( $instance['post_thumb_op'] ) : 'text_only';
570
+ $thumb_height = isset( $instance['thumb_height'] ) ? esc_attr( $instance['thumb_height'] ) : '';
571
+ $thumb_width = isset( $instance['thumb_width'] ) ? esc_attr( $instance['thumb_width'] ) : '';
572
+ $daily = isset( $instance['daily'] ) ? esc_attr( $instance['daily'] ) : 'overall';
573
+ $daily_range = isset( $instance['daily_range'] ) ? esc_attr( $instance['daily_range'] ) : '';
574
  ?>
575
  <p>
576
+ <label for="<?php echo $this->get_field_id( 'title' ); ?>">
577
+ <?php _e( 'Title', TPTN_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
578
  </label>
579
  </p>
580
  <p>
581
+ <label for="<?php echo $this->get_field_id( 'limit' ); ?>">
582
+ <?php _e( 'No. of posts', TPTN_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" type="text" value="<?php echo esc_attr( $limit ); ?>" />
583
  </label>
584
  </p>
585
  <p>
586
+ <select class="widefat" id="<?php echo $this->get_field_id( 'daily' ); ?>" name="<?php echo $this->get_field_name( 'daily' ); ?>">
587
+ <option value="overall" <?php if ( 'overall' == $daily ) echo 'selected="selected"' ?>><?php _e( 'Overall', TPTN_LOCAL_NAME ); ?></option>
588
+ <option value="daily" <?php if ( 'daily' == $daily ) echo 'selected="selected"' ?>><?php _e( 'Custom time period (Enter below)', TPTN_LOCAL_NAME ); ?></option>
589
  </select>
590
  </p>
591
  <p>
592
+ <label for="<?php echo $this->get_field_id( 'daily_range' ); ?>">
593
+ <?php _e( 'Range in number of days (applies only to custom option above)', TPTN_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'daily_range' ); ?>" name="<?php echo $this->get_field_name( 'daily_range' ); ?>" type="text" value="<?php echo esc_attr( $daily_range ); ?>" />
594
  </label>
595
  </p>
596
  <p>
597
+ <label for="<?php echo $this->get_field_id( 'disp_list_count' ); ?>">
598
+ <input id="<?php echo $this->get_field_id( 'disp_list_count' ); ?>" name="<?php echo $this->get_field_name( 'disp_list_count' ); ?>" type="checkbox" <?php if ( $disp_list_count ) echo 'checked="checked"' ?> /> <?php _e( 'Show count?', TPTN_LOCAL_NAME ); ?>
599
  </label>
600
  </p>
601
  <p>
602
+ <label for="<?php echo $this->get_field_id( 'show_excerpt' ); ?>">
603
+ <input id="<?php echo $this->get_field_id( 'show_excerpt' ); ?>" name="<?php echo $this->get_field_name( 'show_excerpt' ); ?>" type="checkbox" <?php if ( $show_excerpt ) echo 'checked="checked"' ?> /> <?php _e( 'Show excerpt?', TPTN_LOCAL_NAME ); ?>
604
  </label>
605
  </p>
606
  <p>
607
+ <label for="<?php echo $this->get_field_id( 'show_author' ); ?>">
608
+ <input id="<?php echo $this->get_field_id( 'show_author' ); ?>" name="<?php echo $this->get_field_name( 'show_author' ); ?>" type="checkbox" <?php if ( $show_author ) echo 'checked="checked"' ?> /> <?php _e( 'Show author?', TPTN_LOCAL_NAME ); ?>
609
  </label>
610
  </p>
611
  <p>
612
+ <label for="<?php echo $this->get_field_id( 'show_date' ); ?>">
613
+ <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 ); ?>
614
  </label>
615
  </p>
616
  <p>
617
+ <?php _e( 'Thumbnail options', TPTN_LOCAL_NAME ); ?>: <br />
618
+ <select class="widefat" id="<?php echo $this->get_field_id( 'post_thumb_op' ); ?>" name="<?php echo $this->get_field_name( 'post_thumb_op' ); ?>">
619
+ <option value="inline" <?php if ( 'inline' == $post_thumb_op ) echo 'selected="selected"' ?>><?php _e( 'Thumbnails inline, before title',TPTN_LOCAL_NAME ); ?></option>
620
+ <option value="after" <?php if ( 'after' == $post_thumb_op ) echo 'selected="selected"' ?>><?php _e( 'Thumbnails inline, after title',TPTN_LOCAL_NAME ); ?></option>
621
+ <option value="thumbs_only" <?php if ( 'thumbs_only' == $post_thumb_op ) echo 'selected="selected"' ?>><?php _e( 'Only thumbnails, no text',TPTN_LOCAL_NAME ); ?></option>
622
+ <option value="text_only" <?php if ( 'text_only' == $post_thumb_op ) echo 'selected="selected"' ?>><?php _e( 'No thumbnails, only text.',TPTN_LOCAL_NAME ); ?></option>
623
  </select>
624
  </p>
625
  <p>
626
+ <label for="<?php echo $this->get_field_id( 'thumb_height' ); ?>">
627
+ <?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); ?>" />
628
  </label>
629
  </p>
630
  <p>
631
+ <label for="<?php echo $this->get_field_id( 'thumb_width' ); ?>">
632
+ <?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 ); ?>" />
633
  </label>
634
  </p>
635
  <?php
636
  } //ending form creation
637
+
638
+ /**
639
+ * Sanitize widget form values as they are saved.
640
+ *
641
+ * @see WP_Widget::update()
642
+ *
643
+ * @param array $new_instance Values just sent to be saved.
644
+ * @param array $old_instance Previously saved values from database.
645
+ *
646
+ * @return array Updated safe values to be saved.
647
+ */
648
+ function update( $new_instance, $old_instance ) {
649
  $instance = $old_instance;
650
+ $instance['title'] = strip_tags( $new_instance['title'] );
651
+ $instance['limit'] = $new_instance['limit'];
652
+ $instance['daily'] = $new_instance['daily'];
653
+ $instance['daily_range'] = strip_tags( $new_instance['daily_range'] );
654
+ $instance['disp_list_count'] = isset($new_instance['disp_list_count']) ? true : false;
655
+ $instance['show_excerpt'] = isset($new_instance['show_excerpt']) ? true : false;
656
+ $instance['show_author'] = isset($new_instance['show_author']) ? true : false;
657
+ $instance['show_date'] = isset($new_instance['show_date']) ? true : false;
658
+ $instance['post_thumb_op'] = $new_instance['post_thumb_op'];
659
+ $instance['thumb_height'] = $new_instance['thumb_height'];
660
+ $instance['thumb_width'] = $new_instance['thumb_width'];
661
  return $instance;
662
  } //ending update
663
+
664
+ /**
665
+ * Front-end display of widget.
666
+ *
667
+ * @see WP_Widget::widget()
668
+ *
669
+ * @param array $args Widget arguments.
670
+ * @param array $instance Saved values from database.
671
+ */
672
+ function widget( $args, $instance ) {
673
+ global $wpdb, $tptn_url, $tptn_settings;
674
 
675
+ extract( $args, EXTR_SKIP );
676
 
677
+ $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? strip_tags( $tptn_settings['title'] ) : $instance['title'] );
 
 
678
  $limit = $instance['limit'];
679
+ if ( empty( $limit ) ) {
680
+ $limit = $tptn_settings['limit'];
681
+ }
682
 
683
+ $daily_range = ( empty( $instance['daily_range'] ) ) ? $tptn_settings['daily_range'] : $instance['daily_range'];
684
 
685
+ $daily = ( "daily" == $instance['daily'] ) ? true : false;
686
 
687
  $output = $before_widget;
688
  $output .= $before_title . $title . $after_title;
689
 
690
+ if ( $daily ) {
691
+ if ( $tptn_settings['d_use_js'] ) {
692
+ $output .= '<script type="text/javascript" src="' . $tptn_url . '/top-10-daily.js.php?widget=1"></script>';
693
  } else {
694
  $output .= tptn_pop_posts( array(
695
  'is_widget' => 1,
696
+ 'heading' => 0,
697
  'limit' => $limit,
698
  'daily' => 1,
699
  'daily_range' => $daily_range,
705
  'thumb_width' => $instance['thumb_width'],
706
  'disp_list_count' => $instance['disp_list_count'],
707
  ) );
 
708
  }
709
  } else {
710
  $output .= tptn_pop_posts( array(
711
  'is_widget' => 1,
712
+ 'heading' => 0,
713
  'limit' => $limit,
714
  'daily' => 0,
715
  'daily_range' => $daily_range,
721
  'thumb_width' => $instance['thumb_width'],
722
  'disp_list_count' => $instance['disp_list_count'],
723
  ) );
 
724
  }
725
 
726
  $output .= $after_widget;
730
  } //ending function widget
731
  }
732
 
733
+
734
  /**
735
  * Initialise the widget.
736
  *
738
  * @return void
739
  */
740
  function tptn_register_widget() {
741
+ register_widget( 'Top_Ten_Widget' );
 
 
 
742
  }
743
+ add_action( 'widgets_init', 'tptn_register_widget', 1 );
744
 
745
 
746
  /**
752
  function tptn_heading_styles() {
753
  global $tptn_settings;
754
 
755
+ if ( $tptn_settings['include_default_style'] ) {
756
+ wp_register_style( 'tptn_list_style', plugins_url( 'css/default-style.css', __FILE__ ) );
757
+ wp_enqueue_style( 'tptn_list_style' );
758
  }
759
  }
760
  add_action( 'wp_enqueue_scripts', 'tptn_heading_styles' );
768
  */
769
  function tptn_default_options() {
770
  global $tptn_url;
771
+
772
+ $title = __( '<h3>Popular Posts</h3>', TPTN_LOCAL_NAME );
773
+ $title_daily = __( '<h3>Daily Popular</h3>', TPTN_LOCAL_NAME );
774
+ $blank_output_text = __( 'No top posts yet', TPTN_LOCAL_NAME );
775
+ $thumb_default = $tptn_url . '/default.png';
776
 
777
  // get relevant post types
778
  $args = array (
779
+ 'public' => true,
780
+ '_builtin' => true
781
+ );
782
+ $post_types = http_build_query( get_post_types( $args ), '', '&' );
783
+
784
+ $tptn_settings = array (
785
+ 'show_credit' => false, // Add link to plugin page of my blog in top posts list
786
+ 'add_to_content' => true, // Add post count to content (only on single posts)
787
+ 'count_on_pages' => true, // Add post count to pages
788
+ 'add_to_feed' => false, // Add post count to feed (full)
789
+ 'add_to_home' => false, // Add post count to home page
790
+ 'add_to_category_archives' => false, // Add post count to category archives
791
+ 'add_to_tag_archives' => false, // Add post count to tag archives
792
+ 'add_to_archives' => false, // Add post count to other archives
793
+
794
+ 'track_authors' => false, // Track Authors visits
795
+ 'track_admins' => true, // Track Admin visits
796
+ 'track_editors' => true, // Track Admin visits
797
+ 'pv_in_admin' => true, // Add an extra column on edit posts/pages to display page views?
798
+ 'show_count_non_admins' => true, // Show counts to non-admins
799
+
800
+ 'blank_output' => false, // Blank output? Default is "blank Output test"
801
+ 'blank_output_text' => $blank_output_text, // Blank output text
802
+ 'disp_list_count' => true, // Display count in popular lists?
803
+ 'd_use_js' => false, // Use JavaScript for displaying daily posts
804
+ 'dynamic_post_count' => true, // Use JavaScript for displaying the post count
805
+ 'count_disp_form' => '(Visited %totalcount% time, %dailycount% visit today)', // Format to display the count
806
+ 'count_disp_form_zero' => 'No visits yet', // What to display where there are no hits?
807
+
808
+ 'title' => $title, // Title of Popular Posts
809
+ 'title_daily' => $title_daily, // Title of Daily Popular
810
+ 'limit' => '10', // How many posts to display?
811
+ 'daily_range' => '1', // Daily Popular will contain posts of how many days?
812
+
813
+ 'before_list' => '<ul>', // Before the entire list
814
+ 'after_list' => '</ul>', // After the entire list
815
+ 'before_list_item' => '<li>', // Before each list item
816
+ 'after_list_item' => '</li>', // After each list item
817
+
818
+ 'post_thumb_op' => 'text_only', // Display only text in posts
819
+ 'thumb_height' => '50', // Max height of thumbnails
820
+ 'thumb_width' => '50', // Max width of thumbnails
821
+ 'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
822
+ 'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
823
+ 'scan_images' => true, // Scan post for images
824
+ 'thumb_default' => $thumb_default, // Default thumbnail image
825
+ 'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
826
+ 'thumb_timthumb' => true, // Use timthumb
827
+ 'thumb_timthumb_q' => '75', // Quality attribute for timthumb
828
+
829
+ 'show_excerpt' => false, // Show description in list item
830
+ 'excerpt_length' => '10', // Length of characters
831
+ 'show_date' => false, // Show date in list item
832
+ 'show_author' => false, // Show author in list item
833
+ 'title_length' => '60', // Limit length of post title
834
+
835
+ 'exclude_categories' => '', // Exclude these categories
836
+ 'exclude_cat_slugs' => '', // Exclude these categories (slugs)
837
+ 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
838
+ 'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
839
+
840
+ 'custom_CSS' => '', // Custom CSS to style the output
841
+ 'include_default_style' => false, // Include default Top 10 style
842
+
843
+ 'activate_daily' => true, // Activate the daily count
844
+ 'activate_overall' => true, // activate overall count
845
+ 'cache_fix' => false, // Temporary fix for W3 Total Cache
846
+ 'post_types' => $post_types, // WordPress custom post types
847
+ 'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
848
+ 'link_nofollow' => false, // Includes rel="nofollow" to links
849
+
850
+ 'cron_on' => false, // Run cron daily?
851
+ 'cron_hour' => '0', // Cron Hour
852
+ 'cron_min' => '0', // Cron Minute
853
+ 'cron_recurrence' => 'weekly', // Frequency of cron
854
+ );
855
+ return apply_filters( 'tptn_default_options', $tptn_settings );
856
  }
857
 
858
 
868
  global $tptn_db_version;
869
  $installed_ver = get_option( "tptn_db_version" );
870
 
871
+ if ( $installed_ver != $tptn_db_version ) {
872
+ tptn_install();
873
+ }
874
 
875
  $tptn_settings_changed = false;
876
 
877
  $defaults = tptn_default_options();
878
 
879
+ $tptn_settings = array_map( 'stripslashes', (array)get_option( 'ald_tptn_settings' ) );
880
+ unset( $tptn_settings[0] ); // produced by the (array) casting when there's nothing in the DB
881
 
882
+ foreach ( $defaults as $k=>$v ) {
883
+ if ( ! isset( $tptn_settings[$k] ) ) {
884
  $tptn_settings[$k] = $v;
885
  $tptn_settings_changed = true;
886
  }
887
  }
888
+ if ( $tptn_settings_changed == true ) {
889
  update_option('ald_tptn_settings', $tptn_settings);
890
+ }
891
 
892
+ return apply_filters( 'tptn_read_options', $tptn_settings );
 
893
  }
894
 
895
 
899
  * @access public
900
  * @return void
901
  */
902
+ function tptn_activation_hook() {
903
+ global $wpdb, $tptn_db_version;
 
904
 
905
+ $table_name = $wpdb->prefix . "top_ten";
906
+ $table_name_daily = $wpdb->prefix . "top_ten_daily";
907
 
908
+ if ( $wpdb->get_var( "show tables like '$table_name'" ) != $table_name ) {
909
+
910
+ $sql = "CREATE TABLE " . $table_name . " (
911
+ postnumber int NOT NULL,
912
+ cntaccess int NOT NULL,
913
+ PRIMARY KEY (postnumber)
914
+ );";
 
 
 
915
 
916
+ require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
917
+ dbDelta( $sql );
 
 
 
 
 
 
 
 
 
 
 
 
918
 
919
+ add_option( "tptn_db_version", $tptn_db_version );
920
+ }
921
+
922
+ if($wpdb->get_var("show tables like '$table_name_daily'") != $table_name_daily) {
923
+
924
+ $sql = "CREATE TABLE " . $table_name_daily . " (
925
+ postnumber int NOT NULL,
926
+ cntaccess int NOT NULL,
927
+ dp_date date NOT NULL,
928
+ PRIMARY KEY (postnumber, dp_date)
929
+ );";
930
+
931
+ require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
932
+ dbDelta($sql);
933
+
934
+ add_option("tptn_db_version", $tptn_db_version);
935
+ }
936
 
937
+ // Upgrade table code
938
+ $installed_ver = get_option( "tptn_db_version" );
939
 
940
+ if( $installed_ver != $tptn_db_version ) {
 
 
 
941
 
942
+ $sql = "ALTER TABLE " . $table_name . " DROP COLUMN accessedid ";
943
+ $wpdb->query($sql);
944
+ $sql = "ALTER IGNORE TABLE " . $table_name . " ADD PRIMARY KEY (postnumber) ";
945
+ $wpdb->query($sql);
946
+
947
+ $sql = "ALTER TABLE " . $table_name_daily . " DROP COLUMN accessedid ";
948
+ $wpdb->query($sql);
949
+ $sql = "ALTER IGNORE TABLE " . $table_name_daily . " ADD PRIMARY KEY (postnumber, dp_date) ";
950
+ $wpdb->query($sql);
951
+
952
+ update_option( "tptn_db_version", $tptn_db_version );
953
+ }
954
 
955
  }
956
+ register_activation_hook( __FILE__, 'tptn_activation_hook' );
957
+
958
+
959
  /**
960
  * Function to call install function if needed.
961
  *
964
  */
965
  function tptn_update_db_check() {
966
  global $tptn_db_version;
967
+
968
  if (get_site_option('tptn_db_version') != $tptn_db_version) {
969
+ tptn_activation_hook();
970
  }
971
  }
972
+ add_action( 'plugins_loaded', 'tptn_update_db_check' );
973
 
974
 
975
  /**
979
  * @param bool $daily (default: false)
980
  * @return void
981
  */
982
+ function tptn_trunc_count( $daily = false ) {
983
  global $wpdb;
984
+
985
  $table_name = $wpdb->prefix . "top_ten";
986
+ if ( $daily ) $table_name .= "_daily";
987
 
988
  $sql = "TRUNCATE TABLE $table_name";
989
+ $wpdb->query( $sql );
990
  }
991
 
992
+
 
 
993
  /**
994
  * Filter function to resize post thumbnail. Filters out tp10_postimage.
995
  *
998
  * @param string|int $thumb_width
999
  * @param string|int $thumb_height
1000
  * @param string|int $thumb_timthumb
1001
+ * @param strint|int $thumb_timthumb_q
1002
+ * @return string Post image output
1003
  */
1004
+ function tptn_scale_thumbs( $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $post ) {
1005
  global $tptn_url;
1006
 
1007
+ if ( $thumb_timthumb ) {
1008
+ $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;
1009
  } else {
1010
  $new_pi = $postimage;
1011
  }
1012
  return $new_pi;
1013
  }
1014
+ add_filter( 'tptn_postimage', 'tptn_scale_thumbs', 10, 6 );
1015
 
1016
 
1017
  /**
1021
  * @param array $args (default: array()) Query string of options related to thumbnails
1022
  * @return string
1023
  */
1024
+ function tptn_get_the_post_thumbnail( $args = array() ) {
1025
 
1026
  global $tptn_url;
1027
+
1028
  $defaults = array(
1029
  'postid' => '',
1030
  'thumb_height' => '50', // Max height of thumbnails
1034
  'thumb_default' => '', // Default thumbnail image
1035
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
1036
  'thumb_timthumb' => true, // Use timthumb
1037
+ 'thumb_timthumb_q' => '75', // Quality attribute for timthumb
1038
  'scan_images' => false, // Scan post for images
1039
  'class' => 'tptn_thumb', // Class of the thumbnail
1040
  'filter' => 'tptn_postimage', // Class of the thumbnail
1046
  // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
1047
  extract( $args, EXTR_SKIP );
1048
 
1049
+ $result = get_post( $postid );
1050
+ $title = get_the_title( $postid );
1051
 
1052
  $output = '';
1053
+ $thumb_html = ( 'css' == $thumb_html ) ? 'style="max-width:' . $thumb_width . 'px;max-height:' . $thumb_height . 'px;"' : 'width="' . $thumb_width . '" height="' .$thumb_height . '"';
 
1054
 
1055
+ if ( function_exists( 'has_post_thumbnail' ) && ( ( '' != wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) ) ) || ( false != wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) ) ) ) ) {
1056
+ $postimage = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) );
1057
 
1058
+ if ( ( $postimage[1] < $thumb_width ) || ( $postimage[2] < $thumb_height ) ) {
1059
+ $postimage = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) , 'full' );
1060
+ }
1061
+ $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
1062
+ $output .= '<img src="' . $postimage . '" alt="' . $title . '" title="' . $title . '" ' . $thumb_html . ' border="0" class="' . $class . '" />';
1063
  } else {
1064
+ $postimage = get_post_meta( $result->ID, $thumb_meta, true ); // Check the post meta first
1065
+ if ( ! $postimage && $scan_images ) {
1066
+ preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $result->post_content, $matches );
1067
+ if ( isset( $matches[1][0] ) && $matches[1][0] ) { // any image there?
1068
+ $postimage = $matches[1][0]; // we need the first one only!
 
 
1069
  }
1070
  }
1071
+ if ( ! $postimage ) {
1072
+ $postimage = tptn_get_first_image( $result->ID ); // Get the first image
1073
+ }
1074
+ if ( ! $postimage ) {
1075
+ $postimage = get_post_meta( $result->ID, '_video_thumbnail', true ); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
1076
+ }
1077
+ if ( $thumb_default_show && ! $postimage ) {
1078
+ $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
1079
+ }
1080
+ if ( $postimage ) {
1081
+ $postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
1082
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
1083
  }
1084
  }
1085
 
1086
+ return apply_filters( 'tptn_get_the_post_thumbnail', $output );
1087
  }
1088
 
1089
+
1090
  /**
1091
  * Get the first image in the post.
1092
  *
1110
  foreach ( $attachments as $attachment ) {
1111
  $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) : wp_get_attachment_image_src( $attachment->ID, 'full' );
1112
 
1113
+ return apply_filters( 'tptn_get_first_image', $image_attributes[0] );
1114
  }
1115
  } else {
1116
  return false;
1122
  * Function to create an excerpt for the post.
1123
  *
1124
  * @access public
1125
+ * @param int $id Post ID
1126
+ * @param int|string $excerpt_length Length of the excerpt in words
1127
+ * @return string Excerpt
1128
  */
1129
+ function tptn_excerpt( $id, $excerpt_length = 0, $use_excerpt = true ) {
1130
+ $content = $excerpt = '';
1131
+ if ( $use_excerpt ) {
1132
+ $content = get_post( $id )->post_excerpt;
1133
+ }
1134
+ if ( '' == $content ) {
1135
+ $content = get_post( $id )->post_content;
 
 
 
 
 
1136
  }
1137
+
1138
+ $output = strip_tags( strip_shortcodes( $content ) );
1139
+
1140
+ if ( $excerpt_length > 0 ) {
1141
+ $output = wp_trim_words( $output, $excerpt_length );
1142
  }
1143
+
1144
+ return apply_filters( 'tptn_excerpt', $output, $id, $excerpt_length, $use_excerpt );
 
1145
  }
1146
 
1147
+
1148
  /**
1149
  * Function to limit content by characters.
1150
  *
1153
  * @param int $MaxLength (default: -1) Maximum length of excerpt in characters
1154
  * @return string Formatted content
1155
  */
1156
+ function tptn_max_formatted_content( $content, $MaxLength = -1 ) {
1157
+ $content = strip_tags( $content ); // Remove CRLFs, leaving space in their wake
1158
 
1159
+ if ( ( $MaxLength > 0 ) && ( strlen( $content ) > $MaxLength ) ) {
1160
+ $aWords = preg_split( "/[\s]+/", substr( $content, 0, $MaxLength ) );
1161
 
1162
+ // Break back down into a string of words, but drop the last one if it's chopped off
1163
+ if ( substr( $content, $MaxLength, 1 ) == " " ) {
1164
+ $content = implode( " ", $aWords ) . '&hellip;';
1165
+ } else {
1166
+ $content = implode( " ", array_slice( $aWords, 0, -1 ) ) . '&hellip;';
1167
+ }
1168
+ }
1169
 
1170
+ return apply_filters( 'tptn_max_formatted_content', $content );
1171
  }
1172
 
1173
+
 
 
1174
  /**
1175
  * Function to truncate daily run.
1176
  *
1186
  $current_date = strtotime ( '-90 DAY' , strtotime ( $current_time ) );
1187
  $current_date = date ( 'Y-m-j' , $current_date );
1188
 
1189
+ $resultscount = $wpdb->query( $wpdb->prepare(
1190
+ "DELETE FROM {$table_name_daily} WHERE dp_date <= '%s' ",
1191
+ $current_date
1192
+ ) );
1193
 
1194
  }
1195
+ add_action( 'ald_tptn_hook', 'ald_tptn_cron' );
1196
 
1197
 
1198
  /**
1204
  * @param int $recurrence
1205
  * @return void
1206
  */
1207
+ function tptn_enable_run( $hour, $min, $recurrence ) {
1208
+ if ( function_exists( 'wp_schedule_event' ) ) {
1209
  // Invoke WordPress internal cron
1210
+ if ( ! wp_next_scheduled( 'ald_tptn_hook' ) ) {
1211
+ wp_schedule_event( mktime( $hour, $min, 0 ), $recurrence, 'ald_tptn_hook' );
1212
  } else {
1213
+ wp_clear_scheduled_hook( 'ald_tptn_hook' );
1214
+ wp_schedule_event( mktime( $hour, $min, 0 ), $recurrence, 'ald_tptn_hook' );
1215
  }
1216
  }
1217
  }
1224
  * @return void
1225
  */
1226
  function tptn_disable_run() {
1227
+ if ( function_exists( 'wp_schedule_event' ) ) {
1228
+ if ( wp_next_scheduled( 'ald_tptn_hook' ) ) {
1229
+ wp_clear_scheduled_hook( 'ald_tptn_hook' );
1230
  }
1231
  }
1232
  }
1233
 
1234
+ if ( ! function_exists( 'ald_more_reccurences' ) ) :
1235
  /**
1236
  * Function to add weekly and fortnightly recurrences - Sample Code courtesy http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/.
1237
  *
1242
  // add a 'weekly' interval
1243
  $schedules['weekly'] = array(
1244
  'interval' => 604800,
1245
+ 'display' => __( 'Once Weekly', TPTN_LOCAL_NAME )
1246
  );
1247
  $schedules['fortnightly'] = array(
1248
  'interval' => 1209600,
1249
+ 'display' => __( 'Once Fortnightly', TPTN_LOCAL_NAME )
1250
  );
1251
  $schedules['monthly'] = array(
1252
  'interval' => 2635200,
1253
+ 'display' => __( 'Once Monthly', TPTN_LOCAL_NAME )
1254
  );
1255
  return $schedules;
1256
  }
1257
+ add_filter( 'cron_schedules', 'ald_more_reccurences' );
1258
+
1259
+ endif;
1260
 
1261
 
 
 
 
1262
  /**
1263
  * Creates a shortcode [tptn_list limit="5" heading="1" daily="0"].
1264
  *
1265
  * @access public
1266
  * @param array $atts
1267
  * @param string $content (default: null)
1268
+ * @return string Formatted list of posts generated by tptn_pop_posts
1269
  */
1270
  function tptn_shortcode( $atts, $content = null ) {
1271
  global $tptn_settings;
1272
 
1273
+ $atts = shortcode_atts( array_merge(
1274
+ $tptn_settings,
1275
+ array(
1276
+ 'heading' => 1,
1277
+ 'daily' => 0,
1278
+ 'is_shortcode' => 1,
1279
+ )
1280
+ ), $atts, 'tptn' );
1281
+
1282
+ return tptn_pop_posts( $atts );
1283
  }
1284
  add_shortcode( 'tptn_list', 'tptn_shortcode' );
1285
 
1286
+
1287
  /**
1288
  * Creates a shortcode [tptn_views daily="0"].
1289
  *
1292
  * @param string $content (default: null)
1293
  * @return void
1294
  */
1295
+ function tptn_shortcode_views( $atts , $content=null ) {
1296
  extract( shortcode_atts( array(
1297
  'daily' => '0',
1298
  ), $atts ) );
1301
  }
1302
  add_shortcode( 'tptn_views', 'tptn_shortcode_views' );
1303
 
1304
+
1305
  /*********************************************************************
1306
  * Admin interface *
1307
  ********************************************************************/
1308
  // This function adds an Options page in WP Admin
1309
+ if ( is_admin() || strstr( $_SERVER['PHP_SELF'], 'wp-admin/' ) ) {
1310
+ require_once( ALD_TPTN_DIR . "/admin.inc.php" );
1311
+
1312
+ /**
1313
+ * Adding WordPress plugin action links.
1314
+ *
1315
+ * @access public
1316
+ * @param mixed $links
1317
+ * @return void
1318
+ */
1319
  function tptn_plugin_actions_links( $links ) {
1320
 
1321
  return array_merge(
1322
  array(
1323
+ 'settings' => '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __( 'Settings', TPTN_LOCAL_NAME ) . '</a>'
1324
  ),
1325
  $links
1326
  );
1327
 
1328
  }
1329
+ add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'tptn_plugin_actions_links' );
1330
+
1331
+
1332
+ /**
1333
+ * Add meta links.
1334
+ *
1335
+ * @access public
1336
+ * @param mixed $links
1337
+ * @param mixed $file
1338
+ * @return void
1339
+ */
1340
  function tptn_plugin_actions( $links, $file ) {
1341
+ $plugin = plugin_basename( __FILE__ );
1342
 
1343
  // create link
1344
+ if ( $file == $plugin ) {
1345
+ $links[] = '<a href="http://ajaydsouza.com/support/">' . __( 'Support', TPTN_LOCAL_NAME ) . '</a>';
1346
+ $links[] = '<a href="http://ajaydsouza.com/donate/">' . __( 'Donate', TPTN_LOCAL_NAME ) . '</a>';
1347
  }
1348
  return $links;
1349
  }
1350
+
1351
  global $wp_version;
1352
+
1353
+ if ( version_compare( $wp_version, '2.8alpha', '>' ) ) {
1354
  add_filter( 'plugin_row_meta', 'tptn_plugin_actions', 10, 2 ); // only 2.8 and higher
1355
+ } else {
1356
+ add_filter( 'plugin_action_links', 'tptn_plugin_actions', 10, 2 );
1357
+ }
1358
 
1359
  } // End admin.inc
1360