Top 10 – Popular posts plugin for WordPress - Version 1.6

Version Description

  • Added: Added support for excerpts and detection of first image in the post
  • Added: Daily posts are tracked using the blog time instead of server time
  • Fixed: On the first visit, display 1 instead of 0
  • Fixed: Fixed uninstall script
Download this release

Release Info

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

Code changes from version 1.5.3 to 1.6

admin-styles.css ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
19
+ #side .side-widget
20
+ {
21
+ background:#FFF;
22
+ border:solid 1px #DDD;
23
+ margin-bottom:10px;
24
+ border-width:0 1px 1px;
25
+ }
26
+
27
+ .side-widget span.title
28
+ {
29
+ background: #E6EADB;
30
+ border: #E1D6C6 1px solid;
31
+ border-bottom: #F3F6ED 0px solid;
32
+ color: #676E04;
33
+ font-size: 1em;
34
+ font-weight: bold;
35
+ height: 22px;
36
+ padding: 2px;
37
+ text-align: center;
38
+ display: block;
39
+ }
40
+
41
+ .side-widget p
42
+ {
43
+ padding:10px;
44
+ }
45
+
46
+ .side-widget ul
47
+ {
48
+ margin:10px 5px 5px;
49
+ }
50
+
51
+ .side-widget ul li
52
+ {
53
+ list-style:square;
54
+ padding-bottom:3px;
55
+ margin-left:20px;
56
+ }
57
+
58
+ .side-widget span.rss-date
59
+ {
60
+ color:#999;
61
+ font:normal normal 10px/12px Georgia, "Times New Roman", Times, serif;
62
+ }
63
+
64
+ #donate-form
65
+ {
66
+ background:#c9defa;
67
+ padding:10px;
68
+ text-align: center;
69
+ }
admin.inc.php CHANGED
@@ -37,6 +37,9 @@ function tptn_options() {
37
  $tptn_settings[thumb_default] = $_POST['thumb_default'];
38
  $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
39
  $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
 
 
 
40
 
41
  update_option('ald_tptn_settings', $tptn_settings);
42
 
@@ -67,22 +70,8 @@ function tptn_options() {
67
  ?>
68
 
69
  <div class="wrap">
70
- <h2>Top 10 </h2>
71
- <div style="border: #ccc 1px solid; padding: 10px">
72
- <fieldset class="options">
73
- <legend>
74
- <h3>
75
- <?php _e('Support the Development',TPTN_LOCAL_NAME); ?>
76
- </h3>
77
- </legend>
78
- <p>
79
- <?php _e('If you find ',TPTN_LOCAL_NAME); ?>
80
- <a href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10</a>
81
- <?php _e('useful, please do',TPTN_LOCAL_NAME); ?>
82
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=donate@ajaydsouza.com&amp;item_name=Top%10%20(From%20WP-Admin)&amp;no_shipping=1&amp;return=http://ajaydsouza.com/wordpress/plugins/top-10/&amp;cancel_return=http://ajaydsouza.com/wordpress/plugins/top-10/&amp;cn=Note%20to%20Author&amp;tax=0&amp;currency_code=USD&amp;bn=PP-DonationsBF&amp;charset=UTF-8" title="Donate via PayPal"><?php _e('drop in your contribution',TPTN_LOCAL_NAME); ?></a>.
83
- (<a href="http://ajaydsouza.com/donate/"><?php _e('Some reasons why you should.',TPTN_LOCAL_NAME); ?></a>)</p>
84
- </fieldset>
85
- </div>
86
  <form method="post" id="tptn_options" name="tptn_options" style="border: #ccc 1px solid; padding: 10px">
87
  <fieldset class="options">
88
  <legend>
@@ -171,6 +160,18 @@ function tptn_options() {
171
  <?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?>
172
  <input type="textbox" name="title_daily" id="title_daily" value="<?php echo stripslashes($tptn_settings[title_daily]); ?>">
173
  </label>
 
 
 
 
 
 
 
 
 
 
 
 
174
  </p>
175
  <h4><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></h4>
176
  <p>
@@ -218,6 +219,12 @@ function tptn_options() {
218
  <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_meta])); ?>">
219
  </label>
220
  </p>
 
 
 
 
 
 
221
  <p><strong><?php _e('Thumbnail dimensions:',TPTN_LOCAL_NAME); ?></strong><br />
222
  <label>
223
  <?php _e('Max width: ',TPTN_LOCAL_NAME); ?>
@@ -249,6 +256,44 @@ function tptn_options() {
249
  </fieldset>
250
  </form>
251
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  <?php
253
 
254
  }
@@ -283,12 +328,19 @@ function tptn_adminmenu() {
283
  }
284
 
285
  if ((function_exists('add_options_page'))&&($tptn_is_admin)) {
286
- add_options_page(__("Top 10", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_options', 'tptn_options');
 
287
  add_posts_page(__("Popular Posts", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_manage', 'tptn_manage');
288
  }
289
  }
290
  add_action('admin_menu', 'tptn_adminmenu');
291
 
 
 
 
 
 
 
292
 
293
  /* Create a Dashboard Widget */
294
  function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
@@ -308,9 +360,11 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
308
  $sql .= "AND post_status = 'publish' ";
309
  $sql .= "ORDER BY cntaccess DESC";
310
  } else {
311
- $daily_range = $tptn_settings[daily_range]. ' DAY';
312
- $current_date = $wpdb->get_var("SELECT DATE_ADD(DATE_SUB(CURDATE(), INTERVAL ".$daily_range."), INTERVAL 1 DAY) ");
313
-
 
 
314
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
315
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
316
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
@@ -488,8 +542,11 @@ function tptn_value($column_name, $id) {
488
  // Now process daily count
489
  $table_name = $wpdb->prefix . "top_ten_daily";
490
 
491
- $daily_range = $tptn_settings[daily_range]. ' DAY';
492
- $current_date = $wpdb->get_var("SELECT DATE_ADD(DATE_SUB(CURDATE(), INTERVAL ".$daily_range."), INTERVAL 1 DAY) ");
 
 
 
493
  $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM $table_name WHERE postnumber = $id AND dp_date >= '$current_date' GROUP BY postnumber ");
494
  $cntaccess .= number_format((($resultscount) ? $resultscount->sumCount : 0));
495
 
37
  $tptn_settings[thumb_default] = $_POST['thumb_default'];
38
  $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
39
  $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
40
+ $tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
41
+ $tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
42
+ $tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
43
 
44
  update_option('ald_tptn_settings', $tptn_settings);
45
 
70
  ?>
71
 
72
  <div class="wrap">
73
+ <h2>Top 10</h2>
74
+ <div id="options-div">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  <form method="post" id="tptn_options" name="tptn_options" style="border: #ccc 1px solid; padding: 10px">
76
  <fieldset class="options">
77
  <legend>
160
  <?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?>
161
  <input type="textbox" name="title_daily" id="title_daily" value="<?php echo stripslashes($tptn_settings[title_daily]); ?>">
162
  </label>
163
+ </p>
164
+ <p>
165
+ <label>
166
+ <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings[show_excerpt]) echo 'checked="checked"' ?> />
167
+ <strong><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></strong>
168
+ </label>
169
+ </p>
170
+ <p>
171
+ <label>
172
+ <?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?>
173
+ <input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings[excerpt_length]); ?>">
174
+ </label>
175
  </p>
176
  <h4><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></h4>
177
  <p>
219
  <input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_meta])); ?>">
220
  </label>
221
  </p>
222
+ <p>
223
+ <label>
224
+ <input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings[scan_images]) echo 'checked="checked"' ?> />
225
+ <?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); ?>
226
+ </label>
227
+ </p>
228
  <p><strong><?php _e('Thumbnail dimensions:',TPTN_LOCAL_NAME); ?></strong><br />
229
  <label>
230
  <?php _e('Max width: ',TPTN_LOCAL_NAME); ?>
256
  </fieldset>
257
  </form>
258
  </div>
259
+ <div id="side">
260
+ <div class="side-widget">
261
+ <span class="title"><?php _e('Quick links') ?></span>
262
+ <ul>
263
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
264
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
265
+ <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
266
+ <li><a href="http://ajaydsouza.org"><?php _e('Support forum',TPTN_LOCAL_NAME) ?></a></li>
267
+ <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
268
+ </ul>
269
+ </div>
270
+ <div class="side-widget">
271
+ <span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
272
+ <?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));
273
+ ?>
274
+ </div>
275
+ <div class="side-widget">
276
+ <span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
277
+ <div id="donate-form">
278
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
279
+ <input type="hidden" name="cmd" value="_xclick">
280
+ <input type="hidden" name="business" value="KGVN7LJLLZCMY">
281
+ <input type="hidden" name="lc" value="IN">
282
+ <input type="hidden" name="item_name" value="Donation for Top 10">
283
+ <input type="hidden" name="item_number" value="crp">
284
+ <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
285
+ <input type="hidden" name="currency_code" value="USD">
286
+ <input type="hidden" name="button_subtype" value="services">
287
+ <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
288
+ <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?">
289
+ <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
290
+ </form>
291
+ </div>
292
+ </div>
293
+ </div>
294
+
295
+ </div>
296
+
297
  <?php
298
 
299
  }
328
  }
329
 
