Top 10 – Popular posts plugin for WordPress - Version 1.6.2

Version Description

  • Fixed: Multiple rows being created for same ID
  • Fixed: Counter display
  • Added: New button to clear the duplicate rows in the tables
  • Fixed: Top 10 should be lighter on the server now
Download this release

Release Info

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

Code changes from version 1.6.1 to 1.6.2

admin.inc.php CHANGED
@@ -67,6 +67,13 @@ function tptn_options() {
67
  $str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
68
  echo $str;
69
  }
 
 
 
 
 
 
 
70
  ?>
71
 
72
  <div class="wrap">
@@ -252,6 +259,7 @@ function tptn_options() {
252
  <p>
253
  <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="Reset Popular Posts" style="border:#900 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
254
  <input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="Reset Daily Popular Posts" style="border:#C00 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
 
255
  </p>
256
  </fieldset>
257
  </form>
@@ -280,7 +288,7 @@ function tptn_options() {
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">
@@ -342,6 +350,18 @@ function tptn_adminhead() {
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) {
347
  global $wpdb, $siteurl, $tableposts, $id;
@@ -354,11 +374,11 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
354
  if (!($page)) $page = 0; // Default page value.
355
 
356
  if(!$daily) {
357
- $sql = "SELECT postnumber, cntaccess , ID, post_type ";
358
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
359
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
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 ) ) );
@@ -402,7 +422,6 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
402
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
403
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
404
  $sql .= "AND post_status = 'publish' ";
405
- $sql .= "GROUP BY postnumber ";
406
  $sql .= "ORDER BY cntaccess DESC LIMIT $page, $limit";
407
  } else {
408
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
67
  $str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
68
  echo $str;
69
  }
70
+
71
+ if ($_POST['tptn_clean_duplicates']){
72
+ tptn_clean_duplicates(true);
73
+ tptn_clean_duplicates(false);
74
+ $str = '<div id="message" class="updated fade"><p>'. __('Tables cleaned of duplicate rows',TPTN_LOCAL_NAME) .'</p></div>';
75
+ echo $str;
76
+ }
77
  ?>
78
 
79
  <div class="wrap">
259
  <p>
260
  <input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="Reset Popular Posts" style="border:#900 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
261
  <input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="Reset Daily Popular Posts" style="border:#C00 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
262
+ <input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="Clear duplicates" style="border:#600 1px solid" onclick="if (!confirm('<?php _e('This will delete the duplicate entries in the tables. Proceed?',TPTN_LOCAL_NAME); ?>')) return false;" />
263
  </p>
264
  </fieldset>
265
  </form>
288
  <input type="hidden" name="business" value="KGVN7LJLLZCMY">
289
  <input type="hidden" name="lc" value="IN">
290
  <input type="hidden" name="item_name" value="Donation for Top 10">
291
+ <input type="hidden" name="item_number" value="tptn">
292
  <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
293
  <input type="hidden" name="currency_code" value="USD">
294
  <input type="hidden" name="button_subtype" value="services">
350
  <link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/admin-styles.css" />
351
  <?php }
352
 
353
+ // Function to delete all rows in the posts table
354
+ function tptn_clean_duplicates($daily = false) {
355
+ global $wpdb;
356
+ $table_name = $wpdb->prefix . "top_ten";
357
+ if ($daily) $table_name .= "_daily";
358
+ $count = 0;
359
+
360
+ $wpdb->query("CREATE TEMPORARY TABLE ".$table_name."_temp AS SELECT * FROM ".$table_name." GROUP BY postnumber");
361
+ $wpdb->query("TRUNCATE TABLE $table_name");
362
+ $wpdb->query("INSERT INTO ".$table_name." SELECT * FROM ".$table_name."_temp");
363
+ }
364
+
365
  /* Create a Dashboard Widget */
366
  function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
367
  global $wpdb, $siteurl, $tableposts, $id;
374
  if (!($page)) $page = 0; // Default page value.
375
 
