Top 10 – Popular posts plugin for WordPress - Version 1.9

Version Description

  • Timthumb support; performance tweaks; cleaner settings page; new dashboard widget; new default thumbnail; custom CSS; scheduled maintenance and more...

=

Download this release

Release Info

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

Code changes from version 1.8.1 to 1.9

admin-styles.css CHANGED
@@ -1,18 +1,38 @@
1
- #options-div
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  {
3
- width:570px;
4
  overflow:hidden;
5
  display:block;
6
- float:left;
7
  margin:0;
8
- padding:10px;
9
  }
10
 
11
  #side
12
  {
13
  width:300px;
14
  min-height:440px;
15
- margin-left:610px;
 
16
  padding:10px;
17
  }
18
 
@@ -67,3 +87,14 @@
67
  padding:10px;
68
  text-align: center;
69
  }
 
 
 
 
 
 
 
 
 
 
 
1
+ #page-wrap {
2
+ background: white;
3
+ min-width: 600px;
4
+ max-width: 100%;
5
+ margin: 10px auto;
6
+ }
7
+
8
+ #page-wrap #inside {
9
+ margin: 10px 10px 0px 10px;
10
+ padding-top: 10px;
11
+ padding-bottom: 10px;
12
+ }
13
+ #header {
14
+ background: #fff;
15
+ text-align: left;
16
+ }
17
+ #header h2, h3 {
18
+ color: #000;
19
+ }
20
+
21
+ #options-div, #crp_options
22
  {
23
+ /* width:570px; */
24
  overflow:hidden;
25
  display:block;
 
26
  margin:0;
27
+ padding:0;
28
  }
29
 
30
  #side
31
  {
32
  width:300px;
33
  min-height:440px;
34
+ /* margin-left:610px; */
35
+ float:right;
36
  padding:10px;
37
  }
38
 
87
  padding:10px;
88
  text-align: center;
89
  }
90
+
91
+ .form-table
92
+ {
93
+ width:100%;
94
+ }
95
+
96
+ .form-table th
97
+ {
98
+ font-weight:normal;
99
+ }
100
+
admin.inc.php CHANGED
@@ -3,7 +3,7 @@
3
  * Admin Page *
4
  *********************************************************************/
5
  if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
6
- define('ALD_TPTN_DIR', dirname(__FILE__));
7
  if (!defined('TPTN_LOCAL_NAME')) define('TPTN_LOCAL_NAME', 'tptn');
8
 
9
  function tptn_options() {
@@ -27,6 +27,8 @@ function tptn_options() {
27
  $tptn_settings[disp_list_count] = (($_POST['disp_list_count']) ? true : false);
28
  $tptn_settings[d_use_js] = (($_POST['d_use_js']) ? true : false);
29
  $tptn_settings[show_credit] = (($_POST['show_credit']) ? true : false);
 
 
30
 
31
  $tptn_settings[post_thumb_op] = $_POST['post_thumb_op'];
32
  $tptn_settings[before_list] = $_POST['before_list'];
@@ -38,13 +40,17 @@ function tptn_options() {
38
  $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
39
  $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
40
  $tptn_settings[thumb_default_show] = (($_POST['thumb_default_show']) ? true : false);
 
41
  $tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
42
  $tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
43
  $tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
 
 
 
44
  $tptn_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
45
 
46
  $exclude_categories_slugs = explode(", ",$tptn_settings[exclude_cat_slugs]);
47
-
48
  $exclude_categories = '';
49
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
50
  $catObj = get_category_by_slug($exclude_categories_slug);
@@ -52,7 +58,18 @@ function tptn_options() {
52
  }
53
  $tptn_settings[exclude_categories] = substr($exclude_categories, 0, -2);
54
 
55
-
 
 
 
 
 
 
 
 
 
 
 
56
  update_option('ald_tptn_settings', $tptn_settings);
57
 
58
  $str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',TPTN_LOCAL_NAME) .'</p></div>';
@@ -83,256 +100,269 @@ function tptn_options() {
83
  if ($_POST['tptn_clean_duplicates']){
84
  tptn_clean_duplicates(true);
85
  tptn_clean_duplicates(false);
86
- $str = '<div id="message" class="updated fade"><p>'. __('Tables cleaned of duplicate rows',TPTN_LOCAL_NAME) .'</p></div>';
87
  echo $str;
88
  }
89
  ?>
90
 
91
  <div class="wrap">
92
- <h2>Top 10</h2>
93
- <div id="options-div">
94
- <form method="post" id="tptn_options" name="tptn_options" style="border: #ccc 1px solid; padding: 10px">
95
- <fieldset class="options">
96
- <legend>
97
- <h3>
98
- <?php _e('Options:',TPTN_LOCAL_NAME); ?>
99
- </h3>
100
- </legend>
101
- <p>
102
- <label>
103
- <?php _e('Format to display the count in: ',TPTN_LOCAL_NAME); ?><br />
104
- <textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings[count_disp_form])); ?></textarea>
105
- </label>
106
- </p>
107
- <p><?php _e('Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?></p>
108
- <p>
109
- <label>
110
- <?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?>
111
- <input type="textbox" name="limit" id="limit" value="<?php echo stripslashes($tptn_settings[limit]); ?>">
112
- </label>
113
- </p>
114
- <p>
115
- <label>
116
- <?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?>
117
- <input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings[daily_range]); ?>">
118
- </label>
119
- </p>
120
- <p>
121
- <label>
122
- <input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($tptn_settings[exclude_pages]) echo 'checked="checked"' ?> />
123
- <?php _e('Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted.',TPTN_LOCAL_NAME); ?>
124
- </label>
125
- </p>
126
- <p>
127
- <label>
128
- <input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings[add_to_content]) echo 'checked="checked"' ?> />
129
- <?php _e('Display number of views on posts?',TPTN_LOCAL_NAME); ?>
130
- </label>
131
- </p>
132
- <p>
133
- <label>
134
- <input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ($tptn_settings[count_on_pages]) echo 'checked="checked"' ?> />
135
- <?php _e('Display number of views on pages?',TPTN_LOCAL_NAME); ?>
136
- </label>
137
- </p>
138
- <p>
139
- <label>
140
- <input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings[track_authors]) echo 'checked="checked"' ?> />
141
- <?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?>
142
- </label>
143
- </p>
144
- <p>
145
- <label>
146
- <input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings[disp_list_count]) echo 'checked="checked"' ?> />
147
- <?php _e('Display number of page views in popular lists?',TPTN_LOCAL_NAME); ?>
148
- </label>
149
- </p>
150
- <p>
151
- <label>
152
- <input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings[d_use_js]) echo 'checked="checked"' ?> />
153
- <?php _e('Force daily posts\' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time',TPTN_LOCAL_NAME); ?>
154
- </label>
155
- </p>
156
- <p>
157
- <label>
158
- <input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings[pv_in_admin]) echo 'checked="checked"' ?> />
159
- <?php _e('Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count',TPTN_LOCAL_NAME); ?>
160
- </label>
161
- </p>
162
- <p>
163
- <label>
164
- <input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings[show_credit]) echo 'checked="checked"' ?> />
165
- <?php _e('A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!',TPTN_LOCAL_NAME); ?>
166
- </label>
167
- </p>
168
- <h4>
169
- <?php _e('Output Options:',TPTN_LOCAL_NAME); ?>
170
- </h4>
171
- <p>
172
- <label>
173
- <?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?>
174
- <input type="textbox" name="title" id="title" value="<?php echo stripslashes($tptn_settings[title]); ?>">
175
- </label>
176
- </p>
177
- <p>
178
- <label>
179
- <?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?>
180
- <input type="textbox" name="title_daily" id="title_daily" value="<?php echo stripslashes($tptn_settings[title_daily]); ?>">
181
- </label>
182
- </p>
183
- <p>
184
- <label>
185
- <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings[show_excerpt]) echo 'checked="checked"' ?> />
186
- <strong><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></strong>
187
- </label>
188
- </p>
189
- <p>
190
- <label>
191
- <?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?>
192
- <input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings[excerpt_length]); ?>">
193
- </label>
194
- </p>
195
- <p><?php _e('Exclude Categories: ',tptn_LOCAL_NAME); ?></p>
196
- <div style="position:relative;text-align:left">
197
- <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
198
- <tr><td><!--
199
- please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
200
- to explain why i'm using a table here.
201
- You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
202
- -->
203
- <div class="myCustomFloaterContent">
204
- you should never be seeing this
205
- </div>
206
- </td></tr>
207
- </table>
208
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($tptn_settings[exclude_cat_slugs])); ?></textarea>
209
- </div>
210
- <h4><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></h4>
211
- <p>
212
- <label>
213
- <?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?>
214
- <input type="textbox" name="before_list" id="before_list" value="<?php echo attribute_escape(stripslashes($tptn_settings[before_list])); ?>">
215
- </label>
216
- </p>
217
- <p>
218
- <label>
219
- <?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?>
220
- <input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo attribute_escape(stripslashes($tptn_settings[before_list_item])); ?>">
221
- </label>
222
- </p>
223
- <p>
224
- <label>
225
- <?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?>
226
- <input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo attribute_escape(stripslashes($tptn_settings[after_list_item])); ?>">
227
- </label>
228
- </p>
229
- <p>
230
- <label>
231
- <?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?>
232
- <input type="textbox" name="after_list" id="after_list" value="<?php echo attribute_escape(stripslashes($tptn_settings[after_list])); ?>">
233
- </label>
234
- </p>
235
- <h4><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></h4>
236
- <p>
237
- <label>
238
- <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"' ?> />
239
- <?php _e('Display thumbnails inline with posts, before title',TPTN_LOCAL_NAME); ?></label>
240
- <br />
241
- <label>
242
- <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"' ?> />
243
- <?php _e('Display thumbnails inline with posts, after title',TPTN_LOCAL_NAME); ?></label>
244
- <br />
245
- <label>
246
- <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"' ?> />
247
- <?php _e('Display only thumbnails, no text',TPTN_LOCAL_NAME); ?></label>
248
- <br />
249
- <label>
250
- <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"' ?> />
251
- <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
252
- <br />
253
- </p>
254
- <p>
255
- <label>
256
- <?php _e('Post thumbnail meta field (the meta should point to the image source): ',TPTN_LOCAL_NAME); ?>
257
- <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_meta])); ?>">
258
- </label>
259
- </p>
260
- <p>
261
- <label>
262
- <input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings[scan_images]) echo 'checked="checked"' ?> />
263
- <?php _e('If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?>
264
- </label>
265
- </p>
266
- <p><strong><?php _e('Thumbnail dimensions:',TPTN_LOCAL_NAME); ?></strong><br />
267
- <label>
268
- <?php _e('Max width: ',TPTN_LOCAL_NAME); ?>
269
- <input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_width])); ?>" style="width:30px">px
270
- </label>
271
- <br />
272
- <label>
273
- <?php _e('Max height: ',TPTN_LOCAL_NAME); ?>
274
- <input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_height])); ?>" style="width:30px">px
275
- </label>
276
- </p>
277
- <p><label><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings[thumb_default_show]) echo 'checked="checked"' ?> /> <?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); ?></label><br />
278
- <input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_default])); ?>" style="width:500px">
279
- </p>
280
- <p>
281
- <input type="submit" name="tptn_save" id="tptn_save" value="Save Options" style="border:#0c0 1px solid" />
282
- <input name="tptn_default" type="submit" id="tptn_default" value="Default Options" style="border:#f00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',TPTN_LOCAL_NAME); ?>')) return false;" />
283
- </p>
284
- <h4>
285
- <?php _e('Reset count',TPTN_LOCAL_NAME); ?>
286
- </h4>
287
- <p>
288
- <?php _e('This cannot be reversed. Make sure that your database has been backed up before proceeding',TPTN_LOCAL_NAME); ?>
289
- </p>
290
- <p>
291
- <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="Reset Popular Posts" style="border:#900 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
292
- <input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="Reset Daily Popular Posts" style="border:#C00 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
293
- <input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="Clear duplicates" style="border:#600 1px solid" onclick="if (!confirm('<?php _e('This will delete the duplicate entries in the tables. Proceed?',TPTN_LOCAL_NAME); ?>')) return false;" />
294
- </p>
295
- </fieldset>
296
- </form>
297
- </div>
298
- <div id="side">
299
- <div class="side-widget">
300
- <span class="title"><?php _e('Quick links') ?></span>
301
- <ul>
302
- <li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
303
- <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
304
- <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
305
- <li><a href="http://ajaydsouza.com/support/"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
306
- <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
307
- </ul>
308
- </div>
309
- <div class="side-widget">
310
- <span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
311
- <?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
312
- ?>
313
- </div>
314
- <div class="side-widget">
315
- <span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
316
- <div id="donate-form">
317
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
318
- <input type="hidden" name="cmd" value="_donations">
319
- <input type="hidden" name="business" value="donations@ajaydsouza.com">
320
- <input type="hidden" name="lc" value="GB">
321
- <input type="hidden" name="item_name" value="Donation for Top 10">
322
- <input type="hidden" name="item_number" value="tptn">
323
- <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
324
- <input type="hidden" name="currency_code" value="USD">
325
- <input type="hidden" name="button_subtype" value="services">
326
- <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
327
- <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?">
328
- <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
329
- </form>
330
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  </div>
332
- </div>
333
-
334
- </div>
335
 
 
 
 
 
336
  <?php
337
 
338
  }
@@ -340,56 +370,73 @@ function tptn_options() {
340
  function tptn_manage() {
341
  $paged = intval($_GET['paged']);
342
  $limit = intval($_GET['limit']);
 
343
  $daily = $_GET['daily'];
344
 
345
- echo '<div class="wrap">';
346
- echo '<h2>';
347
- if (!$daily) _e('Popular Posts',TPTN_LOCAL_NAME); else _e('Daily Popular Posts',TPTN_LOCAL_NAME);
348
- echo '</h2>';
349
- echo '<div style="border: #ccc 1px solid; padding: 10px" id="options-div">';
350
- echo tptn_pop_display($daily,$paged,$limit);
351
- echo '</div>';
352
- tptn_admin_side();
353
- echo '</div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  }
355
 
356
  function tptn_admin_side() {
357
  ?>
358
- <div id="side">
359
- <div class="side-widget">
360
- <span class="title"><?php _e('Quick links') ?></span>
361
- <ul>
362
- <li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
363
- <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
364
- <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
365
- <li><a href="http://ajaydsouza.com/support/"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
366
- <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
367
- </ul>
368
- </div>
369
- <div class="side-widget">
370
- <span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
371
- <?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
372
- ?>
373
- </div>
374
- <div class="side-widget">
375
- <span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
376
- <div id="donate-form">
377
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
378
- <input type="hidden" name="cmd" value="_donations">
379
- <input type="hidden" name="business" value="donations@ajaydsouza.com">
380
- <input type="hidden" name="lc" value="GB">
381
- <input type="hidden" name="item_name" value="Donation for Top 10">
382
- <input type="hidden" name="item_number" value="tptn">
383
- <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
384
- <input type="hidden" name="currency_code" value="USD">
385
- <input type="hidden" name="button_subtype" value="services">
386
- <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
387
- <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?">
388
- <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
389
- </form>
 
 
 
 
390
  </div>
391
- </div>
392
- </div>
393
  <?php
394
  }
395
 
@@ -423,6 +470,7 @@ function tptn_adminhead() {
423
  ?>
424
  <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/wick/wick.css" />
425
  <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/admin-styles.css" />
 
426
  <script type="text/javascript" language="JavaScript">
427
  function checkForm() {
428
  answer = true;
@@ -433,6 +481,7 @@ return answer;
433
  </script>
434
  <script type="text/javascript" src="<?php echo $tptn_url ?>/wick/sample_data.js.php"></script>
435
  <script type="text/javascript" src="<?php echo $tptn_url ?>/wick/wick.js"></script>
 
436
  <?php }
437
 
438
  // Function to delete all rows in the posts table
@@ -448,7 +497,7 @@ function tptn_clean_duplicates($daily = false) {
448
  }
449
 
450
  /* Create a Dashboard Widget */
451
- function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = false) {
452
  global $wpdb, $siteurl, $tableposts, $id;
453
 
454
  $table_name = $wpdb->prefix . "top_ten";
@@ -461,7 +510,7 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
461
  if(!$daily) {
462
  $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type ";
463
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
464
- if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
465
  $sql .= "AND post_status = 'publish' ";
466
  $sql .= "ORDER BY sumCount DESC";
467
  } else {
@@ -472,7 +521,7 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
472
 
473
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
474
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
475
- if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
476
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
477
  $sql .= "GROUP BY postnumber ";
478
  $sql .= "ORDER BY sumCount DESC";
@@ -505,13 +554,13 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
505
  if(!$daily) {
506
  $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type ";
507
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
508
- if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
509
  $sql .= "AND post_status = 'publish' ";
510
  $sql .= "ORDER BY sumCount DESC LIMIT $page, $limit";
511
  } else {
512
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
513
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
514
- if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
515
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
516
  $sql .= "GROUP BY postnumber ";
517
  $sql .= "ORDER BY sumCount DESC LIMIT $page, $limit";
@@ -552,8 +601,8 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = fals
552
  }
553
  $output .= '<td align="right">';
554
  $output .= __('Results per-page:',TPTN_LOCAL_NAME);
555
- $output .= ' <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=10">10</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=20">20</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=50">50</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=100">100</a>
556
- </td>
557
  </tr>
558
  <tr>
559
  <td colspan="2" align="right"><hr /></td>
3
  * Admin Page *
4
  *********************************************************************/
5
  if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
6
+ if (!defined('ALD_TPTN_DIR')) define('ALD_TPTN_DIR', dirname(__FILE__));
7
  if (!defined('TPTN_LOCAL_NAME')) define('TPTN_LOCAL_NAME', 'tptn');
8
 
9
  function tptn_options() {
27
  $tptn_settings[disp_list_count] = (($_POST['disp_list_count']) ? true : false);
28
  $tptn_settings[d_use_js] = (($_POST['d_use_js']) ? true : false);
29
  $tptn_settings[show_credit] = (($_POST['show_credit']) ? true : false);
30
+ $tptn_settings[blank_output] = (($_POST['blank_output'] == 'blank' ) ? true : false);
31
+ $tptn_settings[blank_output_text] = $_POST['blank_output_text'];
32
 
33
  $tptn_settings[post_thumb_op] = $_POST['post_thumb_op'];
34
  $tptn_settings[before_list] = $_POST['before_list'];
40
  $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
41
  $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
42
  $tptn_settings[thumb_default_show] = (($_POST['thumb_default_show']) ? true : false);
43
+ $tptn_settings[thumb_timthumb] = (($_POST['thumb_timthumb']) ? true : false);
44
  $tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
45
  $tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
46
  $tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
47
+ $tptn_settings[custom_CSS] = $_POST['custom_CSS'];
48
+
49
+ // Exclude categories
50
  $tptn_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
51
 
52
  $exclude_categories_slugs = explode(", ",$tptn_settings[exclude_cat_slugs]);
53
+
54
  $exclude_categories = '';
55
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
56
  $catObj = get_category_by_slug($exclude_categories_slug);
58
  }
59
  $tptn_settings[exclude_categories] = substr($exclude_categories, 0, -2);
60
 
61
+ // Cron maintenance functions
62
+ $tptn_settings[cron_hour] = intval($_POST['cron_hour']);
63
+ $tptn_settings[cron_min] = intval($_POST['cron_min']);
64
+ $tptn_settings[cron_recurrence] = $_POST['cron_recurrence'];
65
+ if ($_POST['cron_on']) {
66
+ $tptn_settings[cron_on] = true;
67
+ tptn_enable_run($tptn_settings[cron_hour], $tptn_settings[cron_min], $tptn_settings[cron_recurrence]);
68
+ } else {
69
+ $tptn_settings[cron_on] = false;
70
+ tptn_disable_run();
71
+ }
72
+
73
  update_option('ald_tptn_settings', $tptn_settings);
74
 
75
  $str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',TPTN_LOCAL_NAME) .'</p></div>';
100
  if ($_POST['tptn_clean_duplicates']){
101
  tptn_clean_duplicates(true);
102
  tptn_clean_duplicates(false);
103
+ $str = '<div id="message" class="updated fade"><p>'. __('Duplicate rows cleaned from tables',TPTN_LOCAL_NAME) .'</p></div>';
104
  echo $str;
105
  }
106
  ?>
107
 
108
  <div class="wrap">
109
+ <div id="page-wrap">
110
+ <div id="inside">
111
+ <div id="header">
112
+ <h2>Top 10</h2>
113
+ </div>
114
+ <div id="side">
115
+ <?php tptn_admin_side(); ?>
116
+ </div>
117
+
118
+ <div id="options-div">
119
+ <form method="post" id="tptn_options" name="tptn_options" onsubmit="return checkForm()">
120
+ <fieldset class="options">
121
+ <div class="tabber">
122
+ <div class="tabbertab">
123
+ <h3>
124
+ <?php _e('General options',TPTN_LOCAL_NAME); ?>
125
+ </h3>
126
+ <table class="form-table">
127
+ <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?></label></th>
128
+ <td><input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($tptn_settings[limit])); ?>"></td>
129
+ </tr>
130
+ <tr style="vertical-align: top;"><th scope="row"><label for="daily_range"><?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?></label></th>
131
+ <td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings[daily_range]); ?>"></td>
132
+ </tr>
133
+ <tr style="vertical-align: top;"><th scope="row"><label for="exclude_pages"><?php _e('Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted.',TPTN_LOCAL_NAME); ?></label></th>
134
+ <td><input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($tptn_settings[exclude_pages]) echo 'checked="checked"' ?> /></td>
135
+ </tr>
136
+ <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
137
+ <td>
138
+ <div style="position:relative;text-align:left">
139
+ <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
140
+ <tr><td><!--
141
+ please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
142
+ to explain why i'm using a table here.
143
+ You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
144
+ -->
145
+ <div class="myCustomFloaterContent">
146
+ you should never be seeing this
147
+ </div>
148
+ </td></tr>
149
+ </table>
150
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($tptn_settings[exclude_cat_slugs])); ?></textarea>
151
+ </div>
152
+ </td>
153
+ </tr>
154
+ <tr style="vertical-align: top;"><th scope="row"><?php _e('Display number of views on:',TPTN_LOCAL_NAME); ?></th>
155
+ <td><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings[add_to_content]) echo 'checked="checked"' ?> /> <?php _e('Posts',TPTN_LOCAL_NAME); ?><br />
156
+ <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); ?>
157
+ </td>
158
+ </tr>
159
+ <tr style="vertical-align: top;"><th scope="row"><label for="track_authors"><?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?></label></th>
160
+ <td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings[track_authors]) echo 'checked="checked"' ?> /></td>
161
+ </tr>
162
+
163
+ <tr style="vertical-align: top;"><th scope="row"><label for="disp_list_count"><?php _e('Display number of page views in popular lists?',TPTN_LOCAL_NAME); ?></label></th>
164
+ <td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings[disp_list_count]) echo 'checked="checked"' ?> /></td>
165
+ </tr>
166
+
167
+ <tr style="vertical-align: top;"><th scope="row"><label for="d_use_js"><?php _e('Force daily posts\' list to be dynamic?',TPTN_LOCAL_NAME); ?></label></th>
168
+ <td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings[d_use_js]) echo 'checked="checked"' ?> /><br />
169
+ <?php _e('This option uses JavaScript to load the post and can increase your page load time',TPTN_LOCAL_NAME); ?></td>
170
+ </tr>
171
+
172
+ <tr style="vertical-align: top;"><th scope="row"><label for="pv_in_admin"><?php _e('Display page views on Posts > All Posts in Admin',TPTN_LOCAL_NAME); ?></label></th>
173
+ <td><input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings[pv_in_admin]) echo 'checked="checked"' ?> /></td>
174
+ </tr>
175
+
176
+ <tr style="vertical-align: top;"><th scope="row"><label for="show_credit"><?php _e('Link to Top 10 plugin page',TPTN_LOCAL_NAME); ?></label></th>
177
+ <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings[show_credit]) echo 'checked="checked"' ?> /><br />
178
+ <?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></td>
179
+ </tr>
180
+
181
+ </table>
182
+ </div>
183
+ <div class="tabbertab">
184
+ <h3>
185
+ <?php _e('Output Options',TPTN_LOCAL_NAME); ?>
186
+ </h3>
187
+ <table class="form-table">
188
+ <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Format to display the count in: ',TPTN_LOCAL_NAME); ?></label></th>
189
+ <td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings[count_disp_form])); ?></textarea>
190
+ <br />
191
+ <?php _e('Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?></td>
192
+ </tr>
193
+ <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
194
+ <td><input type="textbox" name="title" id="title" value="<?php echo attribute_escape(stripslashes($tptn_settings[title])); ?>" style="width:250px" /></td>
195
+ </tr>
196
+ <tr style="vertical-align: top;"><th scope="row"><label for="title_daily"><?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
197
+ <td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo attribute_escape(stripslashes($tptn_settings[title_daily])); ?>" style="width:250px" /></td>
198
+ </tr>
199
+ <tr style="vertical-align: top;"><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',TPTN_LOCAL_NAME); ?></label></th>
200
+ <td>
201
+ <label>
202
+ <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($tptn_settings['blank_output']) echo 'checked="checked"' ?> />
203
+ <?php _e('Blank Output',TPTN_LOCAL_NAME); ?></label>
204
+ <br />
205
+ <label>
206
+ <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$tptn_settings['blank_output']) echo 'checked="checked"' ?> />
207
+ <?php _e('Display:',TPTN_LOCAL_NAME); ?></label>
208
+ <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo attribute_escape(stripslashes($tptn_settings[blank_output_text])); ?>" style="width:250px" />
209
+ </td>
210
+ </tr>
211
+ <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></label></th>
212
+ <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings[show_excerpt]) echo 'checked="checked"' ?> /></td>
213
+ </tr>
214
+ <tr style="vertical-align: top;"><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
215
+ <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings[excerpt_length]); ?>" /></td>
216
+ </tr>
217
+ <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></th>
218
+ </tr>
219
+ <tr style="vertical-align: top;"><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
220
+ <td><input type="textbox" name="before_list" id="before_list" value="<?php echo attribute_escape(stripslashes($tptn_settings[before_list])); ?>" style="width:250px" /></td>
221
+ </tr>
222
+ <tr style="vertical-align: top;"><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?></label></th>
223
+ <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo attribute_escape(stripslashes($tptn_settings[before_list_item])); ?>" style="width:250px" /></td>
224
+ </tr>
225
+ <tr style="vertical-align: top;"><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?></label></th>
226
+ <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo attribute_escape(stripslashes($tptn_settings[after_list_item])); ?>" style="width:250px" /></td>
227
+ </tr>
228
+ <tr style="vertical-align: top;"><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
229
+ <td><input type="textbox" name="after_list" id="after_list" value="<?php echo attribute_escape(stripslashes($tptn_settings[after_list])); ?>" style="width:250px" /></td>
230
+ </tr>
231
+ <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
232
+ </tr>
233
+ <tr style="vertical-align: top;"><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',TPTN_LOCAL_NAME); ?></label></th>
234
+ <td>
235
+ <label>
236
+ <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"' ?> />
237
+ <?php _e('Display thumbnails inline with posts, before title',TPTN_LOCAL_NAME); ?></label>
238
+ <br />
239
+ <label>
240
+ <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"' ?> />
241
+ <?php _e('Display thumbnails inline with posts, after title',TPTN_LOCAL_NAME); ?></label>
242
+ <br />
243
+ <label>
244
+ <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"' ?> />
245
+ <?php _e('Display only thumbnails, no text',TPTN_LOCAL_NAME); ?></label>
246
+ <br />
247
+ <label>
248
+ <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"' ?> />
249
+ <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
250
+ <br />
251
+ </td>
252
+ </tr>
253
+ <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
254
+ <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_width])); ?>" style="width:30px" />px</td>
255
+ </tr>
256
+ <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
257
+ <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_height])); ?>" style="width:30px" />px</td>
258
+ </tr>
259
+ <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
260
+ <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings[thumb_timthumb]) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></td>
261
+ </tr>
262
+ <tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
263
+ <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_meta])); ?>"> <br /><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></td>
264
+ </tr>
265
+ <tr style="vertical-align: top;"><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',TPTN_LOCAL_NAME); ?></label></th>
266
+ <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings[scan_images]) echo 'checked="checked"' ?> /> <br /><?php _e('This can slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></td>
267
+ </tr>
268
+ <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
269
+ <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings[thumb_default_show]) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></td>
270
+ </tr>
271
+ <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
272
+ <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_default])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></td>
273
+ </tr>
274
+ </table>
275
+ </div>
276
+ <div class="tabbertab">
277
+ <h3>
278
+ <?php _e('Custom Styles',TPTN_LOCAL_NAME); ?>
279
+ </h3>
280
+ <table class="form-table">
281
+ <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',TPTN_LOCAL_NAME); ?></th>
282
+ </tr>
283
+ <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($tptn_settings[custom_CSS]); ?></textarea>
284
+ <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/top-10/faq/" target="_blank">FAQ</a> for available CSS classes to style.',TPTN_LOCAL_NAME); ?></em></td></tr>
285
+ </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  </div>
287
+ <div class="tabbertab">
288
+ <h3>
289
+ <?php _e('Maintenance',TPTN_LOCAL_NAME); ?>
290
+ </h3>
291
+ <table class="form-table">
292
+ <tr style="vertical-align: top;"><th scope="row"><label for="cron_on"><?php _e('Enable scheduled maintenance of daily tables:',TPTN_LOCAL_NAME); ?></label></th>
293
+ <td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings[cron_on]) echo 'checked="checked"' ?> />
294
+ <br /><?php _e('Over time the Daily Top 10 database grows in size, which reduces the performance of the plugin. Cleaning the database at regular intervals could improve performance, especially on high traffic blogs',TPTN_LOCAL_NAME); ?>
295
+ </td>
296
+ </tr>
297
+ <tr style="vertical-align: top;"><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
298
+ <td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo attribute_escape(stripslashes($tptn_settings[cron_hour])); ?>" style="width:10px" /> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo attribute_escape(stripslashes($tptn_settings[cron_min])); ?>" style="width:10px" /> hrs</td>
299
+ </tr>
300
+ <tr style="vertical-align: top;"><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
301
+ <td>
302
+ <label>
303
+ <input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ($tptn_settings['cron_recurrence']=='daily') echo 'checked="checked"' ?> />
304
+ <?php _e('Daily',TPTN_LOCAL_NAME); ?></label>
305
+ <br />
306
+ <label>
307
+ <input type="radio" name="cron_recurrence" value="weekly" id="cron_recurrence1" <?php if ($tptn_settings['cron_recurrence']=='weekly') echo 'checked="checked"' ?> />
308
+ <?php _e('Weekly',TPTN_LOCAL_NAME); ?></label>
309
+ <br />
310
+ <label>
311
+ <input type="radio" name="cron_recurrence" value="fortnightly" id="cron_recurrence2" <?php if ($tptn_settings['cron_recurrence']=='fortnightly') echo 'checked="checked"' ?> />
312
+ <?php _e('Fortnightly',TPTN_LOCAL_NAME); ?></label>
313
+ <br />
314
+ <label>
315
+ <input type="radio" name="cron_recurrence" value="monthly" id="cron_recurrence3" <?php if ($tptn_settings['cron_recurrence']=='monthly') echo 'checked="checked"' ?> />
316
+ <?php _e('Monthly',TPTN_LOCAL_NAME); ?></label>
317
+ <br />
318
+ </td>
319
+ </tr>
320
+ <tr style="vertical-align: top;"><td scope="row" colspan="2">
321
+ <?php
322
+ if ($tptn_settings[cron_on]) {
323
+ if (wp_next_scheduled('ald_tptn_hook')) {
324
+ echo '<span style="color:#0c0">';
325
+ _e('The cron job has been scheduled. Maintenance will run ',TPTN_LOCAL_NAME);
326
+ echo wp_get_schedule('ald_tptn_hook');
327
+ echo '</span>';
328
+ } else {
329
+ echo '<span style="color:#e00">';
330
+ _e('The cron job is missing. Please resave this page to add the job',TPTN_LOCAL_NAME);
331
+ echo '</span>';
332
+ }
333
+ } else {
334
+ echo '<span style="color:#FFA500">';
335
+ _e('Maintenance is turned off',TPTN_LOCAL_NAME);
336
+ echo '</span>';
337
+ }
338
+ ?>
339
+ </td></tr>
340
+ </table>
341
+ <hr />
342
+ <h4>
343
+ <?php _e('Reset count',TPTN_LOCAL_NAME); ?>
344
+ </h4>
345
+ <p>
346
+ <?php _e('This cannot be reversed. Make sure that your database has been backed up before proceeding',TPTN_LOCAL_NAME); ?>
347
+ </p>
348
+ <p>
349
+ <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e('Reset Popular Posts',TPTN_LOCAL_NAME); ?>" style="border:#900 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
350
+ <input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="<?php _e('Reset Daily Popular Posts',TPTN_LOCAL_NAME); ?>" style="border:#C00 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
351
+ <input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="<?php _e('Clear duplicates',TPTN_LOCAL_NAME); ?>" style="border:#600 1px solid" onclick="if (!confirm('<?php _e('This will delete the duplicate entries in the tables. Proceed?',TPTN_LOCAL_NAME); ?>')) return false;" />
352
+ </p>
353
+ </div>
354
+ <p>
355
+ <input type="submit" name="tptn_save" id="tptn_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>" style="border:#0C0 1px solid" />
356
+ <input name="tptn_default" type="submit" id="tptn_default" value="<?php _e('Default Options',TPTN_LOCAL_NAME); ?>" style="border:#F00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',TPTN_LOCAL_NAME); ?>')) return false;" />
357
+ </p>
358
+ </fieldset>
359
+ </form>
360
  </div>
 
 
 
361
 
362
+ </div>
363
+ <div style="clear: both;"></div>
364
+ </div>
365
+ </div>
366
  <?php
367
 
368
  }
370
  function tptn_manage() {
371
  $paged = intval($_GET['paged']);
372
  $limit = intval($_GET['limit']);
373
+ $exclude_pages = intval($_GET['exclude_pages']);
374
  $daily = $_GET['daily'];
375
 
376
+ ?>
377
+
378
+ <div class="wrap">
379
+ <div id="page-wrap">
380
+ <div id="inside">
381
+ <div id="header">
382
+ <h2><?php if (!$daily) _e('Popular Posts',TPTN_LOCAL_NAME); else _e('Daily Popular Posts',TPTN_LOCAL_NAME); ?></h2>
383
+ </div>
384
+ <div id="side">
385
+ <?php tptn_admin_side(); ?>
386
+ </div>
387
+
388
+ <div id="options-div">
389
+ <?php echo tptn_pop_display($daily,$paged,$limit,false,$exclude_pages); ?>
390
+ </div> <!-- End options-div -->
391
+
392
+ </div> <!-- End inside -->
393
+ <div style="clear: both;"></div>
394
+ </div> <!-- End page-wrap -->
395
+ </div> <!-- End wrap -->
396
+
397
+
398
+ <?php
399
  }
400
 
401
  function tptn_admin_side() {
402
  ?>
403
+ <div class="side-widget">
404
+ <span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
405
+ <div id="donate-form">
406
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
407
+ <input type="hidden" name="cmd" value="_xclick">
408
+ <input type="hidden" name="business" value="donate@ajaydsouza.com">
409
+ <input type="hidden" name="lc" value="IN">
410
+ <input type="hidden" name="item_name" value="Donation for Top 10">
411
+ <input type="hidden" name="item_number" value="tptn">
412
+ <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
413
+ <input type="hidden" name="currency_code" value="USD">
414
+ <input type="hidden" name="button_subtype" value="services">
415
+ <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
416
+ <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" title="<?php _e('Send your donation to the author of',TPTN_LOCAL_NAME) ?> Top 10">
417
+ <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
418
+ </form>
419
+ </div>
420
+ </div>
421
+ <div class="side-widget">
422
+ <span class="title"><?php _e('Follow us on Facebook',TPTN_LOCAL_NAME) ?></span>
423
+ <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>
424
+ </div>
425
+ <div class="side-widget">
426
+ <span class="title"><?php _e('Quick Links',TPTN_LOCAL_NAME) ?></span>
427
+ <ul>
428
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 plugin page',TPTN_LOCAL_NAME) ?></a></li>
429
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
430
+ <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
431
+ <li><a href="http://wordpress.org/support/plugin/top-10"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
432
+ <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
433
+ </ul>
434
+ </div>
435
+ <div class="side-widget">
436
+ <span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
437
+ <?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
438
+ ?>
439
  </div>
 
 
440
  <?php
441
  }
442
 
470
  ?>
471
  <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/wick/wick.css" />
472
  <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/admin-styles.css" />
473
+ <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/tabber/tabber.css" />
474
  <script type="text/javascript" language="JavaScript">
475
  function checkForm() {
476
  answer = true;
481
  </script>
482
  <script type="text/javascript" src="<?php echo $tptn_url ?>/wick/sample_data.js.php"></script>
483
  <script type="text/javascript" src="<?php echo $tptn_url ?>/wick/wick.js"></script>
484
+ <script type="text/javascript" src="<?php echo $tptn_url ?>/tabber/tabber.js"></script>
485
  <?php }
486
 
487
  // Function to delete all rows in the posts table
497
  }
498
 
499
  /* Create a Dashboard Widget */
500
+ function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = false, $exclude_pages = 0) {
501
  global $wpdb, $siteurl, $tableposts, $id;
502
 
503
  $table_name = $wpdb->prefix . "top_ten";
510
  if(!$daily) {
511
  $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type ";
512
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
513
+ if ($exclude_pages) $sql .= "AND post_type = 'post' ";
514
  $sql .= "AND post_status = 'publish' ";
515
  $sql .= "ORDER BY sumCount DESC";
516
  } else {
521
 
522
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
523
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
524
+ if ($exclude_pages) $sql .= "AND post_type = 'post' ";
525
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
526
  $sql .= "GROUP BY postnumber ";
527
  $sql .= "ORDER BY sumCount DESC";
554
  if(!$daily) {
555
  $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type ";
556
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
557
+ if ($exclude_pages) $sql .= "AND post_type = 'post' ";
558
  $sql .= "AND post_status = 'publish' ";
559
  $sql .= "ORDER BY sumCount DESC LIMIT $page, $limit";
560
  } else {
561
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
562
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
563
+ if ($exclude_pages) $sql .= "AND post_type = 'post' ";
564
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
565
  $sql .= "GROUP BY postnumber ";
566
  $sql .= "ORDER BY sumCount DESC LIMIT $page, $limit";
601
  }
602
  $output .= '<td align="right">';
603
  $output .= __('Results per-page:',TPTN_LOCAL_NAME);
604
+ $output .= ' <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=10">10</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=20">20</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=50">50</a> | <a href="./edit.php?page=tptn_manage&daily='.$daily.'&limit=100">100</a> ';
605
+ $output .= ' </td>
606
  </tr>
607
  <tr>
608
  <td colspan="2" align="right"><hr /></td>
ald-framework.inc.php ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**********************************************************************
3
+ * Framework file *
4
+ *********************************************************************/
5
+ if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
6
+ if (!defined('ALD_TPTN_DIR')) define('ALD_TPTN_DIR', dirname(__FILE__));
7
+ if (!defined('TPTN_LOCAL_NAME')) define('TPTN_LOCAL_NAME', 'tptn');
8
+
9
+ // Function to get the post thumbnail
10
+ if (!function_exists(ald_get_the_post_thumbnail)) { function ald_get_the_post_thumbnail($args = array()) {
11
+
12
+ global $ald_url;
13
+ $defaults = array(
14
+ 'postid' => '',
15
+ 'thumb_height' => '50', // Max height of thumbnails
16
+ 'thumb_width' => '50', // Max width of thumbnails
17
+ 'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
18
+ 'thumb_default' => '', // Default thumbnail image
19
+ 'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
20
+ 'thumb_timthumb' => true, // Use timthumb
21
+ 'scan_images' => false, // Scan post for images
22
+ 'class' => 'ald_thumb', // Class of the thumbnail
23
+ 'filter' => 'ald_postimage', // Class of the thumbnail
24
+ );
25
+
26
+ // Parse incomming $args into an array and merge it with $defaults
27
+ $args = wp_parse_args( $args, $defaults );
28
+
29
+ // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
30
+ extract( $args, EXTR_SKIP );
31
+
32
+ $result = get_post($postid);
33
+
34
+ $output = '';
35
+ $title = get_the_title($postid);
36
+
37
+ if (function_exists('has_post_thumbnail') && has_post_thumbnail($result->ID)) {
38
+ $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
39
+ $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height );
40
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
41
+
42
+ // $output .= get_the_post_thumbnail($result->ID, array($thumb_width,$thumb_height), array('title' => $title,'alt' => $title, 'class' => $class, 'border' => '0'));
43
+ } else {
44
+ $postimage = get_post_meta($result->ID, $thumb_meta, true); // Check
45
+ if (!$postimage && $scan_images) {
46
+ preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
47
+ // any image there?
48
+ if (isset($matches) && $matches[1][0]) {
49
+ if (((strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false))|| ((strpos($matches[1][0], 'http://') === false))) {
50
+ $postimage = $matches[1][0]; // we need the first one only!
51
+ }
52
+ }
53
+ }
54
+ if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
55
+ if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
56
+ if ($postimage) {
57
+ if ($thumb_timthumb) {
58
+ $output .= '<img src="'.$ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
59
+ } else {
60
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
61
+ }
62
+ }
63
+ }
64
+
65
+ return $output;
66
+ }}
67
+
68
+ // Function to create an excerpt for the post
69
+ if (!function_exists(ald_excerpt)) { function ald_excerpt($postid,$excerpt_length){
70
+ $content = get_post($postid)->post_excerpt;
71
+ if ($content=='') $content = get_post($postid)->post_content;
72
+ $out = strip_tags($content);
73
+ $blah = explode(' ',$out);
74
+ if (!$excerpt_length) $excerpt_length = 10;
75
+ if(count($blah) > $excerpt_length){
76
+ $k = $excerpt_length;
77
+ $use_dotdotdot = 1;
78
+ }else{
79
+ $k = count($blah);
80
+ $use_dotdotdot = 0;
81
+ }
82
+ $excerpt = '';
83
+ for($i=0; $i<$k; $i++){
84
+ $excerpt .= $blah[$i].' ';
85
+ }
86
+ $excerpt .= ($use_dotdotdot) ? '...' : '';
87
+ $out = $excerpt;
88
+ return $out;
89
+ }}
90
+
91
+ // Function to save the global page ID. Used for the widget
92
+ // Code from: http://indrek.it/blog/wordpress-front-page-vs-home-page-and-getting-post-id-outside-or-after-the-loop-in-every-possible-way/
93
+ if (!function_exists(ald_save_page_ID)) { function ald_save_page_ID() {
94
+ // Declare globals as before
95
+ global $ald_page_id;
96
+ global $post;
97
+ $ald_page_id = $post->ID;
98
+ }
99
+ add_action('wp_head', 'ald_save_page_ID');
100
+ }
101
+
102
+
103
+
104
+
105
+
106
+ ?>
default.png CHANGED
Binary file
default2.png ADDED
Binary file
languages/top-10-ro_RO.mo DELETED
Binary file
languages/top-10-ro_RO.po DELETED
@@ -1,345 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Top 10\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-23 21:31-0000\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
- "Language-Team: Web Geeks\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Romanian\n"
13
- "X-Poedit-Country: Romania\n"
14
- "X-Poedit-KeywordsList: _e;__\n"
15
- "X-Poedit-Basepath: ../\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin.inc.php:58
19
- msgid "Options saved successfully."
20
- msgstr "Opţiuni salvat cu succes."
21
-
22
- #: admin.inc.php:67
23
- msgid "Options set to Default."
24
- msgstr "Opţiunile setate la valorile implicite."
25
-
26
- #: admin.inc.php:73
27
- msgid "Top 10 popular posts reset"
28
- msgstr "Top 10 populare posturi Resetare"
29
-
30
- #: admin.inc.php:79
31
- msgid "Top 10 daily popular posts reset"
32
- msgstr "Top 10 posturi populare daily Reiniţializare"
33
-
34
- #: admin.inc.php:86
35
- msgid "Tables cleaned of duplicate rows"
36
- msgstr "Tabelele curățate de rânduri duplicat"
37
-
38
- #: admin.inc.php:98
39
- msgid "Options:"
40
- msgstr "Opţiuni:"
41
-
42
- #: admin.inc.php:103
43
- msgid "Format to display the count in: "
44
- msgstr "Format pentru a afişa numărul în: "
45
-
46
- #: admin.inc.php:107
47
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
- msgstr "Utilizaţi <code>% totalcount %</code> pentru a afişa numărul total şi <code>% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
49
-
50
- #: admin.inc.php:110
51
- msgid "Number of popular posts to display: "
52
- msgstr "Numărul de posturi populare pentru a afişa: "
53
-
54
- #: admin.inc.php:116
55
- msgid "Daily Popular should contain views of how many days? "
56
- msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
57
-
58
- #: admin.inc.php:123
59
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
- msgstr "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe pagini va continua să fie numărate."
61
-
62
- #: admin.inc.php:129
63
- msgid "Display number of views on posts?"
64
- msgstr "Afişează numărul de vizualizări pe posturi?"
65
-
66
- #: admin.inc.php:135
67
- msgid "Display number of views on pages?"
68
- msgstr "Afişează numărul de vizualizări pe pagini?"
69
-
70
- #: admin.inc.php:141
71
- msgid "Track visits of authors on their own posts?"
72
- msgstr "Track vizite de autori pe posturile lor proprii?"
73
-
74
- #: admin.inc.php:147
75
- msgid "Display number of page views in popular lists?"
76
- msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
77
-
78
- #: admin.inc.php:153
79
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
- msgstr "Vigoare lista de zi cu zi de posturi să fie dinamic? Această opţiune utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare pagină"
81
-
82
- #: admin.inc.php:159
83
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
- msgstr "Afişarea de vizualizări de pagină pe Editare posturi/pagini în WP-Admin? O coloană suplimentară se adaugă cu contele"
85
-
86
- #: admin.inc.php:165
87
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
- msgstr "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
89
-
90
- #: admin.inc.php:169
91
- msgid "Output Options:"
92
- msgstr "Opţiuni de ieşire:"
93
-
94
- #: admin.inc.php:173
95
- msgid "Title of popular posts: "
96
- msgstr "Titlul de posturi populare: "
97
-
98
- #: admin.inc.php:179
99
- msgid "Title of daily popular posts: "
100
- msgstr "Titlul de zi cu zi de posturi populare: "
101
-
102
- #: admin.inc.php:186
103
- msgid "Show post excerpt in list?"
104
- msgstr "Afişează post extras din lista?"
105
-
106
- #: admin.inc.php:191
107
- msgid "Length of excerpt (in words): "
108
- msgstr "Lungimea extras (în cuvinte): "
109
-
110
- #: admin.inc.php:195
111
- msgid "Exclude Categories: "
112
- msgstr "Excludeţi categorii: "
113
-
114
- #: admin.inc.php:210
115
- msgid "Customize the output:"
116
- msgstr "Personaliza ieşire:"
117
-
118
- #: admin.inc.php:213
119
- msgid "HTML to display before the list of posts: "
120
- msgstr "HTML pentru a afişa înainte de lista de posturi: "
121
-
122
- #: admin.inc.php:219
123
- msgid "HTML to display before each list item: "
124
- msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
125
-
126
- #: admin.inc.php:225
127
- msgid "HTML to display after each list item: "
128
- msgstr "HTML pentru a afişa după fiecare element din listă: "
129
-
130
- #: admin.inc.php:231
131
- msgid "HTML to display after the list of posts: "
132
- msgstr "HTML pentru a afişa după lista de posturi: "
133
-
134
- #: admin.inc.php:235
135
- msgid "Post thumbnail options:"
136
- msgstr "Post Opţiuni pictograme:"
137
-
138
- #: admin.inc.php:239
139
- msgid "Display thumbnails inline with posts, before title"
140
- msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
141
-
142
- #: admin.inc.php:243
143
- msgid "Display thumbnails inline with posts, after title"
144
- msgstr "Afişare miniaturi inline cu posturi, după titlul"
145
-
146
- #: admin.inc.php:247
147
- msgid "Display only thumbnails, no text"
148
- msgstr "Afişa numai miniaturi, nici un text"
149
-
150
- #: admin.inc.php:251
151
- msgid "Do not display thumbnails, only text."
152
- msgstr "Nu se afişează miniaturi, numai textul."
153
-
154
- #: admin.inc.php:256
155
- msgid "Post thumbnail meta field (the meta should point to the image source): "
156
- msgstr "Post miniaturi meta câmp (meta ar trebui să punct de imagine sursă): "
157
-
158
- #: admin.inc.php:263
159
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
- msgstr "Dacă postmeta nu este setată, apoi trebuie să plugin-ul extrage prima imagine din post. Acest lucru poate încetini încărcarea de post dumneavoastră dacă prima imagine în legate de posturi este mare în mărime fişier"
161
-
162
- #: admin.inc.php:266
163
- msgid "Thumbnail dimensions:"
164
- msgstr "Dimensiunile miniatură:"
165
-
166
- #: admin.inc.php:268
167
- msgid "Max width: "
168
- msgstr "Max Lăţime: "
169
-
170
- #: admin.inc.php:273
171
- msgid "Max height: "
172
- msgstr "Max înălţime: "
173
-
174
- #: admin.inc.php:277
175
- msgid "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."
176
- msgstr "Dacă verificat, atunci când este găsit nici un thumbnail, arată o implicit la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un thumbnail, imaginea nu va fi indicat."
177
-
178
- #: admin.inc.php:282
179
- msgid "Do you want to set options to Default?"
180
- msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
181
-
182
- #: admin.inc.php:285
183
- msgid "Reset count"
184
- msgstr "Reiniţializare count"
185
-
186
- #: admin.inc.php:288
187
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
- msgstr "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit înainte de a continua"
189
-
190
- #: admin.inc.php:291
191
- msgid "Are you sure you want to reset the popular posts?"
192
- msgstr "Sigur reiniţializaţi posturi populare?"
193
-
194
- #: admin.inc.php:292
195
- msgid "Are you sure you want to reset the daily popular posts?"
196
- msgstr "Sigur reiniţializaţi posturi populare zilnic?"
197
-
198
- #: admin.inc.php:293
199
- msgid "This will delete the duplicate entries in the tables. Proceed?"
200
- msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
201
-
202
- #: admin.inc.php:300
203
- #: admin.inc.php:360
204
- msgid "Quick links"
205
- msgstr "Legături rapide pentru"
206
-
207
- #: admin.inc.php:302
208
- #: admin.inc.php:362
209
- msgid "Top 10 "
210
- msgstr "Top 10 "
211
-
212
- #: admin.inc.php:302
213
- #: admin.inc.php:362
214
- msgid "plugin page"
215
- msgstr "plug-in pagina"
216
-
217
- #: admin.inc.php:303
218
- #: admin.inc.php:363
219
- msgid "Other plugins"
220
- msgstr "Alte plugin-uri"
221
-
222
- #: admin.inc.php:304
223
- #: admin.inc.php:364
224
- msgid "Ajay's blog"
225
- msgstr "Ajay's blog"
226
-
227
- #: admin.inc.php:305
228
- #: admin.inc.php:365
229
- #: top-10.php:515
230
- msgid "Support"
231
- msgstr "Suport"
232
-
233
- #: admin.inc.php:306
234
- #: admin.inc.php:366
235
- msgid "Follow @ajaydsouza on Twitter"
236
- msgstr "Urmaţi @ ajaydsouza pe Twitter"
237
-
238
- #: admin.inc.php:310
239
- #: admin.inc.php:370
240
- msgid "Recent developments"
241
- msgstr "Evoluţiile recente"
242
-
243
- #: admin.inc.php:315
244
- #: admin.inc.php:375
245
- msgid "Support the development"
246
- msgstr "Sprijinirea dezvoltării"
247
-
248
- #: admin.inc.php:323
249
- #: admin.inc.php:383
250
- msgid "Enter amount in USD: "
251
- msgstr "Introduceţi valoarea în USD: "
252
-
253
- #: admin.inc.php:327
254
- #: admin.inc.php:387
255
- msgid "Send your donation to the author of"
256
- msgstr "Trimite donatie autorului"
257
-
258
- #: admin.inc.php:347
259
- #: admin.inc.php:414
260
- #: admin.inc.php:618
261
- #: top-10.php:257
262
- #: top-10.php:273
263
- #: top-10.php:445
264
- #: top-10.php:448
265
- msgid "Popular Posts"
266
- msgstr "Posturi populare"
267
-
268
- #: admin.inc.php:347
269
- msgid "Daily Popular Posts"
270
- msgstr "Posturi populare de zi cu zi"
271
-
272
- #: admin.inc.php:412
273
- #: admin.inc.php:414
274
- msgid "Top 10"
275
- msgstr "Top 10"
276
-
277
- #: admin.inc.php:526
278
- msgid "Results"
279
- msgstr "Rezultatele"
280
-
281
- #: admin.inc.php:528
282
- #: admin.inc.php:534
283
- msgid "of"
284
- msgstr "de"
285
-
286
- #: admin.inc.php:532
287
- msgid "Page"
288
- msgstr "Pagină"
289
-
290
- #: admin.inc.php:546
291
- msgid "View Daily Popular Posts"
292
- msgstr "Vizualizare zi posturi populare"
293
-
294
- #: admin.inc.php:550
295
- msgid "View Overall Popular Posts"
296
- msgstr "Vedere de ansamblu posturi populare"
297
-
298
- #: admin.inc.php:554
299
- msgid "Results per-page:"
300
- msgstr "Rezultate pe pagină:"
301
-
302
- #: admin.inc.php:578
303
- msgid "Previous"
304
- msgstr "Anterioară"
305
-
306
- #: admin.inc.php:596
307
- msgid "Next"
308
- msgstr "Următorul"
309
-
310
- #: admin.inc.php:619
311
- #: top-10.php:219
312
- #: top-10.php:235
313
- #: top-10.php:446
314
- #: top-10.php:449
315
- msgid "Daily Popular"
316
- msgstr "Daily populare"
317
-
318
- #: admin.inc.php:630
319
- msgid "Total / Today's Views"
320
- msgstr "Total / astăzi lui vizitări"
321
-
322
- #: top-10.php:218
323
- msgid "Display the posts popular today"
324
- msgstr "Afişa posturi populare de astăzi"
325
-
326
- #: top-10.php:256
327
- msgid "Display the posts popular this week"
328
- msgstr "Afişa posturi populare în această săptămână"
329
-
330
- #: top-10.php:286
331
- msgid "<h3>Popular Posts</h3>"
332
- msgstr "<h3>Posturi populare</h3>"
333
-
334
- #: top-10.php:287
335
- msgid "<h3>Daily Popular</h3>"
336
- msgstr "<h3>Daily populare</h3>"
337
-
338
- #: top-10.php:514
339
- msgid "Settings"
340
- msgstr "Setări"
341
-
342
- #: top-10.php:516
343
- msgid "Donate"
344
- msgstr "Dona"
345
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/tptn-az_AZ.mo CHANGED
Binary file
languages/tptn-az_AZ.po CHANGED
@@ -2,124 +2,173 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:42-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Azerbaijani\n"
13
- "X-Poedit-Country: AZERBAIJAN\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
21
 
22
- #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
25
 
26
- #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "10 populyar yazı statisticasını pozmaq"
29
 
30
- #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
33
 
34
- #: admin.inc.php:86
35
- msgid "Tables cleaned of duplicate rows"
36
- msgstr "Silinmiş dublikat sirası cədvəli"
37
-
38
- #: admin.inc.php:98
39
- msgid "Options:"
40
- msgstr "Opsiyalar:"
41
-
42
  #: admin.inc.php:103
43
- msgid "Format to display the count in: "
44
- msgstr "Miqdarı göstərən format:"
45
 
46
- #: admin.inc.php:107
47
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
- msgstr "Ümumi baxılma sayının çıxartası üçün <code>%totalcount%</code>-dan istifadə edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
49
 
50
- #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Populyar postların miqdarının nümayişi:"
53
 
54
- #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
- msgstr "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
 
57
 
58
- #: admin.inc.php:123
59
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
- msgstr "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı saymaqda davam etdiriləcək."
 
 
 
 
61
 
62
- #: admin.inc.php:129
63
- msgid "Display number of views on posts?"
 
 
 
 
 
64
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
65
 
66
- #: admin.inc.php:135
67
- msgid "Display number of views on pages?"
68
- msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
 
 
 
 
 
69
 
70
- #: admin.inc.php:141
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
73
 
74
- #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
77
 
78
- #: admin.inc.php:153
79
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
- msgstr "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
81
 
82
- #: admin.inc.php:159
83
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
- msgstr "WP-Admin-də baxilmış yazılarının/səhifələrinin miqdarını göstərmək lazımdır? Bundan ötrü ayrıca sütün wp-admin/edit.php əlavə olunacaq"
 
 
 
 
 
85
 
86
- #: admin.inc.php:165
87
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
- msgstr "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz onu qoyduğunuz halda Sizə çox minnətdar olardı!"
89
 
90
- #: admin.inc.php:169
91
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgstr "Plaginin kökləmələri:"
93
 
94
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Title of popular posts: "
96
  msgstr "Populyar yazılarının başlığı:"
97
 
98
- #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Gündəlik populyual yazılışların başlığı:"
101
 
102
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
103
  msgid "Show post excerpt in list?"
104
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
105
 
106
- #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
109
 
110
- #: admin.inc.php:195
111
- msgid "Exclude Categories: "
112
- msgstr ""
113
-
114
- #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Suiyahı formasının kökləmələri:"
117
 
118
- #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
121
 
122
- #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
125
 
@@ -127,232 +176,446 @@ msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
127
  msgid "HTML to display after each list item: "
128
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
129
 
130
- #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
133
 
134
- #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
137
 
138
- #: admin.inc.php:239
 
 
 
 
139
  #, fuzzy
140
  msgid "Display thumbnails inline with posts, before title"
141
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
142
 
143
- #: admin.inc.php:243
144
  #, fuzzy
145
  msgid "Display thumbnails inline with posts, after title"
146
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
147
 
148
- #: admin.inc.php:247
149
  msgid "Display only thumbnails, no text"
150
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
151
 
152
- #: admin.inc.php:251
153
  msgid "Do not display thumbnails, only text."
154
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
155
 
 
 
 
 
156
  #: admin.inc.php:256
157
- msgid "Post thumbnail meta field (the meta should point to the image source): "
158
- msgstr "Əvvəlcədən baxışı çıxartmaq üçün sərbəst sahənin (meta sahənin) adını daxil edin:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
  #: admin.inc.php:263
161
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
162
- msgstr "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
 
 
 
 
 
 
 
 
 
 
 
 
163
 
164
  #: admin.inc.php:266
165
- msgid "Thumbnail dimensions:"
166
- msgstr "Çıxardılmış şəkilin ölçüləri (əvvəlcədən baxış):"
 
 
 
 
 
 
167
 
168
  #: admin.inc.php:268
169
- msgid "Max width: "
170
- msgstr "Maksimal eni:"
 
 
 
 
 
 
171
 
172
- #: admin.inc.php:273
173
- msgid "Max height: "
174
- msgstr "Maksimal hündürlük:"
175
 
176
- #: admin.inc.php:277
177
- msgid "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."
 
 
 
 
178
  msgstr ""
 
 
 
179
 
180
- #: admin.inc.php:282
181
- msgid "Do you want to set options to Default?"
182
- msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
 
184
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
185
  msgid "Reset count"
186
  msgstr "Statistikanı sbros etmək"
187
 
188
- #: admin.inc.php:288
189
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
190
- msgstr "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun ki, Sizin məlumat bazasının kopiyası var!"
 
 
 
 
191
 
192
- #: admin.inc.php:291
 
 
 
 
 
193
  msgid "Are you sure you want to reset the popular posts?"
194
- msgstr "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
 
195
 
196
- #: admin.inc.php:292
 
 
 
 
 
197
  msgid "Are you sure you want to reset the daily popular posts?"
198
- msgstr "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək istəyirsiniz?"
 
 
199
 
200
- #: admin.inc.php:293
 
 
 
 
201
  msgid "This will delete the duplicate entries in the tables. Proceed?"
202
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
203
 
204
- #: admin.inc.php:300
205
- #: admin.inc.php:360
206
- msgid "Quick links"
207
- msgstr "Faydalı istenadlar"
208
 
209
- #: admin.inc.php:302
210
- #: admin.inc.php:362
211
- msgid "Top 10 "
212
- msgstr "Top 10 yazılar"
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
- #: admin.inc.php:302
215
- #: admin.inc.php:362
216
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  msgstr "plaginin səhifəsi"
218
 
219
- #: admin.inc.php:303
220
- #: admin.inc.php:363
221
  msgid "Other plugins"
222
  msgstr "Digər plaginlər"
223
 
224
- #: admin.inc.php:304
225
- #: admin.inc.php:364
226
  msgid "Ajay's blog"
227
  msgstr "Ajay-in blogu"
228
 
229
- #: admin.inc.php:305
230
- #: admin.inc.php:365
231
- #: top-10.php:515
232
  msgid "Support"
233
  msgstr "Dəstək"
234
 
235
- #: admin.inc.php:306
236
- #: admin.inc.php:366
237
  msgid "Follow @ajaydsouza on Twitter"
238
  msgstr "Twitter-də @ajaydsouza ardınca get "
239
 
240
- #: admin.inc.php:310
241
- #: admin.inc.php:370
242
  msgid "Recent developments"
243
  msgstr "Son inkişaflar"
244
 
245
- #: admin.inc.php:315
246
- #: admin.inc.php:375
247
- msgid "Support the development"
248
- msgstr "İnkişafı dəstək vermək"
249
-
250
- #: admin.inc.php:323
251
- #: admin.inc.php:383
252
- msgid "Enter amount in USD: "
253
- msgstr "Miiqdarı USD ilə daxil et:"
254
-
255
- #: admin.inc.php:327
256
- #: admin.inc.php:387
257
- msgid "Send your donation to the author of"
258
- msgstr "Müəlifə ianə göndərin "
259
-
260
- #: admin.inc.php:347
261
- #: admin.inc.php:414
262
- #: admin.inc.php:618
263
- #: top-10.php:257
264
- #: top-10.php:273
265
- #: top-10.php:445
266
- #: top-10.php:448
267
- msgid "Popular Posts"
268
- msgstr "Populyar yazılar"
269
-
270
- #: admin.inc.php:347
271
- msgid "Daily Popular Posts"
272
- msgstr "Gündəlik Populyar Yazılar"
273
-
274
- #: admin.inc.php:412
275
- #: admin.inc.php:414
276
  msgid "Top 10"
277
  msgstr "Top 10 yazılar"
278
 
279
- #: admin.inc.php:526
280
  msgid "Results"
281
  msgstr "Nəticələr"
282
 
283
- #: admin.inc.php:528
284
- #: admin.inc.php:534
285
  msgid "of"
286
  msgstr "-dən "
287
 
288
- #: admin.inc.php:532
289
  msgid "Page"
290
  msgstr "Səhifə"
291
 
292
- #: admin.inc.php:546
293
  msgid "View Daily Popular Posts"
294
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
295
 
296
- #: admin.inc.php:550
297
  msgid "View Overall Popular Posts"
298
  msgstr "Bütün Populyar Yazılara Baxmaq"
299
 
300
- #: admin.inc.php:554
301
  msgid "Results per-page:"
302
  msgstr "Səhifə üzrə nəticələr:"
303
 
304
- #: admin.inc.php:578
305
  msgid "Previous"
306
  msgstr "Əvvəlki"
307
 
308
- #: admin.inc.php:596
309
  msgid "Next"
310
  msgstr "Sonrakı"
311
 
312
- #: admin.inc.php:619
313
- #: top-10.php:219
314
- #: top-10.php:235
315
- #: top-10.php:446
316
- #: top-10.php:449
317
  msgid "Daily Popular"
318
  msgstr "Gündəlik Populyar"
319
 
320
- #: admin.inc.php:630
321
  msgid "Total / Today's Views"
322
  msgstr "Ümümi/ Bu günkü baxış"
323
 
324
- #: top-10.php:218
325
- msgid "Display the posts popular today"
326
  msgstr ""
327
 
328
- #: top-10.php:256
329
- msgid "Display the posts popular this week"
330
  msgstr ""
331
 
332
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  msgid "<h3>Popular Posts</h3>"
334
  msgstr "<h3>Populyar yazılar</h3>"
335
 
336
- #: top-10.php:287
337
  msgid "<h3>Daily Popular</h3>"
338
  msgstr "<h3>Gündəlik Populyar</h3>"
339
 
340
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  msgid "Settings"
342
  msgstr "Kökləmələr"
343
 
344
- #: top-10.php:516
345
  msgid "Donate"
346
  msgstr "İanə etmək"
347
 
 
 
 
 
 
 
348
  #~ msgid ""
349
- #~ "The plugin will first check if the post contains a thumbnail. If it "
350
- #~ "doesn't then it will check the meta field. If this is not available, then "
351
- #~ "it will show the default image as specified below:"
352
  #~ msgstr ""
353
- #~ "Plagin birinci növbədə yazışda əvvəlcədən baxış olmasını yoxlayacaq "
354
- #~ "(yoxlama əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən "
355
- #~ "baxış yoxdursan onda standard şəkil çıxarılacaq:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
 
357
  #~ msgid "Support forum"
358
  #~ msgstr "Dəstək forumu"
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:54-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
9
+ "Language: az_AZ\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "10 populyar yazı statisticasını pozmaq"
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
32
 
 
 
 
 
 
 
 
 
33
  #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
 
41
+ #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Populyar postların miqdarının nümayişi:"
44
 
45
+ #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
+ msgstr ""
48
+ "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
49
 
50
+ #: admin.inc.php:133
51
+ msgid ""
52
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
+ "continue to be counted."
54
+ msgstr ""
55
+ "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı "
56
+ "saymaqda davam etdiriləcək."
57
 
58
+ #: admin.inc.php:136
59
+ msgid "Exclude Categories: "
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:154
63
+ #, fuzzy
64
+ msgid "Display number of views on:"
65
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
66
 
67
+ #: admin.inc.php:155
68
+ msgid "Posts"
69
+ msgstr ""
70
+
71
+ #: admin.inc.php:156
72
+ #, fuzzy
73
+ msgid "Pages"
74
+ msgstr "Səhifə"
75
 
76
+ #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
83
 
84
+ #: admin.inc.php:167
85
+ msgid "Force daily posts' list to be dynamic?"
86
+ msgstr ""
87
 
88
+ #: admin.inc.php:169
89
+ #, fuzzy
90
+ msgid ""
91
+ "This option uses JavaScript to load the post and can increase your page load "
92
+ "time"
93
+ msgstr ""
94
+ "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i "
95
+ "istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
96
 
97
+ #: admin.inc.php:172
98
+ msgid "Display page views on Posts > All Posts in Admin"
99
+ msgstr ""
100
 
101
+ #: admin.inc.php:176
102
+ msgid "Link to Top 10 plugin page"
103
+ msgstr ""
104
+
105
+ #: admin.inc.php:178
106
+ #, fuzzy
107
+ msgid ""
108
+ "A link to the plugin is added as an extra list item to the list of popular "
109
+ "posts"
110
+ msgstr ""
111
+ "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz "
112
+ "onu qoyduğunuz halda Sizə çox minnətdar olardı!"
113
+
114
+ #: admin.inc.php:185
115
+ #, fuzzy
116
+ msgid "Output Options"
117
  msgstr "Plaginin kökləmələri:"
118
 
119
+ #: admin.inc.php:188
120
+ msgid "Format to display the count in: "
121
+ msgstr "Miqdarı göstərən format:"
122
+
123
+ #: admin.inc.php:191
124
+ #, fuzzy
125
+ msgid ""
126
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
127
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
128
+ "display the overall count across all posts on the blog. e.g. the default "
129
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
130
+ msgstr ""
131
+ "Ümumi baxılma sayının çıxartası üçün <code>%totalcount%</code>-dan istifadə "
132
+ "edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>"
133
+ "(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
134
+
135
+ #: admin.inc.php:193
136
  msgid "Title of popular posts: "
137
  msgstr "Populyar yazılarının başlığı:"
138
 
139
+ #: admin.inc.php:196
140
  msgid "Title of daily popular posts: "
141
  msgstr "Gündəlik populyual yazılışların başlığı:"
142
 
143
+ #: admin.inc.php:199
144
+ msgid "When there are no posts, what should be shown?"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:203
148
+ msgid "Blank Output"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:207
152
+ msgid "Display:"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:211
156
  msgid "Show post excerpt in list?"
157
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
158
 
159
+ #: admin.inc.php:214
160
  msgid "Length of excerpt (in words): "
161
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
162
 
163
+ #: admin.inc.php:217
 
 
 
 
164
  msgid "Customize the output:"
165
  msgstr "Suiyahı formasının kökləmələri:"
166
 
167
+ #: admin.inc.php:219
168
  msgid "HTML to display before the list of posts: "
169
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
170
 
171
+ #: admin.inc.php:222
172
  msgid "HTML to display before each list item: "
173
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
174
 
176
  msgid "HTML to display after each list item: "
177
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
178
 
179
+ #: admin.inc.php:228
180
  msgid "HTML to display after the list of posts: "
181
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
182
 
183
+ #: admin.inc.php:231
184
  msgid "Post thumbnail options:"
185
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
186
 
187
+ #: admin.inc.php:233
188
+ msgid "Location of post thumbnail:"
189
+ msgstr ""
190
+
191
+ #: admin.inc.php:237
192
  #, fuzzy
193
  msgid "Display thumbnails inline with posts, before title"
194
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
195
 
196
+ #: admin.inc.php:241
197
  #, fuzzy
198
  msgid "Display thumbnails inline with posts, after title"
199
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
200
 
201
+ #: admin.inc.php:245
202
  msgid "Display only thumbnails, no text"
203
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
204
 
205
+ #: admin.inc.php:249
206
  msgid "Do not display thumbnails, only text."
207
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
208
 
209
+ #: admin.inc.php:253
210
+ msgid "Maximum width of the thumbnail: "
211
+ msgstr ""
212
+
213
  #: admin.inc.php:256
214
+ msgid "Maximum height of the thumbnail: "
215
+ msgstr ""
216
+
217
+ #: admin.inc.php:259
218
+ msgid "Use timthumb to generate thumbnails? "
219
+ msgstr ""
220
+
221
+ #: admin.inc.php:260
222
+ msgid ""
223
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
224
+ "\">timthumb</a> will be used to generate thumbnails"
225
+ msgstr ""
226
+
227
+ #: admin.inc.php:262
228
+ #, fuzzy
229
+ msgid "Post thumbnail meta field name: "
230
+ msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
231
 
232
  #: admin.inc.php:263
233
+ msgid ""
234
+ "The value of this field should contain the image source and is set in the "
235
+ "<em>Add New Post</em> screen"
236
+ msgstr ""
237
+
238
+ #: admin.inc.php:265
239
+ #, fuzzy
240
+ msgid ""
241
+ "If the postmeta is not set, then should the plugin extract the first image "
242
+ "from the post?"
243
+ msgstr ""
244
+ "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci "
245
+ "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
246
+ "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
247
 
248
  #: admin.inc.php:266
249
+ #, fuzzy
250
+ msgid ""
251
+ "This can slow down the loading of your page if the first image in the "
252
+ "related posts is large in file-size"
253
+ msgstr ""
254
+ "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci "
255
+ "şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu "
256
+ "birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
257
 
258
  #: admin.inc.php:268
259
+ msgid "Use default thumbnail? "
260
+ msgstr ""
261
+
262
+ #: admin.inc.php:269
263
+ msgid ""
264
+ "If checked, when no thumbnail is found, show a default one from the URL "
265
+ "below. If not checked and no thumbnail is found, no image will be shown."
266
+ msgstr ""
267
 
268
+ #: admin.inc.php:271
269
+ msgid "Default thumbnail: "
270
+ msgstr ""
271
 
272
+ #: admin.inc.php:272
273
+ #, fuzzy
274
+ msgid ""
275
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
276
+ "then it will check the meta field. If this is not available, then it will "
277
+ "show the default image as specified above"
278
  msgstr ""
279
+ "Plagin birinci növbədə yazışda əvvəlcədən baxış olmasını yoxlayacaq (yoxlama "
280
+ "əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan "
281
+ "onda standard şəkil çıxarılacaq:"
282
 
283
+ #: admin.inc.php:278
284
+ msgid "Custom Styles"
285
+ msgstr ""
286
+
287
+ #: admin.inc.php:281
288
+ msgid "Custom CSS to add to header:"
289
+ msgstr ""
290
+
291
+ #: admin.inc.php:284
292
+ msgid ""
293
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
294
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
295
+ "available CSS classes to style."
296
+ msgstr ""
297
+
298
+ #: admin.inc.php:289
299
+ msgid "Maintenance"
300
+ msgstr ""
301
+
302
+ #: admin.inc.php:292
303
+ msgid "Enable scheduled maintenance of daily tables:"
304
+ msgstr ""
305
+
306
+ #: admin.inc.php:294
307
+ msgid ""
308
+ "Over time the Daily Top 10 database grows in size, which reduces the "
309
+ "performance of the plugin. Cleaning the database at regular intervals could "
310
+ "improve performance, especially on high traffic blogs"
311
+ msgstr ""
312
+
313
+ #: admin.inc.php:297
314
+ msgid "Time to run maintenance"
315
+ msgstr ""
316
+
317
+ #: admin.inc.php:300
318
+ msgid "How often should the maintenance be run:"
319
+ msgstr ""
320
+
321
+ #: admin.inc.php:304
322
+ msgid "Daily"
323
+ msgstr ""
324
+
325
+ #: admin.inc.php:308
326
+ msgid "Weekly"
327
+ msgstr ""
328
+
329
+ #: admin.inc.php:312
330
+ msgid "Fortnightly"
331
+ msgstr ""
332
+
333
+ #: admin.inc.php:316
334
+ msgid "Monthly"
335
+ msgstr ""
336
+
337
+ #: admin.inc.php:325
338
+ msgid "The cron job has been scheduled. Maintenance will run "
339
+ msgstr ""
340
 
341
+ #: admin.inc.php:330
342
+ msgid "The cron job is missing. Please resave this page to add the job"
343
+ msgstr ""
344
+
345
+ #: admin.inc.php:335
346
+ msgid "Maintenance is turned off"
347
+ msgstr ""
348
+
349
+ #: admin.inc.php:343
350
  msgid "Reset count"
351
  msgstr "Statistikanı sbros etmək"
352
 
353
+ #: admin.inc.php:346
354
+ msgid ""
355
+ "This cannot be reversed. Make sure that your database has been backed up "
356
+ "before proceeding"
357
+ msgstr ""
358
+ "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
359
+ "ki, Sizin məlumat bazasının kopiyası var!"
360
 
361
+ #: admin.inc.php:349
362
+ #, fuzzy
363
+ msgid "Reset Popular Posts"
364
+ msgstr "Populyar yazılar"
365
+
366
+ #: admin.inc.php:349
367
  msgid "Are you sure you want to reset the popular posts?"
368
+ msgstr ""
369
+ "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
370
 
371
+ #: admin.inc.php:350
372
+ #, fuzzy
373
+ msgid "Reset Daily Popular Posts"
374
+ msgstr "Gündəlik Populyar Yazılar"
375
+
376
+ #: admin.inc.php:350
377
  msgid "Are you sure you want to reset the daily popular posts?"
378
+ msgstr ""
379
+ "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
380
+ "istəyirsiniz?"
381
 
382
+ #: admin.inc.php:351
383
+ msgid "Clear duplicates"
384
+ msgstr ""
385
+
386
+ #: admin.inc.php:351
387
  msgid "This will delete the duplicate entries in the tables. Proceed?"
388
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
389
 
390
+ #: admin.inc.php:355
391
+ #, fuzzy
392
+ msgid "Save Options"
393
+ msgstr "Opsiyalar:"
394
 
395
+ #: admin.inc.php:356
396
+ #, fuzzy
397
+ msgid "Default Options"
398
+ msgstr "Plaginin kökləmələri:"
399
+
400
+ #: admin.inc.php:356
401
+ msgid "Do you want to set options to Default?"
402
+ msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
403
+
404
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
405
+ msgid "Popular Posts"
406
+ msgstr "Populyar yazılar"
407
+
408
+ #: admin.inc.php:382
409
+ msgid "Daily Popular Posts"
410
+ msgstr "Gündəlik Populyar Yazılar"
411
 
412
+ #: admin.inc.php:404
413
+ msgid "Support the development"
414
+ msgstr "İnkişafı dəstək vermək"
415
+
416
+ #: admin.inc.php:412
417
+ msgid "Enter amount in USD: "
418
+ msgstr "Miiqdarı USD ilə daxil et:"
419
+
420
+ #: admin.inc.php:416
421
+ msgid "Send your donation to the author of"
422
+ msgstr "Müəlifə ianə göndərin "
423
+
424
+ #: admin.inc.php:422
425
+ msgid "Follow us on Facebook"
426
+ msgstr ""
427
+
428
+ #: admin.inc.php:426
429
+ #, fuzzy
430
+ msgid "Quick Links"
431
+ msgstr "Faydalı istenadlar"
432
+
433
+ #: admin.inc.php:428
434
+ #, fuzzy
435
+ msgid "Top 10 plugin page"
436
  msgstr "plaginin səhifəsi"
437
 
438
+ #: admin.inc.php:429
 
439
  msgid "Other plugins"
440
  msgstr "Digər plaginlər"
441
 
442
+ #: admin.inc.php:430
 
443
  msgid "Ajay's blog"
444
  msgstr "Ajay-in blogu"
445
 
446
+ #: admin.inc.php:431 top-10.php:583
 
 
447
  msgid "Support"
448
  msgstr "Dəstək"
449
 
450
+ #: admin.inc.php:432
 
451
  msgid "Follow @ajaydsouza on Twitter"
452
  msgstr "Twitter-də @ajaydsouza ardınca get "
453
 
454
+ #: admin.inc.php:436
 
455
  msgid "Recent developments"
456
  msgstr "Son inkişaflar"
457
 
458
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  msgid "Top 10"
460
  msgstr "Top 10 yazılar"
461
 
462
+ #: admin.inc.php:575
463
  msgid "Results"
464
  msgstr "Nəticələr"
465
 
466
+ #: admin.inc.php:577 admin.inc.php:583
 
467
  msgid "of"
468
  msgstr "-dən "
469
 
470
+ #: admin.inc.php:581
471
  msgid "Page"
472
  msgstr "Səhifə"
473
 
474
+ #: admin.inc.php:595
475
  msgid "View Daily Popular Posts"
476
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
477
 
478
+ #: admin.inc.php:599
479
  msgid "View Overall Popular Posts"
480
  msgstr "Bütün Populyar Yazılara Baxmaq"
481
 
482
+ #: admin.inc.php:603
483
  msgid "Results per-page:"
484
  msgstr "Səhifə üzrə nəticələr:"
485
 
486
+ #: admin.inc.php:627
487
  msgid "Previous"
488
  msgstr "Əvvəlki"
489
 
490
+ #: admin.inc.php:645
491
  msgid "Next"
492
  msgstr "Sonrakı"
493
 
494
+ #: admin.inc.php:668
 
 
 
 
495
  msgid "Daily Popular"
496
  msgstr "Gündəlik Populyar"
497
 
498
+ #: admin.inc.php:679
499
  msgid "Total / Today's Views"
500
  msgstr "Ümümi/ Bu günkü baxış"
501
 
502
+ #: top-10.php:257
503
+ msgid "Display the posts popular this week"
504
  msgstr ""
505
 
506
+ #: top-10.php:271
507
+ msgid "Title"
508
  msgstr ""
509
 
510
+ #: top-10.php:276
511
+ msgid "No. of posts"
512
+ msgstr ""
513
+
514
+ #: top-10.php:281
515
+ msgid "Overall"
516
+ msgstr ""
517
+
518
+ #: top-10.php:282
519
+ msgid "Custom time period (Enter below)"
520
+ msgstr ""
521
+
522
+ #: top-10.php:287
523
+ msgid "Range in number of days (applies only to custom option above)"
524
+ msgstr ""
525
+
526
+ #: top-10.php:291
527
+ #, fuzzy
528
+ msgid "Thumbnail options"
529
+ msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
530
+
531
+ #: top-10.php:293
532
+ #, fuzzy
533
+ msgid "Thumbnails inline, before title"
534
+ msgstr "Mətni və əvvəlcədən baxışı göstərmək"
535
+
536
+ #: top-10.php:294
537
+ #, fuzzy
538
+ msgid "Thumbnails inline, after title"
539
+ msgstr "Mətni və əvvəlcədən baxışı göstərmək"
540
+
541
+ #: top-10.php:295
542
+ #, fuzzy
543
+ msgid "Only thumbnails, no text"
544
+ msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
545
+
546
+ #: top-10.php:296
547
+ #, fuzzy
548
+ msgid "No thumbnails, only text."
549
+ msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
550
+
551
+ #: top-10.php:301
552
+ #, fuzzy
553
+ msgid " Show excerpt?"
554
+ msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
555
+
556
+ #: top-10.php:367
557
  msgid "<h3>Popular Posts</h3>"
558
  msgstr "<h3>Populyar yazılar</h3>"
559
 
560
+ #: top-10.php:368
561
  msgid "<h3>Daily Popular</h3>"
562
  msgstr "<h3>Gündəlik Populyar</h3>"
563
 
564
+ #: top-10.php:369
565
+ #, fuzzy
566
+ msgid "No top posts yet"
567
+ msgstr "10 populyar yazı statisticasını pozmaq"
568
+
569
+ #: top-10.php:560
570
+ msgid "Once Weekly"
571
+ msgstr ""
572
+
573
+ #: top-10.php:561
574
+ msgid "Once Fortnightly"
575
+ msgstr ""
576
+
577
+ #: top-10.php:562
578
+ msgid "Once Monthly"
579
+ msgstr ""
580
+
581
+ #: top-10.php:582
582
  msgid "Settings"
583
  msgstr "Kökləmələr"
584
 
585
+ #: top-10.php:584
586
  msgid "Donate"
587
  msgstr "İanə etmək"
588
 
589
+ #~ msgid "Tables cleaned of duplicate rows"
590
+ #~ msgstr "Silinmiş dublikat sirası cədvəli"
591
+
592
+ #~ msgid "Display number of views on pages?"
593
+ #~ msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
594
+
595
  #~ msgid ""
596
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
597
+ #~ "added with the count"
 
598
  #~ msgstr ""
599
+ #~ "WP-Admin-də baxilmış yazılarının/səhifələrinin miqdarını göstərmək "
600
+ #~ "lazımdır? Bundan ötrü ayrıca sütün wp-admin/edit.php əlavə olunacaq"
601
+
602
+ #~ msgid ""
603
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
604
+ #~ msgstr ""
605
+ #~ "Əvvəlcədən baxışı çıxartmaq üçün sərbəst sahənin (meta sahənin) adını "
606
+ #~ "daxil edin:"
607
+
608
+ #~ msgid "Thumbnail dimensions:"
609
+ #~ msgstr "Çıxardılmış şəkilin ölçüləri (əvvəlcədən baxış):"
610
+
611
+ #~ msgid "Max width: "
612
+ #~ msgstr "Maksimal eni:"
613
+
614
+ #~ msgid "Max height: "
615
+ #~ msgstr "Maksimal hündürlük:"
616
+
617
+ #~ msgid "Top 10 "
618
+ #~ msgstr "Top 10 yazılar"
619
 
620
  #~ msgid "Support forum"
621
  #~ msgstr "Dəstək forumu"
languages/tptn-be_BY.mo CHANGED
Binary file
languages/tptn-be_BY.po CHANGED
@@ -2,128 +2,175 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:45-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Belarusian\n"
13
- "X-Poedit-Country: BELARUS\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Налады захаваны."
21
 
22
- #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Налады скінуты."
25
 
26
- #: admin.inc.php:73
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Загаловак блока Папулярных запісаў:"
30
 
31
- #: admin.inc.php:79
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Загаловак блока Папулярных сёння запісаў:"
35
 
36
- #: admin.inc.php:86
37
- msgid "Tables cleaned of duplicate rows"
38
- msgstr ""
39
-
40
- #: admin.inc.php:98
41
- msgid "Options:"
42
- msgstr "Налады ўбудовы:"
43
-
44
  #: admin.inc.php:103
45
- msgid "Format to display the count in: "
46
- msgstr "Фармат адлюстравання колькасці праглядаў:"
47
 
48
- #: admin.inc.php:107
49
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
- msgstr "Выкарыстоўвайце <code>%totalcount%</code> каб паказваць агульны лік праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
51
 
52
- #: admin.inc.php:110
53
  msgid "Number of popular posts to display: "
54
  msgstr "Колькасць Папулярных запісаў у спісе:"
55
 
56
- #: admin.inc.php:116
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
59
 
60
- #: admin.inc.php:123
61
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
- msgstr "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для старонак будзе падлічвацца."
 
 
 
 
 
 
 
 
63
 
64
- #: admin.inc.php:129
65
- msgid "Display number of views on posts?"
 
66
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
67
 
68
- #: admin.inc.php:135
69
- msgid "Display number of views on pages?"
70
- msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
 
 
 
 
 
71
 
72
- #: admin.inc.php:141
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
75
 
76
- #: admin.inc.php:147
77
  msgid "Display number of page views in popular lists?"
78
- msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
 
 
 
 
 
79
 
80
- #: admin.inc.php:153
81
  #, fuzzy
82
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
- msgstr "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , і гэта можа павялічыць час загрузкі старонак"
 
 
 
 
84
 
85
- #: admin.inc.php:159
86
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
- msgstr "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага будзе дададзена асобная калонка"
88
 
89
- #: admin.inc.php:165
90
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
- msgstr "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
92
 
93
- #: admin.inc.php:169
94
  #, fuzzy
95
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
96
  msgstr "Налады ўбудовы:"
97
 
98
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Title of popular posts: "
100
  msgstr "Загаловак блока Папулярных запісаў:"
101
 
102
- #: admin.inc.php:179
103
  msgid "Title of daily popular posts: "
104
  msgstr "Загаловак блока Папулярных сёння запісаў:"
105
 
106
- #: admin.inc.php:186
107
- msgid "Show post excerpt in list?"
108
  msgstr ""
109
 
110
- #: admin.inc.php:191
111
- msgid "Length of excerpt (in words): "
112
  msgstr ""
113
 
114
- #: admin.inc.php:195
115
- msgid "Exclude Categories: "
 
 
 
 
116
  msgstr ""
117
 
118
- #: admin.inc.php:210
 
 
 
 
119
  msgid "Customize the output:"
120
  msgstr ""
121
 
122
- #: admin.inc.php:213
123
  msgid "HTML to display before the list of posts: "
124
  msgstr ""
125
 
126
- #: admin.inc.php:219
127
  msgid "HTML to display before each list item: "
128
  msgstr ""
129
 
@@ -132,223 +179,403 @@ msgstr ""
132
  msgid "HTML to display after each list item: "
133
  msgstr "Фармат адлюстравання колькасці праглядаў:"
134
 
135
- #: admin.inc.php:231
136
  msgid "HTML to display after the list of posts: "
137
  msgstr ""
138
 
139
- #: admin.inc.php:235
140
  msgid "Post thumbnail options:"
141
  msgstr ""
142
 
143
- #: admin.inc.php:239
 
 
 
 
144
  #, fuzzy
145
  msgid "Display thumbnails inline with posts, before title"
146
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
147
 
148
- #: admin.inc.php:243
149
  #, fuzzy
150
  msgid "Display thumbnails inline with posts, after title"
151
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
152
 
153
- #: admin.inc.php:247
154
  msgid "Display only thumbnails, no text"
155
  msgstr ""
156
 
157
- #: admin.inc.php:251
158
  msgid "Do not display thumbnails, only text."
159
  msgstr ""
160
 
 
 
 
 
161
  #: admin.inc.php:256
162
- msgid "Post thumbnail meta field (the meta should point to the image source): "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  msgstr ""
164
 
165
  #: admin.inc.php:263
166
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
 
 
 
 
 
 
 
 
167
  msgstr ""
168
 
169
  #: admin.inc.php:266
170
- msgid "Thumbnail dimensions:"
 
 
171
  msgstr ""
172
 
173
  #: admin.inc.php:268
174
- msgid "Max width: "
175
  msgstr ""
176
 
177
- #: admin.inc.php:273
178
- msgid "Max height: "
 
 
179
  msgstr ""
180
 
181
- #: admin.inc.php:277
182
- msgid "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."
183
  msgstr ""
184
 
185
- #: admin.inc.php:282
186
- msgid "Do you want to set options to Default?"
187
- msgstr "Скінуць налады ўбудовы?"
 
 
 
188
 
189
- #: admin.inc.php:285
190
- msgid "Reset count"
191
  msgstr ""
192
 
193
- #: admin.inc.php:288
194
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
195
  msgstr ""
196
 
197
- #: admin.inc.php:291
198
- msgid "Are you sure you want to reset the popular posts?"
 
 
 
 
 
 
 
199
  msgstr ""
200
 
201
  #: admin.inc.php:292
202
- msgid "Are you sure you want to reset the daily popular posts?"
203
  msgstr ""
204
 
205
- #: admin.inc.php:293
206
- msgid "This will delete the duplicate entries in the tables. Proceed?"
 
 
 
 
 
 
 
207
  msgstr ""
208
 
209
  #: admin.inc.php:300
210
- #: admin.inc.php:360
211
- msgid "Quick links"
212
  msgstr ""
213
 
214
- #: admin.inc.php:302
215
- #: admin.inc.php:362
216
- #, fuzzy
217
- msgid "Top 10 "
218
- msgstr "Топ 10 запісаў"
219
 
220
- #: admin.inc.php:302
221
- #: admin.inc.php:362
222
- msgid "plugin page"
223
  msgstr ""
224
 
225
- #: admin.inc.php:303
226
- #: admin.inc.php:363
227
- msgid "Other plugins"
228
  msgstr ""
229
 
230
- #: admin.inc.php:304
231
- #: admin.inc.php:364
232
- msgid "Ajay's blog"
233
  msgstr ""
234
 
235
- #: admin.inc.php:305
236
- #: admin.inc.php:365
237
- #: top-10.php:515
238
- msgid "Support"
239
  msgstr ""
240
 
241
- #: admin.inc.php:306
242
- #: admin.inc.php:366
243
- msgid "Follow @ajaydsouza on Twitter"
244
  msgstr ""
245
 
246
- #: admin.inc.php:310
247
- #: admin.inc.php:370
248
- msgid "Recent developments"
 
 
 
249
  msgstr ""
250
 
251
- #: admin.inc.php:315
252
- #: admin.inc.php:375
 
 
 
 
 
253
  #, fuzzy
254
- msgid "Support the development"
255
- msgstr "Падтрымаеце стваральніка ўбудовы"
256
 
257
- #: admin.inc.php:323
258
- #: admin.inc.php:383
259
- msgid "Enter amount in USD: "
260
  msgstr ""
261
 
262
- #: admin.inc.php:327
263
- #: admin.inc.php:387
264
- msgid "Send your donation to the author of"
 
 
 
 
265
  msgstr ""
266
 
267
- #: admin.inc.php:347
268
- #: admin.inc.php:414
269
- #: admin.inc.php:618
270
- #: top-10.php:257
271
- #: top-10.php:273
272
- #: top-10.php:445
273
- #: top-10.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  msgid "Popular Posts"
275
  msgstr "Папулярныя запісы"
276
 
277
- #: admin.inc.php:347
278
  msgid "Daily Popular Posts"
279
  msgstr "Папулярныя сёння запісы"
280
 
 
 
 
 
 
281
  #: admin.inc.php:412
282
- #: admin.inc.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  msgid "Top 10"
284
  msgstr "Топ 10 запісаў"
285
 
286
- #: admin.inc.php:526
287
  msgid "Results"
288
  msgstr "Вынікі"
289
 
290
- #: admin.inc.php:528
291
- #: admin.inc.php:534
292
  msgid "of"
293
  msgstr "з"
294
 
295
- #: admin.inc.php:532
296
  msgid "Page"
297
  msgstr "Старонка"
298
 
299
- #: admin.inc.php:546
300
  msgid "View Daily Popular Posts"
301
  msgstr "Паглядзець усе Папулярныя сёння запісы"
302
 
303
- #: admin.inc.php:550
304
  msgid "View Overall Popular Posts"
305
  msgstr "Паглядзець усе Папулярныя запісы"
306
 
307
- #: admin.inc.php:554
308
  msgid "Results per-page:"
309
  msgstr "Вынікаў на старонку:"
310
 
311
- #: admin.inc.php:578
312
  msgid "Previous"
313
  msgstr "Папярэдняя старонка"
314
 
315
- #: admin.inc.php:596
316
  msgid "Next"
317
  msgstr "Наступная старонка"
318
 
319
- #: admin.inc.php:619
320
- #: top-10.php:219
321
- #: top-10.php:235
322
- #: top-10.php:446
323
- #: top-10.php:449
324
  msgid "Daily Popular"
325
  msgstr "Папулярныя сёння запісы"
326
 
327
- #: admin.inc.php:630
328
  msgid "Total / Today's Views"
329
  msgstr "Усяго / Сёння праглядаў"
330
 
331
- #: top-10.php:218
332
- msgid "Display the posts popular today"
333
  msgstr ""
334
 
335
- #: top-10.php:256
336
- msgid "Display the posts popular this week"
337
  msgstr ""
338
 
339
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  msgid "<h3>Popular Posts</h3>"
341
  msgstr "<h3>Папулярныя запісы</h3>"
342
 
343
- #: top-10.php:287
344
  msgid "<h3>Daily Popular</h3>"
345
  msgstr "<h3>Папулярныя сёння запісы</h3>"
346
 
347
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  msgid "Settings"
349
  msgstr ""
350
 
351
- #: top-10.php:516
352
  msgid "Donate"
353
  msgstr ""
354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:54-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
9
+ "Language: be_BY\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Налады захаваны."
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Налады скінуты."
24
 
25
+ #: admin.inc.php:90
26
  #, fuzzy
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Загаловак блока Папулярных запісаў:"
29
 
30
+ #: admin.inc.php:96
31
  #, fuzzy
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Загаловак блока Папулярных сёння запісаў:"
34
 
 
 
 
 
 
 
 
 
35
  #: admin.inc.php:103
36
+ msgid "Duplicate rows cleaned from tables"
37
+ msgstr ""
38
 
39
+ #: admin.inc.php:124
40
+ msgid "General options"
41
+ msgstr ""
42
 
43
+ #: admin.inc.php:127
44
  msgid "Number of popular posts to display: "
45
  msgstr "Колькасць Папулярных запісаў у спісе:"
46
 
47
+ #: admin.inc.php:130
48
  msgid "Daily Popular should contain views of how many days? "
49
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
50
 
51
+ #: admin.inc.php:133
52
+ msgid ""
53
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
+ "continue to be counted."
55
+ msgstr ""
56
+ "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для "
57
+ "старонак будзе падлічвацца."
58
+
59
+ #: admin.inc.php:136
60
+ msgid "Exclude Categories: "
61
+ msgstr ""
62
 
63
+ #: admin.inc.php:154
64
+ #, fuzzy
65
+ msgid "Display number of views on:"
66
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
67
 
68
+ #: admin.inc.php:155
69
+ msgid "Posts"
70
+ msgstr ""
71
+
72
+ #: admin.inc.php:156
73
+ #, fuzzy
74
+ msgid "Pages"
75
+ msgstr "Старонка"
76
 
77
+ #: admin.inc.php:159
78
  msgid "Track visits of authors on their own posts?"
79
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
80
 
81
+ #: admin.inc.php:163
82
  msgid "Display number of page views in popular lists?"
83
+ msgstr ""
84
+ "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
85
+
86
+ #: admin.inc.php:167
87
+ msgid "Force daily posts' list to be dynamic?"
88
+ msgstr ""
89
 
90
+ #: admin.inc.php:169
91
  #, fuzzy
92
+ msgid ""
93
+ "This option uses JavaScript to load the post and can increase your page load "
94
+ "time"
95
+ msgstr ""
96
+ "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , "
97
+ "і гэта можа павялічыць час загрузкі старонак"
98
 
99
+ #: admin.inc.php:172
100
+ msgid "Display page views on Posts > All Posts in Admin"
101
+ msgstr ""
102
 
103
+ #: admin.inc.php:176
104
+ msgid "Link to Top 10 plugin page"
105
+ msgstr ""
106
 
107
+ #: admin.inc.php:178
108
  #, fuzzy
109
+ msgid ""
110
+ "A link to the plugin is added as an extra list item to the list of popular "
111
+ "posts"
112
+ msgstr ""
113
+ "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем "
114
+ "удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
115
+
116
+ #: admin.inc.php:185
117
+ #, fuzzy
118
+ msgid "Output Options"
119
  msgstr "Налады ўбудовы:"
120
 
121
+ #: admin.inc.php:188
122
+ msgid "Format to display the count in: "
123
+ msgstr "Фармат адлюстравання колькасці праглядаў:"
124
+
125
+ #: admin.inc.php:191
126
+ #, fuzzy
127
+ msgid ""
128
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
129
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
130
+ "display the overall count across all posts on the blog. e.g. the default "
131
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
132
+ msgstr ""
133
+ "Выкарыстоўвайце <code>%totalcount%</code> каб паказваць агульны лік "
134
+ "праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>"
135
+ "(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
136
+
137
+ #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "Загаловак блока Папулярных запісаў:"
140
 
141
+ #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "Загаловак блока Папулярных сёння запісаў:"
144
 
145
+ #: admin.inc.php:199
146
+ msgid "When there are no posts, what should be shown?"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:203
150
+ msgid "Blank Output"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:207
154
+ msgid "Display:"
155
+ msgstr ""
156
+
157
+ #: admin.inc.php:211
158
+ msgid "Show post excerpt in list?"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:214
162
+ msgid "Length of excerpt (in words): "
163
+ msgstr ""
164
+
165
+ #: admin.inc.php:217
166
  msgid "Customize the output:"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr ""
172
 
173
+ #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr ""
176
 
179
  msgid "HTML to display after each list item: "
180
  msgstr "Фармат адлюстравання колькасці праглядаў:"
181
 
182
+ #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr ""
185
 
186
+ #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:233
191
+ msgid "Location of post thumbnail:"
192
+ msgstr ""
193
+
194
+ #: admin.inc.php:237
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
198
 
199
+ #: admin.inc.php:241
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, after title"
202
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
203
 
204
+ #: admin.inc.php:245
205
  msgid "Display only thumbnails, no text"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:249
209
  msgid "Do not display thumbnails, only text."
210
  msgstr ""
211
 
212
+ #: admin.inc.php:253
213
+ msgid "Maximum width of the thumbnail: "
214
+ msgstr ""
215
+
216
  #: admin.inc.php:256
217
+ msgid "Maximum height of the thumbnail: "
218
+ msgstr ""
219
+
220
+ #: admin.inc.php:259
221
+ msgid "Use timthumb to generate thumbnails? "
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:260
225
+ msgid ""
226
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
227
+ "\">timthumb</a> will be used to generate thumbnails"
228
+ msgstr ""
229
+
230
+ #: admin.inc.php:262
231
+ msgid "Post thumbnail meta field name: "
232
  msgstr ""
233
 
234
  #: admin.inc.php:263
235
+ msgid ""
236
+ "The value of this field should contain the image source and is set in the "
237
+ "<em>Add New Post</em> screen"
238
+ msgstr ""
239
+
240
+ #: admin.inc.php:265
241
+ msgid ""
242
+ "If the postmeta is not set, then should the plugin extract the first image "
243
+ "from the post?"
244
  msgstr ""
245
 
246
  #: admin.inc.php:266
247
+ msgid ""
248
+ "This can slow down the loading of your page if the first image in the "
249
+ "related posts is large in file-size"
250
  msgstr ""
251
 
252
  #: admin.inc.php:268
253
+ msgid "Use default thumbnail? "
254
  msgstr ""
255
 
256
+ #: admin.inc.php:269
257
+ msgid ""
258
+ "If checked, when no thumbnail is found, show a default one from the URL "
259
+ "below. If not checked and no thumbnail is found, no image will be shown."
260
  msgstr ""
261
 
262
+ #: admin.inc.php:271
263
+ msgid "Default thumbnail: "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:272
267
+ msgid ""
268
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
269
+ "then it will check the meta field. If this is not available, then it will "
270
+ "show the default image as specified above"
271
+ msgstr ""
272
 
273
+ #: admin.inc.php:278
274
+ msgid "Custom Styles"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:281
278
+ msgid "Custom CSS to add to header:"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:284
282
+ msgid ""
283
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
284
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
285
+ "available CSS classes to style."
286
+ msgstr ""
287
+
288
+ #: admin.inc.php:289
289
+ msgid "Maintenance"
290
  msgstr ""
291
 
292
  #: admin.inc.php:292
293
+ msgid "Enable scheduled maintenance of daily tables:"
294
  msgstr ""
295
 
296
+ #: admin.inc.php:294
297
+ msgid ""
298
+ "Over time the Daily Top 10 database grows in size, which reduces the "
299
+ "performance of the plugin. Cleaning the database at regular intervals could "
300
+ "improve performance, especially on high traffic blogs"
301
+ msgstr ""
302
+
303
+ #: admin.inc.php:297
304
+ msgid "Time to run maintenance"
305
  msgstr ""
306
 
307
  #: admin.inc.php:300
308
+ msgid "How often should the maintenance be run:"
 
309
  msgstr ""
310
 
311
+ #: admin.inc.php:304
312
+ msgid "Daily"
313
+ msgstr ""
 
 
314
 
315
+ #: admin.inc.php:308
316
+ msgid "Weekly"
 
317
  msgstr ""
318
 
319
+ #: admin.inc.php:312
320
+ msgid "Fortnightly"
 
321
  msgstr ""
322
 
323
+ #: admin.inc.php:316
324
+ msgid "Monthly"
 
325
  msgstr ""
326
 
327
+ #: admin.inc.php:325
328
+ msgid "The cron job has been scheduled. Maintenance will run "
 
 
329
  msgstr ""
330
 
331
+ #: admin.inc.php:330
332
+ msgid "The cron job is missing. Please resave this page to add the job"
 
333
  msgstr ""
334
 
335
+ #: admin.inc.php:335
336
+ msgid "Maintenance is turned off"
337
+ msgstr ""
338
+
339
+ #: admin.inc.php:343
340
+ msgid "Reset count"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:346
344
+ msgid ""
345
+ "This cannot be reversed. Make sure that your database has been backed up "
346
+ "before proceeding"
347
+ msgstr ""
348
+
349
+ #: admin.inc.php:349
350
  #, fuzzy
351
+ msgid "Reset Popular Posts"
352
+ msgstr "Папулярныя запісы"
353
 
354
+ #: admin.inc.php:349
355
+ msgid "Are you sure you want to reset the popular posts?"
 
356
  msgstr ""
357
 
358
+ #: admin.inc.php:350
359
+ #, fuzzy
360
+ msgid "Reset Daily Popular Posts"
361
+ msgstr "Папулярныя сёння запісы"
362
+
363
+ #: admin.inc.php:350
364
+ msgid "Are you sure you want to reset the daily popular posts?"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:351
368
+ msgid "Clear duplicates"
369
+ msgstr ""
370
+
371
+ #: admin.inc.php:351
372
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
373
+ msgstr ""
374
+
375
+ #: admin.inc.php:355
376
+ #, fuzzy
377
+ msgid "Save Options"
378
+ msgstr "Налады ўбудовы:"
379
+
380
+ #: admin.inc.php:356
381
+ #, fuzzy
382
+ msgid "Default Options"
383
+ msgstr "Налады ўбудовы:"
384
+
385
+ #: admin.inc.php:356
386
+ msgid "Do you want to set options to Default?"
387
+ msgstr "Скінуць налады ўбудовы?"
388
+
389
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
390
  msgid "Popular Posts"
391
  msgstr "Папулярныя запісы"
392
 
393
+ #: admin.inc.php:382
394
  msgid "Daily Popular Posts"
395
  msgstr "Папулярныя сёння запісы"
396
 
397
+ #: admin.inc.php:404
398
+ #, fuzzy
399
+ msgid "Support the development"
400
+ msgstr "Падтрымаеце стваральніка ўбудовы"
401
+
402
  #: admin.inc.php:412
403
+ msgid "Enter amount in USD: "
404
+ msgstr ""
405
+
406
+ #: admin.inc.php:416
407
+ msgid "Send your donation to the author of"
408
+ msgstr ""
409
+
410
+ #: admin.inc.php:422
411
+ msgid "Follow us on Facebook"
412
+ msgstr ""
413
+
414
+ #: admin.inc.php:426
415
+ msgid "Quick Links"
416
+ msgstr ""
417
+
418
+ #: admin.inc.php:428
419
+ msgid "Top 10 plugin page"
420
+ msgstr ""
421
+
422
+ #: admin.inc.php:429
423
+ msgid "Other plugins"
424
+ msgstr ""
425
+
426
+ #: admin.inc.php:430
427
+ msgid "Ajay's blog"
428
+ msgstr ""
429
+
430
+ #: admin.inc.php:431 top-10.php:583
431
+ msgid "Support"
432
+ msgstr ""
433
+
434
+ #: admin.inc.php:432
435
+ msgid "Follow @ajaydsouza on Twitter"
436
+ msgstr ""
437
+
438
+ #: admin.inc.php:436
439
+ msgid "Recent developments"
440
+ msgstr ""
441
+
442
+ #: admin.inc.php:459 admin.inc.php:461
443
  msgid "Top 10"
444
  msgstr "Топ 10 запісаў"
445
 
446
+ #: admin.inc.php:575
447
  msgid "Results"
448
  msgstr "Вынікі"
449
 
450
+ #: admin.inc.php:577 admin.inc.php:583
 
451
  msgid "of"
452
  msgstr "з"
453
 
454
+ #: admin.inc.php:581
455
  msgid "Page"
456
  msgstr "Старонка"
457
 
458
+ #: admin.inc.php:595
459
  msgid "View Daily Popular Posts"
460
  msgstr "Паглядзець усе Папулярныя сёння запісы"
461
 
462
+ #: admin.inc.php:599
463
  msgid "View Overall Popular Posts"
464
  msgstr "Паглядзець усе Папулярныя запісы"
465
 
466
+ #: admin.inc.php:603
467
  msgid "Results per-page:"
468
  msgstr "Вынікаў на старонку:"
469
 
470
+ #: admin.inc.php:627
471
  msgid "Previous"
472
  msgstr "Папярэдняя старонка"
473
 
474
+ #: admin.inc.php:645
475
  msgid "Next"
476
  msgstr "Наступная старонка"
477
 
478
+ #: admin.inc.php:668
 
 
 
 
479
  msgid "Daily Popular"
480
  msgstr "Папулярныя сёння запісы"
481
 
482
+ #: admin.inc.php:679
483
  msgid "Total / Today's Views"
484
  msgstr "Усяго / Сёння праглядаў"
485
 
486
+ #: top-10.php:257
487
+ msgid "Display the posts popular this week"
488
  msgstr ""
489
 
490
+ #: top-10.php:271
491
+ msgid "Title"
492
  msgstr ""
493
 
494
+ #: top-10.php:276
495
+ msgid "No. of posts"
496
+ msgstr ""
497
+
498
+ #: top-10.php:281
499
+ msgid "Overall"
500
+ msgstr ""
501
+
502
+ #: top-10.php:282
503
+ msgid "Custom time period (Enter below)"
504
+ msgstr ""
505
+
506
+ #: top-10.php:287
507
+ msgid "Range in number of days (applies only to custom option above)"
508
+ msgstr ""
509
+
510
+ #: top-10.php:291
511
+ msgid "Thumbnail options"
512
+ msgstr ""
513
+
514
+ #: top-10.php:293
515
+ #, fuzzy
516
+ msgid "Thumbnails inline, before title"
517
+ msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
518
+
519
+ #: top-10.php:294
520
+ #, fuzzy
521
+ msgid "Thumbnails inline, after title"
522
+ msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
523
+
524
+ #: top-10.php:295
525
+ msgid "Only thumbnails, no text"
526
+ msgstr ""
527
+
528
+ #: top-10.php:296
529
+ msgid "No thumbnails, only text."
530
+ msgstr ""
531
+
532
+ #: top-10.php:301
533
+ msgid " Show excerpt?"
534
+ msgstr ""
535
+
536
+ #: top-10.php:367
537
  msgid "<h3>Popular Posts</h3>"
538
  msgstr "<h3>Папулярныя запісы</h3>"
539
 
540
+ #: top-10.php:368
541
  msgid "<h3>Daily Popular</h3>"
542
  msgstr "<h3>Папулярныя сёння запісы</h3>"
543
 
544
+ #: top-10.php:369
545
+ #, fuzzy
546
+ msgid "No top posts yet"
547
+ msgstr "Загаловак блока Папулярных запісаў:"
548
+
549
+ #: top-10.php:560
550
+ msgid "Once Weekly"
551
+ msgstr ""
552
+
553
+ #: top-10.php:561
554
+ msgid "Once Fortnightly"
555
+ msgstr ""
556
+
557
+ #: top-10.php:562
558
+ msgid "Once Monthly"
559
+ msgstr ""
560
+
561
+ #: top-10.php:582
562
  msgid "Settings"
563
  msgstr ""
564
 
565
+ #: top-10.php:584
566
  msgid "Donate"
567
  msgstr ""
568
 
569
+ #~ msgid "Display number of views on pages?"
570
+ #~ msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
571
+
572
+ #~ msgid ""
573
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
574
+ #~ "added with the count"
575
+ #~ msgstr ""
576
+ #~ "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага "
577
+ #~ "будзе дададзена асобная калонка"
578
+
579
+ #, fuzzy
580
+ #~ msgid "Top 10 "
581
+ #~ msgstr "Топ 10 запісаў"
languages/tptn-en_US.mo CHANGED
Binary file
languages/tptn-en_US.po CHANGED
@@ -2,123 +2,157 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:42-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:58
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:67
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:73
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:79
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:86
34
- msgid "Tables cleaned of duplicate rows"
35
  msgstr ""
36
 
37
- #: admin.inc.php:98
38
- msgid "Options:"
39
  msgstr ""
40
 
41
- #: admin.inc.php:103
42
- msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
- #: admin.inc.php:107
46
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
  msgstr ""
48
 
49
- #: admin.inc.php:110
50
- msgid "Number of popular posts to display: "
 
 
51
  msgstr ""
52
 
53
- #: admin.inc.php:116
54
- msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
- #: admin.inc.php:123
58
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
  msgstr ""
60
 
61
- #: admin.inc.php:129
62
- msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
- #: admin.inc.php:135
66
- msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
- #: admin.inc.php:141
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
- #: admin.inc.php:147
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
- #: admin.inc.php:153
78
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
- #: admin.inc.php:159
82
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
 
 
83
  msgstr ""
84
 
85
- #: admin.inc.php:165
86
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  msgstr ""
92
 
93
- #: admin.inc.php:173
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
- #: admin.inc.php:179
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
- #: admin.inc.php:186
102
- msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
- #: admin.inc.php:191
106
- msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
- #: admin.inc.php:195
110
- msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
- #: admin.inc.php:210
 
 
 
 
 
 
 
 
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
- #: admin.inc.php:213
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
- #: admin.inc.php:219
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
@@ -126,219 +160,379 @@ msgstr ""
126
  msgid "HTML to display after each list item: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:231
130
  msgid "HTML to display after the list of posts: "
131
  msgstr ""
132
 
133
- #: admin.inc.php:235
134
  msgid "Post thumbnail options:"
135
  msgstr ""
136
 
137
- #: admin.inc.php:239
 
 
 
 
138
  msgid "Display thumbnails inline with posts, before title"
139
  msgstr ""
140
 
141
- #: admin.inc.php:243
142
  msgid "Display thumbnails inline with posts, after title"
143
  msgstr ""
144
 
145
- #: admin.inc.php:247
146
  msgid "Display only thumbnails, no text"
147
  msgstr ""
148
 
149
- #: admin.inc.php:251
150
  msgid "Do not display thumbnails, only text."
151
  msgstr ""
152
 
 
 
 
 
153
  #: admin.inc.php:256
154
- msgid "Post thumbnail meta field (the meta should point to the image source): "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  msgstr ""
156
 
157
  #: admin.inc.php:263
158
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
 
 
 
 
 
 
 
 
159
  msgstr ""
160
 
161
  #: admin.inc.php:266
162
- msgid "Thumbnail dimensions:"
 
 
163
  msgstr ""
164
 
165
  #: admin.inc.php:268
166
- msgid "Max width: "
167
  msgstr ""
168
 
169
- #: admin.inc.php:273
170
- msgid "Max height: "
 
 
171
  msgstr ""
172
 
173
- #: admin.inc.php:277
174
- msgid "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."
175
  msgstr ""
176
 
177
- #: admin.inc.php:282
178
- msgid "Do you want to set options to Default?"
 
 
 
179
  msgstr ""
180
 
181
- #: admin.inc.php:285
182
- msgid "Reset count"
183
  msgstr ""
184
 
185
- #: admin.inc.php:288
186
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
187
  msgstr ""
188
 
189
- #: admin.inc.php:291
190
- msgid "Are you sure you want to reset the popular posts?"
 
 
 
 
 
 
 
191
  msgstr ""
192
 
193
  #: admin.inc.php:292
194
- msgid "Are you sure you want to reset the daily popular posts?"
195
  msgstr ""
196
 
197
- #: admin.inc.php:293
198
- msgid "This will delete the duplicate entries in the tables. Proceed?"
 
 
 
 
 
 
 
199
  msgstr ""
200
 
201
  #: admin.inc.php:300
202
- #: admin.inc.php:360
203
- msgid "Quick links"
204
  msgstr ""
205
 
206
- #: admin.inc.php:302
207
- #: admin.inc.php:362
208
- msgid "Top 10 "
209
  msgstr ""
210
 
211
- #: admin.inc.php:302
212
- #: admin.inc.php:362
213
- msgid "plugin page"
214
  msgstr ""
215
 
216
- #: admin.inc.php:303
217
- #: admin.inc.php:363
218
- msgid "Other plugins"
219
  msgstr ""
220
 
221
- #: admin.inc.php:304
222
- #: admin.inc.php:364
223
- msgid "Ajay's blog"
224
  msgstr ""
225
 
226
- #: admin.inc.php:305
227
- #: admin.inc.php:365
228
- #: top-10.php:515
229
- msgid "Support"
230
  msgstr ""
231
 
232
- #: admin.inc.php:306
233
- #: admin.inc.php:366
234
- msgid "Follow @ajaydsouza on Twitter"
235
  msgstr ""
236
 
237
- #: admin.inc.php:310
238
- #: admin.inc.php:370
239
- msgid "Recent developments"
240
  msgstr ""
241
 
242
- #: admin.inc.php:315
243
- #: admin.inc.php:375
244
- msgid "Support the development"
245
  msgstr ""
246
 
247
- #: admin.inc.php:323
248
- #: admin.inc.php:383
249
- msgid "Enter amount in USD: "
 
250
  msgstr ""
251
 
252
- #: admin.inc.php:327
253
- #: admin.inc.php:387
254
- msgid "Send your donation to the author of"
255
  msgstr ""
256
 
257
- #: admin.inc.php:347
258
- #: admin.inc.php:414
259
- #: admin.inc.php:618
260
- #: top-10.php:257
261
- #: top-10.php:273
262
- #: top-10.php:445
263
- #: top-10.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgid "Popular Posts"
265
  msgstr ""
266
 
267
- #: admin.inc.php:347
268
  msgid "Daily Popular Posts"
269
  msgstr ""
270
 
 
 
 
 
271
  #: admin.inc.php:412
272
- #: admin.inc.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  msgid "Top 10"
274
  msgstr ""
275
 
276
- #: admin.inc.php:526
277
  msgid "Results"
278
  msgstr ""
279
 
280
- #: admin.inc.php:528
281
- #: admin.inc.php:534
282
  msgid "of"
283
  msgstr ""
284
 
285
- #: admin.inc.php:532
286
  msgid "Page"
287
  msgstr ""
288
 
289
- #: admin.inc.php:546
290
  msgid "View Daily Popular Posts"
291
  msgstr ""
292
 
293
- #: admin.inc.php:550
294
  msgid "View Overall Popular Posts"
295
  msgstr ""
296
 
297
- #: admin.inc.php:554
298
  msgid "Results per-page:"
299
  msgstr ""
300
 
301
- #: admin.inc.php:578
302
  msgid "Previous"
303
  msgstr ""
304
 
305
- #: admin.inc.php:596
306
  msgid "Next"
307
  msgstr ""
308
 
309
- #: admin.inc.php:619
310
- #: top-10.php:219
311
- #: top-10.php:235
312
- #: top-10.php:446
313
- #: top-10.php:449
314
  msgid "Daily Popular"
315
  msgstr ""
316
 
317
- #: admin.inc.php:630
318
  msgid "Total / Today's Views"
319
  msgstr ""
320
 
321
- #: top-10.php:218
322
- msgid "Display the posts popular today"
323
  msgstr ""
324
 
325
- #: top-10.php:256
326
- msgid "Display the posts popular this week"
327
  msgstr ""
328
 
329
- #: top-10.php:286
330
- msgid "<h3>Popular Posts</h3>"
 
 
 
 
 
 
 
 
331
  msgstr ""
332
 
333
  #: top-10.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  msgid "<h3>Daily Popular</h3>"
335
  msgstr ""
336
 
337
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Settings"
339
  msgstr ""
340
 
341
- #: top-10.php:516
342
  msgid "Donate"
343
  msgstr ""
344
-
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:55-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
9
+ "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
+ #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:127
42
+ msgid "Number of popular posts to display: "
43
  msgstr ""
44
 
45
+ #: admin.inc.php:130
46
+ msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
 
49
+ #: admin.inc.php:133
50
+ msgid ""
51
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
52
+ "continue to be counted."
53
  msgstr ""
54
 
55
+ #: admin.inc.php:136
56
+ msgid "Exclude Categories: "
57
  msgstr ""
58
 
59
+ #: admin.inc.php:154
60
+ msgid "Display number of views on:"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:155
64
+ msgid "Posts"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:156
68
+ msgid "Pages"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:159
72
  msgid "Track visits of authors on their own posts?"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:163
76
  msgid "Display number of page views in popular lists?"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:167
80
+ msgid "Force daily posts' list to be dynamic?"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:169
84
+ msgid ""
85
+ "This option uses JavaScript to load the post and can increase your page load "
86
+ "time"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:172
90
+ msgid "Display page views on Posts > All Posts in Admin"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:176
94
+ msgid "Link to Top 10 plugin page"
95
+ msgstr ""
96
+
97
+ #: admin.inc.php:178
98
+ msgid ""
99
+ "A link to the plugin is added as an extra list item to the list of popular "
100
+ "posts"
101
+ msgstr ""
102
+
103
+ #: admin.inc.php:185
104
+ msgid "Output Options"
105
+ msgstr ""
106
+
107
+ #: admin.inc.php:188
108
+ msgid "Format to display the count in: "
109
+ msgstr ""
110
+
111
+ #: admin.inc.php:191
112
+ msgid ""
113
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
114
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
115
+ "display the overall count across all posts on the blog. e.g. the default "
116
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:193
120
  msgid "Title of popular posts: "
121
  msgstr ""
122
 
123
+ #: admin.inc.php:196
124
  msgid "Title of daily popular posts: "
125
  msgstr ""
126
 
127
+ #: admin.inc.php:199
128
+ msgid "When there are no posts, what should be shown?"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:203
132
+ msgid "Blank Output"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:207
136
+ msgid "Display:"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:211
140
+ msgid "Show post excerpt in list?"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:214
144
+ msgid "Length of excerpt (in words): "
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:217
148
  msgid "Customize the output:"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:219
152
  msgid "HTML to display before the list of posts: "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:222
156
  msgid "HTML to display before each list item: "
157
  msgstr ""
158
 
160
  msgid "HTML to display after each list item: "
161
  msgstr ""
162
 
163
+ #: admin.inc.php:228
164
  msgid "HTML to display after the list of posts: "
165
  msgstr ""
166
 
167
+ #: admin.inc.php:231
168
  msgid "Post thumbnail options:"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:233
172
+ msgid "Location of post thumbnail:"
173
+ msgstr ""
174
+
175
+ #: admin.inc.php:237
176
  msgid "Display thumbnails inline with posts, before title"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:241
180
  msgid "Display thumbnails inline with posts, after title"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:245
184
  msgid "Display only thumbnails, no text"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:249
188
  msgid "Do not display thumbnails, only text."
189
  msgstr ""
190
 
191
+ #: admin.inc.php:253
192
+ msgid "Maximum width of the thumbnail: "
193
+ msgstr ""
194
+
195
  #: admin.inc.php:256
196
+ msgid "Maximum height of the thumbnail: "
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:259
200
+ msgid "Use timthumb to generate thumbnails? "
201
+ msgstr ""
202
+
203
+ #: admin.inc.php:260
204
+ msgid ""
205
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
206
+ "\">timthumb</a> will be used to generate thumbnails"
207
+ msgstr ""
208
+
209
+ #: admin.inc.php:262
210
+ msgid "Post thumbnail meta field name: "
211
  msgstr ""
212
 
213
  #: admin.inc.php:263
214
+ msgid ""
215
+ "The value of this field should contain the image source and is set in the "
216
+ "<em>Add New Post</em> screen"
217
+ msgstr ""
218
+
219
+ #: admin.inc.php:265
220
+ msgid ""
221
+ "If the postmeta is not set, then should the plugin extract the first image "
222
+ "from the post?"
223
  msgstr ""
224
 
225
  #: admin.inc.php:266
226
+ msgid ""
227
+ "This can slow down the loading of your page if the first image in the "
228
+ "related posts is large in file-size"
229
  msgstr ""
230
 
231
  #: admin.inc.php:268
232
+ msgid "Use default thumbnail? "
233
  msgstr ""
234
 
235
+ #: admin.inc.php:269
236
+ msgid ""
237
+ "If checked, when no thumbnail is found, show a default one from the URL "
238
+ "below. If not checked and no thumbnail is found, no image will be shown."
239
  msgstr ""
240
 
241
+ #: admin.inc.php:271
242
+ msgid "Default thumbnail: "
243
  msgstr ""
244
 
245
+ #: admin.inc.php:272
246
+ msgid ""
247
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
248
+ "then it will check the meta field. If this is not available, then it will "
249
+ "show the default image as specified above"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:278
253
+ msgid "Custom Styles"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:281
257
+ msgid "Custom CSS to add to header:"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:284
261
+ msgid ""
262
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
263
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
264
+ "available CSS classes to style."
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:289
268
+ msgid "Maintenance"
269
  msgstr ""
270
 
271
  #: admin.inc.php:292
272
+ msgid "Enable scheduled maintenance of daily tables:"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:294
276
+ msgid ""
277
+ "Over time the Daily Top 10 database grows in size, which reduces the "
278
+ "performance of the plugin. Cleaning the database at regular intervals could "
279
+ "improve performance, especially on high traffic blogs"
280
+ msgstr ""
281
+
282
+ #: admin.inc.php:297
283
+ msgid "Time to run maintenance"
284
  msgstr ""
285
 
286
  #: admin.inc.php:300
287
+ msgid "How often should the maintenance be run:"
 
288
  msgstr ""
289
 
290
+ #: admin.inc.php:304
291
+ msgid "Daily"
 
292
  msgstr ""
293
 
294
+ #: admin.inc.php:308
295
+ msgid "Weekly"
 
296
  msgstr ""
297
 
298
+ #: admin.inc.php:312
299
+ msgid "Fortnightly"
 
300
  msgstr ""
301
 
302
+ #: admin.inc.php:316
303
+ msgid "Monthly"
 
304
  msgstr ""
305
 
306
+ #: admin.inc.php:325
307
+ msgid "The cron job has been scheduled. Maintenance will run "
 
 
308
  msgstr ""
309
 
310
+ #: admin.inc.php:330
311
+ msgid "The cron job is missing. Please resave this page to add the job"
 
312
  msgstr ""
313
 
314
+ #: admin.inc.php:335
315
+ msgid "Maintenance is turned off"
 
316
  msgstr ""
317
 
318
+ #: admin.inc.php:343
319
+ msgid "Reset count"
 
320
  msgstr ""
321
 
322
+ #: admin.inc.php:346
323
+ msgid ""
324
+ "This cannot be reversed. Make sure that your database has been backed up "
325
+ "before proceeding"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:349
329
+ msgid "Reset Popular Posts"
 
330
  msgstr ""
331
 
332
+ #: admin.inc.php:349
333
+ msgid "Are you sure you want to reset the popular posts?"
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:350
337
+ msgid "Reset Daily Popular Posts"
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:350
341
+ msgid "Are you sure you want to reset the daily popular posts?"
342
+ msgstr ""
343
+
344
+ #: admin.inc.php:351
345
+ msgid "Clear duplicates"
346
+ msgstr ""
347
+
348
+ #: admin.inc.php:351
349
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
350
+ msgstr ""
351
+
352
+ #: admin.inc.php:355
353
+ msgid "Save Options"
354
+ msgstr ""
355
+
356
+ #: admin.inc.php:356
357
+ msgid "Default Options"
358
+ msgstr ""
359
+
360
+ #: admin.inc.php:356
361
+ msgid "Do you want to set options to Default?"
362
+ msgstr ""
363
+
364
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
365
  msgid "Popular Posts"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:382
369
  msgid "Daily Popular Posts"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:404
373
+ msgid "Support the development"
374
+ msgstr ""
375
+
376
  #: admin.inc.php:412
377
+ msgid "Enter amount in USD: "
378
+ msgstr ""
379
+
380
+ #: admin.inc.php:416
381
+ msgid "Send your donation to the author of"
382
+ msgstr ""
383
+
384
+ #: admin.inc.php:422
385
+ msgid "Follow us on Facebook"
386
+ msgstr ""
387
+
388
+ #: admin.inc.php:426
389
+ msgid "Quick Links"
390
+ msgstr ""
391
+
392
+ #: admin.inc.php:428
393
+ msgid "Top 10 plugin page"
394
+ msgstr ""
395
+
396
+ #: admin.inc.php:429
397
+ msgid "Other plugins"
398
+ msgstr ""
399
+
400
+ #: admin.inc.php:430
401
+ msgid "Ajay's blog"
402
+ msgstr ""
403
+
404
+ #: admin.inc.php:431 top-10.php:583
405
+ msgid "Support"
406
+ msgstr ""
407
+
408
+ #: admin.inc.php:432
409
+ msgid "Follow @ajaydsouza on Twitter"
410
+ msgstr ""
411
+
412
+ #: admin.inc.php:436
413
+ msgid "Recent developments"
414
+ msgstr ""
415
+
416
+ #: admin.inc.php:459 admin.inc.php:461
417
  msgid "Top 10"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:575
421
  msgid "Results"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:577 admin.inc.php:583
 
425
  msgid "of"
426
  msgstr ""
427
 
428
+ #: admin.inc.php:581
429
  msgid "Page"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:595
433
  msgid "View Daily Popular Posts"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:599
437
  msgid "View Overall Popular Posts"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:603
441
  msgid "Results per-page:"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:627
445
  msgid "Previous"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:645
449
  msgid "Next"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:668
 
 
 
 
453
  msgid "Daily Popular"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:679
457
  msgid "Total / Today's Views"
458
  msgstr ""
459
 
460
+ #: top-10.php:257
461
+ msgid "Display the posts popular this week"
462
  msgstr ""
463
 
464
+ #: top-10.php:271
465
+ msgid "Title"
466
  msgstr ""
467
 
468
+ #: top-10.php:276
469
+ msgid "No. of posts"
470
+ msgstr ""
471
+
472
+ #: top-10.php:281
473
+ msgid "Overall"
474
+ msgstr ""
475
+
476
+ #: top-10.php:282
477
+ msgid "Custom time period (Enter below)"
478
  msgstr ""
479
 
480
  #: top-10.php:287
481
+ msgid "Range in number of days (applies only to custom option above)"
482
+ msgstr ""
483
+
484
+ #: top-10.php:291
485
+ msgid "Thumbnail options"
486
+ msgstr ""
487
+
488
+ #: top-10.php:293
489
+ msgid "Thumbnails inline, before title"
490
+ msgstr ""
491
+
492
+ #: top-10.php:294
493
+ msgid "Thumbnails inline, after title"
494
+ msgstr ""
495
+
496
+ #: top-10.php:295
497
+ msgid "Only thumbnails, no text"
498
+ msgstr ""
499
+
500
+ #: top-10.php:296
501
+ msgid "No thumbnails, only text."
502
+ msgstr ""
503
+
504
+ #: top-10.php:301
505
+ msgid " Show excerpt?"
506
+ msgstr ""
507
+
508
+ #: top-10.php:367
509
+ msgid "<h3>Popular Posts</h3>"
510
+ msgstr ""
511
+
512
+ #: top-10.php:368
513
  msgid "<h3>Daily Popular</h3>"
514
  msgstr ""
515
 
516
+ #: top-10.php:369
517
+ msgid "No top posts yet"
518
+ msgstr ""
519
+
520
+ #: top-10.php:560
521
+ msgid "Once Weekly"
522
+ msgstr ""
523
+
524
+ #: top-10.php:561
525
+ msgid "Once Fortnightly"
526
+ msgstr ""
527
+
528
+ #: top-10.php:562
529
+ msgid "Once Monthly"
530
+ msgstr ""
531
+
532
+ #: top-10.php:582
533
  msgid "Settings"
534
  msgstr ""
535
 
536
+ #: top-10.php:584
537
  msgid "Donate"
538
  msgstr ""
 
languages/tptn-en_US.pot CHANGED
@@ -2,123 +2,157 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:42-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:58
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:67
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:73
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:79
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:86
34
- msgid "Tables cleaned of duplicate rows"
35
  msgstr ""
36
 
37
- #: admin.inc.php:98
38
- msgid "Options:"
39
  msgstr ""
40
 
41
- #: admin.inc.php:103
42
- msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
- #: admin.inc.php:107
46
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
  msgstr ""
48
 
49
- #: admin.inc.php:110
50
- msgid "Number of popular posts to display: "
 
 
51
  msgstr ""
52
 
53
- #: admin.inc.php:116
54
- msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
- #: admin.inc.php:123
58
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
  msgstr ""
60
 
61
- #: admin.inc.php:129
62
- msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
- #: admin.inc.php:135
66
- msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
- #: admin.inc.php:141
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
- #: admin.inc.php:147
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
- #: admin.inc.php:153
78
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
- #: admin.inc.php:159
82
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
 
 
83
  msgstr ""
84
 
85
- #: admin.inc.php:165
86
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
  msgstr ""
88
 
89
- #: admin.inc.php:169
90
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  msgstr ""
92
 
93
- #: admin.inc.php:173
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
- #: admin.inc.php:179
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
- #: admin.inc.php:186
102
- msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
- #: admin.inc.php:191
106
- msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
- #: admin.inc.php:195
110
- msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
- #: admin.inc.php:210
 
 
 
 
 
 
 
 
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
- #: admin.inc.php:213
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
- #: admin.inc.php:219
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
@@ -126,219 +160,379 @@ msgstr ""
126
  msgid "HTML to display after each list item: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:231
130
  msgid "HTML to display after the list of posts: "
131
  msgstr ""
132
 
133
- #: admin.inc.php:235
134
  msgid "Post thumbnail options:"
135
  msgstr ""
136
 
137
- #: admin.inc.php:239
 
 
 
 
138
  msgid "Display thumbnails inline with posts, before title"
139
  msgstr ""
140
 
141
- #: admin.inc.php:243
142
  msgid "Display thumbnails inline with posts, after title"
143
  msgstr ""
144
 
145
- #: admin.inc.php:247
146
  msgid "Display only thumbnails, no text"
147
  msgstr ""
148
 
149
- #: admin.inc.php:251
150
  msgid "Do not display thumbnails, only text."
151
  msgstr ""
152
 
 
 
 
 
153
  #: admin.inc.php:256
154
- msgid "Post thumbnail meta field (the meta should point to the image source): "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  msgstr ""
156
 
157
  #: admin.inc.php:263
158
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
 
 
 
 
 
 
 
 
159
  msgstr ""
160
 
161
  #: admin.inc.php:266
162
- msgid "Thumbnail dimensions:"
 
 
163
  msgstr ""
164
 
165
  #: admin.inc.php:268
166
- msgid "Max width: "
167
  msgstr ""
168
 
169
- #: admin.inc.php:273
170
- msgid "Max height: "
 
 
171
  msgstr ""
172
 
173
- #: admin.inc.php:277
174
- msgid "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."
175
  msgstr ""
176
 
177
- #: admin.inc.php:282
178
- msgid "Do you want to set options to Default?"
 
 
 
179
  msgstr ""
180
 
181
- #: admin.inc.php:285
182
- msgid "Reset count"
183
  msgstr ""
184
 
185
- #: admin.inc.php:288
186
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
187
  msgstr ""
188
 
189
- #: admin.inc.php:291
190
- msgid "Are you sure you want to reset the popular posts?"
 
 
 
 
 
 
 
191
  msgstr ""
192
 
193
  #: admin.inc.php:292
194
- msgid "Are you sure you want to reset the daily popular posts?"
195
  msgstr ""
196
 
197
- #: admin.inc.php:293
198
- msgid "This will delete the duplicate entries in the tables. Proceed?"
 
 
 
 
 
 
 
199
  msgstr ""
200
 
201
  #: admin.inc.php:300
202
- #: admin.inc.php:360
203
- msgid "Quick links"
204
  msgstr ""
205
 
206
- #: admin.inc.php:302
207
- #: admin.inc.php:362
208
- msgid "Top 10 "
209
  msgstr ""
210
 
211
- #: admin.inc.php:302
212
- #: admin.inc.php:362
213
- msgid "plugin page"
214
  msgstr ""
215
 
216
- #: admin.inc.php:303
217
- #: admin.inc.php:363
218
- msgid "Other plugins"
219
  msgstr ""
220
 
221
- #: admin.inc.php:304
222
- #: admin.inc.php:364
223
- msgid "Ajay's blog"
224
  msgstr ""
225
 
226
- #: admin.inc.php:305
227
- #: admin.inc.php:365
228
- #: top-10.php:515
229
- msgid "Support"
230
  msgstr ""
231
 
232
- #: admin.inc.php:306
233
- #: admin.inc.php:366
234
- msgid "Follow @ajaydsouza on Twitter"
235
  msgstr ""
236
 
237
- #: admin.inc.php:310
238
- #: admin.inc.php:370
239
- msgid "Recent developments"
240
  msgstr ""
241
 
242
- #: admin.inc.php:315
243
- #: admin.inc.php:375
244
- msgid "Support the development"
245
  msgstr ""
246
 
247
- #: admin.inc.php:323
248
- #: admin.inc.php:383
249
- msgid "Enter amount in USD: "
 
250
  msgstr ""
251
 
252
- #: admin.inc.php:327
253
- #: admin.inc.php:387
254
- msgid "Send your donation to the author of"
255
  msgstr ""
256
 
257
- #: admin.inc.php:347
258
- #: admin.inc.php:414
259
- #: admin.inc.php:618
260
- #: top-10.php:257
261
- #: top-10.php:273
262
- #: top-10.php:445
263
- #: top-10.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgid "Popular Posts"
265
  msgstr ""
266
 
267
- #: admin.inc.php:347
268
  msgid "Daily Popular Posts"
269
  msgstr ""
270
 
 
 
 
 
271
  #: admin.inc.php:412
272
- #: admin.inc.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  msgid "Top 10"
274
  msgstr ""
275
 
276
- #: admin.inc.php:526
277
  msgid "Results"
278
  msgstr ""
279
 
280
- #: admin.inc.php:528
281
- #: admin.inc.php:534
282
  msgid "of"
283
  msgstr ""
284
 
285
- #: admin.inc.php:532
286
  msgid "Page"
287
  msgstr ""
288
 
289
- #: admin.inc.php:546
290
  msgid "View Daily Popular Posts"
291
  msgstr ""
292
 
293
- #: admin.inc.php:550
294
  msgid "View Overall Popular Posts"
295
  msgstr ""
296
 
297
- #: admin.inc.php:554
298
  msgid "Results per-page:"
299
  msgstr ""
300
 
301
- #: admin.inc.php:578
302
  msgid "Previous"
303
  msgstr ""
304
 
305
- #: admin.inc.php:596
306
  msgid "Next"
307
  msgstr ""
308
 
309
- #: admin.inc.php:619
310
- #: top-10.php:219
311
- #: top-10.php:235
312
- #: top-10.php:446
313
- #: top-10.php:449
314
  msgid "Daily Popular"
315
  msgstr ""
316
 
317
- #: admin.inc.php:630
318
  msgid "Total / Today's Views"
319
  msgstr ""
320
 
321
- #: top-10.php:218
322
- msgid "Display the posts popular today"
323
  msgstr ""
324
 
325
- #: top-10.php:256
326
- msgid "Display the posts popular this week"
327
  msgstr ""
328
 
329
- #: top-10.php:286
330
- msgid "<h3>Popular Posts</h3>"
 
 
 
 
 
 
 
 
331
  msgstr ""
332
 
333
  #: top-10.php:287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  msgid "<h3>Daily Popular</h3>"
335
  msgstr ""
336
 
337
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Settings"
339
  msgstr ""
340
 
341
- #: top-10.php:516
342
  msgid "Donate"
343
  msgstr ""
344
-
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:55-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
9
+ "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
+ #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:127
42
+ msgid "Number of popular posts to display: "
43
  msgstr ""
44
 
45
+ #: admin.inc.php:130
46
+ msgid "Daily Popular should contain views of how many days? "
47
  msgstr ""
48
 
49
+ #: admin.inc.php:133
50
+ msgid ""
51
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
52
+ "continue to be counted."
53
  msgstr ""
54
 
55
+ #: admin.inc.php:136
56
+ msgid "Exclude Categories: "
57
  msgstr ""
58
 
59
+ #: admin.inc.php:154
60
+ msgid "Display number of views on:"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:155
64
+ msgid "Posts"
65
  msgstr ""
66
 
67
+ #: admin.inc.php:156
68
+ msgid "Pages"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:159
72
  msgid "Track visits of authors on their own posts?"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:163
76
  msgid "Display number of page views in popular lists?"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:167
80
+ msgid "Force daily posts' list to be dynamic?"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:169
84
+ msgid ""
85
+ "This option uses JavaScript to load the post and can increase your page load "
86
+ "time"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:172
90
+ msgid "Display page views on Posts > All Posts in Admin"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:176
94
+ msgid "Link to Top 10 plugin page"
95
+ msgstr ""
96
+
97
+ #: admin.inc.php:178
98
+ msgid ""
99
+ "A link to the plugin is added as an extra list item to the list of popular "
100
+ "posts"
101
+ msgstr ""
102
+
103
+ #: admin.inc.php:185
104
+ msgid "Output Options"
105
+ msgstr ""
106
+
107
+ #: admin.inc.php:188
108
+ msgid "Format to display the count in: "
109
+ msgstr ""
110
+
111
+ #: admin.inc.php:191
112
+ msgid ""
113
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
114
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
115
+ "display the overall count across all posts on the blog. e.g. the default "
116
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
117
  msgstr ""
118
 
119
+ #: admin.inc.php:193
120
  msgid "Title of popular posts: "
121
  msgstr ""
122
 
123
+ #: admin.inc.php:196
124
  msgid "Title of daily popular posts: "
125
  msgstr ""
126
 
127
+ #: admin.inc.php:199
128
+ msgid "When there are no posts, what should be shown?"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:203
132
+ msgid "Blank Output"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:207
136
+ msgid "Display:"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:211
140
+ msgid "Show post excerpt in list?"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:214
144
+ msgid "Length of excerpt (in words): "
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:217
148
  msgid "Customize the output:"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:219
152
  msgid "HTML to display before the list of posts: "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:222
156
  msgid "HTML to display before each list item: "
157
  msgstr ""
158
 
160
  msgid "HTML to display after each list item: "
161
  msgstr ""
162
 
163
+ #: admin.inc.php:228
164
  msgid "HTML to display after the list of posts: "
165
  msgstr ""
166
 
167
+ #: admin.inc.php:231
168
  msgid "Post thumbnail options:"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:233
172
+ msgid "Location of post thumbnail:"
173
+ msgstr ""
174
+
175
+ #: admin.inc.php:237
176
  msgid "Display thumbnails inline with posts, before title"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:241
180
  msgid "Display thumbnails inline with posts, after title"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:245
184
  msgid "Display only thumbnails, no text"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:249
188
  msgid "Do not display thumbnails, only text."
189
  msgstr ""
190
 
191
+ #: admin.inc.php:253
192
+ msgid "Maximum width of the thumbnail: "
193
+ msgstr ""
194
+
195
  #: admin.inc.php:256
196
+ msgid "Maximum height of the thumbnail: "
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:259
200
+ msgid "Use timthumb to generate thumbnails? "
201
+ msgstr ""
202
+
203
+ #: admin.inc.php:260
204
+ msgid ""
205
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
206
+ "\">timthumb</a> will be used to generate thumbnails"
207
+ msgstr ""
208
+
209
+ #: admin.inc.php:262
210
+ msgid "Post thumbnail meta field name: "
211
  msgstr ""
212
 
213
  #: admin.inc.php:263
214
+ msgid ""
215
+ "The value of this field should contain the image source and is set in the "
216
+ "<em>Add New Post</em> screen"
217
+ msgstr ""
218
+
219
+ #: admin.inc.php:265
220
+ msgid ""
221
+ "If the postmeta is not set, then should the plugin extract the first image "
222
+ "from the post?"
223
  msgstr ""
224
 
225
  #: admin.inc.php:266
226
+ msgid ""
227
+ "This can slow down the loading of your page if the first image in the "
228
+ "related posts is large in file-size"
229
  msgstr ""
230
 
231
  #: admin.inc.php:268
232
+ msgid "Use default thumbnail? "
233
  msgstr ""
234
 
235
+ #: admin.inc.php:269
236
+ msgid ""
237
+ "If checked, when no thumbnail is found, show a default one from the URL "
238
+ "below. If not checked and no thumbnail is found, no image will be shown."
239
  msgstr ""
240
 
241
+ #: admin.inc.php:271
242
+ msgid "Default thumbnail: "
243
  msgstr ""
244
 
245
+ #: admin.inc.php:272
246
+ msgid ""
247
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
248
+ "then it will check the meta field. If this is not available, then it will "
249
+ "show the default image as specified above"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:278
253
+ msgid "Custom Styles"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:281
257
+ msgid "Custom CSS to add to header:"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:284
261
+ msgid ""
262
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
263
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
264
+ "available CSS classes to style."
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:289
268
+ msgid "Maintenance"
269
  msgstr ""
270
 
271
  #: admin.inc.php:292
272
+ msgid "Enable scheduled maintenance of daily tables:"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:294
276
+ msgid ""
277
+ "Over time the Daily Top 10 database grows in size, which reduces the "
278
+ "performance of the plugin. Cleaning the database at regular intervals could "
279
+ "improve performance, especially on high traffic blogs"
280
+ msgstr ""
281
+
282
+ #: admin.inc.php:297
283
+ msgid "Time to run maintenance"
284
  msgstr ""
285
 
286
  #: admin.inc.php:300
287
+ msgid "How often should the maintenance be run:"
 
288
  msgstr ""
289
 
290
+ #: admin.inc.php:304
291
+ msgid "Daily"
 
292
  msgstr ""
293
 
294
+ #: admin.inc.php:308
295
+ msgid "Weekly"
 
296
  msgstr ""
297
 
298
+ #: admin.inc.php:312
299
+ msgid "Fortnightly"
 
300
  msgstr ""
301
 
302
+ #: admin.inc.php:316
303
+ msgid "Monthly"
 
304
  msgstr ""
305
 
306
+ #: admin.inc.php:325
307
+ msgid "The cron job has been scheduled. Maintenance will run "
 
 
308
  msgstr ""
309
 
310
+ #: admin.inc.php:330
311
+ msgid "The cron job is missing. Please resave this page to add the job"
 
312
  msgstr ""
313
 
314
+ #: admin.inc.php:335
315
+ msgid "Maintenance is turned off"
 
316
  msgstr ""
317
 
318
+ #: admin.inc.php:343
319
+ msgid "Reset count"
 
320
  msgstr ""
321
 
322
+ #: admin.inc.php:346
323
+ msgid ""
324
+ "This cannot be reversed. Make sure that your database has been backed up "
325
+ "before proceeding"
326
  msgstr ""
327
 
328
+ #: admin.inc.php:349
329
+ msgid "Reset Popular Posts"
 
330
  msgstr ""
331
 
332
+ #: admin.inc.php:349
333
+ msgid "Are you sure you want to reset the popular posts?"
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:350
337
+ msgid "Reset Daily Popular Posts"
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:350
341
+ msgid "Are you sure you want to reset the daily popular posts?"
342
+ msgstr ""
343
+
344
+ #: admin.inc.php:351
345
+ msgid "Clear duplicates"
346
+ msgstr ""
347
+
348
+ #: admin.inc.php:351
349
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
350
+ msgstr ""
351
+
352
+ #: admin.inc.php:355
353
+ msgid "Save Options"
354
+ msgstr ""
355
+
356
+ #: admin.inc.php:356
357
+ msgid "Default Options"
358
+ msgstr ""
359
+
360
+ #: admin.inc.php:356
361
+ msgid "Do you want to set options to Default?"
362
+ msgstr ""
363
+
364
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
365
  msgid "Popular Posts"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:382
369
  msgid "Daily Popular Posts"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:404
373
+ msgid "Support the development"
374
+ msgstr ""
375
+
376
  #: admin.inc.php:412
377
+ msgid "Enter amount in USD: "
378
+ msgstr ""
379
+
380
+ #: admin.inc.php:416
381
+ msgid "Send your donation to the author of"
382
+ msgstr ""
383
+
384
+ #: admin.inc.php:422
385
+ msgid "Follow us on Facebook"
386
+ msgstr ""
387
+
388
+ #: admin.inc.php:426
389
+ msgid "Quick Links"
390
+ msgstr ""
391
+
392
+ #: admin.inc.php:428
393
+ msgid "Top 10 plugin page"
394
+ msgstr ""
395
+
396
+ #: admin.inc.php:429
397
+ msgid "Other plugins"
398
+ msgstr ""
399
+
400
+ #: admin.inc.php:430
401
+ msgid "Ajay's blog"
402
+ msgstr ""
403
+
404
+ #: admin.inc.php:431 top-10.php:583
405
+ msgid "Support"
406
+ msgstr ""
407
+
408
+ #: admin.inc.php:432
409
+ msgid "Follow @ajaydsouza on Twitter"
410
+ msgstr ""
411
+
412
+ #: admin.inc.php:436
413
+ msgid "Recent developments"
414
+ msgstr ""
415
+
416
+ #: admin.inc.php:459 admin.inc.php:461
417
  msgid "Top 10"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:575
421
  msgid "Results"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:577 admin.inc.php:583
 
425
  msgid "of"
426
  msgstr ""
427
 
428
+ #: admin.inc.php:581
429
  msgid "Page"
430
  msgstr ""
431
 
432
+ #: admin.inc.php:595
433
  msgid "View Daily Popular Posts"
434
  msgstr ""
435
 
436
+ #: admin.inc.php:599
437
  msgid "View Overall Popular Posts"
438
  msgstr ""
439
 
440
+ #: admin.inc.php:603
441
  msgid "Results per-page:"
442
  msgstr ""
443
 
444
+ #: admin.inc.php:627
445
  msgid "Previous"
446
  msgstr ""
447
 
448
+ #: admin.inc.php:645
449
  msgid "Next"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:668
 
 
 
 
453
  msgid "Daily Popular"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:679
457
  msgid "Total / Today's Views"
458
  msgstr ""
459
 
460
+ #: top-10.php:257
461
+ msgid "Display the posts popular this week"
462
  msgstr ""
463
 
464
+ #: top-10.php:271
465
+ msgid "Title"
466
  msgstr ""
467
 
468
+ #: top-10.php:276
469
+ msgid "No. of posts"
470
+ msgstr ""
471
+
472
+ #: top-10.php:281
473
+ msgid "Overall"
474
+ msgstr ""
475
+
476
+ #: top-10.php:282
477
+ msgid "Custom time period (Enter below)"
478
  msgstr ""
479
 
480
  #: top-10.php:287
481
+ msgid "Range in number of days (applies only to custom option above)"
482
+ msgstr ""
483
+
484
+ #: top-10.php:291
485
+ msgid "Thumbnail options"
486
+ msgstr ""
487
+
488
+ #: top-10.php:293
489
+ msgid "Thumbnails inline, before title"
490
+ msgstr ""
491
+
492
+ #: top-10.php:294
493
+ msgid "Thumbnails inline, after title"
494
+ msgstr ""
495
+
496
+ #: top-10.php:295
497
+ msgid "Only thumbnails, no text"
498
+ msgstr ""
499
+
500
+ #: top-10.php:296
501
+ msgid "No thumbnails, only text."
502
+ msgstr ""
503
+
504
+ #: top-10.php:301
505
+ msgid " Show excerpt?"
506
+ msgstr ""
507
+
508
+ #: top-10.php:367
509
+ msgid "<h3>Popular Posts</h3>"
510
+ msgstr ""
511
+
512
+ #: top-10.php:368
513
  msgid "<h3>Daily Popular</h3>"
514
  msgstr ""
515
 
516
+ #: top-10.php:369
517
+ msgid "No top posts yet"
518
+ msgstr ""
519
+
520
+ #: top-10.php:560
521
+ msgid "Once Weekly"
522
+ msgstr ""
523
+
524
+ #: top-10.php:561
525
+ msgid "Once Fortnightly"
526
+ msgstr ""
527
+
528
+ #: top-10.php:562
529
+ msgid "Once Monthly"
530
+ msgstr ""
531
+
532
+ #: top-10.php:582
533
  msgid "Settings"
534
  msgstr ""
535
 
536
+ #: top-10.php:584
537
  msgid "Donate"
538
  msgstr ""
 
languages/tptn-es_ES.mo CHANGED
Binary file
languages/tptn-es_ES.po CHANGED
@@ -2,123 +2,175 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-05-11 21:57-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:58
18
  msgid "Options saved successfully."
19
  msgstr "Configuraciones guardadas con éxito"
20
 
21
- #: admin.inc.php:67
22
  msgid "Options set to Default."
23
  msgstr "Los parametros se configuran de manera predeterminada"
24
 
25
- #: admin.inc.php:73
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Reiniciar el Top de los 10 posts más populares"
28
 
29
- #: admin.inc.php:79
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
32
 
33
- #: admin.inc.php:86
34
- msgid "Tables cleaned of duplicate rows"
35
- msgstr "Las filas duplicadas han sido eliminadas"
36
-
37
- #: admin.inc.php:98
38
- msgid "Options:"
39
- msgstr "Los parametros"
40
-
41
  #: admin.inc.php:103
42
- msgid "Format to display the count in: "
43
- msgstr "El formato de visualización de la cuenta: "
44
 
45
- #: admin.inc.php:107
46
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
- msgstr "Utilizar <code>%totalcount%</code> para mostrar el número total y <code>%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
48
 
49
- #: admin.inc.php:110
50
  msgid "Number of popular posts to display: "
51
  msgstr "Mostrar el número de posts más populares"
52
 
53
- #: admin.inc.php:116
54
  msgid "Daily Popular should contain views of how many days? "
55
- msgstr "Los post diarios más populares deben contener el número de visitas al día"
 
56
 
57
- #: admin.inc.php:123
58
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
- msgstr "¿Excluir la Páginas que muestran los posts más Populares? También será contado el número de visitas"
 
 
 
 
60
 
61
- #: admin.inc.php:129
62
- msgid "Display number of views on posts?"
 
 
 
 
 
63
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
64
 
65
- #: admin.inc.php:135
66
- msgid "Display number of views on pages?"
67
- msgstr "¿Mostrar el número de accesos a las páginas?"
68
 
69
- #: admin.inc.php:141
 
 
 
 
 
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
72
 
73
- #: admin.inc.php:147
74
  msgid "Display number of page views in popular lists?"
75
- msgstr "¿Mostrar el número de visitas de la página en las listas más populares?"
 
76
 
77
- #: admin.inc.php:153
78
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
- msgstr "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza JavaScript para cargar el post y también puede aumentar el tiempo de carga"
80
 
81
- #: admin.inc.php:159
82
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
83
- msgstr "¿Mostrar la cantidad de audiencias de la página en Editar los posts/las páginas en WP-Admin? Una columna adicional se agrega a la cuenta"
 
 
 
 
 
 
 
 
 
84
 
85
- #: admin.inc.php:165
86
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
- msgstr "Un enlace al plugin se agrega al cuadro de los posts más populares, como un elemento de una lista adicional. Esto no es obligatorio, pero le agradeceríamos al hacerlo!"
88
 
89
- #: admin.inc.php:169
90
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
91
  msgstr "Los Parámetros Resultantes"
92
 
93
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  msgid "Title of popular posts: "
95
  msgstr "El título de los posts más populares"
96
 
97
- #: admin.inc.php:179
98
  msgid "Title of daily popular posts: "
99
  msgstr "El título de los posts diarios más populares"
100
 
101
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "Show post excerpt in list?"
103
  msgstr "¿Mostrar un fragmento del post en la lista?"
104
 
105
- #: admin.inc.php:191
106
  msgid "Length of excerpt (in words): "
107
  msgstr "La longitud del fragmento(en palabras):"
108
 
109
- #: admin.inc.php:195
110
- msgid "Exclude Categories: "
111
- msgstr "Excluir las Categorías"
112
-
113
- #: admin.inc.php:210
114
  msgid "Customize the output:"
115
  msgstr "Personalizar el resultado:"
116
 
117
- #: admin.inc.php:213
118
  msgid "HTML to display before the list of posts: "
119
  msgstr "HTML mostrar antes de la lista de posts:"
120
 
121
- #: admin.inc.php:219
122
  msgid "HTML to display before each list item: "
123
  msgstr "HTML mostrar ante cada elemento de la lista:"
124
 
@@ -126,219 +178,444 @@ msgstr "HTML mostrar ante cada elemento de la lista:"
126
  msgid "HTML to display after each list item: "
127
  msgstr "HTML mostrar después de cada elemento de la lista:"
128
 
129
- #: admin.inc.php:231
130
  msgid "HTML to display after the list of posts: "
131
  msgstr "HTML mostrar después de la lista de posts:"
132
 
133
- #: admin.inc.php:235
134
  msgid "Post thumbnail options:"
135
  msgstr "Los parámetros del thumbnail:"
136
 
137
- #: admin.inc.php:239
 
 
 
 
138
  msgid "Display thumbnails inline with posts, before title"
139
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
140
 
141
- #: admin.inc.php:243
142
  msgid "Display thumbnails inline with posts, after title"
143
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
144
 
145
- #: admin.inc.php:247
146
  msgid "Display only thumbnails, no text"
147
  msgstr "Mostrar solamente thumbnails, no el texto"
148
 
149
- #: admin.inc.php:251
150
  msgid "Do not display thumbnails, only text."
151
  msgstr "No mostrar thumbnails, sólo el texto"
152
 
 
 
 
 
153
  #: admin.inc.php:256
154
- msgid "Post thumbnail meta field (the meta should point to the image source): "
155
- msgstr "Publicar el post con el enlace, con referencia a la imagen reducida (el enlace debe indicar a la imagen original)\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
 
157
  #: admin.inc.php:263
158
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
159
- msgstr "Si el parámetro postmeta no está instalado, entonces el plugin debería retirar la primera imagen del post. Esto puede retrasar la carga de su post, en caso que la primera imagen de los posts correspondientes es muy grande en tamaño de archivo "
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
  #: admin.inc.php:266
162
- msgid "Thumbnail dimensions:"
163
- msgstr "La extensión de la imagen reducida:"
 
 
 
 
 
 
 
164
 
165
  #: admin.inc.php:268
166
- msgid "Max width: "
167
- msgstr "El ancho máximo:"
168
 
169
- #: admin.inc.php:273
170
- msgid "Max height: "
171
- msgstr "La altura máxima"
 
 
 
 
 
 
172
 
173
- #: admin.inc.php:277
174
- msgid "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."
175
- msgstr "En caso de verificar el post y al no encontrar ninguna imagen reducida, hay que mostrar de forma predeterminada de la URL de abajo. Si no está verificado el post y tampoco está encontrada la imagen reducida, entonces no hay que mostrarla."
176
 
177
- #: admin.inc.php:282
178
- msgid "Do you want to set options to Default?"
179
- msgstr "¿Quiere configurar las opciones de forma predeterminada?"
 
 
 
 
 
 
 
180
 
181
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgid "Reset count"
183
  msgstr "Reiniciar los ajustes"
184
 
185
- #: admin.inc.php:288
186
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
187
- msgstr "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha sido creada una copia de seguridad para su base de datos."
 
 
 
 
 
 
 
 
 
188
 
189
- #: admin.inc.php:291
190
  msgid "Are you sure you want to reset the popular posts?"
191
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
192
 
193
- #: admin.inc.php:292
 
 
 
 
 
194
  msgid "Are you sure you want to reset the daily popular posts?"
195
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
196
 
197
- #: admin.inc.php:293
 
 
 
 
198
  msgid "This will delete the duplicate entries in the tables. Proceed?"
199
- msgstr "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
 
200
 
201
- #: admin.inc.php:300
202
- #: admin.inc.php:360
203
- msgid "Quick links"
204
- msgstr "Enlaces rápidos"
205
 
206
- #: admin.inc.php:302
207
- #: admin.inc.php:362
208
- msgid "Top 10 "
209
- msgstr "Тоp 10"
 
 
 
 
210
 
211
- #: admin.inc.php:302
212
- #: admin.inc.php:362
213
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  msgstr "página plugin"
215
 
216
- #: admin.inc.php:303
217
- #: admin.inc.php:363
218
  msgid "Other plugins"
219
  msgstr "Otros plugins"
220
 
221
- #: admin.inc.php:304
222
- #: admin.inc.php:364
223
  msgid "Ajay's blog"
224
  msgstr "Blog de Ajay"
225
 
226
- #: admin.inc.php:305
227
- #: admin.inc.php:365
228
- #: top-10.php:515
229
  msgid "Support"
230
  msgstr "Apoyo"
231
 
232
- #: admin.inc.php:306
233
- #: admin.inc.php:366
234
  msgid "Follow @ajaydsouza on Twitter"
235
  msgstr "Seguir @ajaydsouza en Twitter"
236
 
237
- #: admin.inc.php:310
238
- #: admin.inc.php:370
239
  msgid "Recent developments"
240
  msgstr "Evolución reciente"
241
 
242
- #: admin.inc.php:315
243
- #: admin.inc.php:375
244
- msgid "Support the development"
245
- msgstr "Apoyar al elaborador"
246
-
247
- #: admin.inc.php:323
248
- #: admin.inc.php:383
249
- msgid "Enter amount in USD: "
250
- msgstr "Ingresar las cifras en USD"
251
-
252
- #: admin.inc.php:327
253
- #: admin.inc.php:387
254
- msgid "Send your donation to the author of"
255
- msgstr "Enviar su subvención al autor"
256
-
257
- #: admin.inc.php:347
258
- #: admin.inc.php:414
259
- #: admin.inc.php:618
260
- #: top-10.php:257
261
- #: top-10.php:273
262
- #: top-10.php:445
263
- #: top-10.php:448
264
- msgid "Popular Posts"
265
- msgstr "Los posts más populares"
266
-
267
- #: admin.inc.php:347
268
- msgid "Daily Popular Posts"
269
- msgstr "Los posts diarios más populares"
270
-
271
- #: admin.inc.php:412
272
- #: admin.inc.php:414
273
  msgid "Top 10"
274
  msgstr "Тоp 10"
275
 
276
- #: admin.inc.php:526
277
  msgid "Results"
278
  msgstr "Resultados"
279
 
280
- #: admin.inc.php:528
281
- #: admin.inc.php:534
282
  msgid "of"
283
  msgstr "de, a "
284
 
285
- #: admin.inc.php:532
286
  msgid "Page"
287
  msgstr "La página"
288
 
289
- #: admin.inc.php:546
290
  msgid "View Daily Popular Posts"
291
  msgstr "Ver los posts diarios más populares"
292
 
293
- #: admin.inc.php:550
294
  msgid "View Overall Popular Posts"
295
  msgstr "Ver los posts más populares"
296
 
297
- #: admin.inc.php:554
298
  msgid "Results per-page:"
299
  msgstr "Los resultados por página:"
300
 
301
- #: admin.inc.php:578
302
  msgid "Previous"
303
  msgstr "Precedentes"
304
 
305
- #: admin.inc.php:596
306
  msgid "Next"
307
  msgstr "Siguientes"
308
 
309
- #: admin.inc.php:619
310
- #: top-10.php:219
311
- #: top-10.php:235
312
- #: top-10.php:446
313
- #: top-10.php:449
314
  msgid "Daily Popular"
315
  msgstr "Diario Populares"
316
 
317
- #: admin.inc.php:630
318
  msgid "Total / Today's Views"
319
  msgstr "Total/Visitas de hoy"
320
 
321
- #: top-10.php:218
322
- msgid "Display the posts popular today"
323
- msgstr "Mostrar los posts populares de hoy"
324
-
325
- #: top-10.php:256
326
  msgid "Display the posts popular this week"
327
  msgstr "Mostrar los posts populares de esta semana"
328
 
329
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  msgid "<h3>Popular Posts</h3>"
331
  msgstr "Los posts populares"
332
 
333
- #: top-10.php:287
334
  msgid "<h3>Daily Popular</h3>"
335
  msgstr "Diario Populares"
336
 
337
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Settings"
339
  msgstr "Los ajustes"
340
 
341
- #: top-10.php:516
342
  msgid "Donate"
343
  msgstr "Subvencionar"
344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:55-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
9
+ "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Configuraciones guardadas con éxito"
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Los parametros se configuran de manera predeterminada"
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Reiniciar el Top de los 10 posts más populares"
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Reiniciar el Top de los 10 posts diarios más populares"
32
 
 
 
 
 
 
 
 
 
33
  #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
 
41
+ #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Mostrar el número de posts más populares"
44
 
45
+ #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
+ msgstr ""
48
+ "Los post diarios más populares deben contener el número de visitas al día"
49
 
50
+ #: admin.inc.php:133
51
+ msgid ""
52
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
+ "continue to be counted."
54
+ msgstr ""
55
+ "¿Excluir la Páginas que muestran los posts más Populares? También será "
56
+ "contado el número de visitas"
57
 
58
+ #: admin.inc.php:136
59
+ msgid "Exclude Categories: "
60
+ msgstr "Excluir las Categorías"
61
+
62
+ #: admin.inc.php:154
63
+ #, fuzzy
64
+ msgid "Display number of views on:"
65
  msgstr "¿Mostrar la cantidad de audiencia de los posts?"
66
 
67
+ #: admin.inc.php:155
68
+ msgid "Posts"
69
+ msgstr ""
70
 
71
+ #: admin.inc.php:156
72
+ #, fuzzy
73
+ msgid "Pages"
74
+ msgstr "La página"
75
+
76
+ #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "¿Observar las visitas de los autores a sus propios posts?"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
+ msgstr ""
83
+ "¿Mostrar el número de visitas de la página en las listas más populares?"
84
 
85
+ #: admin.inc.php:167
86
+ msgid "Force daily posts' list to be dynamic?"
87
+ msgstr ""
88
 
89
+ #: admin.inc.php:169
90
+ #, fuzzy
91
+ msgid ""
92
+ "This option uses JavaScript to load the post and can increase your page load "
93
+ "time"
94
+ msgstr ""
95
+ "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza "
96
+ "JavaScript para cargar el post y también puede aumentar el tiempo de carga"
97
+
98
+ #: admin.inc.php:172
99
+ msgid "Display page views on Posts > All Posts in Admin"
100
+ msgstr ""
101
 
102
+ #: admin.inc.php:176
103
+ msgid "Link to Top 10 plugin page"
104
+ msgstr ""
105
 
106
+ #: admin.inc.php:178
107
+ #, fuzzy
108
+ msgid ""
109
+ "A link to the plugin is added as an extra list item to the list of popular "
110
+ "posts"
111
+ msgstr ""
112
+ "Un enlace al plugin se agrega al cuadro de los posts más populares, como un "
113
+ "elemento de una lista adicional. Esto no es obligatorio, pero le "
114
+ "agradeceríamos al hacerlo!"
115
+
116
+ #: admin.inc.php:185
117
+ #, fuzzy
118
+ msgid "Output Options"
119
  msgstr "Los Parámetros Resultantes"
120
 
121
+ #: admin.inc.php:188
122
+ msgid "Format to display the count in: "
123
+ msgstr "El formato de visualización de la cuenta: "
124
+
125
+ #: admin.inc.php:191
126
+ #, fuzzy
127
+ msgid ""
128
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
129
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
130
+ "display the overall count across all posts on the blog. e.g. the default "
131
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
132
+ msgstr ""
133
+ "Utilizar <code>%totalcount%</code> para mostrar el número total y <code>"
134
+ "%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes "
135
+ "predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
136
+
137
+ #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "El título de los posts más populares"
140
 
141
+ #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "El título de los posts diarios más populares"
144
 
145
+ #: admin.inc.php:199
146
+ msgid "When there are no posts, what should be shown?"
147
+ msgstr ""
148
+
149
+ #: admin.inc.php:203
150
+ msgid "Blank Output"
151
+ msgstr ""
152
+
153
+ #: admin.inc.php:207
154
+ msgid "Display:"
155
+ msgstr ""
156
+
157
+ #: admin.inc.php:211
158
  msgid "Show post excerpt in list?"
159
  msgstr "¿Mostrar un fragmento del post en la lista?"
160
 
161
+ #: admin.inc.php:214
162
  msgid "Length of excerpt (in words): "
163
  msgstr "La longitud del fragmento(en palabras):"
164
 
165
+ #: admin.inc.php:217
 
 
 
 
166
  msgid "Customize the output:"
167
  msgstr "Personalizar el resultado:"
168
 
169
+ #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr "HTML mostrar antes de la lista de posts:"
172
 
173
+ #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr "HTML mostrar ante cada elemento de la lista:"
176
 
178
  msgid "HTML to display after each list item: "
179
  msgstr "HTML mostrar después de cada elemento de la lista:"
180
 
181
+ #: admin.inc.php:228
182
  msgid "HTML to display after the list of posts: "
183
  msgstr "HTML mostrar después de la lista de posts:"
184
 
185
+ #: admin.inc.php:231
186
  msgid "Post thumbnail options:"
187
  msgstr "Los parámetros del thumbnail:"
188
 
189
+ #: admin.inc.php:233
190
+ msgid "Location of post thumbnail:"
191
+ msgstr ""
192
+
193
+ #: admin.inc.php:237
194
  msgid "Display thumbnails inline with posts, before title"
195
  msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
196
 
197
+ #: admin.inc.php:241
198
  msgid "Display thumbnails inline with posts, after title"
199
  msgstr "Mostrar el thumbnails en línea con los posts, después del título"
200
 
201
+ #: admin.inc.php:245
202
  msgid "Display only thumbnails, no text"
203
  msgstr "Mostrar solamente thumbnails, no el texto"
204
 
205
+ #: admin.inc.php:249
206
  msgid "Do not display thumbnails, only text."
207
  msgstr "No mostrar thumbnails, sólo el texto"
208
 
209
+ #: admin.inc.php:253
210
+ msgid "Maximum width of the thumbnail: "
211
+ msgstr ""
212
+
213
  #: admin.inc.php:256
214
+ msgid "Maximum height of the thumbnail: "
215
+ msgstr ""
216
+
217
+ #: admin.inc.php:259
218
+ msgid "Use timthumb to generate thumbnails? "
219
+ msgstr ""
220
+
221
+ #: admin.inc.php:260
222
+ msgid ""
223
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
224
+ "\">timthumb</a> will be used to generate thumbnails"
225
+ msgstr ""
226
+
227
+ #: admin.inc.php:262
228
+ #, fuzzy
229
+ msgid "Post thumbnail meta field name: "
230
+ msgstr "Los parámetros del thumbnail:"
231
 
232
  #: admin.inc.php:263
233
+ msgid ""
234
+ "The value of this field should contain the image source and is set in the "
235
+ "<em>Add New Post</em> screen"
236
+ msgstr ""
237
+
238
+ #: admin.inc.php:265
239
+ #, fuzzy
240
+ msgid ""
241
+ "If the postmeta is not set, then should the plugin extract the first image "
242
+ "from the post?"
243
+ msgstr ""
244
+ "Si el parámetro postmeta no está instalado, entonces el plugin debería "
245
+ "retirar la primera imagen del post. Esto puede retrasar la carga de su post, "
246
+ "en caso que la primera imagen de los posts correspondientes es muy grande en "
247
+ "tamaño de archivo "
248
 
249
  #: admin.inc.php:266
250
+ #, fuzzy
251
+ msgid ""
252
+ "This can slow down the loading of your page if the first image in the "
253
+ "related posts is large in file-size"
254
+ msgstr ""
255
+ "Si el parámetro postmeta no está instalado, entonces el plugin debería "
256
+ "retirar la primera imagen del post. Esto puede retrasar la carga de su post, "
257
+ "en caso que la primera imagen de los posts correspondientes es muy grande en "
258
+ "tamaño de archivo "
259
 
260
  #: admin.inc.php:268
261
+ msgid "Use default thumbnail? "
262
+ msgstr ""
263
 
264
+ #: admin.inc.php:269
265
+ msgid ""
266
+ "If checked, when no thumbnail is found, show a default one from the URL "
267
+ "below. If not checked and no thumbnail is found, no image will be shown."
268
+ msgstr ""
269
+ "En caso de verificar el post y al no encontrar ninguna imagen reducida, hay "
270
+ "que mostrar de forma predeterminada de la URL de abajo. Si no está "
271
+ "verificado el post y tampoco está encontrada la imagen reducida, entonces no "
272
+ "hay que mostrarla."
273
 
274
+ #: admin.inc.php:271
275
+ msgid "Default thumbnail: "
276
+ msgstr ""
277
 
278
+ #: admin.inc.php:272
279
+ msgid ""
280
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
281
+ "then it will check the meta field. If this is not available, then it will "
282
+ "show the default image as specified above"
283
+ msgstr ""
284
+
285
+ #: admin.inc.php:278
286
+ msgid "Custom Styles"
287
+ msgstr ""
288
 
289
+ #: admin.inc.php:281
290
+ msgid "Custom CSS to add to header:"
291
+ msgstr ""
292
+
293
+ #: admin.inc.php:284
294
+ msgid ""
295
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
296
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
297
+ "available CSS classes to style."
298
+ msgstr ""
299
+
300
+ #: admin.inc.php:289
301
+ msgid "Maintenance"
302
+ msgstr ""
303
+
304
+ #: admin.inc.php:292
305
+ msgid "Enable scheduled maintenance of daily tables:"
306
+ msgstr ""
307
+
308
+ #: admin.inc.php:294
309
+ msgid ""
310
+ "Over time the Daily Top 10 database grows in size, which reduces the "
311
+ "performance of the plugin. Cleaning the database at regular intervals could "
312
+ "improve performance, especially on high traffic blogs"
313
+ msgstr ""
314
+
315
+ #: admin.inc.php:297
316
+ msgid "Time to run maintenance"
317
+ msgstr ""
318
+
319
+ #: admin.inc.php:300
320
+ msgid "How often should the maintenance be run:"
321
+ msgstr ""
322
+
323
+ #: admin.inc.php:304
324
+ msgid "Daily"
325
+ msgstr ""
326
+
327
+ #: admin.inc.php:308
328
+ msgid "Weekly"
329
+ msgstr ""
330
+
331
+ #: admin.inc.php:312
332
+ msgid "Fortnightly"
333
+ msgstr ""
334
+
335
+ #: admin.inc.php:316
336
+ msgid "Monthly"
337
+ msgstr ""
338
+
339
+ #: admin.inc.php:325
340
+ msgid "The cron job has been scheduled. Maintenance will run "
341
+ msgstr ""
342
+
343
+ #: admin.inc.php:330
344
+ msgid "The cron job is missing. Please resave this page to add the job"
345
+ msgstr ""
346
+
347
+ #: admin.inc.php:335
348
+ msgid "Maintenance is turned off"
349
+ msgstr ""
350
+
351
+ #: admin.inc.php:343
352
  msgid "Reset count"
353
  msgstr "Reiniciar los ajustes"
354
 
355
+ #: admin.inc.php:346
356
+ msgid ""
357
+ "This cannot be reversed. Make sure that your database has been backed up "
358
+ "before proceeding"
359
+ msgstr ""
360
+ "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
361
+ "sido creada una copia de seguridad para su base de datos."
362
+
363
+ #: admin.inc.php:349
364
+ #, fuzzy
365
+ msgid "Reset Popular Posts"
366
+ msgstr "Los posts más populares"
367
 
368
+ #: admin.inc.php:349
369
  msgid "Are you sure you want to reset the popular posts?"
370
  msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
371
 
372
+ #: admin.inc.php:350
373
+ #, fuzzy
374
+ msgid "Reset Daily Popular Posts"
375
+ msgstr "Los posts diarios más populares"
376
+
377
+ #: admin.inc.php:350
378
  msgid "Are you sure you want to reset the daily popular posts?"
379
  msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
380
 
381
+ #: admin.inc.php:351
382
+ msgid "Clear duplicates"
383
+ msgstr ""
384
+
385
+ #: admin.inc.php:351
386
  msgid "This will delete the duplicate entries in the tables. Proceed?"
387
+ msgstr ""
388
+ "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
389
 
390
+ #: admin.inc.php:355
391
+ #, fuzzy
392
+ msgid "Save Options"
393
+ msgstr "Los parametros"
394
 
395
+ #: admin.inc.php:356
396
+ #, fuzzy
397
+ msgid "Default Options"
398
+ msgstr "Los Parámetros Resultantes"
399
+
400
+ #: admin.inc.php:356
401
+ msgid "Do you want to set options to Default?"
402
+ msgstr "¿Quiere configurar las opciones de forma predeterminada?"
403
 
404
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
405
+ msgid "Popular Posts"
406
+ msgstr "Los posts más populares"
407
+
408
+ #: admin.inc.php:382
409
+ msgid "Daily Popular Posts"
410
+ msgstr "Los posts diarios más populares"
411
+
412
+ #: admin.inc.php:404
413
+ msgid "Support the development"
414
+ msgstr "Apoyar al elaborador"
415
+
416
+ #: admin.inc.php:412
417
+ msgid "Enter amount in USD: "
418
+ msgstr "Ingresar las cifras en USD"
419
+
420
+ #: admin.inc.php:416
421
+ msgid "Send your donation to the author of"
422
+ msgstr "Enviar su subvención al autor"
423
+
424
+ #: admin.inc.php:422
425
+ msgid "Follow us on Facebook"
426
+ msgstr ""
427
+
428
+ #: admin.inc.php:426
429
+ #, fuzzy
430
+ msgid "Quick Links"
431
+ msgstr "Enlaces rápidos"
432
+
433
+ #: admin.inc.php:428
434
+ #, fuzzy
435
+ msgid "Top 10 plugin page"
436
  msgstr "página plugin"
437
 
438
+ #: admin.inc.php:429
 
439
  msgid "Other plugins"
440
  msgstr "Otros plugins"
441
 
442
+ #: admin.inc.php:430
 
443
  msgid "Ajay's blog"
444
  msgstr "Blog de Ajay"
445
 
446
+ #: admin.inc.php:431 top-10.php:583
 
 
447
  msgid "Support"
448
  msgstr "Apoyo"
449
 
450
+ #: admin.inc.php:432
 
451
  msgid "Follow @ajaydsouza on Twitter"
452
  msgstr "Seguir @ajaydsouza en Twitter"
453
 
454
+ #: admin.inc.php:436
 
455
  msgid "Recent developments"
456
  msgstr "Evolución reciente"
457
 
458
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  msgid "Top 10"
460
  msgstr "Тоp 10"
461
 
462
+ #: admin.inc.php:575
463
  msgid "Results"
464
  msgstr "Resultados"
465
 
466
+ #: admin.inc.php:577 admin.inc.php:583
 
467
  msgid "of"
468
  msgstr "de, a "
469
 
470
+ #: admin.inc.php:581
471
  msgid "Page"
472
  msgstr "La página"
473
 
474
+ #: admin.inc.php:595
475
  msgid "View Daily Popular Posts"
476
  msgstr "Ver los posts diarios más populares"
477
 
478
+ #: admin.inc.php:599
479
  msgid "View Overall Popular Posts"
480
  msgstr "Ver los posts más populares"
481
 
482
+ #: admin.inc.php:603
483
  msgid "Results per-page:"
484
  msgstr "Los resultados por página:"
485
 
486
+ #: admin.inc.php:627
487
  msgid "Previous"
488
  msgstr "Precedentes"
489
 
490
+ #: admin.inc.php:645
491
  msgid "Next"
492
  msgstr "Siguientes"
493
 
494
+ #: admin.inc.php:668
 
 
 
 
495
  msgid "Daily Popular"
496
  msgstr "Diario Populares"
497
 
498
+ #: admin.inc.php:679
499
  msgid "Total / Today's Views"
500
  msgstr "Total/Visitas de hoy"
501
 
502
+ #: top-10.php:257
 
 
 
 
503
  msgid "Display the posts popular this week"
504
  msgstr "Mostrar los posts populares de esta semana"
505
 
506
+ #: top-10.php:271
507
+ msgid "Title"
508
+ msgstr ""
509
+
510
+ #: top-10.php:276
511
+ msgid "No. of posts"
512
+ msgstr ""
513
+
514
+ #: top-10.php:281
515
+ msgid "Overall"
516
+ msgstr ""
517
+
518
+ #: top-10.php:282
519
+ msgid "Custom time period (Enter below)"
520
+ msgstr ""
521
+
522
+ #: top-10.php:287
523
+ msgid "Range in number of days (applies only to custom option above)"
524
+ msgstr ""
525
+
526
+ #: top-10.php:291
527
+ #, fuzzy
528
+ msgid "Thumbnail options"
529
+ msgstr "Los parámetros del thumbnail:"
530
+
531
+ #: top-10.php:293
532
+ #, fuzzy
533
+ msgid "Thumbnails inline, before title"
534
+ msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
535
+
536
+ #: top-10.php:294
537
+ #, fuzzy
538
+ msgid "Thumbnails inline, after title"
539
+ msgstr "Mostrar el thumbnails en línea con los posts, después del título"
540
+
541
+ #: top-10.php:295
542
+ #, fuzzy
543
+ msgid "Only thumbnails, no text"
544
+ msgstr "Mostrar solamente thumbnails, no el texto"
545
+
546
+ #: top-10.php:296
547
+ #, fuzzy
548
+ msgid "No thumbnails, only text."
549
+ msgstr "No mostrar thumbnails, sólo el texto"
550
+
551
+ #: top-10.php:301
552
+ #, fuzzy
553
+ msgid " Show excerpt?"
554
+ msgstr "¿Mostrar un fragmento del post en la lista?"
555
+
556
+ #: top-10.php:367
557
  msgid "<h3>Popular Posts</h3>"
558
  msgstr "Los posts populares"
559
 
560
+ #: top-10.php:368
561
  msgid "<h3>Daily Popular</h3>"
562
  msgstr "Diario Populares"
563
 
564
+ #: top-10.php:369
565
+ #, fuzzy
566
+ msgid "No top posts yet"
567
+ msgstr "Reiniciar el Top de los 10 posts más populares"
568
+
569
+ #: top-10.php:560
570
+ msgid "Once Weekly"
571
+ msgstr ""
572
+
573
+ #: top-10.php:561
574
+ msgid "Once Fortnightly"
575
+ msgstr ""
576
+
577
+ #: top-10.php:562
578
+ msgid "Once Monthly"
579
+ msgstr ""
580
+
581
+ #: top-10.php:582
582
  msgid "Settings"
583
  msgstr "Los ajustes"
584
 
585
+ #: top-10.php:584
586
  msgid "Donate"
587
  msgstr "Subvencionar"
588
 
589
+ #~ msgid "Tables cleaned of duplicate rows"
590
+ #~ msgstr "Las filas duplicadas han sido eliminadas"
591
+
592
+ #~ msgid "Display number of views on pages?"
593
+ #~ msgstr "¿Mostrar el número de accesos a las páginas?"
594
+
595
+ #~ msgid ""
596
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
597
+ #~ "added with the count"
598
+ #~ msgstr ""
599
+ #~ "¿Mostrar la cantidad de audiencias de la página en Editar los posts/las "
600
+ #~ "páginas en WP-Admin? Una columna adicional se agrega a la cuenta"
601
+
602
+ #~ msgid ""
603
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
604
+ #~ msgstr ""
605
+ #~ "Publicar el post con el enlace, con referencia a la imagen reducida (el "
606
+ #~ "enlace debe indicar a la imagen original)\""
607
+
608
+ #~ msgid "Thumbnail dimensions:"
609
+ #~ msgstr "La extensión de la imagen reducida:"
610
+
611
+ #~ msgid "Max width: "
612
+ #~ msgstr "El ancho máximo:"
613
+
614
+ #~ msgid "Max height: "
615
+ #~ msgstr "La altura máxima"
616
+
617
+ #~ msgid "Top 10 "
618
+ #~ msgstr "Тоp 10"
619
+
620
+ #~ msgid "Display the posts popular today"
621
+ #~ msgstr "Mostrar los posts populares de hoy"
languages/tptn-fr_FR.mo CHANGED
Binary file
languages/tptn-fr_FR.po CHANGED
@@ -2,123 +2,177 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-05-30 22:33-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:58
18
  msgid "Options saved successfully."
19
  msgstr "Les options sont sauvegardées avec succès"
20
 
21
- #: admin.inc.php:67
22
  msgid "Options set to Default."
23
  msgstr "Options par défaut sont définies"
24
 
25
- #: admin.inc.php:73
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
28
 
29
- #: admin.inc.php:79
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
32
 
33
- #: admin.inc.php:86
34
- msgid "Tables cleaned of duplicate rows"
35
- msgstr "Supprimer les lignes répétitives du tableau"
36
-
37
- #: admin.inc.php:98
38
- msgid "Options:"
39
- msgstr "Options:"
40
-
41
  #: admin.inc.php:103
42
- msgid "Format to display the count in: "
43
- msgstr "Format d’affichage de la quantité en:"
44
 
45
- #: admin.inc.php:107
46
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
- msgstr "Appliquer <code>%totalcount%</code> pour l'affichage de la quantité totale, et code>%dailycount%</code> pour l'affichage des quantités journalières utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited 123 times, 23 visits today)</code>"
48
 
49
- #: admin.inc.php:110
50
  msgid "Number of popular posts to display: "
51
  msgstr "Le nombre de populaires sur le forum"
52
 
53
- #: admin.inc.php:116
54
  msgid "Daily Popular should contain views of how many days? "
55
- msgstr "Le populaire journalier doit contenir l'information sur le nombre des jours"
 
56
 
57
- #: admin.inc.php:123
58
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
- msgstr "Éliminer d'affichage les pages du message populaire? Le nombre des visionnage des pages qui seront toujours prises en compte."
 
 
 
 
60
 
61
- #: admin.inc.php:129
62
- msgid "Display number of views on posts?"
 
 
 
 
 
63
  msgstr "Afficher le nombre des visionnages du message?"
64
 
65
- #: admin.inc.php:135
66
- msgid "Display number of views on pages?"
67
- msgstr "Afficher le nombre des visionnages sur les pages?"
68
 
69
- #: admin.inc.php:141
 
 
 
 
 
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
72
 
73
- #: admin.inc.php:147
74
  msgid "Display number of page views in popular lists?"
75
- msgstr "Afficher le nombre des visionnages des pages dans les listes de popularité?"
 
76
 
77
- #: admin.inc.php:153
78
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
- msgstr "Rendre la liste des postes journaliers dynamiques? Cette option fait appel à JavaScript, le chargement du poste peut augmenter le temps du chargement de la page"
80
 
81
- #: admin.inc.php:159
82
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
83
- msgstr "Afficher les visionnages des pages dans le rédacteur de messages / pages de WP-Admin? Une colonne supplémentaire avec graphe est rajoutée"
 
 
 
 
 
 
 
 
 
 
84
 
85
- #: admin.inc.php:165
86
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
- msgstr "Le lien vers le plugin en qualité d'élément complémentaire de la liste dans le répertoire des enregistrements populaires. Cela n'est pas obligatoire, mais nous vous y remercions!"
88
 
89
- #: admin.inc.php:169
90
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
91
  msgstr "Paramètres de sortie"
92
 
93
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  msgid "Title of popular posts: "
95
  msgstr "Les en-têtes des messages populaires"
96
 
97
- #: admin.inc.php:179
98
  msgid "Title of daily popular posts: "
99
  msgstr "Les en-têtes des messages populaires journaliers"
100
 
101
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "Show post excerpt in list?"
103
  msgstr "Afficher le fragment du message dans la liste?"
104
 
105
- #: admin.inc.php:191
106
  msgid "Length of excerpt (in words): "
107
  msgstr "Longueur du fragment (mots):"
108
 
109
- #: admin.inc.php:195
110
- msgid "Exclude Categories: "
111
- msgstr "Exclure les catégories:"
112
-
113
- #: admin.inc.php:210
114
  msgid "Customize the output:"
115
  msgstr "Paramétrer la sortie:"
116
 
117
- #: admin.inc.php:213
118
  msgid "HTML to display before the list of posts: "
119
  msgstr "HTML d'affichage avant la liste des messages:"
120
 
121
- #: admin.inc.php:219
122
  msgid "HTML to display before each list item: "
123
  msgstr "HTML d'affichage avant chaque élément de la liste:"
124
 
@@ -126,219 +180,441 @@ msgstr "HTML d'affichage avant chaque élément de la liste:"
126
  msgid "HTML to display after each list item: "
127
  msgstr "HTML d'affichage après chaque élément de la liste:"
128
 
129
- #: admin.inc.php:231
130
  msgid "HTML to display after the list of posts: "
131
  msgstr "HTML d'affichage après la liste des messages:"
132
 
133
- #: admin.inc.php:235
134
  msgid "Post thumbnail options:"
135
  msgstr "Options thumbnail des messages:"
136
 
137
- #: admin.inc.php:239
 
 
 
 
138
  msgid "Display thumbnails inline with posts, before title"
139
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
140
 
141
- #: admin.inc.php:243
142
  msgid "Display thumbnails inline with posts, after title"
143
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
144
 
145
- #: admin.inc.php:247
146
  msgid "Display only thumbnails, no text"
147
  msgstr "Afficher uniquement le thumbnail, sans le texte"
148
 
149
- #: admin.inc.php:251
150
  msgid "Do not display thumbnails, only text."
151
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
152
 
 
 
 
 
153
  #: admin.inc.php:256
154
- msgid "Post thumbnail meta field (the meta should point to the image source): "
155
- msgstr "Afficher meta field thumbnail, doit pointer sur l'image initiale:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
 
157
  #: admin.inc.php:263
158
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
159
- msgstr "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première image du poste. Cela pourrait ralentir le chargement de votre poste, si la première image de la résolution correspondante du fichier est de taille supérieure"
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
  #: admin.inc.php:266
162
- msgid "Thumbnail dimensions:"
163
- msgstr "Dimension thumbnail:"
 
 
 
 
 
 
 
164
 
165
  #: admin.inc.php:268
166
- msgid "Max width: "
167
- msgstr "Largeur maximale:"
168
 
169
- #: admin.inc.php:273
170
- msgid "Max height: "
171
- msgstr "Hauteur maximale:"
 
 
 
 
 
172
 
173
- #: admin.inc.php:277
174
- msgid "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."
175
- msgstr "S'il a été déterminé, que le thumbnail n'a pas été trouvé, afficher le Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas été retrouvé, ne pas afficher l'image."
176
 
177
- #: admin.inc.php:282
178
- msgid "Do you want to set options to Default?"
179
- msgstr "Définir les paramètres par défaut?"
 
 
 
 
 
 
 
180
 
181
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgid "Reset count"
183
  msgstr "Réinitialiser le compteur"
184
 
185
- #: admin.inc.php:288
186
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
187
- msgstr "Cette action ne peut être annulée. Assurez-vous que la base de données a été sauvegardée avant de poursuivre."
 
 
 
 
 
 
 
 
 
188
 
189
- #: admin.inc.php:291
190
  msgid "Are you sure you want to reset the popular posts?"
191
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
192
 
193
- #: admin.inc.php:292
 
 
 
 
 
194
  msgid "Are you sure you want to reset the daily popular posts?"
195
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
196
 
197
- #: admin.inc.php:293
 
 
 
 
198
  msgid "This will delete the duplicate entries in the tables. Proceed?"
199
- msgstr "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
 
200
 
201
- #: admin.inc.php:300
202
- #: admin.inc.php:360
203
- msgid "Quick links"
204
- msgstr "Liens rapides"
205
 
206
- #: admin.inc.php:302
207
- #: admin.inc.php:362
208
- msgid "Top 10 "
209
- msgstr "Тоp 10"
 
 
 
 
210
 
211
- #: admin.inc.php:302
212
- #: admin.inc.php:362
213
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  msgstr "Page de plugin"
215
 
216
- #: admin.inc.php:303
217
- #: admin.inc.php:363
218
  msgid "Other plugins"
219
  msgstr "Autres plugins"
220
 
221
- #: admin.inc.php:304
222
- #: admin.inc.php:364
223
  msgid "Ajay's blog"
224
  msgstr "Blog Ajay"
225
 
226
- #: admin.inc.php:305
227
- #: admin.inc.php:365
228
- #: top-10.php:515
229
  msgid "Support"
230
  msgstr "Service d'assistance"
231
 
232
- #: admin.inc.php:306
233
- #: admin.inc.php:366
234
  msgid "Follow @ajaydsouza on Twitter"
235
  msgstr "Follow @ajaydsouza sur Twitter"
236
 
237
- #: admin.inc.php:310
238
- #: admin.inc.php:370
239
  msgid "Recent developments"
240
  msgstr "Les derniers projets"
241
 
242
- #: admin.inc.php:315
243
- #: admin.inc.php:375
244
- msgid "Support the development"
245
- msgstr "Soutenir le projet"
246
-
247
- #: admin.inc.php:323
248
- #: admin.inc.php:383
249
- msgid "Enter amount in USD: "
250
- msgstr "Saisir le montant en dollars US"
251
-
252
- #: admin.inc.php:327
253
- #: admin.inc.php:387
254
- msgid "Send your donation to the author of"
255
- msgstr "Envoyer sa dotation à l'auteur"
256
-
257
- #: admin.inc.php:347
258
- #: admin.inc.php:414
259
- #: admin.inc.php:618
260
- #: top-10.php:257
261
- #: top-10.php:273
262
- #: top-10.php:445
263
- #: top-10.php:448
264
- msgid "Popular Posts"
265
- msgstr "Postes populaires"
266
-
267
- #: admin.inc.php:347
268
- msgid "Daily Popular Posts"
269
- msgstr "Postes populaires journaliers"
270
-
271
- #: admin.inc.php:412
272
- #: admin.inc.php:414
273
  msgid "Top 10"
274
  msgstr "Тоp 10"
275
 
276
- #: admin.inc.php:526
277
  msgid "Results"
278
  msgstr "Résultats"
279
 
280
- #: admin.inc.php:528
281
- #: admin.inc.php:534
282
  msgid "of"
283
  msgstr "de, du, de la, des"
284
 
285
- #: admin.inc.php:532
286
  msgid "Page"
287
  msgstr "Page"
288
 
289
- #: admin.inc.php:546
290
  msgid "View Daily Popular Posts"
291
  msgstr "Voir les postes populaires journaliers"
292
 
293
- #: admin.inc.php:550
294
  msgid "View Overall Popular Posts"
295
  msgstr "Voir tous les postes populaires"
296
 
297
- #: admin.inc.php:554
298
  msgid "Results per-page:"
299
  msgstr "Résultats par page:"
300
 
301
- #: admin.inc.php:578
302
  msgid "Previous"
303
  msgstr "Précédente"
304
 
305
- #: admin.inc.php:596
306
  msgid "Next"
307
  msgstr "Suivante"
308
 
309
- #: admin.inc.php:619
310
- #: top-10.php:219
311
- #: top-10.php:235
312
- #: top-10.php:446
313
- #: top-10.php:449
314
  msgid "Daily Popular"
315
  msgstr "Populaires journaliers"
316
 
317
- #: admin.inc.php:630
318
  msgid "Total / Today's Views"
319
  msgstr "Total/aujourd'hui visionnages"
320
 
321
- #: top-10.php:218
322
- msgid "Display the posts popular today"
323
- msgstr "Afficher les postes populaires aujourd'hui"
324
-
325
- #: top-10.php:256
326
  msgid "Display the posts popular this week"
327
  msgstr "Afficher les postes populaires de la semaine"
328
 
329
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  msgid "<h3>Popular Posts</h3>"
331
  msgstr "<h3>Postes populaires</h3>"
332
 
333
- #: top-10.php:287
334
  msgid "<h3>Daily Popular</h3>"
335
  msgstr "<h3>Populaires Journaliers</h3>"
336
 
337
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Settings"
339
  msgstr "Paramètres"
340
 
341
- #: top-10.php:516
342
  msgid "Donate"
343
  msgstr "Conribuer"
344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:55-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
9
+ "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Les options sont sauvegardées avec succès"
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Options par défaut sont définies"
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Annuler le top 10 des enregistrements les plus populaires"
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Annuler le top 10 des messages les plus populaires journaliers"
32
 
 
 
 
 
 
 
 
 
33
  #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
 
41
+ #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Le nombre de populaires sur le forum"
44
 
45
+ #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
+ msgstr ""
48
+ "Le populaire journalier doit contenir l'information sur le nombre des jours"
49
 
50
+ #: admin.inc.php:133
51
+ msgid ""
52
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
+ "continue to be counted."
54
+ msgstr ""
55
+ "Éliminer d'affichage les pages du message populaire? Le nombre des "
56
+ "visionnage des pages qui seront toujours prises en compte."
57
 
58
+ #: admin.inc.php:136
59
+ msgid "Exclude Categories: "
60
+ msgstr "Exclure les catégories:"
61
+
62
+ #: admin.inc.php:154
63
+ #, fuzzy
64
+ msgid "Display number of views on:"
65
  msgstr "Afficher le nombre des visionnages du message?"
66
 
67
+ #: admin.inc.php:155
68
+ msgid "Posts"
69
+ msgstr ""
70
 
71
+ #: admin.inc.php:156
72
+ #, fuzzy
73
+ msgid "Pages"
74
+ msgstr "Page"
75
+
76
+ #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Suivre les visites des auteurs de leurs propres messages?"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
+ msgstr ""
83
+ "Afficher le nombre des visionnages des pages dans les listes de popularité?"
84
 
85
+ #: admin.inc.php:167
86
+ msgid "Force daily posts' list to be dynamic?"
87
+ msgstr ""
88
 
89
+ #: admin.inc.php:169
90
+ #, fuzzy
91
+ msgid ""
92
+ "This option uses JavaScript to load the post and can increase your page load "
93
+ "time"
94
+ msgstr ""
95
+ "Rendre la liste des postes journaliers dynamiques? Cette option fait appel à "
96
+ "JavaScript, le chargement du poste peut augmenter le temps du chargement de "
97
+ "la page"
98
+
99
+ #: admin.inc.php:172
100
+ msgid "Display page views on Posts > All Posts in Admin"
101
+ msgstr ""
102
 
103
+ #: admin.inc.php:176
104
+ msgid "Link to Top 10 plugin page"
105
+ msgstr ""
106
 
107
+ #: admin.inc.php:178
108
+ #, fuzzy
109
+ msgid ""
110
+ "A link to the plugin is added as an extra list item to the list of popular "
111
+ "posts"
112
+ msgstr ""
113
+ "Le lien vers le plugin en qualité d'élément complémentaire de la liste dans "
114
+ "le répertoire des enregistrements populaires. Cela n'est pas obligatoire, "
115
+ "mais nous vous y remercions!"
116
+
117
+ #: admin.inc.php:185
118
+ #, fuzzy
119
+ msgid "Output Options"
120
  msgstr "Paramètres de sortie"
121
 
122
+ #: admin.inc.php:188
123
+ msgid "Format to display the count in: "
124
+ msgstr "Format d’affichage de la quantité en:"
125
+
126
+ #: admin.inc.php:191
127
+ #, fuzzy
128
+ msgid ""
129
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
130
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
131
+ "display the overall count across all posts on the blog. e.g. the default "
132
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
133
+ msgstr ""
134
+ "Appliquer <code>%totalcount%</code> pour l'affichage de la quantité totale, "
135
+ "et code>%dailycount%</code> pour l'affichage des quantités journalières "
136
+ "utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited "
137
+ "123 times, 23 visits today)</code>"
138
+
139
+ #: admin.inc.php:193
140
  msgid "Title of popular posts: "
141
  msgstr "Les en-têtes des messages populaires"
142
 
143
+ #: admin.inc.php:196
144
  msgid "Title of daily popular posts: "
145
  msgstr "Les en-têtes des messages populaires journaliers"
146
 
147
+ #: admin.inc.php:199
148
+ msgid "When there are no posts, what should be shown?"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:203
152
+ msgid "Blank Output"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:207
156
+ msgid "Display:"
157
+ msgstr ""
158
+
159
+ #: admin.inc.php:211
160
  msgid "Show post excerpt in list?"
161
  msgstr "Afficher le fragment du message dans la liste?"
162
 
163
+ #: admin.inc.php:214
164
  msgid "Length of excerpt (in words): "
165
  msgstr "Longueur du fragment (mots):"
166
 
167
+ #: admin.inc.php:217
 
 
 
 
168
  msgid "Customize the output:"
169
  msgstr "Paramétrer la sortie:"
170
 
171
+ #: admin.inc.php:219
172
  msgid "HTML to display before the list of posts: "
173
  msgstr "HTML d'affichage avant la liste des messages:"
174
 
175
+ #: admin.inc.php:222
176
  msgid "HTML to display before each list item: "
177
  msgstr "HTML d'affichage avant chaque élément de la liste:"
178
 
180
  msgid "HTML to display after each list item: "
181
  msgstr "HTML d'affichage après chaque élément de la liste:"
182
 
183
+ #: admin.inc.php:228
184
  msgid "HTML to display after the list of posts: "
185
  msgstr "HTML d'affichage après la liste des messages:"
186
 
187
+ #: admin.inc.php:231
188
  msgid "Post thumbnail options:"
189
  msgstr "Options thumbnail des messages:"
190
 
191
+ #: admin.inc.php:233
192
+ msgid "Location of post thumbnail:"
193
+ msgstr ""
194
+
195
+ #: admin.inc.php:237
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
198
 
199
+ #: admin.inc.php:241
200
  msgid "Display thumbnails inline with posts, after title"
201
  msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
202
 
203
+ #: admin.inc.php:245
204
  msgid "Display only thumbnails, no text"
205
  msgstr "Afficher uniquement le thumbnail, sans le texte"
206
 
207
+ #: admin.inc.php:249
208
  msgid "Do not display thumbnails, only text."
209
  msgstr "Ne pas afficher le thumbnail, uniquement le texte"
210
 
211
+ #: admin.inc.php:253
212
+ msgid "Maximum width of the thumbnail: "
213
+ msgstr ""
214
+
215
  #: admin.inc.php:256
216
+ msgid "Maximum height of the thumbnail: "
217
+ msgstr ""
218
+
219
+ #: admin.inc.php:259
220
+ msgid "Use timthumb to generate thumbnails? "
221
+ msgstr ""
222
+
223
+ #: admin.inc.php:260
224
+ msgid ""
225
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
226
+ "\">timthumb</a> will be used to generate thumbnails"
227
+ msgstr ""
228
+
229
+ #: admin.inc.php:262
230
+ #, fuzzy
231
+ msgid "Post thumbnail meta field name: "
232
+ msgstr "Options thumbnail des messages:"
233
 
234
  #: admin.inc.php:263
235
+ msgid ""
236
+ "The value of this field should contain the image source and is set in the "
237
+ "<em>Add New Post</em> screen"
238
+ msgstr ""
239
+
240
+ #: admin.inc.php:265
241
+ #, fuzzy
242
+ msgid ""
243
+ "If the postmeta is not set, then should the plugin extract the first image "
244
+ "from the post?"
245
+ msgstr ""
246
+ "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première "
247
+ "image du poste. Cela pourrait ralentir le chargement de votre poste, si la "
248
+ "première image de la résolution correspondante du fichier est de taille "
249
+ "supérieure"
250
 
251
  #: admin.inc.php:266
252
+ #, fuzzy
253
+ msgid ""
254
+ "This can slow down the loading of your page if the first image in the "
255
+ "related posts is large in file-size"
256
+ msgstr ""
257
+ "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première "
258
+ "image du poste. Cela pourrait ralentir le chargement de votre poste, si la "
259
+ "première image de la résolution correspondante du fichier est de taille "
260
+ "supérieure"
261
 
262
  #: admin.inc.php:268
263
+ msgid "Use default thumbnail? "
264
+ msgstr ""
265
 
266
+ #: admin.inc.php:269
267
+ msgid ""
268
+ "If checked, when no thumbnail is found, show a default one from the URL "
269
+ "below. If not checked and no thumbnail is found, no image will be shown."
270
+ msgstr ""
271
+ "S'il a été déterminé, que le thumbnail n'a pas été trouvé, afficher le "
272
+ "Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas "
273
+ "été retrouvé, ne pas afficher l'image."
274
 
275
+ #: admin.inc.php:271
276
+ msgid "Default thumbnail: "
277
+ msgstr ""
278
 
279
+ #: admin.inc.php:272
280
+ msgid ""
281
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
282
+ "then it will check the meta field. If this is not available, then it will "
283
+ "show the default image as specified above"
284
+ msgstr ""
285
+
286
+ #: admin.inc.php:278
287
+ msgid "Custom Styles"
288
+ msgstr ""
289
 
290
+ #: admin.inc.php:281
291
+ msgid "Custom CSS to add to header:"
292
+ msgstr ""
293
+
294
+ #: admin.inc.php:284
295
+ msgid ""
296
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
297
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
298
+ "available CSS classes to style."
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:289
302
+ msgid "Maintenance"
303
+ msgstr ""
304
+
305
+ #: admin.inc.php:292
306
+ msgid "Enable scheduled maintenance of daily tables:"
307
+ msgstr ""
308
+
309
+ #: admin.inc.php:294
310
+ msgid ""
311
+ "Over time the Daily Top 10 database grows in size, which reduces the "
312
+ "performance of the plugin. Cleaning the database at regular intervals could "
313
+ "improve performance, especially on high traffic blogs"
314
+ msgstr ""
315
+
316
+ #: admin.inc.php:297
317
+ msgid "Time to run maintenance"
318
+ msgstr ""
319
+
320
+ #: admin.inc.php:300
321
+ msgid "How often should the maintenance be run:"
322
+ msgstr ""
323
+
324
+ #: admin.inc.php:304
325
+ msgid "Daily"
326
+ msgstr ""
327
+
328
+ #: admin.inc.php:308
329
+ msgid "Weekly"
330
+ msgstr ""
331
+
332
+ #: admin.inc.php:312
333
+ msgid "Fortnightly"
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:316
337
+ msgid "Monthly"
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:325
341
+ msgid "The cron job has been scheduled. Maintenance will run "
342
+ msgstr ""
343
+
344
+ #: admin.inc.php:330
345
+ msgid "The cron job is missing. Please resave this page to add the job"
346
+ msgstr ""
347
+
348
+ #: admin.inc.php:335
349
+ msgid "Maintenance is turned off"
350
+ msgstr ""
351
+
352
+ #: admin.inc.php:343
353
  msgid "Reset count"
354
  msgstr "Réinitialiser le compteur"
355
 
356
+ #: admin.inc.php:346
357
+ msgid ""
358
+ "This cannot be reversed. Make sure that your database has been backed up "
359
+ "before proceeding"
360
+ msgstr ""
361
+ "Cette action ne peut être annulée. Assurez-vous que la base de données a été "
362
+ "sauvegardée avant de poursuivre."
363
+
364
+ #: admin.inc.php:349
365
+ #, fuzzy
366
+ msgid "Reset Popular Posts"
367
+ msgstr "Postes populaires"
368
 
369
+ #: admin.inc.php:349
370
  msgid "Are you sure you want to reset the popular posts?"
371
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
372
 
373
+ #: admin.inc.php:350
374
+ #, fuzzy
375
+ msgid "Reset Daily Popular Posts"
376
+ msgstr "Postes populaires journaliers"
377
+
378
+ #: admin.inc.php:350
379
  msgid "Are you sure you want to reset the daily popular posts?"
380
  msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
381
 
382
+ #: admin.inc.php:351
383
+ msgid "Clear duplicates"
384
+ msgstr ""
385
+
386
+ #: admin.inc.php:351
387
  msgid "This will delete the duplicate entries in the tables. Proceed?"
388
+ msgstr ""
389
+ "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
390
 
391
+ #: admin.inc.php:355
392
+ #, fuzzy
393
+ msgid "Save Options"
394
+ msgstr "Options:"
395
 
396
+ #: admin.inc.php:356
397
+ #, fuzzy
398
+ msgid "Default Options"
399
+ msgstr "Paramètres de sortie"
400
+
401
+ #: admin.inc.php:356
402
+ msgid "Do you want to set options to Default?"
403
+ msgstr "Définir les paramètres par défaut?"
404
 
405
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
406
+ msgid "Popular Posts"
407
+ msgstr "Postes populaires"
408
+
409
+ #: admin.inc.php:382
410
+ msgid "Daily Popular Posts"
411
+ msgstr "Postes populaires journaliers"
412
+
413
+ #: admin.inc.php:404
414
+ msgid "Support the development"
415
+ msgstr "Soutenir le projet"
416
+
417
+ #: admin.inc.php:412
418
+ msgid "Enter amount in USD: "
419
+ msgstr "Saisir le montant en dollars US"
420
+
421
+ #: admin.inc.php:416
422
+ msgid "Send your donation to the author of"
423
+ msgstr "Envoyer sa dotation à l'auteur"
424
+
425
+ #: admin.inc.php:422
426
+ msgid "Follow us on Facebook"
427
+ msgstr ""
428
+
429
+ #: admin.inc.php:426
430
+ #, fuzzy
431
+ msgid "Quick Links"
432
+ msgstr "Liens rapides"
433
+
434
+ #: admin.inc.php:428
435
+ #, fuzzy
436
+ msgid "Top 10 plugin page"
437
  msgstr "Page de plugin"
438
 
439
+ #: admin.inc.php:429
 
440
  msgid "Other plugins"
441
  msgstr "Autres plugins"
442
 
443
+ #: admin.inc.php:430
 
444
  msgid "Ajay's blog"
445
  msgstr "Blog Ajay"
446
 
447
+ #: admin.inc.php:431 top-10.php:583
 
 
448
  msgid "Support"
449
  msgstr "Service d'assistance"
450
 
451
+ #: admin.inc.php:432
 
452
  msgid "Follow @ajaydsouza on Twitter"
453
  msgstr "Follow @ajaydsouza sur Twitter"
454
 
455
+ #: admin.inc.php:436
 
456
  msgid "Recent developments"
457
  msgstr "Les derniers projets"
458
 
459
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
460
  msgid "Top 10"
461
  msgstr "Тоp 10"
462
 
463
+ #: admin.inc.php:575
464
  msgid "Results"
465
  msgstr "Résultats"
466
 
467
+ #: admin.inc.php:577 admin.inc.php:583
 
468
  msgid "of"
469
  msgstr "de, du, de la, des"
470
 
471
+ #: admin.inc.php:581
472
  msgid "Page"
473
  msgstr "Page"
474
 
475
+ #: admin.inc.php:595
476
  msgid "View Daily Popular Posts"
477
  msgstr "Voir les postes populaires journaliers"
478
 
479
+ #: admin.inc.php:599
480
  msgid "View Overall Popular Posts"
481
  msgstr "Voir tous les postes populaires"
482
 
483
+ #: admin.inc.php:603
484
  msgid "Results per-page:"
485
  msgstr "Résultats par page:"
486
 
487
+ #: admin.inc.php:627
488
  msgid "Previous"
489
  msgstr "Précédente"
490
 
491
+ #: admin.inc.php:645
492
  msgid "Next"
493
  msgstr "Suivante"
494
 
495
+ #: admin.inc.php:668
 
 
 
 
496
  msgid "Daily Popular"
497
  msgstr "Populaires journaliers"
498
 
499
+ #: admin.inc.php:679
500
  msgid "Total / Today's Views"
501
  msgstr "Total/aujourd'hui visionnages"
502
 
503
+ #: top-10.php:257
 
 
 
 
504
  msgid "Display the posts popular this week"
505
  msgstr "Afficher les postes populaires de la semaine"
506
 
507
+ #: top-10.php:271
508
+ msgid "Title"
509
+ msgstr ""
510
+
511
+ #: top-10.php:276
512
+ msgid "No. of posts"
513
+ msgstr ""
514
+
515
+ #: top-10.php:281
516
+ msgid "Overall"
517
+ msgstr ""
518
+
519
+ #: top-10.php:282
520
+ msgid "Custom time period (Enter below)"
521
+ msgstr ""
522
+
523
+ #: top-10.php:287
524
+ msgid "Range in number of days (applies only to custom option above)"
525
+ msgstr ""
526
+
527
+ #: top-10.php:291
528
+ #, fuzzy
529
+ msgid "Thumbnail options"
530
+ msgstr "Options thumbnail des messages:"
531
+
532
+ #: top-10.php:293
533
+ #, fuzzy
534
+ msgid "Thumbnails inline, before title"
535
+ msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
536
+
537
+ #: top-10.php:294
538
+ #, fuzzy
539
+ msgid "Thumbnails inline, after title"
540
+ msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
541
+
542
+ #: top-10.php:295
543
+ #, fuzzy
544
+ msgid "Only thumbnails, no text"
545
+ msgstr "Afficher uniquement le thumbnail, sans le texte"
546
+
547
+ #: top-10.php:296
548
+ #, fuzzy
549
+ msgid "No thumbnails, only text."
550
+ msgstr "Ne pas afficher le thumbnail, uniquement le texte"
551
+
552
+ #: top-10.php:301
553
+ #, fuzzy
554
+ msgid " Show excerpt?"
555
+ msgstr "Afficher le fragment du message dans la liste?"
556
+
557
+ #: top-10.php:367
558
  msgid "<h3>Popular Posts</h3>"
559
  msgstr "<h3>Postes populaires</h3>"
560
 
561
+ #: top-10.php:368
562
  msgid "<h3>Daily Popular</h3>"
563
  msgstr "<h3>Populaires Journaliers</h3>"
564
 
565
+ #: top-10.php:369
566
+ #, fuzzy
567
+ msgid "No top posts yet"
568
+ msgstr "Annuler le top 10 des enregistrements les plus populaires"
569
+
570
+ #: top-10.php:560
571
+ msgid "Once Weekly"
572
+ msgstr ""
573
+
574
+ #: top-10.php:561
575
+ msgid "Once Fortnightly"
576
+ msgstr ""
577
+
578
+ #: top-10.php:562
579
+ msgid "Once Monthly"
580
+ msgstr ""
581
+
582
+ #: top-10.php:582
583
  msgid "Settings"
584
  msgstr "Paramètres"
585
 
586
+ #: top-10.php:584
587
  msgid "Donate"
588
  msgstr "Conribuer"
589
 
590
+ #~ msgid "Tables cleaned of duplicate rows"
591
+ #~ msgstr "Supprimer les lignes répétitives du tableau"
592
+
593
+ #~ msgid "Display number of views on pages?"
594
+ #~ msgstr "Afficher le nombre des visionnages sur les pages?"
595
+
596
+ #~ msgid ""
597
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
598
+ #~ "added with the count"
599
+ #~ msgstr ""
600
+ #~ "Afficher les visionnages des pages dans le rédacteur de messages / pages "
601
+ #~ "de WP-Admin? Une colonne supplémentaire avec graphe est rajoutée"
602
+
603
+ #~ msgid ""
604
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
605
+ #~ msgstr "Afficher meta field thumbnail, doit pointer sur l'image initiale:"
606
+
607
+ #~ msgid "Thumbnail dimensions:"
608
+ #~ msgstr "Dimension thumbnail:"
609
+
610
+ #~ msgid "Max width: "
611
+ #~ msgstr "Largeur maximale:"
612
+
613
+ #~ msgid "Max height: "
614
+ #~ msgstr "Hauteur maximale:"
615
+
616
+ #~ msgid "Top 10 "
617
+ #~ msgstr "Тоp 10"
618
+
619
+ #~ msgid "Display the posts popular today"
620
+ #~ msgstr "Afficher les postes populaires aujourd'hui"
languages/tptn-ga_IR.mo CHANGED
Binary file
languages/tptn-ga_IR.po CHANGED
@@ -2,129 +2,177 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:43-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Irish\n"
13
- "X-Poedit-Country: IRELAND\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Roghanna shábháil go rathúil."
21
 
22
- #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Roghanna leagtha chun Réamhshocrú."
25
 
26
- #: admin.inc.php:73
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Teideal an post tóir:"
30
 
31
- #: admin.inc.php:79
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Teideal ar tóir an bpost:"
35
 
36
- #: admin.inc.php:86
37
- msgid "Tables cleaned of duplicate rows"
38
- msgstr ""
39
-
40
- #: admin.inc.php:98
41
- msgid "Options:"
42
- msgstr "roghanna"
43
-
44
  #: admin.inc.php:103
45
- msgid "Format to display the count in: "
46
- msgstr "Formáid a thaispeáint ar an comhaireamh i:"
47
 
48
- #: admin.inc.php:107
49
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
- msgstr "Bain úsáid as <code>% totalcount% </ cód> a chur ar taispeáint ar an líon iomlán agus <code>% dailycount% </ cód> a chur ar taispeáint ar an líon laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt 123 amanna, 23 cuairt inniu) </ cód>"
51
 
52
- #: admin.inc.php:110
53
  msgid "Number of popular posts to display: "
54
  msgstr "An líon post tóir a thaispeáint:"
55
 
56
- #: admin.inc.php:116
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
59
 
60
- #: admin.inc.php:123
61
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
- msgstr "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir Leathanaigh ar aghaidh a chur san áireamh."
 
 
 
 
 
 
 
 
63
 
64
- #: admin.inc.php:129
65
- msgid "Display number of views on posts?"
 
66
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
67
 
68
- #: admin.inc.php:135
69
- msgid "Display number of views on pages?"
70
- msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
 
 
 
 
 
71
 
72
- #: admin.inc.php:141
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
75
 
76
- #: admin.inc.php:147
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
79
 
80
- #: admin.inc.php:153
 
 
 
 
81
  #, fuzzy
82
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
- msgstr "Post Force laethúil 'liosta a bheith dinimiciúil? Úsáideann sé seo roghanna JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a luchtú leathanach"
 
 
 
 
 
84
 
85
- #: admin.inc.php:159
86
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
- msgstr "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? Tá colún breise curtha leo le líon"
88
 
89
- #: admin.inc.php:165
90
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
- msgstr "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
92
 
93
- #: admin.inc.php:169
 
 
 
 
 
 
 
 
 
94
  #, fuzzy
95
- msgid "Output Options:"
96
  msgstr "roghanna"
97
 
98
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Title of popular posts: "
100
  msgstr "Teideal an post tóir:"
101
 
102
- #: admin.inc.php:179
103
  msgid "Title of daily popular posts: "
104
  msgstr "Teideal ar tóir an bpost:"
105
 
106
- #: admin.inc.php:186
107
- msgid "Show post excerpt in list?"
108
  msgstr ""
109
 
110
- #: admin.inc.php:191
111
- msgid "Length of excerpt (in words): "
112
  msgstr ""
113
 
114
- #: admin.inc.php:195
115
- msgid "Exclude Categories: "
 
 
 
 
 
 
 
 
116
  msgstr ""
117
 
118
- #: admin.inc.php:210
119
  msgid "Customize the output:"
120
  msgstr ""
121
 
122
- #: admin.inc.php:213
123
  #, fuzzy
124
  msgid "HTML to display before the list of posts: "
125
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
126
 
127
- #: admin.inc.php:219
128
  #, fuzzy
129
  msgid "HTML to display before each list item: "
130
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
@@ -134,227 +182,409 @@ msgstr "Formáid a thaispeáint ar an comhaireamh i:"
134
  msgid "HTML to display after each list item: "
135
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
136
 
137
- #: admin.inc.php:231
138
  #, fuzzy
139
  msgid "HTML to display after the list of posts: "
140
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
141
 
142
- #: admin.inc.php:235
143
  msgid "Post thumbnail options:"
144
  msgstr ""
145
 
146
- #: admin.inc.php:239
 
 
 
 
147
  #, fuzzy
148
  msgid "Display thumbnails inline with posts, before title"
149
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
150
 
151
- #: admin.inc.php:243
152
  #, fuzzy
153
  msgid "Display thumbnails inline with posts, after title"
154
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
155
 
156
- #: admin.inc.php:247
157
  #, fuzzy
158
  msgid "Display only thumbnails, no text"
159
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
160
 
161
- #: admin.inc.php:251
162
  #, fuzzy
163
  msgid "Do not display thumbnails, only text."
164
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
165
 
 
 
 
 
166
  #: admin.inc.php:256
167
- msgid "Post thumbnail meta field (the meta should point to the image source): "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  msgstr ""
169
 
170
  #: admin.inc.php:263
171
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
 
 
 
 
 
 
 
 
172
  msgstr ""
173
 
174
  #: admin.inc.php:266
175
- msgid "Thumbnail dimensions:"
 
 
176
  msgstr ""
177
 
178
  #: admin.inc.php:268
179
- msgid "Max width: "
180
  msgstr ""
181
 
182
- #: admin.inc.php:273
183
- msgid "Max height: "
 
 
184
  msgstr ""
185
 
186
- #: admin.inc.php:277
187
- msgid "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."
188
  msgstr ""
189
 
190
- #: admin.inc.php:282
191
- msgid "Do you want to set options to Default?"
192
- msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
 
 
 
193
 
194
- #: admin.inc.php:285
195
- msgid "Reset count"
196
  msgstr ""
197
 
198
- #: admin.inc.php:288
199
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
200
  msgstr ""
201
 
202
- #: admin.inc.php:291
203
- msgid "Are you sure you want to reset the popular posts?"
 
 
 
 
 
 
 
204
  msgstr ""
205
 
206
  #: admin.inc.php:292
207
- msgid "Are you sure you want to reset the daily popular posts?"
208
  msgstr ""
209
 
210
- #: admin.inc.php:293
211
- msgid "This will delete the duplicate entries in the tables. Proceed?"
 
 
 
 
 
 
 
212
  msgstr ""
213
 
214
  #: admin.inc.php:300
215
- #: admin.inc.php:360
216
- msgid "Quick links"
217
  msgstr ""
218
 
219
- #: admin.inc.php:302
220
- #: admin.inc.php:362
221
- #, fuzzy
222
- msgid "Top 10 "
223
- msgstr "Top 10"
224
 
225
- #: admin.inc.php:302
226
- #: admin.inc.php:362
227
- msgid "plugin page"
228
  msgstr ""
229
 
230
- #: admin.inc.php:303
231
- #: admin.inc.php:363
232
- msgid "Other plugins"
233
  msgstr ""
234
 
235
- #: admin.inc.php:304
236
- #: admin.inc.php:364
237
- msgid "Ajay's blog"
238
  msgstr ""
239
 
240
- #: admin.inc.php:305
241
- #: admin.inc.php:365
242
- #: top-10.php:515
243
- msgid "Support"
244
  msgstr ""
245
 
246
- #: admin.inc.php:306
247
- #: admin.inc.php:366
248
- msgid "Follow @ajaydsouza on Twitter"
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgstr ""
250
 
251
- #: admin.inc.php:310
252
- #: admin.inc.php:370
253
  #, fuzzy
254
- msgid "Recent developments"
255
- msgstr "Tacú le Forbairt"
256
 
257
- #: admin.inc.php:315
258
- #: admin.inc.php:375
 
 
 
259
  #, fuzzy
260
- msgid "Support the development"
261
- msgstr "Tacú le Forbairt"
262
 
263
- #: admin.inc.php:323
264
- #: admin.inc.php:383
265
- msgid "Enter amount in USD: "
266
  msgstr ""
267
 
268
- #: admin.inc.php:327
269
- #: admin.inc.php:387
270
- msgid "Send your donation to the author of"
271
  msgstr ""
272
 
273
- #: admin.inc.php:347
274
- #: admin.inc.php:414
275
- #: admin.inc.php:618
276
- #: top-10.php:257
277
- #: top-10.php:273
278
- #: top-10.php:445
279
- #: top-10.php:448
 
 
 
 
 
 
 
 
 
 
 
 
280
  msgid "Popular Posts"
281
  msgstr "Poist Coitianta"
282
 
283
- #: admin.inc.php:347
284
  msgid "Daily Popular Posts"
285
  msgstr "Poist Coitianta Laethúil"
286
 
 
 
 
 
 
287
  #: admin.inc.php:412
288
- #: admin.inc.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "Top 10"
290
  msgstr "Top 10"
291
 
292
- #: admin.inc.php:526
293
  msgid "Results"
294
  msgstr "torthaí"
295
 
296
- #: admin.inc.php:528
297
- #: admin.inc.php:534
298
  msgid "of"
299
  msgstr "de"
300
 
301
- #: admin.inc.php:532
302
  msgid "Page"
303
  msgstr "Leathanach"
304
 
305
- #: admin.inc.php:546
306
  msgid "View Daily Popular Posts"
307
  msgstr "Féach ar Poist sa lá Coitianta"
308
 
309
- #: admin.inc.php:550
310
  msgid "View Overall Popular Posts"
311
  msgstr "Féach ar Poist Coitianta Foriomlán"
312
 
313
- #: admin.inc.php:554
314
  msgid "Results per-page:"
315
  msgstr "Torthaí in aghaidh an-leathanach:"
316
 
317
- #: admin.inc.php:578
318
  msgid "Previous"
319
  msgstr "roimhe Seo"
320
 
321
- #: admin.inc.php:596
322
  msgid "Next"
323
  msgstr "Ar Aghaidh"
324
 
325
- #: admin.inc.php:619
326
- #: top-10.php:219
327
- #: top-10.php:235
328
- #: top-10.php:446
329
- #: top-10.php:449
330
  msgid "Daily Popular"
331
  msgstr "laethúil Coitianta"
332
 
333
- #: admin.inc.php:630
334
  msgid "Total / Today's Views"
335
  msgstr "laethúil Coitianta"
336
 
337
- #: top-10.php:218
338
- msgid "Display the posts popular today"
339
  msgstr ""
340
 
341
- #: top-10.php:256
342
- msgid "Display the posts popular this week"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgstr ""
344
 
345
- #: top-10.php:286
346
  msgid "<h3>Popular Posts</h3>"
347
  msgstr "<h3>Poist Coitianta </ h3>"
348
 
349
- #: top-10.php:287
350
  msgid "<h3>Daily Popular</h3>"
351
  msgstr "<h3> laethúil Coitianta </ h3>"
352
 
353
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  msgid "Settings"
355
  msgstr ""
356
 
357
- #: top-10.php:516
358
  msgid "Donate"
359
  msgstr ""
360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
9
+ "Language: ga_IE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Roghanna shábháil go rathúil."
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Roghanna leagtha chun Réamhshocrú."
24
 
25
+ #: admin.inc.php:90
26
  #, fuzzy
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Teideal an post tóir:"
29
 
30
+ #: admin.inc.php:96
31
  #, fuzzy
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Teideal ar tóir an bpost:"
34
 
 
 
 
 
 
 
 
 
35
  #: admin.inc.php:103
36
+ msgid "Duplicate rows cleaned from tables"
37
+ msgstr ""
38
 
39
+ #: admin.inc.php:124
40
+ msgid "General options"
41
+ msgstr ""
42
 
43
+ #: admin.inc.php:127
44
  msgid "Number of popular posts to display: "
45
  msgstr "An líon post tóir a thaispeáint:"
46
 
47
+ #: admin.inc.php:130
48
  msgid "Daily Popular should contain views of how many days? "
49
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
50
 
51
+ #: admin.inc.php:133
52
+ msgid ""
53
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
+ "continue to be counted."
55
+ msgstr ""
56
+ "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir "
57
+ "Leathanaigh ar aghaidh a chur san áireamh."
58
+
59
+ #: admin.inc.php:136
60
+ msgid "Exclude Categories: "
61
+ msgstr ""
62
 
63
+ #: admin.inc.php:154
64
+ #, fuzzy
65
+ msgid "Display number of views on:"
66
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
67
 
68
+ #: admin.inc.php:155
69
+ msgid "Posts"
70
+ msgstr ""
71
+
72
+ #: admin.inc.php:156
73
+ #, fuzzy
74
+ msgid "Pages"
75
+ msgstr "Leathanach"
76
 
77
+ #: admin.inc.php:159
78
  msgid "Track visits of authors on their own posts?"
79
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
80
 
81
+ #: admin.inc.php:163
82
  msgid "Display number of page views in popular lists?"
83
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
84
 
85
+ #: admin.inc.php:167
86
+ msgid "Force daily posts' list to be dynamic?"
87
+ msgstr ""
88
+
89
+ #: admin.inc.php:169
90
  #, fuzzy
91
+ msgid ""
92
+ "This option uses JavaScript to load the post and can increase your page load "
93
+ "time"
94
+ msgstr ""
95
+ "Post Force laethúil 'liosta a bheith dinimiciúil? Úsáideann sé seo roghanna "
96
+ "JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a "
97
+ "luchtú leathanach"
98
 
99
+ #: admin.inc.php:172
100
+ msgid "Display page views on Posts > All Posts in Admin"
101
+ msgstr ""
102
 
103
+ #: admin.inc.php:176
104
+ msgid "Link to Top 10 plugin page"
105
+ msgstr ""
106
 
107
+ #: admin.inc.php:178
108
+ #, fuzzy
109
+ msgid ""
110
+ "A link to the plugin is added as an extra list item to the list of popular "
111
+ "posts"
112
+ msgstr ""
113
+ "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta "
114
+ "de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
115
+
116
+ #: admin.inc.php:185
117
  #, fuzzy
118
+ msgid "Output Options"
119
  msgstr "roghanna"
120
 
121
+ #: admin.inc.php:188
122
+ msgid "Format to display the count in: "
123
+ msgstr "Formáid a thaispeáint ar an comhaireamh i:"
124
+
125
+ #: admin.inc.php:191
126
+ #, fuzzy
127
+ msgid ""
128
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
129
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
130
+ "display the overall count across all posts on the blog. e.g. the default "
131
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
132
+ msgstr ""
133
+ "Bain úsáid as <code>% totalcount% </ cód> a chur ar taispeáint ar an líon "
134
+ "iomlán agus <code>% dailycount% </ cód> a chur ar taispeáint ar an líon "
135
+ "laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt "
136
+ "123 amanna, 23 cuairt inniu) </ cód>"
137
+
138
+ #: admin.inc.php:193
139
  msgid "Title of popular posts: "
140
  msgstr "Teideal an post tóir:"
141
 
142
+ #: admin.inc.php:196
143
  msgid "Title of daily popular posts: "
144
  msgstr "Teideal ar tóir an bpost:"
145
 
146
+ #: admin.inc.php:199
147
+ msgid "When there are no posts, what should be shown?"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:203
151
+ msgid "Blank Output"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:207
155
+ msgid "Display:"
156
+ msgstr ""
157
+
158
+ #: admin.inc.php:211
159
+ msgid "Show post excerpt in list?"
160
+ msgstr ""
161
+
162
+ #: admin.inc.php:214
163
+ msgid "Length of excerpt (in words): "
164
  msgstr ""
165
 
166
+ #: admin.inc.php:217
167
  msgid "Customize the output:"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:219
171
  #, fuzzy
172
  msgid "HTML to display before the list of posts: "
173
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
174
 
175
+ #: admin.inc.php:222
176
  #, fuzzy
177
  msgid "HTML to display before each list item: "
178
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
182
  msgid "HTML to display after each list item: "
183
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
184
 
185
+ #: admin.inc.php:228
186
  #, fuzzy
187
  msgid "HTML to display after the list of posts: "
188
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
189
 
190
+ #: admin.inc.php:231
191
  msgid "Post thumbnail options:"
192
  msgstr ""
193
 
194
+ #: admin.inc.php:233
195
+ msgid "Location of post thumbnail:"
196
+ msgstr ""
197
+
198
+ #: admin.inc.php:237
199
  #, fuzzy
200
  msgid "Display thumbnails inline with posts, before title"
201
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
202
 
203
+ #: admin.inc.php:241
204
  #, fuzzy
205
  msgid "Display thumbnails inline with posts, after title"
206
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
207
 
208
+ #: admin.inc.php:245
209
  #, fuzzy
210
  msgid "Display only thumbnails, no text"
211
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
212
 
213
+ #: admin.inc.php:249
214
  #, fuzzy
215
  msgid "Do not display thumbnails, only text."
216
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
217
 
218
+ #: admin.inc.php:253
219
+ msgid "Maximum width of the thumbnail: "
220
+ msgstr ""
221
+
222
  #: admin.inc.php:256
223
+ msgid "Maximum height of the thumbnail: "
224
+ msgstr ""
225
+
226
+ #: admin.inc.php:259
227
+ msgid "Use timthumb to generate thumbnails? "
228
+ msgstr ""
229
+
230
+ #: admin.inc.php:260
231
+ msgid ""
232
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
233
+ "\">timthumb</a> will be used to generate thumbnails"
234
+ msgstr ""
235
+
236
+ #: admin.inc.php:262
237
+ msgid "Post thumbnail meta field name: "
238
  msgstr ""
239
 
240
  #: admin.inc.php:263
241
+ msgid ""
242
+ "The value of this field should contain the image source and is set in the "
243
+ "<em>Add New Post</em> screen"
244
+ msgstr ""
245
+
246
+ #: admin.inc.php:265
247
+ msgid ""
248
+ "If the postmeta is not set, then should the plugin extract the first image "
249
+ "from the post?"
250
  msgstr ""
251
 
252
  #: admin.inc.php:266
253
+ msgid ""
254
+ "This can slow down the loading of your page if the first image in the "
255
+ "related posts is large in file-size"
256
  msgstr ""
257
 
258
  #: admin.inc.php:268
259
+ msgid "Use default thumbnail? "
260
  msgstr ""
261
 
262
+ #: admin.inc.php:269
263
+ msgid ""
264
+ "If checked, when no thumbnail is found, show a default one from the URL "
265
+ "below. If not checked and no thumbnail is found, no image will be shown."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:271
269
+ msgid "Default thumbnail: "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:272
273
+ msgid ""
274
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
275
+ "then it will check the meta field. If this is not available, then it will "
276
+ "show the default image as specified above"
277
+ msgstr ""
278
 
279
+ #: admin.inc.php:278
280
+ msgid "Custom Styles"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:281
284
+ msgid "Custom CSS to add to header:"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:284
288
+ msgid ""
289
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
290
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
291
+ "available CSS classes to style."
292
+ msgstr ""
293
+
294
+ #: admin.inc.php:289
295
+ msgid "Maintenance"
296
  msgstr ""
297
 
298
  #: admin.inc.php:292
299
+ msgid "Enable scheduled maintenance of daily tables:"
300
  msgstr ""
301
 
302
+ #: admin.inc.php:294
303
+ msgid ""
304
+ "Over time the Daily Top 10 database grows in size, which reduces the "
305
+ "performance of the plugin. Cleaning the database at regular intervals could "
306
+ "improve performance, especially on high traffic blogs"
307
+ msgstr ""
308
+
309
+ #: admin.inc.php:297
310
+ msgid "Time to run maintenance"
311
  msgstr ""
312
 
313
  #: admin.inc.php:300
314
+ msgid "How often should the maintenance be run:"
 
315
  msgstr ""
316
 
317
+ #: admin.inc.php:304
318
+ msgid "Daily"
319
+ msgstr ""
 
 
320
 
321
+ #: admin.inc.php:308
322
+ msgid "Weekly"
 
323
  msgstr ""
324
 
325
+ #: admin.inc.php:312
326
+ msgid "Fortnightly"
 
327
  msgstr ""
328
 
329
+ #: admin.inc.php:316
330
+ msgid "Monthly"
 
331
  msgstr ""
332
 
333
+ #: admin.inc.php:325
334
+ msgid "The cron job has been scheduled. Maintenance will run "
 
 
335
  msgstr ""
336
 
337
+ #: admin.inc.php:330
338
+ msgid "The cron job is missing. Please resave this page to add the job"
339
+ msgstr ""
340
+
341
+ #: admin.inc.php:335
342
+ msgid "Maintenance is turned off"
343
+ msgstr ""
344
+
345
+ #: admin.inc.php:343
346
+ msgid "Reset count"
347
+ msgstr ""
348
+
349
+ #: admin.inc.php:346
350
+ msgid ""
351
+ "This cannot be reversed. Make sure that your database has been backed up "
352
+ "before proceeding"
353
  msgstr ""
354
 
355
+ #: admin.inc.php:349
 
356
  #, fuzzy
357
+ msgid "Reset Popular Posts"
358
+ msgstr "Poist Coitianta"
359
 
360
+ #: admin.inc.php:349
361
+ msgid "Are you sure you want to reset the popular posts?"
362
+ msgstr ""
363
+
364
+ #: admin.inc.php:350
365
  #, fuzzy
366
+ msgid "Reset Daily Popular Posts"
367
+ msgstr "Poist Coitianta Laethúil"
368
 
369
+ #: admin.inc.php:350
370
+ msgid "Are you sure you want to reset the daily popular posts?"
 
371
  msgstr ""
372
 
373
+ #: admin.inc.php:351
374
+ msgid "Clear duplicates"
 
375
  msgstr ""
376
 
377
+ #: admin.inc.php:351
378
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
379
+ msgstr ""
380
+
381
+ #: admin.inc.php:355
382
+ #, fuzzy
383
+ msgid "Save Options"
384
+ msgstr "roghanna"
385
+
386
+ #: admin.inc.php:356
387
+ #, fuzzy
388
+ msgid "Default Options"
389
+ msgstr "roghanna"
390
+
391
+ #: admin.inc.php:356
392
+ msgid "Do you want to set options to Default?"
393
+ msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
394
+
395
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
396
  msgid "Popular Posts"
397
  msgstr "Poist Coitianta"
398
 
399
+ #: admin.inc.php:382
400
  msgid "Daily Popular Posts"
401
  msgstr "Poist Coitianta Laethúil"
402
 
403
+ #: admin.inc.php:404
404
+ #, fuzzy
405
+ msgid "Support the development"
406
+ msgstr "Tacú le Forbairt"
407
+
408
  #: admin.inc.php:412
409
+ msgid "Enter amount in USD: "
410
+ msgstr ""
411
+
412
+ #: admin.inc.php:416
413
+ msgid "Send your donation to the author of"
414
+ msgstr ""
415
+
416
+ #: admin.inc.php:422
417
+ msgid "Follow us on Facebook"
418
+ msgstr ""
419
+
420
+ #: admin.inc.php:426
421
+ msgid "Quick Links"
422
+ msgstr ""
423
+
424
+ #: admin.inc.php:428
425
+ msgid "Top 10 plugin page"
426
+ msgstr ""
427
+
428
+ #: admin.inc.php:429
429
+ msgid "Other plugins"
430
+ msgstr ""
431
+
432
+ #: admin.inc.php:430
433
+ msgid "Ajay's blog"
434
+ msgstr ""
435
+
436
+ #: admin.inc.php:431 top-10.php:583
437
+ msgid "Support"
438
+ msgstr ""
439
+
440
+ #: admin.inc.php:432
441
+ msgid "Follow @ajaydsouza on Twitter"
442
+ msgstr ""
443
+
444
+ #: admin.inc.php:436
445
+ #, fuzzy
446
+ msgid "Recent developments"
447
+ msgstr "Tacú le Forbairt"
448
+
449
+ #: admin.inc.php:459 admin.inc.php:461
450
  msgid "Top 10"
451
  msgstr "Top 10"
452
 
453
+ #: admin.inc.php:575
454
  msgid "Results"
455
  msgstr "torthaí"
456
 
457
+ #: admin.inc.php:577 admin.inc.php:583
 
458
  msgid "of"
459
  msgstr "de"
460
 
461
+ #: admin.inc.php:581
462
  msgid "Page"
463
  msgstr "Leathanach"
464
 
465
+ #: admin.inc.php:595
466
  msgid "View Daily Popular Posts"
467
  msgstr "Féach ar Poist sa lá Coitianta"
468
 
469
+ #: admin.inc.php:599
470
  msgid "View Overall Popular Posts"
471
  msgstr "Féach ar Poist Coitianta Foriomlán"
472
 
473
+ #: admin.inc.php:603
474
  msgid "Results per-page:"
475
  msgstr "Torthaí in aghaidh an-leathanach:"
476
 
477
+ #: admin.inc.php:627
478
  msgid "Previous"
479
  msgstr "roimhe Seo"
480
 
481
+ #: admin.inc.php:645
482
  msgid "Next"
483
  msgstr "Ar Aghaidh"
484
 
485
+ #: admin.inc.php:668
 
 
 
 
486
  msgid "Daily Popular"
487
  msgstr "laethúil Coitianta"
488
 
489
+ #: admin.inc.php:679
490
  msgid "Total / Today's Views"
491
  msgstr "laethúil Coitianta"
492
 
493
+ #: top-10.php:257
494
+ msgid "Display the posts popular this week"
495
  msgstr ""
496
 
497
+ #: top-10.php:271
498
+ msgid "Title"
499
+ msgstr ""
500
+
501
+ #: top-10.php:276
502
+ msgid "No. of posts"
503
+ msgstr ""
504
+
505
+ #: top-10.php:281
506
+ msgid "Overall"
507
+ msgstr ""
508
+
509
+ #: top-10.php:282
510
+ msgid "Custom time period (Enter below)"
511
+ msgstr ""
512
+
513
+ #: top-10.php:287
514
+ msgid "Range in number of days (applies only to custom option above)"
515
+ msgstr ""
516
+
517
+ #: top-10.php:291
518
+ msgid "Thumbnail options"
519
+ msgstr ""
520
+
521
+ #: top-10.php:293
522
+ #, fuzzy
523
+ msgid "Thumbnails inline, before title"
524
+ msgstr "Taispeáin líon na dtuairimí ar phoist?"
525
+
526
+ #: top-10.php:294
527
+ #, fuzzy
528
+ msgid "Thumbnails inline, after title"
529
+ msgstr "Taispeáin líon na dtuairimí ar phoist?"
530
+
531
+ #: top-10.php:295
532
+ #, fuzzy
533
+ msgid "Only thumbnails, no text"
534
+ msgstr "Taispeáin líon na dtuairimí ar phoist?"
535
+
536
+ #: top-10.php:296
537
+ #, fuzzy
538
+ msgid "No thumbnails, only text."
539
+ msgstr "Taispeáin líon na dtuairimí ar phoist?"
540
+
541
+ #: top-10.php:301
542
+ msgid " Show excerpt?"
543
  msgstr ""
544
 
545
+ #: top-10.php:367
546
  msgid "<h3>Popular Posts</h3>"
547
  msgstr "<h3>Poist Coitianta </ h3>"
548
 
549
+ #: top-10.php:368
550
  msgid "<h3>Daily Popular</h3>"
551
  msgstr "<h3> laethúil Coitianta </ h3>"
552
 
553
+ #: top-10.php:369
554
+ #, fuzzy
555
+ msgid "No top posts yet"
556
+ msgstr "Teideal an post tóir:"
557
+
558
+ #: top-10.php:560
559
+ msgid "Once Weekly"
560
+ msgstr ""
561
+
562
+ #: top-10.php:561
563
+ msgid "Once Fortnightly"
564
+ msgstr ""
565
+
566
+ #: top-10.php:562
567
+ msgid "Once Monthly"
568
+ msgstr ""
569
+
570
+ #: top-10.php:582
571
  msgid "Settings"
572
  msgstr ""
573
 
574
+ #: top-10.php:584
575
  msgid "Donate"
576
  msgstr ""
577
 
578
+ #~ msgid "Display number of views on pages?"
579
+ #~ msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
580
+
581
+ #~ msgid ""
582
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
583
+ #~ "added with the count"
584
+ #~ msgstr ""
585
+ #~ "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? "
586
+ #~ "Tá colún breise curtha leo le líon"
587
+
588
+ #, fuzzy
589
+ #~ msgid "Top 10 "
590
+ #~ msgstr "Top 10"
languages/tptn-hi_IN.mo CHANGED
Binary file
languages/tptn-hi_IN.po CHANGED
@@ -2,129 +2,175 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:43-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Hindi\n"
13
- "X-Poedit-Country: INDIA\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: ../\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin.inc.php:58
20
  msgid "Options saved successfully."
21
  msgstr "विकल्प सफलतापूर्वक बचाया."
22
 
23
- #: admin.inc.php:67
24
  msgid "Options set to Default."
25
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
26
 
27
- #: admin.inc.php:73
28
  #, fuzzy
29
  msgid "Top 10 popular posts reset"
30
  msgstr "लोकप्रिय पदों का शीर्षक:"
31
 
32
- #: admin.inc.php:79
33
  #, fuzzy
34
  msgid "Top 10 daily popular posts reset"
35
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
36
 
37
- #: admin.inc.php:86
38
- msgid "Tables cleaned of duplicate rows"
39
- msgstr ""
40
-
41
- #: admin.inc.php:98
42
- msgid "Options:"
43
- msgstr "विकल्प हैं:"
44
-
45
  #: admin.inc.php:103
46
- msgid "Format to display the count in: "
47
- msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
48
 
49
- #: admin.inc.php:107
50
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
51
- msgstr "का प्रयोग करें <code>% totalcount% </ कोड> कुल संख्या प्रदर्शित करने के लिए और <code>% dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> (दौरा 123 बार, 23 का दौरा आज) </ कोड>"
52
 
53
- #: admin.inc.php:110
54
  msgid "Number of popular posts to display: "
55
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
56
 
57
- #: admin.inc.php:116
58
  msgid "Daily Popular should contain views of how many days? "
59
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
60
 
61
- #: admin.inc.php:123
62
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
63
- msgstr "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी रहेगी."
 
 
 
 
 
 
 
 
64
 
65
- #: admin.inc.php:129
66
- msgid "Display number of views on posts?"
 
67
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
68
 
69
- #: admin.inc.php:135
70
- msgid "Display number of views on pages?"
71
- msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
 
 
 
 
 
72
 
73
- #: admin.inc.php:141
74
  msgid "Track visits of authors on their own posts?"
75
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
76
 
77
- #: admin.inc.php:147
78
  msgid "Display number of page views in popular lists?"
79
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
80
 
81
- #: admin.inc.php:153
 
 
 
 
82
  #, fuzzy
83
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
84
- msgstr "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
 
 
 
 
85
 
86
- #: admin.inc.php:159
87
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
88
- msgstr "प्रदर्शन संपादित करें पदों पर पृष्ठ विचार / WP में पृष्ठों-व्यवस्थापक? एक अतिरिक्त कॉलम गिनती के साथ जोड़ दिया है"
89
 
90
- #: admin.inc.php:165
91
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
92
- msgstr "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
93
 
94
- #: admin.inc.php:169
 
 
 
 
 
 
 
 
 
95
  #, fuzzy
96
- msgid "Output Options:"
97
  msgstr "विकल्प हैं:"
98
 
99
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Title of popular posts: "
101
  msgstr "लोकप्रिय पदों का शीर्षक:"
102
 
103
- #: admin.inc.php:179
104
  msgid "Title of daily popular posts: "
105
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
106
 
107
- #: admin.inc.php:186
108
- msgid "Show post excerpt in list?"
109
  msgstr ""
110
 
111
- #: admin.inc.php:191
112
- msgid "Length of excerpt (in words): "
113
  msgstr ""
114
 
115
- #: admin.inc.php:195
116
- msgid "Exclude Categories: "
 
 
 
 
 
 
 
 
117
  msgstr ""
118
 
119
- #: admin.inc.php:210
120
  msgid "Customize the output:"
121
  msgstr ""
122
 
123
- #: admin.inc.php:213
124
  msgid "HTML to display before the list of posts: "
125
  msgstr ""
126
 
127
- #: admin.inc.php:219
128
  msgid "HTML to display before each list item: "
129
  msgstr ""
130
 
@@ -133,226 +179,407 @@ msgstr ""
133
  msgid "HTML to display after each list item: "
134
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
135
 
136
- #: admin.inc.php:231
137
  msgid "HTML to display after the list of posts: "
138
  msgstr ""
139
 
140
- #: admin.inc.php:235
141
  msgid "Post thumbnail options:"
142
  msgstr ""
143
 
144
- #: admin.inc.php:239
 
 
 
 
145
  #, fuzzy
146
  msgid "Display thumbnails inline with posts, before title"
147
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
148
 
149
- #: admin.inc.php:243
150
  #, fuzzy
151
  msgid "Display thumbnails inline with posts, after title"
152
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
153
 
154
- #: admin.inc.php:247
155
  msgid "Display only thumbnails, no text"
156
  msgstr ""
157
 
158
- #: admin.inc.php:251
159
  msgid "Do not display thumbnails, only text."
160
  msgstr ""
161
 
 
 
 
 
162
  #: admin.inc.php:256
163
- msgid "Post thumbnail meta field (the meta should point to the image source): "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgstr ""
165
 
166
  #: admin.inc.php:263
167
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
 
 
 
 
 
 
 
 
168
  msgstr ""
169
 
170
  #: admin.inc.php:266
171
- msgid "Thumbnail dimensions:"
 
 
172
  msgstr ""
173
 
174
  #: admin.inc.php:268
175
- msgid "Max width: "
176
  msgstr ""
177
 
178
- #: admin.inc.php:273
179
- msgid "Max height: "
 
 
180
  msgstr ""
181
 
182
- #: admin.inc.php:277
183
- msgid "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."
184
  msgstr ""
185
 
186
- #: admin.inc.php:282
187
- msgid "Do you want to set options to Default?"
188
- msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
 
 
 
189
 
190
- #: admin.inc.php:285
191
- msgid "Reset count"
192
  msgstr ""
193
 
194
- #: admin.inc.php:288
195
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
196
  msgstr ""
197
 
198
- #: admin.inc.php:291
199
- msgid "Are you sure you want to reset the popular posts?"
 
 
 
 
 
 
 
200
  msgstr ""
201
 
202
  #: admin.inc.php:292
203
- msgid "Are you sure you want to reset the daily popular posts?"
204
  msgstr ""
205
 
206
- #: admin.inc.php:293
207
- msgid "This will delete the duplicate entries in the tables. Proceed?"
 
 
 
 
 
 
 
208
  msgstr ""
209
 
210
  #: admin.inc.php:300
211
- #: admin.inc.php:360
212
- msgid "Quick links"
213
  msgstr ""
214
 
215
- #: admin.inc.php:302
216
- #: admin.inc.php:362
217
- #, fuzzy
218
- msgid "Top 10 "
219
- msgstr "शीर्ष 10"
220
 
221
- #: admin.inc.php:302
222
- #: admin.inc.php:362
223
- msgid "plugin page"
224
  msgstr ""
225
 
226
- #: admin.inc.php:303
227
- #: admin.inc.php:363
228
- msgid "Other plugins"
229
  msgstr ""
230
 
231
- #: admin.inc.php:304
232
- #: admin.inc.php:364
233
- msgid "Ajay's blog"
234
  msgstr ""
235
 
236
- #: admin.inc.php:305
237
- #: admin.inc.php:365
238
- #: top-10.php:515
239
- msgid "Support"
240
  msgstr ""
241
 
242
- #: admin.inc.php:306
243
- #: admin.inc.php:366
244
- msgid "Follow @ajaydsouza on Twitter"
245
  msgstr ""
246
 
247
- #: admin.inc.php:310
248
- #: admin.inc.php:370
249
- msgid "Recent developments"
 
 
 
250
  msgstr ""
251
 
252
- #: admin.inc.php:315
253
- #: admin.inc.php:375
 
 
 
 
 
254
  #, fuzzy
255
- msgid "Support the development"
256
- msgstr "समर्थन विकास"
257
 
258
- #: admin.inc.php:323
259
- #: admin.inc.php:383
260
- msgid "Enter amount in USD: "
261
  msgstr ""
262
 
263
- #: admin.inc.php:327
264
- #: admin.inc.php:387
265
- msgid "Send your donation to the author of"
 
 
 
 
266
  msgstr ""
267
 
268
- #: admin.inc.php:347
269
- #: admin.inc.php:414
270
- #: admin.inc.php:618
271
- #: top-10.php:257
272
- #: top-10.php:273
273
- #: top-10.php:445
274
- #: top-10.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  msgid "Popular Posts"
276
  msgstr "लोकप्रिय पोस्ट्स "
277
 
278
- #: admin.inc.php:347
279
  msgid "Daily Popular Posts"
280
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
281
 
 
 
 
 
 
282
  #: admin.inc.php:412
283
- #: admin.inc.php:414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  msgid "Top 10"
285
  msgstr "शीर्ष 10"
286
 
287
- #: admin.inc.php:526
288
  msgid "Results"
289
  msgstr "परिणाम"
290
 
291
- #: admin.inc.php:528
292
- #: admin.inc.php:534
293
  msgid "of"
294
  msgstr "का"
295
 
296
- #: admin.inc.php:532
297
  msgid "Page"
298
  msgstr "पृष्ठ"
299
 
300
- #: admin.inc.php:546
301
  msgid "View Daily Popular Posts"
302
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
303
 
304
- #: admin.inc.php:550
305
  msgid "View Overall Popular Posts"
306
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
307
 
308
- #: admin.inc.php:554
309
  msgid "Results per-page:"
310
  msgstr "प्रति परिणाम पृष्ठ:"
311
 
312
- #: admin.inc.php:578
313
  msgid "Previous"
314
  msgstr "पिछला"
315
 
316
- #: admin.inc.php:596
317
  msgid "Next"
318
  msgstr "अगला"
319
 
320
- #: admin.inc.php:619
321
- #: top-10.php:219
322
- #: top-10.php:235
323
- #: top-10.php:446
324
- #: top-10.php:449
325
  msgid "Daily Popular"
326
  msgstr "दैनिक लोकप्रिय"
327
 
328
- #: admin.inc.php:630
329
  msgid "Total / Today's Views"
330
  msgstr "कुल / आज दर्शाव"
331
 
332
- #: top-10.php:218
333
- msgid "Display the posts popular today"
334
  msgstr ""
335
 
336
- #: top-10.php:256
337
- msgid "Display the posts popular this week"
338
  msgstr ""
339
 
340
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  msgid "<h3>Popular Posts</h3>"
342
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
343
 
344
- #: top-10.php:287
345
  msgid "<h3>Daily Popular</h3>"
346
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
347
 
348
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  msgid "Settings"
350
  msgstr ""
351
 
352
- #: top-10.php:516
353
  msgid "Donate"
354
  msgstr ""
355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  #~ msgid "If you find "
357
  #~ msgstr "यदि आप पाते हैं"
358
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
9
+ "Language: hi_IN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-SourceCharset: utf-8\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:75
19
  msgid "Options saved successfully."
20
  msgstr "विकल्प सफलतापूर्वक बचाया."
21
 
22
+ #: admin.inc.php:84
23
  msgid "Options set to Default."
24
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
25
 
26
+ #: admin.inc.php:90
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "लोकप्रिय पदों का शीर्षक:"
30
 
31
+ #: admin.inc.php:96
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
35
 
 
 
 
 
 
 
 
 
36
  #: admin.inc.php:103
37
+ msgid "Duplicate rows cleaned from tables"
38
+ msgstr ""
39
 
40
+ #: admin.inc.php:124
41
+ msgid "General options"
42
+ msgstr ""
43
 
44
+ #: admin.inc.php:127
45
  msgid "Number of popular posts to display: "
46
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
47
 
48
+ #: admin.inc.php:130
49
  msgid "Daily Popular should contain views of how many days? "
50
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
51
 
52
+ #: admin.inc.php:133
53
+ msgid ""
54
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
55
+ "continue to be counted."
56
+ msgstr ""
57
+ "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी "
58
+ "रहेगी."
59
+
60
+ #: admin.inc.php:136
61
+ msgid "Exclude Categories: "
62
+ msgstr ""
63
 
64
+ #: admin.inc.php:154
65
+ #, fuzzy
66
+ msgid "Display number of views on:"
67
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
68
 
69
+ #: admin.inc.php:155
70
+ msgid "Posts"
71
+ msgstr ""
72
+
73
+ #: admin.inc.php:156
74
+ #, fuzzy
75
+ msgid "Pages"
76
+ msgstr "पृष्ठ"
77
 
78
+ #: admin.inc.php:159
79
  msgid "Track visits of authors on their own posts?"
80
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
81
 
82
+ #: admin.inc.php:163
83
  msgid "Display number of page views in popular lists?"
84
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
85
 
86
+ #: admin.inc.php:167
87
+ msgid "Force daily posts' list to be dynamic?"
88
+ msgstr ""
89
+
90
+ #: admin.inc.php:169
91
  #, fuzzy
92
+ msgid ""
93
+ "This option uses JavaScript to load the post and can increase your page load "
94
+ "time"
95
+ msgstr ""
96
+ "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता "
97
+ "है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
98
 
99
+ #: admin.inc.php:172
100
+ msgid "Display page views on Posts > All Posts in Admin"
101
+ msgstr ""
102
 
103
+ #: admin.inc.php:176
104
+ msgid "Link to Top 10 plugin page"
105
+ msgstr ""
106
 
107
+ #: admin.inc.php:178
108
+ #, fuzzy
109
+ msgid ""
110
+ "A link to the plugin is added as an extra list item to the list of popular "
111
+ "posts"
112
+ msgstr ""
113
+ "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा "
114
+ "है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
115
+
116
+ #: admin.inc.php:185
117
  #, fuzzy
118
+ msgid "Output Options"
119
  msgstr "विकल्प हैं:"
120
 
121
+ #: admin.inc.php:188
122
+ msgid "Format to display the count in: "
123
+ msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
124
+
125
+ #: admin.inc.php:191
126
+ #, fuzzy
127
+ msgid ""
128
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
129
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
130
+ "display the overall count across all posts on the blog. e.g. the default "
131
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
132
+ msgstr ""
133
+ "का प्रयोग करें <code>% totalcount% </ कोड> कुल संख्या प्रदर्शित करने के लिए और <code>% "
134
+ "dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> "
135
+ "(दौरा 123 बार, 23 का दौरा आज) </ कोड>"
136
+
137
+ #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "लोकप्रिय पदों का शीर्षक:"
140
 
141
+ #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
144
 
145
+ #: admin.inc.php:199
146
+ msgid "When there are no posts, what should be shown?"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:203
150
+ msgid "Blank Output"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:207
154
+ msgid "Display:"
155
+ msgstr ""
156
+
157
+ #: admin.inc.php:211
158
+ msgid "Show post excerpt in list?"
159
+ msgstr ""
160
+
161
+ #: admin.inc.php:214
162
+ msgid "Length of excerpt (in words): "
163
  msgstr ""
164
 
165
+ #: admin.inc.php:217
166
  msgid "Customize the output:"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr ""
172
 
173
+ #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr ""
176
 
179
  msgid "HTML to display after each list item: "
180
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
181
 
182
+ #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr ""
185
 
186
+ #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:233
191
+ msgid "Location of post thumbnail:"
192
+ msgstr ""
193
+
194
+ #: admin.inc.php:237
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
198
 
199
+ #: admin.inc.php:241
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, after title"
202
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
203
 
204
+ #: admin.inc.php:245
205
  msgid "Display only thumbnails, no text"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:249
209
  msgid "Do not display thumbnails, only text."
210
  msgstr ""
211
 
212
+ #: admin.inc.php:253
213
+ msgid "Maximum width of the thumbnail: "
214
+ msgstr ""
215
+
216
  #: admin.inc.php:256
217
+ msgid "Maximum height of the thumbnail: "
218
+ msgstr ""
219
+
220
+ #: admin.inc.php:259
221
+ msgid "Use timthumb to generate thumbnails? "
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:260
225
+ msgid ""
226
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
227
+ "\">timthumb</a> will be used to generate thumbnails"
228
+ msgstr ""
229
+
230
+ #: admin.inc.php:262
231
+ msgid "Post thumbnail meta field name: "
232
  msgstr ""
233
 
234
  #: admin.inc.php:263
235
+ msgid ""
236
+ "The value of this field should contain the image source and is set in the "
237
+ "<em>Add New Post</em> screen"
238
+ msgstr ""
239
+
240
+ #: admin.inc.php:265
241
+ msgid ""
242
+ "If the postmeta is not set, then should the plugin extract the first image "
243
+ "from the post?"
244
  msgstr ""
245
 
246
  #: admin.inc.php:266
247
+ msgid ""
248
+ "This can slow down the loading of your page if the first image in the "
249
+ "related posts is large in file-size"
250
  msgstr ""
251
 
252
  #: admin.inc.php:268
253
+ msgid "Use default thumbnail? "
254
  msgstr ""
255
 
256
+ #: admin.inc.php:269
257
+ msgid ""
258
+ "If checked, when no thumbnail is found, show a default one from the URL "
259
+ "below. If not checked and no thumbnail is found, no image will be shown."
260
  msgstr ""
261
 
262
+ #: admin.inc.php:271
263
+ msgid "Default thumbnail: "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:272
267
+ msgid ""
268
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
269
+ "then it will check the meta field. If this is not available, then it will "
270
+ "show the default image as specified above"
271
+ msgstr ""
272
 
273
+ #: admin.inc.php:278
274
+ msgid "Custom Styles"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:281
278
+ msgid "Custom CSS to add to header:"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:284
282
+ msgid ""
283
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
284
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
285
+ "available CSS classes to style."
286
+ msgstr ""
287
+
288
+ #: admin.inc.php:289
289
+ msgid "Maintenance"
290
  msgstr ""
291
 
292
  #: admin.inc.php:292
293
+ msgid "Enable scheduled maintenance of daily tables:"
294
  msgstr ""
295
 
296
+ #: admin.inc.php:294
297
+ msgid ""
298
+ "Over time the Daily Top 10 database grows in size, which reduces the "
299
+ "performance of the plugin. Cleaning the database at regular intervals could "
300
+ "improve performance, especially on high traffic blogs"
301
+ msgstr ""
302
+
303
+ #: admin.inc.php:297
304
+ msgid "Time to run maintenance"
305
  msgstr ""
306
 
307
  #: admin.inc.php:300
308
+ msgid "How often should the maintenance be run:"
 
309
  msgstr ""
310
 
311
+ #: admin.inc.php:304
312
+ msgid "Daily"
313
+ msgstr ""
 
 
314
 
315
+ #: admin.inc.php:308
316
+ msgid "Weekly"
 
317
  msgstr ""
318
 
319
+ #: admin.inc.php:312
320
+ msgid "Fortnightly"
 
321
  msgstr ""
322
 
323
+ #: admin.inc.php:316
324
+ msgid "Monthly"
 
325
  msgstr ""
326
 
327
+ #: admin.inc.php:325
328
+ msgid "The cron job has been scheduled. Maintenance will run "
 
 
329
  msgstr ""
330
 
331
+ #: admin.inc.php:330
332
+ msgid "The cron job is missing. Please resave this page to add the job"
 
333
  msgstr ""
334
 
335
+ #: admin.inc.php:335
336
+ msgid "Maintenance is turned off"
337
+ msgstr ""
338
+
339
+ #: admin.inc.php:343
340
+ msgid "Reset count"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:346
344
+ msgid ""
345
+ "This cannot be reversed. Make sure that your database has been backed up "
346
+ "before proceeding"
347
+ msgstr ""
348
+
349
+ #: admin.inc.php:349
350
  #, fuzzy
351
+ msgid "Reset Popular Posts"
352
+ msgstr "लोकप्रिय पोस्ट्स "
353
 
354
+ #: admin.inc.php:349
355
+ msgid "Are you sure you want to reset the popular posts?"
 
356
  msgstr ""
357
 
358
+ #: admin.inc.php:350
359
+ #, fuzzy
360
+ msgid "Reset Daily Popular Posts"
361
+ msgstr "दैनिक लोकप्रिय पोस्ट्स "
362
+
363
+ #: admin.inc.php:350
364
+ msgid "Are you sure you want to reset the daily popular posts?"
365
  msgstr ""
366
 
367
+ #: admin.inc.php:351
368
+ msgid "Clear duplicates"
369
+ msgstr ""
370
+
371
+ #: admin.inc.php:351
372
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
373
+ msgstr ""
374
+
375
+ #: admin.inc.php:355
376
+ #, fuzzy
377
+ msgid "Save Options"
378
+ msgstr "विकल्प हैं:"
379
+
380
+ #: admin.inc.php:356
381
+ #, fuzzy
382
+ msgid "Default Options"
383
+ msgstr "विकल्प हैं:"
384
+
385
+ #: admin.inc.php:356
386
+ msgid "Do you want to set options to Default?"
387
+ msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
388
+
389
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
390
  msgid "Popular Posts"
391
  msgstr "लोकप्रिय पोस्ट्स "
392
 
393
+ #: admin.inc.php:382
394
  msgid "Daily Popular Posts"
395
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
396
 
397
+ #: admin.inc.php:404
398
+ #, fuzzy
399
+ msgid "Support the development"
400
+ msgstr "समर्थन विकास"
401
+
402
  #: admin.inc.php:412
403
+ msgid "Enter amount in USD: "
404
+ msgstr ""
405
+
406
+ #: admin.inc.php:416
407
+ msgid "Send your donation to the author of"
408
+ msgstr ""
409
+
410
+ #: admin.inc.php:422
411
+ msgid "Follow us on Facebook"
412
+ msgstr ""
413
+
414
+ #: admin.inc.php:426
415
+ msgid "Quick Links"
416
+ msgstr ""
417
+
418
+ #: admin.inc.php:428
419
+ msgid "Top 10 plugin page"
420
+ msgstr ""
421
+
422
+ #: admin.inc.php:429
423
+ msgid "Other plugins"
424
+ msgstr ""
425
+
426
+ #: admin.inc.php:430
427
+ msgid "Ajay's blog"
428
+ msgstr ""
429
+
430
+ #: admin.inc.php:431 top-10.php:583
431
+ msgid "Support"
432
+ msgstr ""
433
+
434
+ #: admin.inc.php:432
435
+ msgid "Follow @ajaydsouza on Twitter"
436
+ msgstr ""
437
+
438
+ #: admin.inc.php:436
439
+ msgid "Recent developments"
440
+ msgstr ""
441
+
442
+ #: admin.inc.php:459 admin.inc.php:461
443
  msgid "Top 10"
444
  msgstr "शीर्ष 10"
445
 
446
+ #: admin.inc.php:575
447
  msgid "Results"
448
  msgstr "परिणाम"
449
 
450
+ #: admin.inc.php:577 admin.inc.php:583
 
451
  msgid "of"
452
  msgstr "का"
453
 
454
+ #: admin.inc.php:581
455
  msgid "Page"
456
  msgstr "पृष्ठ"
457
 
458
+ #: admin.inc.php:595
459
  msgid "View Daily Popular Posts"
460
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
461
 
462
+ #: admin.inc.php:599
463
  msgid "View Overall Popular Posts"
464
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
465
 
466
+ #: admin.inc.php:603
467
  msgid "Results per-page:"
468
  msgstr "प्रति परिणाम पृष्ठ:"
469
 
470
+ #: admin.inc.php:627
471
  msgid "Previous"
472
  msgstr "पिछला"
473
 
474
+ #: admin.inc.php:645
475
  msgid "Next"
476
  msgstr "अगला"
477
 
478
+ #: admin.inc.php:668
 
 
 
 
479
  msgid "Daily Popular"
480
  msgstr "दैनिक लोकप्रिय"
481
 
482
+ #: admin.inc.php:679
483
  msgid "Total / Today's Views"
484
  msgstr "कुल / आज दर्शाव"
485
 
486
+ #: top-10.php:257
487
+ msgid "Display the posts popular this week"
488
  msgstr ""
489
 
490
+ #: top-10.php:271
491
+ msgid "Title"
492
  msgstr ""
493
 
494
+ #: top-10.php:276
495
+ msgid "No. of posts"
496
+ msgstr ""
497
+
498
+ #: top-10.php:281
499
+ msgid "Overall"
500
+ msgstr ""
501
+
502
+ #: top-10.php:282
503
+ msgid "Custom time period (Enter below)"
504
+ msgstr ""
505
+
506
+ #: top-10.php:287
507
+ msgid "Range in number of days (applies only to custom option above)"
508
+ msgstr ""
509
+
510
+ #: top-10.php:291
511
+ msgid "Thumbnail options"
512
+ msgstr ""
513
+
514
+ #: top-10.php:293
515
+ #, fuzzy
516
+ msgid "Thumbnails inline, before title"
517
+ msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
518
+
519
+ #: top-10.php:294
520
+ #, fuzzy
521
+ msgid "Thumbnails inline, after title"
522
+ msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
523
+
524
+ #: top-10.php:295
525
+ msgid "Only thumbnails, no text"
526
+ msgstr ""
527
+
528
+ #: top-10.php:296
529
+ msgid "No thumbnails, only text."
530
+ msgstr ""
531
+
532
+ #: top-10.php:301
533
+ msgid " Show excerpt?"
534
+ msgstr ""
535
+
536
+ #: top-10.php:367
537
  msgid "<h3>Popular Posts</h3>"
538
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
539
 
540
+ #: top-10.php:368
541
  msgid "<h3>Daily Popular</h3>"
542
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
543
 
544
+ #: top-10.php:369
545
+ #, fuzzy
546
+ msgid "No top posts yet"
547
+ msgstr "लोकप्रिय पदों का शीर्षक:"
548
+
549
+ #: top-10.php:560
550
+ msgid "Once Weekly"
551
+ msgstr ""
552
+
553
+ #: top-10.php:561
554
+ msgid "Once Fortnightly"
555
+ msgstr ""
556
+
557
+ #: top-10.php:562
558
+ msgid "Once Monthly"
559
+ msgstr ""
560
+
561
+ #: top-10.php:582
562
  msgid "Settings"
563
  msgstr ""
564
 
565
+ #: top-10.php:584
566
  msgid "Donate"
567
  msgstr ""
568
 
569
+ #~ msgid "Display number of views on pages?"
570
+ #~ msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
571
+
572
+ #~ msgid ""
573
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
574
+ #~ "added with the count"
575
+ #~ msgstr ""
576
+ #~ "प्रदर्शन संपादित करें पदों पर पृष्ठ विचार / WP में पृष्ठों-व्यवस्थापक? एक अतिरिक्त कॉलम "
577
+ #~ "गिनती के साथ जोड़ दिया है"
578
+
579
+ #, fuzzy
580
+ #~ msgid "Top 10 "
581
+ #~ msgstr "शीर्ष 10"
582
+
583
  #~ msgid "If you find "
584
  #~ msgstr "यदि आप पाते हैं"
585
 
languages/tptn-it_IT.mo CHANGED
Binary file
languages/tptn-it_IT.po CHANGED
@@ -2,124 +2,182 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:42-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Italian\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
- #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
- #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
- #: admin.inc.php:86
35
- msgid "Tables cleaned of duplicate rows"
36
- msgstr "I duplicati sono stati rimossi dalle tabelle"
37
-
38
- #: admin.inc.php:98
39
- msgid "Options:"
40
- msgstr "Opzioni:"
41
-
42
  #: admin.inc.php:103
43
- msgid "Format to display the count in: "
44
- msgstr "Formato per il conteggio:"
45
 
46
- #: admin.inc.php:107
47
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
- msgstr "Utilizza <code>%totalcount%</code> per potere mostrare il computo totale e <code>%dailycount%</code> per visualizzare quello del giorno corrente. Ad esempio, le opzioni predefinite verranno mostrate online con un <code>(letto 123 volte, 23 visite odierne)</code>"
49
 
50
- #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Numero degli articoli più popolari da mostrare:"
53
 
54
- #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
- msgstr "Quanti giorni desideri siano considerati per il computo delle visualizzazioni per articoli più popolari del giorno?"
 
 
57
 
58
- #: admin.inc.php:123
59
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
- msgstr "Desideri escludere le pagine dalla visualizzazione per gli articoli più popolari? Il numero delle visualizzazioni continuerà ad essere comunque aggiornato."
 
 
 
 
 
61
 
62
- #: admin.inc.php:129
63
- msgid "Display number of views on posts?"
 
 
 
 
 
64
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
65
 
66
- #: admin.inc.php:135
67
- msgid "Display number of views on pages?"
68
- msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
69
 
70
- #: admin.inc.php:141
 
 
 
 
 
71
  msgid "Track visits of authors on their own posts?"
72
- msgstr "Desideri che vengano conteggiate anche le visite da parte dell'amministatore del sito?"
 
 
73
 
74
- #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
- msgstr "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei più popolari?"
 
 
77
 
78
- #: admin.inc.php:153
79
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
- msgstr "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione utilizza un JavaScript per il caricamento dell'articolo e di conseguenza potrà fare aumentare i tempi di caricamento della stessa pagina"
81
 
82
- #: admin.inc.php:159
83
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
- msgstr "Desideri mostrare il totale delle visualizzazioni sotto Modifica Articoli/Pagine in WP-Admin? Se sì, verrà aggiunta una nuova sezione (a nome Top 10) con i conteggi nel dettaglio"
 
 
 
 
 
 
85
 
86
- #: admin.inc.php:165
87
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
- msgstr "Nella lista dei tuoi articoli più popolari é stato aggiunto un link alla pagina del plugin. Ti sarei molto grato qualora non disattivassi questa opzione!"
89
 
90
- #: admin.inc.php:169
91
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgstr "Opzioni output:"
93
 
94
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Title of popular posts: "
96
  msgstr "Titolo per gli articoli più popolari:"
97
 
98
- #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Titolo per gli articoli più popolari del giorno:"
101
 
102
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
103
  msgid "Show post excerpt in list?"
104
  msgstr "Desideri mostrare gli estratti?"
105
 
106
- #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Lunghezza estratto (in parole):"
109
 
110
- #: admin.inc.php:195
111
- msgid "Exclude Categories: "
112
- msgstr "Escludi categorie:"
113
-
114
- #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Personalizzazione output:"
117
 
118
- #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
121
 
122
- #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
125
 
@@ -127,231 +185,448 @@ msgstr "HTML da mostrare davanti ad ogni singola lista:"
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML da mostrare dopo ogni lista:"
129
 
130
- #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML da mostrare dopo la lista degli articoli:"
133
 
134
- #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Opzioni miniature articolo:"
137
 
138
- #: admin.inc.php:239
 
 
 
 
139
  msgid "Display thumbnails inline with posts, before title"
140
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
141
 
142
- #: admin.inc.php:243
143
  msgid "Display thumbnails inline with posts, after title"
144
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
145
 
146
- #: admin.inc.php:247
147
  msgid "Display only thumbnails, no text"
148
  msgstr "Mostra le sole miniature, nessun testo"
149
 
150
- #: admin.inc.php:251
151
  msgid "Do not display thumbnails, only text."
152
  msgstr "Non mostrare le miniature, solo testo."
153
 
 
 
 
 
154
  #: admin.inc.php:256
155
- msgid "Post thumbnail meta field (the meta should point to the image source): "
156
- msgstr "Campo meta per le miniature (il meta deve puntare alla immagine):"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
 
158
  #: admin.inc.php:263
159
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
- msgstr "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo la prima immagine. Questa operazione potrebbe rallentare il caricamento del tuo articolo nel caso in cui la prima immagine corelata fosse di grandi dimensioni"
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
  #: admin.inc.php:266
163
- msgid "Thumbnail dimensions:"
164
- msgstr "Dimensione miniature:"
 
 
 
 
 
 
 
165
 
166
  #: admin.inc.php:268
167
- msgid "Max width: "
168
- msgstr "Larghezza massima:"
169
 
170
- #: admin.inc.php:273
171
- msgid "Max height: "
172
- msgstr "Altezza massima:"
 
 
 
 
173
 
174
- #: admin.inc.php:277
175
- msgid "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."
176
- msgstr "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
177
 
178
- #: admin.inc.php:282
179
- msgid "Do you want to set options to Default?"
180
- msgstr "Desideri ripristinare alle predefinite?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
 
182
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  msgid "Reset count"
184
  msgstr "Ripristino conteggio"
185
 
186
- #: admin.inc.php:288
187
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
- msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
 
 
 
 
189
 
190
- #: admin.inc.php:291
 
 
 
 
 
191
  msgid "Are you sure you want to reset the popular posts?"
192
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
193
 
194
- #: admin.inc.php:292
 
 
 
 
 
195
  msgid "Are you sure you want to reset the daily popular posts?"
196
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
197
 
198
- #: admin.inc.php:293
 
 
 
 
199
  msgid "This will delete the duplicate entries in the tables. Proceed?"
200
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
201
 
202
- #: admin.inc.php:300
203
- #: admin.inc.php:360
204
- msgid "Quick links"
205
- msgstr "Collegamenti veloci"
206
 
207
- #: admin.inc.php:302
208
- #: admin.inc.php:362
209
- msgid "Top 10 "
210
- msgstr "Top 10"
 
 
 
 
211
 
212
- #: admin.inc.php:302
213
- #: admin.inc.php:362
214
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  msgstr "pagina plugin"
216
 
217
- #: admin.inc.php:303
218
- #: admin.inc.php:363
219
  msgid "Other plugins"
220
  msgstr "Altri plugin"
221
 
222
- #: admin.inc.php:304
223
- #: admin.inc.php:364
224
  msgid "Ajay's blog"
225
  msgstr "Il blog di Ajay"
226
 
227
- #: admin.inc.php:305
228
- #: admin.inc.php:365
229
- #: top-10.php:515
230
  msgid "Support"
231
  msgstr "Supporto"
232
 
233
- #: admin.inc.php:306
234
- #: admin.inc.php:366
235
  msgid "Follow @ajaydsouza on Twitter"
236
  msgstr "Segui @ajaydsouza su Twitter"
237
 
238
- #: admin.inc.php:310
239
- #: admin.inc.php:370
240
  msgid "Recent developments"
241
  msgstr "Sviluppi recenti"
242
 
243
- #: admin.inc.php:315
244
- #: admin.inc.php:375
245
- msgid "Support the development"
246
- msgstr "Sostieni lo sviluppo"
247
-
248
- #: admin.inc.php:323
249
- #: admin.inc.php:383
250
- msgid "Enter amount in USD: "
251
- msgstr "Inserisci la cifra in USD: "
252
-
253
- #: admin.inc.php:327
254
- #: admin.inc.php:387
255
- msgid "Send your donation to the author of"
256
- msgstr "Invia la tua donazione all'autore di"
257
-
258
- #: admin.inc.php:347
259
- #: admin.inc.php:414
260
- #: admin.inc.php:618
261
- #: top-10.php:257
262
- #: top-10.php:273
263
- #: top-10.php:445
264
- #: top-10.php:448
265
- msgid "Popular Posts"
266
- msgstr "Gli articoli più popolari"
267
-
268
- #: admin.inc.php:347
269
- msgid "Daily Popular Posts"
270
- msgstr "Gli articoli più popolari di oggi"
271
-
272
- #: admin.inc.php:412
273
- #: admin.inc.php:414
274
  msgid "Top 10"
275
  msgstr "Top 10"
276
 
277
- #: admin.inc.php:526
278
  msgid "Results"
279
  msgstr "Risultati"
280
 
281
- #: admin.inc.php:528
282
- #: admin.inc.php:534
283
  msgid "of"
284
  msgstr "di"
285
 
286
- #: admin.inc.php:532
287
  msgid "Page"
288
  msgstr "Pagina"
289
 
290
- #: admin.inc.php:546
291
  msgid "View Daily Popular Posts"
292
  msgstr "Visualizza gli articoli più letti di oggi"
293
 
294
- #: admin.inc.php:550
295
  msgid "View Overall Popular Posts"
296
  msgstr "Visualizza panoramica articoli più popolari"
297
 
298
- #: admin.inc.php:554
299
  msgid "Results per-page:"
300
  msgstr "Risultati per pagina:"
301
 
302
- #: admin.inc.php:578
303
  msgid "Previous"
304
  msgstr "Precedente"
305
 
306
- #: admin.inc.php:596
307
  msgid "Next"
308
  msgstr "Successiva"
309
 
310
- #: admin.inc.php:619
311
- #: top-10.php:219
312
- #: top-10.php:235
313
- #: top-10.php:446
314
- #: top-10.php:449
315
  msgid "Daily Popular"
316
  msgstr "I più letti di oggi"
317
 
318
- #: admin.inc.php:630
319
  msgid "Total / Today's Views"
320
  msgstr "Totale / Visualizzazioni odierne"
321
 
322
- #: top-10.php:218
323
- msgid "Display the posts popular today"
324
- msgstr "Mostra gli articoli più popolari di oggi"
325
-
326
- #: top-10.php:256
327
  msgid "Display the posts popular this week"
328
  msgstr "Mostra articoli più popolari settimana in corso"
329
 
330
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  msgid "<h3>Popular Posts</h3>"
332
  msgstr "<h3>Articoli più letti</h3>"
333
 
334
- #: top-10.php:287
335
  msgid "<h3>Daily Popular</h3>"
336
  msgstr "<h3>I più letti di oggi</h3>"
337
 
338
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
339
  msgid "Settings"
340
  msgstr "Impostazioni"
341
 
342
- #: top-10.php:516
343
  msgid "Donate"
344
  msgstr "Donazione"
345
 
 
 
 
 
 
 
346
  #~ msgid ""
347
- #~ "The plugin will first check if the post contains a thumbnail. If it "
348
- #~ "doesn't then it will check the meta field. If this is not available, then "
349
- #~ "it will show the default image as specified below:"
350
  #~ msgstr ""
351
- #~ "Come prima operazione, il plugin controllerà la presenza di una miniatura "
352
- #~ "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
353
- #~ "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
354
- #~ "specificato qui sotto:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
 
356
  #~ msgid "Support forum"
357
  #~ msgstr "Forum di supporto"
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
9
+ "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
 
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Le opzioni sono state salvate con successo."
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Opzioni impostate alle predefinite."
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Ripristino 10 articoli più popolari"
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Ripristino 10 articoli più popolari del giorno"
32
 
 
 
 
 
 
 
 
 
33
  #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
 
41
+ #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Numero degli articoli più popolari da mostrare:"
44
 
45
+ #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
+ msgstr ""
48
+ "Quanti giorni desideri siano considerati per il computo delle "
49
+ "visualizzazioni per articoli più popolari del giorno?"
50
 
51
+ #: admin.inc.php:133
52
+ msgid ""
53
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
+ "continue to be counted."
55
+ msgstr ""
56
+ "Desideri escludere le pagine dalla visualizzazione per gli articoli più "
57
+ "popolari? Il numero delle visualizzazioni continuerà ad essere comunque "
58
+ "aggiornato."
59
 
60
+ #: admin.inc.php:136
61
+ msgid "Exclude Categories: "
62
+ msgstr "Escludi categorie:"
63
+
64
+ #: admin.inc.php:154
65
+ #, fuzzy
66
+ msgid "Display number of views on:"
67
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
68
 
69
+ #: admin.inc.php:155
70
+ msgid "Posts"
71
+ msgstr ""
72
 
73
+ #: admin.inc.php:156
74
+ #, fuzzy
75
+ msgid "Pages"
76
+ msgstr "Pagina"
77
+
78
+ #: admin.inc.php:159
79
  msgid "Track visits of authors on their own posts?"
80
+ msgstr ""
81
+ "Desideri che vengano conteggiate anche le visite da parte dell'amministatore "
82
+ "del sito?"
83
 
84
+ #: admin.inc.php:163
85
  msgid "Display number of page views in popular lists?"
86
+ msgstr ""
87
+ "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei "
88
+ "più popolari?"
89
 
90
+ #: admin.inc.php:167
91
+ msgid "Force daily posts' list to be dynamic?"
92
+ msgstr ""
93
 
94
+ #: admin.inc.php:169
95
+ #, fuzzy
96
+ msgid ""
97
+ "This option uses JavaScript to load the post and can increase your page load "
98
+ "time"
99
+ msgstr ""
100
+ "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione "
101
+ "utilizza un JavaScript per il caricamento dell'articolo e di conseguenza "
102
+ "potrà fare aumentare i tempi di caricamento della stessa pagina"
103
 
104
+ #: admin.inc.php:172
105
+ msgid "Display page views on Posts > All Posts in Admin"
106
+ msgstr ""
107
 
108
+ #: admin.inc.php:176
109
+ msgid "Link to Top 10 plugin page"
110
+ msgstr ""
111
+
112
+ #: admin.inc.php:178
113
+ #, fuzzy
114
+ msgid ""
115
+ "A link to the plugin is added as an extra list item to the list of popular "
116
+ "posts"
117
+ msgstr ""
118
+ "Nella lista dei tuoi articoli più popolari é stato aggiunto un link alla "
119
+ "pagina del plugin. Ti sarei molto grato qualora non disattivassi questa "
120
+ "opzione!"
121
+
122
+ #: admin.inc.php:185
123
+ #, fuzzy
124
+ msgid "Output Options"
125
  msgstr "Opzioni output:"
126
 
127
+ #: admin.inc.php:188
128
+ msgid "Format to display the count in: "
129
+ msgstr "Formato per il conteggio:"
130
+
131
+ #: admin.inc.php:191
132
+ #, fuzzy
133
+ msgid ""
134
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
135
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
136
+ "display the overall count across all posts on the blog. e.g. the default "
137
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
138
+ msgstr ""
139
+ "Utilizza <code>%totalcount%</code> per potere mostrare il computo totale e "
140
+ "<code>%dailycount%</code> per visualizzare quello del giorno corrente. Ad "
141
+ "esempio, le opzioni predefinite verranno mostrate online con un <code>(letto "
142
+ "123 volte, 23 visite odierne)</code>"
143
+
144
+ #: admin.inc.php:193
145
  msgid "Title of popular posts: "
146
  msgstr "Titolo per gli articoli più popolari:"
147
 
148
+ #: admin.inc.php:196
149
  msgid "Title of daily popular posts: "
150
  msgstr "Titolo per gli articoli più popolari del giorno:"
151
 
152
+ #: admin.inc.php:199
153
+ msgid "When there are no posts, what should be shown?"
154
+ msgstr ""
155
+
156
+ #: admin.inc.php:203
157
+ msgid "Blank Output"
158
+ msgstr ""
159
+
160
+ #: admin.inc.php:207
161
+ msgid "Display:"
162
+ msgstr ""
163
+
164
+ #: admin.inc.php:211
165
  msgid "Show post excerpt in list?"
166
  msgstr "Desideri mostrare gli estratti?"
167
 
168
+ #: admin.inc.php:214
169
  msgid "Length of excerpt (in words): "
170
  msgstr "Lunghezza estratto (in parole):"
171
 
172
+ #: admin.inc.php:217
 
 
 
 
173
  msgid "Customize the output:"
174
  msgstr "Personalizzazione output:"
175
 
176
+ #: admin.inc.php:219
177
  msgid "HTML to display before the list of posts: "
178
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
179
 
180
+ #: admin.inc.php:222
181
  msgid "HTML to display before each list item: "
182
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
183
 
185
  msgid "HTML to display after each list item: "
186
  msgstr "HTML da mostrare dopo ogni lista:"
187
 
188
+ #: admin.inc.php:228
189
  msgid "HTML to display after the list of posts: "
190
  msgstr "HTML da mostrare dopo la lista degli articoli:"
191
 
192
+ #: admin.inc.php:231
193
  msgid "Post thumbnail options:"
194
  msgstr "Opzioni miniature articolo:"
195
 
196
+ #: admin.inc.php:233
197
+ msgid "Location of post thumbnail:"
198
+ msgstr ""
199
+
200
+ #: admin.inc.php:237
201
  msgid "Display thumbnails inline with posts, before title"
202
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
203
 
204
+ #: admin.inc.php:241
205
  msgid "Display thumbnails inline with posts, after title"
206
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
207
 
208
+ #: admin.inc.php:245
209
  msgid "Display only thumbnails, no text"
210
  msgstr "Mostra le sole miniature, nessun testo"
211
 
212
+ #: admin.inc.php:249
213
  msgid "Do not display thumbnails, only text."
214
  msgstr "Non mostrare le miniature, solo testo."
215
 
216
+ #: admin.inc.php:253
217
+ msgid "Maximum width of the thumbnail: "
218
+ msgstr ""
219
+
220
  #: admin.inc.php:256
221
+ msgid "Maximum height of the thumbnail: "
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:259
225
+ msgid "Use timthumb to generate thumbnails? "
226
+ msgstr ""
227
+
228
+ #: admin.inc.php:260
229
+ msgid ""
230
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
231
+ "\">timthumb</a> will be used to generate thumbnails"
232
+ msgstr ""
233
+
234
+ #: admin.inc.php:262
235
+ #, fuzzy
236
+ msgid "Post thumbnail meta field name: "
237
+ msgstr "Opzioni miniature articolo:"
238
 
239
  #: admin.inc.php:263
240
+ msgid ""
241
+ "The value of this field should contain the image source and is set in the "
242
+ "<em>Add New Post</em> screen"
243
+ msgstr ""
244
+
245
+ #: admin.inc.php:265
246
+ #, fuzzy
247
+ msgid ""
248
+ "If the postmeta is not set, then should the plugin extract the first image "
249
+ "from the post?"
250
+ msgstr ""
251
+ "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
252
+ "la prima immagine. Questa operazione potrebbe rallentare il caricamento del "
253
+ "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
254
+ "dimensioni"
255
 
256
  #: admin.inc.php:266
257
+ #, fuzzy
258
+ msgid ""
259
+ "This can slow down the loading of your page if the first image in the "
260
+ "related posts is large in file-size"
261
+ msgstr ""
262
+ "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
263
+ "la prima immagine. Questa operazione potrebbe rallentare il caricamento del "
264
+ "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
265
+ "dimensioni"
266
 
267
  #: admin.inc.php:268
268
+ msgid "Use default thumbnail? "
269
+ msgstr ""
270
 
271
+ #: admin.inc.php:269
272
+ msgid ""
273
+ "If checked, when no thumbnail is found, show a default one from the URL "
274
+ "below. If not checked and no thumbnail is found, no image will be shown."
275
+ msgstr ""
276
+ "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
277
+ "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
278
 
279
+ #: admin.inc.php:271
280
+ msgid "Default thumbnail: "
281
+ msgstr ""
282
 
283
+ #: admin.inc.php:272
284
+ #, fuzzy
285
+ msgid ""
286
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
287
+ "then it will check the meta field. If this is not available, then it will "
288
+ "show the default image as specified above"
289
+ msgstr ""
290
+ "Come prima operazione, il plugin controllerà la presenza di una miniatura "
291
+ "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
292
+ "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
293
+ "specificato qui sotto:"
294
+
295
+ #: admin.inc.php:278
296
+ msgid "Custom Styles"
297
+ msgstr ""
298
+
299
+ #: admin.inc.php:281
300
+ msgid "Custom CSS to add to header:"
301
+ msgstr ""
302
+
303
+ #: admin.inc.php:284
304
+ msgid ""
305
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
306
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
307
+ "available CSS classes to style."
308
+ msgstr ""
309
+
310
+ #: admin.inc.php:289
311
+ msgid "Maintenance"
312
+ msgstr ""
313
+
314
+ #: admin.inc.php:292
315
+ msgid "Enable scheduled maintenance of daily tables:"
316
+ msgstr ""
317
+
318
+ #: admin.inc.php:294
319
+ msgid ""
320
+ "Over time the Daily Top 10 database grows in size, which reduces the "
321
+ "performance of the plugin. Cleaning the database at regular intervals could "
322
+ "improve performance, especially on high traffic blogs"
323
+ msgstr ""
324
+
325
+ #: admin.inc.php:297
326
+ msgid "Time to run maintenance"
327
+ msgstr ""
328
+
329
+ #: admin.inc.php:300
330
+ msgid "How often should the maintenance be run:"
331
+ msgstr ""
332
+
333
+ #: admin.inc.php:304
334
+ msgid "Daily"
335
+ msgstr ""
336
+
337
+ #: admin.inc.php:308
338
+ msgid "Weekly"
339
+ msgstr ""
340
+
341
+ #: admin.inc.php:312
342
+ msgid "Fortnightly"
343
+ msgstr ""
344
 
345
+ #: admin.inc.php:316
346
+ msgid "Monthly"
347
+ msgstr ""
348
+
349
+ #: admin.inc.php:325
350
+ msgid "The cron job has been scheduled. Maintenance will run "
351
+ msgstr ""
352
+
353
+ #: admin.inc.php:330
354
+ msgid "The cron job is missing. Please resave this page to add the job"
355
+ msgstr ""
356
+
357
+ #: admin.inc.php:335
358
+ msgid "Maintenance is turned off"
359
+ msgstr ""
360
+
361
+ #: admin.inc.php:343
362
  msgid "Reset count"
363
  msgstr "Ripristino conteggio"
364
 
365
+ #: admin.inc.php:346
366
+ msgid ""
367
+ "This cannot be reversed. Make sure that your database has been backed up "
368
+ "before proceeding"
369
+ msgstr ""
370
+ "Questa operazione non é reversibile. Effettua il backup del database prima "
371
+ "di procedere"
372
 
373
+ #: admin.inc.php:349
374
+ #, fuzzy
375
+ msgid "Reset Popular Posts"
376
+ msgstr "Gli articoli più popolari"
377
+
378
+ #: admin.inc.php:349
379
  msgid "Are you sure you want to reset the popular posts?"
380
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
381
 
382
+ #: admin.inc.php:350
383
+ #, fuzzy
384
+ msgid "Reset Daily Popular Posts"
385
+ msgstr "Gli articoli più popolari di oggi"
386
+
387
+ #: admin.inc.php:350
388
  msgid "Are you sure you want to reset the daily popular posts?"
389
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
390
 
391
+ #: admin.inc.php:351
392
+ msgid "Clear duplicates"
393
+ msgstr ""
394
+
395
+ #: admin.inc.php:351
396
  msgid "This will delete the duplicate entries in the tables. Proceed?"
397
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
398
 
399
+ #: admin.inc.php:355
400
+ #, fuzzy
401
+ msgid "Save Options"
402
+ msgstr "Opzioni:"
403
 
404
+ #: admin.inc.php:356
405
+ #, fuzzy
406
+ msgid "Default Options"
407
+ msgstr "Opzioni output:"
408
+
409
+ #: admin.inc.php:356
410
+ msgid "Do you want to set options to Default?"
411
+ msgstr "Desideri ripristinare alle predefinite?"
412
 
413
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
414
+ msgid "Popular Posts"
415
+ msgstr "Gli articoli più popolari"
416
+
417
+ #: admin.inc.php:382
418
+ msgid "Daily Popular Posts"
419
+ msgstr "Gli articoli più popolari di oggi"
420
+
421
+ #: admin.inc.php:404
422
+ msgid "Support the development"
423
+ msgstr "Sostieni lo sviluppo"
424
+
425
+ #: admin.inc.php:412
426
+ msgid "Enter amount in USD: "
427
+ msgstr "Inserisci la cifra in USD: "
428
+
429
+ #: admin.inc.php:416
430
+ msgid "Send your donation to the author of"
431
+ msgstr "Invia la tua donazione all'autore di"
432
+
433
+ #: admin.inc.php:422
434
+ msgid "Follow us on Facebook"
435
+ msgstr ""
436
+
437
+ #: admin.inc.php:426
438
+ #, fuzzy
439
+ msgid "Quick Links"
440
+ msgstr "Collegamenti veloci"
441
+
442
+ #: admin.inc.php:428
443
+ #, fuzzy
444
+ msgid "Top 10 plugin page"
445
  msgstr "pagina plugin"
446
 
447
+ #: admin.inc.php:429
 
448
  msgid "Other plugins"
449
  msgstr "Altri plugin"
450
 
451
+ #: admin.inc.php:430
 
452
  msgid "Ajay's blog"
453
  msgstr "Il blog di Ajay"
454
 
455
+ #: admin.inc.php:431 top-10.php:583
 
 
456
  msgid "Support"
457
  msgstr "Supporto"
458
 
459
+ #: admin.inc.php:432
 
460
  msgid "Follow @ajaydsouza on Twitter"
461
  msgstr "Segui @ajaydsouza su Twitter"
462
 
463
+ #: admin.inc.php:436
 
464
  msgid "Recent developments"
465
  msgstr "Sviluppi recenti"
466
 
467
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
  msgid "Top 10"
469
  msgstr "Top 10"
470
 
471
+ #: admin.inc.php:575
472
  msgid "Results"
473
  msgstr "Risultati"
474
 
475
+ #: admin.inc.php:577 admin.inc.php:583
 
476
  msgid "of"
477
  msgstr "di"
478
 
479
+ #: admin.inc.php:581
480
  msgid "Page"
481
  msgstr "Pagina"
482
 
483
+ #: admin.inc.php:595
484
  msgid "View Daily Popular Posts"
485
  msgstr "Visualizza gli articoli più letti di oggi"
486
 
487
+ #: admin.inc.php:599
488
  msgid "View Overall Popular Posts"
489
  msgstr "Visualizza panoramica articoli più popolari"
490
 
491
+ #: admin.inc.php:603
492
  msgid "Results per-page:"
493
  msgstr "Risultati per pagina:"
494
 
495
+ #: admin.inc.php:627
496
  msgid "Previous"
497
  msgstr "Precedente"
498
 
499
+ #: admin.inc.php:645
500
  msgid "Next"
501
  msgstr "Successiva"
502
 
503
+ #: admin.inc.php:668
 
 
 
 
504
  msgid "Daily Popular"
505
  msgstr "I più letti di oggi"
506
 
507
+ #: admin.inc.php:679
508
  msgid "Total / Today's Views"
509
  msgstr "Totale / Visualizzazioni odierne"
510
 
511
+ #: top-10.php:257
 
 
 
 
512
  msgid "Display the posts popular this week"
513
  msgstr "Mostra articoli più popolari settimana in corso"
514
 
515
+ #: top-10.php:271
516
+ msgid "Title"
517
+ msgstr ""
518
+
519
+ #: top-10.php:276
520
+ msgid "No. of posts"
521
+ msgstr ""
522
+
523
+ #: top-10.php:281
524
+ msgid "Overall"
525
+ msgstr ""
526
+
527
+ #: top-10.php:282
528
+ msgid "Custom time period (Enter below)"
529
+ msgstr ""
530
+
531
+ #: top-10.php:287
532
+ msgid "Range in number of days (applies only to custom option above)"
533
+ msgstr ""
534
+
535
+ #: top-10.php:291
536
+ #, fuzzy
537
+ msgid "Thumbnail options"
538
+ msgstr "Opzioni miniature articolo:"
539
+
540
+ #: top-10.php:293
541
+ #, fuzzy
542
+ msgid "Thumbnails inline, before title"
543
+ msgstr "Mostra gli articoli con le miniature inline prima del titolo"
544
+
545
+ #: top-10.php:294
546
+ #, fuzzy
547
+ msgid "Thumbnails inline, after title"
548
+ msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
549
+
550
+ #: top-10.php:295
551
+ #, fuzzy
552
+ msgid "Only thumbnails, no text"
553
+ msgstr "Mostra le sole miniature, nessun testo"
554
+
555
+ #: top-10.php:296
556
+ #, fuzzy
557
+ msgid "No thumbnails, only text."
558
+ msgstr "Non mostrare le miniature, solo testo."
559
+
560
+ #: top-10.php:301
561
+ #, fuzzy
562
+ msgid " Show excerpt?"
563
+ msgstr "Desideri mostrare gli estratti?"
564
+
565
+ #: top-10.php:367
566
  msgid "<h3>Popular Posts</h3>"
567
  msgstr "<h3>Articoli più letti</h3>"
568
 
569
+ #: top-10.php:368
570
  msgid "<h3>Daily Popular</h3>"
571
  msgstr "<h3>I più letti di oggi</h3>"
572
 
573
+ #: top-10.php:369
574
+ #, fuzzy
575
+ msgid "No top posts yet"
576
+ msgstr "Ripristino 10 articoli più popolari"
577
+
578
+ #: top-10.php:560
579
+ msgid "Once Weekly"
580
+ msgstr ""
581
+
582
+ #: top-10.php:561
583
+ msgid "Once Fortnightly"
584
+ msgstr ""
585
+
586
+ #: top-10.php:562
587
+ msgid "Once Monthly"
588
+ msgstr ""
589
+
590
+ #: top-10.php:582
591
  msgid "Settings"
592
  msgstr "Impostazioni"
593
 
594
+ #: top-10.php:584
595
  msgid "Donate"
596
  msgstr "Donazione"
597
 
598
+ #~ msgid "Tables cleaned of duplicate rows"
599
+ #~ msgstr "I duplicati sono stati rimossi dalle tabelle"
600
+
601
+ #~ msgid "Display number of views on pages?"
602
+ #~ msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
603
+
604
  #~ msgid ""
605
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
606
+ #~ "added with the count"
 
607
  #~ msgstr ""
608
+ #~ "Desideri mostrare il totale delle visualizzazioni sotto Modifica Articoli/"
609
+ #~ "Pagine in WP-Admin? Se sì, verrà aggiunta una nuova sezione (a nome Top "
610
+ #~ "10) con i conteggi nel dettaglio"
611
+
612
+ #~ msgid ""
613
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
614
+ #~ msgstr "Campo meta per le miniature (il meta deve puntare alla immagine):"
615
+
616
+ #~ msgid "Thumbnail dimensions:"
617
+ #~ msgstr "Dimensione miniature:"
618
+
619
+ #~ msgid "Max width: "
620
+ #~ msgstr "Larghezza massima:"
621
+
622
+ #~ msgid "Max height: "
623
+ #~ msgstr "Altezza massima:"
624
+
625
+ #~ msgid "Top 10 "
626
+ #~ msgstr "Top 10"
627
+
628
+ #~ msgid "Display the posts popular today"
629
+ #~ msgstr "Mostra gli articoli più popolari di oggi"
630
 
631
  #~ msgid "Support forum"
632
  #~ msgstr "Forum di supporto"
languages/tptn-nl_NL.mo CHANGED
Binary file
languages/tptn-nl_NL.po CHANGED
@@ -2,127 +2,175 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:43-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _e;__\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-Language: Dutch\n"
15
- "X-Poedit-Country: NETHERLANDS\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:58
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:67
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op Standaard."
27
 
28
- #: admin.inc.php:73
29
  msgid "Top 10 popular posts reset"
30
  msgstr "Reset Top 10 populaire berichten"
31
 
32
- #: admin.inc.php:79
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Reset Top 10 dagelijkse populaire berichten"
35
 
36
- #: admin.inc.php:86
37
- msgid "Tables cleaned of duplicate rows"
38
- msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
39
-
40
- #: admin.inc.php:98
41
- msgid "Options:"
42
- msgstr "Opties:"
43
-
44
  #: admin.inc.php:103
45
- msgid "Format to display the count in: "
46
- msgstr "Formaat om de optelling te laten zien:"
47
 
48
- #: admin.inc.php:107
49
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
- msgstr "Gebruik <code>%totalcount%</ code> om de totale telling en <code>%dailycount%</ code> om de dagelijkse telling te laten zien. De standaardopties geven bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
51
 
52
- #: admin.inc.php:110
53
  msgid "Number of popular posts to display: "
54
  msgstr "Aantal populaire berichten om weer te geven:"
55
 
56
- #: admin.inc.php:116
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
59
 
60
- #: admin.inc.php:123
61
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
- msgstr "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal bekeken pagina's zal verder worden geteld."
 
 
 
 
 
 
 
 
63
 
64
- #: admin.inc.php:129
65
- msgid "Display number of views on posts?"
 
66
  msgstr "Geef het aantal berichtweergaves weer?"
67
 
68
- #: admin.inc.php:135
69
- msgid "Display number of views on pages?"
70
- msgstr "Geef het aantal paginaweergaves weer?"
71
 
72
- #: admin.inc.php:141
 
 
 
 
 
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
75
 
76
- #: admin.inc.php:147
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
79
 
80
- #: admin.inc.php:153
 
 
 
 
81
  #, fuzzy
82
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
- msgstr "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
 
 
 
 
84
 
85
- #: admin.inc.php:159
86
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
- msgstr "Laat het aantal paginaweergaves zien op de bewerk berichten/pagina's in WP-Admin. Een extra kolom is toegevoegd met de telling"
88
 
89
- #: admin.inc.php:165
90
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
- msgstr "Een link naar de plugin is toegevoegd als een exta item aan de lijst met populaire berichten. Het is niet verplicht, maar wordt ten zeerste gewaardeerd!"
92
 
93
- #: admin.inc.php:169
94
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
95
  msgstr "Output Opties:"
96
 
97
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  msgid "Title of popular posts: "
99
  msgstr "Titel van populaire berichten:"
100
 
101
- #: admin.inc.php:179
102
  msgid "Title of daily popular posts: "
103
  msgstr "Titel van dagelijkse populaire berichten:"
104
 
105
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
106
  msgid "Show post excerpt in list?"
107
  msgstr "Laat bericht samenvatting zien in lijst?"
108
 
109
- #: admin.inc.php:191
110
  msgid "Length of excerpt (in words): "
111
  msgstr "Lengte van de samenvatting (in woorden):"
112
 
113
- #: admin.inc.php:195
114
- msgid "Exclude Categories: "
115
- msgstr ""
116
-
117
- #: admin.inc.php:210
118
  msgid "Customize the output:"
119
  msgstr "Aanpassen van de output:"
120
 
121
- #: admin.inc.php:213
122
  msgid "HTML to display before the list of posts: "
123
  msgstr "Te weergeven HTML voor de lijst met berichten:"
124
 
125
- #: admin.inc.php:219
126
  msgid "HTML to display before each list item: "
127
  msgstr "Te weergeven HTML voor elk lijst item:"
128
 
@@ -130,234 +178,448 @@ msgstr "Te weergeven HTML voor elk lijst item:"
130
  msgid "HTML to display after each list item: "
131
  msgstr "Te weergeven HTML na elk lijst item:"
132
 
133
- #: admin.inc.php:231
134
  msgid "HTML to display after the list of posts: "
135
  msgstr "Te weergeven HTML na de lijst met berichten:"
136
 
137
- #: admin.inc.php:235
138
  msgid "Post thumbnail options:"
139
  msgstr "Bericht miniatuurafbeelding opties:"
140
 
141
- #: admin.inc.php:239
 
 
 
 
142
  #, fuzzy
143
  msgid "Display thumbnails inline with posts, before title"
144
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
145
 
146
- #: admin.inc.php:243
147
  #, fuzzy
148
  msgid "Display thumbnails inline with posts, after title"
149
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
150
 
151
- #: admin.inc.php:247
152
  msgid "Display only thumbnails, no text"
153
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
154
 
155
- #: admin.inc.php:251
156
  msgid "Do not display thumbnails, only text."
157
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
158
 
 
 
 
 
159
  #: admin.inc.php:256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  #, fuzzy
161
- msgid "Post thumbnail meta field (the meta should point to the image source): "
162
- msgstr "Bericht miniatuurafbeelding meta veld (de meta zou moeten verwijzen naar de afbeeldingsbron):"
163
 
164
  #: admin.inc.php:263
165
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
166
- msgstr "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste afbeelding uit het bericht halen. Dit kan het laden van het bericht vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is qua bestandsgrootte"
 
 
 
 
 
 
 
 
 
 
 
 
 
167
 
168
  #: admin.inc.php:266
169
- msgid "Thumbnail dimensions:"
170
- msgstr "Afmetingen miniatuurafbeelding:"
 
 
 
 
 
 
 
171
 
172
  #: admin.inc.php:268
173
- msgid "Max width: "
174
- msgstr "Maximale breedte:"
175
 
176
- #: admin.inc.php:273
177
- msgid "Max height: "
178
- msgstr "Maximale hoogte:"
 
 
179
 
180
- #: admin.inc.php:277
181
- msgid "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."
182
  msgstr ""
183
 
184
- #: admin.inc.php:282
185
- msgid "Do you want to set options to Default?"
186
- msgstr "Wil je de opties terugzetten naar standaard?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
 
188
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgid "Reset count"
190
  msgstr "Reset telling"
191
 
192
- #: admin.inc.php:288
193
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
194
- msgstr "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je database gemaakt hebt voordat je verder gaat"
 
 
 
 
 
 
 
 
 
195
 
196
- #: admin.inc.php:291
197
  msgid "Are you sure you want to reset the popular posts?"
198
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
199
 
200
- #: admin.inc.php:292
 
 
 
 
 
201
  msgid "Are you sure you want to reset the daily popular posts?"
202
- msgstr "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
 
 
 
 
 
203
 
204
- #: admin.inc.php:293
205
  msgid "This will delete the duplicate entries in the tables. Proceed?"
206
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
207
 
208
- #: admin.inc.php:300
209
- #: admin.inc.php:360
210
- msgid "Quick links"
211
- msgstr "Quick links"
 
 
 
 
 
212
 
213
- #: admin.inc.php:302
214
- #: admin.inc.php:362
215
- msgid "Top 10 "
216
- msgstr "Top 10 "
217
 
218
- #: admin.inc.php:302
219
- #: admin.inc.php:362
220
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  msgstr "plugin pagina"
222
 
223
- #: admin.inc.php:303
224
- #: admin.inc.php:363
225
  msgid "Other plugins"
226
  msgstr "Andere plugins"
227
 
228
- #: admin.inc.php:304
229
- #: admin.inc.php:364
230
  msgid "Ajay's blog"
231
  msgstr "De blog van Ajay"
232
 
233
- #: admin.inc.php:305
234
- #: admin.inc.php:365
235
- #: top-10.php:515
236
  msgid "Support"
237
  msgstr "Ondersteuning"
238
 
239
- #: admin.inc.php:306
240
- #: admin.inc.php:366
241
  msgid "Follow @ajaydsouza on Twitter"
242
  msgstr "Volg @ajaydsouza via Twitter"
243
 
244
- #: admin.inc.php:310
245
- #: admin.inc.php:370
246
  msgid "Recent developments"
247
  msgstr "Recente ontwikkelingen"
248
 
249
- #: admin.inc.php:315
250
- #: admin.inc.php:375
251
- msgid "Support the development"
252
- msgstr "Ondersteun de ontwikkeling"
253
-
254
- #: admin.inc.php:323
255
- #: admin.inc.php:383
256
- msgid "Enter amount in USD: "
257
- msgstr "Voer het bedrag in in USD:"
258
-
259
- #: admin.inc.php:327
260
- #: admin.inc.php:387
261
- msgid "Send your donation to the author of"
262
- msgstr "Zend je donatie naar de auteur van "
263
-
264
- #: admin.inc.php:347
265
- #: admin.inc.php:414
266
- #: admin.inc.php:618
267
- #: top-10.php:257
268
- #: top-10.php:273
269
- #: top-10.php:445
270
- #: top-10.php:448
271
- msgid "Popular Posts"
272
- msgstr "Populaire Berichten"
273
-
274
- #: admin.inc.php:347
275
- msgid "Daily Popular Posts"
276
- msgstr "Dagelijkse Populaire Berichten"
277
-
278
- #: admin.inc.php:412
279
- #: admin.inc.php:414
280
  msgid "Top 10"
281
  msgstr "Top 10"
282
 
283
- #: admin.inc.php:526
284
  msgid "Results"
285
  msgstr "Resultaten"
286
 
287
- #: admin.inc.php:528
288
- #: admin.inc.php:534
289
  msgid "of"
290
  msgstr "van"
291
 
292
- #: admin.inc.php:532
293
  msgid "Page"
294
  msgstr "Pagina"
295
 
296
- #: admin.inc.php:546
297
  msgid "View Daily Popular Posts"
298
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
299
 
300
- #: admin.inc.php:550
301
  msgid "View Overall Popular Posts"
302
  msgstr "Bekijk het Totaal Populaire Berichten"
303
 
304
- #: admin.inc.php:554
305
  msgid "Results per-page:"
306
  msgstr "Resultaten per pagina:"
307
 
308
- #: admin.inc.php:578
309
  msgid "Previous"
310
  msgstr "Vorige"
311
 
312
- #: admin.inc.php:596
313
  msgid "Next"
314
  msgstr "Volgende"
315
 
316
- #: admin.inc.php:619
317
- #: top-10.php:219
318
- #: top-10.php:235
319
- #: top-10.php:446
320
- #: top-10.php:449
321
  msgid "Daily Popular"
322
  msgstr "Dagelijks Populair"
323
 
324
- #: admin.inc.php:630
325
  msgid "Total / Today's Views"
326
  msgstr "Totale Weergaves / Weergaves van Vandaag"
327
 
328
- #: top-10.php:218
329
- msgid "Display the posts popular today"
330
  msgstr ""
331
 
332
- #: top-10.php:256
333
- msgid "Display the posts popular this week"
 
 
 
 
334
  msgstr ""
335
 
336
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  msgid "<h3>Popular Posts</h3>"
338
  msgstr "<h3>Populaire Berichten</h3>"
339
 
340
- #: top-10.php:287
341
  msgid "<h3>Daily Popular</h3>"
342
  msgstr "<h3>Dagelijks Populair</h3>"
343
 
344
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  msgid "Settings"
346
  msgstr "Instellingen"
347
 
348
- #: top-10.php:516
349
  msgid "Donate"
350
  msgstr "Doneer"
351
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  #~ msgid ""
353
- #~ "The plugin will first check if the post contains a thumbnail. If it "
354
- #~ "doesn't then it will check the meta field. If this is not available, then "
355
- #~ "it will show the default image as specified below:"
356
  #~ msgstr ""
357
- #~ "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
358
- #~ "bevat. Als het geen miniatuurafbeelding bevat dan zal de plugin het meta "
359
- #~ "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
360
- #~ "standaard afbeelding zoals hieronder aangegeven:"
 
 
 
 
 
 
 
 
 
 
361
 
362
  #~ msgid "Support forum"
363
  #~ msgstr "Ondersteuningsforum"
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
9
+ "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1)\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:75
20
  msgid "Options saved successfully."
21
  msgstr "Opties succesvol opgeslagen."
22
 
23
+ #: admin.inc.php:84
24
  msgid "Options set to Default."
25
  msgstr "Opties ingesteld op Standaard."
26
 
27
+ #: admin.inc.php:90
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Reset Top 10 populaire berichten"
30
 
31
+ #: admin.inc.php:96
32
  msgid "Top 10 daily popular posts reset"
33
  msgstr "Reset Top 10 dagelijkse populaire berichten"
34
 
 
 
 
 
 
 
 
 
35
  #: admin.inc.php:103
36
+ msgid "Duplicate rows cleaned from tables"
37
+ msgstr ""
38
 
39
+ #: admin.inc.php:124
40
+ msgid "General options"
41
+ msgstr ""
42
 
43
+ #: admin.inc.php:127
44
  msgid "Number of popular posts to display: "
45
  msgstr "Aantal populaire berichten om weer te geven:"
46
 
47
+ #: admin.inc.php:130
48
  msgid "Daily Popular should contain views of how many days? "
49
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
50
 
51
+ #: admin.inc.php:133
52
+ msgid ""
53
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
54
+ "continue to be counted."
55
+ msgstr ""
56
+ "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal "
57
+ "bekeken pagina's zal verder worden geteld."
58
+
59
+ #: admin.inc.php:136
60
+ msgid "Exclude Categories: "
61
+ msgstr ""
62
 
63
+ #: admin.inc.php:154
64
+ #, fuzzy
65
+ msgid "Display number of views on:"
66
  msgstr "Geef het aantal berichtweergaves weer?"
67
 
68
+ #: admin.inc.php:155
69
+ msgid "Posts"
70
+ msgstr ""
71
 
72
+ #: admin.inc.php:156
73
+ #, fuzzy
74
+ msgid "Pages"
75
+ msgstr "Pagina"
76
+
77
+ #: admin.inc.php:159
78
  msgid "Track visits of authors on their own posts?"
79
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
80
 
81
+ #: admin.inc.php:163
82
  msgid "Display number of page views in popular lists?"
83
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
84
 
85
+ #: admin.inc.php:167
86
+ msgid "Force daily posts' list to be dynamic?"
87
+ msgstr ""
88
+
89
+ #: admin.inc.php:169
90
  #, fuzzy
91
+ msgid ""
92
+ "This option uses JavaScript to load the post and can increase your page load "
93
+ "time"
94
+ msgstr ""
95
+ "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt "
96
+ "JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
97
 
98
+ #: admin.inc.php:172
99
+ msgid "Display page views on Posts > All Posts in Admin"
100
+ msgstr ""
101
 
102
+ #: admin.inc.php:176
103
+ msgid "Link to Top 10 plugin page"
104
+ msgstr ""
105
 
106
+ #: admin.inc.php:178
107
+ #, fuzzy
108
+ msgid ""
109
+ "A link to the plugin is added as an extra list item to the list of popular "
110
+ "posts"
111
+ msgstr ""
112
+ "Een link naar de plugin is toegevoegd als een exta item aan de lijst met "
113
+ "populaire berichten. Het is niet verplicht, maar wordt ten zeerste "
114
+ "gewaardeerd!"
115
+
116
+ #: admin.inc.php:185
117
+ #, fuzzy
118
+ msgid "Output Options"
119
  msgstr "Output Opties:"
120
 
121
+ #: admin.inc.php:188
122
+ msgid "Format to display the count in: "
123
+ msgstr "Formaat om de optelling te laten zien:"
124
+
125
+ #: admin.inc.php:191
126
+ #, fuzzy
127
+ msgid ""
128
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
129
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
130
+ "display the overall count across all posts on the blog. e.g. the default "
131
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
132
+ msgstr ""
133
+ "Gebruik <code>%totalcount%</ code> om de totale telling en <code>%dailycount"
134
+ "%</ code> om de dagelijkse telling te laten zien. De standaardopties geven "
135
+ "bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
136
+
137
+ #: admin.inc.php:193
138
  msgid "Title of popular posts: "
139
  msgstr "Titel van populaire berichten:"
140
 
141
+ #: admin.inc.php:196
142
  msgid "Title of daily popular posts: "
143
  msgstr "Titel van dagelijkse populaire berichten:"
144
 
145
+ #: admin.inc.php:199
146
+ msgid "When there are no posts, what should be shown?"
147
+ msgstr ""
148
+
149
+ #: admin.inc.php:203
150
+ msgid "Blank Output"
151
+ msgstr ""
152
+
153
+ #: admin.inc.php:207
154
+ msgid "Display:"
155
+ msgstr ""
156
+
157
+ #: admin.inc.php:211
158
  msgid "Show post excerpt in list?"
159
  msgstr "Laat bericht samenvatting zien in lijst?"
160
 
161
+ #: admin.inc.php:214
162
  msgid "Length of excerpt (in words): "
163
  msgstr "Lengte van de samenvatting (in woorden):"
164
 
165
+ #: admin.inc.php:217
 
 
 
 
166
  msgid "Customize the output:"
167
  msgstr "Aanpassen van de output:"
168
 
169
+ #: admin.inc.php:219
170
  msgid "HTML to display before the list of posts: "
171
  msgstr "Te weergeven HTML voor de lijst met berichten:"
172
 
173
+ #: admin.inc.php:222
174
  msgid "HTML to display before each list item: "
175
  msgstr "Te weergeven HTML voor elk lijst item:"
176
 
178
  msgid "HTML to display after each list item: "
179
  msgstr "Te weergeven HTML na elk lijst item:"
180
 
181
+ #: admin.inc.php:228
182
  msgid "HTML to display after the list of posts: "
183
  msgstr "Te weergeven HTML na de lijst met berichten:"
184
 
185
+ #: admin.inc.php:231
186
  msgid "Post thumbnail options:"
187
  msgstr "Bericht miniatuurafbeelding opties:"
188
 
189
+ #: admin.inc.php:233
190
+ msgid "Location of post thumbnail:"
191
+ msgstr ""
192
+
193
+ #: admin.inc.php:237
194
  #, fuzzy
195
  msgid "Display thumbnails inline with posts, before title"
196
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
197
 
198
+ #: admin.inc.php:241
199
  #, fuzzy
200
  msgid "Display thumbnails inline with posts, after title"
201
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
202
 
203
+ #: admin.inc.php:245
204
  msgid "Display only thumbnails, no text"
205
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
206
 
207
+ #: admin.inc.php:249
208
  msgid "Do not display thumbnails, only text."
209
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
210
 
211
+ #: admin.inc.php:253
212
+ msgid "Maximum width of the thumbnail: "
213
+ msgstr ""
214
+
215
  #: admin.inc.php:256
216
+ msgid "Maximum height of the thumbnail: "
217
+ msgstr ""
218
+
219
+ #: admin.inc.php:259
220
+ msgid "Use timthumb to generate thumbnails? "
221
+ msgstr ""
222
+
223
+ #: admin.inc.php:260
224
+ msgid ""
225
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
226
+ "\">timthumb</a> will be used to generate thumbnails"
227
+ msgstr ""
228
+
229
+ #: admin.inc.php:262
230
  #, fuzzy
231
+ msgid "Post thumbnail meta field name: "
232
+ msgstr "Bericht miniatuurafbeelding opties:"
233
 
234
  #: admin.inc.php:263
235
+ msgid ""
236
+ "The value of this field should contain the image source and is set in the "
237
+ "<em>Add New Post</em> screen"
238
+ msgstr ""
239
+
240
+ #: admin.inc.php:265
241
+ #, fuzzy
242
+ msgid ""
243
+ "If the postmeta is not set, then should the plugin extract the first image "
244
+ "from the post?"
245
+ msgstr ""
246
+ "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste "
247
+ "afbeelding uit het bericht halen. Dit kan het laden van het bericht "
248
+ "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
249
+ "qua bestandsgrootte"
250
 
251
  #: admin.inc.php:266
252
+ #, fuzzy
253
+ msgid ""
254
+ "This can slow down the loading of your page if the first image in the "
255
+ "related posts is large in file-size"
256
+ msgstr ""
257
+ "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste "
258
+ "afbeelding uit het bericht halen. Dit kan het laden van het bericht "
259
+ "vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is "
260
+ "qua bestandsgrootte"
261
 
262
  #: admin.inc.php:268
263
+ msgid "Use default thumbnail? "
264
+ msgstr ""
265
 
266
+ #: admin.inc.php:269
267
+ msgid ""
268
+ "If checked, when no thumbnail is found, show a default one from the URL "
269
+ "below. If not checked and no thumbnail is found, no image will be shown."
270
+ msgstr ""
271
 
272
+ #: admin.inc.php:271
273
+ msgid "Default thumbnail: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:272
277
+ #, fuzzy
278
+ msgid ""
279
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
280
+ "then it will check the meta field. If this is not available, then it will "
281
+ "show the default image as specified above"
282
+ msgstr ""
283
+ "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
284
+ "bevat. Als het geen miniatuurafbeelding bevat dan zal de plugin het meta "
285
+ "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
286
+ "standaard afbeelding zoals hieronder aangegeven:"
287
+
288
+ #: admin.inc.php:278
289
+ msgid "Custom Styles"
290
+ msgstr ""
291
+
292
+ #: admin.inc.php:281
293
+ msgid "Custom CSS to add to header:"
294
+ msgstr ""
295
 
296
+ #: admin.inc.php:284
297
+ msgid ""
298
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
299
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
300
+ "available CSS classes to style."
301
+ msgstr ""
302
+
303
+ #: admin.inc.php:289
304
+ msgid "Maintenance"
305
+ msgstr ""
306
+
307
+ #: admin.inc.php:292
308
+ msgid "Enable scheduled maintenance of daily tables:"
309
+ msgstr ""
310
+
311
+ #: admin.inc.php:294
312
+ msgid ""
313
+ "Over time the Daily Top 10 database grows in size, which reduces the "
314
+ "performance of the plugin. Cleaning the database at regular intervals could "
315
+ "improve performance, especially on high traffic blogs"
316
+ msgstr ""
317
+
318
+ #: admin.inc.php:297
319
+ msgid "Time to run maintenance"
320
+ msgstr ""
321
+
322
+ #: admin.inc.php:300
323
+ msgid "How often should the maintenance be run:"
324
+ msgstr ""
325
+
326
+ #: admin.inc.php:304
327
+ msgid "Daily"
328
+ msgstr ""
329
+
330
+ #: admin.inc.php:308
331
+ msgid "Weekly"
332
+ msgstr ""
333
+
334
+ #: admin.inc.php:312
335
+ msgid "Fortnightly"
336
+ msgstr ""
337
+
338
+ #: admin.inc.php:316
339
+ msgid "Monthly"
340
+ msgstr ""
341
+
342
+ #: admin.inc.php:325
343
+ msgid "The cron job has been scheduled. Maintenance will run "
344
+ msgstr ""
345
+
346
+ #: admin.inc.php:330
347
+ msgid "The cron job is missing. Please resave this page to add the job"
348
+ msgstr ""
349
+
350
+ #: admin.inc.php:335
351
+ msgid "Maintenance is turned off"
352
+ msgstr ""
353
+
354
+ #: admin.inc.php:343
355
  msgid "Reset count"
356
  msgstr "Reset telling"
357
 
358
+ #: admin.inc.php:346
359
+ msgid ""
360
+ "This cannot be reversed. Make sure that your database has been backed up "
361
+ "before proceeding"
362
+ msgstr ""
363
+ "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
364
+ "database gemaakt hebt voordat je verder gaat"
365
+
366
+ #: admin.inc.php:349
367
+ #, fuzzy
368
+ msgid "Reset Popular Posts"
369
+ msgstr "Populaire Berichten"
370
 
371
+ #: admin.inc.php:349
372
  msgid "Are you sure you want to reset the popular posts?"
373
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
374
 
375
+ #: admin.inc.php:350
376
+ #, fuzzy
377
+ msgid "Reset Daily Popular Posts"
378
+ msgstr "Dagelijkse Populaire Berichten"
379
+
380
+ #: admin.inc.php:350
381
  msgid "Are you sure you want to reset the daily popular posts?"
382
+ msgstr ""
383
+ "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
384
+
385
+ #: admin.inc.php:351
386
+ msgid "Clear duplicates"
387
+ msgstr ""
388
 
389
+ #: admin.inc.php:351
390
  msgid "This will delete the duplicate entries in the tables. Proceed?"
391
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
392
 
393
+ #: admin.inc.php:355
394
+ #, fuzzy
395
+ msgid "Save Options"
396
+ msgstr "Opties:"
397
+
398
+ #: admin.inc.php:356
399
+ #, fuzzy
400
+ msgid "Default Options"
401
+ msgstr "Output Opties:"
402
 
403
+ #: admin.inc.php:356
404
+ msgid "Do you want to set options to Default?"
405
+ msgstr "Wil je de opties terugzetten naar standaard?"
 
406
 
407
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
408
+ msgid "Popular Posts"
409
+ msgstr "Populaire Berichten"
410
+
411
+ #: admin.inc.php:382
412
+ msgid "Daily Popular Posts"
413
+ msgstr "Dagelijkse Populaire Berichten"
414
+
415
+ #: admin.inc.php:404
416
+ msgid "Support the development"
417
+ msgstr "Ondersteun de ontwikkeling"
418
+
419
+ #: admin.inc.php:412
420
+ msgid "Enter amount in USD: "
421
+ msgstr "Voer het bedrag in in USD:"
422
+
423
+ #: admin.inc.php:416
424
+ msgid "Send your donation to the author of"
425
+ msgstr "Zend je donatie naar de auteur van "
426
+
427
+ #: admin.inc.php:422
428
+ msgid "Follow us on Facebook"
429
+ msgstr ""
430
+
431
+ #: admin.inc.php:426
432
+ #, fuzzy
433
+ msgid "Quick Links"
434
+ msgstr "Quick links"
435
+
436
+ #: admin.inc.php:428
437
+ #, fuzzy
438
+ msgid "Top 10 plugin page"
439
  msgstr "plugin pagina"
440
 
441
+ #: admin.inc.php:429
 
442
  msgid "Other plugins"
443
  msgstr "Andere plugins"
444
 
445
+ #: admin.inc.php:430
 
446
  msgid "Ajay's blog"
447
  msgstr "De blog van Ajay"
448
 
449
+ #: admin.inc.php:431 top-10.php:583
 
 
450
  msgid "Support"
451
  msgstr "Ondersteuning"
452
 
453
+ #: admin.inc.php:432
 
454
  msgid "Follow @ajaydsouza on Twitter"
455
  msgstr "Volg @ajaydsouza via Twitter"
456
 
457
+ #: admin.inc.php:436
 
458
  msgid "Recent developments"
459
  msgstr "Recente ontwikkelingen"
460
 
461
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  msgid "Top 10"
463
  msgstr "Top 10"
464
 
465
+ #: admin.inc.php:575
466
  msgid "Results"
467
  msgstr "Resultaten"
468
 
469
+ #: admin.inc.php:577 admin.inc.php:583
 
470
  msgid "of"
471
  msgstr "van"
472
 
473
+ #: admin.inc.php:581
474
  msgid "Page"
475
  msgstr "Pagina"
476
 
477
+ #: admin.inc.php:595
478
  msgid "View Daily Popular Posts"
479
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
480
 
481
+ #: admin.inc.php:599
482
  msgid "View Overall Popular Posts"
483
  msgstr "Bekijk het Totaal Populaire Berichten"
484
 
485
+ #: admin.inc.php:603
486
  msgid "Results per-page:"
487
  msgstr "Resultaten per pagina:"
488
 
489
+ #: admin.inc.php:627
490
  msgid "Previous"
491
  msgstr "Vorige"
492
 
493
+ #: admin.inc.php:645
494
  msgid "Next"
495
  msgstr "Volgende"
496
 
497
+ #: admin.inc.php:668
 
 
 
 
498
  msgid "Daily Popular"
499
  msgstr "Dagelijks Populair"
500
 
501
+ #: admin.inc.php:679
502
  msgid "Total / Today's Views"
503
  msgstr "Totale Weergaves / Weergaves van Vandaag"
504
 
505
+ #: top-10.php:257
506
+ msgid "Display the posts popular this week"
507
  msgstr ""
508
 
509
+ #: top-10.php:271
510
+ msgid "Title"
511
+ msgstr ""
512
+
513
+ #: top-10.php:276
514
+ msgid "No. of posts"
515
  msgstr ""
516
 
517
+ #: top-10.php:281
518
+ msgid "Overall"
519
+ msgstr ""
520
+
521
+ #: top-10.php:282
522
+ msgid "Custom time period (Enter below)"
523
+ msgstr ""
524
+
525
+ #: top-10.php:287
526
+ msgid "Range in number of days (applies only to custom option above)"
527
+ msgstr ""
528
+
529
+ #: top-10.php:291
530
+ #, fuzzy
531
+ msgid "Thumbnail options"
532
+ msgstr "Bericht miniatuurafbeelding opties:"
533
+
534
+ #: top-10.php:293
535
+ #, fuzzy
536
+ msgid "Thumbnails inline, before title"
537
+ msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
538
+
539
+ #: top-10.php:294
540
+ #, fuzzy
541
+ msgid "Thumbnails inline, after title"
542
+ msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
543
+
544
+ #: top-10.php:295
545
+ #, fuzzy
546
+ msgid "Only thumbnails, no text"
547
+ msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
548
+
549
+ #: top-10.php:296
550
+ #, fuzzy
551
+ msgid "No thumbnails, only text."
552
+ msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
553
+
554
+ #: top-10.php:301
555
+ #, fuzzy
556
+ msgid " Show excerpt?"
557
+ msgstr "Laat bericht samenvatting zien in lijst?"
558
+
559
+ #: top-10.php:367
560
  msgid "<h3>Popular Posts</h3>"
561
  msgstr "<h3>Populaire Berichten</h3>"
562
 
563
+ #: top-10.php:368
564
  msgid "<h3>Daily Popular</h3>"
565
  msgstr "<h3>Dagelijks Populair</h3>"
566
 
567
+ #: top-10.php:369
568
+ #, fuzzy
569
+ msgid "No top posts yet"
570
+ msgstr "Reset Top 10 populaire berichten"
571
+
572
+ #: top-10.php:560
573
+ msgid "Once Weekly"
574
+ msgstr ""
575
+
576
+ #: top-10.php:561
577
+ msgid "Once Fortnightly"
578
+ msgstr ""
579
+
580
+ #: top-10.php:562
581
+ msgid "Once Monthly"
582
+ msgstr ""
583
+
584
+ #: top-10.php:582
585
  msgid "Settings"
586
  msgstr "Instellingen"
587
 
588
+ #: top-10.php:584
589
  msgid "Donate"
590
  msgstr "Doneer"
591
 
592
+ #~ msgid "Tables cleaned of duplicate rows"
593
+ #~ msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
594
+
595
+ #~ msgid "Display number of views on pages?"
596
+ #~ msgstr "Geef het aantal paginaweergaves weer?"
597
+
598
+ #~ msgid ""
599
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
600
+ #~ "added with the count"
601
+ #~ msgstr ""
602
+ #~ "Laat het aantal paginaweergaves zien op de bewerk berichten/pagina's in "
603
+ #~ "WP-Admin. Een extra kolom is toegevoegd met de telling"
604
+
605
+ #, fuzzy
606
  #~ msgid ""
607
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
 
 
608
  #~ msgstr ""
609
+ #~ "Bericht miniatuurafbeelding meta veld (de meta zou moeten verwijzen naar "
610
+ #~ "de afbeeldingsbron):"
611
+
612
+ #~ msgid "Thumbnail dimensions:"
613
+ #~ msgstr "Afmetingen miniatuurafbeelding:"
614
+
615
+ #~ msgid "Max width: "
616
+ #~ msgstr "Maximale breedte:"
617
+
618
+ #~ msgid "Max height: "
619
+ #~ msgstr "Maximale hoogte:"
620
+
621
+ #~ msgid "Top 10 "
622
+ #~ msgstr "Top 10 "
623
 
624
  #~ msgid "Support forum"
625
  #~ msgstr "Ondersteuningsforum"
languages/tptn-ro_RO.mo ADDED
Binary file
languages/tptn-ro_RO.po ADDED
@@ -0,0 +1,616 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Top 10\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
+ "Language-Team: Web Geeks\n"
9
+ "Language: ro_RO\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: admin.inc.php:75
18
+ msgid "Options saved successfully."
19
+ msgstr "Opţiuni salvat cu succes."
20
+
21
+ #: admin.inc.php:84
22
+ msgid "Options set to Default."
23
+ msgstr "Opţiunile setate la valorile implicite."
24
+
25
+ #: admin.inc.php:90
26
+ msgid "Top 10 popular posts reset"
27
+ msgstr "Top 10 populare posturi Resetare"
28
+
29
+ #: admin.inc.php:96
30
+ msgid "Top 10 daily popular posts reset"
31
+ msgstr "Top 10 posturi populare daily Reiniţializare"
32
+
33
+ #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
+
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
+
41
+ #: admin.inc.php:127
42
+ msgid "Number of popular posts to display: "
43
+ msgstr "Numărul de posturi populare pentru a afişa: "
44
+
45
+ #: admin.inc.php:130
46
+ msgid "Daily Popular should contain views of how many days? "
47
+ msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
48
+
49
+ #: admin.inc.php:133
50
+ msgid ""
51
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
52
+ "continue to be counted."
53
+ msgstr ""
54
+ "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe "
55
+ "pagini va continua să fie numărate."
56
+
57
+ #: admin.inc.php:136
58
+ msgid "Exclude Categories: "
59
+ msgstr "Excludeţi categorii: "
60
+
61
+ #: admin.inc.php:154
62
+ #, fuzzy
63
+ msgid "Display number of views on:"
64
+ msgstr "Afişează numărul de vizualizări pe posturi?"
65
+
66
+ #: admin.inc.php:155
67
+ msgid "Posts"
68
+ msgstr ""
69
+
70
+ #: admin.inc.php:156
71
+ #, fuzzy
72
+ msgid "Pages"
73
+ msgstr "Pagină"
74
+
75
+ #: admin.inc.php:159
76
+ msgid "Track visits of authors on their own posts?"
77
+ msgstr "Track vizite de autori pe posturile lor proprii?"
78
+
79
+ #: admin.inc.php:163
80
+ msgid "Display number of page views in popular lists?"
81
+ msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
82
+
83
+ #: admin.inc.php:167
84
+ msgid "Force daily posts' list to be dynamic?"
85
+ msgstr ""
86
+
87
+ #: admin.inc.php:169
88
+ #, fuzzy
89
+ msgid ""
90
+ "This option uses JavaScript to load the post and can increase your page load "
91
+ "time"
92
+ msgstr ""
93
+ "Vigoare lista de zi cu zi de posturi să fie dinamic? Această opţiune "
94
+ "utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare "
95
+ "pagină"
96
+
97
+ #: admin.inc.php:172
98
+ msgid "Display page views on Posts > All Posts in Admin"
99
+ msgstr ""
100
+
101
+ #: admin.inc.php:176
102
+ msgid "Link to Top 10 plugin page"
103
+ msgstr ""
104
+
105
+ #: admin.inc.php:178
106
+ #, fuzzy
107
+ msgid ""
108
+ "A link to the plugin is added as an extra list item to the list of popular "
109
+ "posts"
110
+ msgstr ""
111
+ "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la "
112
+ "lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
113
+
114
+ #: admin.inc.php:185
115
+ #, fuzzy
116
+ msgid "Output Options"
117
+ msgstr "Opţiuni de ieşire:"
118
+
119
+ #: admin.inc.php:188
120
+ msgid "Format to display the count in: "
121
+ msgstr "Format pentru a afişa numărul în: "
122
+
123
+ #: admin.inc.php:191
124
+ #, fuzzy
125
+ msgid ""
126
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
127
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
128
+ "display the overall count across all posts on the blog. e.g. the default "
129
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
130
+ msgstr ""
131
+ "Utilizaţi <code>% totalcount %</code> pentru a afişa numărul total şi <code>"
132
+ "% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează "
133
+ "opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
134
+
135
+ #: admin.inc.php:193
136
+ msgid "Title of popular posts: "
137
+ msgstr "Titlul de posturi populare: "
138
+
139
+ #: admin.inc.php:196
140
+ msgid "Title of daily popular posts: "
141
+ msgstr "Titlul de zi cu zi de posturi populare: "
142
+
143
+ #: admin.inc.php:199
144
+ msgid "When there are no posts, what should be shown?"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:203
148
+ msgid "Blank Output"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:207
152
+ msgid "Display:"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:211
156
+ msgid "Show post excerpt in list?"
157
+ msgstr "Afişează post extras din lista?"
158
+
159
+ #: admin.inc.php:214
160
+ msgid "Length of excerpt (in words): "
161
+ msgstr "Lungimea extras (în cuvinte): "
162
+
163
+ #: admin.inc.php:217
164
+ msgid "Customize the output:"
165
+ msgstr "Personaliza ieşire:"
166
+
167
+ #: admin.inc.php:219
168
+ msgid "HTML to display before the list of posts: "
169
+ msgstr "HTML pentru a afişa înainte de lista de posturi: "
170
+
171
+ #: admin.inc.php:222
172
+ msgid "HTML to display before each list item: "
173
+ msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
174
+
175
+ #: admin.inc.php:225
176
+ msgid "HTML to display after each list item: "
177
+ msgstr "HTML pentru a afişa după fiecare element din listă: "
178
+
179
+ #: admin.inc.php:228
180
+ msgid "HTML to display after the list of posts: "
181
+ msgstr "HTML pentru a afişa după lista de posturi: "
182
+
183
+ #: admin.inc.php:231
184
+ msgid "Post thumbnail options:"
185
+ msgstr "Post Opţiuni pictograme:"
186
+
187
+ #: admin.inc.php:233
188
+ msgid "Location of post thumbnail:"
189
+ msgstr ""
190
+
191
+ #: admin.inc.php:237
192
+ msgid "Display thumbnails inline with posts, before title"
193
+ msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
194
+
195
+ #: admin.inc.php:241
196
+ msgid "Display thumbnails inline with posts, after title"
197
+ msgstr "Afişare miniaturi inline cu posturi, după titlul"
198
+
199
+ #: admin.inc.php:245
200
+ msgid "Display only thumbnails, no text"
201
+ msgstr "Afişa numai miniaturi, nici un text"
202
+
203
+ #: admin.inc.php:249
204
+ msgid "Do not display thumbnails, only text."
205
+ msgstr "Nu se afişează miniaturi, numai textul."
206
+
207
+ #: admin.inc.php:253
208
+ msgid "Maximum width of the thumbnail: "
209
+ msgstr ""
210
+
211
+ #: admin.inc.php:256
212
+ msgid "Maximum height of the thumbnail: "
213
+ msgstr ""
214
+
215
+ #: admin.inc.php:259
216
+ msgid "Use timthumb to generate thumbnails? "
217
+ msgstr ""
218
+
219
+ #: admin.inc.php:260
220
+ msgid ""
221
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
222
+ "\">timthumb</a> will be used to generate thumbnails"
223
+ msgstr ""
224
+
225
+ #: admin.inc.php:262
226
+ #, fuzzy
227
+ msgid "Post thumbnail meta field name: "
228
+ msgstr "Post Opţiuni pictograme:"
229
+
230
+ #: admin.inc.php:263
231
+ msgid ""
232
+ "The value of this field should contain the image source and is set in the "
233
+ "<em>Add New Post</em> screen"
234
+ msgstr ""
235
+
236
+ #: admin.inc.php:265
237
+ #, fuzzy
238
+ msgid ""
239
+ "If the postmeta is not set, then should the plugin extract the first image "
240
+ "from the post?"
241
+ msgstr ""
242
+ "Dacă postmeta nu este setată, apoi trebuie să plugin-ul extrage prima "
243
+ "imagine din post. Acest lucru poate încetini încărcarea de post "
244
+ "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
245
+ "fişier"
246
+
247
+ #: admin.inc.php:266
248
+ #, fuzzy
249
+ msgid ""
250
+ "This can slow down the loading of your page if the first image in the "
251
+ "related posts is large in file-size"
252
+ msgstr ""
253
+ "Dacă postmeta nu este setată, apoi trebuie să plugin-ul extrage prima "
254
+ "imagine din post. Acest lucru poate încetini încărcarea de post "
255
+ "dumneavoastră dacă prima imagine în legate de posturi este mare în mărime "
256
+ "fişier"
257
+
258
+ #: admin.inc.php:268
259
+ msgid "Use default thumbnail? "
260
+ msgstr ""
261
+
262
+ #: admin.inc.php:269
263
+ msgid ""
264
+ "If checked, when no thumbnail is found, show a default one from the URL "
265
+ "below. If not checked and no thumbnail is found, no image will be shown."
266
+ msgstr ""
267
+ "Dacă verificat, atunci când este găsit nici un thumbnail, arată o implicit "
268
+ "la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un "
269
+ "thumbnail, imaginea nu va fi indicat."
270
+
271
+ #: admin.inc.php:271
272
+ msgid "Default thumbnail: "
273
+ msgstr ""
274
+
275
+ #: admin.inc.php:272
276
+ msgid ""
277
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
278
+ "then it will check the meta field. If this is not available, then it will "
279
+ "show the default image as specified above"
280
+ msgstr ""
281
+
282
+ #: admin.inc.php:278
283
+ msgid "Custom Styles"
284
+ msgstr ""
285
+
286
+ #: admin.inc.php:281
287
+ msgid "Custom CSS to add to header:"
288
+ msgstr ""
289
+
290
+ #: admin.inc.php:284
291
+ msgid ""
292
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
293
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
294
+ "available CSS classes to style."
295
+ msgstr ""
296
+
297
+ #: admin.inc.php:289
298
+ msgid "Maintenance"
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:292
302
+ msgid "Enable scheduled maintenance of daily tables:"
303
+ msgstr ""
304
+
305
+ #: admin.inc.php:294
306
+ msgid ""
307
+ "Over time the Daily Top 10 database grows in size, which reduces the "
308
+ "performance of the plugin. Cleaning the database at regular intervals could "
309
+ "improve performance, especially on high traffic blogs"
310
+ msgstr ""
311
+
312
+ #: admin.inc.php:297
313
+ msgid "Time to run maintenance"
314
+ msgstr ""
315
+
316
+ #: admin.inc.php:300
317
+ msgid "How often should the maintenance be run:"
318
+ msgstr ""
319
+
320
+ #: admin.inc.php:304
321
+ msgid "Daily"
322
+ msgstr ""
323
+
324
+ #: admin.inc.php:308
325
+ msgid "Weekly"
326
+ msgstr ""
327
+
328
+ #: admin.inc.php:312
329
+ msgid "Fortnightly"
330
+ msgstr ""
331
+
332
+ #: admin.inc.php:316
333
+ msgid "Monthly"
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:325
337
+ msgid "The cron job has been scheduled. Maintenance will run "
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:330
341
+ msgid "The cron job is missing. Please resave this page to add the job"
342
+ msgstr ""
343
+
344
+ #: admin.inc.php:335
345
+ msgid "Maintenance is turned off"
346
+ msgstr ""
347
+
348
+ #: admin.inc.php:343
349
+ msgid "Reset count"
350
+ msgstr "Reiniţializare count"
351
+
352
+ #: admin.inc.php:346
353
+ msgid ""
354
+ "This cannot be reversed. Make sure that your database has been backed up "
355
+ "before proceeding"
356
+ msgstr ""
357
+ "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
358
+ "înainte de a continua"
359
+
360
+ #: admin.inc.php:349
361
+ #, fuzzy
362
+ msgid "Reset Popular Posts"
363
+ msgstr "Posturi populare"
364
+
365
+ #: admin.inc.php:349
366
+ msgid "Are you sure you want to reset the popular posts?"
367
+ msgstr "Sigur reiniţializaţi posturi populare?"
368
+
369
+ #: admin.inc.php:350
370
+ #, fuzzy
371
+ msgid "Reset Daily Popular Posts"
372
+ msgstr "Posturi populare de zi cu zi"
373
+
374
+ #: admin.inc.php:350
375
+ msgid "Are you sure you want to reset the daily popular posts?"
376
+ msgstr "Sigur reiniţializaţi posturi populare zilnic?"
377
+
378
+ #: admin.inc.php:351
379
+ msgid "Clear duplicates"
380
+ msgstr ""
381
+
382
+ #: admin.inc.php:351
383
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
384
+ msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
385
+
386
+ #: admin.inc.php:355
387
+ #, fuzzy
388
+ msgid "Save Options"
389
+ msgstr "Opţiuni:"
390
+
391
+ #: admin.inc.php:356
392
+ #, fuzzy
393
+ msgid "Default Options"
394
+ msgstr "Opţiuni de ieşire:"
395
+
396
+ #: admin.inc.php:356
397
+ msgid "Do you want to set options to Default?"
398
+ msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
399
+
400
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
401
+ msgid "Popular Posts"
402
+ msgstr "Posturi populare"
403
+
404
+ #: admin.inc.php:382
405
+ msgid "Daily Popular Posts"
406
+ msgstr "Posturi populare de zi cu zi"
407
+
408
+ #: admin.inc.php:404
409
+ msgid "Support the development"
410
+ msgstr "Sprijinirea dezvoltării"
411
+
412
+ #: admin.inc.php:412
413
+ msgid "Enter amount in USD: "
414
+ msgstr "Introduceţi valoarea în USD: "
415
+
416
+ #: admin.inc.php:416
417
+ msgid "Send your donation to the author of"
418
+ msgstr "Trimite donatie autorului"
419
+
420
+ #: admin.inc.php:422
421
+ msgid "Follow us on Facebook"
422
+ msgstr ""
423
+
424
+ #: admin.inc.php:426
425
+ #, fuzzy
426
+ msgid "Quick Links"
427
+ msgstr "Legături rapide pentru"
428
+
429
+ #: admin.inc.php:428
430
+ #, fuzzy
431
+ msgid "Top 10 plugin page"
432
+ msgstr "plug-in pagina"
433
+
434
+ #: admin.inc.php:429
435
+ msgid "Other plugins"
436
+ msgstr "Alte plugin-uri"
437
+
438
+ #: admin.inc.php:430
439
+ msgid "Ajay's blog"
440
+ msgstr "Ajay's blog"
441
+
442
+ #: admin.inc.php:431 top-10.php:583
443
+ msgid "Support"
444
+ msgstr "Suport"
445
+
446
+ #: admin.inc.php:432
447
+ msgid "Follow @ajaydsouza on Twitter"
448
+ msgstr "Urmaţi @ ajaydsouza pe Twitter"
449
+
450
+ #: admin.inc.php:436
451
+ msgid "Recent developments"
452
+ msgstr "Evoluţiile recente"
453
+
454
+ #: admin.inc.php:459 admin.inc.php:461
455
+ msgid "Top 10"
456
+ msgstr "Top 10"
457
+
458
+ #: admin.inc.php:575
459
+ msgid "Results"
460
+ msgstr "Rezultatele"
461
+
462
+ #: admin.inc.php:577 admin.inc.php:583
463
+ msgid "of"
464
+ msgstr "de"
465
+
466
+ #: admin.inc.php:581
467
+ msgid "Page"
468
+ msgstr "Pagină"
469
+
470
+ #: admin.inc.php:595
471
+ msgid "View Daily Popular Posts"
472
+ msgstr "Vizualizare zi posturi populare"
473
+
474
+ #: admin.inc.php:599
475
+ msgid "View Overall Popular Posts"
476
+ msgstr "Vedere de ansamblu posturi populare"
477
+
478
+ #: admin.inc.php:603
479
+ msgid "Results per-page:"
480
+ msgstr "Rezultate pe pagină:"
481
+
482
+ #: admin.inc.php:627
483
+ msgid "Previous"
484
+ msgstr "Anterioară"
485
+
486
+ #: admin.inc.php:645
487
+ msgid "Next"
488
+ msgstr "Următorul"
489
+
490
+ #: admin.inc.php:668
491
+ msgid "Daily Popular"
492
+ msgstr "Daily populare"
493
+
494
+ #: admin.inc.php:679
495
+ msgid "Total / Today's Views"
496
+ msgstr "Total / astăzi lui vizitări"
497
+
498
+ #: top-10.php:257
499
+ msgid "Display the posts popular this week"
500
+ msgstr "Afişa posturi populare în această săptămână"
501
+
502
+ #: top-10.php:271
503
+ msgid "Title"
504
+ msgstr ""
505
+
506
+ #: top-10.php:276
507
+ msgid "No. of posts"
508
+ msgstr ""
509
+
510
+ #: top-10.php:281
511
+ msgid "Overall"
512
+ msgstr ""
513
+
514
+ #: top-10.php:282
515
+ msgid "Custom time period (Enter below)"
516
+ msgstr ""
517
+
518
+ #: top-10.php:287
519
+ msgid "Range in number of days (applies only to custom option above)"
520
+ msgstr ""
521
+
522
+ #: top-10.php:291
523
+ #, fuzzy
524
+ msgid "Thumbnail options"
525
+ msgstr "Post Opţiuni pictograme:"
526
+
527
+ #: top-10.php:293
528
+ #, fuzzy
529
+ msgid "Thumbnails inline, before title"
530
+ msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
531
+
532
+ #: top-10.php:294
533
+ #, fuzzy
534
+ msgid "Thumbnails inline, after title"
535
+ msgstr "Afişare miniaturi inline cu posturi, după titlul"
536
+
537
+ #: top-10.php:295
538
+ #, fuzzy
539
+ msgid "Only thumbnails, no text"
540
+ msgstr "Afişa numai miniaturi, nici un text"
541
+
542
+ #: top-10.php:296
543
+ #, fuzzy
544
+ msgid "No thumbnails, only text."
545
+ msgstr "Nu se afişează miniaturi, numai textul."
546
+
547
+ #: top-10.php:301
548
+ #, fuzzy
549
+ msgid " Show excerpt?"
550
+ msgstr "Afişează post extras din lista?"
551
+
552
+ #: top-10.php:367
553
+ msgid "<h3>Popular Posts</h3>"
554
+ msgstr "<h3>Posturi populare</h3>"
555
+
556
+ #: top-10.php:368
557
+ msgid "<h3>Daily Popular</h3>"
558
+ msgstr "<h3>Daily populare</h3>"
559
+
560
+ #: top-10.php:369
561
+ #, fuzzy
562
+ msgid "No top posts yet"
563
+ msgstr "Top 10 populare posturi Resetare"
564
+
565
+ #: top-10.php:560
566
+ msgid "Once Weekly"
567
+ msgstr ""
568
+
569
+ #: top-10.php:561
570
+ msgid "Once Fortnightly"
571
+ msgstr ""
572
+
573
+ #: top-10.php:562
574
+ msgid "Once Monthly"
575
+ msgstr ""
576
+
577
+ #: top-10.php:582
578
+ msgid "Settings"
579
+ msgstr "Setări"
580
+
581
+ #: top-10.php:584
582
+ msgid "Donate"
583
+ msgstr "Dona"
584
+
585
+ #~ msgid "Tables cleaned of duplicate rows"
586
+ #~ msgstr "Tabelele curățate de rânduri duplicat"
587
+
588
+ #~ msgid "Display number of views on pages?"
589
+ #~ msgstr "Afişează numărul de vizualizări pe pagini?"
590
+
591
+ #~ msgid ""
592
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
593
+ #~ "added with the count"
594
+ #~ msgstr ""
595
+ #~ "Afişarea de vizualizări de pagină pe Editare posturi/pagini în WP-Admin? "
596
+ #~ "O coloană suplimentară se adaugă cu contele"
597
+
598
+ #~ msgid ""
599
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
600
+ #~ msgstr ""
601
+ #~ "Post miniaturi meta câmp (meta ar trebui să punct de imagine sursă): "
602
+
603
+ #~ msgid "Thumbnail dimensions:"
604
+ #~ msgstr "Dimensiunile miniatură:"
605
+
606
+ #~ msgid "Max width: "
607
+ #~ msgstr "Max Lăţime: "
608
+
609
+ #~ msgid "Max height: "
610
+ #~ msgstr "Max înălţime: "
611
+
612
+ #~ msgid "Top 10 "
613
+ #~ msgstr "Top 10 "
614
+
615
+ #~ msgid "Display the posts popular today"
616
+ #~ msgstr "Afişa posturi populare de astăzi"
languages/tptn-ru_RU.mo CHANGED
Binary file
languages/tptn-ru_RU.po CHANGED
@@ -2,124 +2,176 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Russian\n"
13
- "X-Poedit-Country: RUSSIAN FEDERATION\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
- #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
- #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
- #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
- #: admin.inc.php:86
35
- msgid "Tables cleaned of duplicate rows"
36
- msgstr "Все повторяющиеся записи в статистике были удалены"
37
-
38
- #: admin.inc.php:98
39
- msgid "Options:"
40
- msgstr "Настройки плагина:"
41
-
42
  #: admin.inc.php:103
43
- msgid "Format to display the count in: "
44
- msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
45
 
46
- #: admin.inc.php:107
47
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
- msgstr "Используйте <code>%totalcount%</code> чтобы вывести общее число просмотров, а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись просмотрена 123 раза, сегодня просмотров было 23)</code>."
49
 
50
- #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Количество Популярных записей в списке:"
53
 
54
- #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
- msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
 
57
 
58
- #: admin.inc.php:123
59
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
- msgstr "Исключить страницы из списка Популярных записей? Количество просмотров для страниц будет продолжать подсчитываться"
 
 
 
 
61
 
62
- #: admin.inc.php:129
63
- msgid "Display number of views on posts?"
 
 
 
 
 
64
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
65
 
66
- #: admin.inc.php:135
67
- msgid "Display number of views on pages?"
68
- msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
69
 
70
- #: admin.inc.php:141
 
 
 
 
 
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
73
 
74
- #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
- msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
 
77
 
78
- #: admin.inc.php:153
79
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
- msgstr "Сделать список Популярных записей динамичным? Опция использует JavaScript , и это может увеличить время загрузки страниц"
81
 
82
- #: admin.inc.php:159
83
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
- msgstr "Отображать количество просмотров записей/страниц в админке? Для этого будет добавлена отдельная колонка в wp-admin/edit.php"
 
 
 
 
 
85
 
86
- #: admin.inc.php:165
87
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
- msgstr "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был бы очень благодарен Вам, если Вы ее все же оставите!"
89
 
90
- #: admin.inc.php:169
91
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgstr "Настройки плагина:"
93
 
94
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списка Популярных записей:"
97
 
98
- #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списка Популярных сегодня записей:"
101
 
102
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
103
  msgid "Show post excerpt in list?"
104
  msgstr "Показывать текст записи в списке?"
105
 
106
- #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Длина выводимого текста (в словах):"
109
 
110
- #: admin.inc.php:195
111
- msgid "Exclude Categories: "
112
- msgstr "Исключить рубрики:"
113
-
114
- #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Настройки оформления списка:"
117
 
118
- #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML-тег, используемый перед списком:"
121
 
122
- #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
125
 
@@ -127,230 +179,448 @@ msgstr "HTML-тег, используемый перед каждым пункт
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
129
 
130
- #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML-тег, используемый после списка:"
133
 
134
- #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Настройки превью к записям:"
137
 
138
- #: admin.inc.php:239
 
 
 
 
139
  msgid "Display thumbnails inline with posts, before title"
140
  msgstr "Отображать превью к записи сразу перед заголовком"
141
 
142
- #: admin.inc.php:243
143
  msgid "Display thumbnails inline with posts, after title"
144
  msgstr "Отображать превью к записи сразу после заголовка"
145
 
146
- #: admin.inc.php:247
147
  msgid "Display only thumbnails, no text"
148
  msgstr "Отображать только превью, без текста"
149
 
150
- #: admin.inc.php:251
151
  msgid "Do not display thumbnails, only text."
152
  msgstr "Отображать только текст, без превью"
153
 
 
 
 
 
154
  #: admin.inc.php:256
155
- msgid "Post thumbnail meta field (the meta should point to the image source): "
156
- msgstr "Введите сюда название произвольного поля (мета-поле) для вывода превью:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
 
158
  #: admin.inc.php:263
159
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
- msgstr "Если название для мета-поля не установлено, то плагин будет выводить первое изображение из записи. Это может слегка увеличить загрузку в первый раз, так как будет создаваться уменьшенная копия изображения"
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
  #: admin.inc.php:266
163
- msgid "Thumbnail dimensions:"
164
- msgstr "Размеры выводимого изображения (превью):"
 
 
 
 
 
 
165
 
166
  #: admin.inc.php:268
167
- msgid "Max width: "
168
- msgstr "Ширина:"
169
 
170
- #: admin.inc.php:273
171
- msgid "Max height: "
172
- msgstr "Высота:"
 
 
 
 
 
173
 
174
- #: admin.inc.php:277
175
- msgid "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."
176
- msgstr "Если превью к записи не будет найдено автоматичкески, то вместо него будет добавлено стандартное изображение. Если превью задано к записи - будет отображаться только оно."
177
 
178
- #: admin.inc.php:282
179
- msgid "Do you want to set options to Default?"
180
- msgstr "Сбросить настройки плагина?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
 
182
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  msgid "Reset count"
184
  msgstr "Сбросить статистику"
185
 
186
- #: admin.inc.php:288
187
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
- msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
 
 
 
 
 
 
 
 
 
189
 
190
- #: admin.inc.php:291
191
  msgid "Are you sure you want to reset the popular posts?"
192
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
193
 
194
- #: admin.inc.php:292
 
 
 
 
 
195
  msgid "Are you sure you want to reset the daily popular posts?"
196
- msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
 
197
 
198
- #: admin.inc.php:293
 
 
 
 
199
  msgid "This will delete the duplicate entries in the tables. Proceed?"
200
- msgstr "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
 
201
 
202
- #: admin.inc.php:300
203
- #: admin.inc.php:360
204
- msgid "Quick links"
205
- msgstr "Полезные ссылки"
206
 
207
- #: admin.inc.php:302
208
- #: admin.inc.php:362
209
- msgid "Top 10 "
210
- msgstr "Топ 10 записей"
 
 
 
 
 
 
 
 
211
 
212
- #: admin.inc.php:302
213
- #: admin.inc.php:362
214
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  msgstr "страница плагина"
216
 
217
- #: admin.inc.php:303
218
- #: admin.inc.php:363
219
  msgid "Other plugins"
220
  msgstr "Другие плагины автора"
221
 
222
- #: admin.inc.php:304
223
- #: admin.inc.php:364
224
  msgid "Ajay's blog"
225
  msgstr "Блог Ajay"
226
 
227
- #: admin.inc.php:305
228
- #: admin.inc.php:365
229
- #: top-10.php:515
230
  msgid "Support"
231
  msgstr "Поддержка (англ.)"
232
 
233
- #: admin.inc.php:306
234
- #: admin.inc.php:366
235
  msgid "Follow @ajaydsouza on Twitter"
236
  msgstr "Следуй за @ajaydsouza в Twitter"
237
 
238
- #: admin.inc.php:310
239
- #: admin.inc.php:370
240
  msgid "Recent developments"
241
  msgstr "Последние разработки"
242
 
243
- #: admin.inc.php:315
244
- #: admin.inc.php:375
245
- msgid "Support the development"
246
- msgstr "Поддержать автора плагина"
247
-
248
- #: admin.inc.php:323
249
- #: admin.inc.php:383
250
- msgid "Enter amount in USD: "
251
- msgstr "Сколько вы готовы пожертвовать (в USD):"
252
-
253
- #: admin.inc.php:327
254
- #: admin.inc.php:387
255
- msgid "Send your donation to the author of"
256
- msgstr "Отправьте пожертвование автору"
257
-
258
- #: admin.inc.php:347
259
- #: admin.inc.php:414
260
- #: admin.inc.php:618
261
- #: top-10.php:257
262
- #: top-10.php:273
263
- #: top-10.php:445
264
- #: top-10.php:448
265
- msgid "Popular Posts"
266
- msgstr "Популярные записи"
267
-
268
- #: admin.inc.php:347
269
- msgid "Daily Popular Posts"
270
- msgstr "Популярные сегодня записи"
271
-
272
- #: admin.inc.php:412
273
- #: admin.inc.php:414
274
  msgid "Top 10"
275
  msgstr "Топ 10 записей"
276
 
277
- #: admin.inc.php:526
278
  msgid "Results"
279
  msgstr "Результаты"
280
 
281
- #: admin.inc.php:528
282
- #: admin.inc.php:534
283
  msgid "of"
284
  msgstr "из"
285
 
286
- #: admin.inc.php:532
287
  msgid "Page"
288
  msgstr "Страница"
289
 
290
- #: admin.inc.php:546
291
  msgid "View Daily Popular Posts"
292
  msgstr "Посмотреть все Популярные сегодня записи"
293
 
294
- #: admin.inc.php:550
295
  msgid "View Overall Popular Posts"
296
  msgstr "Посмотреть все Популярные записи"
297
 
298
- #: admin.inc.php:554
299
  msgid "Results per-page:"
300
  msgstr "Результатов на страницу:"
301
 
302
- #: admin.inc.php:578
303
  msgid "Previous"
304
  msgstr "Предыдущая страница"
305
 
306
- #: admin.inc.php:596
307
  msgid "Next"
308
  msgstr "Следующая страница"
309
 
310
- #: admin.inc.php:619
311
- #: top-10.php:219
312
- #: top-10.php:235
313
- #: top-10.php:446
314
- #: top-10.php:449
315
  msgid "Daily Popular"
316
  msgstr "Популярные сегодня записи"
317
 
318
- #: admin.inc.php:630
319
  msgid "Total / Today's Views"
320
  msgstr "Всего/Сегодня"
321
 
322
- #: top-10.php:218
323
- msgid "Display the posts popular today"
324
- msgstr "Отображаться списки популярных записей за сутки"
325
-
326
- #: top-10.php:256
327
  msgid "Display the posts popular this week"
328
  msgstr "Отображать списки популярных записей за неделю"
329
 
330
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  msgid "<h3>Popular Posts</h3>"
332
  msgstr "<h3>Популярные записи</h3>"
333
 
334
- #: top-10.php:287
335
  msgid "<h3>Daily Popular</h3>"
336
  msgstr "<h3>Популярные сегодня записи</h3>"
337
 
338
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
339
  msgid "Settings"
340
  msgstr "Настроки плагина"
341
 
342
- #: top-10.php:516
343
  msgid "Donate"
344
  msgstr "Сделать пожертвование"
345
 
 
 
 
 
 
 
346
  #~ msgid ""
347
- #~ "The plugin will first check if the post contains a thumbnail. If it "
348
- #~ "doesn't then it will check the meta field. If this is not available, then "
349
- #~ "it will show the default image as specified below:"
350
  #~ msgstr ""
351
- #~ "В первую очередь, плагин проверит, есть ли у записи превью (проверка по "
352
- #~ "заданному ранее произвольному мета-полю). Если же превью нет - будет "
353
- #~ "выводиться картинка по-умолчанию:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
 
355
  #~ msgid "Support forum"
356
  #~ msgstr "Поддержка (англ.)"
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
9
+ "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Настройки сохранены."
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Настройки сброшены."
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Сбросить статистику популярных записей"
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Сбросить статистику популярных записей за сегодня"
32
 
 
 
 
 
 
 
 
 
33
  #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
 
41
+ #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Количество Популярных записей в списке:"
44
 
45
+ #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
+ msgstr ""
48
+ "За сколько дней считать просмотры для списка Популярных сегодня записей?"
49
 
50
+ #: admin.inc.php:133
51
+ msgid ""
52
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
+ "continue to be counted."
54
+ msgstr ""
55
+ "Исключить страницы из списка Популярных записей? Количество просмотров для "
56
+ "страниц будет продолжать подсчитываться"
57
 
58
+ #: admin.inc.php:136
59
+ msgid "Exclude Categories: "
60
+ msgstr "Исключить рубрики:"
61
+
62
+ #: admin.inc.php:154
63
+ #, fuzzy
64
+ msgid "Display number of views on:"
65
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
66
 
67
+ #: admin.inc.php:155
68
+ msgid "Posts"
69
+ msgstr ""
70
 
71
+ #: admin.inc.php:156
72
+ #, fuzzy
73
+ msgid "Pages"
74
+ msgstr "Страница"
75
+
76
+ #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
+ msgstr ""
83
+ "Показывать количество просмотров записей/страниц в списке Популярных записей?"
84
 
85
+ #: admin.inc.php:167
86
+ msgid "Force daily posts' list to be dynamic?"
87
+ msgstr ""
88
 
89
+ #: admin.inc.php:169
90
+ #, fuzzy
91
+ msgid ""
92
+ "This option uses JavaScript to load the post and can increase your page load "
93
+ "time"
94
+ msgstr ""
95
+ "Сделать список Популярных записей динамичным? Опция использует JavaScript , "
96
+ "и это может увеличить время загрузки страниц"
97
 
98
+ #: admin.inc.php:172
99
+ msgid "Display page views on Posts > All Posts in Admin"
100
+ msgstr ""
101
 
102
+ #: admin.inc.php:176
103
+ msgid "Link to Top 10 plugin page"
104
+ msgstr ""
105
+
106
+ #: admin.inc.php:178
107
+ #, fuzzy
108
+ msgid ""
109
+ "A link to the plugin is added as an extra list item to the list of popular "
110
+ "posts"
111
+ msgstr ""
112
+ "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был "
113
+ "бы очень благодарен Вам, если Вы ее все же оставите!"
114
+
115
+ #: admin.inc.php:185
116
+ #, fuzzy
117
+ msgid "Output Options"
118
  msgstr "Настройки плагина:"
119
 
120
+ #: admin.inc.php:188
121
+ msgid "Format to display the count in: "
122
+ msgstr ""
123
+ "В поле ниже вы можете настроить формат отображения количества просмотров за "
124
+ "день, за все время для записей/страниц:"
125
+
126
+ #: admin.inc.php:191
127
+ #, fuzzy
128
+ msgid ""
129
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
130
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
131
+ "display the overall count across all posts on the blog. e.g. the default "
132
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
133
+ msgstr ""
134
+ "Используйте <code>%totalcount%</code> чтобы вывести общее число просмотров, "
135
+ "а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись "
136
+ "просмотрена 123 раза, сегодня просмотров было 23)</code>."
137
+
138
+ #: admin.inc.php:193
139
  msgid "Title of popular posts: "
140
  msgstr "Заголовок списка Популярных записей:"
141
 
142
+ #: admin.inc.php:196
143
  msgid "Title of daily popular posts: "
144
  msgstr "Заголовок списка Популярных сегодня записей:"
145
 
146
+ #: admin.inc.php:199
147
+ msgid "When there are no posts, what should be shown?"
148
+ msgstr ""
149
+
150
+ #: admin.inc.php:203
151
+ msgid "Blank Output"
152
+ msgstr ""
153
+
154
+ #: admin.inc.php:207
155
+ msgid "Display:"
156
+ msgstr ""
157
+
158
+ #: admin.inc.php:211
159
  msgid "Show post excerpt in list?"
160
  msgstr "Показывать текст записи в списке?"
161
 
162
+ #: admin.inc.php:214
163
  msgid "Length of excerpt (in words): "
164
  msgstr "Длина выводимого текста (в словах):"
165
 
166
+ #: admin.inc.php:217
 
 
 
 
167
  msgid "Customize the output:"
168
  msgstr "Настройки оформления списка:"
169
 
170
+ #: admin.inc.php:219
171
  msgid "HTML to display before the list of posts: "
172
  msgstr "HTML-тег, используемый перед списком:"
173
 
174
+ #: admin.inc.php:222
175
  msgid "HTML to display before each list item: "
176
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
177
 
179
  msgid "HTML to display after each list item: "
180
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
181
 
182
+ #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr "HTML-тег, используемый после списка:"
185
 
186
+ #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr "Настройки превью к записям:"
189
 
190
+ #: admin.inc.php:233
191
+ msgid "Location of post thumbnail:"
192
+ msgstr ""
193
+
194
+ #: admin.inc.php:237
195
  msgid "Display thumbnails inline with posts, before title"
196
  msgstr "Отображать превью к записи сразу перед заголовком"
197
 
198
+ #: admin.inc.php:241
199
  msgid "Display thumbnails inline with posts, after title"
200
  msgstr "Отображать превью к записи сразу после заголовка"
201
 
202
+ #: admin.inc.php:245
203
  msgid "Display only thumbnails, no text"
204
  msgstr "Отображать только превью, без текста"
205
 
206
+ #: admin.inc.php:249
207
  msgid "Do not display thumbnails, only text."
208
  msgstr "Отображать только текст, без превью"
209
 
210
+ #: admin.inc.php:253
211
+ msgid "Maximum width of the thumbnail: "
212
+ msgstr ""
213
+
214
  #: admin.inc.php:256
215
+ msgid "Maximum height of the thumbnail: "
216
+ msgstr ""
217
+
218
+ #: admin.inc.php:259
219
+ msgid "Use timthumb to generate thumbnails? "
220
+ msgstr ""
221
+
222
+ #: admin.inc.php:260
223
+ msgid ""
224
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
225
+ "\">timthumb</a> will be used to generate thumbnails"
226
+ msgstr ""
227
+
228
+ #: admin.inc.php:262
229
+ #, fuzzy
230
+ msgid "Post thumbnail meta field name: "
231
+ msgstr "Настройки превью к записям:"
232
 
233
  #: admin.inc.php:263
234
+ msgid ""
235
+ "The value of this field should contain the image source and is set in the "
236
+ "<em>Add New Post</em> screen"
237
+ msgstr ""
238
+
239
+ #: admin.inc.php:265
240
+ #, fuzzy
241
+ msgid ""
242
+ "If the postmeta is not set, then should the plugin extract the first image "
243
+ "from the post?"
244
+ msgstr ""
245
+ "Если название для мета-поля не установлено, то плагин будет выводить первое "
246
+ "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
247
+ "как будет создаваться уменьшенная копия изображения"
248
 
249
  #: admin.inc.php:266
250
+ #, fuzzy
251
+ msgid ""
252
+ "This can slow down the loading of your page if the first image in the "
253
+ "related posts is large in file-size"
254
+ msgstr ""
255
+ "Если название для мета-поля не установлено, то плагин будет выводить первое "
256
+ "изображение из записи. Это может слегка увеличить загрузку в первый раз, так "
257
+ "как будет создаваться уменьшенная копия изображения"
258
 
259
  #: admin.inc.php:268
260
+ msgid "Use default thumbnail? "
261
+ msgstr ""
262
 
263
+ #: admin.inc.php:269
264
+ msgid ""
265
+ "If checked, when no thumbnail is found, show a default one from the URL "
266
+ "below. If not checked and no thumbnail is found, no image will be shown."
267
+ msgstr ""
268
+ "Если превью к записи не будет найдено автоматичкески, то вместо него будет "
269
+ "добавлено стандартное изображение. Если превью задано к записи - будет "
270
+ "отображаться только оно."
271
 
272
+ #: admin.inc.php:271
273
+ msgid "Default thumbnail: "
274
+ msgstr ""
275
 
276
+ #: admin.inc.php:272
277
+ #, fuzzy
278
+ msgid ""
279
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
280
+ "then it will check the meta field. If this is not available, then it will "
281
+ "show the default image as specified above"
282
+ msgstr ""
283
+ "В первую очередь, плагин проверит, есть ли у записи превью (проверка по "
284
+ "заданному ранее произвольному мета-полю). Если же превью нет - будет "
285
+ "выводиться картинка по-умолчанию:"
286
+
287
+ #: admin.inc.php:278
288
+ msgid "Custom Styles"
289
+ msgstr ""
290
+
291
+ #: admin.inc.php:281
292
+ msgid "Custom CSS to add to header:"
293
+ msgstr ""
294
 
295
+ #: admin.inc.php:284
296
+ msgid ""
297
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
298
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
299
+ "available CSS classes to style."
300
+ msgstr ""
301
+
302
+ #: admin.inc.php:289
303
+ msgid "Maintenance"
304
+ msgstr ""
305
+
306
+ #: admin.inc.php:292
307
+ msgid "Enable scheduled maintenance of daily tables:"
308
+ msgstr ""
309
+
310
+ #: admin.inc.php:294
311
+ msgid ""
312
+ "Over time the Daily Top 10 database grows in size, which reduces the "
313
+ "performance of the plugin. Cleaning the database at regular intervals could "
314
+ "improve performance, especially on high traffic blogs"
315
+ msgstr ""
316
+
317
+ #: admin.inc.php:297
318
+ msgid "Time to run maintenance"
319
+ msgstr ""
320
+
321
+ #: admin.inc.php:300
322
+ msgid "How often should the maintenance be run:"
323
+ msgstr ""
324
+
325
+ #: admin.inc.php:304
326
+ msgid "Daily"
327
+ msgstr ""
328
+
329
+ #: admin.inc.php:308
330
+ msgid "Weekly"
331
+ msgstr ""
332
+
333
+ #: admin.inc.php:312
334
+ msgid "Fortnightly"
335
+ msgstr ""
336
+
337
+ #: admin.inc.php:316
338
+ msgid "Monthly"
339
+ msgstr ""
340
+
341
+ #: admin.inc.php:325
342
+ msgid "The cron job has been scheduled. Maintenance will run "
343
+ msgstr ""
344
+
345
+ #: admin.inc.php:330
346
+ msgid "The cron job is missing. Please resave this page to add the job"
347
+ msgstr ""
348
+
349
+ #: admin.inc.php:335
350
+ msgid "Maintenance is turned off"
351
+ msgstr ""
352
+
353
+ #: admin.inc.php:343
354
  msgid "Reset count"
355
  msgstr "Сбросить статистику"
356
 
357
+ #: admin.inc.php:346
358
+ msgid ""
359
+ "This cannot be reversed. Make sure that your database has been backed up "
360
+ "before proceeding"
361
+ msgstr ""
362
+ "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
363
+ "убедитесь, что у вас есть копия вашей базы данных!"
364
+
365
+ #: admin.inc.php:349
366
+ #, fuzzy
367
+ msgid "Reset Popular Posts"
368
+ msgstr "Популярные записи"
369
 
370
+ #: admin.inc.php:349
371
  msgid "Are you sure you want to reset the popular posts?"
372
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
373
 
374
+ #: admin.inc.php:350
375
+ #, fuzzy
376
+ msgid "Reset Daily Popular Posts"
377
+ msgstr "Популярные сегодня записи"
378
+
379
+ #: admin.inc.php:350
380
  msgid "Are you sure you want to reset the daily popular posts?"
381
+ msgstr ""
382
+ "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
383
 
384
+ #: admin.inc.php:351
385
+ msgid "Clear duplicates"
386
+ msgstr ""
387
+
388
+ #: admin.inc.php:351
389
  msgid "This will delete the duplicate entries in the tables. Proceed?"
390
+ msgstr ""
391
+ "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
392
 
393
+ #: admin.inc.php:355
394
+ #, fuzzy
395
+ msgid "Save Options"
396
+ msgstr "Настройки плагина:"
397
 
398
+ #: admin.inc.php:356
399
+ #, fuzzy
400
+ msgid "Default Options"
401
+ msgstr "Настройки плагина:"
402
+
403
+ #: admin.inc.php:356
404
+ msgid "Do you want to set options to Default?"
405
+ msgstr "Сбросить настройки плагина?"
406
+
407
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
408
+ msgid "Popular Posts"
409
+ msgstr "Популярные записи"
410
 
411
+ #: admin.inc.php:382
412
+ msgid "Daily Popular Posts"
413
+ msgstr "Популярные сегодня записи"
414
+
415
+ #: admin.inc.php:404
416
+ msgid "Support the development"
417
+ msgstr "Поддержать автора плагина"
418
+
419
+ #: admin.inc.php:412
420
+ msgid "Enter amount in USD: "
421
+ msgstr "Сколько вы готовы пожертвовать (в USD):"
422
+
423
+ #: admin.inc.php:416
424
+ msgid "Send your donation to the author of"
425
+ msgstr "Отправьте пожертвование автору"
426
+
427
+ #: admin.inc.php:422
428
+ msgid "Follow us on Facebook"
429
+ msgstr ""
430
+
431
+ #: admin.inc.php:426
432
+ #, fuzzy
433
+ msgid "Quick Links"
434
+ msgstr "Полезные ссылки"
435
+
436
+ #: admin.inc.php:428
437
+ #, fuzzy
438
+ msgid "Top 10 plugin page"
439
  msgstr "страница плагина"
440
 
441
+ #: admin.inc.php:429
 
442
  msgid "Other plugins"
443
  msgstr "Другие плагины автора"
444
 
445
+ #: admin.inc.php:430
 
446
  msgid "Ajay's blog"
447
  msgstr "Блог Ajay"
448
 
449
+ #: admin.inc.php:431 top-10.php:583
 
 
450
  msgid "Support"
451
  msgstr "Поддержка (англ.)"
452
 
453
+ #: admin.inc.php:432
 
454
  msgid "Follow @ajaydsouza on Twitter"
455
  msgstr "Следуй за @ajaydsouza в Twitter"
456
 
457
+ #: admin.inc.php:436
 
458
  msgid "Recent developments"
459
  msgstr "Последние разработки"
460
 
461
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  msgid "Top 10"
463
  msgstr "Топ 10 записей"
464
 
465
+ #: admin.inc.php:575
466
  msgid "Results"
467
  msgstr "Результаты"
468
 
469
+ #: admin.inc.php:577 admin.inc.php:583
 
470
  msgid "of"
471
  msgstr "из"
472
 
473
+ #: admin.inc.php:581
474
  msgid "Page"
475
  msgstr "Страница"
476
 
477
+ #: admin.inc.php:595
478
  msgid "View Daily Popular Posts"
479
  msgstr "Посмотреть все Популярные сегодня записи"
480
 
481
+ #: admin.inc.php:599
482
  msgid "View Overall Popular Posts"
483
  msgstr "Посмотреть все Популярные записи"
484
 
485
+ #: admin.inc.php:603
486
  msgid "Results per-page:"
487
  msgstr "Результатов на страницу:"
488
 
489
+ #: admin.inc.php:627
490
  msgid "Previous"
491
  msgstr "Предыдущая страница"
492
 
493
+ #: admin.inc.php:645
494
  msgid "Next"
495
  msgstr "Следующая страница"
496
 
497
+ #: admin.inc.php:668
 
 
 
 
498
  msgid "Daily Popular"
499
  msgstr "Популярные сегодня записи"
500
 
501
+ #: admin.inc.php:679
502
  msgid "Total / Today's Views"
503
  msgstr "Всего/Сегодня"
504
 
505
+ #: top-10.php:257
 
 
 
 
506
  msgid "Display the posts popular this week"
507
  msgstr "Отображать списки популярных записей за неделю"
508
 
509
+ #: top-10.php:271
510
+ msgid "Title"
511
+ msgstr ""
512
+
513
+ #: top-10.php:276
514
+ msgid "No. of posts"
515
+ msgstr ""
516
+
517
+ #: top-10.php:281
518
+ msgid "Overall"
519
+ msgstr ""
520
+
521
+ #: top-10.php:282
522
+ msgid "Custom time period (Enter below)"
523
+ msgstr ""
524
+
525
+ #: top-10.php:287
526
+ msgid "Range in number of days (applies only to custom option above)"
527
+ msgstr ""
528
+
529
+ #: top-10.php:291
530
+ #, fuzzy
531
+ msgid "Thumbnail options"
532
+ msgstr "Настройки превью к записям:"
533
+
534
+ #: top-10.php:293
535
+ #, fuzzy
536
+ msgid "Thumbnails inline, before title"
537
+ msgstr "Отображать превью к записи сразу перед заголовком"
538
+
539
+ #: top-10.php:294
540
+ #, fuzzy
541
+ msgid "Thumbnails inline, after title"
542
+ msgstr "Отображать превью к записи сразу после заголовка"
543
+
544
+ #: top-10.php:295
545
+ #, fuzzy
546
+ msgid "Only thumbnails, no text"
547
+ msgstr "Отображать только превью, без текста"
548
+
549
+ #: top-10.php:296
550
+ #, fuzzy
551
+ msgid "No thumbnails, only text."
552
+ msgstr "Отображать только текст, без превью"
553
+
554
+ #: top-10.php:301
555
+ #, fuzzy
556
+ msgid " Show excerpt?"
557
+ msgstr "Показывать текст записи в списке?"
558
+
559
+ #: top-10.php:367
560
  msgid "<h3>Popular Posts</h3>"
561
  msgstr "<h3>Популярные записи</h3>"
562
 
563
+ #: top-10.php:368
564
  msgid "<h3>Daily Popular</h3>"
565
  msgstr "<h3>Популярные сегодня записи</h3>"
566
 
567
+ #: top-10.php:369
568
+ #, fuzzy
569
+ msgid "No top posts yet"
570
+ msgstr "Сбросить статистику популярных записей"
571
+
572
+ #: top-10.php:560
573
+ msgid "Once Weekly"
574
+ msgstr ""
575
+
576
+ #: top-10.php:561
577
+ msgid "Once Fortnightly"
578
+ msgstr ""
579
+
580
+ #: top-10.php:562
581
+ msgid "Once Monthly"
582
+ msgstr ""
583
+
584
+ #: top-10.php:582
585
  msgid "Settings"
586
  msgstr "Настроки плагина"
587
 
588
+ #: top-10.php:584
589
  msgid "Donate"
590
  msgstr "Сделать пожертвование"
591
 
592
+ #~ msgid "Tables cleaned of duplicate rows"
593
+ #~ msgstr "Все повторяющиеся записи в статистике были удалены"
594
+
595
+ #~ msgid "Display number of views on pages?"
596
+ #~ msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
597
+
598
  #~ msgid ""
599
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
600
+ #~ "added with the count"
 
601
  #~ msgstr ""
602
+ #~ "Отображать количество просмотров записей/страниц в админке? Для этого "
603
+ #~ "будет добавлена отдельная колонка в wp-admin/edit.php"
604
+
605
+ #~ msgid ""
606
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
607
+ #~ msgstr ""
608
+ #~ "Введите сюда название произвольного поля (мета-поле) для вывода превью:"
609
+
610
+ #~ msgid "Thumbnail dimensions:"
611
+ #~ msgstr "Размеры выводимого изображения (превью):"
612
+
613
+ #~ msgid "Max width: "
614
+ #~ msgstr "Ширина:"
615
+
616
+ #~ msgid "Max height: "
617
+ #~ msgstr "Высота:"
618
+
619
+ #~ msgid "Top 10 "
620
+ #~ msgstr "Топ 10 записей"
621
+
622
+ #~ msgid "Display the posts popular today"
623
+ #~ msgstr "Отображаться списки популярных записей за сутки"
624
 
625
  #~ msgid "Support forum"
626
  #~ msgstr "Поддержка (англ.)"
languages/tptn-ua_UA.mo CHANGED
Binary file
languages/tptn-ua_UA.po CHANGED
@@ -2,124 +2,176 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-10 08:43-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Ukrainian\n"
13
- "X-Poedit-Country: UKRAINE\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Установки збережені."
21
 
22
- #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Установки скинуті."
25
 
26
- #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Скинути статистику найпопулярніших записів"
29
 
30
- #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
33
 
34
- #: admin.inc.php:86
35
- msgid "Tables cleaned of duplicate rows"
36
- msgstr "Все повторювані записи в статистиці були видалені"
37
-
38
- #: admin.inc.php:98
39
- msgid "Options:"
40
- msgstr "Установки плагіна:"
41
-
42
  #: admin.inc.php:103
43
- msgid "Format to display the count in: "
44
- msgstr "У полі нижче ви можете налаштувати формат відображення кількості переглядів за день, за весь час для записів/сторінок:"
45
 
46
- #: admin.inc.php:107
47
- msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
- msgstr "Використовуйте <code>%totalcount%</code> щоб вивести загальне число переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: <code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
49
 
50
- #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Кількість Популярних записів у списку:"
53
 
54
- #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
- msgstr "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
 
57
 
58
- #: admin.inc.php:123
59
- msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
- msgstr "Виключити сторінки зі списку Популярних записів? Кількість переглядів для сторінок продовжуватиме підраховуватися"
 
 
 
 
 
 
 
 
61
 
62
- #: admin.inc.php:129
63
- msgid "Display number of views on posts?"
 
64
  msgstr "Показувати кількість переглядів запису?"
65
 
66
- #: admin.inc.php:135
67
- msgid "Display number of views on pages?"
68
- msgstr "Показувати кількість переглядів сторінки?"
69
 
70
- #: admin.inc.php:141
 
 
 
 
 
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
73
 
74
- #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
- msgstr "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
 
77
 
78
- #: admin.inc.php:153
79
- msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
- msgstr "Зробити список Популярних записів динамічним? Опція використовує JavaScript, і це може збільшити час завантаження сторінок"
81
 
82
- #: admin.inc.php:159
83
- msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
- msgstr "Показувати кількість переглядів записів/сторінок в адмінці? Для цього буде додана окрема колонка в wp-admin/edit.php"
 
 
 
 
 
85
 
86
- #: admin.inc.php:165
87
- msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
- msgstr "Залишити посилання на плагін під списками Популярних записів? Автор плагіна був би дуже вдячний Вам, якщо Ви її все ж залишите!"
89
 
90
- #: admin.inc.php:169
91
- msgid "Output Options:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  msgstr "Установки плагіна:"
93
 
94
- #: admin.inc.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списку Популярних записів:"
97
 
98
- #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списку Популярних сьогодні записів:"
101
 
102
- #: admin.inc.php:186
 
 
 
 
 
 
 
 
 
 
 
 
103
  msgid "Show post excerpt in list?"
104
  msgstr "Показувати текст запису в списку?"
105
 
106
- #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Довжина виведеного тексту (в словах):"
109
 
110
- #: admin.inc.php:195
111
- msgid "Exclude Categories: "
112
- msgstr "Виключити Категорії:"
113
-
114
- #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Установки оформлення списку:"
117
 
118
- #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML-тег, який використовується перед списком:"
121
 
122
- #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
125
 
@@ -127,232 +179,442 @@ msgstr "HTML-тег, який використовується перед кож
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
129
 
130
- #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML-тег, який використовується після списку:"
133
 
134
- #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Установки превью до записів:"
137
 
138
- #: admin.inc.php:239
 
 
 
 
139
  #, fuzzy
140
  msgid "Display thumbnails inline with posts, before title"
141
  msgstr "Відображати і превью, і текст"
142
 
143
- #: admin.inc.php:243
144
  #, fuzzy
145
  msgid "Display thumbnails inline with posts, after title"
146
  msgstr "Відображати і превью, і текст"
147
 
148
- #: admin.inc.php:247
149
  msgid "Display only thumbnails, no text"
150
  msgstr "Показувати тільки превью, без тексту"
151
 
152
- #: admin.inc.php:251
153
  msgid "Do not display thumbnails, only text."
154
  msgstr "Показувати лише текст, без превью"
155
 
 
 
 
 
156
  #: admin.inc.php:256
157
- msgid "Post thumbnail meta field (the meta should point to the image source): "
158
- msgstr "Ввести назву довільного поля (мета-поле) для виведення превью:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
  #: admin.inc.php:263
161
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
162
- msgstr "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше зображення із запису. Це може злегка збільшити завантаження в перший раз, так як буде створюватися зменшена копія зображення"
 
 
 
 
 
 
 
 
 
 
 
 
163
 
164
  #: admin.inc.php:266
165
- msgid "Thumbnail dimensions:"
166
- msgstr "Розміри виведеного зображення (превью):"
 
 
 
 
 
 
167
 
168
  #: admin.inc.php:268
169
- msgid "Max width: "
170
- msgstr "Ширина:"
 
 
 
 
 
 
171
 
172
- #: admin.inc.php:273
173
- msgid "Max height: "
174
- msgstr "Висота:"
175
 
176
- #: admin.inc.php:277
177
- msgid "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."
 
 
 
 
178
  msgstr ""
 
 
 
179
 
180
- #: admin.inc.php:282
181
- msgid "Do you want to set options to Default?"
182
- msgstr "Скинути налаштування плагіна?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
 
184
- #: admin.inc.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  msgid "Reset count"
186
  msgstr "Скинути статистику"
187
 
188
- #: admin.inc.php:288
189
- msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
190
- msgstr "Скидання статистики не може бути обернена. Перед тим, як скидати все, переконайтесь, що у вас є копія вашої бази даних!"
 
 
 
 
191
 
192
- #: admin.inc.php:291
 
 
 
 
 
193
  msgid "Are you sure you want to reset the popular posts?"
194
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
195
 
196
- #: admin.inc.php:292
 
 
 
 
 
197
  msgid "Are you sure you want to reset the daily popular posts?"
198
- msgstr "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
 
199
 
200
- #: admin.inc.php:293
 
 
 
 
201
  msgid "This will delete the duplicate entries in the tables. Proceed?"
202
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
203
 
204
- #: admin.inc.php:300
205
- #: admin.inc.php:360
206
- msgid "Quick links"
207
- msgstr "Корисні посилання"
208
 
209
- #: admin.inc.php:302
210
- #: admin.inc.php:362
211
- msgid "Top 10 "
212
- msgstr "Топ 10 записів"
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
- #: admin.inc.php:302
215
- #: admin.inc.php:362
216
- msgid "plugin page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  msgstr "Сторінка плагіна"
218
 
219
- #: admin.inc.php:303
220
- #: admin.inc.php:363
221
  msgid "Other plugins"
222
  msgstr "Інші плагіни автора"
223
 
224
- #: admin.inc.php:304
225
- #: admin.inc.php:364
226
  msgid "Ajay's blog"
227
  msgstr "Блог Ajay"
228
 
229
- #: admin.inc.php:305
230
- #: admin.inc.php:365
231
- #: top-10.php:515
232
  msgid "Support"
233
  msgstr "Підтримка (англ.)"
234
 
235
- #: admin.inc.php:306
236
- #: admin.inc.php:366
237
  msgid "Follow @ajaydsouza on Twitter"
238
  msgstr "Йди за @ajaydsouza в Twitter"
239
 
240
- #: admin.inc.php:310
241
- #: admin.inc.php:370
242
  msgid "Recent developments"
243
  msgstr "Останні розробки"
244
 
245
- #: admin.inc.php:315
246
- #: admin.inc.php:375
247
- msgid "Support the development"
248
- msgstr "Підтримати автора плагіна"
249
-
250
- #: admin.inc.php:323
251
- #: admin.inc.php:383
252
- msgid "Enter amount in USD: "
253
- msgstr "Скільки ви готові пожертвувати (в USD):"
254
-
255
- #: admin.inc.php:327
256
- #: admin.inc.php:387
257
- msgid "Send your donation to the author of"
258
- msgstr "Відправте пожертву автору"
259
-
260
- #: admin.inc.php:347
261
- #: admin.inc.php:414
262
- #: admin.inc.php:618
263
- #: top-10.php:257
264
- #: top-10.php:273
265
- #: top-10.php:445
266
- #: top-10.php:448
267
- msgid "Popular Posts"
268
- msgstr "Популярні записи"
269
-
270
- #: admin.inc.php:347
271
- msgid "Daily Popular Posts"
272
- msgstr "Популярні сьогодні записи"
273
-
274
- #: admin.inc.php:412
275
- #: admin.inc.php:414
276
  msgid "Top 10"
277
  msgstr "Топ 10 записів"
278
 
279
- #: admin.inc.php:526
280
  msgid "Results"
281
  msgstr "Результати"
282
 
283
- #: admin.inc.php:528
284
- #: admin.inc.php:534
285
  msgid "of"
286
  msgstr "з"
287
 
288
- #: admin.inc.php:532
289
  msgid "Page"
290
  msgstr "Сторінка"
291
 
292
- #: admin.inc.php:546
293
  msgid "View Daily Popular Posts"
294
  msgstr "Подивитися всі Популярні сьогодні записи"
295
 
296
- #: admin.inc.php:550
297
  msgid "View Overall Popular Posts"
298
  msgstr "Подивитися всі Популярні записи"
299
 
300
- #: admin.inc.php:554
301
  msgid "Results per-page:"
302
  msgstr "Результатів на сторінку:"
303
 
304
- #: admin.inc.php:578
305
  msgid "Previous"
306
  msgstr "Попередня сторінка"
307
 
308
- #: admin.inc.php:596
309
  msgid "Next"
310
  msgstr "Наступна сторінка"
311
 
312
- #: admin.inc.php:619
313
- #: top-10.php:219
314
- #: top-10.php:235
315
- #: top-10.php:446
316
- #: top-10.php:449
317
  msgid "Daily Popular"
318
  msgstr "Популярні сьогодні записи"
319
 
320
- #: admin.inc.php:630
321
  msgid "Total / Today's Views"
322
  msgstr "Всього/Сьогодні"
323
 
324
- #: top-10.php:218
325
- msgid "Display the posts popular today"
326
  msgstr ""
327
 
328
- #: top-10.php:256
329
- msgid "Display the posts popular this week"
330
  msgstr ""
331
 
332
- #: top-10.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  msgid "<h3>Popular Posts</h3>"
334
  msgstr "<h3>Популярні записи</h3>"
335
 
336
- #: top-10.php:287
337
  msgid "<h3>Daily Popular</h3>"
338
  msgstr "<h3>Популярні сьогодні записи</h3>"
339
 
340
- #: top-10.php:514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  msgid "Settings"
342
  msgstr "Налаштування плагіна"
343
 
344
- #: top-10.php:516
345
  msgid "Donate"
346
  msgstr "Зробити внесок"
347
 
 
 
 
 
 
 
348
  #~ msgid ""
349
- #~ "The plugin will first check if the post contains a thumbnail. If it "
350
- #~ "doesn't then it will check the meta field. If this is not available, then "
351
- #~ "it will show the default image as specified below:"
352
  #~ msgstr ""
353
- #~ "У першу чергу, плагін перевірить, чи є у запису превью (перевірка по "
354
- #~ "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка "
355
- #~ "за замовчунням:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
 
357
  #~ msgid "Support forum"
358
  #~ msgstr "Підтримка (англ.)"
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-08-12 16:56-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
9
+ "Language: uk_UA\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
 
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:75
18
  msgid "Options saved successfully."
19
  msgstr "Установки збережені."
20
 
21
+ #: admin.inc.php:84
22
  msgid "Options set to Default."
23
  msgstr "Установки скинуті."
24
 
25
+ #: admin.inc.php:90
26
  msgid "Top 10 popular posts reset"
27
  msgstr "Скинути статистику найпопулярніших записів"
28
 
29
+ #: admin.inc.php:96
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
32
 
 
 
 
 
 
 
 
 
33
  #: admin.inc.php:103
34
+ msgid "Duplicate rows cleaned from tables"
35
+ msgstr ""
36
 
37
+ #: admin.inc.php:124
38
+ msgid "General options"
39
+ msgstr ""
40
 
41
+ #: admin.inc.php:127
42
  msgid "Number of popular posts to display: "
43
  msgstr "Кількість Популярних записів у списку:"
44
 
45
+ #: admin.inc.php:130
46
  msgid "Daily Popular should contain views of how many days? "
47
+ msgstr ""
48
+ "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
49
 
50
+ #: admin.inc.php:133
51
+ msgid ""
52
+ "Exclude Pages in display of Popular Posts? Number of views on Pages will "
53
+ "continue to be counted."
54
+ msgstr ""
55
+ "Виключити сторінки зі списку Популярних записів? Кількість переглядів для "
56
+ "сторінок продовжуватиме підраховуватися"
57
+
58
+ #: admin.inc.php:136
59
+ msgid "Exclude Categories: "
60
+ msgstr "Виключити Категорії:"
61
 
62
+ #: admin.inc.php:154
63
+ #, fuzzy
64
+ msgid "Display number of views on:"
65
  msgstr "Показувати кількість переглядів запису?"
66
 
67
+ #: admin.inc.php:155
68
+ msgid "Posts"
69
+ msgstr ""
70
 
71
+ #: admin.inc.php:156
72
+ #, fuzzy
73
+ msgid "Pages"
74
+ msgstr "Сторінка"
75
+
76
+ #: admin.inc.php:159
77
  msgid "Track visits of authors on their own posts?"
78
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
79
 
80
+ #: admin.inc.php:163
81
  msgid "Display number of page views in popular lists?"
82
+ msgstr ""
83
+ "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
84
 
85
+ #: admin.inc.php:167
86
+ msgid "Force daily posts' list to be dynamic?"
87
+ msgstr ""
88
 
89
+ #: admin.inc.php:169
90
+ #, fuzzy
91
+ msgid ""
92
+ "This option uses JavaScript to load the post and can increase your page load "
93
+ "time"
94
+ msgstr ""
95
+ "Зробити список Популярних записів динамічним? Опція використовує JavaScript, "
96
+ "і це може збільшити час завантаження сторінок"
97
 
98
+ #: admin.inc.php:172
99
+ msgid "Display page views on Posts > All Posts in Admin"
100
+ msgstr ""
101
 
102
+ #: admin.inc.php:176
103
+ msgid "Link to Top 10 plugin page"
104
+ msgstr ""
105
+
106
+ #: admin.inc.php:178
107
+ #, fuzzy
108
+ msgid ""
109
+ "A link to the plugin is added as an extra list item to the list of popular "
110
+ "posts"
111
+ msgstr ""
112
+ "Залишити посилання на плагін під списками Популярних записів? Автор плагіна "
113
+ "був би дуже вдячний Вам, якщо Ви її все ж залишите!"
114
+
115
+ #: admin.inc.php:185
116
+ #, fuzzy
117
+ msgid "Output Options"
118
  msgstr "Установки плагіна:"
119
 
120
+ #: admin.inc.php:188
121
+ msgid "Format to display the count in: "
122
+ msgstr ""
123
+ "У полі нижче ви можете налаштувати формат відображення кількості переглядів "
124
+ "за день, за весь час для записів/сторінок:"
125
+
126
+ #: admin.inc.php:191
127
+ #, fuzzy
128
+ msgid ""
129
+ "Use <code>%totalcount%</code> to display the total count, <code>%dailycount"
130
+ "%</code> to display the daily count and <code>%overallcount%</code> to "
131
+ "display the overall count across all posts on the blog. e.g. the default "
132
+ "options displays <code>(Visited 123 times, 23 visits today)</code>"
133
+ msgstr ""
134
+ "Використовуйте <code>%totalcount%</code> щоб вивести загальне число "
135
+ "переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: "
136
+ "<code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
137
+
138
+ #: admin.inc.php:193
139
  msgid "Title of popular posts: "
140
  msgstr "Заголовок списку Популярних записів:"
141
 
142
+ #: admin.inc.php:196
143
  msgid "Title of daily popular posts: "
144
  msgstr "Заголовок списку Популярних сьогодні записів:"
145
 
146
+ #: admin.inc.php:199
147
+ msgid "When there are no posts, what should be shown?"
148
+ msgstr ""
149
+
150
+ #: admin.inc.php:203
151
+ msgid "Blank Output"
152
+ msgstr ""
153
+
154
+ #: admin.inc.php:207
155
+ msgid "Display:"
156
+ msgstr ""
157
+
158
+ #: admin.inc.php:211
159
  msgid "Show post excerpt in list?"
160
  msgstr "Показувати текст запису в списку?"
161
 
162
+ #: admin.inc.php:214
163
  msgid "Length of excerpt (in words): "
164
  msgstr "Довжина виведеного тексту (в словах):"
165
 
166
+ #: admin.inc.php:217
 
 
 
 
167
  msgid "Customize the output:"
168
  msgstr "Установки оформлення списку:"
169
 
170
+ #: admin.inc.php:219
171
  msgid "HTML to display before the list of posts: "
172
  msgstr "HTML-тег, який використовується перед списком:"
173
 
174
+ #: admin.inc.php:222
175
  msgid "HTML to display before each list item: "
176
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
177
 
179
  msgid "HTML to display after each list item: "
180
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
181
 
182
+ #: admin.inc.php:228
183
  msgid "HTML to display after the list of posts: "
184
  msgstr "HTML-тег, який використовується після списку:"
185
 
186
+ #: admin.inc.php:231
187
  msgid "Post thumbnail options:"
188
  msgstr "Установки превью до записів:"
189
 
190
+ #: admin.inc.php:233
191
+ msgid "Location of post thumbnail:"
192
+ msgstr ""
193
+
194
+ #: admin.inc.php:237
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, before title"
197
  msgstr "Відображати і превью, і текст"
198
 
199
+ #: admin.inc.php:241
200
  #, fuzzy
201
  msgid "Display thumbnails inline with posts, after title"
202
  msgstr "Відображати і превью, і текст"
203
 
204
+ #: admin.inc.php:245
205
  msgid "Display only thumbnails, no text"
206
  msgstr "Показувати тільки превью, без тексту"
207
 
208
+ #: admin.inc.php:249
209
  msgid "Do not display thumbnails, only text."
210
  msgstr "Показувати лише текст, без превью"
211
 
212
+ #: admin.inc.php:253
213
+ msgid "Maximum width of the thumbnail: "
214
+ msgstr ""
215
+
216
  #: admin.inc.php:256
217
+ msgid "Maximum height of the thumbnail: "
218
+ msgstr ""
219
+
220
+ #: admin.inc.php:259
221
+ msgid "Use timthumb to generate thumbnails? "
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:260
225
+ msgid ""
226
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
227
+ "\">timthumb</a> will be used to generate thumbnails"
228
+ msgstr ""
229
+
230
+ #: admin.inc.php:262
231
+ #, fuzzy
232
+ msgid "Post thumbnail meta field name: "
233
+ msgstr "Установки превью до записів:"
234
 
235
  #: admin.inc.php:263
236
+ msgid ""
237
+ "The value of this field should contain the image source and is set in the "
238
+ "<em>Add New Post</em> screen"
239
+ msgstr ""
240
+
241
+ #: admin.inc.php:265
242
+ #, fuzzy
243
+ msgid ""
244
+ "If the postmeta is not set, then should the plugin extract the first image "
245
+ "from the post?"
246
+ msgstr ""
247
+ "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше "
248
+ "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
249
+ "так як буде створюватися зменшена копія зображення"
250
 
251
  #: admin.inc.php:266
252
+ #, fuzzy
253
+ msgid ""
254
+ "This can slow down the loading of your page if the first image in the "
255
+ "related posts is large in file-size"
256
+ msgstr ""
257
+ "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше "
258
+ "зображення із запису. Це може злегка збільшити завантаження в перший раз, "
259
+ "так як буде створюватися зменшена копія зображення"
260
 
261
  #: admin.inc.php:268
262
+ msgid "Use default thumbnail? "
263
+ msgstr ""
264
+
265
+ #: admin.inc.php:269
266
+ msgid ""
267
+ "If checked, when no thumbnail is found, show a default one from the URL "
268
+ "below. If not checked and no thumbnail is found, no image will be shown."
269
+ msgstr ""
270
 
271
+ #: admin.inc.php:271
272
+ msgid "Default thumbnail: "
273
+ msgstr ""
274
 
275
+ #: admin.inc.php:272
276
+ #, fuzzy
277
+ msgid ""
278
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
279
+ "then it will check the meta field. If this is not available, then it will "
280
+ "show the default image as specified above"
281
  msgstr ""
282
+ "У першу чергу, плагін перевірить, чи є у запису превью (перевірка по "
283
+ "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за "
284
+ "замовчунням:"
285
 
286
+ #: admin.inc.php:278
287
+ msgid "Custom Styles"
288
+ msgstr ""
289
+
290
+ #: admin.inc.php:281
291
+ msgid "Custom CSS to add to header:"
292
+ msgstr ""
293
+
294
+ #: admin.inc.php:284
295
+ msgid ""
296
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
297
+ "wordpress.org/extend/plugins/top-10/faq/\" target=\"_blank\">FAQ</a> for "
298
+ "available CSS classes to style."
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:289
302
+ msgid "Maintenance"
303
+ msgstr ""
304
 
305
+ #: admin.inc.php:292
306
+ msgid "Enable scheduled maintenance of daily tables:"
307
+ msgstr ""
308
+
309
+ #: admin.inc.php:294
310
+ msgid ""
311
+ "Over time the Daily Top 10 database grows in size, which reduces the "
312
+ "performance of the plugin. Cleaning the database at regular intervals could "
313
+ "improve performance, especially on high traffic blogs"
314
+ msgstr ""
315
+
316
+ #: admin.inc.php:297
317
+ msgid "Time to run maintenance"
318
+ msgstr ""
319
+
320
+ #: admin.inc.php:300
321
+ msgid "How often should the maintenance be run:"
322
+ msgstr ""
323
+
324
+ #: admin.inc.php:304
325
+ msgid "Daily"
326
+ msgstr ""
327
+
328
+ #: admin.inc.php:308
329
+ msgid "Weekly"
330
+ msgstr ""
331
+
332
+ #: admin.inc.php:312
333
+ msgid "Fortnightly"
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:316
337
+ msgid "Monthly"
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:325
341
+ msgid "The cron job has been scheduled. Maintenance will run "
342
+ msgstr ""
343
+
344
+ #: admin.inc.php:330
345
+ msgid "The cron job is missing. Please resave this page to add the job"
346
+ msgstr ""
347
+
348
+ #: admin.inc.php:335
349
+ msgid "Maintenance is turned off"
350
+ msgstr ""
351
+
352
+ #: admin.inc.php:343
353
  msgid "Reset count"
354
  msgstr "Скинути статистику"
355
 
356
+ #: admin.inc.php:346
357
+ msgid ""
358
+ "This cannot be reversed. Make sure that your database has been backed up "
359
+ "before proceeding"
360
+ msgstr ""
361
+ "Скидання статистики не може бути обернена. Перед тим, як скидати все, "
362
+ "переконайтесь, що у вас є копія вашої бази даних!"
363
 
364
+ #: admin.inc.php:349
365
+ #, fuzzy
366
+ msgid "Reset Popular Posts"
367
+ msgstr "Популярні записи"
368
+
369
+ #: admin.inc.php:349
370
  msgid "Are you sure you want to reset the popular posts?"
371
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
372
 
373
+ #: admin.inc.php:350
374
+ #, fuzzy
375
+ msgid "Reset Daily Popular Posts"
376
+ msgstr "Популярні сьогодні записи"
377
+
378
+ #: admin.inc.php:350
379
  msgid "Are you sure you want to reset the daily popular posts?"
380
+ msgstr ""
381
+ "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
382
 
383
+ #: admin.inc.php:351
384
+ msgid "Clear duplicates"
385
+ msgstr ""
386
+
387
+ #: admin.inc.php:351
388
  msgid "This will delete the duplicate entries in the tables. Proceed?"
389
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
390
 
391
+ #: admin.inc.php:355
392
+ #, fuzzy
393
+ msgid "Save Options"
394
+ msgstr "Установки плагіна:"
395
 
396
+ #: admin.inc.php:356
397
+ #, fuzzy
398
+ msgid "Default Options"
399
+ msgstr "Установки плагіна:"
400
+
401
+ #: admin.inc.php:356
402
+ msgid "Do you want to set options to Default?"
403
+ msgstr "Скинути налаштування плагіна?"
404
+
405
+ #: admin.inc.php:382 admin.inc.php:461 admin.inc.php:667 top-10.php:258
406
+ msgid "Popular Posts"
407
+ msgstr "Популярні записи"
408
+
409
+ #: admin.inc.php:382
410
+ msgid "Daily Popular Posts"
411
+ msgstr "Популярні сьогодні записи"
412
 
413
+ #: admin.inc.php:404
414
+ msgid "Support the development"
415
+ msgstr "Підтримати автора плагіна"
416
+
417
+ #: admin.inc.php:412
418
+ msgid "Enter amount in USD: "
419
+ msgstr "Скільки ви готові пожертвувати (в USD):"
420
+
421
+ #: admin.inc.php:416
422
+ msgid "Send your donation to the author of"
423
+ msgstr "Відправте пожертву автору"
424
+
425
+ #: admin.inc.php:422
426
+ msgid "Follow us on Facebook"
427
+ msgstr ""
428
+
429
+ #: admin.inc.php:426
430
+ #, fuzzy
431
+ msgid "Quick Links"
432
+ msgstr "Корисні посилання"
433
+
434
+ #: admin.inc.php:428
435
+ #, fuzzy
436
+ msgid "Top 10 plugin page"
437
  msgstr "Сторінка плагіна"
438
 
439
+ #: admin.inc.php:429
 
440
  msgid "Other plugins"
441
  msgstr "Інші плагіни автора"
442
 
443
+ #: admin.inc.php:430
 
444
  msgid "Ajay's blog"
445
  msgstr "Блог Ajay"
446
 
447
+ #: admin.inc.php:431 top-10.php:583
 
 
448
  msgid "Support"
449
  msgstr "Підтримка (англ.)"
450
 
451
+ #: admin.inc.php:432
 
452
  msgid "Follow @ajaydsouza on Twitter"
453
  msgstr "Йди за @ajaydsouza в Twitter"
454
 
455
+ #: admin.inc.php:436
 
456
  msgid "Recent developments"
457
  msgstr "Останні розробки"
458
 
459
+ #: admin.inc.php:459 admin.inc.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
460
  msgid "Top 10"
461
  msgstr "Топ 10 записів"
462
 
463
+ #: admin.inc.php:575
464
  msgid "Results"
465
  msgstr "Результати"
466
 
467
+ #: admin.inc.php:577 admin.inc.php:583
 
468
  msgid "of"
469
  msgstr "з"
470
 
471
+ #: admin.inc.php:581
472
  msgid "Page"
473
  msgstr "Сторінка"
474
 
475
+ #: admin.inc.php:595
476
  msgid "View Daily Popular Posts"
477
  msgstr "Подивитися всі Популярні сьогодні записи"
478
 
479
+ #: admin.inc.php:599
480
  msgid "View Overall Popular Posts"
481
  msgstr "Подивитися всі Популярні записи"
482
 
483
+ #: admin.inc.php:603
484
  msgid "Results per-page:"
485
  msgstr "Результатів на сторінку:"
486
 
487
+ #: admin.inc.php:627
488
  msgid "Previous"
489
  msgstr "Попередня сторінка"
490
 
491
+ #: admin.inc.php:645
492
  msgid "Next"
493
  msgstr "Наступна сторінка"
494
 
495
+ #: admin.inc.php:668
 
 
 
 
496
  msgid "Daily Popular"
497
  msgstr "Популярні сьогодні записи"
498
 
499
+ #: admin.inc.php:679
500
  msgid "Total / Today's Views"
501
  msgstr "Всього/Сьогодні"
502
 
503
+ #: top-10.php:257
504
+ msgid "Display the posts popular this week"
505
  msgstr ""
506
 
507
+ #: top-10.php:271
508
+ msgid "Title"
509
  msgstr ""
510
 
511
+ #: top-10.php:276
512
+ msgid "No. of posts"
513
+ msgstr ""
514
+
515
+ #: top-10.php:281
516
+ msgid "Overall"
517
+ msgstr ""
518
+
519
+ #: top-10.php:282
520
+ msgid "Custom time period (Enter below)"
521
+ msgstr ""
522
+
523
+ #: top-10.php:287
524
+ msgid "Range in number of days (applies only to custom option above)"
525
+ msgstr ""
526
+
527
+ #: top-10.php:291
528
+ #, fuzzy
529
+ msgid "Thumbnail options"
530
+ msgstr "Установки превью до записів:"
531
+
532
+ #: top-10.php:293
533
+ #, fuzzy
534
+ msgid "Thumbnails inline, before title"
535
+ msgstr "Відображати і превью, і текст"
536
+
537
+ #: top-10.php:294
538
+ #, fuzzy
539
+ msgid "Thumbnails inline, after title"
540
+ msgstr "Відображати і превью, і текст"
541
+
542
+ #: top-10.php:295
543
+ #, fuzzy
544
+ msgid "Only thumbnails, no text"
545
+ msgstr "Показувати тільки превью, без тексту"
546
+
547
+ #: top-10.php:296
548
+ #, fuzzy
549
+ msgid "No thumbnails, only text."
550
+ msgstr "Показувати лише текст, без превью"
551
+
552
+ #: top-10.php:301
553
+ #, fuzzy
554
+ msgid " Show excerpt?"
555
+ msgstr "Показувати текст запису в списку?"
556
+
557
+ #: top-10.php:367
558
  msgid "<h3>Popular Posts</h3>"
559
  msgstr "<h3>Популярні записи</h3>"
560
 
561
+ #: top-10.php:368
562
  msgid "<h3>Daily Popular</h3>"
563
  msgstr "<h3>Популярні сьогодні записи</h3>"
564
 
565
+ #: top-10.php:369
566
+ #, fuzzy
567
+ msgid "No top posts yet"
568
+ msgstr "Скинути статистику найпопулярніших записів"
569
+
570
+ #: top-10.php:560
571
+ msgid "Once Weekly"
572
+ msgstr ""
573
+
574
+ #: top-10.php:561
575
+ msgid "Once Fortnightly"
576
+ msgstr ""
577
+
578
+ #: top-10.php:562
579
+ msgid "Once Monthly"
580
+ msgstr ""
581
+
582
+ #: top-10.php:582
583
  msgid "Settings"
584
  msgstr "Налаштування плагіна"
585
 
586
+ #: top-10.php:584
587
  msgid "Donate"
588
  msgstr "Зробити внесок"
589
 
590
+ #~ msgid "Tables cleaned of duplicate rows"
591
+ #~ msgstr "Все повторювані записи в статистиці були видалені"
592
+
593
+ #~ msgid "Display number of views on pages?"
594
+ #~ msgstr "Показувати кількість переглядів сторінки?"
595
+
596
  #~ msgid ""
597
+ #~ "Display page views on Edit posts/pages in WP-Admin? An extra column is "
598
+ #~ "added with the count"
 
599
  #~ msgstr ""
600
+ #~ "Показувати кількість переглядів записів/сторінок в адмінці? Для цього "
601
+ #~ "буде додана окрема колонка в wp-admin/edit.php"
602
+
603
+ #~ msgid ""
604
+ #~ "Post thumbnail meta field (the meta should point to the image source): "
605
+ #~ msgstr "Ввести назву довільного поля (мета-поле) для виведення превью:"
606
+
607
+ #~ msgid "Thumbnail dimensions:"
608
+ #~ msgstr "Розміри виведеного зображення (превью):"
609
+
610
+ #~ msgid "Max width: "
611
+ #~ msgstr "Ширина:"
612
+
613
+ #~ msgid "Max height: "
614
+ #~ msgstr "Висота:"
615
+
616
+ #~ msgid "Top 10 "
617
+ #~ msgstr "Топ 10 записів"
618
 
619
  #~ msgid "Support forum"
620
  #~ msgstr "Підтримка (англ.)"
readme.txt CHANGED
@@ -1,10 +1,11 @@
1
  === Top 10 ===
2
  Tags: top 10, counter, popular posts, top posts, daily popular, page views, statistics
3
- Contributors: Ajay, Mark Ghosh
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
- Requires at least: 2.5
7
- Tested up to: 3.4
 
8
 
9
 
10
  Track daily and total visits on your blog posts and display the count as well as popular posts.
@@ -17,29 +18,52 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
17
 
18
  = Features =
19
  * Counts daily and total page views on single posts and pages
20
- * Display the count on the single posts and pages
21
- * Customize the text that can be displayed
22
  * Display a list of daily and/or overall popular posts by page count. You can choose how many posts are to be displayed
 
 
 
 
 
23
  * Sidebar widgets available for daily popular and overall popular posts
24
  * Exclude posts from select categories from appearing in the top posts list
25
- * View list of daily and/or overall popular posts from within the dashboard itself
 
 
26
  * Clean uninstall if you choose to delete the plugin from within WP-Admin
27
- * Works with caching plugins like WP-Super-Cache and W3 Total Cache
28
- * Display post thumbnails or text or both
29
 
30
  == Screenshots ==
31
 
32
- 1. Top-10 options in WP-Admin
 
 
 
 
33
 
34
 
35
  == Upgrade Notice ==
36
 
37
- = 1.8.1 =
38
- * Fixed: Dashboard widgets linking
39
 
40
 
41
  == Changelog ==
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  = 1.8.1 =
44
  * Fixed: Dashboard widgets linking
45
 
@@ -134,31 +158,83 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
134
 
135
  3. Activate the Plugin in WP-Admin.
136
 
137
- 4. Goto Settings > Top 10 to configure
138
 
139
- 5. Goto Appearance > Widgets to add the Popular Posts sidebar widget to your theme
140
 
141
- 6. Goto Posts > Top 10 to view the list of popular posts
142
 
143
 
144
 
145
  == Frequently Asked Questions ==
146
 
147
- = What are the requirements for this plugin? =
 
 
 
 
 
 
148
 
149
- WordPress 2.5 or above
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
 
151
  = Can this plugin replace Google Analytics? =
152
 
153
  Never. This plugin is designed to only track the number of pageviews on your blog posts and display the same. It cannot replace Google Analytics or any other full fledged statistics application.
154
 
155
- = Can I customize what is displayed? =
156
 
157
- All options can be customized within the Options page in WP-Admin itself
158
 
159
- For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-10/
 
 
 
 
 
 
 
 
160
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
- = Support =
163
 
164
- Read how you can receive support for this plugin at http://ajaydsouza.com/support
1
  === Top 10 ===
2
  Tags: top 10, counter, popular posts, top posts, daily popular, page views, statistics
3
+ Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
+ Requires at least: 3.0
7
+ Tested up to: 3.5
8
+ License: GPLv2 or later
9
 
10
 
11
  Track daily and total visits on your blog posts and display the count as well as popular posts.
18
 
19
  = Features =
20
  * Counts daily and total page views on single posts and pages
21
+ * Display the count on the single posts and/or pages. Customize the text that can be displayed
 
22
  * Display a list of daily and/or overall popular posts by page count. You can choose how many posts are to be displayed
23
+ * Thumbnail support
24
+ * Support for WordPress post thumbnails
25
+ * Auto-extract the first image in your post to be displayed as a thumbnail
26
+ * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
27
+ * Use timthumb to resize images
28
  * Sidebar widgets available for daily popular and overall popular posts
29
  * Exclude posts from select categories from appearing in the top posts list
30
+ * View list of daily and/or overall popular posts from within the dashboard
31
+ * Output wrapped in CSS classes that allows you to style the list. You can enter your custom CSS styles from within WordPress Admin area
32
+ * Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
33
  * Clean uninstall if you choose to delete the plugin from within WP-Admin
34
+ * Works with caching plugins like WP-Super-Cache, W3 Total Cache or Quick Cache
35
+
36
 
37
  == Screenshots ==
38
 
39
+ 1. Top-10 options - General options
40
+ 2. Top-10 options - Output options
41
+ 3. Top-10 options - Custom styles
42
+ 4. Top-10 options - Maintenance
43
+ 5. Top-10 widget options
44
 
45
 
46
  == Upgrade Notice ==
47
 
48
+ = 1.9 =
49
+ * Timthumb support; performance tweaks; cleaner settings page; new dashboard widget; new default thumbnail; custom CSS; scheduled maintenance and more...
50
 
51
 
52
  == Changelog ==
53
 
54
+ = 1.9 =
55
+ * Added: Option to use timthumb to resize thumbnails
56
+ * Added: New variable **%overallcount%** that will display the total pageviews on the blog across all posts
57
+ * Added: Post thumbnails are now properly resized based on width and height settings in the Top 10 settings page
58
+ * Added: Customise what to display when there are no top posts detected
59
+ * Added: New scheduled maintenance to clear up daily tables and optimise performance
60
+ * Added: Custom CSS code to style the output. Check out the available styles in the <a href="http://wordpress.org/extend/plugins/top-10/faq/">FAQ</a>.
61
+ * Modified: New "default.png" file based on from KDE’s <a href="http://www.oxygen-icons.org/">Oxygen icon set</a>
62
+ * Modified: Dashboard list of posts now displays all the top posts and pages instead of the filtered list based on Settings.
63
+ * Modified: Dashboard widget now has options to customise the widget. Old widgets have been deleted
64
+ * Modified: When fetching the first image, plugin ignores external images
65
+ * Modified: Minor performance tweaks
66
+
67
  = 1.8.1 =
68
  * Fixed: Dashboard widgets linking
69
 
158
 
159
  3. Activate the Plugin in WP-Admin.
160
 
161
+ 4. Goto **Settings &raquo; Top 10** to configure
162
 
163
+ 5. Goto **Appearance &raquo; Widgets** to add the Popular Posts sidebar widget to your theme
164
 
165
+ 6. Goto **Posts &raquo; Top 10** to view the list of popular posts
166
 
167
 
168
 
169
  == Frequently Asked Questions ==
170
 
171
+ If your question isn't listed here, please post a comment at the <a href="http://wordpress.org/support/plugin/top-10">WordPress.org support forum</a>. I monitor the forums on an ongoing basis. If you're looking for more advanced support, please see <a href="http://ajaydsouza.com/support/">details here</a>.
172
+
173
+ = How can I customise the output? =
174
+
175
+ Several customization options are available via the Settings page in WordPress Admin. You can access this via <strong>Settings &raquo; Top 10</strong>
176
+
177
+ The plugin also provides you with a set of CSS classes that allow you to style your posts by adding code to the *style.css* sheet. In a future version, I will be adding in CSS support within the plugins Settings page.
178
 
179
+ The following CSS classes / IDs are available:
180
+
181
+ * **tptn_related**: ID of the main wrapper `div`. This is only displayed on singular pages, i.e. post, page and attachment
182
+
183
+ * **tptn_related**: Class of the main wrapper `div`. If you are displaying the related posts on non-singular pages, then you should style this
184
+
185
+ * **tptn_title**: Class of the `span` tag for title of the post
186
+
187
+ * **tptn_excerpt**: Class of the `span` tag for excerpt (if included)
188
+
189
+ * **tptn_thumb**: Class of the post thumbnail `img` tag
190
+
191
+ For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-10/
192
+
193
+ = How does the plugin select thumbnails? =
194
+
195
+ The plugin selects thumbnails in the following order:
196
+
197
+ 1. Post Thumbnail image: The image that you can set while editing your post in WordPress &raquo; New Post screen
198
+
199
+ 2. Post meta field: This is the meta field value you can use when editing your post. The default is `post-image`
200
+
201
+ 3. First image in the post: The plugin will try to fetch the first image in the post
202
+
203
+ 3. Video Thumbnails: Meta field set by <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a>
204
+
205
+ 4. Default Thumbnail: If enabled, it will use the default thumbnail that you specify in the Settings screen
206
+
207
+ The plugin uses <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> to generate thumbnails by default. Depending on the configuration of your webhost you might run into certain problems. Please check out <a href="http://www.binarymoon.co.uk/2010/11/timthumb-hints-tips/">the timthumb troubleshooting page</a> regarding permission settings for the folder and files.
208
 
209
  = Can this plugin replace Google Analytics? =
210
 
211
  Never. This plugin is designed to only track the number of pageviews on your blog posts and display the same. It cannot replace Google Analytics or any other full fledged statistics application.
212
 
213
+ = Manual install =
214
 
215
+ You may choose to not display the post count automatically. If you do so, then in order to display the post count, you will need to add `<?php if(function_exists('echo_tptn_post_count')) echo_tptn_post_count(); ?>`.
216
 
217
+ In order to display the most popular posts, you will need to add `<?php if(function_exists('tptn_show_pop_posts')) tptn_show_pop_posts(); ?>`.
218
+
219
+ In order to display the most popular posts, you will need to add `<?php if(function_exists('tptn_show_daily_pop_posts')) tptn_show_daily_pop_posts(); ?>`.
220
+
221
+ You can also use the WordPress Widgets to display the popular posts in your sidebar / other widgetized areas of your theme.
222
+
223
+ == Wishlist ==
224
+
225
+ Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
226
 
227
+ * Select random posts if there are no similar posts
228
+ * Top posts by comments
229
+ * Smart tracking of hits, i.e. no update on page reload of same visitors within a certain time period
230
+ * Shortcode support
231
+ * Exclude display on select categories and tags
232
+ * Exclude display on select posts
233
+ * Custom post support
234
+ * Multi-site support
235
+ * Ready-made styles
236
+ * Upload your own default thumbnail
237
+ * Retain select historic data when running the scheduled maintenance
238
 
239
+ If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/top-10">posting in this forum</a>.
240
 
 
screenshot-1.gif DELETED
Binary file
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file
screenshot-4.png ADDED
Binary file
screenshot-5.png ADDED
Binary file
tabber/example.css ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
2
+
3
+ /*--------------------------------------------------
4
+ REQUIRED to hide the non-active tab content.
5
+ But do not hide them in the print stylesheet!
6
+ --------------------------------------------------*/
7
+ .tabberlive .tabbertabhide {
8
+ display:none;
9
+ }
10
+
11
+ /*--------------------------------------------------
12
+ .tabber = before the tabber interface is set up
13
+ .tabberlive = after the tabber interface is set up
14
+ --------------------------------------------------*/
15
+ .tabber {
16
+ }
17
+ .tabberlive {
18
+ margin-top:1em;
19
+ }
20
+
21
+ /*--------------------------------------------------
22
+ ul.tabbernav = the tab navigation list
23
+ li.tabberactive = the active tab
24
+ --------------------------------------------------*/
25
+ ul.tabbernav
26
+ {
27
+ margin:0;
28
+ padding: 3px 0;
29
+ border-bottom: 1px solid #778;
30
+ font: bold 12px Verdana, sans-serif;
31
+ }
32
+
33
+ ul.tabbernav li
34
+ {
35
+ list-style: none;
36
+ margin: 0;
37
+ display: inline;
38
+ }
39
+
40
+ ul.tabbernav li a
41
+ {
42
+ padding: 3px 0.5em;
43
+ margin-left: 3px;
44
+ border: 1px solid #778;
45
+ border-bottom: none;
46
+ background: #DDE;
47
+ text-decoration: none;
48
+ }
49
+
50
+ ul.tabbernav li a:link { color: #448; }
51
+ ul.tabbernav li a:visited { color: #667; }
52
+
53
+ ul.tabbernav li a:hover
54
+ {
55
+ color: #000;
56
+ background: #AAE;
57
+ border-color: #227;
58
+ }
59
+
60
+ ul.tabbernav li.tabberactive a
61
+ {
62
+ background-color: #fff;
63
+ border-bottom: 1px solid #fff;
64
+ }
65
+
66
+ ul.tabbernav li.tabberactive a:hover
67
+ {
68
+ color: #000;
69
+ background: white;
70
+ border-bottom: 1px solid white;
71
+ }
72
+
73
+ /*--------------------------------------------------
74
+ .tabbertab = the tab content
75
+ Add style only after the tabber interface is set up (.tabberlive)
76
+ --------------------------------------------------*/
77
+ .tabberlive .tabbertab {
78
+ padding:5px;
79
+ border:1px solid #aaa;
80
+ border-top:0;
81
+
82
+ /* If you don't want the tab size changing whenever a tab is changed
83
+ you can set a fixed height */
84
+
85
+ /* height:200px; */
86
+
87
+ /* If you set a fix height set overflow to auto and you will get a
88
+ scrollbar when necessary */
89
+
90
+ /* overflow:auto; */
91
+ }
92
+
93
+ /* If desired, hide the heading since a heading is provided by the tab */
94
+ .tabberlive .tabbertab h2 {
95
+ display:none;
96
+ }
97
+ .tabberlive .tabbertab h3 {
98
+ display:none;
99
+ }
100
+
101
+ /* Example of using an ID to set different styles for the tabs on the page */
102
+ .tabberlive#tab1 {
103
+ }
104
+ .tabberlive#tab2 {
105
+ }
106
+ .tabberlive#tab2 .tabbertab {
107
+ height:200px;
108
+ overflow:auto;
109
+ }
tabber/tabber-minimized.js ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Copyright (c) 2006 Patrick Fitzgerald */
2
+
3
+ function tabberObj(argsObj)
4
+ {var arg;this.div=null;this.classMain="tabber";this.classMainLive="tabberlive";this.classTab="tabbertab";this.classTabDefault="tabbertabdefault";this.classNav="tabbernav";this.classTabHide="tabbertabhide";this.classNavActive="tabberactive";this.titleElements=['h2','h3','h4','h5','h6'];this.titleElementsStripHTML=true;this.removeTitle=true;this.addLinkId=false;this.linkIdFormat='<tabberid>nav<tabnumberone>';for(arg in argsObj){this[arg]=argsObj[arg];}
5
+ this.REclassMain=new RegExp('\\b'+this.classMain+'\\b','gi');this.REclassMainLive=new RegExp('\\b'+this.classMainLive+'\\b','gi');this.REclassTab=new RegExp('\\b'+this.classTab+'\\b','gi');this.REclassTabDefault=new RegExp('\\b'+this.classTabDefault+'\\b','gi');this.REclassTabHide=new RegExp('\\b'+this.classTabHide+'\\b','gi');this.tabs=new Array();if(this.div){this.init(this.div);this.div=null;}}
6
+ tabberObj.prototype.init=function(e)
7
+ {var
8
+ childNodes,i,i2,t,defaultTab=0,DOM_ul,DOM_li,DOM_a,aId,headingElement;if(!document.getElementsByTagName){return false;}
9
+ if(e.id){this.id=e.id;}
10
+ this.tabs.length=0;childNodes=e.childNodes;for(i=0;i<childNodes.length;i++){if(childNodes[i].className&&childNodes[i].className.match(this.REclassTab)){t=new Object();t.div=childNodes[i];this.tabs[this.tabs.length]=t;if(childNodes[i].className.match(this.REclassTabDefault)){defaultTab=this.tabs.length-1;}}}
11
+ DOM_ul=document.createElement("ul");DOM_ul.className=this.classNav;for(i=0;i<this.tabs.length;i++){t=this.tabs[i];t.headingText=t.div.title;if(this.removeTitle){t.div.title='';}
12
+ if(!t.headingText){for(i2=0;i2<this.titleElements.length;i2++){headingElement=t.div.getElementsByTagName(this.titleElements[i2])[0];if(headingElement){t.headingText=headingElement.innerHTML;if(this.titleElementsStripHTML){t.headingText.replace(/<br>/gi," ");t.headingText=t.headingText.replace(/<[^>]+>/g,"");}
13
+ break;}}}
14
+ if(!t.headingText){t.headingText=i+1;}
15
+ DOM_li=document.createElement("li");t.li=DOM_li;DOM_a=document.createElement("a");DOM_a.appendChild(document.createTextNode(t.headingText));DOM_a.href="javascript:void(null);";DOM_a.title=t.headingText;DOM_a.onclick=this.navClick;DOM_a.tabber=this;DOM_a.tabberIndex=i;if(this.addLinkId&&this.linkIdFormat){aId=this.linkIdFormat;aId=aId.replace(/<tabberid>/gi,this.id);aId=aId.replace(/<tabnumberzero>/gi,i);aId=aId.replace(/<tabnumberone>/gi,i+1);aId=aId.replace(/<tabtitle>/gi,t.headingText.replace(/[^a-zA-Z0-9\-]/gi,''));DOM_a.id=aId;}
16
+ DOM_li.appendChild(DOM_a);DOM_ul.appendChild(DOM_li);}
17
+ e.insertBefore(DOM_ul,e.firstChild);e.className=e.className.replace(this.REclassMain,this.classMainLive);this.tabShow(defaultTab);if(typeof this.onLoad=='function'){this.onLoad({tabber:this});}
18
+ return this;};tabberObj.prototype.navClick=function(event)
19
+ {var
20
+ rVal,a,self,tabberIndex,onClickArgs;a=this;if(!a.tabber){return false;}
21
+ self=a.tabber;tabberIndex=a.tabberIndex;a.blur();if(typeof self.onClick=='function'){onClickArgs={'tabber':self,'index':tabberIndex,'event':event};if(!event){onClickArgs.event=window.event;}
22
+ rVal=self.onClick(onClickArgs);if(rVal===false){return false;}}
23
+ self.tabShow(tabberIndex);return false;};tabberObj.prototype.tabHideAll=function()
24
+ {var i;for(i=0;i<this.tabs.length;i++){this.tabHide(i);}};tabberObj.prototype.tabHide=function(tabberIndex)
25
+ {var div;if(!this.tabs[tabberIndex]){return false;}
26
+ div=this.tabs[tabberIndex].div;if(!div.className.match(this.REclassTabHide)){div.className+=' '+this.classTabHide;}
27
+ this.navClearActive(tabberIndex);return this;};tabberObj.prototype.tabShow=function(tabberIndex)
28
+ {var div;if(!this.tabs[tabberIndex]){return false;}
29
+ this.tabHideAll();div=this.tabs[tabberIndex].div;div.className=div.className.replace(this.REclassTabHide,'');this.navSetActive(tabberIndex);if(typeof this.onTabDisplay=='function'){this.onTabDisplay({'tabber':this,'index':tabberIndex});}
30
+ return this;};tabberObj.prototype.navSetActive=function(tabberIndex)
31
+ {this.tabs[tabberIndex].li.className=this.classNavActive;return this;};tabberObj.prototype.navClearActive=function(tabberIndex)
32
+ {this.tabs[tabberIndex].li.className='';return this;};function tabberAutomatic(tabberArgs)
33
+ {var
34
+ tempObj,divs,i;if(!tabberArgs){tabberArgs={};}
35
+ tempObj=new tabberObj(tabberArgs);divs=document.getElementsByTagName("div");for(i=0;i<divs.length;i++){if(divs[i].className&&divs[i].className.match(tempObj.REclassMain)){tabberArgs.div=divs[i];divs[i].tabber=new tabberObj(tabberArgs);}}
36
+ return this;}
37
+ function tabberAutomaticOnLoad(tabberArgs)
38
+ {var oldOnLoad;if(!tabberArgs){tabberArgs={};}
39
+ oldOnLoad=window.onload;if(typeof window.onload!='function'){window.onload=function(){tabberAutomatic(tabberArgs);};}else{window.onload=function(){oldOnLoad();tabberAutomatic(tabberArgs);};}}
40
+ if(typeof tabberOptions=='undefined'){tabberAutomaticOnLoad();}else{if(!tabberOptions['manualStartup']){tabberAutomaticOnLoad(tabberOptions);}}
tabber/tabber.css ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
2
+
3
+ /*--------------------------------------------------
4
+ REQUIRED to hide the non-active tab content.
5
+ But do not hide them in the print stylesheet!
6
+ --------------------------------------------------*/
7
+ .tabberlive .tabbertabhide {
8
+ display:none;
9
+ }
10
+
11
+ /*--------------------------------------------------
12
+ .tabber = before the tabber interface is set up
13
+ .tabberlive = after the tabber interface is set up
14
+ --------------------------------------------------*/
15
+ .tabber {
16
+ }
17
+ .tabberlive {
18
+ margin-top:1em;
19
+ }
20
+
21
+ /*--------------------------------------------------
22
+ ul.tabbernav = the tab navigation list
23
+ li.tabberactive = the active tab
24
+ --------------------------------------------------*/
25
+ ul.tabbernav
26
+ {
27
+ margin:0;
28
+ padding: 3px 0;
29
+ border-bottom: 1px solid #E1D6C6;
30
+ font: bold 12px Verdana, sans-serif;
31
+ }
32
+
33
+ ul.tabbernav li
34
+ {
35
+ list-style: none;
36
+ margin: 0;
37
+ display: inline;
38
+ }
39
+
40
+ ul.tabbernav li a
41
+ {
42
+ padding: 3px 0.5em;
43
+ margin-left: 3px;
44
+ border: 1px solid #E1D6C6;
45
+ border-bottom: none;
46
+ background: #E6EADB;
47
+ text-decoration: none;
48
+ }
49
+
50
+ ul.tabbernav li a:link { color: #676E04; }
51
+ ul.tabbernav li a:visited { color: #676E04; }
52
+
53
+ ul.tabbernav li a:hover
54
+ {
55
+ color: #000;
56
+ background: #B9C49A;
57
+ border-color: #227;
58
+ }
59
+
60
+ ul.tabbernav li.tabberactive a
61
+ {
62
+ background-color: #fff;
63
+ border-bottom: 1px solid #fff;
64
+ }
65
+
66
+ ul.tabbernav li.tabberactive a:hover
67
+ {
68
+ color: #000;
69
+ background: white;
70
+ border-bottom: 1px solid white;
71
+ }
72
+
73
+ /*--------------------------------------------------
74
+ .tabbertab = the tab content
75
+ Add style only after the tabber interface is set up (.tabberlive)
76
+ --------------------------------------------------*/
77
+ .tabberlive .tabbertab {
78
+ padding:5px;
79
+ border:1px solid #DDD;
80
+ border-top:0;
81
+
82
+ /* If you don't want the tab size changing whenever a tab is changed
83
+ you can set a fixed height */
84
+
85
+ /* height:200px; */
86
+
87
+ /* If you set a fix height set overflow to auto and you will get a
88
+ scrollbar when necessary */
89
+
90
+ /* overflow:auto; */
91
+ }
92
+
93
+ /* If desired, hide the heading since a heading is provided by the tab */
94
+ .tabberlive .tabbertab h2 {
95
+ display:none;
96
+ }
97
+ .tabberlive .tabbertab h3 {
98
+ display:none;
99
+ }
100
+
101
+ /* Example of using an ID to set different styles for the tabs on the page */
102
+ .tabberlive#tab1 {
103
+ }
104
+ .tabberlive#tab2 {
105
+ }
106
+ .tabberlive#tab2 .tabbertab {
107
+ height:200px;
108
+ overflow:auto;
109
+ }
tabber/tabber.js ADDED
@@ -0,0 +1,523 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*==================================================
2
+ $Id: tabber.js,v 1.9 2006/04/27 20:51:51 pat Exp $
3
+ tabber.js by Patrick Fitzgerald pat@barelyfitz.com
4
+
5
+ Documentation can be found at the following URL:
6
+ http://www.barelyfitz.com/projects/tabber/
7
+
8
+ License (http://www.opensource.org/licenses/mit-license.php)
9
+
10
+ Copyright (c) 2006 Patrick Fitzgerald
11
+
12
+ Permission is hereby granted, free of charge, to any person
13
+ obtaining a copy of this software and associated documentation files
14
+ (the "Software"), to deal in the Software without restriction,
15
+ including without limitation the rights to use, copy, modify, merge,
16
+ publish, distribute, sublicense, and/or sell copies of the Software,
17
+ and to permit persons to whom the Software is furnished to do so,
18
+ subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be
21
+ included in all copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
+ SOFTWARE.
31
+ ==================================================*/
32
+
33
+ function tabberObj(argsObj)
34
+ {
35
+ var arg; /* name of an argument to override */
36
+
37
+ /* Element for the main tabber div. If you supply this in argsObj,
38
+ then the init() method will be called.
39
+ */
40
+ this.div = null;
41
+
42
+ /* Class of the main tabber div */
43
+ this.classMain = "tabber";
44
+
45
+ /* Rename classMain to classMainLive after tabifying
46
+ (so a different style can be applied)
47
+ */
48
+ this.classMainLive = "tabberlive";
49
+
50
+ /* Class of each DIV that contains a tab */
51
+ this.classTab = "tabbertab";
52
+
53
+ /* Class to indicate which tab should be active on startup */
54
+ this.classTabDefault = "tabbertabdefault";
55
+
56
+ /* Class for the navigation UL */
57
+ this.classNav = "tabbernav";
58
+
59
+ /* When a tab is to be hidden, instead of setting display='none', we
60
+ set the class of the div to classTabHide. In your screen
61
+ stylesheet you should set classTabHide to display:none. In your
62
+ print stylesheet you should set display:block to ensure that all
63
+ the information is printed.
64
+ */
65
+ this.classTabHide = "tabbertabhide";
66
+
67
+ /* Class to set the navigation LI when the tab is active, so you can
68
+ use a different style on the active tab.
69
+ */
70
+ this.classNavActive = "tabberactive";
71
+
72
+ /* Elements that might contain the title for the tab, only used if a
73
+ title is not specified in the TITLE attribute of DIV classTab.
74
+ */
75
+ this.titleElements = ['h2','h3','h4','h5','h6'];
76
+
77
+ /* Should we strip out the HTML from the innerHTML of the title elements?
78
+ This should usually be true.
79
+ */
80
+ this.titleElementsStripHTML = true;
81
+
82
+ /* If the user specified the tab names using a TITLE attribute on
83
+ the DIV, then the browser will display a tooltip whenever the
84
+ mouse is over the DIV. To prevent this tooltip, we can remove the
85
+ TITLE attribute after getting the tab name.
86
+ */
87
+ this.removeTitle = true;
88
+
89
+ /* If you want to add an id to each link set this to true */
90
+ this.addLinkId = false;
91
+
92
+ /* If addIds==true, then you can set a format for the ids.
93
+ <tabberid> will be replaced with the id of the main tabber div.
94
+ <tabnumberzero> will be replaced with the tab number
95
+ (tab numbers starting at zero)
96
+ <tabnumberone> will be replaced with the tab number
97
+ (tab numbers starting at one)
98
+ <tabtitle> will be replaced by the tab title
99
+ (with all non-alphanumeric characters removed)
100
+ */
101
+ this.linkIdFormat = '<tabberid>nav<tabnumberone>';
102
+
103
+ /* You can override the defaults listed above by passing in an object:
104
+ var mytab = new tabber({property:value,property:value});
105
+ */
106
+ for (arg in argsObj) { this[arg] = argsObj[arg]; }
107
+
108
+ /* Create regular expressions for the class names; Note: if you
109
+ change the class names after a new object is created you must
110
+ also change these regular expressions.
111
+ */
112
+ this.REclassMain = new RegExp('\\b' + this.classMain + '\\b', 'gi');
113
+ this.REclassMainLive = new RegExp('\\b' + this.classMainLive + '\\b', 'gi');
114
+ this.REclassTab = new RegExp('\\b' + this.classTab + '\\b', 'gi');
115
+ this.REclassTabDefault = new RegExp('\\b' + this.classTabDefault + '\\b', 'gi');
116
+ this.REclassTabHide = new RegExp('\\b' + this.classTabHide + '\\b', 'gi');
117
+
118
+ /* Array of objects holding info about each tab */
119
+ this.tabs = new Array();
120
+
121
+ /* If the main tabber div was specified, call init() now */
122
+ if (this.div) {
123
+
124
+ this.init(this.div);
125
+
126
+ /* We don't need the main div anymore, and to prevent a memory leak
127
+ in IE, we must remove the circular reference between the div
128
+ and the tabber object. */
129
+ this.div = null;
130
+ }
131
+ }
132
+
133
+
134
+ /*--------------------------------------------------
135
+ Methods for tabberObj
136
+ --------------------------------------------------*/
137
+
138
+
139
+ tabberObj.prototype.init = function(e)
140
+ {
141
+ /* Set up the tabber interface.
142
+
143
+ e = element (the main containing div)
144
+
145
+ Example:
146
+ init(document.getElementById('mytabberdiv'))
147
+ */
148
+
149
+ var
150
+ childNodes, /* child nodes of the tabber div */
151
+ i, i2, /* loop indices */
152
+ t, /* object to store info about a single tab */
153
+ defaultTab=0, /* which tab to select by default */
154
+ DOM_ul, /* tabbernav list */
155
+ DOM_li, /* tabbernav list item */
156
+ DOM_a, /* tabbernav link */
157
+ aId, /* A unique id for DOM_a */
158
+ headingElement; /* searching for text to use in the tab */
159
+
160
+ /* Verify that the browser supports DOM scripting */
161
+ if (!document.getElementsByTagName) { return false; }
162
+
163
+ /* If the main DIV has an ID then save it. */
164
+ if (e.id) {
165
+ this.id = e.id;
166
+ }
167
+
168
+ /* Clear the tabs array (but it should normally be empty) */
169
+ this.tabs.length = 0;
170
+
171
+ /* Loop through an array of all the child nodes within our tabber element. */
172
+ childNodes = e.childNodes;
173
+ for(i=0; i < childNodes.length; i++) {
174
+
175
+ /* Find the nodes where class="tabbertab" */
176
+ if(childNodes[i].className &&
177
+ childNodes[i].className.match(this.REclassTab)) {
178
+
179
+ /* Create a new object to save info about this tab */
180
+ t = new Object();
181
+
182
+ /* Save a pointer to the div for this tab */
183
+ t.div = childNodes[i];
184
+
185
+ /* Add the new object to the array of tabs */
186
+ this.tabs[this.tabs.length] = t;
187
+
188
+ /* If the class name contains classTabDefault,
189
+ then select this tab by default.
190
+ */
191
+ if (childNodes[i].className.match(this.REclassTabDefault)) {
192
+ defaultTab = this.tabs.length-1;
193
+ }
194
+ }
195
+ }
196
+
197
+ /* Create a new UL list to hold the tab headings */
198
+ DOM_ul = document.createElement("ul");
199
+ DOM_ul.className = this.classNav;
200
+
201
+ /* Loop through each tab we found */
202
+ for (i=0; i < this.tabs.length; i++) {
203
+
204
+ t = this.tabs[i];
205
+
206
+ /* Get the label to use for this tab:
207
+ From the title attribute on the DIV,
208
+ Or from one of the this.titleElements[] elements,
209
+ Or use an automatically generated number.
210
+ */
211
+ t.headingText = t.div.title;
212
+
213
+ /* Remove the title attribute to prevent a tooltip from appearing */
214
+ if (this.removeTitle) { t.div.title = ''; }
215
+
216
+ if (!t.headingText) {
217
+
218
+ /* Title was not defined in the title of the DIV,
219
+ So try to get the title from an element within the DIV.
220
+ Go through the list of elements in this.titleElements
221
+ (typically heading elements ['h2','h3','h4'])
222
+ */
223
+ for (i2=0; i2<this.titleElements.length; i2++) {
224
+ headingElement = t.div.getElementsByTagName(this.titleElements[i2])[0];
225
+ if (headingElement) {
226
+ t.headingText = headingElement.innerHTML;
227
+ if (this.titleElementsStripHTML) {
228
+ t.headingText.replace(/<br>/gi," ");
229
+ t.headingText = t.headingText.replace(/<[^>]+>/g,"");
230
+ }
231
+ break;
232
+ }
233
+ }
234
+ }
235
+
236
+ if (!t.headingText) {
237
+ /* Title was not found (or is blank) so automatically generate a
238
+ number for the tab.
239
+ */
240
+ t.headingText = i + 1;
241
+ }
242
+
243
+ /* Create a list element for the tab */
244
+ DOM_li = document.createElement("li");
245
+
246
+ /* Save a reference to this list item so we can later change it to
247
+ the "active" class */
248
+ t.li = DOM_li;
249
+
250
+ /* Create a link to activate the tab */
251
+ DOM_a = document.createElement("a");
252
+ DOM_a.appendChild(document.createTextNode(t.headingText));
253
+ DOM_a.href = "javascript:void(null);";
254
+ DOM_a.title = t.headingText;
255
+ DOM_a.onclick = this.navClick;
256
+
257
+ /* Add some properties to the link so we can identify which tab
258
+ was clicked. Later the navClick method will need this.
259
+ */
260
+ DOM_a.tabber = this;
261
+ DOM_a.tabberIndex = i;
262
+
263
+ /* Do we need to add an id to DOM_a? */
264
+ if (this.addLinkId && this.linkIdFormat) {
265
+
266
+ /* Determine the id name */
267
+ aId = this.linkIdFormat;
268
+ aId = aId.replace(/<tabberid>/gi, this.id);
269
+ aId = aId.replace(/<tabnumberzero>/gi, i);
270
+ aId = aId.replace(/<tabnumberone>/gi, i+1);
271
+ aId = aId.replace(/<tabtitle>/gi, t.headingText.replace(/[^a-zA-Z0-9\-]/gi, ''));
272
+
273
+ DOM_a.id = aId;
274
+ }
275
+
276
+ /* Add the link to the list element */
277
+ DOM_li.appendChild(DOM_a);
278
+
279
+ /* Add the list element to the list */
280
+ DOM_ul.appendChild(DOM_li);
281
+ }
282
+
283
+ /* Add the UL list to the beginning of the tabber div */
284
+ e.insertBefore(DOM_ul, e.firstChild);
285
+
286
+ /* Make the tabber div "live" so different CSS can be applied */
287
+ e.className = e.className.replace(this.REclassMain, this.classMainLive);
288
+
289
+ /* Activate the default tab, and do not call the onclick handler */
290
+ this.tabShow(defaultTab);
291
+
292
+ /* If the user specified an onLoad function, call it now. */
293
+ if (typeof this.onLoad == 'function') {
294
+ this.onLoad({tabber:this});
295
+ }
296
+
297
+ return this;
298
+ };
299
+
300
+
301
+ tabberObj.prototype.navClick = function(event)
302
+ {
303
+ /* This method should only be called by the onClick event of an <A>
304
+ element, in which case we will determine which tab was clicked by
305
+ examining a property that we previously attached to the <A>
306
+ element.
307
+
308
+ Since this was triggered from an onClick event, the variable
309
+ "this" refers to the <A> element that triggered the onClick
310
+ event (and not to the tabberObj).
311
+
312
+ When tabberObj was initialized, we added some extra properties
313
+ to the <A> element, for the purpose of retrieving them now. Get
314
+ the tabberObj object, plus the tab number that was clicked.
315
+ */
316
+
317
+ var
318
+ rVal, /* Return value from the user onclick function */
319
+ a, /* element that triggered the onclick event */
320
+ self, /* the tabber object */
321
+ tabberIndex, /* index of the tab that triggered the event */
322
+ onClickArgs; /* args to send the onclick function */
323
+
324
+ a = this;
325
+ if (!a.tabber) { return false; }
326
+
327
+ self = a.tabber;
328
+ tabberIndex = a.tabberIndex;
329
+
330
+ /* Remove focus from the link because it looks ugly.
331
+ I don't know if this is a good idea...
332
+ */
333
+ a.blur();
334
+
335
+ /* If the user specified an onClick function, call it now.
336
+ If the function returns false then do not continue.
337
+ */
338
+ if (typeof self.onClick == 'function') {
339
+
340
+ onClickArgs = {'tabber':self, 'index':tabberIndex, 'event':event};
341
+
342
+ /* IE uses a different way to access the event object */
343
+ if (!event) { onClickArgs.event = window.event; }
344
+
345
+ rVal = self.onClick(onClickArgs);
346
+ if (rVal === false) { return false; }
347
+ }
348
+
349
+ self.tabShow(tabberIndex);
350
+
351
+ return false;
352
+ };
353
+
354
+
355
+ tabberObj.prototype.tabHideAll = function()
356
+ {
357
+ var i; /* counter */
358
+
359
+ /* Hide all tabs and make all navigation links inactive */
360
+ for (i = 0; i < this.tabs.length; i++) {
361
+ this.tabHide(i);
362
+ }
363
+ };
364
+
365
+
366
+ tabberObj.prototype.tabHide = function(tabberIndex)
367
+ {
368
+ var div;
369
+
370
+ if (!this.tabs[tabberIndex]) { return false; }
371
+
372
+ /* Hide a single tab and make its navigation link inactive */
373
+ div = this.tabs[tabberIndex].div;
374
+
375
+ /* Hide the tab contents by adding classTabHide to the div */
376
+ if (!div.className.match(this.REclassTabHide)) {
377
+ div.className += ' ' + this.classTabHide;
378
+ }
379
+ this.navClearActive(tabberIndex);
380
+
381
+ return this;
382
+ };
383
+
384
+
385
+ tabberObj.prototype.tabShow = function(tabberIndex)
386
+ {
387
+ /* Show the tabberIndex tab and hide all the other tabs */
388
+
389
+ var div;
390
+
391
+ if (!this.tabs[tabberIndex]) { return false; }
392
+
393
+ /* Hide all the tabs first */
394
+ this.tabHideAll();
395
+
396
+ /* Get the div that holds this tab */
397
+ div = this.tabs[tabberIndex].div;
398
+
399
+ /* Remove classTabHide from the div */
400
+ div.className = div.className.replace(this.REclassTabHide, '');
401
+
402
+ /* Mark this tab navigation link as "active" */
403
+ this.navSetActive(tabberIndex);
404
+
405
+ /* If the user specified an onTabDisplay function, call it now. */
406
+ if (typeof this.onTabDisplay == 'function') {
407
+ this.onTabDisplay({'tabber':this, 'index':tabberIndex});
408
+ }
409
+
410
+ return this;
411
+ };
412
+
413
+ tabberObj.prototype.navSetActive = function(tabberIndex)
414
+ {
415
+ /* Note: this method does *not* enforce the rule
416
+ that only one nav item can be active at a time.
417
+ */
418
+
419
+ /* Set classNavActive for the navigation list item */
420
+ this.tabs[tabberIndex].li.className = this.classNavActive;
421
+
422
+ return this;
423
+ };
424
+
425
+
426
+ tabberObj.prototype.navClearActive = function(tabberIndex)
427
+ {
428
+ /* Note: this method does *not* enforce the rule
429
+ that one nav should always be active.
430
+ */
431
+
432
+ /* Remove classNavActive from the navigation list item */
433
+ this.tabs[tabberIndex].li.className = '';
434
+
435
+ return this;
436
+ };
437
+
438
+
439
+ /*==================================================*/
440
+
441
+
442
+ function tabberAutomatic(tabberArgs)
443
+ {
444
+ /* This function finds all DIV elements in the document where
445
+ class=tabber.classMain, then converts them to use the tabber
446
+ interface.
447
+
448
+ tabberArgs = an object to send to "new tabber()"
449
+ */
450
+ var
451
+ tempObj, /* Temporary tabber object */
452
+ divs, /* Array of all divs on the page */
453
+ i; /* Loop index */
454
+
455
+ if (!tabberArgs) { tabberArgs = {}; }
456
+
457
+ /* Create a tabber object so we can get the value of classMain */
458
+ tempObj = new tabberObj(tabberArgs);
459
+
460
+ /* Find all DIV elements in the document that have class=tabber */
461
+
462
+ /* First get an array of all DIV elements and loop through them */
463
+ divs = document.getElementsByTagName("div");
464
+ for (i=0; i < divs.length; i++) {
465
+
466
+ /* Is this DIV the correct class? */
467
+ if (divs[i].className &&
468
+ divs[i].className.match(tempObj.REclassMain)) {
469
+
470
+ /* Now tabify the DIV */
471
+ tabberArgs.div = divs[i];
472
+ divs[i].tabber = new tabberObj(tabberArgs);
473
+ }
474
+ }
475
+
476
+ return this;
477
+ }
478
+
479
+
480
+ /*==================================================*/
481
+
482
+
483
+ function tabberAutomaticOnLoad(tabberArgs)
484
+ {
485
+ /* This function adds tabberAutomatic to the window.onload event,
486
+ so it will run after the document has finished loading.
487
+ */
488
+ var oldOnLoad;
489
+
490
+ if (!tabberArgs) { tabberArgs = {}; }
491
+
492
+ /* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */
493
+
494
+ oldOnLoad = window.onload;
495
+ if (typeof window.onload != 'function') {
496
+ window.onload = function() {
497
+ tabberAutomatic(tabberArgs);
498
+ };
499
+ } else {
500
+ window.onload = function() {
501
+ oldOnLoad();
502
+ tabberAutomatic(tabberArgs);
503
+ };
504
+ }
505
+ }
506
+
507
+
508
+ /*==================================================*/
509
+
510
+
511
+ /* Run tabberAutomaticOnload() unless the "manualStartup" option was specified */
512
+
513
+ if (typeof tabberOptions == 'undefined') {
514
+
515
+ tabberAutomaticOnLoad();
516
+
517
+ } else {
518
+
519
+ if (!tabberOptions['manualStartup']) {
520
+ tabberAutomaticOnLoad(tabberOptions);
521
+ }
522
+
523
+ }
timthumb/timthumb.php ADDED
@@ -0,0 +1,1244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * TimThumb by Ben Gillbanks and Mark Maunder
4
+ * Based on work done by Tim McDaniels and Darren Hoyt
5
+ * http://code.google.com/p/timthumb/
6
+ *
7
+ * GNU General Public License, version 2
8
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9
+ *
10
+ * Examples and documentation available on the project homepage
11
+ * http://www.binarymoon.co.uk/projects/timthumb/
12
+ *
13
+ * $Rev$
14
+ */
15
+
16
+ /*
17
+ * --- TimThumb CONFIGURATION ---
18
+ * To edit the configs it is best to create a file called timthumb-config.php
19
+ * and define variables you want to customize in there. It will automatically be
20
+ * loaded by timthumb. This will save you having to re-edit these variables
21
+ * everytime you download a new version
22
+ */
23
+ define ('VERSION', '2.8.10'); // Version of this script
24
+ //Load a config file if it exists. Otherwise, use the values below
25
+ if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
+ if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
+ if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
+ if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
+ if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
+
31
+ //Image fetching and caching
32
+ if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
+ if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
34
+ if(! defined('FILE_CACHE_ENABLED') ) define ('FILE_CACHE_ENABLED', TRUE); // Should we store resized/modified images on disk to speed things up?
35
+ if(! defined('FILE_CACHE_TIME_BETWEEN_CLEANS')) define ('FILE_CACHE_TIME_BETWEEN_CLEANS', 86400); // How often the cache is cleaned
36
+
37
+ if(! defined('FILE_CACHE_MAX_FILE_AGE') ) define ('FILE_CACHE_MAX_FILE_AGE', 86400); // How old does a file have to be to be deleted from the cache
38
+ if(! defined('FILE_CACHE_SUFFIX') ) define ('FILE_CACHE_SUFFIX', '.timthumb.txt'); // What to put at the end of all files in the cache directory so we can identify them
39
+ if(! defined('FILE_CACHE_PREFIX') ) define ('FILE_CACHE_PREFIX', 'timthumb'); // What to put at the beg of all files in the cache directory so we can identify them
40
+ if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
+ if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
+ if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
+ if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); //Time to wait between errors fetching remote file
44
+
45
+ //Browser caching
46
+ if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
47
+ if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
+
49
+ //Image size and defaults
50
+ if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
+ if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
+ if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
+ if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
+ if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); //42 Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
+ if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
+ if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
+ if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
+ if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
+ if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
60
+
61
+
62
+ //Image compression is enabled if either of these point to valid paths
63
+
64
+ //These are now disabled by default because the file sizes of PNGs (and GIFs) are much smaller than we used to generate.
65
+ //They only work for PNGs. GIFs and JPEGs are not affected.
66
+ if(! defined('OPTIPNG_ENABLED') ) define ('OPTIPNG_ENABLED', false);
67
+ if(! defined('OPTIPNG_PATH') ) define ('OPTIPNG_PATH', '/usr/bin/optipng'); //This will run first because it gives better compression than pngcrush.
68
+ if(! defined('PNGCRUSH_ENABLED') ) define ('PNGCRUSH_ENABLED', false);
69
+ if(! defined('PNGCRUSH_PATH') ) define ('PNGCRUSH_PATH', '/usr/bin/pngcrush'); //This will only run if OPTIPNG_PATH is not set or is not valid
70
+
71
+ /*
72
+ -------====Website Screenshots configuration - BETA====-------
73
+
74
+ If you just want image thumbnails and don't want website screenshots, you can safely leave this as is.
75
+
76
+ If you would like to get website screenshots set up, you will need root access to your own server.
77
+
78
+ Enable ALLOW_ALL_EXTERNAL_SITES so you can fetch any external web page. This is more secure now that we're using a non-web folder for cache.
79
+ Enable BLOCK_EXTERNAL_LEECHERS so that your site doesn't generate thumbnails for the whole Internet.
80
+
81
+ Instructions to get website screenshots enabled on Ubuntu Linux:
82
+
83
+ 1. Install Xvfb with the following command: sudo apt-get install subversion libqt4-webkit libqt4-dev g++ xvfb
84
+ 2. Go to a directory where you can download some code
85
+ 3. Check-out the latest version of CutyCapt with the following command: svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
86
+ 4. Compile CutyCapt by doing: cd cutycapt/CutyCapt
87
+ 5. qmake
88
+ 6. make
89
+ 7. cp CutyCapt /usr/local/bin/
90
+ 8. Test it by running: xvfb-run --server-args="-screen 0, 1024x768x24" CutyCapt --url="http://markmaunder.com/" --out=test.png
91
+ 9. If you get a file called test.png with something in it, it probably worked. Now test the script by accessing it as follows:
92
+ 10. http://yoursite.com/path/to/timthumb.php?src=http://markmaunder.com/&webshot=1
93
+
94
+ Notes on performance:
95
+ The first time a webshot loads, it will take a few seconds.
96
+ From then on it uses the regular timthumb caching mechanism with the configurable options above
97
+ and loading will be very fast.
98
+
99
+ --ADVANCED USERS ONLY--
100
+ If you'd like a slight speedup (about 25%) and you know Linux, you can run the following command which will keep Xvfb running in the background.
101
+ nohup Xvfb :100 -ac -nolisten tcp -screen 0, 1024x768x24 > /dev/null 2>&1 &
102
+ Then set WEBSHOT_XVFB_RUNNING = true below. This will save your server having to fire off a new Xvfb server and shut it down every time a new shot is generated.
103
+ You will need to take responsibility for keeping Xvfb running in case it crashes. (It seems pretty stable)
104
+ You will also need to take responsibility for server security if you're running Xvfb as root.
105
+
106
+
107
+ */
108
+ if(! defined('WEBSHOT_ENABLED') ) define ('WEBSHOT_ENABLED', false); //Beta feature. Adding webshot=1 to your query string will cause the script to return a browser screenshot rather than try to fetch an image.
109
+ if(! defined('WEBSHOT_CUTYCAPT') ) define ('WEBSHOT_CUTYCAPT', '/usr/local/bin/CutyCapt'); //The path to CutyCapt.
110
+ if(! defined('WEBSHOT_XVFB') ) define ('WEBSHOT_XVFB', '/usr/bin/xvfb-run'); //The path to the Xvfb server
111
+ if(! defined('WEBSHOT_SCREEN_X') ) define ('WEBSHOT_SCREEN_X', '1024'); //1024 works ok
112
+ if(! defined('WEBSHOT_SCREEN_Y') ) define ('WEBSHOT_SCREEN_Y', '768'); //768 works ok
113
+ if(! defined('WEBSHOT_COLOR_DEPTH') ) define ('WEBSHOT_COLOR_DEPTH', '24'); //I haven't tested anything besides 24
114
+ if(! defined('WEBSHOT_IMAGE_FORMAT') ) define ('WEBSHOT_IMAGE_FORMAT', 'png'); //png is about 2.5 times the size of jpg but is a LOT better quality
115
+ if(! defined('WEBSHOT_TIMEOUT') ) define ('WEBSHOT_TIMEOUT', '20'); //Seconds to wait for a webshot
116
+ if(! defined('WEBSHOT_USER_AGENT') ) define ('WEBSHOT_USER_AGENT', "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18"); //I hate to do this, but a non-browser robot user agent might not show what humans see. So we pretend to be Firefox
117
+ if(! defined('WEBSHOT_JAVASCRIPT_ON') ) define ('WEBSHOT_JAVASCRIPT_ON', true); //Setting to false might give you a slight speedup and block ads. But it could cause other issues.
118
+ if(! defined('WEBSHOT_JAVA_ON') ) define ('WEBSHOT_JAVA_ON', false); //Have only tested this as fase
119
+ if(! defined('WEBSHOT_PLUGINS_ON') ) define ('WEBSHOT_PLUGINS_ON', true); //Enable flash and other plugins
120
+ if(! defined('WEBSHOT_PROXY') ) define ('WEBSHOT_PROXY', ''); //In case you're behind a proxy server.
121
+ if(! defined('WEBSHOT_XVFB_RUNNING') ) define ('WEBSHOT_XVFB_RUNNING', false); //ADVANCED: Enable this if you've got Xvfb running in the background.
122
+
123
+
124
+ // If ALLOW_EXTERNAL is true and ALLOW_ALL_EXTERNAL_SITES is false, then external images will only be fetched from these domains and their subdomains.
125
+ if(! isset($ALLOWED_SITES)){
126
+ $ALLOWED_SITES = array (
127
+ 'flickr.com',
128
+ 'staticflickr.com',
129
+ 'picasa.com',
130
+ 'img.youtube.com',
131
+ 'upload.wikimedia.org',
132
+ 'photobucket.com',
133
+ 'imgur.com',
134
+ 'imageshack.us',
135
+ 'tinypic.com',
136
+ );
137
+ }
138
+ // -------------------------------------------------------------
139
+ // -------------- STOP EDITING CONFIGURATION HERE --------------
140
+ // -------------------------------------------------------------
141
+
142
+ timthumb::start();
143
+
144
+ class timthumb {
145
+ protected $src = "";
146
+ protected $is404 = false;
147
+ protected $docRoot = "";
148
+ protected $lastURLError = false;
149
+ protected $localImage = "";
150
+ protected $localImageMTime = 0;
151
+ protected $url = false;
152
+ protected $myHost = "";
153
+ protected $isURL = false;
154
+ protected $cachefile = '';
155
+ protected $errors = array();
156
+ protected $toDeletes = array();
157
+ protected $cacheDirectory = '';
158
+ protected $startTime = 0;
159
+ protected $lastBenchTime = 0;
160
+ protected $cropTop = false;
161
+ protected $salt = "";
162
+ protected $fileCacheVersion = 1; //Generally if timthumb.php is modifed (upgraded) then the salt changes and all cache files are recreated. This is a backup mechanism to force regen.
163
+ protected $filePrependSecurityBlock = "<?php die('Execution denied!'); //"; //Designed to have three letter mime type, space, question mark and greater than symbol appended. 6 bytes total.
164
+ protected static $curlDataWritten = 0;
165
+ protected static $curlFH = false;
166
+ public static function start(){
167
+ $tim = new timthumb();
168
+ $tim->handleErrors();
169
+ $tim->securityChecks();
170
+ if($tim->tryBrowserCache()){
171
+ exit(0);
172
+ }
173
+ $tim->handleErrors();
174
+ if(FILE_CACHE_ENABLED && $tim->tryServerCache()){
175
+ exit(0);
176
+ }
177
+ $tim->handleErrors();
178
+ $tim->run();
179
+ $tim->handleErrors();
180
+ exit(0);
181
+ }
182
+ public function __construct(){
183
+ global $ALLOWED_SITES;
184
+ $this->startTime = microtime(true);
185
+ date_default_timezone_set('UTC');
186
+ $this->debug(1, "Starting new request from " . $this->getIP() . " to " . $_SERVER['REQUEST_URI']);
187
+ $this->calcDocRoot();
188
+ //On windows systems I'm assuming fileinode returns an empty string or a number that doesn't change. Check this.
189
+ $this->salt = @filemtime(__FILE__) . '-' . @fileinode(__FILE__);
190
+ $this->debug(3, "Salt is: " . $this->salt);
191
+ if(FILE_CACHE_DIRECTORY){
192
+ if(! is_dir(FILE_CACHE_DIRECTORY)){
193
+ @mkdir(FILE_CACHE_DIRECTORY);
194
+ if(! is_dir(FILE_CACHE_DIRECTORY)){
195
+ $this->error("Could not create the file cache directory.");
196
+ return false;
197
+ }
198
+ }
199
+ $this->cacheDirectory = FILE_CACHE_DIRECTORY;
200
+ if (!touch($this->cacheDirectory . '/index.html')) {
201
+ $this->error("Could not create the index.html file - to fix this create an empty file named index.html file in the cache directory.");
202
+ }
203
+ } else {
204
+ $this->cacheDirectory = sys_get_temp_dir();
205
+ }
206
+ //Clean the cache before we do anything because we don't want the first visitor after FILE_CACHE_TIME_BETWEEN_CLEANS expires to get a stale image.
207
+ $this->cleanCache();
208
+
209
+ $this->myHost = preg_replace('/^www\./i', '', $_SERVER['HTTP_HOST']);
210
+ $this->src = $this->param('src');
211
+ $this->url = parse_url($this->src);
212
+ $this->src = preg_replace('/https?:\/\/(?:www\.)?' . $this->myHost . '/i', '', $this->src);
213
+
214
+ if(strlen($this->src) <= 3){
215
+ $this->error("No image specified");
216
+ return false;
217
+ }
218
+ if(BLOCK_EXTERNAL_LEECHERS && array_key_exists('HTTP_REFERER', $_SERVER) && (! preg_match('/^https?:\/\/(?:www\.)?' . $this->myHost . '(?:$|\/)/i', $_SERVER['HTTP_REFERER']))){
219
+ // base64 encoded red image that says 'no hotlinkers'
220
+ // nothing to worry about! :)
221
+ $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
222
+ header('Content-Type: image/gif');
223
+ header('Content-Length: ' . sizeof($imgData));
224
+ header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
225
+ header("Pragma: no-cache");
226
+ header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
227
+ echo $imgData;
228
+ return false;
229
+ exit(0);
230
+ }
231
+ if(preg_match('/^https?:\/\/[^\/]+/i', $this->src)){
232
+ $this->debug(2, "Is a request for an external URL: " . $this->src);
233
+ $this->isURL = true;
234
+ } else {
235
+ $this->debug(2, "Is a request for an internal file: " . $this->src);
236
+ }
237
+ if($this->isURL && (! ALLOW_EXTERNAL)){
238
+ $this->error("You are not allowed to fetch images from an external website.");
239
+ return false;
240
+ }
241
+ if($this->isURL){
242
+ if(ALLOW_ALL_EXTERNAL_SITES){
243
+ $this->debug(2, "Fetching from all external sites is enabled.");
244
+ } else {
245
+ $this->debug(2, "Fetching only from selected external sites is enabled.");
246
+ $allowed = false;
247
+ foreach($ALLOWED_SITES as $site){
248
+ if ((strtolower(substr($this->url['host'],-strlen($site)-1)) === strtolower(".$site")) || (strtolower($this->url['host'])===strtolower($site))) {
249
+ $this->debug(3, "URL hostname {$this->url['host']} matches $site so allowing.");
250
+ $allowed = true;
251
+ }
252
+ }
253
+ if(! $allowed){
254
+ return $this->error("You may not fetch images from that site. To enable this site in timthumb, you can either add it to \$ALLOWED_SITES and set ALLOW_EXTERNAL=true. Or you can set ALLOW_ALL_EXTERNAL_SITES=true, depending on your security needs.");
255
+ }
256
+ }
257
+ }
258
+
259
+ $cachePrefix = ($this->isURL ? '_ext_' : '_int_');
260
+ if($this->isURL){
261
+ $arr = explode('&', $_SERVER ['QUERY_STRING']);
262
+ asort($arr);
263
+ $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . implode('', $arr) . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
264
+ } else {
265
+ $this->localImage = $this->getLocalImagePath($this->src);
266
+ if(! $this->localImage){
267
+ $this->debug(1, "Could not find the local image: {$this->localImage}");
268
+ $this->error("Could not find the internal image you specified.");
269
+ $this->set404();
270
+ return false;
271
+ }
272
+ $this->debug(1, "Local image path is {$this->localImage}");
273
+ $this->localImageMTime = @filemtime($this->localImage);
274
+ //We include the mtime of the local file in case in changes on disk.
275
+ $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . $this->localImageMTime . $_SERVER ['QUERY_STRING'] . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
276
+ }
277
+ $this->debug(2, "Cache file is: " . $this->cachefile);
278
+
279
+ return true;
280
+ }
281
+ public function __destruct(){
282
+ foreach($this->toDeletes as $del){
283
+ $this->debug(2, "Deleting temp file $del");
284
+ @unlink($del);
285
+ }
286
+ }
287
+ public function run(){
288
+ if($this->isURL){
289
+ if(! ALLOW_EXTERNAL){
290
+ $this->debug(1, "Got a request for an external image but ALLOW_EXTERNAL is disabled so returning error msg.");
291
+ $this->error("You are not allowed to fetch images from an external website.");
292
+ return false;
293
+ }
294
+ $this->debug(3, "Got request for external image. Starting serveExternalImage.");
295
+ if($this->param('webshot')){
296
+ if(WEBSHOT_ENABLED){
297
+ $this->debug(3, "webshot param is set, so we're going to take a webshot.");
298
+ $this->serveWebshot();
299
+ } else {
300
+ $this->error("You added the webshot parameter but webshots are disabled on this server. You need to set WEBSHOT_ENABLED == true to enable webshots.");
301
+ }
302
+ } else {
303
+ $this->debug(3, "webshot is NOT set so we're going to try to fetch a regular image.");
304
+ $this->serveExternalImage();
305
+
306
+ }
307
+ } else {
308
+ $this->debug(3, "Got request for internal image. Starting serveInternalImage()");
309
+ $this->serveInternalImage();
310
+ }
311
+ return true;
312
+ }
313
+ protected function handleErrors(){
314
+ if($this->haveErrors()){
315
+ if(NOT_FOUND_IMAGE && $this->is404()){
316
+ if($this->serveImg(NOT_FOUND_IMAGE)){
317
+ exit(0);
318
+ } else {
319
+ $this->error("Additionally, the 404 image that is configured could not be found or there was an error serving it.");
320
+ }
321
+ }
322
+ if(ERROR_IMAGE){
323
+ if($this->serveImg(ERROR_IMAGE)){
324
+ exit(0);
325
+ } else {
326
+ $this->error("Additionally, the error image that is configured could not be found or there was an error serving it.");
327
+ }
328
+ }
329
+ $this->serveErrors();
330
+ exit(0);
331
+ }
332
+ return false;
333
+ }
334
+ protected function tryBrowserCache(){
335
+ if(BROWSER_CACHE_DISABLE){ $this->debug(3, "Browser caching is disabled"); return false; }
336
+ if(!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ){
337
+ $this->debug(3, "Got a conditional get");
338
+ $mtime = false;
339
+ //We've already checked if the real file exists in the constructor
340
+ if(! is_file($this->cachefile)){
341
+ //If we don't have something cached, regenerate the cached image.
342
+ return false;
343
+ }
344
+ if($this->localImageMTime){
345
+ $mtime = $this->localImageMTime;
346
+ $this->debug(3, "Local real file's modification time is $mtime");
347
+ } else if(is_file($this->cachefile)){ //If it's not a local request then use the mtime of the cached file to determine the 304
348
+ $mtime = @filemtime($this->cachefile);
349
+ $this->debug(3, "Cached file's modification time is $mtime");
350
+ }
351
+ if(! $mtime){ return false; }
352
+
353
+ $iftime = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
354
+ $this->debug(3, "The conditional get's if-modified-since unixtime is $iftime");
355
+ if($iftime < 1){
356
+ $this->debug(3, "Got an invalid conditional get modified since time. Returning false.");
357
+ return false;
358
+ }
359
+ if($iftime < $mtime){ //Real file or cache file has been modified since last request, so force refetch.
360
+ $this->debug(3, "File has been modified since last fetch.");
361
+ return false;
362
+ } else { //Otherwise serve a 304
363
+ $this->debug(3, "File has not been modified since last get, so serving a 304.");
364
+ header ($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified');
365
+ $this->debug(1, "Returning 304 not modified");
366
+ return true;
367
+ }
368
+ }
369
+ return false;
370
+ }
371
+ protected function tryServerCache(){
372
+ $this->debug(3, "Trying server cache");
373
+ if(file_exists($this->cachefile)){
374
+ $this->debug(3, "Cachefile {$this->cachefile} exists");
375
+ if($this->isURL){
376
+ $this->debug(3, "This is an external request, so checking if the cachefile is empty which means the request failed previously.");
377
+ if(filesize($this->cachefile) < 1){
378
+ $this->debug(3, "Found an empty cachefile indicating a failed earlier request. Checking how old it is.");
379
+ //Fetching error occured previously
380
+ if(time() - @filemtime($this->cachefile) > WAIT_BETWEEN_FETCH_ERRORS){
381
+ $this->debug(3, "File is older than " . WAIT_BETWEEN_FETCH_ERRORS . " seconds. Deleting and returning false so app can try and load file.");
382
+ @unlink($this->cachefile);
383
+ return false; //to indicate we didn't serve from cache and app should try and load
384
+ } else {
385
+ $this->debug(3, "Empty cachefile is still fresh so returning message saying we had an error fetching this image from remote host.");
386
+ $this->set404();
387
+ $this->error("An error occured fetching image.");
388
+ return false;
389
+ }
390
+ }
391
+ } else {
392
+ $this->debug(3, "Trying to serve cachefile {$this->cachefile}");
393
+ }
394
+ if($this->serveCacheFile()){
395
+ $this->debug(3, "Succesfully served cachefile {$this->cachefile}");
396
+ return true;
397
+ } else {
398
+ $this->debug(3, "Failed to serve cachefile {$this->cachefile} - Deleting it from cache.");
399
+ //Image serving failed. We can't retry at this point, but lets remove it from cache so the next request recreates it
400
+ @unlink($this->cachefile);
401
+ return true;
402
+ }
403
+ }
404
+ }
405
+ protected function error($err){
406
+ $this->debug(3, "Adding error message: $err");
407
+ $this->errors[] = $err;
408
+ return false;
409
+
410
+ }
411
+ protected function haveErrors(){
412
+ if(sizeof($this->errors) > 0){
413
+ return true;
414
+ }
415
+ return false;
416
+ }
417
+ protected function serveErrors(){
418
+ header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
419
+ $html = '<ul>';
420
+ foreach($this->errors as $err){
421
+ $html .= '<li>' . htmlentities($err) . '</li>';
422
+ }
423
+ $html .= '</ul>';
424
+ echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
425
+ echo '<br />Query String : ' . htmlentities ($_SERVER['QUERY_STRING']);
426
+ echo '<br />TimThumb version : ' . VERSION . '</pre>';
427
+ }
428
+ protected function serveInternalImage(){
429
+ $this->debug(3, "Local image path is $this->localImage");
430
+ if(! $this->localImage){
431
+ $this->sanityFail("localImage not set after verifying it earlier in the code.");
432
+ return false;
433
+ }
434
+ $fileSize = filesize($this->localImage);
435
+ if($fileSize > MAX_FILE_SIZE){
436
+ $this->error("The file you specified is greater than the maximum allowed file size.");
437
+ return false;
438
+ }
439
+ if($fileSize <= 0){
440
+ $this->error("The file you specified is <= 0 bytes.");
441
+ return false;
442
+ }
443
+ $this->debug(3, "Calling processImageAndWriteToCache() for local image.");
444
+ if($this->processImageAndWriteToCache($this->localImage)){
445
+ $this->serveCacheFile();
446
+ return true;
447
+ } else {
448
+ return false;
449
+ }
450
+ }
451
+ protected function cleanCache(){
452
+ if (FILE_CACHE_TIME_BETWEEN_CLEANS < 0) {
453
+ return;
454
+ }
455
+ $this->debug(3, "cleanCache() called");
456
+ $lastCleanFile = $this->cacheDirectory . '/timthumb_cacheLastCleanTime.touch';
457
+
458
+ //If this is a new timthumb installation we need to create the file
459
+ if(! is_file($lastCleanFile)){
460
+ $this->debug(1, "File tracking last clean doesn't exist. Creating $lastCleanFile");
461
+ if (!touch($lastCleanFile)) {
462
+ $this->error("Could not create cache clean timestamp file.");
463
+ }
464
+ return;
465
+ }
466
+ if(@filemtime($lastCleanFile) < (time() - FILE_CACHE_TIME_BETWEEN_CLEANS) ){ //Cache was last cleaned more than 1 day ago
467
+ $this->debug(1, "Cache was last cleaned more than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago. Cleaning now.");
468
+ // Very slight race condition here, but worst case we'll have 2 or 3 servers cleaning the cache simultaneously once a day.
469
+ if (!touch($lastCleanFile)) {
470
+ $this->error("Could not create cache clean timestamp file.");
471
+ }
472
+ $files = glob($this->cacheDirectory . '/*' . FILE_CACHE_SUFFIX);
473
+ if ($files) {
474
+ $timeAgo = time() - FILE_CACHE_MAX_FILE_AGE;
475
+ foreach($files as $file){
476
+ if(@filemtime($file) < $timeAgo){
477
+ $this->debug(3, "Deleting cache file $file older than max age: " . FILE_CACHE_MAX_FILE_AGE . " seconds");
478
+ @unlink($file);
479
+ }
480
+ }
481
+ }
482
+ return true;
483
+ } else {
484
+ $this->debug(3, "Cache was cleaned less than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago so no cleaning needed.");
485
+ }
486
+ return false;
487
+ }
488
+ protected function processImageAndWriteToCache($localImage){
489
+ $sData = getimagesize($localImage);
490
+ $origType = $sData[2];
491
+ $mimeType = $sData['mime'];
492
+
493
+ $this->debug(3, "Mime type of image is $mimeType");
494
+ if(! preg_match('/^image\/(?:gif|jpg|jpeg|png)$/i', $mimeType)){
495
+ return $this->error("The image being resized is not a valid gif, jpg or png.");
496
+ }
497
+
498
+ if (!function_exists ('imagecreatetruecolor')) {
499
+ return $this->error('GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library');
500
+ }
501
+
502
+ if (function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
503
+ $imageFilters = array (
504
+ 1 => array (IMG_FILTER_NEGATE, 0),
505
+ 2 => array (IMG_FILTER_GRAYSCALE, 0),
506
+ 3 => array (IMG_FILTER_BRIGHTNESS, 1),
507
+ 4 => array (IMG_FILTER_CONTRAST, 1),
508
+ 5 => array (IMG_FILTER_COLORIZE, 4),
509
+ 6 => array (IMG_FILTER_EDGEDETECT, 0),
510
+ 7 => array (IMG_FILTER_EMBOSS, 0),
511
+ 8 => array (IMG_FILTER_GAUSSIAN_BLUR, 0),
512
+ 9 => array (IMG_FILTER_SELECTIVE_BLUR, 0),
513
+ 10 => array (IMG_FILTER_MEAN_REMOVAL, 0),
514
+ 11 => array (IMG_FILTER_SMOOTH, 0),
515
+ );
516
+ }
517
+
518
+ // get standard input properties
519
+ $new_width = (int) abs ($this->param('w', 0));
520
+ $new_height = (int) abs ($this->param('h', 0));
521
+ $zoom_crop = (int) $this->param('zc', DEFAULT_ZC);
522
+ $quality = (int) abs ($this->param('q', DEFAULT_Q));
523
+ $align = $this->cropTop ? 't' : $this->param('a', 'c');
524
+ $filters = $this->param('f', DEFAULT_F);
525
+ $sharpen = (bool) $this->param('s', DEFAULT_S);
526
+ $canvas_color = $this->param('cc', DEFAULT_CC);
527
+ $canvas_trans = (bool) $this->param('ct', '1');
528
+
529
+ // set default width and height if neither are set already
530
+ if ($new_width == 0 && $new_height == 0) {
531
+ $new_width = 100;
532
+ $new_height = 100;
533
+ }
534
+
535
+ // ensure size limits can not be abused
536
+ $new_width = min ($new_width, MAX_WIDTH);
537
+ $new_height = min ($new_height, MAX_HEIGHT);
538
+
539
+ // set memory limit to be able to have enough space to resize larger images
540
+ $this->setMemoryLimit();
541
+
542
+ // open the existing image
543
+ $image = $this->openImage ($mimeType, $localImage);
544
+ if ($image === false) {
545
+ return $this->error('Unable to open image.');
546
+ }
547
+
548
+ // Get original width and height
549
+ $width = imagesx ($image);
550
+ $height = imagesy ($image);
551
+ $origin_x = 0;
552
+ $origin_y = 0;
553
+
554
+ // generate new w/h if not provided
555
+ if ($new_width && !$new_height) {
556
+ $new_height = floor ($height * ($new_width / $width));
557
+ } else if ($new_height && !$new_width) {
558
+ $new_width = floor ($width * ($new_height / $height));
559
+ }
560
+
561
+ // scale down and add borders
562
+ if ($zoom_crop == 3) {
563
+
564
+ $final_height = $height * ($new_width / $width);
565
+
566
+ if ($final_height > $new_height) {
567
+ $new_width = $width * ($new_height / $height);
568
+ } else {
569
+ $new_height = $final_height;
570
+ }
571
+
572
+ }
573
+
574
+ // create a new true color image
575
+ $canvas = imagecreatetruecolor ($new_width, $new_height);
576
+ imagealphablending ($canvas, false);
577
+
578
+ if (strlen($canvas_color) == 3) { //if is 3-char notation, edit string into 6-char notation
579
+ $canvas_color = str_repeat(substr($canvas_color, 0, 1), 2) . str_repeat(substr($canvas_color, 1, 1), 2) . str_repeat(substr($canvas_color, 2, 1), 2);
580
+ } else if (strlen($canvas_color) != 6) {
581
+ $canvas_color = DEFAULT_CC; // on error return default canvas color
582
+ }
583
+
584
+ $canvas_color_R = hexdec (substr ($canvas_color, 0, 2));
585
+ $canvas_color_G = hexdec (substr ($canvas_color, 2, 2));
586
+ $canvas_color_B = hexdec (substr ($canvas_color, 4, 2));
587
+
588
+ // Create a new transparent color for image
589
+ // If is a png and PNG_IS_TRANSPARENT is false then remove the alpha transparency
590
+ // (and if is set a canvas color show it in the background)
591
+ if(preg_match('/^image\/png$/i', $mimeType) && !PNG_IS_TRANSPARENT && $canvas_trans){
592
+ $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 127);
593
+ }else{
594
+ $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 0);
595
+ }
596
+
597
+
598
+ // Completely fill the background of the new image with allocated color.
599
+ imagefill ($canvas, 0, 0, $color);
600
+
601
+ // scale down and add borders
602
+ if ($zoom_crop == 2) {
603
+
604
+ $final_height = $height * ($new_width / $width);
605
+
606
+ if ($final_height > $new_height) {
607
+
608
+ $origin_x = $new_width / 2;
609
+ $new_width = $width * ($new_height / $height);
610
+ $origin_x = round ($origin_x - ($new_width / 2));
611
+
612
+ } else {
613
+
614
+ $origin_y = $new_height / 2;
615
+ $new_height = $final_height;
616
+ $origin_y = round ($origin_y - ($new_height / 2));
617
+
618
+ }
619
+
620
+ }
621
+
622
+ // Restore transparency blending
623
+ imagesavealpha ($canvas, true);
624
+
625
+ if ($zoom_crop > 0) {
626
+
627
+ $src_x = $src_y = 0;
628
+ $src_w = $width;
629
+ $src_h = $height;
630
+
631
+ $cmp_x = $width / $new_width;
632
+ $cmp_y = $height / $new_height;
633
+
634
+ // calculate x or y coordinate and width or height of source
635
+ if ($cmp_x > $cmp_y) {
636
+
637
+ $src_w = round ($width / $cmp_x * $cmp_y);
638
+ $src_x = round (($width - ($width / $cmp_x * $cmp_y)) / 2);
639
+
640
+ } else if ($cmp_y > $cmp_x) {
641
+
642
+ $src_h = round ($height / $cmp_y * $cmp_x);
643
+ $src_y = round (($height - ($height / $cmp_y * $cmp_x)) / 2);
644
+
645
+ }
646
+
647
+ // positional cropping!
648
+ if ($align) {
649
+ if (strpos ($align, 't') !== false) {
650
+ $src_y = 0;
651
+ }
652
+ if (strpos ($align, 'b') !== false) {
653
+ $src_y = $height - $src_h;
654
+ }
655
+ if (strpos ($align, 'l') !== false) {
656
+ $src_x = 0;
657
+ }
658
+ if (strpos ($align, 'r') !== false) {
659
+ $src_x = $width - $src_w;
660
+ }
661
+ }
662
+
663
+ imagecopyresampled ($canvas, $image, $origin_x, $origin_y, $src_x, $src_y, $new_width, $new_height, $src_w, $src_h);
664
+
665
+ } else {
666
+
667
+ // copy and resize part of an image with resampling
668
+ imagecopyresampled ($canvas, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
669
+
670
+ }
671
+
672
+ if ($filters != '' && function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
673
+ // apply filters to image
674
+ $filterList = explode ('|', $filters);
675
+ foreach ($filterList as $fl) {
676
+
677
+ $filterSettings = explode (',', $fl);
678
+ if (isset ($imageFilters[$filterSettings[0]])) {
679
+
680
+ for ($i = 0; $i < 4; $i ++) {
681
+ if (!isset ($filterSettings[$i])) {
682
+ $filterSettings[$i] = null;
683
+ } else {
684
+ $filterSettings[$i] = (int) $filterSettings[$i];
685
+ }
686
+ }
687
+
688
+ switch ($imageFilters[$filterSettings[0]][1]) {
689
+
690
+ case 1:
691
+
692
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1]);
693
+ break;
694
+
695
+ case 2:
696
+
697
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2]);
698
+ break;
699
+
700
+ case 3:
701
+
702
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3]);
703
+ break;
704
+
705
+ case 4:
706
+
707
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3], $filterSettings[4]);
708
+ break;
709
+
710
+ default:
711
+
712
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0]);
713
+ break;
714
+
715
+ }
716
+ }
717
+ }
718
+ }
719
+
720
+ // sharpen image
721
+ if ($sharpen && function_exists ('imageconvolution')) {
722
+
723
+ $sharpenMatrix = array (
724
+ array (-1,-1,-1),
725
+ array (-1,16,-1),
726
+ array (-1,-1,-1),
727
+ );
728
+
729
+ $divisor = 8;
730
+ $offset = 0;
731
+
732
+ imageconvolution ($canvas, $sharpenMatrix, $divisor, $offset);
733
+
734
+ }
735
+ //Straight from Wordpress core code. Reduces filesize by up to 70% for PNG's
736
+ if ( (IMAGETYPE_PNG == $origType || IMAGETYPE_GIF == $origType) && function_exists('imageistruecolor') && !imageistruecolor( $image ) && imagecolortransparent( $image ) > 0 ){
737
+ imagetruecolortopalette( $canvas, false, imagecolorstotal( $image ) );
738
+ }
739
+
740
+ $imgType = "";
741
+ $tempfile = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
742
+ if(preg_match('/^image\/(?:jpg|jpeg)$/i', $mimeType)){
743
+ $imgType = 'jpg';
744
+ imagejpeg($canvas, $tempfile, $quality);
745
+ } else if(preg_match('/^image\/png$/i', $mimeType)){
746
+ $imgType = 'png';
747
+ imagepng($canvas, $tempfile, floor($quality * 0.09));
748
+ } else if(preg_match('/^image\/gif$/i', $mimeType)){
749
+ $imgType = 'gif';
750
+ imagegif($canvas, $tempfile);
751
+ } else {
752
+ return $this->sanityFail("Could not match mime type after verifying it previously.");
753
+ }
754
+
755
+ if($imgType == 'png' && OPTIPNG_ENABLED && OPTIPNG_PATH && @is_file(OPTIPNG_PATH)){
756
+ $exec = OPTIPNG_PATH;
757
+ $this->debug(3, "optipng'ing $tempfile");
758
+ $presize = filesize($tempfile);
759
+ $out = `$exec -o1 $tempfile`; //you can use up to -o7 but it really slows things down
760
+ clearstatcache();
761
+ $aftersize = filesize($tempfile);
762
+ $sizeDrop = $presize - $aftersize;
763
+ if($sizeDrop > 0){
764
+ $this->debug(1, "optipng reduced size by $sizeDrop");
765
+ } else if($sizeDrop < 0){
766
+ $this->debug(1, "optipng increased size! Difference was: $sizeDrop");
767
+ } else {
768
+ $this->debug(1, "optipng did not change image size.");
769
+ }
770
+ } else if($imgType == 'png' && PNGCRUSH_ENABLED && PNGCRUSH_PATH && @is_file(PNGCRUSH_PATH)){
771
+ $exec = PNGCRUSH_PATH;
772
+ $tempfile2 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
773
+ $this->debug(3, "pngcrush'ing $tempfile to $tempfile2");
774
+ $out = `$exec $tempfile $tempfile2`;
775
+ $todel = "";
776
+ if(is_file($tempfile2)){
777
+ $sizeDrop = filesize($tempfile) - filesize($tempfile2);
778
+ if($sizeDrop > 0){
779
+ $this->debug(1, "pngcrush was succesful and gave a $sizeDrop byte size reduction");
780
+ $todel = $tempfile;
781
+ $tempfile = $tempfile2;
782
+ } else {
783
+ $this->debug(1, "pngcrush did not reduce file size. Difference was $sizeDrop bytes.");
784
+ $todel = $tempfile2;
785
+ }
786
+ } else {
787
+ $this->debug(3, "pngcrush failed with output: $out");
788
+ $todel = $tempfile2;
789
+ }
790
+ @unlink($todel);
791
+ }
792
+
793
+ $this->debug(3, "Rewriting image with security header.");
794
+ $tempfile4 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
795
+ $context = stream_context_create ();
796
+ $fp = fopen($tempfile,'r',0,$context);
797
+ file_put_contents($tempfile4, $this->filePrependSecurityBlock . $imgType . ' ?' . '>'); //6 extra bytes, first 3 being image type
798
+ file_put_contents($tempfile4, $fp, FILE_APPEND);
799
+ fclose($fp);
800
+ @unlink($tempfile);
801
+ $this->debug(3, "Locking and replacing cache file.");
802
+ $lockFile = $this->cachefile . '.lock';
803
+ $fh = fopen($lockFile, 'w');
804
+ if(! $fh){
805
+ return $this->error("Could not open the lockfile for writing an image.");
806
+ }
807
+ if(flock($fh, LOCK_EX)){
808
+ @unlink($this->cachefile); //rename generally overwrites, but doing this in case of platform specific quirks. File might not exist yet.
809
+ rename($tempfile4, $this->cachefile);
810
+ flock($fh, LOCK_UN);
811
+ fclose($fh);
812
+ @unlink($lockFile);
813
+ } else {
814
+ fclose($fh);
815
+ @unlink($lockFile);
816
+ @unlink($tempfile4);
817
+ return $this->error("Could not get a lock for writing.");
818
+ }
819
+ $this->debug(3, "Done image replace with security header. Cleaning up and running cleanCache()");
820
+ imagedestroy($canvas);
821
+ imagedestroy($image);
822
+ return true;
823
+ }
824
+ protected function calcDocRoot(){
825
+ $docRoot = @$_SERVER['DOCUMENT_ROOT'];
826
+ if (defined('LOCAL_FILE_BASE_DIRECTORY')) {
827
+ $docRoot = LOCAL_FILE_BASE_DIRECTORY;
828
+ }
829
+ if(!isset($docRoot)){
830
+ $this->debug(3, "DOCUMENT_ROOT is not set. This is probably windows. Starting search 1.");
831
+ if(isset($_SERVER['SCRIPT_FILENAME'])){
832
+ $docRoot = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
833
+ $this->debug(3, "Generated docRoot using SCRIPT_FILENAME and PHP_SELF as: $docRoot");
834
+ }
835
+ }
836
+ if(!isset($docRoot)){
837
+ $this->debug(3, "DOCUMENT_ROOT still is not set. Starting search 2.");
838
+ if(isset($_SERVER['PATH_TRANSLATED'])){
839
+ $docRoot = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
840
+ $this->debug(3, "Generated docRoot using PATH_TRANSLATED and PHP_SELF as: $docRoot");
841
+ }
842
+ }
843
+ if($docRoot && $_SERVER['DOCUMENT_ROOT'] != '/'){ $docRoot = preg_replace('/\/$/', '', $docRoot); }
844
+ $this->debug(3, "Doc root is: " . $docRoot);
845
+ $this->docRoot = $docRoot;
846
+
847
+ }
848
+ protected function getLocalImagePath($src){
849
+ $src = ltrim($src, '/'); //strip off the leading '/'
850
+ if(! $this->docRoot){
851
+ $this->debug(3, "We have no document root set, so as a last resort, lets check if the image is in the current dir and serve that.");
852
+ //We don't support serving images outside the current dir if we don't have a doc root for security reasons.
853
+ $file = preg_replace('/^.*?([^\/\\\\]+)$/', '$1', $src); //strip off any path info and just leave the filename.
854
+ if(is_file($file)){
855
+ return $this->realpath($file);
856
+ }
857
+ return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
858
+ } //Do not go past this point without docRoot set
859
+
860
+ //Try src under docRoot
861
+ if(file_exists ($this->docRoot . '/' . $src)) {
862
+ $this->debug(3, "Found file as " . $this->docRoot . '/' . $src);
863
+ $real = $this->realpath($this->docRoot . '/' . $src);
864
+ if(stripos($real, $this->docRoot) === 0){
865
+ return $real;
866
+ } else {
867
+ $this->debug(1, "Security block: The file specified occurs outside the document root.");
868
+ //allow search to continue
869
+ }
870
+ }
871
+ //Check absolute paths and then verify the real path is under doc root
872
+ $absolute = $this->realpath('/' . $src);
873
+ if($absolute && file_exists($absolute)){ //realpath does file_exists check, so can probably skip the exists check here
874
+ $this->debug(3, "Found absolute path: $absolute");
875
+ if(! $this->docRoot){ $this->sanityFail("docRoot not set when checking absolute path."); }
876
+ if(stripos($absolute, $this->docRoot) === 0){
877
+ return $absolute;
878
+ } else {
879
+ $this->debug(1, "Security block: The file specified occurs outside the document root.");
880
+ //and continue search
881
+ }
882
+ }
883
+
884
+ $base = $this->docRoot;
885
+
886
+ // account for Windows directory structure
887
+ if (strstr($_SERVER['SCRIPT_FILENAME'],':')) {
888
+ $sub_directories = explode('\\', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
889
+ } else {
890
+ $sub_directories = explode('/', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
891
+ }
892
+
893
+ foreach ($sub_directories as $sub){
894
+ $base .= $sub . '/';
895
+ $this->debug(3, "Trying file as: " . $base . $src);
896
+ if(file_exists($base . $src)){
897
+ $this->debug(3, "Found file as: " . $base . $src);
898
+ $real = $this->realpath($base . $src);
899
+ if(stripos($real, $this->realpath($this->docRoot)) === 0){
900
+ return $real;
901
+ } else {
902
+ $this->debug(1, "Security block: The file specified occurs outside the document root.");
903
+ //And continue search
904
+ }
905
+ }
906
+ }
907
+ return false;
908
+ }
909
+ protected function realpath($path){
910
+ //try to remove any relative paths
911
+ $remove_relatives = '/\w+\/\.\.\//';
912
+ while(preg_match($remove_relatives,$path)){
913
+ $path = preg_replace($remove_relatives, '', $path);
914
+ }
915
+ //if any remain use PHP realpath to strip them out, otherwise return $path
916
+ //if using realpath, any symlinks will also be resolved
917
+ return preg_match('#^\.\./|/\.\./#', $path) ? realpath($path) : $path;
918
+ }
919
+ protected function toDelete($name){
920
+ $this->debug(3, "Scheduling file $name to delete on destruct.");
921
+ $this->toDeletes[] = $name;
922
+ }
923
+ protected function serveWebshot(){
924
+ $this->debug(3, "Starting serveWebshot");
925
+ $instr = "Please follow the instructions at http://code.google.com/p/timthumb/ to set your server up for taking website screenshots.";
926
+ if(! is_file(WEBSHOT_CUTYCAPT)){
927
+ return $this->error("CutyCapt is not installed. $instr");
928
+ }
929
+ if(! is_file(WEBSHOT_XVFB)){
930
+ return $this->Error("Xvfb is not installed. $instr");
931
+ }
932
+ $cuty = WEBSHOT_CUTYCAPT;
933
+ $xv = WEBSHOT_XVFB;
934
+ $screenX = WEBSHOT_SCREEN_X;
935
+ $screenY = WEBSHOT_SCREEN_Y;
936
+ $colDepth = WEBSHOT_COLOR_DEPTH;
937
+ $format = WEBSHOT_IMAGE_FORMAT;
938
+ $timeout = WEBSHOT_TIMEOUT * 1000;
939
+ $ua = WEBSHOT_USER_AGENT;
940
+ $jsOn = WEBSHOT_JAVASCRIPT_ON ? 'on' : 'off';
941
+ $javaOn = WEBSHOT_JAVA_ON ? 'on' : 'off';
942
+ $pluginsOn = WEBSHOT_PLUGINS_ON ? 'on' : 'off';
943
+ $proxy = WEBSHOT_PROXY ? ' --http-proxy=' . WEBSHOT_PROXY : '';
944
+ $tempfile = tempnam($this->cacheDirectory, 'timthumb_webshot');
945
+ $url = $this->src;
946
+ if(! preg_match('/^https?:\/\/[a-zA-Z0-9\.\-]+/i', $url)){
947
+ return $this->error("Invalid URL supplied.");
948
+ }
949
+ $url = preg_replace('/[^A-Za-z0-9\-\.\_\~:\/\?\#\[\]\@\!\$\&\'\(\)\*\+\,\;\=]+/', '', $url); //RFC 3986
950
+ //Very important we don't allow injection of shell commands here. URL is between quotes and we are only allowing through chars allowed by a the RFC
951
+ // which AFAIKT can't be used for shell injection.
952
+ if(WEBSHOT_XVFB_RUNNING){
953
+ putenv('DISPLAY=:100.0');
954
+ $command = "$cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
955
+ } else {
956
+ $command = "$xv --server-args=\"-screen 0, {$screenX}x{$screenY}x{$colDepth}\" $cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
957
+ }
958
+ $this->debug(3, "Executing command: $command");
959
+ $out = `$command`;
960
+ $this->debug(3, "Received output: $out");
961
+ if(! is_file($tempfile)){
962
+ $this->set404();
963
+ return $this->error("The command to create a thumbnail failed.");
964
+ }
965
+ $this->cropTop = true;
966
+ if($this->processImageAndWriteToCache($tempfile)){
967
+ $this->debug(3, "Image processed succesfully. Serving from cache");
968
+ return $this->serveCacheFile();
969
+ } else {
970
+ return false;
971
+ }
972
+ }
973
+ protected function serveExternalImage(){
974
+ if(! preg_match('/^https?:\/\/[a-zA-Z0-9\-\.]+/i', $this->src)){
975
+ $this->error("Invalid URL supplied.");
976
+ return false;
977
+ }
978
+ $tempfile = tempnam($this->cacheDirectory, 'timthumb');
979
+ $this->debug(3, "Fetching external image into temporary file $tempfile");
980
+ $this->toDelete($tempfile);
981
+ #fetch file here
982
+ if(! $this->getURL($this->src, $tempfile)){
983
+ @unlink($this->cachefile);
984
+ touch($this->cachefile);
985
+ $this->debug(3, "Error fetching URL: " . $this->lastURLError);
986
+ $this->error("Error reading the URL you specified from remote host." . $this->lastURLError);
987
+ return false;
988
+ }
989
+
990
+ $mimeType = $this->getMimeType($tempfile);
991
+ if(! preg_match("/^image\/(?:jpg|jpeg|gif|png)$/i", $mimeType)){
992
+ $this->debug(3, "Remote file has invalid mime type: $mimeType");
993
+ @unlink($this->cachefile);
994
+ touch($this->cachefile);
995
+ $this->error("The remote file is not a valid image.");
996
+ return false;
997
+ }
998
+ if($this->processImageAndWriteToCache($tempfile)){
999
+ $this->debug(3, "Image processed succesfully. Serving from cache");
1000
+ return $this->serveCacheFile();
1001
+ } else {
1002
+ return false;
1003
+ }
1004
+ }
1005
+ public static function curlWrite($h, $d){
1006
+ fwrite(self::$curlFH, $d);
1007
+ self::$curlDataWritten += strlen($d);
1008
+ if(self::$curlDataWritten > MAX_FILE_SIZE){
1009
+ return 0;
1010
+ } else {
1011
+ return strlen($d);
1012
+ }
1013
+ }
1014
+ protected function serveCacheFile(){
1015
+ $this->debug(3, "Serving {$this->cachefile}");
1016
+ if(! is_file($this->cachefile)){
1017
+ $this->error("serveCacheFile called in timthumb but we couldn't find the cached file.");
1018
+ return false;
1019
+ }
1020
+ $fp = fopen($this->cachefile, 'rb');
1021
+ if(! $fp){ return $this->error("Could not open cachefile."); }
1022
+ fseek($fp, strlen($this->filePrependSecurityBlock), SEEK_SET);
1023
+ $imgType = fread($fp, 3);
1024
+ fseek($fp, 3, SEEK_CUR);
1025
+ if(ftell($fp) != strlen($this->filePrependSecurityBlock) + 6){
1026
+ @unlink($this->cachefile);
1027
+ return $this->error("The cached image file seems to be corrupt.");
1028
+ }
1029
+ $imageDataSize = filesize($this->cachefile) - (strlen($this->filePrependSecurityBlock) + 6);
1030
+ $this->sendImageHeaders($imgType, $imageDataSize);
1031
+ $bytesSent = @fpassthru($fp);
1032
+ fclose($fp);
1033
+ if($bytesSent > 0){
1034
+ return true;
1035
+ }
1036
+ $content = file_get_contents ($this->cachefile);
1037
+ if ($content != FALSE) {
1038
+ $content = substr($content, strlen($this->filePrependSecurityBlock) + 6);
1039
+ echo $content;
1040
+ $this->debug(3, "Served using file_get_contents and echo");
1041
+ return true;
1042
+ } else {
1043
+ $this->error("Cache file could not be loaded.");
1044
+ return false;
1045
+ }
1046
+ }
1047
+ protected function sendImageHeaders($mimeType, $dataSize){
1048
+ if(! preg_match('/^image\//i', $mimeType)){
1049
+ $mimeType = 'image/' . $mimeType;
1050
+ }
1051
+ if(strtolower($mimeType) == 'image/jpg'){
1052
+ $mimeType = 'image/jpeg';
1053
+ }
1054
+ $gmdate_expires = gmdate ('D, d M Y H:i:s', strtotime ('now +10 days')) . ' GMT';
1055
+ $gmdate_modified = gmdate ('D, d M Y H:i:s') . ' GMT';
1056
+ // send content headers then display image
1057
+ header ('Content-Type: ' . $mimeType);
1058
+ header ('Accept-Ranges: none'); //Changed this because we don't accept range requests
1059
+ header ('Last-Modified: ' . $gmdate_modified);
1060
+ header ('Content-Length: ' . $dataSize);
1061
+ if(BROWSER_CACHE_DISABLE){
1062
+ $this->debug(3, "Browser cache is disabled so setting non-caching headers.");
1063
+ header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
1064
+ header("Pragma: no-cache");
1065
+ header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
1066
+ } else {
1067
+ $this->debug(3, "Browser caching is enabled");
1068
+ header('Cache-Control: max-age=' . BROWSER_CACHE_MAX_AGE . ', must-revalidate');
1069
+ header('Expires: ' . $gmdate_expires);
1070
+ }
1071
+ return true;
1072
+ }
1073
+ protected function securityChecks(){
1074
+ }
1075
+ protected function param($property, $default = ''){
1076
+ if (isset ($_GET[$property])) {
1077
+ return $_GET[$property];
1078
+ } else {
1079
+ return $default;
1080
+ }
1081
+ }
1082
+ protected function openImage($mimeType, $src){
1083
+ switch ($mimeType) {
1084
+ case 'image/jpeg':
1085
+ $image = imagecreatefromjpeg ($src);
1086
+ break;
1087
+
1088
+ case 'image/png':
1089
+ $image = imagecreatefrompng ($src);
1090
+ break;
1091
+
1092
+ case 'image/gif':
1093
+ $image = imagecreatefromgif ($src);
1094
+ break;
1095
+
1096
+ default:
1097
+ $this->error("Unrecognised mimeType");
1098
+ }
1099
+
1100
+ return $image;
1101
+ }
1102
+ protected function getIP(){
1103
+ $rem = @$_SERVER["REMOTE_ADDR"];
1104
+ $ff = @$_SERVER["HTTP_X_FORWARDED_FOR"];
1105
+ $ci = @$_SERVER["HTTP_CLIENT_IP"];
1106
+ if(preg_match('/^(?:192\.168|172\.16|10\.|127\.)/', $rem)){
1107
+ if($ff){ return $ff; }
1108
+ if($ci){ return $ci; }
1109
+ return $rem;
1110
+ } else {
1111
+ if($rem){ return $rem; }
1112
+ if($ff){ return $ff; }
1113
+ if($ci){ return $ci; }
1114
+ return "UNKNOWN";
1115
+ }
1116
+ }
1117
+ protected function debug($level, $msg){
1118
+ if(DEBUG_ON && $level <= DEBUG_LEVEL){
1119
+ $execTime = sprintf('%.6f', microtime(true) - $this->startTime);
1120
+ $tick = sprintf('%.6f', 0);
1121
+ if($this->lastBenchTime > 0){
1122
+ $tick = sprintf('%.6f', microtime(true) - $this->lastBenchTime);
1123
+ }
1124
+ $this->lastBenchTime = microtime(true);
1125
+ error_log("TimThumb Debug line " . __LINE__ . " [$execTime : $tick]: $msg");
1126
+ }
1127
+ }
1128
+ protected function sanityFail($msg){
1129
+ return $this->error("There is a problem in the timthumb code. Message: Please report this error at <a href='http://code.google.com/p/timthumb/issues/list'>timthumb's bug tracking page</a>: $msg");
1130
+ }
1131
+ protected function getMimeType($file){
1132
+ $info = getimagesize($file);
1133
+ if(is_array($info) && $info['mime']){
1134
+ return $info['mime'];
1135
+ }
1136
+ return '';
1137
+ }
1138
+ protected function setMemoryLimit(){
1139
+ $inimem = ini_get('memory_limit');
1140
+ $inibytes = timthumb::returnBytes($inimem);
1141
+ $ourbytes = timthumb::returnBytes(MEMORY_LIMIT);
1142
+ if($inibytes < $ourbytes){
1143
+ ini_set ('memory_limit', MEMORY_LIMIT);
1144
+ $this->debug(3, "Increased memory from $inimem to " . MEMORY_LIMIT);
1145
+ } else {
1146
+ $this->debug(3, "Not adjusting memory size because the current setting is " . $inimem . " and our size of " . MEMORY_LIMIT . " is smaller.");
1147
+ }
1148
+ }
1149
+ protected static function returnBytes($size_str){
1150
+ switch (substr ($size_str, -1))
1151
+ {
1152
+ case 'M': case 'm': return (int)$size_str * 1048576;
1153
+ case 'K': case 'k': return (int)$size_str * 1024;
1154
+ case 'G': case 'g': return (int)$size_str * 1073741824;
1155
+ default: return $size_str;
1156
+ }
1157
+ }
1158
+ protected function getURL($url, $tempfile){
1159
+ $this->lastURLError = false;
1160
+ $url = preg_replace('/ /', '%20', $url);
1161
+ if(function_exists('curl_init')){
1162
+ $this->debug(3, "Curl is installed so using it to fetch URL.");
1163
+ self::$curlFH = fopen($tempfile, 'w');
1164
+ if(! self::$curlFH){
1165
+ $this->error("Could not open $tempfile for writing.");
1166
+ return false;
1167
+ }
1168
+ self::$curlDataWritten = 0;
1169
+ $this->debug(3, "Fetching url with curl: $url");
1170
+ $curl = curl_init($url);
1171
+ curl_setopt ($curl, CURLOPT_TIMEOUT, CURL_TIMEOUT);
1172
+ curl_setopt ($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30");
1173
+ curl_setopt ($curl, CURLOPT_RETURNTRANSFER, TRUE);
1174
+ curl_setopt ($curl, CURLOPT_HEADER, 0);
1175
+ curl_setopt ($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
1176
+ curl_setopt ($curl, CURLOPT_WRITEFUNCTION, 'timthumb::curlWrite');
1177
+ @curl_setopt ($curl, CURLOPT_FOLLOWLOCATION, true);
1178
+ @curl_setopt ($curl, CURLOPT_MAXREDIRS, 10);
1179
+
1180
+ $curlResult = curl_exec($curl);
1181
+ fclose(self::$curlFH);
1182
+ $httpStatus = curl_getinfo($curl, CURLINFO_HTTP_CODE);
1183
+ if($httpStatus == 404){
1184
+ $this->set404();
1185
+ }
1186
+ if($curlResult){
1187
+ curl_close($curl);
1188
+ return true;
1189
+ } else {
1190
+ $this->lastURLError = curl_error($curl);
1191
+ curl_close($curl);
1192
+ return false;
1193
+ }
1194
+ } else {
1195
+ $img = @file_get_contents ($url);
1196
+ if($img === false){
1197
+ $err = error_get_last();
1198
+ if(is_array($err) && $err['message']){
1199
+ $this->lastURLError = $err['message'];
1200
+ } else {
1201
+ $this->lastURLError = $err;
1202
+ }
1203
+ if(preg_match('/404/', $this->lastURLError)){
1204
+ $this->set404();
1205
+ }
1206
+
1207
+ return false;
1208
+ }
1209
+ if(! file_put_contents($tempfile, $img)){
1210
+ $this->error("Could not write to $tempfile.");
1211
+ return false;
1212
+ }
1213
+ return true;
1214
+ }
1215
+
1216
+ }
1217
+ protected function serveImg($file){
1218
+ $s = getimagesize($file);
1219
+ if(! ($s && $s['mime'])){
1220
+ return false;
1221
+ }
1222
+ header ('Content-Type: ' . $s['mime']);
1223
+ header ('Content-Length: ' . filesize($file) );
1224
+ header ('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
1225
+ header ("Pragma: no-cache");
1226
+ $bytes = @readfile($file);
1227
+ if($bytes > 0){
1228
+ return true;
1229
+ }
1230
+ $content = @file_get_contents ($file);
1231
+ if ($content != FALSE){
1232
+ echo $content;
1233
+ return true;
1234
+ }
1235
+ return false;
1236
+
1237
+ }
1238
+ protected function set404(){
1239
+ $this->is404 = true;
1240
+ }
1241
+ protected function is404(){
1242
+ return $this->is404;
1243
+ }
1244
+ }
top-10-addcount.js.php CHANGED
@@ -20,31 +20,9 @@ function tptn_inc_count() {
20
 
21
  $id = intval($_GET['top_ten_id']);
22
  if($id > 0) {
23
- $results = $wpdb->get_results("SELECT postnumber, cntaccess FROM $table_name WHERE postnumber = '$id' LIMIT 1 ");
24
- $test = 0;
25
- if ($results) {
26
- foreach ($results as $result) {
27
- $wpdb->query("UPDATE $table_name SET cntaccess = cntaccess + 1 WHERE postnumber = $result->postnumber LIMIT 1 ");
28
- $test = 1;
29
- }
30
- }
31
- if ($test == 0) {
32
- $wpdb->query("INSERT INTO $table_name (postnumber, cntaccess) VALUES('$id', '1')");
33
- }
34
- // Now update daily count
35
  $current_date = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
36
-
37
- $results = $wpdb->get_results("SELECT postnumber, cntaccess, dp_date FROM $top_ten_daily WHERE postnumber = '$id' AND dp_date = '$current_date' LIMIT 1 ");
38
- $test = 0;
39
- if ($results) {
40
- foreach ($results as $result) {
41
- $wpdb->query("UPDATE $top_ten_daily SET cntaccess = cntaccess + 1 WHERE postnumber = $result->postnumber AND dp_date = '$current_date' LIMIT 1 ");
42
- $test = 1;
43
- }
44
- }
45
- if ($test == 0) {
46
- $wpdb->query("INSERT INTO $top_ten_daily (postnumber, cntaccess, dp_date) VALUES('$id', '1', '$current_date' )");
47
- }
48
  }
49
  }
50
 
20
 
21
  $id = intval($_GET['top_ten_id']);
22
  if($id > 0) {
23
+ $wpdb->query("INSERT INTO $table_name (postnumber, cntaccess) VALUES('$id', '1') ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ");
 
 
 
 
 
 
 
 
 
 
 
24
  $current_date = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
25
+ $wpdb->query("INSERT INTO $top_ten_daily (postnumber, cntaccess, dp_date) VALUES('$id', '1', '$current_date' ) ON DUPLICATE KEY UPDATE cntaccess= cntaccess+1 ");
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
  }
28
 
top-10-counter.js.php CHANGED
@@ -23,19 +23,32 @@ function tptn_disp_count() {
23
  $id = intval($_GET['top_ten_id']);
24
  if($id > 0) {
25
 
26
- $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
27
- $cntaccess = number_format((($resultscount) ? $resultscount->cntaccess : 1));
28
- $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
 
 
 
29
 
30
  // Now process daily count
31
- $daily_range = $tptn_settings[daily_range];
32
- $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
33
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
34
- $current_date = date ( 'Y-m-j' , $current_date );
35
-
36
- $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM ".$table_name_daily." WHERE postnumber = ".$id." AND dp_date >= '".$current_date."' GROUP BY postnumber ");
37
- $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
38
- $count_disp_form = str_replace("%dailycount%", $cntaccess, $count_disp_form);
 
 
 
 
 
 
 
 
 
 
39
 
40
  echo 'document.write("'.$count_disp_form.'")';
41
  }
23
  $id = intval($_GET['top_ten_id']);
24
  if($id > 0) {
25
 
26
+ // Total count per post
27
+ if (strpos($count_disp_form, "%totalcount%") !== false) {
28
+ $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
29
+ $cntaccess = number_format((($resultscount) ? $resultscount->cntaccess : 1));
30
+ $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
31
+ }
32
 
33
  // Now process daily count
34
+ if (strpos($count_disp_form, "%dailycount%") !== false) {
35
+ $daily_range = $tptn_settings[daily_range];
36
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
37
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
38
+ $current_date = date ( 'Y-m-j' , $current_date );
39
+
40
+ $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM ".$table_name_daily." WHERE postnumber = ".$id." AND dp_date >= '".$current_date."' GROUP BY postnumber ");
41
+ $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
42
+ $count_disp_form = str_replace("%dailycount%", $cntaccess, $count_disp_form);
43
+ }
44
+
45
+ // Now process overall count
46
+ if (strpos($count_disp_form, "%overallcount%") !== false) {
47
+ $resultscount = $wpdb->get_row("SELECT SUM(cntaccess) as sumCount FROM ".$table_name);
48
+ $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 1));
49
+ $count_disp_form = str_replace("%overallcount%", $cntaccess, $count_disp_form);
50
+ }
51
+
52
 
53
  echo 'document.write("'.$count_disp_form.'")';
54
  }
top-10-daily.js.php CHANGED
@@ -11,16 +11,16 @@ if (!function_exists('add_action')) {
11
  }
12
  }
13
 
14
- // Display counter using Ajax
15
  function tptn_daily_lists() {
16
  global $wpdb, $siteurl, $tableposts, $id;
17
 
18
  $is_widget = intval($_GET['widget']);
19
 
20
  if($is_widget) {
21
- $output = tptn_pop_posts(true,true);
22
  } else {
23
- $output = tptn_pop_posts(true,false);
24
  }
25
 
26
  echo "document.write('".$output."')";
11
  }
12
  }
13
 
14
+ // Display Top 10 Daily list
15
  function tptn_daily_lists() {
16
  global $wpdb, $siteurl, $tableposts, $id;
17
 
18
  $is_widget = intval($_GET['widget']);
19
 
20
  if($is_widget) {
21
+ $output = tptn_pop_posts('daily=1&is_widget=1');
22
  } else {
23
+ $output = tptn_pop_posts('daily=1&is_widget=0');
24
  }
25
 
26
  echo "document.write('".$output."')";
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.8.1
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
@@ -25,8 +25,7 @@ if ( ! defined( 'WP_PLUGIN_DIR' ) )
25
  // Guess the location
26
  $tptn_path = WP_PLUGIN_DIR.'/'.plugin_basename(dirname(__FILE__));
27
  $tptn_url = WP_PLUGIN_URL.'/'.plugin_basename(dirname(__FILE__));
28
-
29
-
30
 
31
  if (!function_exists('add_action')) {
32
  $wp_root = '../../..';
@@ -38,7 +37,7 @@ if (!function_exists('add_action')) {
38
  }
39
 
40
  global $tptn_db_version;
41
- $tptn_db_version = "2.8";
42
 
43
  function ald_tptn_init() {
44
  //* Begin Localization Code */
@@ -107,12 +106,37 @@ function echo_tptn_post_count() {
107
  }
108
 
109
  // Function to return popular posts
110
- function tptn_pop_posts( $daily = false , $widget = false ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  global $wpdb, $siteurl, $tableposts, $id;
112
  if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
113
  else $table_name = $wpdb->prefix . "top_ten";
114
  $tptn_settings = tptn_read_options();
115
- $limit = $tptn_settings['limit']*5;
 
 
 
116
 
117
  $exclude_categories = explode(',',$tptn_settings['exclude_categories']);
118
 
@@ -123,7 +147,7 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
123
  $sql .= "AND post_status = 'publish' ";
124
  $sql .= "ORDER BY sumCount DESC LIMIT $limit";
125
  } else {
126
- $daily_range = $tptn_settings[daily_range] - 1;
127
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
128
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
129
  $current_date = date ( 'Y-m-j' , $current_date );
@@ -165,29 +189,30 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
165
  $output .= $tptn_settings['before_list_item'];
166
 
167
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark" class="tptn_link">'; // Add beginning of link
168
- if ($tptn_settings['post_thumb_op']=='after') {
169
  $output .= $title; // Add title if post thumbnail is to be displayed after
170
  }
171
- if ($tptn_settings['post_thumb_op']=='inline' || $tptn_settings['post_thumb_op']=='after' || $tptn_settings['post_thumb_op']=='thumbs_only') {
172
- $output .= tptn_get_the_post_thumbnail($result->postnumber);
173
  }
174
- if ($tptn_settings['post_thumb_op']=='inline' || $tptn_settings['post_thumb_op']=='text_only') {
175
  $output .= $title; // Add title when required by settings
176
  }
177
  $output .= '</a>'; // Close the link
178
- if ($tptn_settings['show_excerpt']) {
179
- $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->postnumber,$tptn_settings['excerpt_length']).'</span>';
180
  }
181
- if ($tptn_settings['disp_list_count']) {
182
- $output .= ' ('.number_format($result->sumCount).')';
183
- }
184
- $output .= $tptn_settings['after_list_item'];
185
  $counter++;
186
  }
187
  if ($counter == $limit/5) break; // End loop when related posts limit is reached
188
  }
189
  if ($tptn_settings['show_credit']) $output .= $tptn_settings['before_list_item'].'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10 plugin</a>'.$tptn_settings['after_list_item'];
190
  $output .= $tptn_settings['after_list'];
 
 
191
  }
192
  if (!$widget) $output .= '</div>';
193
 
@@ -196,7 +221,7 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
196
 
197
  // Function to show popular posts
198
  function tptn_show_pop_posts() {
199
- echo tptn_pop_posts(false,false);
200
  }
201
 
202
  // Function to show daily popular posts
@@ -206,85 +231,142 @@ function tptn_show_daily_pop_posts() {
206
  if ($tptn_settings['d_use_js']) {
207
  echo '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
208
  } else {
209
- echo tptn_pop_posts(true,false);
210
- }
211
- }
212
-
213
- // Create a WordPress Widget for Daily Popular Posts
214
- class WidgetTopTenDaily extends WP_Widget
215
- {
216
- function WidgetTopTenDaily()
217
- {
218
- $widget_ops = array('classname' => 'widget_tptn_pop_daily', 'description' => __( 'Display the posts popular today') );
219
- $this->WP_Widget('widget_tptn_pop_daily', __('Daily Popular',TPTN_LOCAL_NAME), $widget_ops);
220
  }
221
-
222
- function widget($args, $instance)
223
- {
224
- echo widget_tptn_pop_daily($args);
225
- }
226
  }
227
 
228
- // Output for Daily Popular Posts Widget
229
- function widget_tptn_pop_daily($args) {
230
- global $wpdb, $siteurl, $tableposts, $id,$tptn_url;
231
-
232
- extract($args); // extracts before_widget,before_title,after_title,after_widget
233
 
234
  $tptn_settings = tptn_read_options();
235
- $title = (($tptn_settings['title_daily']) ? strip_tags($tptn_settings['title_daily']) : __('Daily Popular',TPTN_LOCAL_NAME));
236
-
237
- $output = $before_widget;
238
- $output .= $before_title.$title.$after_title;
239
 
240
- if ($tptn_settings['d_use_js']) {
241
- $output .= '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
242
- } else {
243
- $output .= tptn_pop_posts(true,true);
244
  }
245
-
246
- $output .= $after_widget;
247
-
248
- return apply_filters('tptn_widget_pop_daily',$output);
249
  }
250
-
251
  // Create a Wordpress Widget for Popular Posts
252
  class WidgetTopTen extends WP_Widget
253
  {
254
  function WidgetTopTen()
255
  {
256
- $widget_ops = array('classname' => 'widget_tptn_pop', 'description' => __( 'Display the posts popular this week') );
257
  $this->WP_Widget('widget_tptn_pop',__('Popular Posts',TPTN_LOCAL_NAME), $widget_ops);
258
  }
259
 
260
- function widget($args, $instance)
261
- {
262
- echo widget_tptn_pop($args);
263
- }
264
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
 
266
- // Output of the Popular Posts Widget
267
- function widget_tptn_pop($args) {
268
- global $wpdb, $siteurl, $tableposts, $id;
269
 
270
- extract($args); // extracts before_widget,before_title,after_title,after_widget
 
271
 
272
- $tptn_settings = tptn_read_options();
273
- $title = (($tptn_settings['title']) ? strip_tags($tptn_settings['title']) : __('Popular Posts',TPTN_LOCAL_NAME));
274
-
275
- $output = $before_widget;
276
- $output .= $before_title.$title.$after_title;
277
- $output .= tptn_pop_posts(false,true);
278
- $output .= $after_widget;
279
-
280
- return apply_filters('tptn_widget_pop',$output);
281
  }
 
 
282
 
283
  // Default Options
284
  function tptn_default_options() {
285
  global $tptn_url;
286
  $title = __('<h3>Popular Posts</h3>',TPTN_LOCAL_NAME);
287
  $title_daily = __('<h3>Daily Popular</h3>',TPTN_LOCAL_NAME);
 
288
  $thumb_default = $tptn_url.'/default.png';
289
 
290
  $tptn_settings = Array (
@@ -294,6 +376,8 @@ function tptn_default_options() {
294
  'count_on_pages' => true, // Display on pages
295
  'track_authors' => false, // Track Authors visits
296
  'pv_in_admin' => true, // Add an extra column on edit posts/pages to display page views?
 
 
297
  'disp_list_count' => true, // Display count in popular lists?
298
  'd_use_js' => false, // Use JavaScript for displaying daily posts
299
  'count_disp_form' => '(Visited %totalcount% times, %dailycount% visits today)', // Format to display the count
@@ -306,16 +390,22 @@ function tptn_default_options() {
306
  'before_list_item' => '<li>', // Before each list item
307
  'after_list_item' => '</li>', // After each list item
308
  'post_thumb_op' => 'text_only', // Display only text in posts
309
- 'thumb_height' => '100', // Max height of thumbnails
310
- 'thumb_width' => '100', // Max width of thumbnails
311
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
312
  'thumb_default' => $thumb_default, // Default thumbnail image
313
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
314
- 'scan_images' => false, // Scan post for images
 
315
  'show_excerpt' => false, // Show description in list item
316
  'excerpt_length' => '10', // Length of characters
317
  'exclude_categories' => '', // Exclude these categories
318
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
 
 
 
 
 
319
  );
320
  return $tptn_settings;
321
  }
@@ -360,10 +450,9 @@ function tptn_install() {
360
  if($wpdb->get_var("show tables like '$table_name'") != $table_name) {
361
 
362
  $sql = "CREATE TABLE " . $table_name . " (
363
- accessedid int NOT NULL AUTO_INCREMENT,
364
  postnumber int NOT NULL,
365
  cntaccess int NOT NULL,
366
- PRIMARY KEY (accessedid)
367
  );";
368
 
369
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
@@ -375,11 +464,10 @@ function tptn_install() {
375
  if($wpdb->get_var("show tables like '$table_name_daily'") != $table_name_daily) {
376
 
377
  $sql = "CREATE TABLE " . $table_name_daily . " (
378
- accessedid int NOT NULL AUTO_INCREMENT,
379
  postnumber int NOT NULL,
380
  cntaccess int NOT NULL,
381
  dp_date date NOT NULL,
382
- PRIMARY KEY (accessedid)
383
  );";
384
 
385
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
@@ -393,37 +481,30 @@ function tptn_install() {
393
 
394
  if( $installed_ver != $tptn_db_version ) {
395
 
396
- $sql = "CREATE TABLE " . $table_name . " (
397
- accessedid int NOT NULL AUTO_INCREMENT,
398
- postnumber int NOT NULL,
399
- cntaccess int NOT NULL,
400
- PRIMARY KEY (accessedid)
401
- );";
402
-
403
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
404
- dbDelta($sql);
405
-
406
- $sql = "DROP TABLE $table_name_daily";
407
  $wpdb->query($sql);
408
-
409
- $sql = "CREATE TABLE " . $table_name_daily . " (
410
- accessedid int NOT NULL AUTO_INCREMENT,
411
- postnumber int NOT NULL,
412
- cntaccess int NOT NULL,
413
- dp_date date NOT NULL,
414
- PRIMARY KEY (accessedid)
415
- );";
416
-
417
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
418
- dbDelta($sql);
419
 
420
- update_option( "tptn_db_version", $tptn_db_version );
 
 
 
 
 
421
  }
422
 
423
  }
424
  if (function_exists('register_activation_hook')) {
425
  register_activation_hook(__FILE__,'tptn_install');
426
  }
 
 
 
 
 
 
 
427
 
428
 
429
  // Function to delete all rows in the posts table
@@ -436,71 +517,58 @@ function tptn_trunc_count($daily = false) {
436
  $wpdb->query($sql);
437
  }
438
 
439
- function init_tptn(){
440
-
441
- if (function_exists('register_widget')) {
442
- register_widget('WidgetTopTenDaily');
443
- register_widget('WidgetTopTen');
444
- } else if (function_exists('wp_register_sidebar_widget')) {
445
- wp_register_sidebar_widget('widget_tptn_pop', __('Popular Posts',TPTN_LOCAL_NAME), 'widget_tptn_pop');
446
- wp_register_sidebar_widget('widget_tptn_pop_daily', __('Daily Popular',TPTN_LOCAL_NAME), 'widget_tptn_pop_daily');
447
- } else {
448
- register_sidebar_widget(__('Popular Posts',TPTN_LOCAL_NAME), 'widget_tptn_pop');
449
- register_sidebar_widget(__('Daily Popular',TPTN_LOCAL_NAME), 'widget_tptn_pop_daily');
450
- }
451
  }
452
- add_action('init', 'init_tptn', 1);
453
-
454
- // Function to get the post thumbnail
455
- function tptn_get_the_post_thumbnail($postid) {
456
 
457
- $result = get_post($postid);
458
- $tptn_settings = tptn_read_options();
459
- $output = '';
 
 
460
 
461
- if (function_exists('has_post_thumbnail') && has_post_thumbnail($result->ID)) {
462
- $output .= get_the_post_thumbnail($result->ID, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array('title' => $title,'alt' => $title, 'class' => 'tptn_thumb', 'border' => '0'));
463
- } else {
464
- $postimage = get_post_meta($result->ID, $tptn_settings[thumb_meta], true); // Check
465
- if (!$postimage && $tptn_settings['scan_images']) {
466
- preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
467
- // any image there?
468
- if (isset($matches) && $matches[1][0]) {
469
- $postimage = $matches[1][0]; // we need the first one only!
470
- }
471
- }
472
- 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
473
- if ($tptn_settings['thumb_default_show'] && !$postimage) $postimage = $tptn_settings[thumb_default]; // If no thumb found and settings permit, use default thumb
474
- if ($postimage) {
475
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$tptn_settings[thumb_width].'px;max-height:'.$tptn_settings[thumb_height].'px;" border="0" class="tptn_thumb" />';
476
  }
477
  }
478
-
479
- return $output;
480
  }
481
 
482
- // Function to create an excerpt for the post
483
- function tptn_excerpt($id,$excerpt_length){
484
- $content = get_post($id)->post_content;
485
- $out = strip_tags($content);
486
- $blah = explode(' ',$out);
487
- if (!$excerpt_length) $excerpt_length = 10;
488
- if(count($blah) > $excerpt_length){
489
- $k = $excerpt_length;
490
- $use_dotdotdot = 1;
491
- }else{
492
- $k = count($blah);
493
- $use_dotdotdot = 0;
494
- }
495
- $excerpt = '';
496
- for($i=0; $i<$k; $i++){
497
- $excerpt .= $blah[$i].' ';
498
  }
499
- $excerpt .= ($use_dotdotdot) ? '...' : '';
500
- $out = $excerpt;
501
- return $out;
502
  }
503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504
  // This function adds an Options page in WP Admin
505
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
506
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.9
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
25
  // Guess the location
26
  $tptn_path = WP_PLUGIN_DIR.'/'.plugin_basename(dirname(__FILE__));
27
  $tptn_url = WP_PLUGIN_URL.'/'.plugin_basename(dirname(__FILE__));
28
+ $ald_url = WP_PLUGIN_URL.'/'.plugin_basename(dirname(__FILE__));
 
29
 
30
  if (!function_exists('add_action')) {
31
  $wp_root = '../../..';
37
  }
38
 
39
  global $tptn_db_version;
40
+ $tptn_db_version = "3.0";
41
 
42
  function ald_tptn_init() {
43
  //* Begin Localization Code */
106
  }
107
 
108
  // Function to return popular posts
109
+ function tptn_pop_posts( $args ) {
110
+ $defaults = array(
111
+ 'is_widget' => FALSE,
112
+ 'daily' => FALSE,
113
+ 'echo' => FALSE,
114
+ );
115
+ $defaults = array_merge($defaults, tptn_read_options());
116
+
117
+ // Parse incomming $args into an array and merge it with $defaults
118
+ $args = wp_parse_args( $args, $defaults );
119
+
120
+ // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
121
+ extract( $args, EXTR_SKIP );
122
+
123
+ if ($echo) {
124
+ echo get_tptn_pop_posts($daily, $is_widget, $limit, $show_excerpt, $post_thumb_op, $daily_range);
125
+ } else {
126
+ return get_tptn_pop_posts($daily, $is_widget, $limit, $show_excerpt, $post_thumb_op, $daily_range);
127
+ }
128
+ }
129
+
130
+ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $show_excerpt = false, $post_thumb_op = 'text_only', $daily_range = '1' ) {
131
+ // function get_tptn_pop_posts( $daily = false , $widget = false, $limit, $show_excerpt, $post_thumb_op, $daily_range ) {
132
  global $wpdb, $siteurl, $tableposts, $id;
133
  if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
134
  else $table_name = $wpdb->prefix . "top_ten";
135
  $tptn_settings = tptn_read_options();
136
+ $limit = empty($limit) ? $tptn_settings['limit']*5 : $limit*5;
137
+ $show_excerpt = empty($show_excerpt) ? $tptn_settings['show_excerpt'] : $show_excerpt;
138
+ $post_thumb_op = empty($post_thumb_op) ? $tptn_settings['post_thumb_op'] : $post_thumb_op;
139
+ $daily_range = empty($daily_range) ? $tptn_settings['daily_range'] : $daily_range;
140
 
141
  $exclude_categories = explode(',',$tptn_settings['exclude_categories']);
142
 
147
  $sql .= "AND post_status = 'publish' ";
148
  $sql .= "ORDER BY sumCount DESC LIMIT $limit";
149
  } else {
150
+ $daily_range = $daily_range - 1;
151
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
152
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
153
  $current_date = date ( 'Y-m-j' , $current_date );
189
  $output .= $tptn_settings['before_list_item'];
190
 
191
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark" class="tptn_link">'; // Add beginning of link
192
+ if ($post_thumb_op=='after') {
193
  $output .= $title; // Add title if post thumbnail is to be displayed after
194
  }
195
+ if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
196
+ $output .= ald_get_the_post_thumbnail('postid='.$result->postnumber.'&thumb_height='.$tptn_settings[thumb_height].'&thumb_width='.$tptn_settings[thumb_width].'&thumb_meta='.$tptn_settings[thumb_meta].'&thumb_default='.$tptn_settings[thumb_default].'&thumb_default_show='.$tptn_settings[thumb_default_show].'&thumb_timthumb='.$tptn_settings[thumb_timthumb].'&scan_images='.$tptn_settings[scan_images].'&class=tptn_thumb&filter=tp10_postimage');
197
  }
198
+ if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
199
  $output .= $title; // Add title when required by settings
200
  }
201
  $output .= '</a>'; // Close the link
202
+ if ($show_excerpt) {
203
+ $output .= '<span class="tptn_excerpt"> '.ald_excerpt($result->postnumber,$tptn_settings['excerpt_length']).'</span>';
204
  }
205
+ if ($tptn_settings['disp_list_count']) $output .= ' ('.number_format($result->sumCount).')';
206
+
207
+ $output .= $tptn_settings['after_list_item'];
 
208
  $counter++;
209
  }
210
  if ($counter == $limit/5) break; // End loop when related posts limit is reached
211
  }
212
  if ($tptn_settings['show_credit']) $output .= $tptn_settings['before_list_item'].'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10 plugin</a>'.$tptn_settings['after_list_item'];
213
  $output .= $tptn_settings['after_list'];
214
+ } else {
215
+ $output .= ($tptn_settings['blank_output']) ? '' : $tptn_settings['blank_output_text'];
216
  }
217
  if (!$widget) $output .= '</div>';
218
 
221
 
222
  // Function to show popular posts
223
  function tptn_show_pop_posts() {
224
+ echo tptn_pop_posts('daily=0&is_widget=0');
225
  }
226
 
227
  // Function to show daily popular posts
231
  if ($tptn_settings['d_use_js']) {
232
  echo '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
233
  } else {
234
+ echo tptn_pop_posts('daily=1&is_widget=0');
 
 
 
 
 
 
 
 
 
 
235
  }
 
 
 
 
 
236
  }
237
 
238
+ // Header function
239
+ add_action('wp_head','tptn_header');
240
+ function tptn_header() {
241
+ global $wpdb, $post, $single;
 
242
 
243
  $tptn_settings = tptn_read_options();
244
+ $tptn_custom_CSS = stripslashes($tptn_settings[custom_CSS]);
 
 
 
245
 
246
+ // Add CSS to header
247
+ if ($tptn_custom_CSS != '') {
248
+ echo '<style type="text/css">'.$tptn_custom_CSS.'</style>';
 
249
  }
 
 
 
 
250
  }
251
+
252
  // Create a Wordpress Widget for Popular Posts
253
  class WidgetTopTen extends WP_Widget
254
  {
255
  function WidgetTopTen()
256
  {
257
+ $widget_ops = array('classname' => 'widget_tptn_pop', 'description' => __( 'Display the posts popular this week',TPTN_LOCAL_NAME) );
258
  $this->WP_Widget('widget_tptn_pop',__('Popular Posts',TPTN_LOCAL_NAME), $widget_ops);
259
  }
260
 
261
+ function form($instance) {
262
+ $title = esc_attr($instance['title']);
263
+ $limit = esc_attr($instance['limit']);
264
+ $show_excerpt = esc_attr($instance['show_excerpt']);
265
+ $post_thumb_op = esc_attr($instance['post_thumb_op']);
266
+ $daily = esc_attr($instance['daily']);
267
+ $daily_range = esc_attr($instance['daily_range']);
268
+ ?>
269
+ <p>
270
+ <label for="<?php echo $this->get_field_id('title'); ?>">
271
+ <?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 attribute_escape($title); ?>" />
272
+ </label>
273
+ </p>
274
+ <p>
275
+ <label for="<?php echo $this->get_field_id('limit'); ?>">
276
+ <?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 attribute_escape($limit); ?>" />
277
+ </label>
278
+ </p>
279
+ <p>
280
+ <select class="widefat" id="<?php echo $this->get_field_id('daily'); ?>" name="<?php echo $this->get_field_name('daily'); ?>">
281
+ <option value="overall" <?php if ($daily=='overall') echo 'selected="selected"' ?>><?php _e('Overall', TPTN_LOCAL_NAME); ?></option>
282
+ <option value="daily" <?php if ($daily=='daily') echo 'selected="selected"' ?>><?php _e('Custom time period (Enter below)', TPTN_LOCAL_NAME); ?></option>
283
+ </select>
284
+ </p>
285
+ <p>
286
+ <label for="<?php echo $this->get_field_id('daily_range'); ?>">
287
+ <?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 attribute_escape($daily_range); ?>" />
288
+ </label>
289
+ </p>
290
+ <p>
291
+ <?php _e('Thumbnail options', TPTN_LOCAL_NAME); ?>: <br />
292
+ <select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
293
+ <option value="inline" <?php if ($post_thumb_op=='inline') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, before title',TPTN_LOCAL_NAME); ?></option>
294
+ <option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',TPTN_LOCAL_NAME); ?></option>
295
+ <option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',TPTN_LOCAL_NAME); ?></option>
296
+ <option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',TPTN_LOCAL_NAME); ?></option>
297
+ </select>
298
+ </p>
299
+ <p>
300
+ <label for="<?php echo $this->get_field_id('show_excerpt'); ?>">
301
+ <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); ?>
302
+ </label>
303
+ </p>
304
+ <?php
305
+ } //ending form creation
306
+ function update($new_instance, $old_instance) {
307
+ $instance = $old_instance;
308
+ $instance['title'] = strip_tags($new_instance['title']);
309
+ $instance['limit'] = ($new_instance['limit']);
310
+ $instance['daily'] = ($new_instance['daily']);
311
+ $instance['daily_range'] = strip_tags($new_instance['daily_range']);
312
+ $instance['show_excerpt'] = ($new_instance['show_excerpt']);
313
+ $instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
314
+ return $instance;
315
+ } //ending update
316
+ function widget($args, $instance) {
317
+ global $wpdb, $tptn_url;
318
+
319
+ extract($args, EXTR_SKIP);
320
+
321
+ $tptn_settings = tptn_read_options();
322
+
323
+ $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings[title]) : $instance['title']);
324
+ $limit = $instance['limit'];
325
+ $show_excerpt = $instance['show_excerpt'];
326
+ $post_thumb_op = $instance['post_thumb_op'];
327
+ if (empty($limit)) $limit = $tptn_settings[limit];
328
+ $daily_range = $instance['daily_range'];
329
+ if (empty($daily_range)) $daily_range = $tptn_settings[daily_range];
330
+ $daily = $instance['daily'];
331
+ $daily = (($daily=="daily") ? true : false);
332
+
333
+ $output = $before_widget;
334
+ $output .= $before_title . $title . $after_title;
335
+
336
+ if ($daily) {
337
+ if ($tptn_settings['d_use_js']) {
338
+ $output .= '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
339
+ } else {
340
+ $output .= tptn_pop_posts('daily=1&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
341
+ }
342
+ } else {
343
+ // $output .= tptn_pop_posts('daily=0&is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&daily_range='.$daily_range);
344
+ $output .= get_tptn_pop_posts( $daily = 0 , $widget = 1, $limit, $show_excerpt, $post_thumb_op, $daily_range );
345
+ }
346
 
347
+ $output .= $after_widget;
348
+
349
+ echo $output;
350
 
351
+ } //ending function widget
352
+ }
353
 
354
+ // Initialise the plugin
355
+ function init_tptn(){
356
+
357
+ if (function_exists('register_widget')) {
358
+ register_widget('WidgetTopTen');
359
+ }
 
 
 
360
  }
361
+ add_action('init', 'init_tptn', 1);
362
+
363
 
364
  // Default Options
365
  function tptn_default_options() {
366
  global $tptn_url;
367
  $title = __('<h3>Popular Posts</h3>',TPTN_LOCAL_NAME);
368
  $title_daily = __('<h3>Daily Popular</h3>',TPTN_LOCAL_NAME);
369
+ $blank_output_text = __('No top posts yet',TPTN_LOCAL_NAME);
370
  $thumb_default = $tptn_url.'/default.png';
371
 
372
  $tptn_settings = Array (
376
  'count_on_pages' => true, // Display on pages
377
  'track_authors' => false, // Track Authors visits
378
  'pv_in_admin' => true, // Add an extra column on edit posts/pages to display page views?
379
+ 'blank_output' => true, // Blank output?
380
+ 'blank_output_text' => $blank_output_text, // Blank output text
381
  'disp_list_count' => true, // Display count in popular lists?
382
  'd_use_js' => false, // Use JavaScript for displaying daily posts
383
  'count_disp_form' => '(Visited %totalcount% times, %dailycount% visits today)', // Format to display the count
390
  'before_list_item' => '<li>', // Before each list item
391
  'after_list_item' => '</li>', // After each list item
392
  'post_thumb_op' => 'text_only', // Display only text in posts
393
+ 'thumb_height' => '50', // Max height of thumbnails
394
+ 'thumb_width' => '50', // Max width of thumbnails
395
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
396
  'thumb_default' => $thumb_default, // Default thumbnail image
397
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
398
+ 'thumb_timthumb' => true, // Use timthumb
399
+ 'scan_images' => true, // Scan post for images
400
  'show_excerpt' => false, // Show description in list item
401
  'excerpt_length' => '10', // Length of characters
402
  'exclude_categories' => '', // Exclude these categories
403
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
404
+ 'custom_CSS' => '', // Custom CSS to style the output
405
+ 'cron_on' => false, // Run cron daily?
406
+ 'cron_hour' => '0', // Cron Hour
407
+ 'cron_min' => '0', // Cron Minute
408
+ 'cron_recurrence' => 'weekly', // Frequency of cron
409
  );
410
  return $tptn_settings;
411
  }
450
  if($wpdb->get_var("show tables like '$table_name'") != $table_name) {
451
 
452
  $sql = "CREATE TABLE " . $table_name . " (
 
453
  postnumber int NOT NULL,
454
  cntaccess int NOT NULL,
455
+ PRIMARY KEY (postnumber)
456
  );";
457
 
458
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
464
  if($wpdb->get_var("show tables like '$table_name_daily'") != $table_name_daily) {
465
 
466
  $sql = "CREATE TABLE " . $table_name_daily . " (
 
467
  postnumber int NOT NULL,
468
  cntaccess int NOT NULL,
469
  dp_date date NOT NULL,
470
+ PRIMARY KEY (postnumber, dp_date)
471
  );";
472
 
473
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
481
 
482
  if( $installed_ver != $tptn_db_version ) {
483
 
484
+ $sql = "ALTER TABLE " . $table_name . " DROP COLUMN accessedid ";
485
+ $wpdb->query($sql);
486
+ $sql = "ALTER IGNORE TABLE " . $table_name . " ADD PRIMARY KEY (postnumber) ";
 
 
 
 
 
 
 
 
487
  $wpdb->query($sql);
 
 
 
 
 
 
 
 
 
 
 
488
 
489
+ $sql = "ALTER TABLE " . $table_name_daily . " DROP COLUMN accessedid ";
490
+ $wpdb->query($sql);
491
+ $sql = "ALTER IGNORE TABLE " . $table_name_daily . " ADD PRIMARY KEY (postnumber, dp_date) ";
492
+ $wpdb->query($sql);
493
+
494
+ update_option( "tptn_db_version", $tptn_db_version );
495
  }
496
 
497
  }
498
  if (function_exists('register_activation_hook')) {
499
  register_activation_hook(__FILE__,'tptn_install');
500
  }
501
+ function tptn_update_db_check() {
502
+ global $tptn_db_version;
503
+ if (get_site_option('tptn_db_version') != $tptn_db_version) {
504
+ tptn_install();
505
+ }
506
+ }
507
+ add_action('plugins_loaded', 'tptn_update_db_check');
508
 
509
 
510
  // Function to delete all rows in the posts table
517
  $wpdb->query($sql);
518
  }
519
 
520
+ // Filter function to resize post thumbnail. Filters out tp10_postimage
521
+ function ald_scale_thumbs($postimage, $thumb_width, $thumb_height) {
522
+ global $ald_url;
523
+ $new_pi = $ald_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
524
+ return $new_pi;
 
 
 
 
 
 
 
525
  }
526
+ add_filter('tp10_postimage', 'ald_scale_thumbs', 10, 3);
 
 
 
527
 
528
+ // Function to truncate daily run
529
+ add_action('ald_tptn_hook', 'ald_tptn');
530
+ function ald_tptn() {
531
+ tptn_trunc_count(true);
532
+ }
533
 
534
+ // Function to enable run or actions
535
+ function tptn_enable_run($hour, $min, $recurrence) {
536
+ if (function_exists('wp_schedule_event')) {
537
+ // Invoke WordPress internal cron
538
+ if (!wp_next_scheduled('ald_tptn_hook')) {
539
+ wp_schedule_event( mktime($hour,$min), $recurrence, 'ald_tptn_hook' );
540
+ } else {
541
+ wp_clear_scheduled_hook('ald_tptn_hook');
542
+ wp_schedule_event( mktime($hour,$min), $recurrence, 'ald_tptn_hook' );
 
 
 
 
 
 
543
  }
544
  }
 
 
545
  }
546
 
547
+ // Function to disable daily run or actions
548
+ function tptn_disable_run() {
549
+ if (function_exists('wp_schedule_event')) {
550
+ if (wp_next_scheduled('ald_tptn_hook')) {
551
+ wp_clear_scheduled_hook('ald_tptn_hook');
552
+ }
 
 
 
 
 
 
 
 
 
 
553
  }
 
 
 
554
  }
555
 
556
+ // 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/
557
+ if (!function_exists('ald_more_reccurences')) {
558
+ function ald_more_reccurences() {
559
+ return array(
560
+ 'weekly' => array('interval' => 604800, 'display' => __( 'Once Weekly', TPTN_LOCAL_NAME )),
561
+ 'fortnightly' => array('interval' => 1209600, 'display' => __( 'Once Fortnightly', TPTN_LOCAL_NAME )),
562
+ 'monthly' => array('interval' => 2419200, 'display' => __( 'Once Monthly', TPTN_LOCAL_NAME )),
563
+ );
564
+ }
565
+ add_filter('cron_schedules', 'ald_more_reccurences');
566
+ }
567
+
568
+ // Include framework file
569
+ require_once(ALD_TPTN_DIR . "/ald-framework.inc.php");
570
+
571
+
572
  // This function adds an Options page in WP Admin
573
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
574
  require_once(ALD_TPTN_DIR . "/admin.inc.php");