330
  if ((function_exists('add_options_page'))&&($tptn_is_admin)) {
331
+ $plugin_page = add_options_page(__("Top 10", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_options', 'tptn_options');
332
+ add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
333
  add_posts_page(__("Popular Posts", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_manage', 'tptn_manage');
334
  }
335
  }
336
  add_action('admin_menu', 'tptn_adminmenu');
337
 
338
+ function tptn_adminhead() {
339
+ global $tptn_url;
340
+
341
+ ?>
342
+ <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/admin-styles.css" />
343
+ <?php }
344
 
345
  /* Create a Dashboard Widget */
346
  function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
360
  $sql .= "AND post_status = 'publish' ";
361
  $sql .= "ORDER BY cntaccess DESC";
362
  } else {
363
+ $daily_range = $tptn_settings[daily_range]-1;
364
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
365
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
366
+ $current_date = date ( 'Y-m-j' , $current_date );
367
+
368
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
369
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
370
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
542
  // Now process daily count
543
  $table_name = $wpdb->prefix . "top_ten_daily";
544
 
545
+ $daily_range = $tptn_settings[daily_range]-1;
546
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
547
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
548
+ $current_date = date ( 'Y-m-j' , $current_date );
549
+
550
  $resultscount = $wpdb->get_row("SELECT postnumber, SUM(cntaccess) as sumCount FROM $table_name WHERE postnumber = $id AND dp_date >= '$current_date' GROUP BY postnumber ");
551
  $cntaccess .= number_format((($resultscount) ? $resultscount->sumCount : 0));
552
 
languages/tptn-be_BY.mo CHANGED
Binary file
languages/tptn-be_BY.po CHANGED
@@ -2,173 +2,326 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-26 23:48+0530\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Fat Cow <zhr@tut.by>\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
 
15
- #: admin.inc.php:33
16
  msgid "Options saved successfully."
17
  msgstr "Налады захаваны."
18
 
19
- #: admin.inc.php:42
20
  msgid "Options set to Default."
21
  msgstr "Налады скінуты."
22
 
23
- #: admin.inc.php:53
24
- msgid "Support the Development"
25
- msgstr "Падтрымаеце стваральніка ўбудовы"
26
-
27
- #: admin.inc.php:57
28
- msgid "If you find "
29
- msgstr "Калі вы лічыце ўбудова"
30
-
31
- #: admin.inc.php:59
32
- msgid "useful, please do"
33
- msgstr "карысным, калі ласка, зрабіце"
34
-
35
- #: admin.inc.php:60
36
- msgid "drop in your contribution"
37
- msgstr "ахвяраванне"
38
-
39
  #: admin.inc.php:61
40
- msgid "Some reasons why you should."
41
- msgstr "Некалькі чыннікаў зрабіць гэта."
 
42
 
43
- #: admin.inc.php:68
 
 
 
 
 
44
  msgid "Options:"
45
  msgstr "Налады ўбудовы:"
46
 
47
- #: admin.inc.php:73
48
  msgid "Format to display the count in: "
49
  msgstr "Фармат адлюстравання колькасці праглядаў:"
50
 
51
- #: admin.inc.php:77
52
  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>"
53
  msgstr "Выкарыстоўвайце <code>%totalcount%</code> каб паказваць агульны лік праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
54
 
55
- #: admin.inc.php:80
56
  msgid "Number of popular posts to display: "
57
  msgstr "Колькасць Папулярных запісаў у спісе:"
58
 
59
- #: admin.inc.php:86
60
- msgid "Title of popular posts: "
61
- msgstr "Загаловак блока Папулярных запісаў:"
62
-
63
- #: admin.inc.php:92
64
- msgid "Title of daily popular posts: "
65
- msgstr "Загаловак блока Папулярных сёння запісаў:"
66
-
67
- #: admin.inc.php:98
68
  msgid "Daily Popular should contain views of how many days? "
69
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
70
 
71
- #: admin.inc.php:105
72
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
73
  msgstr "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для старонак будзе падлічвацца."
74
 
75
- #: admin.inc.php:111
76
  msgid "Display number of views on posts?"
77
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
78
 
79
- #: admin.inc.php:117
80
  msgid "Display number of views on pages?"
81
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
82
 
83
- #: admin.inc.php:123
84
  msgid "Track visits of authors on their own posts?"
85
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
86
 
87
- #: admin.inc.php:129
88
  msgid "Display number of page views in popular lists?"
89
  msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
90
 
91
- #: admin.inc.php:135
92
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
93
  msgstr "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , і гэта можа павялічыць час загрузкі старонак"
94
 
95
- #: admin.inc.php:141
96
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
97
  msgstr "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага будзе дададзена асобная калонка"
98
 
99
- #: admin.inc.php:147
100
  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!"
101
  msgstr "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
102
 
103
- #: admin.inc.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  msgid "Do you want to set options to Default?"
105
  msgstr "Скінуць налады ўбудовы?"
106
 
107
- #: admin.inc.php:168
108
- #: admin.inc.php:192
109
- #: admin.inc.php:364
110
- #: top-10.php:354
111
- #: top-10.php:373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid "Popular Posts"
113
  msgstr "Папулярныя запісы"
114
 
115
- #: admin.inc.php:168
116
  msgid "Daily Popular Posts"
117
  msgstr "Папулярныя сёння запісы"
118
 
119
- #: admin.inc.php:191
120
- #: admin.inc.php:192
121
  msgid "Top 10"
122
  msgstr "Топ 10 запісаў"
123
 
124
- #: admin.inc.php:272
125
  msgid "Results"
126
  msgstr "Вынікі"
127
 
128
- #: admin.inc.php:274
129
- #: admin.inc.php:280
130
  msgid "of"
131
  msgstr "з"
132
 
133
- #: admin.inc.php:278
134
  msgid "Page"
135
  msgstr "Старонка"
136
 
137
- #: admin.inc.php:292
138
  msgid "View Daily Popular Posts"
139
  msgstr "Паглядзець усе Папулярныя сёння запісы"
140
 
141
- #: admin.inc.php:296
142
  msgid "View Overall Popular Posts"
143
  msgstr "Паглядзець усе Папулярныя запісы"
144
 
145
- #: admin.inc.php:300
146
  msgid "Results per-page:"
147
  msgstr "Вынікаў на старонку:"
148
 
149
- #: admin.inc.php:324
150
  msgid "Previous"
151
  msgstr "Папярэдняя старонка"
152
 
153
- #: admin.inc.php:342
154
  msgid "Next"
155
  msgstr "Наступная старонка"
156
 
157
- #: admin.inc.php:365
158
- #: top-10.php:303
159
- #: top-10.php:374
160
  msgid "Daily Popular"
161
  msgstr "Папулярныя сёння запісы"
162
 
163
- #: admin.inc.php:376
164
  msgid "Total / Today's Views"
165
  msgstr "Усяго / Сёння праглядаў"
166
 
167
- #: top-10.php:156
168
  msgid "<h3>Popular Posts</h3>"
169
  msgstr "<h3>Папулярныя запісы</h3>"
170
 
171
- #: top-10.php:157
172
  msgid "<h3>Daily Popular</h3>"
173
  msgstr "<h3>Папулярныя сёння запісы</h3>"
174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-14 01:08+0530\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:46
19
  msgid "Options saved successfully."
20
  msgstr "Налады захаваны."
21
 
22
+ #: admin.inc.php:55
23
  msgid "Options set to Default."
24
  msgstr "Налады скінуты."
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #: admin.inc.php:61
27
+ #, fuzzy
28
+ msgid "Top 10 popular posts reset"
29
+ msgstr "Загаловак блока Папулярных запісаў:"
30
 
31
+ #: admin.inc.php:67
32
+ #, fuzzy
33
+ msgid "Top 10 daily popular posts reset"
34
+ msgstr "Загаловак блока Папулярных сёння запісаў:"
35
+
36
+ #: admin.inc.php:79
37
  msgid "Options:"
38
  msgstr "Налады ўбудовы:"
39
 
40
+ #: admin.inc.php:84
41
  msgid "Format to display the count in: "
42
  msgstr "Фармат адлюстравання колькасці праглядаў:"
43
 
44
+ #: admin.inc.php:88
45
  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>"
46
  msgstr "Выкарыстоўвайце <code>%totalcount%</code> каб паказваць агульны лік праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
47
 
48
+ #: admin.inc.php:91
49
  msgid "Number of popular posts to display: "
50
  msgstr "Колькасць Папулярных запісаў у спісе:"
51
 
52
+ #: admin.inc.php:97
 
 
 
 
 
 
 
 
53
  msgid "Daily Popular should contain views of how many days? "
54
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
55
 
56
+ #: admin.inc.php:104
57
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
58
  msgstr "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для старонак будзе падлічвацца."
59
 
60
+ #: admin.inc.php:110
61
  msgid "Display number of views on posts?"
62
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
63
 
64
+ #: admin.inc.php:116
65
  msgid "Display number of views on pages?"
66
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
67
 
68
+ #: admin.inc.php:122
69
  msgid "Track visits of authors on their own posts?"
70
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
71
 
72
+ #: admin.inc.php:128
73
  msgid "Display number of page views in popular lists?"
74
  msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
75
 
76
+ #: admin.inc.php:134
77
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
78
  msgstr "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , і гэта можа павялічыць час загрузкі старонак"
79
 
80
+ #: admin.inc.php:140
81
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
82
  msgstr "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага будзе дададзена асобная калонка"
83
 
84
+ #: admin.inc.php:146
85
  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!"
86
  msgstr "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
87
 
88
+ #: admin.inc.php:150
89
+ #, fuzzy
90
+ msgid "Output Options:"
91
+ msgstr "Налады ўбудовы:"
92
+
93
+ #: admin.inc.php:154
94
+ msgid "Title of popular posts: "
95
+ msgstr "Загаловак блока Папулярных запісаў:"
96
+
97
+ #: admin.inc.php:160
98
+ msgid "Title of daily popular posts: "
99
+ msgstr "Загаловак блока Папулярных сёння запісаў:"
100
+
101
+ #: admin.inc.php:167
102
+ msgid "Show post excerpt in list?"
103
+ msgstr ""
104
+
105
+ #: admin.inc.php:172
106
+ msgid "Length of excerpt (in words): "
107
+ msgstr ""
108
+
109
+ #: admin.inc.php:176
110
+ msgid "Customize the output:"
111
+ msgstr ""
112
+
113
+ #: admin.inc.php:179
114
+ msgid "HTML to display before the list of posts: "
115
+ msgstr ""
116
+
117
+ #: admin.inc.php:185
118
+ msgid "HTML to display before each list item: "
119
+ msgstr ""
120
+
121
+ #: admin.inc.php:191
122
+ #, fuzzy
123
+ msgid "HTML to display after each list item: "
124
+ msgstr "Фармат адлюстравання колькасці праглядаў:"
125
+
126
+ #: admin.inc.php:197
127
+ msgid "HTML to display after the list of posts: "
128
+ msgstr ""
129
+
130
+ #: admin.inc.php:201
131
+ msgid "Post thumbnail options:"
132
+ msgstr ""
133
+
134
+ #: admin.inc.php:205
135
+ #, fuzzy
136
+ msgid "Display thumbnails inline with posts"
137
+ msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
138
+
139
+ #: admin.inc.php:209
140
+ msgid "Display only thumbnails, no text"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:213
144
+ msgid "Do not display thumbnails, only text."
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:218
148
+ msgid "Post thumbnail meta field (the meta should point contain the image source): "
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:225
152
+ 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"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:228
156
+ msgid "Thumbnail dimensions:"
157
+ msgstr ""
158
+
159
+ #: admin.inc.php:230
160
+ msgid "Max width: "
161
+ msgstr ""
162
+
163
+ #: admin.inc.php:235
164
+ msgid "Max height: "
165
+ msgstr ""
166
+
167
+ #: admin.inc.php:239
168
+ msgid "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 below:"
169
+ msgstr ""
170
+
171
+ #: admin.inc.php:244
172
  msgid "Do you want to set options to Default?"
173
  msgstr "Скінуць налады ўбудовы?"
174
 
175
+ #: admin.inc.php:247
176
+ msgid "Reset count"
177
+ msgstr ""
178
+
179
+ #: admin.inc.php:250
180
+ msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
181
+ msgstr ""
182
+
183
+ #: admin.inc.php:253
184
+ msgid "Are you sure you want to reset the popular posts?"
185
+ msgstr ""
186
+
187
+ #: admin.inc.php:254
188
+ msgid "Are you sure you want to reset the daily popular posts?"
189
+ msgstr ""
190
+
191
+ #: admin.inc.php:261
192
+ msgid "Quick links"
193
+ msgstr ""
194
+
195
+ #: admin.inc.php:263
196
+ #, fuzzy
197
+ msgid "Top 10 "
198
+ msgstr "Топ 10 запісаў"
199
+
200
+ #: admin.inc.php:263
201
+ msgid "plugin page"
202
+ msgstr ""
203
+
204
+ #: admin.inc.php:264
205
+ msgid "Other plugins"
206
+ msgstr ""
207
+
208
+ #: admin.inc.php:265
209
+ msgid "Ajay's blog"
210
+ msgstr ""
211
+
212
+ #: admin.inc.php:266
213
+ msgid "Support forum"
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:267
217
+ msgid "Follow @ajaydsouza on Twitter"
218
+ msgstr ""
219
+
220
+ #: admin.inc.php:271
221
+ msgid "Recent developments"
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:276
225
+ #, fuzzy
226
+ msgid "Support the development"
227
+ msgstr "Падтрымаеце стваральніка ўбудовы"
228
+
229
+ #: admin.inc.php:284
230
+ msgid "Enter amount in USD: "
231
+ msgstr ""
232
+
233
+ #: admin.inc.php:288
234
+ msgid "Send your donation to the author of"
235
+ msgstr ""
236
+
237
+ #: admin.inc.php:308
238
+ #: admin.inc.php:333
239
+ #: admin.inc.php:513
240
+ #: top-10.php:232
241
+ #: top-10.php:394
242
  msgid "Popular Posts"
243
  msgstr "Папулярныя запісы"
244
 
245
+ #: admin.inc.php:308
246
  msgid "Daily Popular Posts"
247
  msgstr "Папулярныя сёння запісы"
248
 
249
+ #: admin.inc.php:331
250
+ #: admin.inc.php:333
251
  msgid "Top 10"
252
  msgstr "Топ 10 запісаў"
253
 
254
+ #: admin.inc.php:421
255
  msgid "Results"
256
  msgstr "Вынікі"
257
 
258
+ #: admin.inc.php:423
259
+ #: admin.inc.php:429
260
  msgid "of"
261
  msgstr "з"
262
 
263
+ #: admin.inc.php:427
264
  msgid "Page"
265
  msgstr "Старонка"
266
 
267
+ #: admin.inc.php:441
268
  msgid "View Daily Popular Posts"
269
  msgstr "Паглядзець усе Папулярныя сёння запісы"
270
 
271
+ #: admin.inc.php:445
272
  msgid "View Overall Popular Posts"
273
  msgstr "Паглядзець усе Папулярныя запісы"
274
 
275
+ #: admin.inc.php:449
276
  msgid "Results per-page:"
277
  msgstr "Вынікаў на старонку:"
278
 
279
+ #: admin.inc.php:473
280
  msgid "Previous"
281
  msgstr "Папярэдняя старонка"
282
 
283
+ #: admin.inc.php:491
284
  msgid "Next"
285
  msgstr "Наступная старонка"
286
 
287
+ #: admin.inc.php:514
288
+ #: top-10.php:211
289
+ #: top-10.php:395
290
  msgid "Daily Popular"
291
  msgstr "Папулярныя сёння запісы"
292
 
293
+ #: admin.inc.php:525
294
  msgid "Total / Today's Views"
295
  msgstr "Усяго / Сёння праглядаў"
296
 
297
+ #: top-10.php:243
298
  msgid "<h3>Popular Posts</h3>"
299
  msgstr "<h3>Папулярныя запісы</h3>"
300
 
301
+ #: top-10.php:244
302
  msgid "<h3>Daily Popular</h3>"
303
  msgstr "<h3>Папулярныя сёння запісы</h3>"
304
 
305
+ #: top-10.php:430
306
+ msgid "Settings"
307
+ msgstr ""
308
+
309
+ #: top-10.php:431
310
+ msgid "Support"
311
+ msgstr ""
312
+
313
+ #: top-10.php:432
314
+ msgid "Donate"
315
+ msgstr ""
316
+
317
+ #~ msgid "If you find "
318
+ #~ msgstr "Калі вы лічыце ўбудова"
319
+
320
+ #~ msgid "useful, please do"
321
+ #~ msgstr "карысным, калі ласка, зрабіце"
322
+
323
+ #~ msgid "drop in your contribution"
324
+ #~ msgstr "ахвяраванне"
325
+
326
+ #~ msgid "Some reasons why you should."
327
+ #~ msgstr "Некалькі чыннікаў зрабіць гэта."
languages/tptn-en_US.mo CHANGED
Binary file
languages/tptn-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-25 17:35+0530\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"
@@ -14,259 +14,295 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:43
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:52
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:58
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:64
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:75
34
- msgid "Support the Development"
35
- msgstr ""
36
-
37
  #: admin.inc.php:79
38
- msgid "If you find "
39
- msgstr ""
40
-
41
- #: admin.inc.php:81
42
- msgid "useful, please do"
43
- msgstr ""
44
-
45
- #: admin.inc.php:82
46
- msgid "drop in your contribution"
47
- msgstr ""
48
-
49
- #: admin.inc.php:83
50
- msgid "Some reasons why you should."
51
- msgstr ""
52
-
53
- #: admin.inc.php:90
54
  msgid "Options:"
55
  msgstr ""
56
 
57
- #: admin.inc.php:95
58
  msgid "Format to display the count in: "
59
  msgstr ""
60
 
61
- #: admin.inc.php:99
62
  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>"
63
  msgstr ""
64
 
65
- #: admin.inc.php:102
66
  msgid "Number of popular posts to display: "
67
  msgstr ""
68
 
69
- #: admin.inc.php:108
70
  msgid "Daily Popular should contain views of how many days? "
71
  msgstr ""
72
 
73
- #: admin.inc.php:115
74
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
75
  msgstr ""
76
 
77
- #: admin.inc.php:121
78
  msgid "Display number of views on posts?"
79
  msgstr ""
80
 
81
- #: admin.inc.php:127
82
  msgid "Display number of views on pages?"
83
  msgstr ""
84
 
85
- #: admin.inc.php:133
86
  msgid "Track visits of authors on their own posts?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:139
90
  msgid "Display number of page views in popular lists?"
91
  msgstr ""
92
 
93
- #: admin.inc.php:145
94
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
95
  msgstr ""
96
 
97
- #: admin.inc.php:151
98
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
99
  msgstr ""
100
 
101
- #: admin.inc.php:157
102
  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!"
103
  msgstr ""
104
 
105
- #: admin.inc.php:161
106
  msgid "Output Options:"
107
  msgstr ""
108
 
109
- #: admin.inc.php:165
110
  msgid "Title of popular posts: "
111
  msgstr ""
112
 
113
- #: admin.inc.php:171
114
  msgid "Title of daily popular posts: "
115
  msgstr ""
116
 
117
- #: admin.inc.php:175
 
 
 
 
 
 
 
 
118
  msgid "Customize the output:"
119
  msgstr ""
120
 
121
- #: admin.inc.php:178
122
  msgid "HTML to display before the list of posts: "
123
  msgstr ""
124
 
125
- #: admin.inc.php:184
126
  msgid "HTML to display before each list item: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:190
130
  msgid "HTML to display after each list item: "
131
  msgstr ""
132
 
133
- #: admin.inc.php:196
134
  msgid "HTML to display after the list of posts: "
135
  msgstr ""
136
 
137
- #: admin.inc.php:200
138
  msgid "Post thumbnail options:"
139
  msgstr ""
140
 
141
- #: admin.inc.php:204
142
  msgid "Display thumbnails inline with posts"
143
  msgstr ""
144
 
145
- #: admin.inc.php:208
146
  msgid "Display only thumbnails, no text"
147
  msgstr ""
148
 
149
- #: admin.inc.php:212
150
  msgid "Do not display thumbnails, only text."
151
  msgstr ""
152
 
153
- #: admin.inc.php:217
154
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
155
  msgstr ""
156
 
157
- #: admin.inc.php:221
 
 
 
 
158
  msgid "Thumbnail dimensions:"
159
  msgstr ""
160
 
161
- #: admin.inc.php:223
162
  msgid "Max width: "
163
  msgstr ""
164
 
165
- #: admin.inc.php:228
166
  msgid "Max height: "
167
  msgstr ""
168
 
169
- #: admin.inc.php:232
170
  msgid "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 below:"
171
  msgstr ""
172
 
173
- #: admin.inc.php:237
174
  msgid "Do you want to set options to Default?"
175
  msgstr ""
176
 
177
- #: admin.inc.php:240
178
  msgid "Reset count"
179
  msgstr ""
180
 
181
- #: admin.inc.php:243
182
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
183
  msgstr ""
184
 
185
- #: admin.inc.php:246
186
  msgid "Are you sure you want to reset the popular posts?"
187
  msgstr ""
188
 
189
- #: admin.inc.php:247
190
  msgid "Are you sure you want to reset the daily popular posts?"
191
  msgstr ""
192
 
 
 
 
 
193
  #: admin.inc.php:263
194
- #: admin.inc.php:287
195
- #: admin.inc.php:459
196
- #: top-10.php:218
197
- #: top-10.php:378
198
- msgid "Popular Posts"
199
  msgstr ""
200
 
201
  #: admin.inc.php:263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  msgid "Daily Popular Posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:286
206
- #: admin.inc.php:287
207
  msgid "Top 10"
208
  msgstr ""
209
 
210
- #: admin.inc.php:367
211
  msgid "Results"
212
  msgstr ""
213
 
214
- #: admin.inc.php:369
215
- #: admin.inc.php:375
216
  msgid "of"
217
  msgstr ""
218
 
219
- #: admin.inc.php:373
220
  msgid "Page"
221
  msgstr ""
222
 
223
- #: admin.inc.php:387
224
  msgid "View Daily Popular Posts"
225
  msgstr ""
226
 
227
- #: admin.inc.php:391
228
  msgid "View Overall Popular Posts"
229
  msgstr ""
230
 
231
- #: admin.inc.php:395
232
  msgid "Results per-page:"
233
  msgstr ""
234
 
235
- #: admin.inc.php:419
236
  msgid "Previous"
237
  msgstr ""
238
 
239
- #: admin.inc.php:437
240
  msgid "Next"
241
  msgstr ""
242
 
243
- #: admin.inc.php:460
244
- #: top-10.php:197
245
- #: top-10.php:379
246
  msgid "Daily Popular"
247
  msgstr ""
248
 
249
- #: admin.inc.php:471
250
  msgid "Total / Today's Views"
251
  msgstr ""
252
 
253
- #: top-10.php:229
254
  msgid "<h3>Popular Posts</h3>"
255
  msgstr ""
256
 
257
- #: top-10.php:230
258
  msgid "<h3>Daily Popular</h3>"
259
  msgstr ""
260
 
261
- #: top-10.php:393
262
  msgid "Settings"
263
  msgstr ""
264
 
265
- #: top-10.php:394
266
  msgid "Support"
267
  msgstr ""
268
 
269
- #: top-10.php:395
270
  msgid "Donate"
271
  msgstr ""
272
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-14 01:06+0530\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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:46
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
+ #: admin.inc.php:55
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
+ #: admin.inc.php:61
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
+ #: admin.inc.php:67
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
 
 
 
 
33
  #: admin.inc.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  msgid "Options:"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:84
38
  msgid "Format to display the count in: "
39
  msgstr ""
40
 
41
+ #: admin.inc.php:88
42
  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>"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:91
46
  msgid "Number of popular posts to display: "
47
  msgstr ""
48
 
49
+ #: admin.inc.php:97
50
  msgid "Daily Popular should contain views of how many days? "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:104
54
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
55
  msgstr ""
56
 
57
+ #: admin.inc.php:110
58
  msgid "Display number of views on posts?"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:116
62
  msgid "Display number of views on pages?"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:122
66
  msgid "Track visits of authors on their own posts?"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:128
70
  msgid "Display number of page views in popular lists?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:134
74
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
75
  msgstr ""
76
 
77
+ #: admin.inc.php:140
78
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:146
82
  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!"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:150
86
  msgid "Output Options:"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:154
90
  msgid "Title of popular posts: "
91
  msgstr ""
92
 
93
+ #: admin.inc.php:160
94
  msgid "Title of daily popular posts: "
95
  msgstr ""
96
 
97
+ #: admin.inc.php:167
98
+ msgid "Show post excerpt in list?"
99
+ msgstr ""
100
+
101
+ #: admin.inc.php:172
102
+ msgid "Length of excerpt (in words): "
103
+ msgstr ""
104
+
105
+ #: admin.inc.php:176
106
  msgid "Customize the output:"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:179
110
  msgid "HTML to display before the list of posts: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:185
114
  msgid "HTML to display before each list item: "
115
  msgstr ""
116
 
117
+ #: admin.inc.php:191
118
  msgid "HTML to display after each list item: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:197
122
  msgid "HTML to display after the list of posts: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:201
126
  msgid "Post thumbnail options:"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:205
130
  msgid "Display thumbnails inline with posts"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:209
134
  msgid "Display only thumbnails, no text"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:213
138
  msgid "Do not display thumbnails, only text."
139
  msgstr ""
140
 
141
+ #: admin.inc.php:218
142
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
143
  msgstr ""
144
 
145
+ #: admin.inc.php:225
146
+ 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"
147
+ msgstr ""
148
+
149
+ #: admin.inc.php:228
150
  msgid "Thumbnail dimensions:"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:230
154
  msgid "Max width: "
155
  msgstr ""
156
 
157
+ #: admin.inc.php:235
158
  msgid "Max height: "
159
  msgstr ""
160
 
161
+ #: admin.inc.php:239
162
  msgid "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 below:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:244
166
  msgid "Do you want to set options to Default?"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:247
170
  msgid "Reset count"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:250
174
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:253
178
  msgid "Are you sure you want to reset the popular posts?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:254
182
  msgid "Are you sure you want to reset the daily popular posts?"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:261
186
+ msgid "Quick links"
187
+ msgstr ""
188
+
189
  #: admin.inc.php:263
190
+ msgid "Top 10 "
 
 
 
 
191
  msgstr ""
192
 
193
  #: admin.inc.php:263
194
+ msgid "plugin page"
195
+ msgstr ""
196
+
197
+ #: admin.inc.php:264
198
+ msgid "Other plugins"
199
+ msgstr ""
200
+
201
+ #: admin.inc.php:265
202
+ msgid "Ajay's blog"
203
+ msgstr ""
204
+
205
+ #: admin.inc.php:266
206
+ msgid "Support forum"
207
+ msgstr ""
208
+
209
+ #: admin.inc.php:267
210
+ msgid "Follow @ajaydsouza on Twitter"
211
+ msgstr ""
212
+
213
+ #: admin.inc.php:271
214
+ msgid "Recent developments"
215
+ msgstr ""
216
+
217
+ #: admin.inc.php:276
218
+ msgid "Support the development"
219
+ msgstr ""
220
+
221
+ #: admin.inc.php:284
222
+ msgid "Enter amount in USD: "
223
+ msgstr ""
224
+
225
+ #: admin.inc.php:288
226
+ msgid "Send your donation to the author of"
227
+ msgstr ""
228
+
229
+ #: admin.inc.php:308
230
+ #: admin.inc.php:333
231
+ #: admin.inc.php:513
232
+ #: top-10.php:232
233
+ #: top-10.php:394
234
+ msgid "Popular Posts"
235
+ msgstr ""
236
+
237
+ #: admin.inc.php:308
238
  msgid "Daily Popular Posts"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:331
242
+ #: admin.inc.php:333
243
  msgid "Top 10"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:421
247
  msgid "Results"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:423
251
+ #: admin.inc.php:429
252
  msgid "of"
253
  msgstr ""
254
 
255
+ #: admin.inc.php:427
256
  msgid "Page"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:441
260
  msgid "View Daily Popular Posts"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:445
264
  msgid "View Overall Popular Posts"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:449
268
  msgid "Results per-page:"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:473
272
  msgid "Previous"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:491
276
  msgid "Next"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:514
280
+ #: top-10.php:211
281
+ #: top-10.php:395
282
  msgid "Daily Popular"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:525
286
  msgid "Total / Today's Views"
287
  msgstr ""
288
 
289
+ #: top-10.php:243
290
  msgid "<h3>Popular Posts</h3>"
291
  msgstr ""
292
 
293
+ #: top-10.php:244
294
  msgid "<h3>Daily Popular</h3>"
295
  msgstr ""
296
 
297
+ #: top-10.php:430
298
  msgid "Settings"
299
  msgstr ""
300
 
301
+ #: top-10.php:431
302
  msgid "Support"
303
  msgstr ""
304
 
305
+ #: top-10.php:432
306
  msgid "Donate"
307
  msgstr ""
308
 
languages/tptn-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-25 17:35+0530\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"
@@ -14,259 +14,295 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:43
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:52
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:58
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:64
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:75
34
- msgid "Support the Development"
35
- msgstr ""
36
-
37
  #: admin.inc.php:79
38
- msgid "If you find "
39
- msgstr ""
40
-
41
- #: admin.inc.php:81
42
- msgid "useful, please do"
43
- msgstr ""
44
-
45
- #: admin.inc.php:82
46
- msgid "drop in your contribution"
47
- msgstr ""
48
-
49
- #: admin.inc.php:83
50
- msgid "Some reasons why you should."
51
- msgstr ""
52
-
53
- #: admin.inc.php:90
54
  msgid "Options:"
55
  msgstr ""
56
 
57
- #: admin.inc.php:95
58
  msgid "Format to display the count in: "
59
  msgstr ""
60
 
61
- #: admin.inc.php:99
62
  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>"
63
  msgstr ""
64
 
65
- #: admin.inc.php:102
66
  msgid "Number of popular posts to display: "
67
  msgstr ""
68
 
69
- #: admin.inc.php:108
70
  msgid "Daily Popular should contain views of how many days? "
71
  msgstr ""
72
 
73
- #: admin.inc.php:115
74
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
75
  msgstr ""
76
 
77
- #: admin.inc.php:121
78
  msgid "Display number of views on posts?"
79
  msgstr ""
80
 
81
- #: admin.inc.php:127
82
  msgid "Display number of views on pages?"
83
  msgstr ""
84
 
85
- #: admin.inc.php:133
86
  msgid "Track visits of authors on their own posts?"
87
  msgstr ""
88
 
89
- #: admin.inc.php:139
90
  msgid "Display number of page views in popular lists?"
91
  msgstr ""
92
 
93
- #: admin.inc.php:145
94
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
95
  msgstr ""
96
 
97
- #: admin.inc.php:151
98
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
99
  msgstr ""
100
 
101
- #: admin.inc.php:157
102
  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!"
103
  msgstr ""
104
 
105
- #: admin.inc.php:161
106
  msgid "Output Options:"
107
  msgstr ""
108
 
109
- #: admin.inc.php:165
110
  msgid "Title of popular posts: "
111
  msgstr ""
112
 
113
- #: admin.inc.php:171
114
  msgid "Title of daily popular posts: "
115
  msgstr ""
116
 
117
- #: admin.inc.php:175
 
 
 
 
 
 
 
 
118
  msgid "Customize the output:"
119
  msgstr ""
120
 
121
- #: admin.inc.php:178
122
  msgid "HTML to display before the list of posts: "
123
  msgstr ""
124
 
125
- #: admin.inc.php:184
126
  msgid "HTML to display before each list item: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:190
130
  msgid "HTML to display after each list item: "
131
  msgstr ""
132
 
133
- #: admin.inc.php:196
134
  msgid "HTML to display after the list of posts: "
135
  msgstr ""
136
 
137
- #: admin.inc.php:200
138
  msgid "Post thumbnail options:"
139
  msgstr ""
140
 
141
- #: admin.inc.php:204
142
  msgid "Display thumbnails inline with posts"
143
  msgstr ""
144
 
145
- #: admin.inc.php:208
146
  msgid "Display only thumbnails, no text"
147
  msgstr ""
148
 
149
- #: admin.inc.php:212
150
  msgid "Do not display thumbnails, only text."
151
  msgstr ""
152
 
153
- #: admin.inc.php:217
154
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
155
  msgstr ""
156
 
157
- #: admin.inc.php:221
 
 
 
 
158
  msgid "Thumbnail dimensions:"
159
  msgstr ""
160
 
161
- #: admin.inc.php:223
162
  msgid "Max width: "
163
  msgstr ""
164
 
165
- #: admin.inc.php:228
166
  msgid "Max height: "
167
  msgstr ""
168
 
169
- #: admin.inc.php:232
170
  msgid "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 below:"
171
  msgstr ""
172
 
173
- #: admin.inc.php:237
174
  msgid "Do you want to set options to Default?"
175
  msgstr ""
176
 
177
- #: admin.inc.php:240
178
  msgid "Reset count"
179
  msgstr ""
180
 
181
- #: admin.inc.php:243
182
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
183
  msgstr ""
184
 
185
- #: admin.inc.php:246
186
  msgid "Are you sure you want to reset the popular posts?"
187
  msgstr ""
188
 
189
- #: admin.inc.php:247
190
  msgid "Are you sure you want to reset the daily popular posts?"
191
  msgstr ""
192
 
 
 
 
 
193
  #: admin.inc.php:263
194
- #: admin.inc.php:287
195
- #: admin.inc.php:459
196
- #: top-10.php:218
197
- #: top-10.php:378
198
- msgid "Popular Posts"
199
  msgstr ""
200
 
201
  #: admin.inc.php:263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  msgid "Daily Popular Posts"
203
  msgstr ""
204
 
205
- #: admin.inc.php:286
206
- #: admin.inc.php:287
207
  msgid "Top 10"
208
  msgstr ""
209
 
210
- #: admin.inc.php:367
211
  msgid "Results"
212
  msgstr ""
213
 
214
- #: admin.inc.php:369
215
- #: admin.inc.php:375
216
  msgid "of"
217
  msgstr ""
218
 
219
- #: admin.inc.php:373
220
  msgid "Page"
221
  msgstr ""
222
 
223
- #: admin.inc.php:387
224
  msgid "View Daily Popular Posts"
225
  msgstr ""
226
 
227
- #: admin.inc.php:391
228
  msgid "View Overall Popular Posts"
229
  msgstr ""
230
 
231
- #: admin.inc.php:395
232
  msgid "Results per-page:"
233
  msgstr ""
234
 
235
- #: admin.inc.php:419
236
  msgid "Previous"
237
  msgstr ""
238
 
239
- #: admin.inc.php:437
240
  msgid "Next"
241
  msgstr ""
242
 
243
- #: admin.inc.php:460
244
- #: top-10.php:197
245
- #: top-10.php:379
246
  msgid "Daily Popular"
247
  msgstr ""
248
 
249
- #: admin.inc.php:471
250
  msgid "Total / Today's Views"
251
  msgstr ""
252
 
253
- #: top-10.php:229
254
  msgid "<h3>Popular Posts</h3>"
255
  msgstr ""
256
 
257
- #: top-10.php:230
258
  msgid "<h3>Daily Popular</h3>"
259
  msgstr ""
260
 
261
- #: top-10.php:393
262
  msgid "Settings"
263
  msgstr ""
264
 
265
- #: top-10.php:394
266
  msgid "Support"
267
  msgstr ""
268
 
269
- #: top-10.php:395
270
  msgid "Donate"
271
  msgstr ""
272
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-14 01:06+0530\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"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:46
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
+ #: admin.inc.php:55
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
+ #: admin.inc.php:61
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
+ #: admin.inc.php:67
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
 
 
 
 
33
  #: admin.inc.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  msgid "Options:"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:84
38
  msgid "Format to display the count in: "
39
  msgstr ""
40
 
41
+ #: admin.inc.php:88
42
  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>"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:91
46
  msgid "Number of popular posts to display: "
47
  msgstr ""
48
 
49
+ #: admin.inc.php:97
50
  msgid "Daily Popular should contain views of how many days? "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:104
54
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
55
  msgstr ""
56
 
57
+ #: admin.inc.php:110
58
  msgid "Display number of views on posts?"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:116
62
  msgid "Display number of views on pages?"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:122
66
  msgid "Track visits of authors on their own posts?"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:128
70
  msgid "Display number of page views in popular lists?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:134
74
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
75
  msgstr ""
76
 
77
+ #: admin.inc.php:140
78
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:146
82
  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!"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:150
86
  msgid "Output Options:"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:154
90
  msgid "Title of popular posts: "
91
  msgstr ""
92
 
93
+ #: admin.inc.php:160
94
  msgid "Title of daily popular posts: "
95
  msgstr ""
96
 
97
+ #: admin.inc.php:167
98
+ msgid "Show post excerpt in list?"
99
+ msgstr ""
100
+
101
+ #: admin.inc.php:172
102
+ msgid "Length of excerpt (in words): "
103
+ msgstr ""
104
+
105
+ #: admin.inc.php:176
106
  msgid "Customize the output:"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:179
110
  msgid "HTML to display before the list of posts: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:185
114
  msgid "HTML to display before each list item: "
115
  msgstr ""
116
 
117
+ #: admin.inc.php:191
118
  msgid "HTML to display after each list item: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:197
122
  msgid "HTML to display after the list of posts: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:201
126
  msgid "Post thumbnail options:"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:205
130
  msgid "Display thumbnails inline with posts"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:209
134
  msgid "Display only thumbnails, no text"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:213
138
  msgid "Do not display thumbnails, only text."
139
  msgstr ""
140
 
141
+ #: admin.inc.php:218
142
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
143
  msgstr ""
144
 
145
+ #: admin.inc.php:225
146
+ 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"
147
+ msgstr ""
148
+
149
+ #: admin.inc.php:228
150
  msgid "Thumbnail dimensions:"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:230
154
  msgid "Max width: "
155
  msgstr ""
156
 
157
+ #: admin.inc.php:235
158
  msgid "Max height: "
159
  msgstr ""
160
 
161
+ #: admin.inc.php:239
162
  msgid "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 below:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:244
166
  msgid "Do you want to set options to Default?"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:247
170
  msgid "Reset count"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:250
174
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:253
178
  msgid "Are you sure you want to reset the popular posts?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:254
182
  msgid "Are you sure you want to reset the daily popular posts?"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:261
186
+ msgid "Quick links"
187
+ msgstr ""
188
+
189
  #: admin.inc.php:263
190
+ msgid "Top 10 "
 
 
 
 
191
  msgstr ""
192
 
193
  #: admin.inc.php:263
194
+ msgid "plugin page"
195
+ msgstr ""
196
+
197
+ #: admin.inc.php:264
198
+ msgid "Other plugins"
199
+ msgstr ""
200
+
201
+ #: admin.inc.php:265
202
+ msgid "Ajay's blog"
203
+ msgstr ""
204
+
205
+ #: admin.inc.php:266
206
+ msgid "Support forum"
207
+ msgstr ""
208
+
209
+ #: admin.inc.php:267
210
+ msgid "Follow @ajaydsouza on Twitter"
211
+ msgstr ""
212
+
213
+ #: admin.inc.php:271
214
+ msgid "Recent developments"
215
+ msgstr ""
216
+
217
+ #: admin.inc.php:276
218
+ msgid "Support the development"
219
+ msgstr ""
220
+
221
+ #: admin.inc.php:284
222
+ msgid "Enter amount in USD: "
223
+ msgstr ""
224
+
225
+ #: admin.inc.php:288
226
+ msgid "Send your donation to the author of"
227
+ msgstr ""
228
+
229
+ #: admin.inc.php:308
230
+ #: admin.inc.php:333
231
+ #: admin.inc.php:513
232
+ #: top-10.php:232
233
+ #: top-10.php:394
234
+ msgid "Popular Posts"
235
+ msgstr ""
236
+
237
+ #: admin.inc.php:308
238
  msgid "Daily Popular Posts"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:331
242
+ #: admin.inc.php:333
243
  msgid "Top 10"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:421
247
  msgid "Results"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:423
251
+ #: admin.inc.php:429
252
  msgid "of"
253
  msgstr ""
254
 
255
+ #: admin.inc.php:427
256
  msgid "Page"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:441
260
  msgid "View Daily Popular Posts"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:445
264
  msgid "View Overall Popular Posts"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:449
268
  msgid "Results per-page:"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:473
272
  msgid "Previous"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:491
276
  msgid "Next"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:514
280
+ #: top-10.php:211
281
+ #: top-10.php:395
282
  msgid "Daily Popular"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:525
286
  msgid "Total / Today's Views"
287
  msgstr ""
288
 
289
+ #: top-10.php:243
290
  msgid "<h3>Popular Posts</h3>"
291
  msgstr ""
292
 
293
+ #: top-10.php:244
294
  msgid "<h3>Daily Popular</h3>"
295
  msgstr ""
296
 
297
+ #: top-10.php:430
298
  msgid "Settings"
299
  msgstr ""
300
 
301
+ #: top-10.php:431
302
  msgid "Support"
303
  msgstr ""
304
 
305
+ #: top-10.php:432
306
  msgid "Donate"
307
  msgstr ""
308
 
languages/tptn-it_IT.mo CHANGED
Binary file
languages/tptn-it_IT.po CHANGED
@@ -2,10 +2,10 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-25 17:35+0530\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
- "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -15,259 +15,304 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:43
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
- #: admin.inc.php:52
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:58
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
- #: admin.inc.php:64
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
- #: admin.inc.php:75
35
- msgid "Support the Development"
36
- msgstr "Sostieni lo sviluppo"
37
-
38
  #: admin.inc.php:79
39
- msgid "If you find "
40
- msgstr "Avessi trovato utile il mio"
41
-
42
- #: admin.inc.php:81
43
- msgid "useful, please do"
44
- msgstr ", effettua"
45
-
46
- #: admin.inc.php:82
47
- msgid "drop in your contribution"
48
- msgstr "una donazione"
49
-
50
- #: admin.inc.php:83
51
- msgid "Some reasons why you should."
52
- msgstr "alcuni motivi affinché tu lo faccia"
53
-
54
- #: admin.inc.php:90
55
  msgid "Options:"
56
  msgstr "Opzioni:"
57
 
58
- #: admin.inc.php:95
59
  msgid "Format to display the count in: "
60
  msgstr "Formato per il conteggio:"
61
 
62
- #: admin.inc.php:99
63
  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>"
64
  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>"
65
 
66
- #: admin.inc.php:102
67
  msgid "Number of popular posts to display: "
68
  msgstr "Numero degli articoli più popolari da mostrare:"
69
 
70
- #: admin.inc.php:108
71
  msgid "Daily Popular should contain views of how many days? "
72
  msgstr "Quanti giorni desideri siano considerati per il computo delle visualizzazioni per articoli più popolari del giorno?"
73
 
74
- #: admin.inc.php:115
75
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
76
  msgstr "Desideri escludere le pagine dalla visualizzazione per gli articoli più popolari? Il numero delle visualizzazioni continuerà ad essere comunque aggiornato."
77
 
78
- #: admin.inc.php:121
79
  msgid "Display number of views on posts?"
80
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
81
 
82
- #: admin.inc.php:127
83
  msgid "Display number of views on pages?"
84
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
85
 
86
- #: admin.inc.php:133
87
  msgid "Track visits of authors on their own posts?"
88
  msgstr "Desideri che vengano conteggiate anche le visite da parte dell'amministatore del sito?"
89
 
90
- #: admin.inc.php:139
91
  msgid "Display number of page views in popular lists?"
92
  msgstr "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei più popolari?"
93
 
94
- #: admin.inc.php:145
95
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
96
  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"
97
 
98
- #: admin.inc.php:151
99
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
100
  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"
101
 
102
- #: admin.inc.php:157
103
  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!"
104
  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!"
105
 
106
- #: admin.inc.php:161
107
  msgid "Output Options:"
108
  msgstr "Opzioni output:"
109
 
110
- #: admin.inc.php:165
111
  msgid "Title of popular posts: "
112
  msgstr "Titolo per gli articoli più popolari:"
113
 
114
- #: admin.inc.php:171
115
  msgid "Title of daily popular posts: "
116
  msgstr "Titolo per gli articoli più popolari del giorno:"
117
 
118
- #: admin.inc.php:175
 
 
 
 
 
 
 
 
119
  msgid "Customize the output:"
120
  msgstr "Personalizzazione output:"
121
 
122
- #: admin.inc.php:178
123
  msgid "HTML to display before the list of posts: "
124
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
125
 
126
- #: admin.inc.php:184
127
  msgid "HTML to display before each list item: "
128
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
129
 
130
- #: admin.inc.php:190
131
  msgid "HTML to display after each list item: "
132
  msgstr "HTML da mostrare dopo ogni lista:"
133
 
134
- #: admin.inc.php:196
135
  msgid "HTML to display after the list of posts: "
136
  msgstr "HTML da mostrare dopo la lista degli articoli:"
137
 
138
- #: admin.inc.php:200
139
  msgid "Post thumbnail options:"
140
  msgstr "Opzioni miniature articolo:"
141
 
142
- #: admin.inc.php:204
143
  msgid "Display thumbnails inline with posts"
144
  msgstr "Desideri mostrare gli articoli con le miniature inline?"
145
 
146
- #: admin.inc.php:208
147
  msgid "Display only thumbnails, no text"
148
  msgstr "Mostra le sole miniature, nessun testo"
149
 
150
- #: admin.inc.php:212
151
  msgid "Do not display thumbnails, only text."
152
  msgstr "Non mostrare le miniature, solo testo."
153
 
154
- #: admin.inc.php:217
155
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
156
  msgstr "Campo meta per le miniature (il valore deve puntare alla immagine):"
157
 
158
- #: admin.inc.php:221
 
 
 
 
159
  msgid "Thumbnail dimensions:"
160
  msgstr "Dimensione miniature:"
161
 
162
- #: admin.inc.php:223
163
  msgid "Max width: "
164
  msgstr "Larghezza massima:"
165
 
166
- #: admin.inc.php:228
167
  msgid "Max height: "
168
  msgstr "Altezza massima:"
169
 
170
- #: admin.inc.php:232
171
  msgid "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 below:"
172
  msgstr "Come prima operazione, il plugin controllerà la presenza di una miniatura nell'articolo. Nel caso in cui non fosse presente, verificherà il campo meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come specificato qui sotto:"
173
 
174
- #: admin.inc.php:237
175
  msgid "Do you want to set options to Default?"
176
  msgstr "Desideri ripristinare alle predefinite?"
177
 
178
- #: admin.inc.php:240
179
  msgid "Reset count"
180
  msgstr "Ripristino conteggio"
181
 
182
- #: admin.inc.php:243
183
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
184
  msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
185
 
186
- #: admin.inc.php:246
187
  msgid "Are you sure you want to reset the popular posts?"
188
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
189
 
190
- #: admin.inc.php:247
191
  msgid "Are you sure you want to reset the daily popular posts?"
192
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
193
 
 
 
 
 
 
 
 
 
194
  #: admin.inc.php:263
195
- #: admin.inc.php:287
196
- #: admin.inc.php:459
197
- #: top-10.php:218
198
- #: top-10.php:378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  msgid "Popular Posts"
200
  msgstr "Gli articoli più popolari"
201
 
202
- #: admin.inc.php:263
203
  msgid "Daily Popular Posts"
204
  msgstr "Gli articoli più popolari di oggi"
205
 
206
- #: admin.inc.php:286
207
- #: admin.inc.php:287
208
  msgid "Top 10"
209
  msgstr "Top 10"
210
 
211
- #: admin.inc.php:367
212
  msgid "Results"
213
  msgstr "Risultati"
214
 
215
- #: admin.inc.php:369
216
- #: admin.inc.php:375
217
  msgid "of"
218
  msgstr "di"
219
 
220
- #: admin.inc.php:373
221
  msgid "Page"
222
  msgstr "Pagina"
223
 
224
- #: admin.inc.php:387
225
  msgid "View Daily Popular Posts"
226
  msgstr "Visualizza gli articoli più letti di oggi"
227
 
228
- #: admin.inc.php:391
229
  msgid "View Overall Popular Posts"
230
  msgstr "Visualizza panoramica articoli più popolari"
231
 
232
- #: admin.inc.php:395
233
  msgid "Results per-page:"
234
  msgstr "Risultati per pagina:"
235
 
236
- #: admin.inc.php:419
237
  msgid "Previous"
238
  msgstr "Precedente"
239
 
240
- #: admin.inc.php:437
241
  msgid "Next"
242
  msgstr "Successiva"
243
 
244
- #: admin.inc.php:460
245
- #: top-10.php:197
246
- #: top-10.php:379
247
  msgid "Daily Popular"
248
  msgstr "I più letti di oggi"
249
 
250
- #: admin.inc.php:471
251
  msgid "Total / Today's Views"
252
  msgstr "Totale / Visualizzazioni odierne"
253
 
254
- #: top-10.php:229
255
  msgid "<h3>Popular Posts</h3>"
256
  msgstr "<h3>Articoli più letti</h3>"
257
 
258
- #: top-10.php:230
259
  msgid "<h3>Daily Popular</h3>"
260
  msgstr "<h3>I più letti di oggi</h3>"
261
 
262
- #: top-10.php:393
263
  msgid "Settings"
264
  msgstr "Impostazioni"
265
 
266
- #: top-10.php:394
267
  msgid "Support"
268
  msgstr "Supporto"
269
 
270
- #: top-10.php:395
271
  msgid "Donate"
272
  msgstr "Donazione"
273
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-14 01:08+0530\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
+ "Language-Team: Gianni Diurno |gidibao.net <gidibao[at]gmail[dot]com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:46
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
+ #: admin.inc.php:55
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:61
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
+ #: admin.inc.php:67
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
 
 
 
 
34
  #: admin.inc.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgid "Options:"
36
  msgstr "Opzioni:"
37
 
38
+ #: admin.inc.php:84
39
  msgid "Format to display the count in: "
40
  msgstr "Formato per il conteggio:"
41
 
42
+ #: admin.inc.php:88
43
  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>"
44
  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>"
45
 
46
+ #: admin.inc.php:91
47
  msgid "Number of popular posts to display: "
48
  msgstr "Numero degli articoli più popolari da mostrare:"
49
 
50
+ #: admin.inc.php:97
51
  msgid "Daily Popular should contain views of how many days? "
52
  msgstr "Quanti giorni desideri siano considerati per il computo delle visualizzazioni per articoli più popolari del giorno?"
53
 
54
+ #: admin.inc.php:104
55
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
56
  msgstr "Desideri escludere le pagine dalla visualizzazione per gli articoli più popolari? Il numero delle visualizzazioni continuerà ad essere comunque aggiornato."
57
 
58
+ #: admin.inc.php:110
59
  msgid "Display number of views on posts?"
60
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
61
 
62
+ #: admin.inc.php:116
63
  msgid "Display number of views on pages?"
64
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
65
 
66
+ #: admin.inc.php:122
67
  msgid "Track visits of authors on their own posts?"
68
  msgstr "Desideri che vengano conteggiate anche le visite da parte dell'amministatore del sito?"
69
 
70
+ #: admin.inc.php:128
71
  msgid "Display number of page views in popular lists?"
72
  msgstr "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei più popolari?"
73
 
74
+ #: admin.inc.php:134
75
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
76
  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"
77
 
78
+ #: admin.inc.php:140
79
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
80
  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"
81
 
82
+ #: admin.inc.php:146
83
  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!"
84
  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!"
85
 
86
+ #: admin.inc.php:150
87
  msgid "Output Options:"
88
  msgstr "Opzioni output:"
89
 
90
+ #: admin.inc.php:154
91
  msgid "Title of popular posts: "
92
  msgstr "Titolo per gli articoli più popolari:"
93
 
94
+ #: admin.inc.php:160
95
  msgid "Title of daily popular posts: "
96
  msgstr "Titolo per gli articoli più popolari del giorno:"
97
 
98
+ #: admin.inc.php:167
99
+ msgid "Show post excerpt in list?"
100
+ msgstr "Desideri mostrare gli estratti?"
101
+
102
+ #: admin.inc.php:172
103
+ msgid "Length of excerpt (in words): "
104
+ msgstr "Lunghezza estratto (in parole):"
105
+
106
+ #: admin.inc.php:176
107
  msgid "Customize the output:"
108
  msgstr "Personalizzazione output:"
109
 
110
+ #: admin.inc.php:179
111
  msgid "HTML to display before the list of posts: "
112
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
113
 
114
+ #: admin.inc.php:185
115
  msgid "HTML to display before each list item: "
116
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
117
 
118
+ #: admin.inc.php:191
119
  msgid "HTML to display after each list item: "
120
  msgstr "HTML da mostrare dopo ogni lista:"
121
 
122
+ #: admin.inc.php:197
123
  msgid "HTML to display after the list of posts: "
124
  msgstr "HTML da mostrare dopo la lista degli articoli:"
125
 
126
+ #: admin.inc.php:201
127
  msgid "Post thumbnail options:"
128
  msgstr "Opzioni miniature articolo:"
129
 
130
+ #: admin.inc.php:205
131
  msgid "Display thumbnails inline with posts"
132
  msgstr "Desideri mostrare gli articoli con le miniature inline?"
133
 
134
+ #: admin.inc.php:209
135
  msgid "Display only thumbnails, no text"
136
  msgstr "Mostra le sole miniature, nessun testo"
137
 
138
+ #: admin.inc.php:213
139
  msgid "Do not display thumbnails, only text."
140
  msgstr "Non mostrare le miniature, solo testo."
141
 
142
+ #: admin.inc.php:218
143
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
144
  msgstr "Campo meta per le miniature (il valore deve puntare alla immagine):"
145
 
146
+ #: admin.inc.php:225
147
+ 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"
148
+ 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"
149
+
150
+ #: admin.inc.php:228
151
  msgid "Thumbnail dimensions:"
152
  msgstr "Dimensione miniature:"
153
 
154
+ #: admin.inc.php:230
155
  msgid "Max width: "
156
  msgstr "Larghezza massima:"
157
 
158
+ #: admin.inc.php:235
159
  msgid "Max height: "
160
  msgstr "Altezza massima:"
161
 
162
+ #: admin.inc.php:239
163
  msgid "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 below:"
164
  msgstr "Come prima operazione, il plugin controllerà la presenza di una miniatura nell'articolo. Nel caso in cui non fosse presente, verificherà il campo meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come specificato qui sotto:"
165
 
166
+ #: admin.inc.php:244
167
  msgid "Do you want to set options to Default?"
168
  msgstr "Desideri ripristinare alle predefinite?"
169
 
170
+ #: admin.inc.php:247
171
  msgid "Reset count"
172
  msgstr "Ripristino conteggio"
173
 
174
+ #: admin.inc.php:250
175
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
176
  msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
177
 
178
+ #: admin.inc.php:253
179
  msgid "Are you sure you want to reset the popular posts?"
180
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
181
 
182
+ #: admin.inc.php:254
183
  msgid "Are you sure you want to reset the daily popular posts?"
184
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
185
 
186
+ #: admin.inc.php:261
187
+ msgid "Quick links"
188
+ msgstr "Collegamenti veloci"
189
+
190
+ #: admin.inc.php:263
191
+ msgid "Top 10 "
192
+ msgstr "Top 10"
193
+
194
  #: admin.inc.php:263
195
+ msgid "plugin page"
196
+ msgstr "pagina plugin"
197
+
198
+ #: admin.inc.php:264
199
+ msgid "Other plugins"
200
+ msgstr "Altri plugin"
201
+
202
+ #: admin.inc.php:265
203
+ msgid "Ajay's blog"
204
+ msgstr "Il blog di Ajay"
205
+
206
+ #: admin.inc.php:266
207
+ msgid "Support forum"
208
+ msgstr "Forum di supporto"
209
+
210
+ #: admin.inc.php:267
211
+ msgid "Follow @ajaydsouza on Twitter"
212
+ msgstr "Segui @ajaydsouza su Twitter"
213
+
214
+ #: admin.inc.php:271
215
+ msgid "Recent developments"
216
+ msgstr "Sviluppi recenti"
217
+
218
+ #: admin.inc.php:276
219
+ msgid "Support the development"
220
+ msgstr "Sostieni lo sviluppo"
221
+
222
+ #: admin.inc.php:284
223
+ msgid "Enter amount in USD: "
224
+ msgstr "Inserisci la cifra in USD: "
225
+
226
+ #: admin.inc.php:288
227
+ msgid "Send your donation to the author of"
228
+ msgstr "Invia la tua donazione all'autore di"
229
+
230
+ #: admin.inc.php:308
231
+ #: admin.inc.php:333
232
+ #: admin.inc.php:513
233
+ #: top-10.php:232
234
+ #: top-10.php:394
235
  msgid "Popular Posts"
236
  msgstr "Gli articoli più popolari"
237
 
238
+ #: admin.inc.php:308
239
  msgid "Daily Popular Posts"
240
  msgstr "Gli articoli più popolari di oggi"
241
 
242
+ #: admin.inc.php:331
243
+ #: admin.inc.php:333
244
  msgid "Top 10"
245
  msgstr "Top 10"
246
 
247
+ #: admin.inc.php:421
248
  msgid "Results"
249
  msgstr "Risultati"
250
 
251
+ #: admin.inc.php:423
252
+ #: admin.inc.php:429
253
  msgid "of"
254
  msgstr "di"
255
 
256
+ #: admin.inc.php:427
257
  msgid "Page"
258
  msgstr "Pagina"
259
 
260
+ #: admin.inc.php:441
261
  msgid "View Daily Popular Posts"
262
  msgstr "Visualizza gli articoli più letti di oggi"
263
 
264
+ #: admin.inc.php:445
265
  msgid "View Overall Popular Posts"
266
  msgstr "Visualizza panoramica articoli più popolari"
267
 
268
+ #: admin.inc.php:449
269
  msgid "Results per-page:"
270
  msgstr "Risultati per pagina:"
271
 
272
+ #: admin.inc.php:473
273
  msgid "Previous"
274
  msgstr "Precedente"
275
 
276
+ #: admin.inc.php:491
277
  msgid "Next"
278
  msgstr "Successiva"
279
 
280
+ #: admin.inc.php:514
281
+ #: top-10.php:211
282
+ #: top-10.php:395
283
  msgid "Daily Popular"
284
  msgstr "I più letti di oggi"
285
 
286
+ #: admin.inc.php:525
287
  msgid "Total / Today's Views"
288
  msgstr "Totale / Visualizzazioni odierne"
289
 
290
+ #: top-10.php:243
291
  msgid "<h3>Popular Posts</h3>"
292
  msgstr "<h3>Articoli più letti</h3>"
293
 
294
+ #: top-10.php:244
295
  msgid "<h3>Daily Popular</h3>"
296
  msgstr "<h3>I più letti di oggi</h3>"
297
 
298
+ #: top-10.php:430
299
  msgid "Settings"
300
  msgstr "Impostazioni"
301
 
302
+ #: top-10.php:431
303
  msgid "Support"
304
  msgstr "Supporto"
305
 
306
+ #: top-10.php:432
307
  msgid "Donate"
308
  msgstr "Donazione"
309
 
310
+ #~ msgid "If you find "
311
+ #~ msgstr "Avessi trovato utile il mio"
312
+ #~ msgid "useful, please do"
313
+ #~ msgstr ", effettua"
314
+ #~ msgid "drop in your contribution"
315
+ #~ msgstr "una donazione"
316
+ #~ msgid "Some reasons why you should."
317
+ #~ msgstr "alcuni motivi affinché tu lo faccia"
318
+
languages/tptn-ru_RU.mo CHANGED
Binary file
languages/tptn-ru_RU.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-25 17:35+0530\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Elvis <main@fweb.org.ru>\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"
@@ -15,259 +15,309 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:43
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
- #: admin.inc.php:52
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
- #: admin.inc.php:58
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
- #: admin.inc.php:64
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
- #: admin.inc.php:75
35
- msgid "Support the Development"
36
- msgstr "Поддержать автора плагина"
37
-
38
  #: admin.inc.php:79
39
- msgid "If you find "
40
- msgstr "Если плагин"
41
-
42
- #: admin.inc.php:81
43
- msgid "useful, please do"
44
- msgstr "оказался для вас полезным, пожалуйста, сделайте"
45
-
46
- #: admin.inc.php:82
47
- msgid "drop in your contribution"
48
- msgstr "пожертвование"
49
-
50
- #: admin.inc.php:83
51
- msgid "Some reasons why you should."
52
- msgstr "Сделай пожертвование, поддержи автора плагина!"
53
-
54
- #: admin.inc.php:90
55
  msgid "Options:"
56
  msgstr "Настройки плагина:"
57
 
58
- #: admin.inc.php:95
59
  msgid "Format to display the count in: "
60
  msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
61
 
62
- #: admin.inc.php:99
63
  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>"
64
  msgstr "Используйте <code>%totalcount%</code> чтобы вывести общее число просмотров, а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись просмотрена 123 раза, сегодня просмотров было 23)</code>."
65
 
66
- #: admin.inc.php:102
67
  msgid "Number of popular posts to display: "
68
  msgstr "Количество Популярных записей в списке:"
69
 
70
- #: admin.inc.php:108
71
  msgid "Daily Popular should contain views of how many days? "
72
  msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
73
 
74
- #: admin.inc.php:115
75
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
76
  msgstr "Исключить страницы из списка Популярных записей? Количество просмотров для страниц будет продолжать подсчитываться"
77
 
78
- #: admin.inc.php:121
79
  msgid "Display number of views on posts?"
80
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
81
 
82
- #: admin.inc.php:127
83
  msgid "Display number of views on pages?"
84
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
85
 
86
- #: admin.inc.php:133
87
  msgid "Track visits of authors on their own posts?"
88
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
89
 
90
- #: admin.inc.php:139
91
  msgid "Display number of page views in popular lists?"
92
  msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
93
 
94
- #: admin.inc.php:145
95
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
96
  msgstr "Сделать список Популярных записей динамичным? Опция использует JavaScript , и это может увеличить время загрузки страниц"
97
 
98
- #: admin.inc.php:151
99
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
100
  msgstr "Отображать количество просмотров записей/страниц в админке? Для этого будет добавлена отдельная колонка в wp-admin/edit.php"
101
 
102
- #: admin.inc.php:157
103
  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!"
104
  msgstr "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был бы очень благодарен Вам, если Вы ее все же оставите!"
105
 
106
- #: admin.inc.php:161
107
  msgid "Output Options:"
108
  msgstr "Настройки плагина:"
109
 
110
- #: admin.inc.php:165
111
  msgid "Title of popular posts: "
112
  msgstr "Заголовок списка Популярных записей:"
113
 
114
- #: admin.inc.php:171
115
  msgid "Title of daily popular posts: "
116
  msgstr "Заголовок списка Популярных сегодня записей:"
117
 
118
- #: admin.inc.php:175
 
 
 
 
 
 
 
 
119
  msgid "Customize the output:"
120
  msgstr "Настройки оформления списка:"
121
 
122
- #: admin.inc.php:178
123
  msgid "HTML to display before the list of posts: "
124
  msgstr "HTML-тег, используемый перед списком:"
125
 
126
- #: admin.inc.php:184
127
  msgid "HTML to display before each list item: "
128
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
129
 
130
- #: admin.inc.php:190
131
  msgid "HTML to display after each list item: "
132
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
133
 
134
- #: admin.inc.php:196
135
  msgid "HTML to display after the list of posts: "
136
  msgstr "HTML-тег, используемый после списка:"
137
 
138
- #: admin.inc.php:200
139
  msgid "Post thumbnail options:"
140
  msgstr "Настройки превью к записям:"
141
 
142
- #: admin.inc.php:204
143
  msgid "Display thumbnails inline with posts"
144
  msgstr "Отображать и превью, и текст"
145
 
146
- #: admin.inc.php:208
147
  msgid "Display only thumbnails, no text"
148
  msgstr "Отображать только превью, без текста"
149
 
150
- #: admin.inc.php:212
151
  msgid "Do not display thumbnails, only text."
152
  msgstr "Отображать только текст, без превью"
153
 
154
- #: admin.inc.php:217
155
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
156
  msgstr "Введите сюда используемое вашей темой имя произвольного поля (мета-поле) для вывода превью:"
157
 
158
- #: admin.inc.php:221
 
 
 
 
159
  msgid "Thumbnail dimensions:"
160
  msgstr "Размеры выводимого изображения (превью):"
161
 
162
- #: admin.inc.php:223
163
  msgid "Max width: "
164
  msgstr "Ширина:"
165
 
166
- #: admin.inc.php:228
167
  msgid "Max height: "
168
  msgstr "Высота:"
169
 
170
- #: admin.inc.php:232
171
  msgid "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 below:"
172
  msgstr "В первую очередь, плагин проверит, есть ли у записи превью (проверка по заданному ранее произвольному мета-полю). Если же превью нет - будет выводиться картинка по-умолчанию:"
173
 
174
- #: admin.inc.php:237
175
  msgid "Do you want to set options to Default?"
176
  msgstr "Сбросить настройки плагина?"
177
 
178
- #: admin.inc.php:240
179
  msgid "Reset count"
180
  msgstr "Сбросить статистику"
181
 
182
- #: admin.inc.php:243
183
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
184
  msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
185
 
186
- #: admin.inc.php:246
187
  msgid "Are you sure you want to reset the popular posts?"
188
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
189
 
190
- #: admin.inc.php:247
191
  msgid "Are you sure you want to reset the daily popular posts?"
192
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
193
 
 
 
 
 
194
  #: admin.inc.php:263
195
- #: admin.inc.php:287
196
- #: admin.inc.php:459
197
- #: top-10.php:218
198
- #: top-10.php:378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  msgid "Popular Posts"
200
  msgstr "Популярные записи"
201
 
202
- #: admin.inc.php:263
203
  msgid "Daily Popular Posts"
204
  msgstr "Популярные сегодня записи"
205
 
206
- #: admin.inc.php:286
207
- #: admin.inc.php:287
208
  msgid "Top 10"
209
  msgstr "Топ 10 записей"
210
 
211
- #: admin.inc.php:367
212
  msgid "Results"
213
  msgstr "Результаты"
214
 
215
- #: admin.inc.php:369
216
- #: admin.inc.php:375
217
  msgid "of"
218
  msgstr "из"
219
 
220
- #: admin.inc.php:373
221
  msgid "Page"
222
  msgstr "Страница"
223
 
224
- #: admin.inc.php:387
225
  msgid "View Daily Popular Posts"
226
  msgstr "Посмотреть все Популярные сегодня записи"
227
 
228
- #: admin.inc.php:391
229
  msgid "View Overall Popular Posts"
230
  msgstr "Посмотреть все Популярные записи"
231
 
232
- #: admin.inc.php:395
233
  msgid "Results per-page:"
234
  msgstr "Результатов на страницу:"
235
 
236
- #: admin.inc.php:419
237
  msgid "Previous"
238
  msgstr "Предыдущая страница"
239
 
240
- #: admin.inc.php:437
241
  msgid "Next"
242
  msgstr "Следующая страница"
243
 
244
- #: admin.inc.php:460
245
- #: top-10.php:197
246
- #: top-10.php:379
247
  msgid "Daily Popular"
248
  msgstr "Популярные сегодня записи"
249
 
250
- #: admin.inc.php:471
251
  msgid "Total / Today's Views"
252
  msgstr "Всего/Сегодня"
253
 
254
- #: top-10.php:229
255
  msgid "<h3>Popular Posts</h3>"
256
  msgstr "<h3>Популярные записи</h3>"
257
 
258
- #: top-10.php:230
259
  msgid "<h3>Daily Popular</h3>"
260
  msgstr "<h3>Популярные сегодня записи</h3>"
261
 
262
- #: top-10.php:393
263
  msgid "Settings"
264
  msgstr "Настроки плагина"
265
 
266
- #: top-10.php:394
267
  msgid "Support"
268
  msgstr "Поддержка (англ.)"
269
 
270
- #: top-10.php:395
271
  msgid "Donate"
272
  msgstr "Сделать пожертвование"
273
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-02-14 01:08+0530\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"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:46
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
+ #: admin.inc.php:55
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
+ #: admin.inc.php:61
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
+ #: admin.inc.php:67
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
 
 
 
 
34
  #: admin.inc.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgid "Options:"
36
  msgstr "Настройки плагина:"
37
 
38
+ #: admin.inc.php:84
39
  msgid "Format to display the count in: "
40
  msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
41
 
42
+ #: admin.inc.php:88
43
  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>"
44
  msgstr "Используйте <code>%totalcount%</code> чтобы вывести общее число просмотров, а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись просмотрена 123 раза, сегодня просмотров было 23)</code>."
45
 
46
+ #: admin.inc.php:91
47
  msgid "Number of popular posts to display: "
48
  msgstr "Количество Популярных записей в списке:"
49
 
50
+ #: admin.inc.php:97
51
  msgid "Daily Popular should contain views of how many days? "
52
  msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
53
 
54
+ #: admin.inc.php:104
55
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
56
  msgstr "Исключить страницы из списка Популярных записей? Количество просмотров для страниц будет продолжать подсчитываться"
57
 
58
+ #: admin.inc.php:110
59
  msgid "Display number of views on posts?"
60
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
61
 
62
+ #: admin.inc.php:116
63
  msgid "Display number of views on pages?"
64
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
65
 
66
+ #: admin.inc.php:122
67
  msgid "Track visits of authors on their own posts?"
68
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
69
 
70
+ #: admin.inc.php:128
71
  msgid "Display number of page views in popular lists?"
72
  msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
73
 
74
+ #: admin.inc.php:134
75
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
76
  msgstr "Сделать список Популярных записей динамичным? Опция использует JavaScript , и это может увеличить время загрузки страниц"
77
 
78
+ #: admin.inc.php:140
79
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
80
  msgstr "Отображать количество просмотров записей/страниц в админке? Для этого будет добавлена отдельная колонка в wp-admin/edit.php"
81
 
82
+ #: admin.inc.php:146
83
  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!"
84
  msgstr "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был бы очень благодарен Вам, если Вы ее все же оставите!"
85
 
86
+ #: admin.inc.php:150
87
  msgid "Output Options:"
88
  msgstr "Настройки плагина:"
89
 
90
+ #: admin.inc.php:154
91
  msgid "Title of popular posts: "
92
  msgstr "Заголовок списка Популярных записей:"
93
 
94
+ #: admin.inc.php:160
95
  msgid "Title of daily popular posts: "
96
  msgstr "Заголовок списка Популярных сегодня записей:"
97
 
98
+ #: admin.inc.php:167
99
+ msgid "Show post excerpt in list?"
100
+ msgstr ""
101
+
102
+ #: admin.inc.php:172
103
+ msgid "Length of excerpt (in words): "
104
+ msgstr ""
105
+
106
+ #: admin.inc.php:176
107
  msgid "Customize the output:"
108
  msgstr "Настройки оформления списка:"
109
 
110
+ #: admin.inc.php:179
111
  msgid "HTML to display before the list of posts: "
112
  msgstr "HTML-тег, используемый перед списком:"
113
 
114
+ #: admin.inc.php:185
115
  msgid "HTML to display before each list item: "
116
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
117
 
118
+ #: admin.inc.php:191
119
  msgid "HTML to display after each list item: "
120
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
121
 
122
+ #: admin.inc.php:197
123
  msgid "HTML to display after the list of posts: "
124
  msgstr "HTML-тег, используемый после списка:"
125
 
126
+ #: admin.inc.php:201
127
  msgid "Post thumbnail options:"
128
  msgstr "Настройки превью к записям:"
129
 
130
+ #: admin.inc.php:205
131
  msgid "Display thumbnails inline with posts"
132
  msgstr "Отображать и превью, и текст"
133
 
134
+ #: admin.inc.php:209
135
  msgid "Display only thumbnails, no text"
136
  msgstr "Отображать только превью, без текста"
137
 
138
+ #: admin.inc.php:213
139
  msgid "Do not display thumbnails, only text."
140
  msgstr "Отображать только текст, без превью"
141
 
142
+ #: admin.inc.php:218
143
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
144
  msgstr "Введите сюда используемое вашей темой имя произвольного поля (мета-поле) для вывода превью:"
145
 
146
+ #: admin.inc.php:225
147
+ 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"
148
+ msgstr ""
149
+
150
+ #: admin.inc.php:228
151
  msgid "Thumbnail dimensions:"
152
  msgstr "Размеры выводимого изображения (превью):"
153
 
154
+ #: admin.inc.php:230
155
  msgid "Max width: "
156
  msgstr "Ширина:"
157
 
158
+ #: admin.inc.php:235
159
  msgid "Max height: "
160
  msgstr "Высота:"
161
 
162
+ #: admin.inc.php:239
163
  msgid "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 below:"
164
  msgstr "В первую очередь, плагин проверит, есть ли у записи превью (проверка по заданному ранее произвольному мета-полю). Если же превью нет - будет выводиться картинка по-умолчанию:"
165
 
166
+ #: admin.inc.php:244
167
  msgid "Do you want to set options to Default?"
168
  msgstr "Сбросить настройки плагина?"
169
 
170
+ #: admin.inc.php:247
171
  msgid "Reset count"
172
  msgstr "Сбросить статистику"
173
 
174
+ #: admin.inc.php:250
175
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
176
  msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
177
 
178
+ #: admin.inc.php:253
179
  msgid "Are you sure you want to reset the popular posts?"
180
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
181
 
182
+ #: admin.inc.php:254
183
  msgid "Are you sure you want to reset the daily popular posts?"
184
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
185
 
186
+ #: admin.inc.php:261
187
+ msgid "Quick links"
188
+ msgstr ""
189
+
190
  #: admin.inc.php:263
191
+ #, fuzzy
192
+ msgid "Top 10 "
193
+ msgstr "Топ 10 записей"
194
+
195
+ #: admin.inc.php:263
196
+ msgid "plugin page"
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:264
200
+ msgid "Other plugins"
201
+ msgstr ""
202
+
203
+ #: admin.inc.php:265
204
+ msgid "Ajay's blog"
205
+ msgstr ""
206
+
207
+ #: admin.inc.php:266
208
+ #, fuzzy
209
+ msgid "Support forum"
210
+ msgstr "Поддержка (англ.)"
211
+
212
+ #: admin.inc.php:267
213
+ msgid "Follow @ajaydsouza on Twitter"
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:271
217
+ msgid "Recent developments"
218
+ msgstr ""
219
+
220
+ #: admin.inc.php:276
221
+ #, fuzzy
222
+ msgid "Support the development"
223
+ msgstr "Поддержать автора плагина"
224
+
225
+ #: admin.inc.php:284
226
+ msgid "Enter amount in USD: "
227
+ msgstr ""
228
+
229
+ #: admin.inc.php:288
230
+ msgid "Send your donation to the author of"
231
+ msgstr ""
232
+
233
+ #: admin.inc.php:308
234
+ #: admin.inc.php:333
235
+ #: admin.inc.php:513
236
+ #: top-10.php:232
237
+ #: top-10.php:394
238
  msgid "Popular Posts"
239
  msgstr "Популярные записи"
240
 
241
+ #: admin.inc.php:308
242
  msgid "Daily Popular Posts"
243
  msgstr "Популярные сегодня записи"
244
 
245
+ #: admin.inc.php:331
246
+ #: admin.inc.php:333
247
  msgid "Top 10"
248
  msgstr "Топ 10 записей"
249
 
250
+ #: admin.inc.php:421
251
  msgid "Results"
252
  msgstr "Результаты"
253
 
254
+ #: admin.inc.php:423
255
+ #: admin.inc.php:429
256
  msgid "of"
257
  msgstr "из"
258
 
259
+ #: admin.inc.php:427
260
  msgid "Page"
261
  msgstr "Страница"
262
 
263
+ #: admin.inc.php:441
264
  msgid "View Daily Popular Posts"
265
  msgstr "Посмотреть все Популярные сегодня записи"
266
 
267
+ #: admin.inc.php:445
268
  msgid "View Overall Popular Posts"
269
  msgstr "Посмотреть все Популярные записи"
270
 
271
+ #: admin.inc.php:449
272
  msgid "Results per-page:"
273
  msgstr "Результатов на страницу:"
274
 
275
+ #: admin.inc.php:473
276
  msgid "Previous"
277
  msgstr "Предыдущая страница"
278
 
279
+ #: admin.inc.php:491
280
  msgid "Next"
281
  msgstr "Следующая страница"
282
 
283
+ #: admin.inc.php:514
284
+ #: top-10.php:211
285
+ #: top-10.php:395
286
  msgid "Daily Popular"
287
  msgstr "Популярные сегодня записи"
288
 
289
+ #: admin.inc.php:525
290
  msgid "Total / Today's Views"
291
  msgstr "Всего/Сегодня"
292
 
293
+ #: top-10.php:243
294
  msgid "<h3>Popular Posts</h3>"
295
  msgstr "<h3>Популярные записи</h3>"
296
 
297
+ #: top-10.php:244
298
  msgid "<h3>Daily Popular</h3>"
299
  msgstr "<h3>Популярные сегодня записи</h3>"
300
 
301
+ #: top-10.php:430
302
  msgid "Settings"
303
  msgstr "Настроки плагина"
304
 
305
+ #: top-10.php:431
306
  msgid "Support"
307
  msgstr "Поддержка (англ.)"
308
 
309
+ #: top-10.php:432
310
  msgid "Donate"
311
  msgstr "Сделать пожертвование"
312
 
313
+ #~ msgid "If you find "
314
+ #~ msgstr "Если плагин"
315
+
316
+ #~ msgid "useful, please do"
317
+ #~ msgstr "оказался для вас полезным, пожалуйста, сделайте"
318
+
319
+ #~ msgid "drop in your contribution"
320
+ #~ msgstr "пожертвование"
321
+
322
+ #~ msgid "Some reasons why you should."
323
+ #~ msgstr "Сделай пожертвование, поддержи автора плагина!"
readme.txt CHANGED
@@ -29,6 +29,12 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
29
 
30
  == Changelog ==
31
 
 
 
 
 
 
 
32
  = 1.5.3 =
33
  * Added: You can now use HTML in the counter display
34
 
29
 
30
  == Changelog ==
31
 
32
+ = 1.6 =
33
+ * Added: Added support for excerpts and detection of first image in the post
34
+ * Added: Daily posts are tracked using the blog time instead of server time
35
+ * Fixed: On the first visit, display 1 instead of 0
36
+ * Fixed: Fixed uninstall script
37
+
38
  = 1.5.3 =
39
  * Added: You can now use HTML in the counter display
40
 
top-10-addcount.js.php CHANGED
@@ -32,7 +32,7 @@ function tptn_inc_count() {
32
  $wpdb->query("INSERT INTO $table_name (postnumber, cntaccess) VALUES('$id', '1')");
33
  }
34
  // Now update daily count
35
- $current_date = $wpdb->get_var("SELECT CURDATE() ");
36
 
37
  $results = $wpdb->get_results("SELECT postnumber, cntaccess, dp_date FROM $top_ten_daily WHERE postnumber = '$id' AND dp_date = '$current_date' ");
38
  $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' ");
38
  $test = 0;
top-10-counter.js.php CHANGED
@@ -28,10 +28,13 @@ function tptn_disp_count() {
28
  $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
29
 
30
  // Now process daily count
31
- $daily_range = $tptn_settings[daily_range]. ' DAY';
32
- $current_date = $wpdb->get_var("SELECT DATE_ADD(DATE_SUB(CURDATE(), INTERVAL ".$daily_range."), INTERVAL 1 DAY) ");
 
 
 
33
  $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 ");
34
- $cntaccess = number_format((($resultscount) ? $resultscount->sumCount : 0));
35
  $count_disp_form = str_replace("%dailycount%", $cntaccess, $count_disp_form);
36
 
37
  echo 'document.write("'.$count_disp_form.'")';
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.'")';
top-10-daily.js.php CHANGED
@@ -20,8 +20,10 @@ function tptn_daily_lists() {
20
 
21
  $tptn_settings = tptn_read_options();
22
  $limit = $tptn_settings['limit'];
23
- $daily_range = $tptn_settings[daily_range]. ' DAY';
24
- $current_date = $wpdb->get_var("SELECT DATE_ADD(DATE_SUB(CURDATE(), INTERVAL $daily_range), INTERVAL 1 DAY) ");
 
 
25
 
26
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
27
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
20
 
21
  $tptn_settings = tptn_read_options();
22
  $limit = $tptn_settings['limit'];
23
+ $daily_range = $tptn_settings[daily_range]-1;
24
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
25
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
26
+ $current_date = date ( 'Y-m-j' , $current_date );
27
 
28
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
29
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.5.3
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
@@ -115,16 +115,18 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
115
  $limit = $tptn_settings['limit'];
116
 
117
  if (!$daily) {
118
- $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status ";
119
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
120
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
121
  $sql .= "AND post_status = 'publish' ";
122
  $sql .= "ORDER BY sumCount DESC LIMIT $limit";
123
  } else {
124
- $daily_range = $tptn_settings[daily_range]. ' DAY';
125
- $current_date = $wpdb->get_var("SELECT DATE_ADD(DATE_SUB(CURDATE(), INTERVAL ".$daily_range."), INTERVAL 1 DAY) ");
 
 
126
 
127
- $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
128
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
129
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
130
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
@@ -151,20 +153,27 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
151
  if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='thumbs_only')) {
152
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">';
153
  if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail($result->postnumber))) {
154
- $output .= get_the_post_thumbnail( $result->postnumber, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array('title' => $title,'alt' => $title));
155
  } else {
156
- $postimage = get_post_meta($result->postnumber, $tptn_settings[thumb_meta], true);
157
- if ($postimage) {
158
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" width="'.$tptn_settings[thumb_width].'" height="'.$tptn_settings[thumb_height].'" />';
159
- } else {
160
- $output .= '<img src="'.$tptn_settings[thumb_default].'" alt="'.$title.'" title="'.$title.'" width="'.$tptn_settings[thumb_width].'" height="'.$tptn_settings[thumb_height].'" />';
 
 
161
  }
 
 
162
  }
163
  $output .= '</a> ';
164
  }
165
  if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='text_only')) {
166
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">'.$title.'</a>';
167
  }
 
 
 