376
  if(!$daily) {
377
+ $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type ";
378
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
379
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
380
  $sql .= "AND post_status = 'publish' ";
381
+ $sql .= "ORDER BY sumCount DESC";
382
  } else {
383
  $daily_range = $tptn_settings[daily_range]-1;
384
  $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
422
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
423
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
424
  $sql .= "AND post_status = 'publish' ";
 
425
  $sql .= "ORDER BY cntaccess DESC LIMIT $page, $limit";
426
  } else {
427
  $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
languages/tptn-be_BY.mo CHANGED
Binary file
languages/tptn-be_BY.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-02-20 19:27+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"
@@ -33,264 +33,272 @@ msgstr "Загаловак блока Папулярных запісаў:"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-29 00:11+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"
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Загаловак блока Папулярных сёння запісаў:"
35
 
36
+ #: admin.inc.php:74
37
+ msgid "Tables cleaned of duplicate rows"
38
+ msgstr ""
39
+
40
+ #: admin.inc.php:86
41
  msgid "Options:"
42
  msgstr "Налады ўбудовы:"
43
 
44
+ #: admin.inc.php:91
45
  msgid "Format to display the count in: "
46
  msgstr "Фармат адлюстравання колькасці праглядаў:"
47
 
48
+ #: admin.inc.php:95
49
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
  msgstr "Выкарыстоўвайце <code>%totalcount%</code> каб паказваць агульны лік праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
51
 
52
+ #: admin.inc.php:98
53
  msgid "Number of popular posts to display: "
54
  msgstr "Колькасць Папулярных запісаў у спісе:"
55
 
56
+ #: admin.inc.php:104
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
59
 
60
+ #: admin.inc.php:111
61
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
  msgstr "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для старонак будзе падлічвацца."
63
 
64
+ #: admin.inc.php:117
65
  msgid "Display number of views on posts?"
66
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
67
 
68
+ #: admin.inc.php:123
69
  msgid "Display number of views on pages?"
70
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
71
 
72
+ #: admin.inc.php:129
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
75
 
76
+ #: admin.inc.php:135
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
79
 
80
+ #: admin.inc.php:141
81
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
82
  msgstr "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , і гэта можа павялічыць час загрузкі старонак"
83
 
84
+ #: admin.inc.php:147
85
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
86
  msgstr "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага будзе дададзена асобная калонка"
87
 
88
+ #: admin.inc.php:153
89
  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!"
90
  msgstr "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
91
 
92
+ #: admin.inc.php:157
93
  #, fuzzy
94
  msgid "Output Options:"
95
  msgstr "Налады ўбудовы:"
96
 
97
+ #: admin.inc.php:161
98
  msgid "Title of popular posts: "
99
  msgstr "Загаловак блока Папулярных запісаў:"
100
 
101
+ #: admin.inc.php:167
102
  msgid "Title of daily popular posts: "
103
  msgstr "Загаловак блока Папулярных сёння запісаў:"
104
 
105
+ #: admin.inc.php:174
106
  msgid "Show post excerpt in list?"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:179
110
  msgid "Length of excerpt (in words): "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:183
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:186
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:192
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:198
126
  #, fuzzy
127
  msgid "HTML to display after each list item: "
128
  msgstr "Фармат адлюстравання колькасці праглядаў:"
129
 
130
+ #: admin.inc.php:204
131
  msgid "HTML to display after the list of posts: "
132
  msgstr ""
133
 
134
+ #: admin.inc.php:208
135
  msgid "Post thumbnail options:"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:212
139
  #, fuzzy
140
  msgid "Display thumbnails inline with posts"
141
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
142
 
143
+ #: admin.inc.php:216
144
  msgid "Display only thumbnails, no text"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:220
148
  msgid "Do not display thumbnails, only text."
149
  msgstr ""
150
 
151
+ #: admin.inc.php:225
152
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:232
156
  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"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:235
160
  msgid "Thumbnail dimensions:"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:237
164
  msgid "Max width: "
165
  msgstr ""
166
 
167
+ #: admin.inc.php:242
168
  msgid "Max height: "
169
  msgstr ""
170
 
171
+ #: admin.inc.php:246
172
  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:"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:251
176
  msgid "Do you want to set options to Default?"
177
  msgstr "Скінуць налады ўбудовы?"
178
 
179
+ #: admin.inc.php:254
180
  msgid "Reset count"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:257
184
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:260
188
  msgid "Are you sure you want to reset the popular posts?"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:261
192
  msgid "Are you sure you want to reset the daily popular posts?"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:262
196
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
197
+ msgstr ""
198
+
199
+ #: admin.inc.php:269
200
  msgid "Quick links"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:271
204
  #, fuzzy
205
  msgid "Top 10 "
206
  msgstr "Топ 10 запісаў"
207
 
208
+ #: admin.inc.php:271
209
  msgid "plugin page"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:272
213
  msgid "Other plugins"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:273
217
  msgid "Ajay's blog"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:274
221
  msgid "Support forum"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:275
225
  msgid "Follow @ajaydsouza on Twitter"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:279
229
  msgid "Recent developments"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:284
233
  #, fuzzy
234
  msgid "Support the development"
235
  msgstr "Падтрымаеце стваральніка ўбудовы"
236
 
237
+ #: admin.inc.php:292
238
  msgid "Enter amount in USD: "
239
  msgstr ""
240
 
241
+ #: admin.inc.php:296
242
  msgid "Send your donation to the author of"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:316
246
+ #: admin.inc.php:341
247
+ #: admin.inc.php:533
248
  #: top-10.php:232
249
  #: top-10.php:394
250
  msgid "Popular Posts"
251
  msgstr "Папулярныя запісы"
252
 
253
+ #: admin.inc.php:316
254
  msgid "Daily Popular Posts"
255
  msgstr "Папулярныя сёння запісы"
256
 
257
+ #: admin.inc.php:339
258
+ #: admin.inc.php:341
259
  msgid "Top 10"
260
  msgstr "Топ 10 запісаў"
261
 
262
+ #: admin.inc.php:441
263
  msgid "Results"
264
  msgstr "Вынікі"
265
 
266
+ #: admin.inc.php:443
267
+ #: admin.inc.php:449
268
  msgid "of"
269
  msgstr "з"
270
 
271
+ #: admin.inc.php:447
272
  msgid "Page"
273
  msgstr "Старонка"
274
 
275
+ #: admin.inc.php:461
276
  msgid "View Daily Popular Posts"
277
  msgstr "Паглядзець усе Папулярныя сёння запісы"
278
 
279
+ #: admin.inc.php:465
280
  msgid "View Overall Popular Posts"
281
  msgstr "Паглядзець усе Папулярныя запісы"
282
 
283
+ #: admin.inc.php:469
284
  msgid "Results per-page:"
285
  msgstr "Вынікаў на старонку:"
286
 
287
+ #: admin.inc.php:493
288
  msgid "Previous"
289
  msgstr "Папярэдняя старонка"
290
 
291
+ #: admin.inc.php:511
292
  msgid "Next"
293
  msgstr "Наступная старонка"
294
 
295
+ #: admin.inc.php:534
296
  #: top-10.php:211
297
  #: top-10.php:395
298
  msgid "Daily Popular"
299
  msgstr "Папулярныя сёння запісы"
300
 
301
+ #: admin.inc.php:545
302
  msgid "Total / Today's Views"
303
  msgstr "Усяго / Сёння праглядаў"
304
 
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: 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"
@@ -30,259 +30,267 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-29 00:12+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"
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
+ #: admin.inc.php:74
34
+ msgid "Tables cleaned of duplicate rows"
35
+ msgstr ""
36
+
37
+ #: admin.inc.php:86
38
  msgid "Options:"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:91
42
  msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
+ #: admin.inc.php:95
46
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:98
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:104
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
+ #: admin.inc.php:111
58
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:117
62
  msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:123
66
  msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:129
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:135
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
+ #: admin.inc.php:141
78
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:147
82
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:153
86
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:157
90
  msgid "Output Options:"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:161
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
+ #: admin.inc.php:167
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
+ #: admin.inc.php:174
102
  msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:179
106
  msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
+ #: admin.inc.php:183
110
  msgid "Customize the output:"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:186
114
  msgid "HTML to display before the list of posts: "
115
  msgstr ""
116
 
117
+ #: admin.inc.php:192
118
  msgid "HTML to display before each list item: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:198
122
  msgid "HTML to display after each list item: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:204
126
  msgid "HTML to display after the list of posts: "
127
  msgstr ""
128
 
129
+ #: admin.inc.php:208
130
  msgid "Post thumbnail options:"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:212
134
  msgid "Display thumbnails inline with posts"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:216
138
  msgid "Display only thumbnails, no text"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:220
142
  msgid "Do not display thumbnails, only text."
143
  msgstr ""
144
 
145
+ #: admin.inc.php:225
146
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
147
  msgstr ""
148
 
149
+ #: admin.inc.php:232
150
  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"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:235
154
  msgid "Thumbnail dimensions:"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:237
158
  msgid "Max width: "
159
  msgstr ""
160
 
161
+ #: admin.inc.php:242
162
  msgid "Max height: "
163
  msgstr ""
164
 
165
+ #: admin.inc.php:246
166
  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:"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:251
170
  msgid "Do you want to set options to Default?"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:254
174
  msgid "Reset count"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:257
178
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:260
182
  msgid "Are you sure you want to reset the popular posts?"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:261
186
  msgid "Are you sure you want to reset the daily popular posts?"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:262
190
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
191
+ msgstr ""
192
+
193
+ #: admin.inc.php:269
194
  msgid "Quick links"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:271
198
  msgid "Top 10 "
199
  msgstr ""
200
 
201
+ #: admin.inc.php:271
202
  msgid "plugin page"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:272
206
  msgid "Other plugins"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:273
210
  msgid "Ajay's blog"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:274
214
  msgid "Support forum"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:275
218
  msgid "Follow @ajaydsouza on Twitter"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:279
222
  msgid "Recent developments"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:284
226
  msgid "Support the development"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:292
230
  msgid "Enter amount in USD: "
231
  msgstr ""
232
 
233
+ #: admin.inc.php:296
234
  msgid "Send your donation to the author of"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:316
238
+ #: admin.inc.php:341
239
+ #: admin.inc.php:533
240
  #: top-10.php:232
241
  #: top-10.php:394
242
  msgid "Popular Posts"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:316
246
  msgid "Daily Popular Posts"
247
  msgstr ""
248
 
249
+ #: admin.inc.php:339
250
+ #: admin.inc.php:341
251
  msgid "Top 10"
252
  msgstr ""
253
 
254
+ #: admin.inc.php:441
255
  msgid "Results"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:443
259
+ #: admin.inc.php:449
260
  msgid "of"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:447
264
  msgid "Page"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:461
268
  msgid "View Daily Popular Posts"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:465
272
  msgid "View Overall Popular Posts"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:469
276
  msgid "Results per-page:"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:493
280
  msgid "Previous"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:511
284
  msgid "Next"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:534
288
  #: top-10.php:211
289
  #: top-10.php:395
290
  msgid "Daily Popular"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:545
294
  msgid "Total / Today's Views"
295
  msgstr ""
296
 
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: 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"
@@ -30,259 +30,267 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-29 00:12+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"
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
+ #: admin.inc.php:74
34
+ msgid "Tables cleaned of duplicate rows"
35
+ msgstr ""
36
+
37
+ #: admin.inc.php:86
38
  msgid "Options:"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:91
42
  msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
+ #: admin.inc.php:95
46
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:98
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:104
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
+ #: admin.inc.php:111
58
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:117
62
  msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:123
66
  msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:129
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:135
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
+ #: admin.inc.php:141
78
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:147
82
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:153
86
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:157
90
  msgid "Output Options:"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:161
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
+ #: admin.inc.php:167
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
+ #: admin.inc.php:174
102
  msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:179
106
  msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
+ #: admin.inc.php:183
110
  msgid "Customize the output:"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:186
114
  msgid "HTML to display before the list of posts: "
115
  msgstr ""
116
 
117
+ #: admin.inc.php:192
118
  msgid "HTML to display before each list item: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:198
122
  msgid "HTML to display after each list item: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:204
126
  msgid "HTML to display after the list of posts: "
127
  msgstr ""
128
 
129
+ #: admin.inc.php:208
130
  msgid "Post thumbnail options:"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:212
134
  msgid "Display thumbnails inline with posts"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:216
138
  msgid "Display only thumbnails, no text"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:220
142
  msgid "Do not display thumbnails, only text."
143
  msgstr ""
144
 
145
+ #: admin.inc.php:225
146
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
147
  msgstr ""
148
 
149
+ #: admin.inc.php:232
150
  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"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:235
154
  msgid "Thumbnail dimensions:"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:237
158
  msgid "Max width: "
159
  msgstr ""
160
 
161
+ #: admin.inc.php:242
162
  msgid "Max height: "
163
  msgstr ""
164
 
165
+ #: admin.inc.php:246
166
  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:"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:251
170
  msgid "Do you want to set options to Default?"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:254
174
  msgid "Reset count"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:257
178
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:260
182
  msgid "Are you sure you want to reset the popular posts?"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:261
186
  msgid "Are you sure you want to reset the daily popular posts?"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:262
190
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
191
+ msgstr ""
192
+
193
+ #: admin.inc.php:269
194
  msgid "Quick links"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:271
198
  msgid "Top 10 "
199
  msgstr ""
200
 
201
+ #: admin.inc.php:271
202
  msgid "plugin page"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:272
206
  msgid "Other plugins"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:273
210
  msgid "Ajay's blog"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:274
214
  msgid "Support forum"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:275
218
  msgid "Follow @ajaydsouza on Twitter"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:279
222
  msgid "Recent developments"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:284
226
  msgid "Support the development"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:292
230
  msgid "Enter amount in USD: "
231
  msgstr ""
232
 
233
+ #: admin.inc.php:296
234
  msgid "Send your donation to the author of"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:316
238
+ #: admin.inc.php:341
239
+ #: admin.inc.php:533
240
  #: top-10.php:232
241
  #: top-10.php:394
242
  msgid "Popular Posts"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:316
246
  msgid "Daily Popular Posts"
247
  msgstr ""
248
 
249
+ #: admin.inc.php:339
250
+ #: admin.inc.php:341
251
  msgid "Top 10"
252
  msgstr ""
253
 
254
+ #: admin.inc.php:441
255
  msgid "Results"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:443
259
+ #: admin.inc.php:449
260
  msgid "of"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:447
264
  msgid "Page"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:461
268
  msgid "View Daily Popular Posts"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:465
272
  msgid "View Overall Popular Posts"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:469
276
  msgid "Results per-page:"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:493
280
  msgid "Previous"
281
  msgstr ""
282
 
283
+ #: admin.inc.php:511
284
  msgid "Next"
285
  msgstr ""
286
 
287
+ #: admin.inc.php:534
288
  #: top-10.php:211
289
  #: top-10.php:395
290
  msgid "Daily Popular"
291
  msgstr ""
292
 
293
+ #: admin.inc.php:545
294
  msgid "Total / Today's Views"
295
  msgstr ""
296
 
languages/tptn-it_IT.mo CHANGED
Binary file
languages/tptn-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-02-20 19:27+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net <gidibao[at]gmail[dot]com>\n"
@@ -31,259 +31,267 @@ msgstr "Ripristino 10 articoli più popolari"
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
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-29 00:11+0530\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net <gidibao[at]gmail[dot]com>\n"
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
+ #: admin.inc.php:74
35
+ msgid "Tables cleaned of duplicate rows"
36
+ msgstr ""
37
+
38
+ #: admin.inc.php:86
39
  msgid "Options:"
40
  msgstr "Opzioni:"
41
 
42
+ #: admin.inc.php:91
43
  msgid "Format to display the count in: "
44
  msgstr "Formato per il conteggio:"
45
 
46
+ #: admin.inc.php:95
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Utilizza <code>%totalcount%</code> per potere mostrare il computo totale e <code>%dailycount%</code> per visualizzare quello del giorno corrente. Ad esempio, le opzioni predefinite verranno mostrate online con un <code>(letto 123 volte, 23 visite odierne)</code>"
49
 
50
+ #: admin.inc.php:98
51
  msgid "Number of popular posts to display: "
52
  msgstr "Numero degli articoli più popolari da mostrare:"
53
 
54
+ #: admin.inc.php:104
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "Quanti giorni desideri siano considerati per il computo delle visualizzazioni per articoli più popolari del giorno?"
57
 
58
+ #: admin.inc.php:111
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Desideri escludere le pagine dalla visualizzazione per gli articoli più popolari? Il numero delle visualizzazioni continuerà ad essere comunque aggiornato."
61
 
62
+ #: admin.inc.php:117
63
  msgid "Display number of views on posts?"
64
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
65
 
66
+ #: admin.inc.php:123
67
  msgid "Display number of views on pages?"
68
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
69
 
70
+ #: admin.inc.php:129
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Desideri che vengano conteggiate anche le visite da parte dell'amministatore del sito?"
73
 
74
+ #: admin.inc.php:135
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei più popolari?"
77
 
78
+ #: admin.inc.php:141
79
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione utilizza un JavaScript per il caricamento dell'articolo e di conseguenza potrà fare aumentare i tempi di caricamento della stessa pagina"
81
 
82
+ #: admin.inc.php:147
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "Desideri mostrare il totale delle visualizzazioni sotto Modifica Articoli/Pagine in WP-Admin? Se sì, verrà aggiunta una nuova sezione (a nome Top 10) con i conteggi nel dettaglio"
85
 
86
+ #: admin.inc.php:153
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Nella lista dei tuoi articoli più popolari é stato aggiunto un link alla pagina del plugin. Ti sarei molto grato qualora non disattivassi questa opzione!"
89
 
90
+ #: admin.inc.php:157
91
  msgid "Output Options:"
92
  msgstr "Opzioni output:"
93
 
94
+ #: admin.inc.php:161
95
  msgid "Title of popular posts: "
96
  msgstr "Titolo per gli articoli più popolari:"
97
 
98
+ #: admin.inc.php:167
99
  msgid "Title of daily popular posts: "
100
  msgstr "Titolo per gli articoli più popolari del giorno:"
101
 
102
+ #: admin.inc.php:174
103
  msgid "Show post excerpt in list?"
104
  msgstr "Desideri mostrare gli estratti?"
105
 
106
+ #: admin.inc.php:179
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Lunghezza estratto (in parole):"
109
 
110
+ #: admin.inc.php:183
111
  msgid "Customize the output:"
112
  msgstr "Personalizzazione output:"
113
 
114
+ #: admin.inc.php:186
115
  msgid "HTML to display before the list of posts: "
116
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
117
 
118
+ #: admin.inc.php:192
119
  msgid "HTML to display before each list item: "
120
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
121
 
122
+ #: admin.inc.php:198
123
  msgid "HTML to display after each list item: "
124
  msgstr "HTML da mostrare dopo ogni lista:"
125
 
126
+ #: admin.inc.php:204
127
  msgid "HTML to display after the list of posts: "
128
  msgstr "HTML da mostrare dopo la lista degli articoli:"
129
 
130
+ #: admin.inc.php:208
131
  msgid "Post thumbnail options:"
132
  msgstr "Opzioni miniature articolo:"
133
 
134
+ #: admin.inc.php:212
135
  msgid "Display thumbnails inline with posts"
136
  msgstr "Desideri mostrare gli articoli con le miniature inline?"
137
 
138
+ #: admin.inc.php:216
139
  msgid "Display only thumbnails, no text"
140
  msgstr "Mostra le sole miniature, nessun testo"
141
 
142
+ #: admin.inc.php:220
143
  msgid "Do not display thumbnails, only text."
144
  msgstr "Non mostrare le miniature, solo testo."
145
 
146
+ #: admin.inc.php:225
147
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
148
  msgstr "Campo meta per le miniature (il valore deve puntare alla immagine):"
149
 
150
+ #: admin.inc.php:232
151
  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"
152
  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"
153
 
154
+ #: admin.inc.php:235
155
  msgid "Thumbnail dimensions:"
156
  msgstr "Dimensione miniature:"
157
 
158
+ #: admin.inc.php:237
159
  msgid "Max width: "
160
  msgstr "Larghezza massima:"
161
 
162
+ #: admin.inc.php:242
163
  msgid "Max height: "
164
  msgstr "Altezza massima:"
165
 
166
+ #: admin.inc.php:246
167
  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:"
168
  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:"
169
 
170
+ #: admin.inc.php:251
171
  msgid "Do you want to set options to Default?"
172
  msgstr "Desideri ripristinare alle predefinite?"
173
 
174
+ #: admin.inc.php:254
175
  msgid "Reset count"
176
  msgstr "Ripristino conteggio"
177
 
178
+ #: admin.inc.php:257
179
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
180
  msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
181
 
182
+ #: admin.inc.php:260
183
  msgid "Are you sure you want to reset the popular posts?"
184
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
185
 
186
+ #: admin.inc.php:261
187
  msgid "Are you sure you want to reset the daily popular posts?"
188
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
189
 
190
+ #: admin.inc.php:262
191
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
192
+ msgstr ""
193
+
194
+ #: admin.inc.php:269
195
  msgid "Quick links"
196
  msgstr "Collegamenti veloci"
197
 
198
+ #: admin.inc.php:271
199
  msgid "Top 10 "
200
  msgstr "Top 10"
201
 
202
+ #: admin.inc.php:271
203
  msgid "plugin page"
204
  msgstr "pagina plugin"
205
 
206
+ #: admin.inc.php:272
207
  msgid "Other plugins"
208
  msgstr "Altri plugin"
209
 
210
+ #: admin.inc.php:273
211
  msgid "Ajay's blog"
212
  msgstr "Il blog di Ajay"
213
 
214
+ #: admin.inc.php:274
215
  msgid "Support forum"
216
  msgstr "Forum di supporto"
217
 
218
+ #: admin.inc.php:275
219
  msgid "Follow @ajaydsouza on Twitter"
220
  msgstr "Segui @ajaydsouza su Twitter"
221
 
222
+ #: admin.inc.php:279
223
  msgid "Recent developments"
224
  msgstr "Sviluppi recenti"
225
 
226
+ #: admin.inc.php:284
227
  msgid "Support the development"
228
  msgstr "Sostieni lo sviluppo"
229
 
230
+ #: admin.inc.php:292
231
  msgid "Enter amount in USD: "
232
  msgstr "Inserisci la cifra in USD: "
233
 
234
+ #: admin.inc.php:296
235
  msgid "Send your donation to the author of"
236
  msgstr "Invia la tua donazione all'autore di"
237
 
238
+ #: admin.inc.php:316
239
+ #: admin.inc.php:341
240
+ #: admin.inc.php:533
241
  #: top-10.php:232
242
  #: top-10.php:394
243
  msgid "Popular Posts"
244
  msgstr "Gli articoli più popolari"
245
 
246
+ #: admin.inc.php:316
247
  msgid "Daily Popular Posts"
248
  msgstr "Gli articoli più popolari di oggi"
249
 
250
+ #: admin.inc.php:339
251
+ #: admin.inc.php:341
252
  msgid "Top 10"
253
  msgstr "Top 10"
254
 
255
+ #: admin.inc.php:441
256
  msgid "Results"
257
  msgstr "Risultati"
258
 
259
+ #: admin.inc.php:443
260
+ #: admin.inc.php:449
261
  msgid "of"
262
  msgstr "di"
263
 
264
+ #: admin.inc.php:447
265
  msgid "Page"
266
  msgstr "Pagina"
267
 
268
+ #: admin.inc.php:461
269
  msgid "View Daily Popular Posts"
270
  msgstr "Visualizza gli articoli più letti di oggi"
271
 
272
+ #: admin.inc.php:465
273
  msgid "View Overall Popular Posts"
274
  msgstr "Visualizza panoramica articoli più popolari"
275
 
276
+ #: admin.inc.php:469
277
  msgid "Results per-page:"
278
  msgstr "Risultati per pagina:"
279
 
280
+ #: admin.inc.php:493
281
  msgid "Previous"
282
  msgstr "Precedente"
283
 
284
+ #: admin.inc.php:511
285
  msgid "Next"
286
  msgstr "Successiva"
287
 
288
+ #: admin.inc.php:534
289
  #: top-10.php:211
290
  #: top-10.php:395
291
  msgid "Daily Popular"
292
  msgstr "I più letti di oggi"
293
 
294
+ #: admin.inc.php:545
295
  msgid "Total / Today's Views"
296
  msgstr "Totale / Visualizzazioni odierne"
297
 
languages/tptn-ru_RU.mo CHANGED
Binary file
languages/tptn-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-02-20 19:27+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"
@@ -31,262 +31,270 @@ msgstr "Сбросить статистику популярных записе
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
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-29 00:12+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"
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
+ #: admin.inc.php:74
35
+ msgid "Tables cleaned of duplicate rows"
36
+ msgstr ""
37
+
38
+ #: admin.inc.php:86
39
  msgid "Options:"
40
  msgstr "Настройки плагина:"
41
 
42
+ #: admin.inc.php:91
43
  msgid "Format to display the count in: "
44
  msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
45
 
46
+ #: admin.inc.php:95
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Используйте <code>%totalcount%</code> чтобы вывести общее число просмотров, а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись просмотрена 123 раза, сегодня просмотров было 23)</code>."
49
 