168
  if ($tptn_settings['disp_list_count']) $output .= ' ('.$result->sumCount.')';
169
  $output .= $tptn_settings['after_list_item'];
170
  }
@@ -258,6 +267,9 @@ function tptn_default_options() {
258
  thumb_width => '100', // Width of thumbnails
259
  thumb_meta => 'post-image', // Meta field that is used to store the location of default thumbnail image
260
  thumb_default => $thumb_default, // Default thumbnail image
 
 
 
261
  );
262
  return $tptn_settings;
263
  }
@@ -378,13 +390,33 @@ function tptn_trunc_count($daily = false) {
378
  $wpdb->query($sql);
379
  }
380
 
381
-
382
  function init_tptn(){
383
  register_sidebar_widget(__('Popular Posts',TPTN_LOCAL_NAME), 'widget_tptn_pop');
384
  register_sidebar_widget(__('Daily Popular',TPTN_LOCAL_NAME), 'widget_tptn_pop_daily');
385
  }
386
  add_action("plugins_loaded", "init_tptn");
387
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  // This function adds an Options page in WP Admin
389
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
390
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
@@ -395,9 +427,9 @@ function tptn_plugin_actions( $links, $file ) {
395
 
396
  // create link
397
  if ($file == $plugin) {
398
- $links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', tptn_LOCAL_NAME ) . '</a>';
399
- $links[] = '<a href="http://ajaydsouza.org">' . __('Support', tptn_LOCAL_NAME ) . '</a>';
400
- $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', tptn_LOCAL_NAME ) . '</a>';
401
  }
402
  return $links;
403
  }
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.6
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
115
  $limit = $tptn_settings['limit'];
116
 
117
  if (!$daily) {
118
+ $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status, post_content ";
119
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
120
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
121
  $sql .= "AND post_status = 'publish' ";
122
  $sql .= "ORDER BY sumCount DESC LIMIT $limit";
123
  } else {
124
+ $daily_range = $tptn_settings[daily_range] - 1;
125
+ $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
126
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
127
+ $current_date = date ( 'Y-m-j' , $current_date );
128
 
129
+ $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status, post_content ";
130
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
131
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
132
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
153
  if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='thumbs_only')) {
154
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">';
155
  if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail($result->postnumber))) {
156
+ $output .= get_the_post_thumbnail( $result->postnumber, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array('title' => $title,'alt' => $title, 'class' => 'tptn_thumb'));
157
  } else {
158
+ $postimage = get_post_meta($result->postnumber, $tptn_settings[thumb_meta], true); // Check
159
+ if ((!$postimage)&&($tptn_settings['scan_images'])) {
160
+ preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
161
+ // any image there?
162
+ if( isset( $matches ) && $matches[1][0] ) {
163
+ $postimage = $matches[1][0]; // we need the first one only!
164
+ }
165
  }
166
+ if (!$postimage) $postimage = $tptn_settings[thumb_default];
167
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" width="'.$tptn_settings[thumb_width].'" height="'.$tptn_settings[thumb_height].'" class="tptn_thumb" />';
168
  }