50
+ #: admin.inc.php:98
51
  msgid "Number of popular posts to display: "
52
  msgstr "Количество Популярных записей в списке:"
53
 
54
+ #: admin.inc.php:104
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
57
 
58
+ #: admin.inc.php:111
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Исключить страницы из списка Популярных записей? Количество просмотров для страниц будет продолжать подсчитываться"
61
 
62
+ #: admin.inc.php:117
63
  msgid "Display number of views on posts?"
64
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
65
 
66
+ #: admin.inc.php:123
67
  msgid "Display number of views on pages?"
68
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
69
 
70
+ #: admin.inc.php:129
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
73
 
74
+ #: admin.inc.php:135
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
77
 
78
+ #: admin.inc.php:141
79
  msgid "Force daily posts' list to be dynamic? This options uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Сделать список Популярных записей динамичным? Опция использует JavaScript , и это может увеличить время загрузки страниц"
81
 
82
+ #: admin.inc.php:147
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "Отображать количество просмотров записей/страниц в админке? Для этого будет добавлена отдельная колонка в wp-admin/edit.php"
85
 
86
+ #: admin.inc.php:153
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был бы очень благодарен Вам, если Вы ее все же оставите!"
89
 
90
+ #: admin.inc.php:157
91
  msgid "Output Options:"
92
  msgstr "Настройки плагина:"
93
 
94
+ #: admin.inc.php:161
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списка Популярных записей:"
97
 
98
+ #: admin.inc.php:167
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списка Популярных сегодня записей:"
101
 
102
+ #: admin.inc.php:174
103
  msgid "Show post excerpt in list?"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:179
107
  msgid "Length of excerpt (in words): "
108
  msgstr ""
109
 
110
+ #: admin.inc.php:183
111
  msgid "Customize the output:"
112
  msgstr "Настройки оформления списка:"
113
 
114
+ #: admin.inc.php:186
115
  msgid "HTML to display before the list of posts: "
116
  msgstr "HTML-тег, используемый перед списком:"
117
 
118
+ #: admin.inc.php:192
119
  msgid "HTML to display before each list item: "
120
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
121
 
122
+ #: admin.inc.php:198
123
  msgid "HTML to display after each list item: "
124
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
125
 
126
+ #: admin.inc.php:204
127
  msgid "HTML to display after the list of posts: "
128
  msgstr "HTML-тег, используемый после списка:"
129
 
130
+ #: admin.inc.php:208
131
  msgid "Post thumbnail options:"
132
  msgstr "Настройки превью к записям:"
133
 
134
+ #: admin.inc.php:212
135
  msgid "Display thumbnails inline with posts"