169
  $output .= '</a> ';
170
  }
171
  if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='text_only')) {
172
  $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">'.$title.'</a>';
173
  }
174
+ if ($tptn_settings['show_excerpt']) {
175
+ $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->post_content,$tptn_settings['excerpt_length']).'</span>';
176
+ }
177
  if ($tptn_settings['disp_list_count']) $output .= ' ('.$result->sumCount.')';
178
  $output .= $tptn_settings['after_list_item'];
179
  }
267
  thumb_width => '100', // Width of thumbnails
268
  thumb_meta => 'post-image', // Meta field that is used to store the location of default thumbnail image
269
  thumb_default => $thumb_default, // Default thumbnail image
270
+ scan_images => false, // Scan post for images
271
+ show_excerpt => false, // Show description in list item
272
+ excerpt_length => '10', // Length of characters
273
  );
274
  return $tptn_settings;
275
  }
390
  $wpdb->query($sql);
391
  }
392
 
 
393
  function init_tptn(){
394
  register_sidebar_widget(__('Popular Posts',TPTN_LOCAL_NAME), 'widget_tptn_pop');
395
  register_sidebar_widget(__('Daily Popular',TPTN_LOCAL_NAME), 'widget_tptn_pop_daily');
396
  }
397
  add_action("plugins_loaded", "init_tptn");