136
  msgstr "Отображать и превью, и текст"
137
 
138
+ #: admin.inc.php:216
139
  msgid "Display only thumbnails, no text"
140
  msgstr "Отображать только превью, без текста"
141
 
142
+ #: admin.inc.php:220
143
  msgid "Do not display thumbnails, only text."
144
  msgstr "Отображать только текст, без превью"
145
 
146
+ #: admin.inc.php:225
147
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
148
  msgstr "Введите сюда используемое вашей темой имя произвольного поля (мета-поле) для вывода превью:"
149
 
150
+ #: admin.inc.php:232
151
  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"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:235
155
  msgid "Thumbnail dimensions:"
156
  msgstr "Размеры выводимого изображения (превью):"
157
 
158
+ #: admin.inc.php:237
159
  msgid "Max width: "
160
  msgstr "Ширина:"
161
 
162
+ #: admin.inc.php:242
163
  msgid "Max height: "
164
  msgstr "Высота:"
165
 
166
+ #: admin.inc.php:246
167
  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:"
168
  msgstr "В первую очередь, плагин проверит, есть ли у записи превью (проверка по заданному ранее произвольному мета-полю). Если же превью нет - будет выводиться картинка по-умолчанию:"
169
 
170
+ #: admin.inc.php:251
171
  msgid "Do you want to set options to Default?"