398
 
399
+ // Function to create an excerpt for the post
400
+ function tptn_excerpt($content,$excerpt_length){
401
+ $out = strip_tags($content);
402
+ $blah = explode(' ',$out);
403
+ if (!$excerpt_length) $excerpt_length = 10;
404
+ if(count($blah) > $excerpt_length){
405
+ $k = $excerpt_length;
406
+ $use_dotdotdot = 1;
407
+ }else{
408
+ $k = count($blah);
409
+ $use_dotdotdot = 0;
410
+ }
411
+ $excerpt = '';
412
+ for($i=0; $i<$k; $i++){
413
+ $excerpt .= $blah[$i].' ';
414
+ }
415
+ $excerpt .= ($use_dotdotdot) ? '...' : '';
416
+ $out = $excerpt;
417
+ return $out;
418
+ }
419
+
420
  // This function adds an Options page in WP Admin
421
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
422
  require_once(ALD_TPTN_DIR . "/admin.inc.php");
427
 
428
  // create link
429
  if ($file == $plugin) {
430
+ $links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>';
431
+ $links[] = '<a href="http://ajaydsouza.org">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
432
+ $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
433
  }
434
  return $links;
435
  }
uninstall.php CHANGED
@@ -4,7 +4,7 @@ if ( !defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') ) {
4
  }
5
  global $wpdb;
6
  $table_name = $wpdb->prefix . "top_ten";
7
- $table_name_daily = $wpdb->prefix . "table_name_daily";
8
 
9
  $sql = "DROP TABLE $table_name";
10
  $wpdb->query($sql);
4
  }
5
  global $wpdb;
6
  $table_name = $wpdb->prefix . "top_ten";
7
+ $table_name_daily = $wpdb->prefix . $table_name."_daily";
8
 
9
  $sql = "DROP TABLE $table_name";
10
  $wpdb->query($sql);