172
  msgstr "Сбросить настройки плагина?"
173
 
174
+ #: admin.inc.php:254
175
  msgid "Reset count"
176
  msgstr "Сбросить статистику"
177
 
178
+ #: admin.inc.php:257
179
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
180
  msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
181
 
182
+ #: admin.inc.php:260
183
  msgid "Are you sure you want to reset the popular posts?"
184
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
185
 
186
+ #: admin.inc.php:261
187
  msgid "Are you sure you want to reset the daily popular posts?"
188
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
189
 
190
+ #: admin.inc.php:262
191
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
192
+ msgstr ""
193
+
194
+ #: admin.inc.php:269
195
  msgid "Quick links"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:271
199
  #, fuzzy
200
  msgid "Top 10 "
201
  msgstr "Топ 10 записей"
202
 
203
+ #: admin.inc.php:271
204
  msgid "plugin page"
205
  msgstr ""
206
 
207
+ #: admin.inc.php:272
208
  msgid "Other plugins"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:273
212
  msgid "Ajay's blog"
213
  msgstr ""
214
 
215
+ #: admin.inc.php:274
216
  #, fuzzy
217
  msgid "Support forum"
218
  msgstr "Поддержка (англ.)"
219
 
220
+ #: admin.inc.php:275
221
  msgid "Follow @ajaydsouza on Twitter"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:279
225
  msgid "Recent developments"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:284
229
  #, fuzzy
230
  msgid "Support the development"
231
  msgstr "Поддержать автора плагина"
232
 
233
+ #: admin.inc.php:292
234
  msgid "Enter amount in USD: "
235
  msgstr ""
236
 
237
+ #: admin.inc.php:296
238
  msgid "Send your donation to the author of"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:316
242
+ #: admin.inc.php:341
243
+ #: admin.inc.php:533
244
  #: top-10.php:232
245
  #: top-10.php:394
246
  msgid "Popular Posts"
247
  msgstr "Популярные записи"
248
 
249
+ #: admin.inc.php:316
250
  msgid "Daily Popular Posts"
251
  msgstr "Популярные сегодня записи"
252
 
253
+ #: admin.inc.php:339
254
+ #: admin.inc.php:341
255
  msgid "Top 10"
256
  msgstr "Топ 10 записей"
257
 
258
+ #: admin.inc.php:441
259
  msgid "Results"
260
  msgstr "Результаты"
261
 
262
+ #: admin.inc.php:443
263
+ #: admin.inc.php:449
264
  msgid "of"
265
  msgstr "из"
266
 
267
+ #: admin.inc.php:447
268
  msgid "Page"
269
  msgstr "Страница"
270
 
271
+ #: admin.inc.php:461
272
  msgid "View Daily Popular Posts"
273
  msgstr "Посмотреть все Популярные сегодня записи"
274
 
275
+ #: admin.inc.php:465
276
  msgid "View Overall Popular Posts"
277
  msgstr "Посмотреть все Популярные записи"
278
 
279
+ #: admin.inc.php:469
280
  msgid "Results per-page:"
281
  msgstr "Результатов на страницу:"
282
 
283
+ #: admin.inc.php:493
284
  msgid "Previous"
285
  msgstr "Предыдущая страница"
286
 
287
+ #: admin.inc.php:511
288
  msgid "Next"
289
  msgstr "Следующая страница"
290
 
291
+ #: admin.inc.php:534
292
  #: top-10.php:211
293
  #: top-10.php:395
294
  msgid "Daily Popular"
295
  msgstr "Популярные сегодня записи"
296
 
297
+ #: admin.inc.php:545
298
  msgid "Total / Today's Views"
299
  msgstr "Всего/Сегодня"
300
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: Ajay, Mark Ghosh
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 2.5
7
- Tested up to: 2.9.2
8
 
9
 
10
  Track daily and total visits on your blog posts and display the count as well as popular posts.
@@ -29,6 +29,12 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
29
 
30
  == Changelog ==
31
 
 
 
 
 
 
 
32
  = 1.6.1 =
33
  * Turned the credit option to false by default. This setting won't effect current users.
34
  * Turned off borders on post thumbnails. You can customise the CSS class "tptn_thumb" to style the post thumbnail.
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 2.5
7
+ Tested up to: 2.9.3
8
 
9
 
10
  Track daily and total visits on your blog posts and display the count as well as popular posts.
29
 
30
  == Changelog ==
31
 
32
+ = 1.6.2 =
33
+ * Fixed: Multiple rows being created for same ID
34
+ * Fixed: Counter display
35
+ * Added: New button to clear the duplicate rows in the tables
36
+ * Fixed: Top 10 should be lighter on the server now
37
+
38
  = 1.6.1 =
39
  * Turned the credit option to false by default. This setting won't effect current users.
40
  * Turned off borders on post thumbnails. You can customise the CSS class "tptn_thumb" to style the post thumbnail.
top-10-addcount.js.php CHANGED
@@ -20,11 +20,11 @@ function tptn_inc_count() {
20
 
21
  $id = intval($_GET['top_ten_id']);
22
  if($id > 0) {
23
- $results = $wpdb->get_results("SELECT postnumber, cntaccess FROM $table_name WHERE postnumber = '$id'");
24
  $test = 0;
25
  if ($results) {
26
  foreach ($results as $result) {
27
- $wpdb->query("UPDATE $table_name SET cntaccess = cntaccess + 1 WHERE postnumber = $result->postnumber");
28
  $test = 1;
29
  }
30
  }
@@ -34,11 +34,11 @@ function tptn_inc_count() {
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;
39
  if ($results) {
40
  foreach ($results as $result) {
41
- $wpdb->query("UPDATE $top_ten_daily SET cntaccess = cntaccess + 1 WHERE postnumber = $result->postnumber AND dp_date = '$current_date' ");
42
  $test = 1;
43
  }
44
  }
@@ -48,4 +48,4 @@ function tptn_inc_count() {
48
  }
49
  }
50
 
51
- ?>
20
 
21
  $id = intval($_GET['top_ten_id']);
22
  if($id > 0) {
23
+ $results = $wpdb->get_results("SELECT postnumber, cntaccess FROM $table_name WHERE postnumber = '$id' LIMIT 1 ");
24
  $test = 0;
25
  if ($results) {
26
  foreach ($results as $result) {
27
+ $wpdb->query("UPDATE $table_name SET cntaccess = cntaccess + 1 WHERE postnumber = $result->postnumber LIMIT 1 ");
28
  $test = 1;
29
  }
30
  }
34
  // Now update daily count
35
  $current_date = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
36
 
37
+ $results = $wpdb->get_results("SELECT postnumber, cntaccess, dp_date FROM $top_ten_daily WHERE postnumber = '$id' AND dp_date = '$current_date' LIMIT 1 ");
38
  $test = 0;
39
  if ($results) {
40
  foreach ($results as $result) {
41
+ $wpdb->query("UPDATE $top_ten_daily SET cntaccess = cntaccess + 1 WHERE postnumber = $result->postnumber AND dp_date = '$current_date' LIMIT 1 ");
42
  $test = 1;
43
  }
44
  }
48
  }
49
  }
50
 
51
+ ?>
top-10-counter.js.php CHANGED
@@ -24,7 +24,7 @@ function tptn_disp_count() {
24
  if($id > 0) {
25
 
26
  $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
27
- $cntaccess = number_format((($resultscount) ? $resultscount->cntaccess : 0));
28
  $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
29
 
30
  // Now process daily count
24
  if($id > 0) {
25
 
26
  $resultscount = $wpdb->get_row("SELECT postnumber, cntaccess FROM ".$table_name." WHERE postnumber = ".$id);
27
+ $cntaccess = number_format((($resultscount) ? $resultscount->cntaccess : 1));
28
  $count_disp_form = str_replace("%totalcount%", $cntaccess, $count_disp_form);
29
 
30
  // Now process daily count
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.6.1
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.6.2
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
update-info.txt CHANGED
@@ -1,4 +1,5 @@
1
- * Turned the credit option to false by default. This setting won't effect current users.<br />
2
- * Turned off borders on post thumbnails. You can customise the CSS class "tptn_thumb" to style the post thumbnail.<br />
3
- * The plugin will now display a list of changes in the WordPress Admin > Plugins area whenever an update is available<br />
4
- * Fixed: Display of caching plugin compliant daily top posts lists
 
1
+ * Fixed: Multiple rows being created for same ID
2
+ * Fixed: Counter display
3
+ * Added: New button to clear the duplicate rows in the tables
4
+ * Fixed: Top 10 should be lighter on the server now
5
+