Top 10 – Popular posts plugin for WordPress - Version 1.8

Version Description

  • Added: Support for Video Thumbnails plugin
  • Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
  • Added: Option to display thumbnails before or after the title
  • Added: Option to not display thumbnails instead of the default thumbnail
  • Added: Counts are now neatly formatted with commas
  • Modified: Minor tweaks to improve performance
Download this release

Release Info

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

Code changes from version 1.7.6 to 1.8

admin.inc.php CHANGED
@@ -37,6 +37,7 @@ function tptn_options() {
37
  $tptn_settings[thumb_default] = $_POST['thumb_default'];
38
  $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
39
  $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
 
40
  $tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
41
  $tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
42
  $tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
@@ -235,14 +236,18 @@ function tptn_options() {
235
  <p>
236
  <label>
237
  <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
238
- <?php _e('Display thumbnails inline with posts',TPTN_LOCAL_NAME); ?></label>
239
  <br />
240
  <label>
241
- <input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_1" <?php if ($tptn_settings['post_thumb_op']=='thumbs_only') echo 'checked="checked"' ?> />
 
 
 
 
242
  <?php _e('Display only thumbnails, no text',TPTN_LOCAL_NAME); ?></label>
243
  <br />
244
  <label>
245
- <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_2" <?php if ($tptn_settings['post_thumb_op']=='text_only') echo 'checked="checked"' ?> />
246
  <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
247
  <br />
248
  </p>
@@ -269,7 +274,7 @@ function tptn_options() {
269
  <input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_height])); ?>" style="width:30px">px
270
  </label>
271
  </p>
272
- <p><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified below:',TPTN_LOCAL_NAME); ?>
273
  <input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_default])); ?>" style="width:500px">
274
  </p>
275
  <p>
@@ -310,9 +315,9 @@ function tptn_options() {
310
  <span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
311
  <div id="donate-form">
312
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
313
- <input type="hidden" name="cmd" value="_xclick">
314
- <input type="hidden" name="business" value="KGVN7LJLLZCMY">
315
- <input type="hidden" name="lc" value="IN">
316
  <input type="hidden" name="item_name" value="Donation for Top 10">
317
  <input type="hidden" name="item_number" value="tptn">
318
  <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
37
  $tptn_settings[thumb_default] = $_POST['thumb_default'];
38
  $tptn_settings[thumb_height] = intval($_POST['thumb_height']);
39
  $tptn_settings[thumb_width] = intval($_POST['thumb_width']);
40
+ $tptn_settings[thumb_default_show] = (($_POST['thumb_default_show']) ? true : false);
41
  $tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
42
  $tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
43
  $tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
236
  <p>
237
  <label>
238
  <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
239
+ <?php _e('Display thumbnails inline with posts, before title',TPTN_LOCAL_NAME); ?></label>
240
  <br />
241
  <label>
242
+ <input type="radio" name="post_thumb_op" value="after" id="post_thumb_op_1" <?php if ($tptn_settings['post_thumb_op']=='after') echo 'checked="checked"' ?> />
243
+ <?php _e('Display thumbnails inline with posts, after title',TPTN_LOCAL_NAME); ?></label>
244
+ <br />
245
+ <label>
246
+ <input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_2" <?php if ($tptn_settings['post_thumb_op']=='thumbs_only') echo 'checked="checked"' ?> />
247
  <?php _e('Display only thumbnails, no text',TPTN_LOCAL_NAME); ?></label>
248
  <br />
249
  <label>
250
+ <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ($tptn_settings['post_thumb_op']=='text_only') echo 'checked="checked"' ?> />
251
  <?php _e('Do not display thumbnails, only text.',TPTN_LOCAL_NAME); ?></label>
252
  <br />
253
  </p>
274
  <input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_height])); ?>" style="width:30px">px
275
  </label>
276
  </p>
277
+ <p><label><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings[thumb_default_show]) echo 'checked="checked"' ?> /> <?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></label><br />
278
  <input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(stripslashes($tptn_settings[thumb_default])); ?>" style="width:500px">
279
  </p>
280
  <p>
315
  <span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
316
  <div id="donate-form">
317
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
318
+ <input type="hidden" name="cmd" value="_donations">
319
+ <input type="hidden" name="business" value="donations@ajaydsouza.com">
320
+ <input type="hidden" name="lc" value="GB">
321
  <input type="hidden" name="item_name" value="Donation for Top 10">
322
  <input type="hidden" name="item_number" value="tptn">
323
  <strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
languages/tptn-az_AZ.mo CHANGED
Binary file
languages/tptn-az_AZ.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
@@ -15,319 +15,334 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:57
19
  msgid "Options saved successfully."
20
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
21
 
22
- #: admin.inc.php:66
23
  msgid "Options set to Default."
24
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
25
 
26
- #: admin.inc.php:72
27
  msgid "Top 10 popular posts reset"
28
  msgstr "10 populyar yazı statisticasını pozmaq"
29
 
30
- #: admin.inc.php:78
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
33
 
34
- #: admin.inc.php:85
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "Silinmiş dublikat sirası cədvəli"
37
 
38
- #: admin.inc.php:97
39
  msgid "Options:"
40
  msgstr "Opsiyalar:"
41
 
42
- #: admin.inc.php:102
43
  msgid "Format to display the count in: "
44
  msgstr "Miqdarı göstərən format:"
45
 
46
- #: admin.inc.php:106
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Ümumi baxılma sayının çıxartası üçün <code>%totalcount%</code>-dan istifadə edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
49
 
50
- #: admin.inc.php:109
51
  msgid "Number of popular posts to display: "
52
  msgstr "Populyar postların miqdarının nümayişi:"
53
 
54
- #: admin.inc.php:115
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
57
 
58
- #: admin.inc.php:122
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı saymaqda davam etdiriləcək."
61
 
62
- #: admin.inc.php:128
63
  msgid "Display number of views on posts?"
64
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
65
 
66
- #: admin.inc.php:134
67
  msgid "Display number of views on pages?"
68
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
69
 
70
- #: admin.inc.php:140
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
73
 
74
- #: admin.inc.php:146
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
77
 
78
- #: admin.inc.php:152
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
81
 
82
- #: admin.inc.php:158
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "WP-Admin-də baxilmış yazılarının/səhifələrinin miqdarını göstərmək lazımdır? Bundan ötrü ayrıca sütün wp-admin/edit.php əlavə olunacaq"
85
 
86
- #: admin.inc.php:164
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz onu qoyduğunuz halda Sizə çox minnətdar olardı!"
89
 
90
- #: admin.inc.php:168
91
  msgid "Output Options:"
92
  msgstr "Plaginin kökləmələri:"
93
 
94
- #: admin.inc.php:172
95
  msgid "Title of popular posts: "
96
  msgstr "Populyar yazılarının başlığı:"
97
 
98
- #: admin.inc.php:178
99
  msgid "Title of daily popular posts: "
100
  msgstr "Gündəlik populyual yazılışların başlığı:"
101
 
102
- #: admin.inc.php:185
103
  msgid "Show post excerpt in list?"
104
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
105
 
106
- #: admin.inc.php:190
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
109
 
110
- #: admin.inc.php:194
111
  msgid "Exclude Categories: "
112
  msgstr ""
113
 
114
- #: admin.inc.php:209
115
  msgid "Customize the output:"
116
  msgstr "Suiyahı formasının kökləmələri:"
117
 
118
- #: admin.inc.php:212
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
121
 
122
- #: admin.inc.php:218
123
  msgid "HTML to display before each list item: "
124
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
125
 
126
- #: admin.inc.php:224
127
  msgid "HTML to display after each list item: "
128
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
129
 
130
- #: admin.inc.php:230
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
133
 
134
- #: admin.inc.php:234
135
  msgid "Post thumbnail options:"
136
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
137
 
138
- #: admin.inc.php:238
139
- msgid "Display thumbnails inline with posts"
 
140
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
141
 
142
- #: admin.inc.php:242
 
 
 
 
 
143
  msgid "Display only thumbnails, no text"
144
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
145
 
146
- #: admin.inc.php:246
147
  msgid "Do not display thumbnails, only text."
148
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
149
 
150
- #: admin.inc.php:251
151
  msgid "Post thumbnail meta field (the meta should point to the image source): "
152
  msgstr "Əvvəlcədən baxışı çıxartmaq üçün sərbəst sahənin (meta sahənin) adını daxil edin:"
153
 
154
- #: admin.inc.php:258
155
  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"
156
  msgstr "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
157
 
158
- #: admin.inc.php:261
159
  msgid "Thumbnail dimensions:"
160
  msgstr "Çıxardılmış şəkilin ölçüləri (əvvəlcədən baxış):"
161
 
162
- #: admin.inc.php:263
163
  msgid "Max width: "
164
  msgstr "Maksimal eni:"
165
 
166
- #: admin.inc.php:268
167
  msgid "Max height: "
168
  msgstr "Maksimal hündürlük:"
169
 
170
- #: admin.inc.php:272
171
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
172
- msgstr "Plagin birinci növbədə yazışda əvvəlcədən baxış olmasını yoxlayacaq (yoxlama əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən baxış yoxdursan onda standard şəkil çıxarılacaq:"
173
-
174
  #: admin.inc.php:277
 
 
 
 
175
  msgid "Do you want to set options to Default?"
176
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
177
 
178
- #: admin.inc.php:280
179
  msgid "Reset count"
180
  msgstr "Statistikanı sbros etmək"
181
 
182
- #: admin.inc.php:283
183
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
184
  msgstr "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun ki, Sizin məlumat bazasının kopiyası var!"
185
 
186
- #: admin.inc.php:286
187
  msgid "Are you sure you want to reset the popular posts?"
188
  msgstr "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
189
 
190
- #: admin.inc.php:287
191
  msgid "Are you sure you want to reset the daily popular posts?"
192
  msgstr "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək istəyirsiniz?"
193
 
194
- #: admin.inc.php:288
195
  msgid "This will delete the duplicate entries in the tables. Proceed?"
196
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
197
 
198
- #: admin.inc.php:295
199
  msgid "Quick links"
200
  msgstr "Faydalı istenadlar"
201
 
202
- #: admin.inc.php:297
203
  msgid "Top 10 "
204
  msgstr "Top 10 yazılar"
205
 
206
- #: admin.inc.php:297
207
  msgid "plugin page"
208
  msgstr "plaginin səhifəsi"
209
 
210
- #: admin.inc.php:298
211
  msgid "Other plugins"
212
  msgstr "Digər plaginlər"
213
 
214
- #: admin.inc.php:299
215
  msgid "Ajay's blog"
216
  msgstr "Ajay-in blogu"
217
 
218
- #: admin.inc.php:300
219
- #: top-10.php:494
220
  msgid "Support"
221
  msgstr "Dəstək"
222
 
223
- #: admin.inc.php:301
224
  msgid "Follow @ajaydsouza on Twitter"
225
  msgstr "Twitter-də @ajaydsouza ardınca get "
226
 
227
- #: admin.inc.php:305
228
  msgid "Recent developments"
229
  msgstr "Son inkişaflar"
230
 
231
- #: admin.inc.php:310
232
  msgid "Support the development"
233
  msgstr "İnkişafı dəstək vermək"
234
 
235
- #: admin.inc.php:318
236
  msgid "Enter amount in USD: "
237
  msgstr "Miiqdarı USD ilə daxil et:"
238
 
239
- #: admin.inc.php:322
240
  msgid "Send your donation to the author of"
241
  msgstr "Müəlifə ianə göndərin "
242
 
243
- #: admin.inc.php:342
244
- #: admin.inc.php:367
245
- #: admin.inc.php:570
246
- #: top-10.php:266
247
- #: top-10.php:282
248
- #: top-10.php:453
249
- #: top-10.php:456
250
  msgid "Popular Posts"
251
  msgstr "Populyar yazılar"
252
 
253
- #: admin.inc.php:342
254
  msgid "Daily Popular Posts"
255
  msgstr "Gündəlik Populyar Yazılar"
256
 
257
- #: admin.inc.php:365
258
- #: admin.inc.php:367
259
  msgid "Top 10"
260
  msgstr "Top 10 yazılar"
261
 
262
- #: admin.inc.php:478
263
  msgid "Results"
264
  msgstr "Nəticələr"
265
 
266
- #: admin.inc.php:480
267
- #: admin.inc.php:486
268
  msgid "of"
269
  msgstr "-dən "
270
 
271
- #: admin.inc.php:484
272
  msgid "Page"
273
  msgstr "Səhifə"
274
 
275
- #: admin.inc.php:498
276
  msgid "View Daily Popular Posts"
277
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
278
 
279
- #: admin.inc.php:502
280
  msgid "View Overall Popular Posts"
281
  msgstr "Bütün Populyar Yazılara Baxmaq"
282
 
283
- #: admin.inc.php:506
284
  msgid "Results per-page:"
285
  msgstr "Səhifə üzrə nəticələr:"
286
 
287
- #: admin.inc.php:530
288
  msgid "Previous"
289
  msgstr "Əvvəlki"
290
 
291
- #: admin.inc.php:548
292
  msgid "Next"
293
  msgstr "Sonrakı"
294
 
295
- #: admin.inc.php:571
296
- #: top-10.php:227
297
- #: top-10.php:243
298
- #: top-10.php:454
299
- #: top-10.php:457
300
  msgid "Daily Popular"
301
  msgstr "Gündəlik Populyar"
302
 
303
- #: admin.inc.php:582
304
  msgid "Total / Today's Views"
305
  msgstr "Ümümi/ Bu günkü baxış"
306
 
307
- #: top-10.php:226
308
  msgid "Display the posts popular today"
309
  msgstr ""
310
 
311
- #: top-10.php:265
312
  msgid "Display the posts popular this week"
313
  msgstr ""
314
 
315
- #: top-10.php:295
316
  msgid "<h3>Popular Posts</h3>"
317
  msgstr "<h3>Populyar yazılar</h3>"
318
 
319
- #: top-10.php:296
320
  msgid "<h3>Daily Popular</h3>"
321
  msgstr "<h3>Gündəlik Populyar</h3>"
322
 
323
- #: top-10.php:493
324
  msgid "Settings"
325
  msgstr "Kökləmələr"
326
 
327
- #: top-10.php:495
328
  msgid "Donate"
329
  msgstr "İanə etmək"
330
 
 
 
 
 
 
 
 
 
 
331
  #~ msgid "Support forum"
332
  #~ msgstr "Dəstək forumu"
333
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Opsiyalar müvəffəqiyyətlə yaddaşda saxlanılıb."
21
 
22
+ #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Opsiyalalr standard opsiyasına qaytarılıb."
25
 
26
+ #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "10 populyar yazı statisticasını pozmaq"
29
 
30
+ #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "10 gündəlik populyar yazı statisticasını pozmaq"
33
 
34
+ #: admin.inc.php:86
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "Silinmiş dublikat sirası cədvəli"
37
 
38
+ #: admin.inc.php:98
39
  msgid "Options:"
40
  msgstr "Opsiyalar:"
41
 
42
+ #: admin.inc.php:103
43
  msgid "Format to display the count in: "
44
  msgstr "Miqdarı göstərən format:"
45
 
46
+ #: admin.inc.php:107
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Ümumi baxılma sayının çıxartası üçün <code>%totalcount%</code>-dan istifadə edin, <code>%dailycount%</code> - gün ərzində baxılmış. Məsələn: <code>(Yazı 123 dəfə baxılıb, bu gün 23 dəfə baxılmışdır)</code>."
49
 
50
+ #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Populyar postların miqdarının nümayişi:"
53
 
54
+ #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "Gündəlik Populyar yazılar neçə gün ərzində baxılışı özündə əks etdirməlidir?"
57
 
58
+ #: admin.inc.php:123
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Populyar yazılışdan Səhifələri çıxartmaq lazımdır? Səhifəlrin baxılışı saymaqda davam etdiriləcək."
61
 
62
+ #: admin.inc.php:129
63
  msgid "Display number of views on posts?"
64
  msgstr "Posta baxılmasının miqdarını göstərmək lazımdır?"
65
 
66
+ #: admin.inc.php:135
67
  msgid "Display number of views on pages?"
68
  msgstr "Səhifədə baxılmasının miqdarını göstərmək lazımdır?"
69
 
70
+ #: admin.inc.php:141
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Müəllif tərəfindən edilmiş yazıları nəzərə almaq lazımdır?"
73
 
74
+ #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Populyar siyahıda baxılmış səhifənin miqdarını göstərmək lazımdır? "
77
 
78
+ #: admin.inc.php:153
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Polulyar yazılışları siyahını dinamik etmək lazımdır? Bu opsiya JavaScript-i istifadə edir və bu səhifənin yükləmə vaxtını uzada bilər"
81
 
82
+ #: admin.inc.php:159
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "WP-Admin-də baxilmış yazılarının/səhifələrinin miqdarını göstərmək lazımdır? Bundan ötrü ayrıca sütün wp-admin/edit.php əlavə olunacaq"
85
 
86
+ #: admin.inc.php:165
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Popyulyar siyahının altnda ssılkanı qoymaq lazımdır? Plaginin müəllifi Siz onu qoyduğunuz halda Sizə çox minnətdar olardı!"
89
 
90
+ #: admin.inc.php:169
91
  msgid "Output Options:"
92
  msgstr "Plaginin kökləmələri:"
93
 
94
+ #: admin.inc.php:173
95
  msgid "Title of popular posts: "
96
  msgstr "Populyar yazılarının başlığı:"
97
 
98
+ #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Gündəlik populyual yazılışların başlığı:"
101
 
102
+ #: admin.inc.php:186
103
  msgid "Show post excerpt in list?"
104
  msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
105
 
106
+ #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Çıxardılmış mətnin uzunluğu (söz ilə):"
109
 
110
+ #: admin.inc.php:195
111
  msgid "Exclude Categories: "
112
  msgstr ""
113
 
114
+ #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Suiyahı formasının kökləmələri:"
117
 
118
+ #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "Siyahıdan qabaq istifadə edilən HTML-teqi:"
121
 
122
+ #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "Siyahıda hər maddənin qabağında istifadə edilən HTML-teqi:"
125
 
126
+ #: admin.inc.php:225
127
  msgid "HTML to display after each list item: "
128
  msgstr "Siyahıda hər maddədən sonra istifadə edilən HTML-teqi: "
129
 
130
+ #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "Siyahıdan sonra istifadə edilən HTML-teqi:"
133
 
134
+ #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
137
 
138
+ #: admin.inc.php:239
139
+ #, fuzzy
140
+ msgid "Display thumbnails inline with posts, before title"
141
  msgstr "Mətni və əvvəlcədən baxışı göstərmək"
142
 
143
+ #: admin.inc.php:243
144
+ #, fuzzy
145
+ msgid "Display thumbnails inline with posts, after title"
146
+ msgstr "Mətni və əvvəlcədən baxışı göstərmək"
147
+
148
+ #: admin.inc.php:247
149
  msgid "Display only thumbnails, no text"
150
  msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
151
 
152
+ #: admin.inc.php:251
153
  msgid "Do not display thumbnails, only text."
154
  msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
155
 
156
+ #: admin.inc.php:256
157
  msgid "Post thumbnail meta field (the meta should point to the image source): "
158
  msgstr "Əvvəlcədən baxışı çıxartmaq üçün sərbəst sahənin (meta sahənin) adını daxil edin:"
159
 
160
+ #: admin.inc.php:263
161
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
162
  msgstr "Əgər meta-sahənin adı təyin olunmayıbsa, onda plagin yazılışda olan birinci şəkilil çıxardacaq. Balaca kopyasını yaradılması ilə əlaqədar olaraq bu birinci dəfə şəkilin yükləməsini bir az uzada bilər. "
163
 
164
+ #: admin.inc.php:266
165
  msgid "Thumbnail dimensions:"
166
  msgstr "Çıxardılmış şəkilin ölçüləri (əvvəlcədən baxış):"
167
 
168
+ #: admin.inc.php:268
169
  msgid "Max width: "
170
  msgstr "Maksimal eni:"
171
 
172
+ #: admin.inc.php:273
173
  msgid "Max height: "
174
  msgstr "Maksimal hündürlük:"
175
 
 
 
 
 
176
  #: admin.inc.php:277
177
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
178
+ msgstr ""
179
+
180
+ #: admin.inc.php:282
181
  msgid "Do you want to set options to Default?"
182
  msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
183
 
184
+ #: admin.inc.php:285
185
  msgid "Reset count"
186
  msgstr "Statistikanı sbros etmək"
187
 
188
+ #: admin.inc.php:288
189
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
190
  msgstr "Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun ki, Sizin məlumat bazasının kopiyası var!"
191
 
192
+ #: admin.inc.php:291
193
  msgid "Are you sure you want to reset the popular posts?"
194
  msgstr "Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
195
 
196
+ #: admin.inc.php:292
197
  msgid "Are you sure you want to reset the daily popular posts?"
198
  msgstr "Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək istəyirsiniz?"
199
 
200
+ #: admin.inc.php:293
201
  msgid "This will delete the duplicate entries in the tables. Proceed?"
202
  msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
203
 
204
+ #: admin.inc.php:300
205
  msgid "Quick links"
206
  msgstr "Faydalı istenadlar"
207
 
208
+ #: admin.inc.php:302
209
  msgid "Top 10 "
210
  msgstr "Top 10 yazılar"
211
 
212
+ #: admin.inc.php:302
213
  msgid "plugin page"
214
  msgstr "plaginin səhifəsi"
215
 
216
+ #: admin.inc.php:303
217
  msgid "Other plugins"
218
  msgstr "Digər plaginlər"
219
 
220
+ #: admin.inc.php:304
221
  msgid "Ajay's blog"
222
  msgstr "Ajay-in blogu"
223
 
224
+ #: admin.inc.php:305
225
+ #: top-10.php:515
226
  msgid "Support"
227
  msgstr "Dəstək"
228
 
229
+ #: admin.inc.php:306
230
  msgid "Follow @ajaydsouza on Twitter"
231
  msgstr "Twitter-də @ajaydsouza ardınca get "
232
 
233
+ #: admin.inc.php:310
234
  msgid "Recent developments"
235
  msgstr "Son inkişaflar"
236
 
237
+ #: admin.inc.php:315
238
  msgid "Support the development"
239
  msgstr "İnkişafı dəstək vermək"
240
 
241
+ #: admin.inc.php:323
242
  msgid "Enter amount in USD: "
243
  msgstr "Miiqdarı USD ilə daxil et:"
244
 
245
+ #: admin.inc.php:327
246
  msgid "Send your donation to the author of"
247
  msgstr "Müəlifə ianə göndərin "
248
 
249
+ #: admin.inc.php:347
250
+ #: admin.inc.php:372
251
+ #: admin.inc.php:575
252
+ #: top-10.php:257
253
+ #: top-10.php:273
254
+ #: top-10.php:445
255
+ #: top-10.php:448
256
  msgid "Popular Posts"
257
  msgstr "Populyar yazılar"
258
 
259
+ #: admin.inc.php:347
260
  msgid "Daily Popular Posts"
261
  msgstr "Gündəlik Populyar Yazılar"
262
 
263
+ #: admin.inc.php:370
264
+ #: admin.inc.php:372
265
  msgid "Top 10"
266
  msgstr "Top 10 yazılar"
267
 
268
+ #: admin.inc.php:483
269
  msgid "Results"
270
  msgstr "Nəticələr"
271
 
272
+ #: admin.inc.php:485
273
+ #: admin.inc.php:491
274
  msgid "of"
275
  msgstr "-dən "
276
 
277
+ #: admin.inc.php:489
278
  msgid "Page"
279
  msgstr "Səhifə"
280
 
281
+ #: admin.inc.php:503
282
  msgid "View Daily Popular Posts"
283
  msgstr "Gündəlik Populyar Yazılara Baxmaq"
284
 
285
+ #: admin.inc.php:507
286
  msgid "View Overall Popular Posts"
287
  msgstr "Bütün Populyar Yazılara Baxmaq"
288
 
289
+ #: admin.inc.php:511
290
  msgid "Results per-page:"
291
  msgstr "Səhifə üzrə nəticələr:"
292
 
293
+ #: admin.inc.php:535
294
  msgid "Previous"
295
  msgstr "Əvvəlki"
296
 
297
+ #: admin.inc.php:553
298
  msgid "Next"
299
  msgstr "Sonrakı"
300
 
301
+ #: admin.inc.php:576
302
+ #: top-10.php:219
303
+ #: top-10.php:235
304
+ #: top-10.php:446
305
+ #: top-10.php:449
306
  msgid "Daily Popular"
307
  msgstr "Gündəlik Populyar"
308
 
309
+ #: admin.inc.php:587
310
  msgid "Total / Today's Views"
311
  msgstr "Ümümi/ Bu günkü baxış"
312
 
313
+ #: top-10.php:218
314
  msgid "Display the posts popular today"
315
  msgstr ""
316
 
317
+ #: top-10.php:256
318
  msgid "Display the posts popular this week"
319
  msgstr ""
320
 
321
+ #: top-10.php:286
322
  msgid "<h3>Popular Posts</h3>"
323
  msgstr "<h3>Populyar yazılar</h3>"
324
 
325
+ #: top-10.php:287
326
  msgid "<h3>Daily Popular</h3>"
327
  msgstr "<h3>Gündəlik Populyar</h3>"
328
 
329
+ #: top-10.php:514
330
  msgid "Settings"
331
  msgstr "Kökləmələr"
332
 
333
+ #: top-10.php:516
334
  msgid "Donate"
335
  msgstr "İanə etmək"
336
 
337
+ #~ msgid ""
338
+ #~ "The plugin will first check if the post contains a thumbnail. If it "
339
+ #~ "doesn't then it will check the meta field. If this is not available, then "
340
+ #~ "it will show the default image as specified below:"
341
+ #~ msgstr ""
342
+ #~ "Plagin birinci növbədə yazışda əvvəlcədən baxış olmasını yoxlayacaq "
343
+ #~ "(yoxlama əvvəlcədən verilmiş sərbəst meta-sahə üzrə). Agər əvvəlcədən "
344
+ #~ "baxış yoxdursan onda standard şəkil çıxarılacaq:"
345
+
346
  #~ msgid "Support forum"
347
  #~ msgstr "Dəstək forumu"
348
 
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: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
@@ -15,324 +15,329 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:57
19
  msgid "Options saved successfully."
20
  msgstr "Налады захаваны."
21
 
22
- #: admin.inc.php:66
23
  msgid "Options set to Default."
24
  msgstr "Налады скінуты."
25
 
26
- #: admin.inc.php:72
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Загаловак блока Папулярных запісаў:"
30
 
31
- #: admin.inc.php:78
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Загаловак блока Папулярных сёння запісаў:"
35
 
36
- #: admin.inc.php:85
37
  msgid "Tables cleaned of duplicate rows"
38
  msgstr ""
39
 
40
- #: admin.inc.php:97
41
  msgid "Options:"
42
  msgstr "Налады ўбудовы:"
43
 
44
- #: admin.inc.php:102
45
  msgid "Format to display the count in: "
46
  msgstr "Фармат адлюстравання колькасці праглядаў:"
47
 
48
- #: admin.inc.php:106
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:109
53
  msgid "Number of popular posts to display: "
54
  msgstr "Колькасць Папулярных запісаў у спісе:"
55
 
56
- #: admin.inc.php:115
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
59
 
60
- #: admin.inc.php:122
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:128
65
  msgid "Display number of views on posts?"
66
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
67
 
68
- #: admin.inc.php:134
69
  msgid "Display number of views on pages?"
70
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
71
 
72
- #: admin.inc.php:140
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
75
 
76
- #: admin.inc.php:146
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
79
 
80
- #: admin.inc.php:152
81
  #, fuzzy
82
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
  msgstr "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , і гэта можа павялічыць час загрузкі старонак"
84
 
85
- #: admin.inc.php:158
86
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
  msgstr "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага будзе дададзена асобная калонка"
88
 
89
- #: admin.inc.php:164
90
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
  msgstr "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
92
 
93
- #: admin.inc.php:168
94
  #, fuzzy
95
  msgid "Output Options:"
96
  msgstr "Налады ўбудовы:"
97
 
98
- #: admin.inc.php:172
99
  msgid "Title of popular posts: "
100
  msgstr "Загаловак блока Папулярных запісаў:"
101
 
102
- #: admin.inc.php:178
103
  msgid "Title of daily popular posts: "
104
  msgstr "Загаловак блока Папулярных сёння запісаў:"
105
 
106
- #: admin.inc.php:185
107
  msgid "Show post excerpt in list?"
108
  msgstr ""
109
 
110
- #: admin.inc.php:190
111
  msgid "Length of excerpt (in words): "
112
  msgstr ""
113
 
114
- #: admin.inc.php:194
115
  msgid "Exclude Categories: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:209
119
  msgid "Customize the output:"
120
  msgstr ""
121
 
122
- #: admin.inc.php:212
123
  msgid "HTML to display before the list of posts: "
124
  msgstr ""
125
 
126
- #: admin.inc.php:218
127
  msgid "HTML to display before each list item: "
128
  msgstr ""
129
 
130
- #: admin.inc.php:224
131
  #, fuzzy
132
  msgid "HTML to display after each list item: "
133
  msgstr "Фармат адлюстравання колькасці праглядаў:"
134
 
135
- #: admin.inc.php:230
136
  msgid "HTML to display after the list of posts: "
137
  msgstr ""
138
 
139
- #: admin.inc.php:234
140
  msgid "Post thumbnail options:"
141
  msgstr ""
142
 
143
- #: admin.inc.php:238
144
  #, fuzzy
145
- msgid "Display thumbnails inline with posts"
146
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
147
 
148
- #: admin.inc.php:242
 
 
 
 
 
149
  msgid "Display only thumbnails, no text"
150
  msgstr ""
151
 
152
- #: admin.inc.php:246
153
  msgid "Do not display thumbnails, only text."
154
  msgstr ""
155
 
156
- #: admin.inc.php:251
157
  msgid "Post thumbnail meta field (the meta should point to the image source): "
158
  msgstr ""
159
 
160
- #: admin.inc.php:258
161
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
162
  msgstr ""
163
 
164
- #: admin.inc.php:261
165
  msgid "Thumbnail dimensions:"
166
  msgstr ""
167
 
168
- #: admin.inc.php:263
169
  msgid "Max width: "
170
  msgstr ""
171
 
172
- #: admin.inc.php:268
173
  msgid "Max height: "
174
  msgstr ""
175
 
176
- #: admin.inc.php:272
177
- 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:"
178
  msgstr ""
179
 
180
- #: admin.inc.php:277
181
  msgid "Do you want to set options to Default?"
182
  msgstr "Скінуць налады ўбудовы?"
183
 
184
- #: admin.inc.php:280
185
  msgid "Reset count"
186
  msgstr ""
187
 
188
- #: admin.inc.php:283
189
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
190
  msgstr ""
191
 
192
- #: admin.inc.php:286
193
  msgid "Are you sure you want to reset the popular posts?"
194
  msgstr ""
195
 
196
- #: admin.inc.php:287
197
  msgid "Are you sure you want to reset the daily popular posts?"
198
  msgstr ""
199
 
200
- #: admin.inc.php:288
201
  msgid "This will delete the duplicate entries in the tables. Proceed?"
202
  msgstr ""
203
 
204
- #: admin.inc.php:295
205
  msgid "Quick links"
206
  msgstr ""
207
 
208
- #: admin.inc.php:297
209
  #, fuzzy
210
  msgid "Top 10 "
211
  msgstr "Топ 10 запісаў"
212
 
213
- #: admin.inc.php:297
214
  msgid "plugin page"
215
  msgstr ""
216
 
217
- #: admin.inc.php:298
218
  msgid "Other plugins"
219
  msgstr ""
220
 
221
- #: admin.inc.php:299
222
  msgid "Ajay's blog"
223
  msgstr ""
224
 
225
- #: admin.inc.php:300
226
- #: top-10.php:494
227
  msgid "Support"
228
  msgstr ""
229
 
230
- #: admin.inc.php:301
231
  msgid "Follow @ajaydsouza on Twitter"
232
  msgstr ""
233
 
234
- #: admin.inc.php:305
235
  msgid "Recent developments"
236
  msgstr ""
237
 
238
- #: admin.inc.php:310
239
  #, fuzzy
240
  msgid "Support the development"
241
  msgstr "Падтрымаеце стваральніка ўбудовы"
242
 
243
- #: admin.inc.php:318
244
  msgid "Enter amount in USD: "
245
  msgstr ""
246
 
247
- #: admin.inc.php:322
248
  msgid "Send your donation to the author of"
249
  msgstr ""
250
 
251
- #: admin.inc.php:342
252
- #: admin.inc.php:367
253
- #: admin.inc.php:570
254
- #: top-10.php:266
255
- #: top-10.php:282
256
- #: top-10.php:453
257
- #: top-10.php:456
258
  msgid "Popular Posts"
259
  msgstr "Папулярныя запісы"
260
 
261
- #: admin.inc.php:342
262
  msgid "Daily Popular Posts"
263
  msgstr "Папулярныя сёння запісы"
264
 
265
- #: admin.inc.php:365
266
- #: admin.inc.php:367
267
  msgid "Top 10"
268
  msgstr "Топ 10 запісаў"
269
 
270
- #: admin.inc.php:478
271
  msgid "Results"
272
  msgstr "Вынікі"
273
 
274
- #: admin.inc.php:480
275
- #: admin.inc.php:486
276
  msgid "of"
277
  msgstr "з"
278
 
279
- #: admin.inc.php:484
280
  msgid "Page"
281
  msgstr "Старонка"
282
 
283
- #: admin.inc.php:498
284
  msgid "View Daily Popular Posts"
285
  msgstr "Паглядзець усе Папулярныя сёння запісы"
286
 
287
- #: admin.inc.php:502
288
  msgid "View Overall Popular Posts"
289
  msgstr "Паглядзець усе Папулярныя запісы"
290
 
291
- #: admin.inc.php:506
292
  msgid "Results per-page:"
293
  msgstr "Вынікаў на старонку:"
294
 
295
- #: admin.inc.php:530
296
  msgid "Previous"
297
  msgstr "Папярэдняя старонка"
298
 
299
- #: admin.inc.php:548
300
  msgid "Next"
301
  msgstr "Наступная старонка"
302
 
303
- #: admin.inc.php:571
304
- #: top-10.php:227
305
- #: top-10.php:243
306
- #: top-10.php:454
307
- #: top-10.php:457
308
  msgid "Daily Popular"
309
  msgstr "Папулярныя сёння запісы"
310
 
311
- #: admin.inc.php:582
312
  msgid "Total / Today's Views"
313
  msgstr "Усяго / Сёння праглядаў"
314
 
315
- #: top-10.php:226
316
  msgid "Display the posts popular today"
317
  msgstr ""
318
 
319
- #: top-10.php:265
320
  msgid "Display the posts popular this week"
321
  msgstr ""
322
 
323
- #: top-10.php:295
324
  msgid "<h3>Popular Posts</h3>"
325
  msgstr "<h3>Папулярныя запісы</h3>"
326
 
327
- #: top-10.php:296
328
  msgid "<h3>Daily Popular</h3>"
329
  msgstr "<h3>Папулярныя сёння запісы</h3>"
330
 
331
- #: top-10.php:493
332
  msgid "Settings"
333
  msgstr ""
334
 
335
- #: top-10.php:495
336
  msgid "Donate"
337
  msgstr ""
338
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: FatCow <zhr@tut.by>\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Налады захаваны."
21
 
22
+ #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Налады скінуты."
25
 
26
+ #: admin.inc.php:73
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Загаловак блока Папулярных запісаў:"
30
 
31
+ #: admin.inc.php:79
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Загаловак блока Папулярных сёння запісаў:"
35
 
36
+ #: admin.inc.php:86
37
  msgid "Tables cleaned of duplicate rows"
38
  msgstr ""
39
 
40
+ #: admin.inc.php:98
41
  msgid "Options:"
42
  msgstr "Налады ўбудовы:"
43
 
44
+ #: admin.inc.php:103
45
  msgid "Format to display the count in: "
46
  msgstr "Фармат адлюстравання колькасці праглядаў:"
47
 
48
+ #: admin.inc.php:107
49
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
  msgstr "Выкарыстоўвайце <code>%totalcount%</code> каб паказваць агульны лік праглядаў, а <code>%dailycount%</code> - прагляды за суткі. Напрыклад: <code>(Прагледжана 123 раз, 23 разу прагляду сёння)</code>"
51
 
52
+ #: admin.inc.php:110
53
  msgid "Number of popular posts to display: "
54
  msgstr "Колькасць Папулярных запісаў у спісе:"
55
 
56
+ #: admin.inc.php:116
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
59
 
60
+ #: admin.inc.php:123
61
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
  msgstr "Выключыць старонкі са спісу Папулярных запісаў? Колькасць праглядаў для старонак будзе падлічвацца."
63
 
64
+ #: admin.inc.php:129
65
  msgid "Display number of views on posts?"
66
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
67
 
68
+ #: admin.inc.php:135
69
  msgid "Display number of views on pages?"
70
  msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
71
 
72
+ #: admin.inc.php:141
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
75
 
76
+ #: admin.inc.php:147
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
79
 
80
+ #: admin.inc.php:153
81
  #, fuzzy
82
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
  msgstr "Зрабіць спіс Папулярных запісаў дынамічным? Опцыя выкарыстоўвае JavaScript , і гэта можа павялічыць час загрузкі старонак"
84
 
85
+ #: admin.inc.php:159
86
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
  msgstr "Адлюстроўваць колькасць праглядаў запісаў/старонак у админке? Для гэтага будзе дададзена асобная калонка"
88
 
89
+ #: admin.inc.php:165
90
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
  msgstr "Спасылка на ўбудову будзе дададзена да спісаў Папулярных запісаў. Мы будзем удзячныя Вам, калі Вы яе ўсё ж пакінеце!"
92
 
93
+ #: admin.inc.php:169
94
  #, fuzzy
95
  msgid "Output Options:"
96
  msgstr "Налады ўбудовы:"
97
 
98
+ #: admin.inc.php:173
99
  msgid "Title of popular posts: "
100
  msgstr "Загаловак блока Папулярных запісаў:"
101
 
102
+ #: admin.inc.php:179
103
  msgid "Title of daily popular posts: "
104
  msgstr "Загаловак блока Папулярных сёння запісаў:"
105
 
106
+ #: admin.inc.php:186
107
  msgid "Show post excerpt in list?"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:191
111
  msgid "Length of excerpt (in words): "
112
  msgstr ""
113
 
114
+ #: admin.inc.php:195
115
  msgid "Exclude Categories: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:210
119
  msgid "Customize the output:"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:213
123
  msgid "HTML to display before the list of posts: "
124
  msgstr ""
125
 
126
+ #: admin.inc.php:219
127
  msgid "HTML to display before each list item: "
128
  msgstr ""
129
 
130
+ #: admin.inc.php:225
131
  #, fuzzy
132
  msgid "HTML to display after each list item: "
133
  msgstr "Фармат адлюстравання колькасці праглядаў:"
134
 
135
+ #: admin.inc.php:231
136
  msgid "HTML to display after the list of posts: "
137
  msgstr ""
138
 
139
+ #: admin.inc.php:235
140
  msgid "Post thumbnail options:"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:239
144
  #, fuzzy
145
+ msgid "Display thumbnails inline with posts, before title"
146
  msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
147
 
148
+ #: admin.inc.php:243
149
+ #, fuzzy
150
+ msgid "Display thumbnails inline with posts, after title"
151
+ msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
152
+
153
+ #: admin.inc.php:247
154
  msgid "Display only thumbnails, no text"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:251
158
  msgid "Do not display thumbnails, only text."
159
  msgstr ""
160
 
161
+ #: admin.inc.php:256
162
  msgid "Post thumbnail meta field (the meta should point to the image source): "
163
  msgstr ""
164
 
165
+ #: admin.inc.php:263
166
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:266
170
  msgid "Thumbnail dimensions:"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:268
174
  msgid "Max width: "
175
  msgstr ""
176
 
177
+ #: admin.inc.php:273
178
  msgid "Max height: "
179
  msgstr ""
180
 
181
+ #: admin.inc.php:277
182
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
183
  msgstr ""
184
 
185
+ #: admin.inc.php:282
186
  msgid "Do you want to set options to Default?"
187
  msgstr "Скінуць налады ўбудовы?"
188
 
189
+ #: admin.inc.php:285
190
  msgid "Reset count"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:288
194
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:291
198
  msgid "Are you sure you want to reset the popular posts?"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:292
202
  msgid "Are you sure you want to reset the daily popular posts?"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:293
206
  msgid "This will delete the duplicate entries in the tables. Proceed?"
207
  msgstr ""
208
 
209
+ #: admin.inc.php:300
210
  msgid "Quick links"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:302
214
  #, fuzzy
215
  msgid "Top 10 "
216
  msgstr "Топ 10 запісаў"
217
 
218
+ #: admin.inc.php:302
219
  msgid "plugin page"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:303
223
  msgid "Other plugins"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:304
227
  msgid "Ajay's blog"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:305
231
+ #: top-10.php:515
232
  msgid "Support"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:306
236
  msgid "Follow @ajaydsouza on Twitter"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:310
240
  msgid "Recent developments"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:315
244
  #, fuzzy
245
  msgid "Support the development"
246
  msgstr "Падтрымаеце стваральніка ўбудовы"
247
 
248
+ #: admin.inc.php:323
249
  msgid "Enter amount in USD: "
250
  msgstr ""
251
 
252
+ #: admin.inc.php:327
253
  msgid "Send your donation to the author of"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:347
257
+ #: admin.inc.php:372
258
+ #: admin.inc.php:575
259
+ #: top-10.php:257
260
+ #: top-10.php:273
261
+ #: top-10.php:445
262
+ #: top-10.php:448
263
  msgid "Popular Posts"
264
  msgstr "Папулярныя запісы"
265
 
266
+ #: admin.inc.php:347
267
  msgid "Daily Popular Posts"
268
  msgstr "Папулярныя сёння запісы"
269
 
270
+ #: admin.inc.php:370
271
+ #: admin.inc.php:372
272
  msgid "Top 10"
273
  msgstr "Топ 10 запісаў"
274
 
275
+ #: admin.inc.php:483
276
  msgid "Results"
277
  msgstr "Вынікі"
278
 
279
+ #: admin.inc.php:485
280
+ #: admin.inc.php:491
281
  msgid "of"
282
  msgstr "з"
283
 
284
+ #: admin.inc.php:489
285
  msgid "Page"
286
  msgstr "Старонка"
287
 
288
+ #: admin.inc.php:503
289
  msgid "View Daily Popular Posts"
290
  msgstr "Паглядзець усе Папулярныя сёння запісы"
291
 
292
+ #: admin.inc.php:507
293
  msgid "View Overall Popular Posts"
294
  msgstr "Паглядзець усе Папулярныя запісы"
295
 
296
+ #: admin.inc.php:511
297
  msgid "Results per-page:"
298
  msgstr "Вынікаў на старонку:"
299
 
300
+ #: admin.inc.php:535
301
  msgid "Previous"
302
  msgstr "Папярэдняя старонка"
303
 
304
+ #: admin.inc.php:553
305
  msgid "Next"
306
  msgstr "Наступная старонка"
307
 
308
+ #: admin.inc.php:576
309
+ #: top-10.php:219
310
+ #: top-10.php:235
311
+ #: top-10.php:446
312
+ #: top-10.php:449
313
  msgid "Daily Popular"
314
  msgstr "Папулярныя сёння запісы"
315
 
316
+ #: admin.inc.php:587
317
  msgid "Total / Today's Views"
318
  msgstr "Усяго / Сёння праглядаў"
319
 
320
+ #: top-10.php:218
321
  msgid "Display the posts popular today"
322
  msgstr ""
323
 
324
+ #: top-10.php:256
325
  msgid "Display the posts popular this week"
326
  msgstr ""
327
 
328
+ #: top-10.php:286
329
  msgid "<h3>Popular Posts</h3>"
330
  msgstr "<h3>Папулярныя запісы</h3>"
331
 
332
+ #: top-10.php:287
333
  msgid "<h3>Daily Popular</h3>"
334
  msgstr "<h3>Папулярныя сёння запісы</h3>"
335
 
336
+ #: top-10.php:514
337
  msgid "Settings"
338
  msgstr ""
339
 
340
+ #: top-10.php:516
341
  msgid "Donate"
342
  msgstr ""
343
 
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: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -14,316 +14,320 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:57
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:66
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:72
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:78
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:85
34
  msgid "Tables cleaned of duplicate rows"
35
  msgstr ""
36
 
37
- #: admin.inc.php:97
38
  msgid "Options:"
39
  msgstr ""
40
 
41
- #: admin.inc.php:102
42
  msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
- #: admin.inc.php:106
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:109
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
- #: admin.inc.php:115
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
- #: admin.inc.php:122
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:128
62
  msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
- #: admin.inc.php:134
66
  msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
- #: admin.inc.php:140
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
- #: admin.inc.php:146
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
- #: admin.inc.php:152
78
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
- #: admin.inc.php:158
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:164
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:168
90
  msgid "Output Options:"
91
  msgstr ""
92
 
93
- #: admin.inc.php:172
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
- #: admin.inc.php:178
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
- #: admin.inc.php:185
102
  msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
- #: admin.inc.php:190
106
  msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
- #: admin.inc.php:194
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
- #: admin.inc.php:209
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
- #: admin.inc.php:212
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
- #: admin.inc.php:218
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
125
- #: admin.inc.php:224
126
  msgid "HTML to display after each list item: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:230
130
  msgid "HTML to display after the list of posts: "
131
  msgstr ""
132
 
133
- #: admin.inc.php:234
134
  msgid "Post thumbnail options:"
135
  msgstr ""
136
 
137
- #: admin.inc.php:238
138
- msgid "Display thumbnails inline with posts"
139
  msgstr ""
140
 
141
- #: admin.inc.php:242
 
 
 
 
142
  msgid "Display only thumbnails, no text"
143
  msgstr ""
144
 
145
- #: admin.inc.php:246
146
  msgid "Do not display thumbnails, only text."
147
  msgstr ""
148
 
149
- #: admin.inc.php:251
150
  msgid "Post thumbnail meta field (the meta should point to the image source): "
151
  msgstr ""
152
 
153
- #: admin.inc.php:258
154
  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"
155
  msgstr ""
156
 
157
- #: admin.inc.php:261
158
  msgid "Thumbnail dimensions:"
159
  msgstr ""
160
 
161
- #: admin.inc.php:263
162
  msgid "Max width: "
163
  msgstr ""
164
 
165
- #: admin.inc.php:268
166
  msgid "Max height: "
167
  msgstr ""
168
 
169
- #: admin.inc.php:272
170
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
171
  msgstr ""
172
 
173
- #: admin.inc.php:277
174
  msgid "Do you want to set options to Default?"
175
  msgstr ""
176
 
177
- #: admin.inc.php:280
178
  msgid "Reset count"
179
  msgstr ""
180
 
181
- #: admin.inc.php:283
182
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
183
  msgstr ""
184
 
185
- #: admin.inc.php:286
186
  msgid "Are you sure you want to reset the popular posts?"
187
  msgstr ""
188
 
189
- #: admin.inc.php:287
190
  msgid "Are you sure you want to reset the daily popular posts?"
191
  msgstr ""
192
 
193
- #: admin.inc.php:288
194
  msgid "This will delete the duplicate entries in the tables. Proceed?"
195
  msgstr ""
196
 
197
- #: admin.inc.php:295
198
  msgid "Quick links"
199
  msgstr ""
200
 
201
- #: admin.inc.php:297
202
  msgid "Top 10 "
203
  msgstr ""
204
 
205
- #: admin.inc.php:297
206
  msgid "plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:298
210
  msgid "Other plugins"
211
  msgstr ""
212
 
213
- #: admin.inc.php:299
214
  msgid "Ajay's blog"
215
  msgstr ""
216
 
217
- #: admin.inc.php:300
218
- #: top-10.php:494
219
  msgid "Support"
220
  msgstr ""
221
 
222
- #: admin.inc.php:301
223
  msgid "Follow @ajaydsouza on Twitter"
224
  msgstr ""
225
 
226
- #: admin.inc.php:305
227
  msgid "Recent developments"
228
  msgstr ""
229
 
230
- #: admin.inc.php:310
231
  msgid "Support the development"
232
  msgstr ""
233
 
234
- #: admin.inc.php:318
235
  msgid "Enter amount in USD: "
236
  msgstr ""
237
 
238
- #: admin.inc.php:322
239
  msgid "Send your donation to the author of"
240
  msgstr ""
241
 
242
- #: admin.inc.php:342
243
- #: admin.inc.php:367
244
- #: admin.inc.php:570
245
- #: top-10.php:266
246
- #: top-10.php:282
247
- #: top-10.php:453
248
- #: top-10.php:456
249
  msgid "Popular Posts"
250
  msgstr ""
251
 
252
- #: admin.inc.php:342
253
  msgid "Daily Popular Posts"
254
  msgstr ""
255
 
256
- #: admin.inc.php:365
257
- #: admin.inc.php:367
258
  msgid "Top 10"
259
  msgstr ""
260
 
261
- #: admin.inc.php:478
262
  msgid "Results"
263
  msgstr ""
264
 
265
- #: admin.inc.php:480
266
- #: admin.inc.php:486
267
  msgid "of"
268
  msgstr ""
269
 
270
- #: admin.inc.php:484
271
  msgid "Page"
272
  msgstr ""
273
 
274
- #: admin.inc.php:498
275
  msgid "View Daily Popular Posts"
276
  msgstr ""
277
 
278
- #: admin.inc.php:502
279
  msgid "View Overall Popular Posts"
280
  msgstr ""
281
 
282
- #: admin.inc.php:506
283
  msgid "Results per-page:"
284
  msgstr ""
285
 
286
- #: admin.inc.php:530
287
  msgid "Previous"
288
  msgstr ""
289
 
290
- #: admin.inc.php:548
291
  msgid "Next"
292
  msgstr ""
293
 
294
- #: admin.inc.php:571
295
- #: top-10.php:227
296
- #: top-10.php:243
297
- #: top-10.php:454
298
- #: top-10.php:457
299
  msgid "Daily Popular"
300
  msgstr ""
301
 
302
- #: admin.inc.php:582
303
  msgid "Total / Today's Views"
304
  msgstr ""
305
 
306
- #: top-10.php:226
307
  msgid "Display the posts popular today"
308
  msgstr ""
309
 
310
- #: top-10.php:265
311
  msgid "Display the posts popular this week"
312
  msgstr ""
313
 
314
- #: top-10.php:295
315
  msgid "<h3>Popular Posts</h3>"
316
  msgstr ""
317
 
318
- #: top-10.php:296
319
  msgid "<h3>Daily Popular</h3>"
320
  msgstr ""
321
 
322
- #: top-10.php:493
323
  msgid "Settings"
324
  msgstr ""
325
 
326
- #: top-10.php:495
327
  msgid "Donate"
328
  msgstr ""
329
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:58
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
+ #: admin.inc.php:67
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
+ #: admin.inc.php:73
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
+ #: admin.inc.php:79
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
+ #: admin.inc.php:86
34
  msgid "Tables cleaned of duplicate rows"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:98
38
  msgid "Options:"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:103
42
  msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
+ #: admin.inc.php:107
46
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:110
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:116
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
+ #: admin.inc.php:123
58
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:129
62
  msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:135
66
  msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:141
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:147
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
+ #: admin.inc.php:153
78
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:159
82
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:165
86
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:169
90
  msgid "Output Options:"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:173
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
+ #: admin.inc.php:179
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
+ #: admin.inc.php:186
102
  msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:191
106
  msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
+ #: admin.inc.php:195
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:210
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:213
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:219
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:225
126
  msgid "HTML to display after each list item: "
127
  msgstr ""
128
 
129
+ #: admin.inc.php:231
130
  msgid "HTML to display after the list of posts: "
131
  msgstr ""
132
 
133
+ #: admin.inc.php:235
134
  msgid "Post thumbnail options:"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:239
138
+ msgid "Display thumbnails inline with posts, before title"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:243
142
+ msgid "Display thumbnails inline with posts, after title"
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:247
146
  msgid "Display only thumbnails, no text"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:251
150
  msgid "Do not display thumbnails, only text."
151
  msgstr ""
152
 
153
+ #: admin.inc.php:256
154
  msgid "Post thumbnail meta field (the meta should point to the image source): "
155
  msgstr ""
156
 
157
+ #: admin.inc.php:263
158
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:266
162
  msgid "Thumbnail dimensions:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:268
166
  msgid "Max width: "
167
  msgstr ""
168
 
169
+ #: admin.inc.php:273
170
  msgid "Max height: "
171
  msgstr ""
172
 
173
+ #: admin.inc.php:277
174
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
175
  msgstr ""
176
 
177
+ #: admin.inc.php:282
178
  msgid "Do you want to set options to Default?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:285
182
  msgid "Reset count"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:288
186
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:291
190
  msgid "Are you sure you want to reset the popular posts?"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:292
194
  msgid "Are you sure you want to reset the daily popular posts?"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:293
198
  msgid "This will delete the duplicate entries in the tables. Proceed?"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:300
202
  msgid "Quick links"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:302
206
  msgid "Top 10 "
207
  msgstr ""
208
 
209
+ #: admin.inc.php:302
210
  msgid "plugin page"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:303
214
  msgid "Other plugins"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:304
218
  msgid "Ajay's blog"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:305
222
+ #: top-10.php:515
223
  msgid "Support"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:306
227
  msgid "Follow @ajaydsouza on Twitter"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:310
231
  msgid "Recent developments"
232
  msgstr ""
233
 
234
+ #: admin.inc.php:315
235
  msgid "Support the development"
236
  msgstr ""
237
 
238
+ #: admin.inc.php:323
239
  msgid "Enter amount in USD: "
240
  msgstr ""
241
 
242
+ #: admin.inc.php:327
243
  msgid "Send your donation to the author of"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:347
247
+ #: admin.inc.php:372
248
+ #: admin.inc.php:575
249
+ #: top-10.php:257
250
+ #: top-10.php:273
251
+ #: top-10.php:445
252
+ #: top-10.php:448
253
  msgid "Popular Posts"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:347
257
  msgid "Daily Popular Posts"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:370
261
+ #: admin.inc.php:372
262
  msgid "Top 10"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:483
266
  msgid "Results"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:485
270
+ #: admin.inc.php:491
271
  msgid "of"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:489
275
  msgid "Page"
276
  msgstr ""
277
 
278
+ #: admin.inc.php:503
279
  msgid "View Daily Popular Posts"
280
  msgstr ""
281
 
282
+ #: admin.inc.php:507
283
  msgid "View Overall Popular Posts"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:511
287
  msgid "Results per-page:"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:535
291
  msgid "Previous"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:553
295
  msgid "Next"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:576
299
+ #: top-10.php:219
300
+ #: top-10.php:235
301
+ #: top-10.php:446
302
+ #: top-10.php:449
303
  msgid "Daily Popular"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:587
307
  msgid "Total / Today's Views"
308
  msgstr ""
309
 
310
+ #: top-10.php:218
311
  msgid "Display the posts popular today"
312
  msgstr ""
313
 
314
+ #: top-10.php:256
315
  msgid "Display the posts popular this week"
316
  msgstr ""
317
 
318
+ #: top-10.php:286
319
  msgid "<h3>Popular Posts</h3>"
320
  msgstr ""
321
 
322
+ #: top-10.php:287
323
  msgid "<h3>Daily Popular</h3>"
324
  msgstr ""
325
 
326
+ #: top-10.php:514
327
  msgid "Settings"
328
  msgstr ""
329
 
330
+ #: top-10.php:516
331
  msgid "Donate"
332
  msgstr ""
333
 
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: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
@@ -14,316 +14,320 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:57
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:66
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:72
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
- #: admin.inc.php:78
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
- #: admin.inc.php:85
34
  msgid "Tables cleaned of duplicate rows"
35
  msgstr ""
36
 
37
- #: admin.inc.php:97
38
  msgid "Options:"
39
  msgstr ""
40
 
41
- #: admin.inc.php:102
42
  msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
- #: admin.inc.php:106
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:109
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
- #: admin.inc.php:115
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
- #: admin.inc.php:122
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:128
62
  msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
- #: admin.inc.php:134
66
  msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
- #: admin.inc.php:140
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
- #: admin.inc.php:146
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
- #: admin.inc.php:152
78
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
- #: admin.inc.php:158
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:164
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:168
90
  msgid "Output Options:"
91
  msgstr ""
92
 
93
- #: admin.inc.php:172
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
- #: admin.inc.php:178
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
- #: admin.inc.php:185
102
  msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
- #: admin.inc.php:190
106
  msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
- #: admin.inc.php:194
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
- #: admin.inc.php:209
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
- #: admin.inc.php:212
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
- #: admin.inc.php:218
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
125
- #: admin.inc.php:224
126
  msgid "HTML to display after each list item: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:230
130
  msgid "HTML to display after the list of posts: "
131
  msgstr ""
132
 
133
- #: admin.inc.php:234
134
  msgid "Post thumbnail options:"
135
  msgstr ""
136
 
137
- #: admin.inc.php:238
138
- msgid "Display thumbnails inline with posts"
139
  msgstr ""
140
 
141
- #: admin.inc.php:242
 
 
 
 
142
  msgid "Display only thumbnails, no text"
143
  msgstr ""
144
 
145
- #: admin.inc.php:246
146
  msgid "Do not display thumbnails, only text."
147
  msgstr ""
148
 
149
- #: admin.inc.php:251
150
  msgid "Post thumbnail meta field (the meta should point to the image source): "
151
  msgstr ""
152
 
153
- #: admin.inc.php:258
154
  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"
155
  msgstr ""
156
 
157
- #: admin.inc.php:261
158
  msgid "Thumbnail dimensions:"
159
  msgstr ""
160
 
161
- #: admin.inc.php:263
162
  msgid "Max width: "
163
  msgstr ""
164
 
165
- #: admin.inc.php:268
166
  msgid "Max height: "
167
  msgstr ""
168
 
169
- #: admin.inc.php:272
170
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
171
  msgstr ""
172
 
173
- #: admin.inc.php:277
174
  msgid "Do you want to set options to Default?"
175
  msgstr ""
176
 
177
- #: admin.inc.php:280
178
  msgid "Reset count"
179
  msgstr ""
180
 
181
- #: admin.inc.php:283
182
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
183
  msgstr ""
184
 
185
- #: admin.inc.php:286
186
  msgid "Are you sure you want to reset the popular posts?"
187
  msgstr ""
188
 
189
- #: admin.inc.php:287
190
  msgid "Are you sure you want to reset the daily popular posts?"
191
  msgstr ""
192
 
193
- #: admin.inc.php:288
194
  msgid "This will delete the duplicate entries in the tables. Proceed?"
195
  msgstr ""
196
 
197
- #: admin.inc.php:295
198
  msgid "Quick links"
199
  msgstr ""
200
 
201
- #: admin.inc.php:297
202
  msgid "Top 10 "
203
  msgstr ""
204
 
205
- #: admin.inc.php:297
206
  msgid "plugin page"
207
  msgstr ""
208
 
209
- #: admin.inc.php:298
210
  msgid "Other plugins"
211
  msgstr ""
212
 
213
- #: admin.inc.php:299
214
  msgid "Ajay's blog"
215
  msgstr ""
216
 
217
- #: admin.inc.php:300
218
- #: top-10.php:494
219
  msgid "Support"
220
  msgstr ""
221
 
222
- #: admin.inc.php:301
223
  msgid "Follow @ajaydsouza on Twitter"
224
  msgstr ""
225
 
226
- #: admin.inc.php:305
227
  msgid "Recent developments"
228
  msgstr ""
229
 
230
- #: admin.inc.php:310
231
  msgid "Support the development"
232
  msgstr ""
233
 
234
- #: admin.inc.php:318
235
  msgid "Enter amount in USD: "
236
  msgstr ""
237
 
238
- #: admin.inc.php:322
239
  msgid "Send your donation to the author of"
240
  msgstr ""
241
 
242
- #: admin.inc.php:342
243
- #: admin.inc.php:367
244
- #: admin.inc.php:570
245
- #: top-10.php:266
246
- #: top-10.php:282
247
- #: top-10.php:453
248
- #: top-10.php:456
249
  msgid "Popular Posts"
250
  msgstr ""
251
 
252
- #: admin.inc.php:342
253
  msgid "Daily Popular Posts"
254
  msgstr ""
255
 
256
- #: admin.inc.php:365
257
- #: admin.inc.php:367
258
  msgid "Top 10"
259
  msgstr ""
260
 
261
- #: admin.inc.php:478
262
  msgid "Results"
263
  msgstr ""
264
 
265
- #: admin.inc.php:480
266
- #: admin.inc.php:486
267
  msgid "of"
268
  msgstr ""
269
 
270
- #: admin.inc.php:484
271
  msgid "Page"
272
  msgstr ""
273
 
274
- #: admin.inc.php:498
275
  msgid "View Daily Popular Posts"
276
  msgstr ""
277
 
278
- #: admin.inc.php:502
279
  msgid "View Overall Popular Posts"
280
  msgstr ""
281
 
282
- #: admin.inc.php:506
283
  msgid "Results per-page:"
284
  msgstr ""
285
 
286
- #: admin.inc.php:530
287
  msgid "Previous"
288
  msgstr ""
289
 
290
- #: admin.inc.php:548
291
  msgid "Next"
292
  msgstr ""
293
 
294
- #: admin.inc.php:571
295
- #: top-10.php:227
296
- #: top-10.php:243
297
- #: top-10.php:454
298
- #: top-10.php:457
299
  msgid "Daily Popular"
300
  msgstr ""
301
 
302
- #: admin.inc.php:582
303
  msgid "Total / Today's Views"
304
  msgstr ""
305
 
306
- #: top-10.php:226
307
  msgid "Display the posts popular today"
308
  msgstr ""
309
 
310
- #: top-10.php:265
311
  msgid "Display the posts popular this week"
312
  msgstr ""
313
 
314
- #: top-10.php:295
315
  msgid "<h3>Popular Posts</h3>"
316
  msgstr ""
317
 
318
- #: top-10.php:296
319
  msgid "<h3>Daily Popular</h3>"
320
  msgstr ""
321
 
322
- #: top-10.php:493
323
  msgid "Settings"
324
  msgstr ""
325
 
326
- #: top-10.php:495
327
  msgid "Donate"
328
  msgstr ""
329
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Ajay D'Souza <me@ajaydsouza.com>\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin.inc.php:58
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
+ #: admin.inc.php:67
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
+ #: admin.inc.php:73
26
  msgid "Top 10 popular posts reset"
27
  msgstr ""
28
 
29
+ #: admin.inc.php:79
30
  msgid "Top 10 daily popular posts reset"
31
  msgstr ""
32
 
33
+ #: admin.inc.php:86
34
  msgid "Tables cleaned of duplicate rows"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:98
38
  msgid "Options:"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:103
42
  msgid "Format to display the count in: "
43
  msgstr ""
44
 
45
+ #: admin.inc.php:107
46
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:110
50
  msgid "Number of popular posts to display: "
51
  msgstr ""
52
 
53
+ #: admin.inc.php:116
54
  msgid "Daily Popular should contain views of how many days? "
55
  msgstr ""
56
 
57
+ #: admin.inc.php:123
58
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:129
62
  msgid "Display number of views on posts?"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:135
66
  msgid "Display number of views on pages?"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:141
70
  msgid "Track visits of authors on their own posts?"
71
  msgstr ""
72
 
73
+ #: admin.inc.php:147
74
  msgid "Display number of page views in popular lists?"
75
  msgstr ""
76
 
77
+ #: admin.inc.php:153
78
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
79
  msgstr ""
80
 
81
+ #: admin.inc.php:159
82
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:165
86
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:169
90
  msgid "Output Options:"
91
  msgstr ""
92
 
93
+ #: admin.inc.php:173
94
  msgid "Title of popular posts: "
95
  msgstr ""
96
 
97
+ #: admin.inc.php:179
98
  msgid "Title of daily popular posts: "
99
  msgstr ""
100
 
101
+ #: admin.inc.php:186
102
  msgid "Show post excerpt in list?"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:191
106
  msgid "Length of excerpt (in words): "
107
  msgstr ""
108
 
109
+ #: admin.inc.php:195
110
  msgid "Exclude Categories: "
111
  msgstr ""
112
 
113
+ #: admin.inc.php:210
114
  msgid "Customize the output:"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:213
118
  msgid "HTML to display before the list of posts: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:219
122
  msgid "HTML to display before each list item: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:225
126
  msgid "HTML to display after each list item: "
127
  msgstr ""
128
 
129
+ #: admin.inc.php:231
130
  msgid "HTML to display after the list of posts: "
131
  msgstr ""
132
 
133
+ #: admin.inc.php:235
134
  msgid "Post thumbnail options:"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:239
138
+ msgid "Display thumbnails inline with posts, before title"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:243
142
+ msgid "Display thumbnails inline with posts, after title"
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:247
146
  msgid "Display only thumbnails, no text"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:251
150
  msgid "Do not display thumbnails, only text."
151
  msgstr ""
152
 
153
+ #: admin.inc.php:256
154
  msgid "Post thumbnail meta field (the meta should point to the image source): "
155
  msgstr ""
156
 
157
+ #: admin.inc.php:263
158
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:266
162
  msgid "Thumbnail dimensions:"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:268
166
  msgid "Max width: "
167
  msgstr ""
168
 
169
+ #: admin.inc.php:273
170
  msgid "Max height: "
171
  msgstr ""
172
 
173
+ #: admin.inc.php:277
174
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
175
  msgstr ""
176
 
177
+ #: admin.inc.php:282
178
  msgid "Do you want to set options to Default?"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:285
182
  msgid "Reset count"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:288
186
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:291
190
  msgid "Are you sure you want to reset the popular posts?"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:292
194
  msgid "Are you sure you want to reset the daily popular posts?"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:293
198
  msgid "This will delete the duplicate entries in the tables. Proceed?"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:300
202
  msgid "Quick links"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:302
206
  msgid "Top 10 "
207
  msgstr ""
208
 
209
+ #: admin.inc.php:302
210
  msgid "plugin page"
211
  msgstr ""
212
 
213
+ #: admin.inc.php:303
214
  msgid "Other plugins"
215
  msgstr ""
216
 
217
+ #: admin.inc.php:304
218
  msgid "Ajay's blog"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:305
222
+ #: top-10.php:515
223
  msgid "Support"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:306
227
  msgid "Follow @ajaydsouza on Twitter"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:310
231
  msgid "Recent developments"
232
  msgstr ""
233
 
234
+ #: admin.inc.php:315
235
  msgid "Support the development"
236
  msgstr ""
237
 
238
+ #: admin.inc.php:323
239
  msgid "Enter amount in USD: "
240
  msgstr ""
241
 
242
+ #: admin.inc.php:327
243
  msgid "Send your donation to the author of"
244
  msgstr ""
245
 
246
+ #: admin.inc.php:347
247
+ #: admin.inc.php:372
248
+ #: admin.inc.php:575
249
+ #: top-10.php:257
250
+ #: top-10.php:273
251
+ #: top-10.php:445
252
+ #: top-10.php:448
253
  msgid "Popular Posts"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:347
257
  msgid "Daily Popular Posts"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:370
261
+ #: admin.inc.php:372
262
  msgid "Top 10"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:483
266
  msgid "Results"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:485
270
+ #: admin.inc.php:491
271
  msgid "of"
272
  msgstr ""
273
 
274
+ #: admin.inc.php:489
275
  msgid "Page"
276
  msgstr ""
277
 
278
+ #: admin.inc.php:503
279
  msgid "View Daily Popular Posts"
280
  msgstr ""
281
 
282
+ #: admin.inc.php:507
283
  msgid "View Overall Popular Posts"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:511
287
  msgid "Results per-page:"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:535
291
  msgid "Previous"
292
  msgstr ""
293
 
294
+ #: admin.inc.php:553
295
  msgid "Next"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:576
299
+ #: top-10.php:219
300
+ #: top-10.php:235
301
+ #: top-10.php:446
302
+ #: top-10.php:449
303
  msgid "Daily Popular"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:587
307
  msgid "Total / Today's Views"
308
  msgstr ""
309
 
310
+ #: top-10.php:218
311
  msgid "Display the posts popular today"
312
  msgstr ""
313
 
314
+ #: top-10.php:256
315
  msgid "Display the posts popular this week"
316
  msgstr ""
317
 
318
+ #: top-10.php:286
319
  msgid "<h3>Popular Posts</h3>"
320
  msgstr ""
321
 
322
+ #: top-10.php:287
323
  msgid "<h3>Daily Popular</h3>"
324
  msgstr ""
325
 
326
+ #: top-10.php:514
327
  msgid "Settings"
328
  msgstr ""
329
 
330
+ #: top-10.php:516
331
  msgid "Donate"
332
  msgstr ""
333
 
languages/tptn-fr_FR.mo ADDED
Binary file
languages/tptn-fr_FR.po ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Top 10\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:20-0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: LeBidule <lebiduledjoest@gmail.com>\n"
8
+ "Language-Team: LeBidule pour ajaydsouza <me@ajaydsouza.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: French\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-Country: FRANCE\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: admin.inc.php:58
19
+ msgid "Options saved successfully."
20
+ msgstr "Options sauvegardés avec succès."
21
+
22
+ #: admin.inc.php:67
23
+ msgid "Options set to Default."
24
+ msgstr "Options des paramètres par défaut."
25
+
26
+ #: admin.inc.php:73
27
+ msgid "Top 10 popular posts reset"
28
+ msgstr "Reset des articles les plus consultés"
29
+
30
+ #: admin.inc.php:79
31
+ msgid "Top 10 daily popular posts reset"
32
+ msgstr "Reset des articles les plus consultés du Jour"
33
+
34
+ #: admin.inc.php:86
35
+ msgid "Tables cleaned of duplicate rows"
36
+ msgstr "Nettoyer le tableau des lignes dupliquées (doublons)"
37
+
38
+ #: admin.inc.php:98
39
+ msgid "Options:"
40
+ msgstr "Options:"
41
+
42
+ #: admin.inc.php:103
43
+ msgid "Format to display the count in: "
44
+ msgstr "Format d'affichage du compteur de vue"
45
+
46
+ #: admin.inc.php:107
47
+ msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
+ msgstr "Utilisez <code>%totalcount%</code> pour afficher le compteur <code>%dailycount%</code> pour afficher le compteur Journalier Ex. d'affichage par défaut <code>(Cet article a été vu 23 fois , 3 visites aujourd'hui)</code>"
49
+
50
+ #: admin.inc.php:110
51
+ msgid "Number of popular posts to display: "
52
+ msgstr "Définir le nombre de publication à afficher dans le Widgets:"
53
+
54
+ #: admin.inc.php:116
55
+ msgid "Daily Popular should contain views of how many days? "
56
+ msgstr "La vue journalière comptabilise 1 jour par défaut, vous pouvez modifier cette valeur ci-besoin!"
57
+
58
+ #: admin.inc.php:123
59
+ msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
+ msgstr "Exclure les pages dans l'affichage des articles consultés? L’affichage des pages continuera d'être comptabilisé."
61
+
62
+ #: admin.inc.php:129
63
+ msgid "Display number of views on posts?"
64
+ msgstr "Afficher le compteur de vue sur les articles?"
65
+
66
+ #: admin.inc.php:135
67
+ msgid "Display number of views on pages?"
68
+ msgstr "Afficher le compteur de vue sur les pages?"
69
+
70
+ #: admin.inc.php:141
71
+ msgid "Track visits of authors on their own posts?"
72
+ msgstr "Prendre en compte vos visites d'administrateur sur le site? "
73
+
74
+ #: admin.inc.php:147
75
+ msgid "Display number of page views in popular lists?"
76
+ msgstr "Afficher aussi le nombre de pages vues?"
77
+
78
+ #: admin.inc.php:153
79
+ msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
+ msgstr "Utilisez JavaScript pour un affichage dynamique des articles les plus consultés par Jour? (Augmente le temps de chargement)!"
81
+
82
+ #: admin.inc.php:159
83
+ msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
+ msgstr "Afficher le compteur de vue pour les Articles et Pages dans WP-Admin? Une colonne supplémentaire sera ajoutée pour se faire."
85
+
86
+ #: admin.inc.php:165
87
+ msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
+ msgstr "Un lien vers le plugin est ajouté à la liste des articles les plus consultés. Merci d'avance pour la pub, une façon simple pour complimenter mon travail."
89
+
90
+ #: admin.inc.php:169
91
+ msgid "Output Options:"
92
+ msgstr "Options d'affichages (titre des widgets): "
93
+
94
+ #: admin.inc.php:173
95
+ msgid "Title of popular posts: "
96
+ msgstr "Titre des articles les plus consultés:"
97
+
98
+ #: admin.inc.php:179
99
+ msgid "Title of daily popular posts: "
100
+ msgstr "Titre des articles journaliers les plus consultés:"
101
+
102
+ #: admin.inc.php:186
103
+ msgid "Show post excerpt in list?"
104
+ msgstr "Voir un extrait de l'article dans la liste?"
105
+
106
+ #: admin.inc.php:191
107
+ msgid "Length of excerpt (in words): "
108
+ msgstr "Longueur de l'extrait (en mots):"
109
+
110
+ #: admin.inc.php:195
111
+ msgid "Exclude Categories: "
112
+ msgstr "Exclure des catégories:"
113
+
114
+ #: admin.inc.php:210
115
+ msgid "Customize the output:"
116
+ msgstr "Personnaliser la sortie:"
117
+
118
+ #: admin.inc.php:213
119
+ msgid "HTML to display before the list of posts: "
120
+ msgstr "HTML pour afficher avant la liste des messages:"
121
+
122
+ #: admin.inc.php:219
123
+ msgid "HTML to display before each list item: "
124
+ msgstr "HTML pour afficher devant chaque éléments:"
125
+
126
+ #: admin.inc.php:225
127
+ msgid "HTML to display after each list item: "
128
+ msgstr "HTML pour afficher après chaque élément de la liste:"
129
+
130
+ #: admin.inc.php:231
131
+ msgid "HTML to display after the list of posts: "
132
+ msgstr "HTML pour afficher après la liste des messages:"
133
+
134
+ #: admin.inc.php:235
135
+ msgid "Post thumbnail options:"
136
+ msgstr "Option pour les vignettes d'articles:"
137
+
138
+ #: admin.inc.php:239
139
+ msgid "Display thumbnails inline with posts, before title"
140
+ msgstr "Affichage des miniatures avec les articles, avant le titre"
141
+
142
+ #: admin.inc.php:243
143
+ msgid "Display thumbnails inline with posts, after title"
144
+ msgstr "Affichage des miniatures avec les articles, après le titre"
145
+
146
+ #: admin.inc.php:247
147
+ msgid "Display only thumbnails, no text"
148
+ msgstr "Affichage des miniatures sans texte."
149
+
150
+ #: admin.inc.php:251
151
+ msgid "Do not display thumbnails, only text."
152
+ msgstr "Affichage du texte, sans miniature."
153
+
154
+ #: admin.inc.php:256
155
+ msgid "Post thumbnail meta field (the meta should point to the image source): "
156
+ msgstr "Champ de méta de la miniature (le méta doit pointer vers la source de l'image):"
157
+
158
+ #: admin.inc.php:263
159
+ msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
+ msgstr "Si le méta n'est pas défini, alors le plugin devrait extraire la première image de l'article. Cela peut ralentir l'affichage en cas de taille importante!"
161
+
162
+ #: admin.inc.php:266
163
+ msgid "Thumbnail dimensions:"
164
+ msgstr "Dimensions des miniatures:"
165
+
166
+ #: admin.inc.php:268
167
+ msgid "Max width: "
168
+ msgstr "Largeur max:"
169
+
170
+ #: admin.inc.php:273
171
+ msgid "Max height: "
172
+ msgstr "Longeur max:"
173
+
174
+ #: admin.inc.php:277
175
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
176
+ msgstr "En activant cette option, si aucune miniature n'est trouvé alors l'affichage d'une erreur d'URL sera affiché. Si ce n'est pas vérifiée et qu'aucune miniature n'est trouvée, alors aucune image ne sera affichée."
177
+
178
+ #: admin.inc.php:282
179
+ msgid "Do you want to set options to Default?"
180
+ msgstr "Definir les options par défaut?"
181
+
182
+ #: admin.inc.php:285
183
+ msgid "Reset count"
184
+ msgstr "Réinitialisation des compteurs."
185
+
186
+ #: admin.inc.php:288
187
+ msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
+ msgstr "Sauvegarder la base de donnée si besoin, aucun retour en arrière ne sera possible!"
189
+
190
+ #: admin.inc.php:291
191
+ msgid "Are you sure you want to reset the popular posts?"
192
+ msgstr "Etes-vous sur de vouloir réinitialiser les compteurs des articles les plus consultés?"
193
+
194
+ #: admin.inc.php:292
195
+ msgid "Are you sure you want to reset the daily popular posts?"
196
+ msgstr "Etes-vous sur de vouloir réinitialiser les compteurs des articles journaliers les plus consultés?"
197
+
198
+ #: admin.inc.php:293
199
+ msgid "This will delete the duplicate entries in the tables. Proceed?"
200
+ msgstr "Ceci va supprimer les doublons dans les tables de la base de données. Procéder?"
201
+
202
+ #: admin.inc.php:300
203
+ msgid "Quick links"
204
+ msgstr "Liens courts"
205
+
206
+ #: admin.inc.php:302
207
+ msgid "Top 10 "
208
+ msgstr "Top 10 "
209
+
210
+ #: admin.inc.php:302
211
+ msgid "plugin page"
212
+ msgstr "Page des extensions"
213
+
214
+ #: admin.inc.php:303
215
+ msgid "Other plugins"
216
+ msgstr "Autres extensions"
217
+
218
+ #: admin.inc.php:304
219
+ msgid "Ajay's blog"
220
+ msgstr "Le blog d'Ajay's"
221
+
222
+ #: admin.inc.php:305
223
+ #: top-10.php:515
224
+ msgid "Support"
225
+ msgstr "Aide"
226
+
227
+ #: admin.inc.php:306
228
+ msgid "Follow @ajaydsouza on Twitter"
229
+ msgstr "Suivre @ajaydsouza sur Twitter"
230
+
231
+ #: admin.inc.php:310
232
+ msgid "Recent developments"
233
+ msgstr "Développements récents"
234
+
235
+ #: admin.inc.php:315
236
+ msgid "Support the development"
237
+ msgstr "Soutenir le développement"
238
+
239
+ #: admin.inc.php:323
240
+ msgid "Enter amount in USD: "
241
+ msgstr "Entrez le montant en USD:"
242
+
243
+ #: admin.inc.php:327
244
+ msgid "Send your donation to the author of"
245
+ msgstr "Envoyer vos dons à l'auteur de"
246
+
247
+ #: admin.inc.php:347
248
+ #: admin.inc.php:372
249
+ #: admin.inc.php:575
250
+ #: top-10.php:257
251
+ #: top-10.php:273
252
+ #: top-10.php:445
253
+ #: top-10.php:448
254
+ msgid "Popular Posts"
255
+ msgstr "Articles les plus consultés"
256
+
257
+ #: admin.inc.php:347
258
+ msgid "Daily Popular Posts"
259
+ msgstr "Articles journaliers les plus consultés"
260
+
261
+ #: admin.inc.php:370
262
+ #: admin.inc.php:372
263
+ msgid "Top 10"
264
+ msgstr "Top 10"
265
+
266
+ #: admin.inc.php:483
267
+ msgid "Results"
268
+ msgstr "Bilan"
269
+
270
+ #: admin.inc.php:485
271
+ #: admin.inc.php:491
272
+ msgid "of"
273
+ msgstr "de"
274
+
275
+ #: admin.inc.php:489
276
+ msgid "Page"
277
+ msgstr "Pages"
278
+
279
+ #: admin.inc.php:503
280
+ msgid "View Daily Popular Posts"
281
+ msgstr "Voir les articles journaliers les plus consultés"
282
+
283
+ #: admin.inc.php:507
284
+ msgid "View Overall Popular Posts"
285
+ msgstr "Voir l'ensemble des articles les plus consultés"
286
+
287
+ #: admin.inc.php:511
288
+ msgid "Results per-page:"
289
+ msgstr "Bilan par page:"
290
+
291
+ #: admin.inc.php:535
292
+ msgid "Previous"
293
+ msgstr "précédente"
294
+
295
+ #: admin.inc.php:553
296
+ msgid "Next"
297
+ msgstr "Suivante"
298
+
299
+ #: admin.inc.php:576
300
+ #: top-10.php:219
301
+ #: top-10.php:235
302
+ #: top-10.php:446
303
+ #: top-10.php:449
304
+ msgid "Daily Popular"
305
+ msgstr "Les plus consultés du jour"
306
+
307
+ #: admin.inc.php:587
308
+ msgid "Total / Today's Views"
309
+ msgstr "Total / consultations du jour"
310
+
311
+ #: top-10.php:218
312
+ msgid "Display the posts popular today"
313
+ msgstr "Afficher les articles les plus consultés du jour"
314
+
315
+ #: top-10.php:256
316
+ msgid "Display the posts popular this week"
317
+ msgstr "Afficher les articles les plus consultés de la semaine"
318
+
319
+ #: top-10.php:286
320
+ msgid "<h3>Popular Posts</h3>"
321
+ msgstr "<h3>Articles les plus consultés</h3>"
322
+
323
+ #: top-10.php:287
324
+ msgid "<h3>Daily Popular</h3>"
325
+ msgstr "<h3>Articles les plus consultés aujourd'hui</h3>"
326
+
327
+ #: top-10.php:514
328
+ msgid "Settings"
329
+ msgstr "Réglages"
330
+
331
+ #: top-10.php:516
332
+ msgid "Donate"
333
+ msgstr "Faire un don"
334
+
languages/tptn-ga_IR.mo CHANGED
Binary file
languages/tptn-ga_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
@@ -15,330 +15,335 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:57
19
  msgid "Options saved successfully."
20
  msgstr "Roghanna shábháil go rathúil."
21
 
22
- #: admin.inc.php:66
23
  msgid "Options set to Default."
24
  msgstr "Roghanna leagtha chun Réamhshocrú."
25
 
26
- #: admin.inc.php:72
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Teideal an post tóir:"
30
 
31
- #: admin.inc.php:78
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Teideal ar tóir an bpost:"
35
 
36
- #: admin.inc.php:85
37
  msgid "Tables cleaned of duplicate rows"
38
  msgstr ""
39
 
40
- #: admin.inc.php:97
41
  msgid "Options:"
42
  msgstr "roghanna"
43
 
44
- #: admin.inc.php:102
45
  msgid "Format to display the count in: "
46
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
47
 
48
- #: admin.inc.php:106
49
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
  msgstr "Bain úsáid as <code>% totalcount% </ cód> a chur ar taispeáint ar an líon iomlán agus <code>% dailycount% </ cód> a chur ar taispeáint ar an líon laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt 123 amanna, 23 cuairt inniu) </ cód>"
51
 
52
- #: admin.inc.php:109
53
  msgid "Number of popular posts to display: "
54
  msgstr "An líon post tóir a thaispeáint:"
55
 
56
- #: admin.inc.php:115
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
59
 
60
- #: admin.inc.php:122
61
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
  msgstr "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir Leathanaigh ar aghaidh a chur san áireamh."
63
 
64
- #: admin.inc.php:128
65
  msgid "Display number of views on posts?"
66
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
67
 
68
- #: admin.inc.php:134
69
  msgid "Display number of views on pages?"
70
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
71
 
72
- #: admin.inc.php:140
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
75
 
76
- #: admin.inc.php:146
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
79
 
80
- #: admin.inc.php:152
81
  #, fuzzy
82
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
  msgstr "Post Force laethúil 'liosta a bheith dinimiciúil? Úsáideann sé seo roghanna JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a luchtú leathanach"
84
 
85
- #: admin.inc.php:158
86
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
  msgstr "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? Tá colún breise curtha leo le líon"
88
 
89
- #: admin.inc.php:164
90
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
  msgstr "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
92
 
93
- #: admin.inc.php:168
94
  #, fuzzy
95
  msgid "Output Options:"
96
  msgstr "roghanna"
97
 
98
- #: admin.inc.php:172
99
  msgid "Title of popular posts: "
100
  msgstr "Teideal an post tóir:"
101
 
102
- #: admin.inc.php:178
103
  msgid "Title of daily popular posts: "
104
  msgstr "Teideal ar tóir an bpost:"
105
 
106
- #: admin.inc.php:185
107
  msgid "Show post excerpt in list?"
108
  msgstr ""
109
 
110
- #: admin.inc.php:190
111
  msgid "Length of excerpt (in words): "
112
  msgstr ""
113
 
114
- #: admin.inc.php:194
115
  msgid "Exclude Categories: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:209
119
  msgid "Customize the output:"
120
  msgstr ""
121
 
122
- #: admin.inc.php:212
123
  #, fuzzy
124
  msgid "HTML to display before the list of posts: "
125
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
126
 
127
- #: admin.inc.php:218
128
  #, fuzzy
129
  msgid "HTML to display before each list item: "
130
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
131
 
132
- #: admin.inc.php:224
133
  #, fuzzy
134
  msgid "HTML to display after each list item: "
135
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
136
 
137
- #: admin.inc.php:230
138
  #, fuzzy
139
  msgid "HTML to display after the list of posts: "
140
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
141
 
142
- #: admin.inc.php:234
143
  msgid "Post thumbnail options:"
144
  msgstr ""
145
 
146
- #: admin.inc.php:238
147
  #, fuzzy
148
- msgid "Display thumbnails inline with posts"
149
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
150
 
151
- #: admin.inc.php:242
 
 
 
 
 
152
  #, fuzzy
153
  msgid "Display only thumbnails, no text"
154
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
155
 
156
- #: admin.inc.php:246
157
  #, fuzzy
158
  msgid "Do not display thumbnails, only text."
159
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
160
 
161
- #: admin.inc.php:251
162
  msgid "Post thumbnail meta field (the meta should point to the image source): "
163
  msgstr ""
164
 
165
- #: admin.inc.php:258
166
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
167
  msgstr ""
168
 
169
- #: admin.inc.php:261
170
  msgid "Thumbnail dimensions:"
171
  msgstr ""
172
 
173
- #: admin.inc.php:263
174
  msgid "Max width: "
175
  msgstr ""
176
 
177
- #: admin.inc.php:268
178
  msgid "Max height: "
179
  msgstr ""
180
 
181
- #: admin.inc.php:272
182
- 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:"
183
  msgstr ""
184
 
185
- #: admin.inc.php:277
186
  msgid "Do you want to set options to Default?"
187
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
188
 
189
- #: admin.inc.php:280
190
  msgid "Reset count"
191
  msgstr ""
192
 
193
- #: admin.inc.php:283
194
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
195
  msgstr ""
196
 
197
- #: admin.inc.php:286
198
  msgid "Are you sure you want to reset the popular posts?"
199
  msgstr ""
200
 
201
- #: admin.inc.php:287
202
  msgid "Are you sure you want to reset the daily popular posts?"
203
  msgstr ""
204
 
205
- #: admin.inc.php:288
206
  msgid "This will delete the duplicate entries in the tables. Proceed?"
207
  msgstr ""
208
 
209
- #: admin.inc.php:295
210
  msgid "Quick links"
211
  msgstr ""
212
 
213
- #: admin.inc.php:297
214
  #, fuzzy
215
  msgid "Top 10 "
216
  msgstr "Top 10"
217
 
218
- #: admin.inc.php:297
219
  msgid "plugin page"
220
  msgstr ""
221
 
222
- #: admin.inc.php:298
223
  msgid "Other plugins"
224
  msgstr ""
225
 
226
- #: admin.inc.php:299
227
  msgid "Ajay's blog"
228
  msgstr ""
229
 
230
- #: admin.inc.php:300
231
- #: top-10.php:494
232
  msgid "Support"
233
  msgstr ""
234
 
235
- #: admin.inc.php:301
236
  msgid "Follow @ajaydsouza on Twitter"
237
  msgstr ""
238
 
239
- #: admin.inc.php:305
240
  #, fuzzy
241
  msgid "Recent developments"
242
  msgstr "Tacú le Forbairt"
243
 
244
- #: admin.inc.php:310
245
  #, fuzzy
246
  msgid "Support the development"
247
  msgstr "Tacú le Forbairt"
248
 
249
- #: admin.inc.php:318
250
  msgid "Enter amount in USD: "
251
  msgstr ""
252
 
253
- #: admin.inc.php:322
254
  msgid "Send your donation to the author of"
255
  msgstr ""
256
 
257
- #: admin.inc.php:342
258
- #: admin.inc.php:367
259
- #: admin.inc.php:570
260
- #: top-10.php:266
261
- #: top-10.php:282
262
- #: top-10.php:453
263
- #: top-10.php:456
264
  msgid "Popular Posts"
265
  msgstr "Poist Coitianta"
266
 
267
- #: admin.inc.php:342
268
  msgid "Daily Popular Posts"
269
  msgstr "Poist Coitianta Laethúil"
270
 
271
- #: admin.inc.php:365
272
- #: admin.inc.php:367
273
  msgid "Top 10"
274
  msgstr "Top 10"
275
 
276
- #: admin.inc.php:478
277
  msgid "Results"
278
  msgstr "torthaí"
279
 
280
- #: admin.inc.php:480
281
- #: admin.inc.php:486
282
  msgid "of"
283
  msgstr "de"
284
 
285
- #: admin.inc.php:484
286
  msgid "Page"
287
  msgstr "Leathanach"
288
 
289
- #: admin.inc.php:498
290
  msgid "View Daily Popular Posts"
291
  msgstr "Féach ar Poist sa lá Coitianta"
292
 
293
- #: admin.inc.php:502
294
  msgid "View Overall Popular Posts"
295
  msgstr "Féach ar Poist Coitianta Foriomlán"
296
 
297
- #: admin.inc.php:506
298
  msgid "Results per-page:"
299
  msgstr "Torthaí in aghaidh an-leathanach:"
300
 
301
- #: admin.inc.php:530
302
  msgid "Previous"
303
  msgstr "roimhe Seo"
304
 
305
- #: admin.inc.php:548
306
  msgid "Next"
307
  msgstr "Ar Aghaidh"
308
 
309
- #: admin.inc.php:571
310
- #: top-10.php:227
311
- #: top-10.php:243
312
- #: top-10.php:454
313
- #: top-10.php:457
314
  msgid "Daily Popular"
315
  msgstr "laethúil Coitianta"
316
 
317
- #: admin.inc.php:582
318
  msgid "Total / Today's Views"
319
  msgstr "laethúil Coitianta"
320
 
321
- #: top-10.php:226
322
  msgid "Display the posts popular today"
323
  msgstr ""
324
 
325
- #: top-10.php:265
326
  msgid "Display the posts popular this week"
327
  msgstr ""
328
 
329
- #: top-10.php:295
330
  msgid "<h3>Popular Posts</h3>"
331
  msgstr "<h3>Poist Coitianta </ h3>"
332
 
333
- #: top-10.php:296
334
  msgid "<h3>Daily Popular</h3>"
335
  msgstr "<h3> laethúil Coitianta </ h3>"
336
 
337
- #: top-10.php:493
338
  msgid "Settings"
339
  msgstr ""
340
 
341
- #: top-10.php:495
342
  msgid "Donate"
343
  msgstr ""
344
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Roghanna shábháil go rathúil."
21
 
22
+ #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Roghanna leagtha chun Réamhshocrú."
25
 
26
+ #: admin.inc.php:73
27
  #, fuzzy
28
  msgid "Top 10 popular posts reset"
29
  msgstr "Teideal an post tóir:"
30
 
31
+ #: admin.inc.php:79
32
  #, fuzzy
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Teideal ar tóir an bpost:"
35
 
36
+ #: admin.inc.php:86
37
  msgid "Tables cleaned of duplicate rows"
38
  msgstr ""
39
 
40
+ #: admin.inc.php:98
41
  msgid "Options:"
42
  msgstr "roghanna"
43
 
44
+ #: admin.inc.php:103
45
  msgid "Format to display the count in: "
46
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
47
 
48
+ #: admin.inc.php:107
49
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
  msgstr "Bain úsáid as <code>% totalcount% </ cód> a chur ar taispeáint ar an líon iomlán agus <code>% dailycount% </ cód> a chur ar taispeáint ar an líon laethúil. e.g. na roghanna réamhshocraithe taispeántais <code> (Cuairt 123 amanna, 23 cuairt inniu) </ cód>"
51
 
52
+ #: admin.inc.php:110
53
  msgid "Number of popular posts to display: "
54
  msgstr "An líon post tóir a thaispeáint:"
55
 
56
+ #: admin.inc.php:116
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
59
 
60
+ #: admin.inc.php:123
61
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
  msgstr "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir Leathanaigh ar aghaidh a chur san áireamh."
63
 
64
+ #: admin.inc.php:129
65
  msgid "Display number of views on posts?"
66
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
67
 
68
+ #: admin.inc.php:135
69
  msgid "Display number of views on pages?"
70
  msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
71
 
72
+ #: admin.inc.php:141
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
75
 
76
+ #: admin.inc.php:147
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
79
 
80
+ #: admin.inc.php:153
81
  #, fuzzy
82
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
  msgstr "Post Force laethúil 'liosta a bheith dinimiciúil? Úsáideann sé seo roghanna JavaScript a luchtú ar an bpost agus is féidir a mhéadú do chuid ama a luchtú leathanach"
84
 
85
+ #: admin.inc.php:159
86
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
  msgstr "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? Tá colún breise curtha leo le líon"
88
 
89
+ #: admin.inc.php:165
90
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
  msgstr "Tá nasc chuig an breiseán seo a leanas mar mhír liosta breise le liosta de phoist tóir. Gan éigeantach, ach a bhuíochas má dhéanann tú é!"
92
 
93
+ #: admin.inc.php:169
94
  #, fuzzy
95
  msgid "Output Options:"
96
  msgstr "roghanna"
97
 
98
+ #: admin.inc.php:173
99
  msgid "Title of popular posts: "
100
  msgstr "Teideal an post tóir:"
101
 
102
+ #: admin.inc.php:179
103
  msgid "Title of daily popular posts: "
104
  msgstr "Teideal ar tóir an bpost:"
105
 
106
+ #: admin.inc.php:186
107
  msgid "Show post excerpt in list?"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:191
111
  msgid "Length of excerpt (in words): "
112
  msgstr ""
113
 
114
+ #: admin.inc.php:195
115
  msgid "Exclude Categories: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:210
119
  msgid "Customize the output:"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:213
123
  #, fuzzy
124
  msgid "HTML to display before the list of posts: "
125
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
126
 
127
+ #: admin.inc.php:219
128
  #, fuzzy
129
  msgid "HTML to display before each list item: "
130
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
131
 
132
+ #: admin.inc.php:225
133
  #, fuzzy
134
  msgid "HTML to display after each list item: "
135
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
136
 
137
+ #: admin.inc.php:231
138
  #, fuzzy
139
  msgid "HTML to display after the list of posts: "
140
  msgstr "Formáid a thaispeáint ar an comhaireamh i:"
141
 
142
+ #: admin.inc.php:235
143
  msgid "Post thumbnail options:"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:239
147
  #, fuzzy
148
+ msgid "Display thumbnails inline with posts, before title"
149
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
150
 
151
+ #: admin.inc.php:243
152
+ #, fuzzy
153
+ msgid "Display thumbnails inline with posts, after title"
154
+ msgstr "Taispeáin líon na dtuairimí ar phoist?"
155
+
156
+ #: admin.inc.php:247
157
  #, fuzzy
158
  msgid "Display only thumbnails, no text"
159
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
160
 
161
+ #: admin.inc.php:251
162
  #, fuzzy
163
  msgid "Do not display thumbnails, only text."
164
  msgstr "Taispeáin líon na dtuairimí ar phoist?"
165
 
166
+ #: admin.inc.php:256
167
  msgid "Post thumbnail meta field (the meta should point to the image source): "
168
  msgstr ""
169
 
170
+ #: admin.inc.php:263
171
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:266
175
  msgid "Thumbnail dimensions:"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:268
179
  msgid "Max width: "
180
  msgstr ""
181
 
182
+ #: admin.inc.php:273
183
  msgid "Max height: "
184
  msgstr ""
185
 
186
+ #: admin.inc.php:277
187
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
188
  msgstr ""
189
 
190
+ #: admin.inc.php:282
191
  msgid "Do you want to set options to Default?"
192
  msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
193
 
194
+ #: admin.inc.php:285
195
  msgid "Reset count"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:288
199
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:291
203
  msgid "Are you sure you want to reset the popular posts?"
204
  msgstr ""
205
 
206
+ #: admin.inc.php:292
207
  msgid "Are you sure you want to reset the daily popular posts?"
208
  msgstr ""
209
 
210
+ #: admin.inc.php:293
211
  msgid "This will delete the duplicate entries in the tables. Proceed?"
212
  msgstr ""
213
 
214
+ #: admin.inc.php:300
215
  msgid "Quick links"
216
  msgstr ""
217
 
218
+ #: admin.inc.php:302
219
  #, fuzzy
220
  msgid "Top 10 "
221
  msgstr "Top 10"
222
 
223
+ #: admin.inc.php:302
224
  msgid "plugin page"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:303
228
  msgid "Other plugins"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:304
232
  msgid "Ajay's blog"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:305
236
+ #: top-10.php:515
237
  msgid "Support"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:306
241
  msgid "Follow @ajaydsouza on Twitter"
242
  msgstr ""
243
 
244
+ #: admin.inc.php:310
245
  #, fuzzy
246
  msgid "Recent developments"
247
  msgstr "Tacú le Forbairt"
248
 
249
+ #: admin.inc.php:315
250
  #, fuzzy
251
  msgid "Support the development"
252
  msgstr "Tacú le Forbairt"
253
 
254
+ #: admin.inc.php:323
255
  msgid "Enter amount in USD: "
256
  msgstr ""
257
 
258
+ #: admin.inc.php:327
259
  msgid "Send your donation to the author of"
260
  msgstr ""
261
 
262
+ #: admin.inc.php:347
263
+ #: admin.inc.php:372
264
+ #: admin.inc.php:575
265
+ #: top-10.php:257
266
+ #: top-10.php:273
267
+ #: top-10.php:445
268
+ #: top-10.php:448
269
  msgid "Popular Posts"
270
  msgstr "Poist Coitianta"
271
 
272
+ #: admin.inc.php:347
273
  msgid "Daily Popular Posts"
274
  msgstr "Poist Coitianta Laethúil"
275
 
276
+ #: admin.inc.php:370
277
+ #: admin.inc.php:372
278
  msgid "Top 10"
279
  msgstr "Top 10"
280
 
281
+ #: admin.inc.php:483
282
  msgid "Results"
283
  msgstr "torthaí"
284
 
285
+ #: admin.inc.php:485
286
+ #: admin.inc.php:491
287
  msgid "of"
288
  msgstr "de"
289
 
290
+ #: admin.inc.php:489
291
  msgid "Page"
292
  msgstr "Leathanach"
293
 
294
+ #: admin.inc.php:503
295
  msgid "View Daily Popular Posts"
296
  msgstr "Féach ar Poist sa lá Coitianta"
297
 
298
+ #: admin.inc.php:507
299
  msgid "View Overall Popular Posts"
300
  msgstr "Féach ar Poist Coitianta Foriomlán"
301
 
302
+ #: admin.inc.php:511
303
  msgid "Results per-page:"
304
  msgstr "Torthaí in aghaidh an-leathanach:"
305
 
306
+ #: admin.inc.php:535
307
  msgid "Previous"
308
  msgstr "roimhe Seo"
309
 
310
+ #: admin.inc.php:553
311
  msgid "Next"
312
  msgstr "Ar Aghaidh"
313
 
314
+ #: admin.inc.php:576
315
+ #: top-10.php:219
316
+ #: top-10.php:235
317
+ #: top-10.php:446
318
+ #: top-10.php:449
319
  msgid "Daily Popular"
320
  msgstr "laethúil Coitianta"
321
 
322
+ #: admin.inc.php:587
323
  msgid "Total / Today's Views"
324
  msgstr "laethúil Coitianta"
325
 
326
+ #: top-10.php:218
327
  msgid "Display the posts popular today"
328
  msgstr ""
329
 
330
+ #: top-10.php:256
331
  msgid "Display the posts popular this week"
332
  msgstr ""
333
 
334
+ #: top-10.php:286
335
  msgid "<h3>Popular Posts</h3>"
336
  msgstr "<h3>Poist Coitianta </ h3>"
337
 
338
+ #: top-10.php:287
339
  msgid "<h3>Daily Popular</h3>"
340
  msgstr "<h3> laethúil Coitianta </ h3>"
341
 
342
+ #: top-10.php:514
343
  msgid "Settings"
344
  msgstr ""
345
 
346
+ #: top-10.php:516
347
  msgid "Donate"
348
  msgstr ""
349
 
languages/tptn-hi_IN.mo CHANGED
Binary file
languages/tptn-hi_IN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-08-17 22:14-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
@@ -12,315 +12,333 @@ msgstr ""
12
  "X-Poedit-Language: Hindi\n"
13
  "X-Poedit-Country: INDIA\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
 
 
 
15
 
16
- #: admin.inc.php:57
17
  msgid "Options saved successfully."
18
  msgstr "विकल्प सफलतापूर्वक बचाया."
19
 
20
- #: admin.inc.php:66
21
  msgid "Options set to Default."
22
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
23
 
24
- #: admin.inc.php:72
25
  #, fuzzy
26
  msgid "Top 10 popular posts reset"
27
  msgstr "लोकप्रिय पदों का शीर्षक:"
28
 
29
- #: admin.inc.php:78
30
  #, fuzzy
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
33
 
34
- #: admin.inc.php:85
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr ""
37
 
38
- #: admin.inc.php:97
39
  msgid "Options:"
40
  msgstr "विकल्प हैं:"
41
 
42
- #: admin.inc.php:102
43
  msgid "Format to display the count in: "
44
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
45
 
46
- #: admin.inc.php:106
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>% dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> (दौरा 123 बार, 23 का दौरा आज) </ कोड>"
49
 
50
- #: admin.inc.php:109
51
  msgid "Number of popular posts to display: "
52
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
53
 
54
- #: admin.inc.php:115
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
57
 
58
- #: admin.inc.php:122
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:128
63
  msgid "Display number of views on posts?"
64
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
65
 
66
- #: admin.inc.php:134
67
  msgid "Display number of views on pages?"
68
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
69
 
70
- #: admin.inc.php:140
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
73
 
74
- #: admin.inc.php:146
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
77
 
78
- #: admin.inc.php:152
79
  #, fuzzy
80
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
81
  msgstr "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
82
 
83
- #: admin.inc.php:158
84
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
85
  msgstr "प्रदर्शन संपादित करें पदों पर पृष्ठ विचार / WP में पृष्ठों-व्यवस्थापक? एक अतिरिक्त कॉलम गिनती के साथ जोड़ दिया है"
86
 
87
- #: admin.inc.php:164
88
  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!"
89
  msgstr "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
90
 
91
- #: admin.inc.php:168
92
  #, fuzzy
93
  msgid "Output Options:"
94
  msgstr "विकल्प हैं:"
95
 
96
- #: admin.inc.php:172
97
  msgid "Title of popular posts: "
98
  msgstr "लोकप्रिय पदों का शीर्षक:"
99
 
100
- #: admin.inc.php:178
101
  msgid "Title of daily popular posts: "
102
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
103
 
104
- #: admin.inc.php:185
105
  msgid "Show post excerpt in list?"
106
  msgstr ""
107
 
108
- #: admin.inc.php:190
109
  msgid "Length of excerpt (in words): "
110
  msgstr ""
111
 
112
- #: admin.inc.php:194
113
  msgid "Exclude Categories: "
114
  msgstr ""
115
 
116
- #: admin.inc.php:209
117
  msgid "Customize the output:"
118
  msgstr ""
119
 
120
- #: admin.inc.php:212
121
  msgid "HTML to display before the list of posts: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:218
125
  msgid "HTML to display before each list item: "
126
  msgstr ""
127
 
128
- #: admin.inc.php:224
129
  #, fuzzy
130
  msgid "HTML to display after each list item: "
131
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
132
 
133
- #: admin.inc.php:230
134
  msgid "HTML to display after the list of posts: "
135
  msgstr ""
136
 
137
- #: admin.inc.php:234
138
  msgid "Post thumbnail options:"
139
  msgstr ""
140
 
141
- #: admin.inc.php:238
142
  #, fuzzy
143
- msgid "Display thumbnails inline with posts"
144
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
145
 
146
- #: admin.inc.php:242
 
 
 
 
 
147
  msgid "Display only thumbnails, no text"
148
  msgstr ""
149
 
150
- #: admin.inc.php:246
151
  msgid "Do not display thumbnails, only text."
152
  msgstr ""
153
 
154
- #: admin.inc.php:251
155
  msgid "Post thumbnail meta field (the meta should point to the image source): "
156
  msgstr ""
157
 
158
- #: admin.inc.php:258
159
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
  msgstr ""
161
 
162
- #: admin.inc.php:261
163
  msgid "Thumbnail dimensions:"
164
  msgstr ""
165
 
166
- #: admin.inc.php:263
167
  msgid "Max width: "
168
  msgstr ""
169
 
170
- #: admin.inc.php:268
171
  msgid "Max height: "
172
  msgstr ""
173
 
174
- #: admin.inc.php:272
175
- 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:"
176
  msgstr ""
177
 
178
- #: admin.inc.php:277
179
  msgid "Do you want to set options to Default?"
180
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
181
 
182
- #: admin.inc.php:280
183
  msgid "Reset count"
184
  msgstr ""
185
 
186
- #: admin.inc.php:283
187
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
  msgstr ""
189
 
190
- #: admin.inc.php:286
191
  msgid "Are you sure you want to reset the popular posts?"
192
  msgstr ""
193
 
194
- #: admin.inc.php:287
195
  msgid "Are you sure you want to reset the daily popular posts?"
196
  msgstr ""
197
 
198
- #: admin.inc.php:288
199
  msgid "This will delete the duplicate entries in the tables. Proceed?"
200
  msgstr ""
201
 
202
- #: admin.inc.php:295
203
  msgid "Quick links"
204
  msgstr ""
205
 
206
- #: admin.inc.php:297
207
  #, fuzzy
208
  msgid "Top 10 "
209
  msgstr "शीर्ष 10"
210
 
211
- #: admin.inc.php:297
212
  msgid "plugin page"
213
  msgstr ""
214
 
215
- #: admin.inc.php:298
216
  msgid "Other plugins"
217
  msgstr ""
218
 
219
- #: admin.inc.php:299
220
  msgid "Ajay's blog"
221
  msgstr ""
222
 
223
- #: admin.inc.php:300
224
- #: top-10.php:456
225
  msgid "Support"
226
  msgstr ""
227
 
228
- #: admin.inc.php:301
229
  msgid "Follow @ajaydsouza on Twitter"
230
  msgstr ""
231
 
232
- #: admin.inc.php:305
233
  msgid "Recent developments"
234
  msgstr ""
235
 
236
- #: admin.inc.php:310
237
  #, fuzzy
238
  msgid "Support the development"
239
  msgstr "समर्थन विकास"
240
 
241
- #: admin.inc.php:318
242
  msgid "Enter amount in USD: "
243
  msgstr ""
244
 
245
- #: admin.inc.php:322
246
  msgid "Send your donation to the author of"
247
  msgstr ""
248
 
249
- #: admin.inc.php:342
250
- #: admin.inc.php:367
251
- #: admin.inc.php:570
252
- #: top-10.php:249
253
- #: top-10.php:415
254
- #: top-10.php:418
 
255
  msgid "Popular Posts"
256
  msgstr "लोकप्रिय पोस्ट्स "
257
 
258
- #: admin.inc.php:342
259
  msgid "Daily Popular Posts"
260
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
261
 
262
- #: admin.inc.php:365
263
- #: admin.inc.php:367
264
  msgid "Top 10"
265
  msgstr "शीर्ष 10"
266
 
267
- #: admin.inc.php:478
268
  msgid "Results"
269
  msgstr "परिणाम"
270
 
271
- #: admin.inc.php:480
272
- #: admin.inc.php:486
273
  msgid "of"
274
  msgstr "का"
275
 
276
- #: admin.inc.php:484
277
  msgid "Page"
278
  msgstr "पृष्ठ"
279
 
280
- #: admin.inc.php:498
281
  msgid "View Daily Popular Posts"
282
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
283
 
284
- #: admin.inc.php:502
285
  msgid "View Overall Popular Posts"
286
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
287
 
288
- #: admin.inc.php:506
289
  msgid "Results per-page:"
290
  msgstr "प्रति परिणाम पृष्ठ:"
291
 
292
- #: admin.inc.php:530
293
  msgid "Previous"
294
  msgstr "पिछला"
295
 
296
- #: admin.inc.php:548
297
  msgid "Next"
298
  msgstr "अगला"
299
 
300
- #: admin.inc.php:571
301
- #: top-10.php:228
302
- #: top-10.php:416
303
- #: top-10.php:419
 
304
  msgid "Daily Popular"
305
  msgstr "दैनिक लोकप्रिय"
306
 
307
- #: admin.inc.php:582
308
  msgid "Total / Today's Views"
309
  msgstr "कुल / आज दर्शाव"
310
 
311
- #: top-10.php:260
 
 
 
 
 
 
 
 
312
  msgid "<h3>Popular Posts</h3>"
313
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
314
 
315
- #: top-10.php:261
316
  msgid "<h3>Daily Popular</h3>"
317
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
318
 
319
- #: top-10.php:455
320
  msgid "Settings"
321
  msgstr ""
322
 
323
- #: top-10.php:457
324
  msgid "Donate"
325
  msgstr ""
326
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:22-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
12
  "X-Poedit-Language: Hindi\n"
13
  "X-Poedit-Country: INDIA\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-Basepath: ../\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:58
20
  msgid "Options saved successfully."
21
  msgstr "विकल्प सफलतापूर्वक बचाया."
22
 
23
+ #: admin.inc.php:67
24
  msgid "Options set to Default."
25
  msgstr "विकल्प डिफ़ॉल्ट से तैयार है."
26
 
27
+ #: admin.inc.php:73
28
  #, fuzzy
29
  msgid "Top 10 popular posts reset"
30
  msgstr "लोकप्रिय पदों का शीर्षक:"
31
 
32
+ #: admin.inc.php:79
33
  #, fuzzy
34
  msgid "Top 10 daily popular posts reset"
35
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
36
 
37
+ #: admin.inc.php:86
38
  msgid "Tables cleaned of duplicate rows"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:98
42
  msgid "Options:"
43
  msgstr "विकल्प हैं:"
44
 
45
+ #: admin.inc.php:103
46
  msgid "Format to display the count in: "
47
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
48
 
49
+ #: admin.inc.php:107
50
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
51
  msgstr "का प्रयोग करें <code>% totalcount% </ कोड> कुल संख्या प्रदर्शित करने के लिए और <code>% dailycount% </ कोड> को दैनिक गणना प्रदर्शन. उदाहरण डिफ़ॉल्ट विकल्प प्रदर्शित <code> (दौरा 123 बार, 23 का दौरा आज) </ कोड>"
52
 
53
+ #: admin.inc.php:110
54
  msgid "Number of popular posts to display: "
55
  msgstr "लोकप्रिय पदों की संख्या प्रदर्शित करने के लिए:"
56
 
57
+ #: admin.inc.php:116
58
  msgid "Daily Popular should contain views of how many days? "
59
  msgstr "दैनिक लोकप्रिय कितने दिनों के विचारों को शामिल करना चाहिए?"
60
 
61
+ #: admin.inc.php:123
62
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
63
  msgstr "लोकप्रिय के प्रदर्शन में पेज बाहर निकालें पोस्ट? पन्नों पर विचार की संख्या की गिनती जारी रहेगी."
64
 
65
+ #: admin.inc.php:129
66
  msgid "Display number of views on posts?"
67
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
68
 
69
+ #: admin.inc.php:135
70
  msgid "Display number of views on pages?"
71
  msgstr "पन्नों पर विचार के प्रदर्शन की संख्या?"
72
 
73
+ #: admin.inc.php:141
74
  msgid "Track visits of authors on their own posts?"
75
  msgstr "ट्रैक लेखक के अपने पदों पर यात्रा?"
76
 
77
+ #: admin.inc.php:147
78
  msgid "Display number of page views in popular lists?"
79
  msgstr "लोकप्रिय सूची में पृष्ठ विचारों का प्रदर्शन नंबर?"
80
 
81
+ #: admin.inc.php:153
82
  #, fuzzy
83
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
84
  msgstr "सेना दैनिक 'पदों की सूची गतिशील हो? इस विकल्प को पद भार जावास्क्रिप्ट का उपयोग करता है और अपने पृष्ठ लोड समय बढ़ा सकते हैं"
85
 
86
+ #: admin.inc.php:159
87
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
88
  msgstr "प्रदर्शन संपादित करें पदों पर पृष्ठ विचार / WP में पृष्ठों-व्यवस्थापक? एक अतिरिक्त कॉलम गिनती के साथ जोड़ दिया है"
89
 
90
+ #: admin.inc.php:165
91
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
92
  msgstr "प्लगइन के लिए एक कड़ी लोकप्रिय पदों की सूची के लिए एक अतिरिक्त सूची आइटम के रूप में जोड़ा है. नहीं अनिवार्य है, लेकिन धन्यवाद यदि तुम इसे करो!"
93
 
94
+ #: admin.inc.php:169
95
  #, fuzzy
96
  msgid "Output Options:"
97
  msgstr "विकल्प हैं:"
98
 
99
+ #: admin.inc.php:173
100
  msgid "Title of popular posts: "
101
  msgstr "लोकप्रिय पदों का शीर्षक:"
102
 
103
+ #: admin.inc.php:179
104
  msgid "Title of daily popular posts: "
105
  msgstr "दैनिक लोकप्रिय पदों का शीर्षक:"
106
 
107
+ #: admin.inc.php:186
108
  msgid "Show post excerpt in list?"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:191
112
  msgid "Length of excerpt (in words): "
113
  msgstr ""
114
 
115
+ #: admin.inc.php:195
116
  msgid "Exclude Categories: "
117
  msgstr ""
118
 
119
+ #: admin.inc.php:210
120
  msgid "Customize the output:"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:213
124
  msgid "HTML to display before the list of posts: "
125
  msgstr ""
126
 
127
+ #: admin.inc.php:219
128
  msgid "HTML to display before each list item: "
129
  msgstr ""
130
 
131
+ #: admin.inc.php:225
132
  #, fuzzy
133
  msgid "HTML to display after each list item: "
134
  msgstr "प्रारूप में गिनती प्रदर्शित करने के लिए:"
135
 
136
+ #: admin.inc.php:231
137
  msgid "HTML to display after the list of posts: "
138
  msgstr ""
139
 
140
+ #: admin.inc.php:235
141
  msgid "Post thumbnail options:"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:239
145
  #, fuzzy
146
+ msgid "Display thumbnails inline with posts, before title"
147
  msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
148
 
149
+ #: admin.inc.php:243
150
+ #, fuzzy
151
+ msgid "Display thumbnails inline with posts, after title"
152
+ msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
153
+
154
+ #: admin.inc.php:247
155
  msgid "Display only thumbnails, no text"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:251
159
  msgid "Do not display thumbnails, only text."
160
  msgstr ""
161
 
162
+ #: admin.inc.php:256
163
  msgid "Post thumbnail meta field (the meta should point to the image source): "
164
  msgstr ""
165
 
166
+ #: admin.inc.php:263
167
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:266
171
  msgid "Thumbnail dimensions:"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:268
175
  msgid "Max width: "
176
  msgstr ""
177
 
178
+ #: admin.inc.php:273
179
  msgid "Max height: "
180
  msgstr ""
181
 
182
+ #: admin.inc.php:277
183
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
184
  msgstr ""
185
 
186
+ #: admin.inc.php:282
187
  msgid "Do you want to set options to Default?"
188
  msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
189
 
190
+ #: admin.inc.php:285
191
  msgid "Reset count"
192
  msgstr ""
193
 
194
+ #: admin.inc.php:288
195
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:291
199
  msgid "Are you sure you want to reset the popular posts?"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:292
203
  msgid "Are you sure you want to reset the daily popular posts?"
204
  msgstr ""
205
 
206
+ #: admin.inc.php:293
207
  msgid "This will delete the duplicate entries in the tables. Proceed?"
208
  msgstr ""
209
 
210
+ #: admin.inc.php:300
211
  msgid "Quick links"
212
  msgstr ""
213
 
214
+ #: admin.inc.php:302
215
  #, fuzzy
216
  msgid "Top 10 "
217
  msgstr "शीर्ष 10"
218
 
219
+ #: admin.inc.php:302
220
  msgid "plugin page"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:303
224
  msgid "Other plugins"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:304
228
  msgid "Ajay's blog"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:305
232
+ #: top-10.php:515
233
  msgid "Support"
234
  msgstr ""
235
 
236
+ #: admin.inc.php:306
237
  msgid "Follow @ajaydsouza on Twitter"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:310
241
  msgid "Recent developments"
242
  msgstr ""
243
 
244
+ #: admin.inc.php:315
245
  #, fuzzy
246
  msgid "Support the development"
247
  msgstr "समर्थन विकास"
248
 
249
+ #: admin.inc.php:323
250
  msgid "Enter amount in USD: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:327
254
  msgid "Send your donation to the author of"
255
  msgstr ""
256
 
257
+ #: admin.inc.php:347
258
+ #: admin.inc.php:372
259
+ #: admin.inc.php:575
260
+ #: top-10.php:257
261
+ #: top-10.php:273
262
+ #: top-10.php:445
263
+ #: top-10.php:448
264
  msgid "Popular Posts"
265
  msgstr "लोकप्रिय पोस्ट्स "
266
 
267
+ #: admin.inc.php:347
268
  msgid "Daily Popular Posts"
269
  msgstr "दैनिक लोकप्रिय पोस्ट्स "
270
 
271
+ #: admin.inc.php:370
272
+ #: admin.inc.php:372
273
  msgid "Top 10"
274
  msgstr "शीर्ष 10"
275
 
276
+ #: admin.inc.php:483
277
  msgid "Results"
278
  msgstr "परिणाम"
279
 
280
+ #: admin.inc.php:485
281
+ #: admin.inc.php:491
282
  msgid "of"
283
  msgstr "का"
284
 
285
+ #: admin.inc.php:489
286
  msgid "Page"
287
  msgstr "पृष्ठ"
288
 
289
+ #: admin.inc.php:503
290
  msgid "View Daily Popular Posts"
291
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
292
 
293
+ #: admin.inc.php:507
294
  msgid "View Overall Popular Posts"
295
  msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
296
 
297
+ #: admin.inc.php:511
298
  msgid "Results per-page:"
299
  msgstr "प्रति परिणाम पृष्ठ:"
300
 
301
+ #: admin.inc.php:535
302
  msgid "Previous"
303
  msgstr "पिछला"
304
 
305
+ #: admin.inc.php:553
306
  msgid "Next"
307
  msgstr "अगला"
308
 
309
+ #: admin.inc.php:576
310
+ #: top-10.php:219
311
+ #: top-10.php:235
312
+ #: top-10.php:446
313
+ #: top-10.php:449
314
  msgid "Daily Popular"
315
  msgstr "दैनिक लोकप्रिय"
316
 
317
+ #: admin.inc.php:587
318
  msgid "Total / Today's Views"
319
  msgstr "कुल / आज दर्शाव"
320
 
321
+ #: top-10.php:218
322
+ msgid "Display the posts popular today"
323
+ msgstr ""
324
+
325
+ #: top-10.php:256
326
+ msgid "Display the posts popular this week"
327
+ msgstr ""
328
+
329
+ #: top-10.php:286
330
  msgid "<h3>Popular Posts</h3>"
331
  msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
332
 
333
+ #: top-10.php:287
334
  msgid "<h3>Daily Popular</h3>"
335
  msgstr "<h3> दैनिक लोकप्रिय </ h3>"
336
 
337
+ #: top-10.php:514
338
  msgid "Settings"
339
  msgstr ""
340
 
341
+ #: top-10.php:516
342
  msgid "Donate"
343
  msgstr ""
344
 
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: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
@@ -15,319 +15,333 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:57
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
- #: admin.inc.php:66
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:72
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
- #: admin.inc.php:78
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
- #: admin.inc.php:85
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "I duplicati sono stati rimossi dalle tabelle"
37
 
38
- #: admin.inc.php:97
39
  msgid "Options:"
40
  msgstr "Opzioni:"
41
 
42
- #: admin.inc.php:102
43
  msgid "Format to display the count in: "
44
  msgstr "Formato per il conteggio:"
45
 
46
- #: admin.inc.php:106
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:109
51
  msgid "Number of popular posts to display: "
52
  msgstr "Numero degli articoli più popolari da mostrare:"
53
 
54
- #: admin.inc.php:115
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:122
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:128
63
  msgid "Display number of views on posts?"
64
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
65
 
66
- #: admin.inc.php:134
67
  msgid "Display number of views on pages?"
68
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
69
 
70
- #: admin.inc.php:140
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:146
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:152
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione utilizza un JavaScript per il caricamento dell'articolo e di conseguenza potrà fare aumentare i tempi di caricamento della stessa pagina"
81
 
82
- #: admin.inc.php:158
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:164
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:168
91
  msgid "Output Options:"
92
  msgstr "Opzioni output:"
93
 
94
- #: admin.inc.php:172
95
  msgid "Title of popular posts: "
96
  msgstr "Titolo per gli articoli più popolari:"
97
 
98
- #: admin.inc.php:178
99
  msgid "Title of daily popular posts: "
100
  msgstr "Titolo per gli articoli più popolari del giorno:"
101
 
102
- #: admin.inc.php:185
103
  msgid "Show post excerpt in list?"
104
  msgstr "Desideri mostrare gli estratti?"
105
 
106
- #: admin.inc.php:190
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Lunghezza estratto (in parole):"
109
 
110
- #: admin.inc.php:194
111
  msgid "Exclude Categories: "
112
  msgstr "Escludi categorie:"
113
 
114
- #: admin.inc.php:209
115
  msgid "Customize the output:"
116
  msgstr "Personalizzazione output:"
117
 
118
- #: admin.inc.php:212
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
121
 
122
- #: admin.inc.php:218
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
125
 
126
- #: admin.inc.php:224
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML da mostrare dopo ogni lista:"
129
 
130
- #: admin.inc.php:230
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML da mostrare dopo la lista degli articoli:"
133
 
134
- #: admin.inc.php:234
135
  msgid "Post thumbnail options:"
136
  msgstr "Opzioni miniature articolo:"
137
 
138
- #: admin.inc.php:238
139
- msgid "Display thumbnails inline with posts"
140
- msgstr "Desideri mostrare gli articoli con le miniature inline?"
141
 
142
- #: admin.inc.php:242
 
 
 
 
143
  msgid "Display only thumbnails, no text"
144
  msgstr "Mostra le sole miniature, nessun testo"
145
 
146
- #: admin.inc.php:246
147
  msgid "Do not display thumbnails, only text."
148
  msgstr "Non mostrare le miniature, solo testo."
149
 
150
- #: admin.inc.php:251
151
  msgid "Post thumbnail meta field (the meta should point to the image source): "
152
  msgstr "Campo meta per le miniature (il meta deve puntare alla immagine):"
153
 
154
- #: admin.inc.php:258
155
  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"
156
  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"
157
 
158
- #: admin.inc.php:261
159
  msgid "Thumbnail dimensions:"
160
  msgstr "Dimensione miniature:"
161
 
162
- #: admin.inc.php:263
163
  msgid "Max width: "
164
  msgstr "Larghezza massima:"
165
 
166
- #: admin.inc.php:268
167
  msgid "Max height: "
168
  msgstr "Altezza massima:"
169
 
170
- #: admin.inc.php:272
171
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
172
- msgstr "Come prima operazione, il plugin controllerà la presenza di una miniatura nell'articolo. Nel caso in cui non fosse presente, verificherà il campo meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come specificato qui sotto:"
173
-
174
  #: admin.inc.php:277
 
 
 
 
175
  msgid "Do you want to set options to Default?"
176
  msgstr "Desideri ripristinare alle predefinite?"
177
 
178
- #: admin.inc.php:280
179
  msgid "Reset count"
180
  msgstr "Ripristino conteggio"
181
 
182
- #: admin.inc.php:283
183
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
184
  msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
185
 
186
- #: admin.inc.php:286
187
  msgid "Are you sure you want to reset the popular posts?"
188
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
189
 
190
- #: admin.inc.php:287
191
  msgid "Are you sure you want to reset the daily popular posts?"
192
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
193
 
194
- #: admin.inc.php:288
195
  msgid "This will delete the duplicate entries in the tables. Proceed?"
196
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
197
 
198
- #: admin.inc.php:295
199
  msgid "Quick links"
200
  msgstr "Collegamenti veloci"
201
 
202
- #: admin.inc.php:297
203
  msgid "Top 10 "
204
  msgstr "Top 10"
205
 
206
- #: admin.inc.php:297
207
  msgid "plugin page"
208
  msgstr "pagina plugin"
209
 
210
- #: admin.inc.php:298
211
  msgid "Other plugins"
212
  msgstr "Altri plugin"
213
 
214
- #: admin.inc.php:299
215
  msgid "Ajay's blog"
216
  msgstr "Il blog di Ajay"
217
 
218
- #: admin.inc.php:300
219
- #: top-10.php:494
220
  msgid "Support"
221
  msgstr "Supporto"
222
 
223
- #: admin.inc.php:301
224
  msgid "Follow @ajaydsouza on Twitter"
225
  msgstr "Segui @ajaydsouza su Twitter"
226
 
227
- #: admin.inc.php:305
228
  msgid "Recent developments"
229
  msgstr "Sviluppi recenti"
230
 
231
- #: admin.inc.php:310
232
  msgid "Support the development"
233
  msgstr "Sostieni lo sviluppo"
234
 
235
- #: admin.inc.php:318
236
  msgid "Enter amount in USD: "
237
  msgstr "Inserisci la cifra in USD: "
238
 
239
- #: admin.inc.php:322
240
  msgid "Send your donation to the author of"
241
  msgstr "Invia la tua donazione all'autore di"
242
 
243
- #: admin.inc.php:342
244
- #: admin.inc.php:367
245
- #: admin.inc.php:570
246
- #: top-10.php:266
247
- #: top-10.php:282
248
- #: top-10.php:453
249
- #: top-10.php:456
250
  msgid "Popular Posts"
251
  msgstr "Gli articoli più popolari"
252
 
253
- #: admin.inc.php:342
254
  msgid "Daily Popular Posts"
255
  msgstr "Gli articoli più popolari di oggi"
256
 
257
- #: admin.inc.php:365
258
- #: admin.inc.php:367
259
  msgid "Top 10"
260
  msgstr "Top 10"
261
 
262
- #: admin.inc.php:478
263
  msgid "Results"
264
  msgstr "Risultati"
265
 
266
- #: admin.inc.php:480
267
- #: admin.inc.php:486
268
  msgid "of"
269
  msgstr "di"
270
 
271
- #: admin.inc.php:484
272
  msgid "Page"
273
  msgstr "Pagina"
274
 
275
- #: admin.inc.php:498
276
  msgid "View Daily Popular Posts"
277
  msgstr "Visualizza gli articoli più letti di oggi"
278
 
279
- #: admin.inc.php:502
280
  msgid "View Overall Popular Posts"
281
  msgstr "Visualizza panoramica articoli più popolari"
282
 
283
- #: admin.inc.php:506
284
  msgid "Results per-page:"
285
  msgstr "Risultati per pagina:"
286
 
287
- #: admin.inc.php:530
288
  msgid "Previous"
289
  msgstr "Precedente"
290
 
291
- #: admin.inc.php:548
292
  msgid "Next"
293
  msgstr "Successiva"
294
 
295
- #: admin.inc.php:571
296
- #: top-10.php:227
297
- #: top-10.php:243
298
- #: top-10.php:454
299
- #: top-10.php:457
300
  msgid "Daily Popular"
301
  msgstr "I più letti di oggi"
302
 
303
- #: admin.inc.php:582
304
  msgid "Total / Today's Views"
305
  msgstr "Totale / Visualizzazioni odierne"
306
 
307
- #: top-10.php:226
308
  msgid "Display the posts popular today"
309
  msgstr "Mostra gli articoli più popolari di oggi"
310
 
311
- #: top-10.php:265
312
  msgid "Display the posts popular this week"
313
  msgstr "Mostra articoli più popolari settimana in corso"
314
 
315
- #: top-10.php:295
316
  msgid "<h3>Popular Posts</h3>"
317
  msgstr "<h3>Articoli più letti</h3>"
318
 
319
- #: top-10.php:296
320
  msgid "<h3>Daily Popular</h3>"
321
  msgstr "<h3>I più letti di oggi</h3>"
322
 
323
- #: top-10.php:493
324
  msgid "Settings"
325
  msgstr "Impostazioni"
326
 
327
- #: top-10.php:495
328
  msgid "Donate"
329
  msgstr "Donazione"
330
 
 
 
 
 
 
 
 
 
 
 
331
  #~ msgid "Support forum"
332
  #~ msgstr "Forum di supporto"
333
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10 in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:22-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
  "Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate con successo."
21
 
22
+ #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Ripristino 10 articoli più popolari"
29
 
30
+ #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Ripristino 10 articoli più popolari del giorno"
33
 
34
+ #: admin.inc.php:86
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "I duplicati sono stati rimossi dalle tabelle"
37
 
38
+ #: admin.inc.php:98
39
  msgid "Options:"
40
  msgstr "Opzioni:"
41
 
42
+ #: admin.inc.php:103
43
  msgid "Format to display the count in: "
44
  msgstr "Formato per il conteggio:"
45
 
46
+ #: admin.inc.php:107
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Utilizza <code>%totalcount%</code> per potere mostrare il computo totale e <code>%dailycount%</code> per visualizzare quello del giorno corrente. Ad esempio, le opzioni predefinite verranno mostrate online con un <code>(letto 123 volte, 23 visite odierne)</code>"
49
 
50
+ #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Numero degli articoli più popolari da mostrare:"
53
 
54
+ #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "Quanti giorni desideri siano considerati per il computo delle visualizzazioni per articoli più popolari del giorno?"
57
 
58
+ #: admin.inc.php:123
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Desideri escludere le pagine dalla visualizzazione per gli articoli più popolari? Il numero delle visualizzazioni continuerà ad essere comunque aggiornato."
61
 
62
+ #: admin.inc.php:129
63
  msgid "Display number of views on posts?"
64
  msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
65
 
66
+ #: admin.inc.php:135
67
  msgid "Display number of views on pages?"
68
  msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
69
 
70
+ #: admin.inc.php:141
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Desideri che vengano conteggiate anche le visite da parte dell'amministatore del sito?"
73
 
74
+ #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Desideri mostrare il numero delle visualizzazioni per pagina nella lista dei più popolari?"
77
 
78
+ #: admin.inc.php:153
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Desideri che la lista degli articoli odierni sia dinamica? Questa opzione utilizza un JavaScript per il caricamento dell'articolo e di conseguenza potrà fare aumentare i tempi di caricamento della stessa pagina"
81
 
82
+ #: admin.inc.php:159
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "Desideri mostrare il totale delle visualizzazioni sotto Modifica Articoli/Pagine in WP-Admin? Se sì, verrà aggiunta una nuova sezione (a nome Top 10) con i conteggi nel dettaglio"
85
 
86
+ #: admin.inc.php:165
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Nella lista dei tuoi articoli più popolari é stato aggiunto un link alla pagina del plugin. Ti sarei molto grato qualora non disattivassi questa opzione!"
89
 
90
+ #: admin.inc.php:169
91
  msgid "Output Options:"
92
  msgstr "Opzioni output:"
93
 
94
+ #: admin.inc.php:173
95
  msgid "Title of popular posts: "
96
  msgstr "Titolo per gli articoli più popolari:"
97
 
98
+ #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Titolo per gli articoli più popolari del giorno:"
101
 
102
+ #: admin.inc.php:186
103
  msgid "Show post excerpt in list?"
104
  msgstr "Desideri mostrare gli estratti?"
105
 
106
+ #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Lunghezza estratto (in parole):"
109
 
110
+ #: admin.inc.php:195
111
  msgid "Exclude Categories: "
112
  msgstr "Escludi categorie:"
113
 
114
+ #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Personalizzazione output:"
117
 
118
+ #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
121
 
122
+ #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
125
 
126
+ #: admin.inc.php:225
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML da mostrare dopo ogni lista:"
129
 
130
+ #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML da mostrare dopo la lista degli articoli:"
133
 
134
+ #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Opzioni miniature articolo:"
137
 
138
+ #: admin.inc.php:239
139
+ msgid "Display thumbnails inline with posts, before title"
140
+ msgstr "Mostra gli articoli con le miniature inline prima del titolo"
141
 
142
+ #: admin.inc.php:243
143
+ msgid "Display thumbnails inline with posts, after title"
144
+ msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
145
+
146
+ #: admin.inc.php:247
147
  msgid "Display only thumbnails, no text"
148
  msgstr "Mostra le sole miniature, nessun testo"
149
 
150
+ #: admin.inc.php:251
151
  msgid "Do not display thumbnails, only text."
152
  msgstr "Non mostrare le miniature, solo testo."
153
 
154
+ #: admin.inc.php:256
155
  msgid "Post thumbnail meta field (the meta should point to the image source): "
156
  msgstr "Campo meta per le miniature (il meta deve puntare alla immagine):"
157
 
158
+ #: admin.inc.php:263
159
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
  msgstr "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo la prima immagine. Questa operazione potrebbe rallentare il caricamento del tuo articolo nel caso in cui la prima immagine corelata fosse di grandi dimensioni"
161
 
162
+ #: admin.inc.php:266
163
  msgid "Thumbnail dimensions:"
164
  msgstr "Dimensione miniature:"
165
 
166
+ #: admin.inc.php:268
167
  msgid "Max width: "
168
  msgstr "Larghezza massima:"
169
 
170
+ #: admin.inc.php:273
171
  msgid "Max height: "
172
  msgstr "Altezza massima:"
173
 
 
 
 
 
174
  #: admin.inc.php:277
175
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
176
+ msgstr "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
177
+
178
+ #: admin.inc.php:282
179
  msgid "Do you want to set options to Default?"
180
  msgstr "Desideri ripristinare alle predefinite?"
181
 
182
+ #: admin.inc.php:285
183
  msgid "Reset count"
184
  msgstr "Ripristino conteggio"
185
 
186
+ #: admin.inc.php:288
187
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
  msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
189
 
190
+ #: admin.inc.php:291
191
  msgid "Are you sure you want to reset the popular posts?"
192
  msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
193
 
194
+ #: admin.inc.php:292
195
  msgid "Are you sure you want to reset the daily popular posts?"
196
  msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
197
 
198
+ #: admin.inc.php:293
199
  msgid "This will delete the duplicate entries in the tables. Proceed?"
200
  msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
201
 
202
+ #: admin.inc.php:300
203
  msgid "Quick links"
204
  msgstr "Collegamenti veloci"
205
 
206
+ #: admin.inc.php:302
207
  msgid "Top 10 "
208
  msgstr "Top 10"
209
 
210
+ #: admin.inc.php:302
211
  msgid "plugin page"
212
  msgstr "pagina plugin"
213
 
214
+ #: admin.inc.php:303
215
  msgid "Other plugins"
216
  msgstr "Altri plugin"
217
 
218
+ #: admin.inc.php:304
219
  msgid "Ajay's blog"
220
  msgstr "Il blog di Ajay"
221
 
222
+ #: admin.inc.php:305
223
+ #: top-10.php:515
224
  msgid "Support"
225
  msgstr "Supporto"
226
 
227
+ #: admin.inc.php:306
228
  msgid "Follow @ajaydsouza on Twitter"
229
  msgstr "Segui @ajaydsouza su Twitter"
230
 
231
+ #: admin.inc.php:310
232
  msgid "Recent developments"
233
  msgstr "Sviluppi recenti"
234
 
235
+ #: admin.inc.php:315
236
  msgid "Support the development"
237
  msgstr "Sostieni lo sviluppo"
238
 
239
+ #: admin.inc.php:323
240
  msgid "Enter amount in USD: "
241
  msgstr "Inserisci la cifra in USD: "
242
 
243
+ #: admin.inc.php:327
244
  msgid "Send your donation to the author of"
245
  msgstr "Invia la tua donazione all'autore di"
246
 
247
+ #: admin.inc.php:347
248
+ #: admin.inc.php:372
249
+ #: admin.inc.php:575
250
+ #: top-10.php:257
251
+ #: top-10.php:273
252
+ #: top-10.php:445
253
+ #: top-10.php:448
254
  msgid "Popular Posts"
255
  msgstr "Gli articoli più popolari"
256
 
257
+ #: admin.inc.php:347
258
  msgid "Daily Popular Posts"
259
  msgstr "Gli articoli più popolari di oggi"
260
 
261
+ #: admin.inc.php:370
262
+ #: admin.inc.php:372
263
  msgid "Top 10"
264
  msgstr "Top 10"
265
 
266
+ #: admin.inc.php:483
267
  msgid "Results"
268
  msgstr "Risultati"
269
 
270
+ #: admin.inc.php:485
271
+ #: admin.inc.php:491
272
  msgid "of"
273
  msgstr "di"
274
 
275
+ #: admin.inc.php:489
276
  msgid "Page"
277
  msgstr "Pagina"
278
 
279
+ #: admin.inc.php:503
280
  msgid "View Daily Popular Posts"
281
  msgstr "Visualizza gli articoli più letti di oggi"
282
 
283
+ #: admin.inc.php:507
284
  msgid "View Overall Popular Posts"
285
  msgstr "Visualizza panoramica articoli più popolari"
286
 
287
+ #: admin.inc.php:511
288
  msgid "Results per-page:"
289
  msgstr "Risultati per pagina:"
290
 
291
+ #: admin.inc.php:535
292
  msgid "Previous"
293
  msgstr "Precedente"
294
 
295
+ #: admin.inc.php:553
296
  msgid "Next"
297
  msgstr "Successiva"
298
 
299
+ #: admin.inc.php:576
300
+ #: top-10.php:219
301
+ #: top-10.php:235
302
+ #: top-10.php:446
303
+ #: top-10.php:449
304
  msgid "Daily Popular"
305
  msgstr "I più letti di oggi"
306
 
307
+ #: admin.inc.php:587
308
  msgid "Total / Today's Views"
309
  msgstr "Totale / Visualizzazioni odierne"
310
 
311
+ #: top-10.php:218
312
  msgid "Display the posts popular today"
313
  msgstr "Mostra gli articoli più popolari di oggi"
314
 
315
+ #: top-10.php:256
316
  msgid "Display the posts popular this week"
317
  msgstr "Mostra articoli più popolari settimana in corso"
318
 
319
+ #: top-10.php:286
320
  msgid "<h3>Popular Posts</h3>"
321
  msgstr "<h3>Articoli più letti</h3>"
322
 
323
+ #: top-10.php:287
324
  msgid "<h3>Daily Popular</h3>"
325
  msgstr "<h3>I più letti di oggi</h3>"
326
 
327
+ #: top-10.php:514
328
  msgid "Settings"
329
  msgstr "Impostazioni"
330
 
331
+ #: top-10.php:516
332
  msgid "Donate"
333
  msgstr "Donazione"
334
 
335
+ #~ msgid ""
336
+ #~ "The plugin will first check if the post contains a thumbnail. If it "
337
+ #~ "doesn't then it will check the meta field. If this is not available, then "
338
+ #~ "it will show the default image as specified below:"
339
+ #~ msgstr ""
340
+ #~ "Come prima operazione, il plugin controllerà la presenza di una miniatura "
341
+ #~ "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
342
+ #~ "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
343
+ #~ "specificato qui sotto:"
344
+
345
  #~ msgid "Support forum"
346
  #~ msgstr "Forum di supporto"
347
 
languages/tptn-nl_NL.mo CHANGED
Binary file
languages/tptn-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
@@ -17,320 +17,336 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:57
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:66
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op Standaard."
27
 
28
- #: admin.inc.php:72
29
  msgid "Top 10 popular posts reset"
30
  msgstr "Reset Top 10 populaire berichten"
31
 
32
- #: admin.inc.php:78
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Reset Top 10 dagelijkse populaire berichten"
35
 
36
- #: admin.inc.php:85
37
  msgid "Tables cleaned of duplicate rows"
38
  msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
39
 
40
- #: admin.inc.php:97
41
  msgid "Options:"
42
  msgstr "Opties:"
43
 
44
- #: admin.inc.php:102
45
  msgid "Format to display the count in: "
46
  msgstr "Formaat om de optelling te laten zien:"
47
 
48
- #: admin.inc.php:106
49
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
  msgstr "Gebruik <code>%totalcount%</ code> om de totale telling en <code>%dailycount%</ code> om de dagelijkse telling te laten zien. De standaardopties geven bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
51
 
52
- #: admin.inc.php:109
53
  msgid "Number of popular posts to display: "
54
  msgstr "Aantal populaire berichten om weer te geven:"
55
 
56
- #: admin.inc.php:115
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
59
 
60
- #: admin.inc.php:122
61
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
  msgstr "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal bekeken pagina's zal verder worden geteld."
63
 
64
- #: admin.inc.php:128
65
  msgid "Display number of views on posts?"
66
  msgstr "Geef het aantal berichtweergaves weer?"
67
 
68
- #: admin.inc.php:134
69
  msgid "Display number of views on pages?"
70
  msgstr "Geef het aantal paginaweergaves weer?"
71
 
72
- #: admin.inc.php:140
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
75
 
76
- #: admin.inc.php:146
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
79
 
80
- #: admin.inc.php:152
81
  #, fuzzy
82
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
  msgstr "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
84
 
85
- #: admin.inc.php:158
86
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
  msgstr "Laat het aantal paginaweergaves zien op de bewerk berichten/pagina's in WP-Admin. Een extra kolom is toegevoegd met de telling"
88
 
89
- #: admin.inc.php:164
90
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
  msgstr "Een link naar de plugin is toegevoegd als een exta item aan de lijst met populaire berichten. Het is niet verplicht, maar wordt ten zeerste gewaardeerd!"
92
 
93
- #: admin.inc.php:168
94
  msgid "Output Options:"
95
  msgstr "Output Opties:"
96
 
97
- #: admin.inc.php:172
98
  msgid "Title of popular posts: "
99
  msgstr "Titel van populaire berichten:"
100
 
101
- #: admin.inc.php:178
102
  msgid "Title of daily popular posts: "
103
  msgstr "Titel van dagelijkse populaire berichten:"
104
 
105
- #: admin.inc.php:185
106
  msgid "Show post excerpt in list?"
107
  msgstr "Laat bericht samenvatting zien in lijst?"
108
 
109
- #: admin.inc.php:190
110
  msgid "Length of excerpt (in words): "
111
  msgstr "Lengte van de samenvatting (in woorden):"
112
 
113
- #: admin.inc.php:194
114
  msgid "Exclude Categories: "
115
  msgstr ""
116
 
117
- #: admin.inc.php:209
118
  msgid "Customize the output:"
119
  msgstr "Aanpassen van de output:"
120
 
121
- #: admin.inc.php:212
122
  msgid "HTML to display before the list of posts: "
123
  msgstr "Te weergeven HTML voor de lijst met berichten:"
124
 
125
- #: admin.inc.php:218
126
  msgid "HTML to display before each list item: "
127
  msgstr "Te weergeven HTML voor elk lijst item:"
128
 
129
- #: admin.inc.php:224
130
  msgid "HTML to display after each list item: "
131
  msgstr "Te weergeven HTML na elk lijst item:"
132
 
133
- #: admin.inc.php:230
134
  msgid "HTML to display after the list of posts: "
135
  msgstr "Te weergeven HTML na de lijst met berichten:"
136
 
137
- #: admin.inc.php:234
138
  msgid "Post thumbnail options:"
139
  msgstr "Bericht miniatuurafbeelding opties:"
140
 
141
- #: admin.inc.php:238
142
- msgid "Display thumbnails inline with posts"
 
 
 
 
 
 
143
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
144
 
145
- #: admin.inc.php:242
146
  msgid "Display only thumbnails, no text"
147
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
148
 
149
- #: admin.inc.php:246
150
  msgid "Do not display thumbnails, only text."
151
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
152
 
153
- #: admin.inc.php:251
154
  #, fuzzy
155
  msgid "Post thumbnail meta field (the meta should point to the image source): "
156
  msgstr "Bericht miniatuurafbeelding meta veld (de meta zou moeten verwijzen naar de afbeeldingsbron):"
157
 
158
- #: admin.inc.php:258
159
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
  msgstr "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste afbeelding uit het bericht halen. Dit kan het laden van het bericht vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is qua bestandsgrootte"
161
 
162
- #: admin.inc.php:261
163
  msgid "Thumbnail dimensions:"
164
  msgstr "Afmetingen miniatuurafbeelding:"
165
 
166
- #: admin.inc.php:263
167
  msgid "Max width: "
168
  msgstr "Maximale breedte:"
169
 
170
- #: admin.inc.php:268
171
  msgid "Max height: "
172
  msgstr "Maximale hoogte:"
173
 
174
- #: admin.inc.php:272
175
- 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:"
176
- msgstr "De plugin zal eerst controleren of het bericht een miniatuurafbeelding bevat. Als het geen miniatuurafbeelding bevat dan zal de plugin het meta veld controleren. Als dit veld niet beschikbaar is toont de plugin de standaard afbeelding zoals hieronder aangegeven:"
177
-
178
  #: admin.inc.php:277
 
 
 
 
179
  msgid "Do you want to set options to Default?"
180
  msgstr "Wil je de opties terugzetten naar standaard?"
181
 
182
- #: admin.inc.php:280
183
  msgid "Reset count"
184
  msgstr "Reset telling"
185
 
186
- #: admin.inc.php:283
187
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
  msgstr "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je database gemaakt hebt voordat je verder gaat"
189
 
190
- #: admin.inc.php:286
191
  msgid "Are you sure you want to reset the popular posts?"
192
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
193
 
194
- #: admin.inc.php:287
195
  msgid "Are you sure you want to reset the daily popular posts?"
196
  msgstr "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
197
 
198
- #: admin.inc.php:288
199
  msgid "This will delete the duplicate entries in the tables. Proceed?"
200
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
201
 
202
- #: admin.inc.php:295
203
  msgid "Quick links"
204
  msgstr "Quick links"
205
 
206
- #: admin.inc.php:297
207
  msgid "Top 10 "
208
  msgstr "Top 10 "
209
 
210
- #: admin.inc.php:297
211
  msgid "plugin page"
212
  msgstr "plugin pagina"
213
 
214
- #: admin.inc.php:298
215
  msgid "Other plugins"
216
  msgstr "Andere plugins"
217
 
218
- #: admin.inc.php:299
219
  msgid "Ajay's blog"
220
  msgstr "De blog van Ajay"
221
 
222
- #: admin.inc.php:300
223
- #: top-10.php:494
224
  msgid "Support"
225
  msgstr "Ondersteuning"
226
 
227
- #: admin.inc.php:301
228
  msgid "Follow @ajaydsouza on Twitter"
229
  msgstr "Volg @ajaydsouza via Twitter"
230
 
231
- #: admin.inc.php:305
232
  msgid "Recent developments"
233
  msgstr "Recente ontwikkelingen"
234
 
235
- #: admin.inc.php:310
236
  msgid "Support the development"
237
  msgstr "Ondersteun de ontwikkeling"
238
 
239
- #: admin.inc.php:318
240
  msgid "Enter amount in USD: "
241
  msgstr "Voer het bedrag in in USD:"
242
 
243
- #: admin.inc.php:322
244
  msgid "Send your donation to the author of"
245
  msgstr "Zend je donatie naar de auteur van "
246
 
247
- #: admin.inc.php:342
248
- #: admin.inc.php:367
249
- #: admin.inc.php:570
250
- #: top-10.php:266
251
- #: top-10.php:282
252
- #: top-10.php:453
253
- #: top-10.php:456
254
  msgid "Popular Posts"
255
  msgstr "Populaire Berichten"
256
 
257
- #: admin.inc.php:342
258
  msgid "Daily Popular Posts"
259
  msgstr "Dagelijkse Populaire Berichten"
260
 
261
- #: admin.inc.php:365
262
- #: admin.inc.php:367
263
  msgid "Top 10"
264
  msgstr "Top 10"
265
 
266
- #: admin.inc.php:478
267
  msgid "Results"
268
  msgstr "Resultaten"
269
 
270
- #: admin.inc.php:480
271
- #: admin.inc.php:486
272
  msgid "of"
273
  msgstr "van"
274
 
275
- #: admin.inc.php:484
276
  msgid "Page"
277
  msgstr "Pagina"
278
 
279
- #: admin.inc.php:498
280
  msgid "View Daily Popular Posts"
281
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
282
 
283
- #: admin.inc.php:502
284
  msgid "View Overall Popular Posts"
285
  msgstr "Bekijk het Totaal Populaire Berichten"
286
 
287
- #: admin.inc.php:506
288
  msgid "Results per-page:"
289
  msgstr "Resultaten per pagina:"
290
 
291
- #: admin.inc.php:530
292
  msgid "Previous"
293
  msgstr "Vorige"
294
 
295
- #: admin.inc.php:548
296
  msgid "Next"
297
  msgstr "Volgende"
298
 
299
- #: admin.inc.php:571
300
- #: top-10.php:227
301
- #: top-10.php:243
302
- #: top-10.php:454
303
- #: top-10.php:457
304
  msgid "Daily Popular"
305
  msgstr "Dagelijks Populair"
306
 
307
- #: admin.inc.php:582
308
  msgid "Total / Today's Views"
309
  msgstr "Totale Weergaves / Weergaves van Vandaag"
310
 
311
- #: top-10.php:226
312
  msgid "Display the posts popular today"
313
  msgstr ""
314
 
315
- #: top-10.php:265
316
  msgid "Display the posts popular this week"
317
  msgstr ""
318
 
319
- #: top-10.php:295
320
  msgid "<h3>Popular Posts</h3>"
321
  msgstr "<h3>Populaire Berichten</h3>"
322
 
323
- #: top-10.php:296
324
  msgid "<h3>Daily Popular</h3>"
325
  msgstr "<h3>Dagelijks Populair</h3>"
326
 
327
- #: top-10.php:493
328
  msgid "Settings"
329
  msgstr "Instellingen"
330
 
331
- #: top-10.php:495
332
  msgid "Donate"
333
  msgstr "Doneer"
334
 
 
 
 
 
 
 
 
 
 
 
335
  #~ msgid "Support forum"
336
  #~ msgstr "Ondersteuningsforum"
2
  msgstr ""
3
  "Project-Id-Version: Top 10 v1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:22-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: WPPG.me <info@wppg.me>\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:58
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin.inc.php:67
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op Standaard."
27
 
28
+ #: admin.inc.php:73
29
  msgid "Top 10 popular posts reset"
30
  msgstr "Reset Top 10 populaire berichten"
31
 
32
+ #: admin.inc.php:79
33
  msgid "Top 10 daily popular posts reset"
34
  msgstr "Reset Top 10 dagelijkse populaire berichten"
35
 
36
+ #: admin.inc.php:86
37
  msgid "Tables cleaned of duplicate rows"
38
  msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
39
 
40
+ #: admin.inc.php:98
41
  msgid "Options:"
42
  msgstr "Opties:"
43
 
44
+ #: admin.inc.php:103
45
  msgid "Format to display the count in: "
46
  msgstr "Formaat om de optelling te laten zien:"
47
 
48
+ #: admin.inc.php:107
49
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
50
  msgstr "Gebruik <code>%totalcount%</ code> om de totale telling en <code>%dailycount%</ code> om de dagelijkse telling te laten zien. De standaardopties geven bijvoorbeeld <code>(123 keer bezocht, 23 bezoeken vandaag)</ code> weer."
51
 
52
+ #: admin.inc.php:110
53
  msgid "Number of popular posts to display: "
54
  msgstr "Aantal populaire berichten om weer te geven:"
55
 
56
+ #: admin.inc.php:116
57
  msgid "Daily Popular should contain views of how many days? "
58
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
59
 
60
+ #: admin.inc.php:123
61
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
62
  msgstr "Uitsluiten van Pagina's in de weergave van Populaire berichten? Het aantal bekeken pagina's zal verder worden geteld."
63
 
64
+ #: admin.inc.php:129
65
  msgid "Display number of views on posts?"
66
  msgstr "Geef het aantal berichtweergaves weer?"
67
 
68
+ #: admin.inc.php:135
69
  msgid "Display number of views on pages?"
70
  msgstr "Geef het aantal paginaweergaves weer?"
71
 
72
+ #: admin.inc.php:141
73
  msgid "Track visits of authors on their own posts?"
74
  msgstr "Registreer bezoeken van auteurs aan hun eigen berichten?"
75
 
76
+ #: admin.inc.php:147
77
  msgid "Display number of page views in popular lists?"
78
  msgstr "Laat het aantal paginaweergaves zien in populaire lijsten?"
79
 
80
+ #: admin.inc.php:153
81
  #, fuzzy
82
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
83
  msgstr "Forceer de dagelijkse berichtenlijst dynamisch te zijn. Deze optie gebruikt JavaScript om het bericht te laden en kan de laadtijd van de pagina verhogen"
84
 
85
+ #: admin.inc.php:159
86
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
87
  msgstr "Laat het aantal paginaweergaves zien op de bewerk berichten/pagina's in WP-Admin. Een extra kolom is toegevoegd met de telling"
88
 
89
+ #: admin.inc.php:165
90
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
91
  msgstr "Een link naar de plugin is toegevoegd als een exta item aan de lijst met populaire berichten. Het is niet verplicht, maar wordt ten zeerste gewaardeerd!"
92
 
93
+ #: admin.inc.php:169
94
  msgid "Output Options:"
95
  msgstr "Output Opties:"
96
 
97
+ #: admin.inc.php:173
98
  msgid "Title of popular posts: "
99
  msgstr "Titel van populaire berichten:"
100
 
101
+ #: admin.inc.php:179
102
  msgid "Title of daily popular posts: "
103
  msgstr "Titel van dagelijkse populaire berichten:"
104
 
105
+ #: admin.inc.php:186
106
  msgid "Show post excerpt in list?"
107
  msgstr "Laat bericht samenvatting zien in lijst?"
108
 
109
+ #: admin.inc.php:191
110
  msgid "Length of excerpt (in words): "
111
  msgstr "Lengte van de samenvatting (in woorden):"
112
 
113
+ #: admin.inc.php:195
114
  msgid "Exclude Categories: "
115
  msgstr ""
116
 
117
+ #: admin.inc.php:210
118
  msgid "Customize the output:"
119
  msgstr "Aanpassen van de output:"
120
 
121
+ #: admin.inc.php:213
122
  msgid "HTML to display before the list of posts: "
123
  msgstr "Te weergeven HTML voor de lijst met berichten:"
124
 
125
+ #: admin.inc.php:219
126
  msgid "HTML to display before each list item: "
127
  msgstr "Te weergeven HTML voor elk lijst item:"
128
 
129
+ #: admin.inc.php:225
130
  msgid "HTML to display after each list item: "
131
  msgstr "Te weergeven HTML na elk lijst item:"
132
 
133
+ #: admin.inc.php:231
134
  msgid "HTML to display after the list of posts: "
135
  msgstr "Te weergeven HTML na de lijst met berichten:"
136
 
137
+ #: admin.inc.php:235
138
  msgid "Post thumbnail options:"
139
  msgstr "Bericht miniatuurafbeelding opties:"
140
 
141
+ #: admin.inc.php:239
142
+ #, fuzzy
143
+ msgid "Display thumbnails inline with posts, before title"
144
+ msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
145
+
146
+ #: admin.inc.php:243
147
+ #, fuzzy
148
+ msgid "Display thumbnails inline with posts, after title"
149
  msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
150
 
151
+ #: admin.inc.php:247
152
  msgid "Display only thumbnails, no text"
153
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
154
 
155
+ #: admin.inc.php:251
156
  msgid "Do not display thumbnails, only text."
157
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
158
 
159
+ #: admin.inc.php:256
160
  #, fuzzy
161
  msgid "Post thumbnail meta field (the meta should point to the image source): "
162
  msgstr "Bericht miniatuurafbeelding meta veld (de meta zou moeten verwijzen naar de afbeeldingsbron):"
163
 
164
+ #: admin.inc.php:263
165
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
166
  msgstr "Wanneer het bericht meta veld niet ingesteld is moet de plugin de eerste afbeelding uit het bericht halen. Dit kan het laden van het bericht vertragen wanneer de eerste afbeelding in de gerelateerde berichten groot is qua bestandsgrootte"
167
 
168
+ #: admin.inc.php:266
169
  msgid "Thumbnail dimensions:"
170
  msgstr "Afmetingen miniatuurafbeelding:"
171
 
172
+ #: admin.inc.php:268
173
  msgid "Max width: "
174
  msgstr "Maximale breedte:"
175
 
176
+ #: admin.inc.php:273
177
  msgid "Max height: "
178
  msgstr "Maximale hoogte:"
179
 
 
 
 
 
180
  #: admin.inc.php:277
181
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
182
+ msgstr ""
183
+
184
+ #: admin.inc.php:282
185
  msgid "Do you want to set options to Default?"
186
  msgstr "Wil je de opties terugzetten naar standaard?"
187
 
188
+ #: admin.inc.php:285
189
  msgid "Reset count"
190
  msgstr "Reset telling"
191
 
192
+ #: admin.inc.php:288
193
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
194
  msgstr "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je database gemaakt hebt voordat je verder gaat"
195
 
196
+ #: admin.inc.php:291
197
  msgid "Are you sure you want to reset the popular posts?"
198
  msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
199
 
200
+ #: admin.inc.php:292
201
  msgid "Are you sure you want to reset the daily popular posts?"
202
  msgstr "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
203
 
204
+ #: admin.inc.php:293
205
  msgid "This will delete the duplicate entries in the tables. Proceed?"
206
  msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
207
 
208
+ #: admin.inc.php:300
209
  msgid "Quick links"
210
  msgstr "Quick links"
211
 
212
+ #: admin.inc.php:302
213
  msgid "Top 10 "
214
  msgstr "Top 10 "
215
 
216
+ #: admin.inc.php:302
217
  msgid "plugin page"
218
  msgstr "plugin pagina"
219
 
220
+ #: admin.inc.php:303
221
  msgid "Other plugins"
222
  msgstr "Andere plugins"
223
 
224
+ #: admin.inc.php:304
225
  msgid "Ajay's blog"
226
  msgstr "De blog van Ajay"
227
 
228
+ #: admin.inc.php:305
229
+ #: top-10.php:515
230
  msgid "Support"
231
  msgstr "Ondersteuning"
232
 
233
+ #: admin.inc.php:306
234
  msgid "Follow @ajaydsouza on Twitter"
235
  msgstr "Volg @ajaydsouza via Twitter"
236
 
237
+ #: admin.inc.php:310
238
  msgid "Recent developments"
239
  msgstr "Recente ontwikkelingen"
240
 
241
+ #: admin.inc.php:315
242
  msgid "Support the development"
243
  msgstr "Ondersteun de ontwikkeling"
244
 
245
+ #: admin.inc.php:323
246
  msgid "Enter amount in USD: "
247
  msgstr "Voer het bedrag in in USD:"
248
 
249
+ #: admin.inc.php:327
250
  msgid "Send your donation to the author of"
251
  msgstr "Zend je donatie naar de auteur van "
252
 
253
+ #: admin.inc.php:347
254
+ #: admin.inc.php:372
255
+ #: admin.inc.php:575
256
+ #: top-10.php:257
257
+ #: top-10.php:273
258
+ #: top-10.php:445
259
+ #: top-10.php:448
260
  msgid "Popular Posts"
261
  msgstr "Populaire Berichten"
262
 
263
+ #: admin.inc.php:347
264
  msgid "Daily Popular Posts"
265
  msgstr "Dagelijkse Populaire Berichten"
266
 
267
+ #: admin.inc.php:370
268
+ #: admin.inc.php:372
269
  msgid "Top 10"
270
  msgstr "Top 10"
271
 
272
+ #: admin.inc.php:483
273
  msgid "Results"
274
  msgstr "Resultaten"
275
 
276
+ #: admin.inc.php:485
277
+ #: admin.inc.php:491
278
  msgid "of"
279
  msgstr "van"
280
 
281
+ #: admin.inc.php:489
282
  msgid "Page"
283
  msgstr "Pagina"
284
 
285
+ #: admin.inc.php:503
286
  msgid "View Daily Popular Posts"
287
  msgstr "Bekijk de Dagelijkse Populaire Berichten"
288
 
289
+ #: admin.inc.php:507
290
  msgid "View Overall Popular Posts"
291
  msgstr "Bekijk het Totaal Populaire Berichten"
292
 
293
+ #: admin.inc.php:511
294
  msgid "Results per-page:"
295
  msgstr "Resultaten per pagina:"
296
 
297
+ #: admin.inc.php:535
298
  msgid "Previous"
299
  msgstr "Vorige"
300
 
301
+ #: admin.inc.php:553
302
  msgid "Next"
303
  msgstr "Volgende"
304
 
305
+ #: admin.inc.php:576
306
+ #: top-10.php:219
307
+ #: top-10.php:235
308
+ #: top-10.php:446
309
+ #: top-10.php:449
310
  msgid "Daily Popular"
311
  msgstr "Dagelijks Populair"
312
 
313
+ #: admin.inc.php:587
314
  msgid "Total / Today's Views"
315
  msgstr "Totale Weergaves / Weergaves van Vandaag"
316
 
317
+ #: top-10.php:218
318
  msgid "Display the posts popular today"
319
  msgstr ""
320
 
321
+ #: top-10.php:256
322
  msgid "Display the posts popular this week"
323
  msgstr ""
324
 
325
+ #: top-10.php:286
326
  msgid "<h3>Popular Posts</h3>"
327
  msgstr "<h3>Populaire Berichten</h3>"
328
 
329
+ #: top-10.php:287
330
  msgid "<h3>Daily Popular</h3>"
331
  msgstr "<h3>Dagelijks Populair</h3>"
332
 
333
+ #: top-10.php:514
334
  msgid "Settings"
335
  msgstr "Instellingen"
336
 
337
+ #: top-10.php:516
338
  msgid "Donate"
339
  msgstr "Doneer"
340
 
341
+ #~ msgid ""
342
+ #~ "The plugin will first check if the post contains a thumbnail. If it "
343
+ #~ "doesn't then it will check the meta field. If this is not available, then "
344
+ #~ "it will show the default image as specified below:"
345
+ #~ msgstr ""
346
+ #~ "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
347
+ #~ "bevat. Als het geen miniatuurafbeelding bevat dan zal de plugin het meta "
348
+ #~ "veld controleren. Als dit veld niet beschikbaar is toont de plugin de "
349
+ #~ "standaard afbeelding zoals hieronder aangegeven:"
350
+
351
  #~ msgid "Support forum"
352
  #~ msgstr "Ondersteuningsforum"
languages/tptn-ru_RU.mo CHANGED
Binary file
languages/tptn-ru_RU.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,319 +15,332 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:57
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
- #: admin.inc.php:66
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
- #: admin.inc.php:72
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
- #: admin.inc.php:78
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
- #: admin.inc.php:85
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "Все повторяющиеся записи в статистике были удалены"
37
 
38
- #: admin.inc.php:97
39
  msgid "Options:"
40
  msgstr "Настройки плагина:"
41
 
42
- #: admin.inc.php:102
43
  msgid "Format to display the count in: "
44
  msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
45
 
46
- #: admin.inc.php:106
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:109
51
  msgid "Number of popular posts to display: "
52
  msgstr "Количество Популярных записей в списке:"
53
 
54
- #: admin.inc.php:115
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
57
 
58
- #: admin.inc.php:122
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:128
63
  msgid "Display number of views on posts?"
64
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
65
 
66
- #: admin.inc.php:134
67
  msgid "Display number of views on pages?"
68
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
69
 
70
- #: admin.inc.php:140
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
73
 
74
- #: admin.inc.php:146
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
77
 
78
- #: admin.inc.php:152
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Сделать список Популярных записей динамичным? Опция использует JavaScript , и это может увеличить время загрузки страниц"
81
 
82
- #: admin.inc.php:158
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:164
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:168
91
  msgid "Output Options:"
92
  msgstr "Настройки плагина:"
93
 
94
- #: admin.inc.php:172
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списка Популярных записей:"
97
 
98
- #: admin.inc.php:178
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списка Популярных сегодня записей:"
101
 
102
- #: admin.inc.php:185
103
  msgid "Show post excerpt in list?"
104
  msgstr "Показывать текст записи в списке?"
105
 
106
- #: admin.inc.php:190
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Длина выводимого текста (в словах):"
109
 
110
- #: admin.inc.php:194
111
  msgid "Exclude Categories: "
112
- msgstr ""
113
 
114
- #: admin.inc.php:209
115
  msgid "Customize the output:"
116
  msgstr "Настройки оформления списка:"
117
 
118
- #: admin.inc.php:212
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML-тег, используемый перед списком:"
121
 
122
- #: admin.inc.php:218
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
125
 
126
- #: admin.inc.php:224
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
129
 
130
- #: admin.inc.php:230
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML-тег, используемый после списка:"
133
 
134
- #: admin.inc.php:234
135
  msgid "Post thumbnail options:"
136
  msgstr "Настройки превью к записям:"
137
 
138
- #: admin.inc.php:238
139
- msgid "Display thumbnails inline with posts"
140
- msgstr "Отображать и превью, и текст"
 
 
 
 
141
 
142
- #: admin.inc.php:242
143
  msgid "Display only thumbnails, no text"
144
  msgstr "Отображать только превью, без текста"
145
 
146
- #: admin.inc.php:246
147
  msgid "Do not display thumbnails, only text."
148
  msgstr "Отображать только текст, без превью"
149
 
150
- #: admin.inc.php:251
151
  msgid "Post thumbnail meta field (the meta should point to the image source): "
152
  msgstr "Введите сюда название произвольного поля (мета-поле) для вывода превью:"
153
 
154
- #: admin.inc.php:258
155
  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"
156
  msgstr "Если название для мета-поля не установлено, то плагин будет выводить первое изображение из записи. Это может слегка увеличить загрузку в первый раз, так как будет создаваться уменьшенная копия изображения"
157
 
158
- #: admin.inc.php:261
159
  msgid "Thumbnail dimensions:"
160
  msgstr "Размеры выводимого изображения (превью):"
161
 
162
- #: admin.inc.php:263
163
  msgid "Max width: "
164
  msgstr "Ширина:"
165
 
166
- #: admin.inc.php:268
167
  msgid "Max height: "
168
  msgstr "Высота:"
169
 
170
- #: admin.inc.php:272
171
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
172
- msgstr "В первую очередь, плагин проверит, есть ли у записи превью (проверка по заданному ранее произвольному мета-полю). Если же превью нет - будет выводиться картинка по-умолчанию:"
173
-
174
  #: admin.inc.php:277
 
 
 
 
175
  msgid "Do you want to set options to Default?"
176
  msgstr "Сбросить настройки плагина?"
177
 
178
- #: admin.inc.php:280
179
  msgid "Reset count"
180
  msgstr "Сбросить статистику"
181
 
182
- #: admin.inc.php:283
183
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
184
  msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
185
 
186
- #: admin.inc.php:286
187
  msgid "Are you sure you want to reset the popular posts?"
188
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
189
 
190
- #: admin.inc.php:287
191
  msgid "Are you sure you want to reset the daily popular posts?"
192
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
193
 
194
- #: admin.inc.php:288
195
  msgid "This will delete the duplicate entries in the tables. Proceed?"
196
  msgstr "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
197
 
198
- #: admin.inc.php:295
199
  msgid "Quick links"
200
  msgstr "Полезные ссылки"
201
 
202
- #: admin.inc.php:297
203
  msgid "Top 10 "
204
  msgstr "Топ 10 записей"
205
 
206
- #: admin.inc.php:297
207
  msgid "plugin page"
208
  msgstr "страница плагина"
209
 
210
- #: admin.inc.php:298
211
  msgid "Other plugins"
212
  msgstr "Другие плагины автора"
213
 
214
- #: admin.inc.php:299
215
  msgid "Ajay's blog"
216
  msgstr "Блог Ajay"
217
 
218
- #: admin.inc.php:300
219
- #: top-10.php:494
220
  msgid "Support"
221
  msgstr "Поддержка (англ.)"
222
 
223
- #: admin.inc.php:301
224
  msgid "Follow @ajaydsouza on Twitter"
225
  msgstr "Следуй за @ajaydsouza в Twitter"
226
 
227
- #: admin.inc.php:305
228
  msgid "Recent developments"
229
  msgstr "Последние разработки"
230
 
231
- #: admin.inc.php:310
232
  msgid "Support the development"
233
  msgstr "Поддержать автора плагина"
234
 
235
- #: admin.inc.php:318
236
  msgid "Enter amount in USD: "
237
  msgstr "Сколько вы готовы пожертвовать (в USD):"
238
 
239
- #: admin.inc.php:322
240
  msgid "Send your donation to the author of"
241
  msgstr "Отправьте пожертвование автору"
242
 
243
- #: admin.inc.php:342
244
- #: admin.inc.php:367
245
- #: admin.inc.php:570
246
- #: top-10.php:266
247
- #: top-10.php:282
248
- #: top-10.php:453
249
- #: top-10.php:456
250
  msgid "Popular Posts"
251
  msgstr "Популярные записи"
252
 
253
- #: admin.inc.php:342
254
  msgid "Daily Popular Posts"
255
  msgstr "Популярные сегодня записи"
256
 
257
- #: admin.inc.php:365
258
- #: admin.inc.php:367
259
  msgid "Top 10"
260
  msgstr "Топ 10 записей"
261
 
262
- #: admin.inc.php:478
263
  msgid "Results"
264
  msgstr "Результаты"
265
 
266
- #: admin.inc.php:480
267
- #: admin.inc.php:486
268
  msgid "of"
269
  msgstr "из"
270
 
271
- #: admin.inc.php:484
272
  msgid "Page"
273
  msgstr "Страница"
274
 
275
- #: admin.inc.php:498
276
  msgid "View Daily Popular Posts"
277
  msgstr "Посмотреть все Популярные сегодня записи"
278
 
279
- #: admin.inc.php:502
280
  msgid "View Overall Popular Posts"
281
  msgstr "Посмотреть все Популярные записи"
282
 
283
- #: admin.inc.php:506
284
  msgid "Results per-page:"
285
  msgstr "Результатов на страницу:"
286
 
287
- #: admin.inc.php:530
288
  msgid "Previous"
289
  msgstr "Предыдущая страница"
290
 
291
- #: admin.inc.php:548
292
  msgid "Next"
293
  msgstr "Следующая страница"
294
 
295
- #: admin.inc.php:571
296
- #: top-10.php:227
297
- #: top-10.php:243
298
- #: top-10.php:454
299
- #: top-10.php:457
300
  msgid "Daily Popular"
301
  msgstr "Популярные сегодня записи"
302
 
303
- #: admin.inc.php:582
304
  msgid "Total / Today's Views"
305
  msgstr "Всего/Сегодня"
306
 
307
- #: top-10.php:226
308
  msgid "Display the posts popular today"
309
- msgstr ""
310
 
311
- #: top-10.php:265
312
  msgid "Display the posts popular this week"
313
- msgstr ""
314
 
315
- #: top-10.php:295
316
  msgid "<h3>Popular Posts</h3>"
317
  msgstr "<h3>Популярные записи</h3>"
318
 
319
- #: top-10.php:296
320
  msgid "<h3>Daily Popular</h3>"
321
  msgstr "<h3>Популярные сегодня записи</h3>"
322
 
323
- #: top-10.php:493
324
  msgid "Settings"
325
  msgstr "Настроки плагина"
326
 
327
- #: top-10.php:495
328
  msgid "Donate"
329
  msgstr "Сделать пожертвование"
330
 
 
 
 
 
 
 
 
 
 
331
  #~ msgid "Support forum"
332
  #~ msgstr "Поддержка (англ.)"
333
 
2
  msgstr ""
3
  "Project-Id-Version: Топ 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-01-14 22:34+0400\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: ElvisWebTeam <elviswebteam@gmail.ru>\n"
8
  "Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены."
21
 
22
+ #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Настройки сброшены."
25
 
26
+ #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Сбросить статистику популярных записей"
29
 
30
+ #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Сбросить статистику популярных записей за сегодня"
33
 
34
+ #: admin.inc.php:86
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "Все повторяющиеся записи в статистике были удалены"
37
 
38
+ #: admin.inc.php:98
39
  msgid "Options:"
40
  msgstr "Настройки плагина:"
41
 
42
+ #: admin.inc.php:103
43
  msgid "Format to display the count in: "
44
  msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
45
 
46
+ #: admin.inc.php:107
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Используйте <code>%totalcount%</code> чтобы вывести общее число просмотров, а <code>%dailycount%</code> - просмотры за сутки. Например: <code>(Запись просмотрена 123 раза, сегодня просмотров было 23)</code>."
49
 
50
+ #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Количество Популярных записей в списке:"
53
 
54
+ #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
57
 
58
+ #: admin.inc.php:123
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Исключить страницы из списка Популярных записей? Количество просмотров для страниц будет продолжать подсчитываться"
61
 
62
+ #: admin.inc.php:129
63
  msgid "Display number of views on posts?"
64
  msgstr "Показывать количество просмотров записи в ее \"теле\"?"
65
 
66
+ #: admin.inc.php:135
67
  msgid "Display number of views on pages?"
68
  msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
69
 
70
+ #: admin.inc.php:141
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Учитывать просмотры записей, сделанные их же авторами?"
73
 
74
+ #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
77
 
78
+ #: admin.inc.php:153
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Сделать список Популярных записей динамичным? Опция использует JavaScript , и это может увеличить время загрузки страниц"
81
 
82
+ #: admin.inc.php:159
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "Отображать количество просмотров записей/страниц в админке? Для этого будет добавлена отдельная колонка в wp-admin/edit.php"
85
 
86
+ #: admin.inc.php:165
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Оставить ссылку на плагин под списками Популярных записей? Автор плагина был бы очень благодарен Вам, если Вы ее все же оставите!"
89
 
90
+ #: admin.inc.php:169
91
  msgid "Output Options:"
92
  msgstr "Настройки плагина:"
93
 
94
+ #: admin.inc.php:173
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списка Популярных записей:"
97
 
98
+ #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списка Популярных сегодня записей:"
101
 
102
+ #: admin.inc.php:186
103
  msgid "Show post excerpt in list?"
104
  msgstr "Показывать текст записи в списке?"
105
 
106
+ #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Длина выводимого текста (в словах):"
109
 
110
+ #: admin.inc.php:195
111
  msgid "Exclude Categories: "
112
+ msgstr "Исключить рубрики:"
113
 
114
+ #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Настройки оформления списка:"
117
 
118
+ #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML-тег, используемый перед списком:"
121
 
122
+ #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
125
 
126
+ #: admin.inc.php:225
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML-тег, используемый после каждого пункта в списке:"
129
 
130
+ #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML-тег, используемый после списка:"
133
 
134
+ #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Настройки превью к записям:"
137
 
138
+ #: admin.inc.php:239
139
+ msgid "Display thumbnails inline with posts, before title"
140
+ msgstr "Отображать превью к записи сразу перед заголовком"
141
+
142
+ #: admin.inc.php:243
143
+ msgid "Display thumbnails inline with posts, after title"
144
+ msgstr "Отображать превью к записи сразу после заголовка"
145
 
146
+ #: admin.inc.php:247
147
  msgid "Display only thumbnails, no text"
148
  msgstr "Отображать только превью, без текста"
149
 
150
+ #: admin.inc.php:251
151
  msgid "Do not display thumbnails, only text."
152
  msgstr "Отображать только текст, без превью"
153
 
154
+ #: admin.inc.php:256
155
  msgid "Post thumbnail meta field (the meta should point to the image source): "
156
  msgstr "Введите сюда название произвольного поля (мета-поле) для вывода превью:"
157
 
158
+ #: admin.inc.php:263
159
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
160
  msgstr "Если название для мета-поля не установлено, то плагин будет выводить первое изображение из записи. Это может слегка увеличить загрузку в первый раз, так как будет создаваться уменьшенная копия изображения"
161
 
162
+ #: admin.inc.php:266
163
  msgid "Thumbnail dimensions:"
164
  msgstr "Размеры выводимого изображения (превью):"
165
 
166
+ #: admin.inc.php:268
167
  msgid "Max width: "
168
  msgstr "Ширина:"
169
 
170
+ #: admin.inc.php:273
171
  msgid "Max height: "
172
  msgstr "Высота:"
173
 
 
 
 
 
174
  #: admin.inc.php:277
175
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
176
+ msgstr "Если превью к записи не будет найдено автоматичкески, то вместо него будет добавлено стандартное изображение. Если превью задано к записи - будет отображаться только оно."
177
+
178
+ #: admin.inc.php:282
179
  msgid "Do you want to set options to Default?"
180
  msgstr "Сбросить настройки плагина?"
181
 
182
+ #: admin.inc.php:285
183
  msgid "Reset count"
184
  msgstr "Сбросить статистику"
185
 
186
+ #: admin.inc.php:288
187
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
188
  msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
189
 
190
+ #: admin.inc.php:291
191
  msgid "Are you sure you want to reset the popular posts?"
192
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
193
 
194
+ #: admin.inc.php:292
195
  msgid "Are you sure you want to reset the daily popular posts?"
196
  msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
197
 
198
+ #: admin.inc.php:293
199
  msgid "This will delete the duplicate entries in the tables. Proceed?"
200
  msgstr "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
201
 
202
+ #: admin.inc.php:300
203
  msgid "Quick links"
204
  msgstr "Полезные ссылки"
205
 
206
+ #: admin.inc.php:302
207
  msgid "Top 10 "
208
  msgstr "Топ 10 записей"
209
 
210
+ #: admin.inc.php:302
211
  msgid "plugin page"
212
  msgstr "страница плагина"
213
 
214
+ #: admin.inc.php:303
215
  msgid "Other plugins"
216
  msgstr "Другие плагины автора"
217
 
218
+ #: admin.inc.php:304
219
  msgid "Ajay's blog"
220
  msgstr "Блог Ajay"
221
 
222
+ #: admin.inc.php:305
223
+ #: top-10.php:515
224
  msgid "Support"
225
  msgstr "Поддержка (англ.)"
226
 
227
+ #: admin.inc.php:306
228
  msgid "Follow @ajaydsouza on Twitter"
229
  msgstr "Следуй за @ajaydsouza в Twitter"
230
 
231
+ #: admin.inc.php:310
232
  msgid "Recent developments"
233
  msgstr "Последние разработки"
234
 
235
+ #: admin.inc.php:315
236
  msgid "Support the development"
237
  msgstr "Поддержать автора плагина"
238
 
239
+ #: admin.inc.php:323
240
  msgid "Enter amount in USD: "
241
  msgstr "Сколько вы готовы пожертвовать (в USD):"
242
 
243
+ #: admin.inc.php:327
244
  msgid "Send your donation to the author of"
245
  msgstr "Отправьте пожертвование автору"
246
 
247
+ #: admin.inc.php:347
248
+ #: admin.inc.php:372
249
+ #: admin.inc.php:575
250
+ #: top-10.php:257
251
+ #: top-10.php:273
252
+ #: top-10.php:445
253
+ #: top-10.php:448
254
  msgid "Popular Posts"
255
  msgstr "Популярные записи"
256
 
257
+ #: admin.inc.php:347
258
  msgid "Daily Popular Posts"
259
  msgstr "Популярные сегодня записи"
260
 
261
+ #: admin.inc.php:370
262
+ #: admin.inc.php:372
263
  msgid "Top 10"
264
  msgstr "Топ 10 записей"
265
 
266
+ #: admin.inc.php:483
267
  msgid "Results"
268
  msgstr "Результаты"
269
 
270
+ #: admin.inc.php:485
271
+ #: admin.inc.php:491
272
  msgid "of"
273
  msgstr "из"
274
 
275
+ #: admin.inc.php:489
276
  msgid "Page"
277
  msgstr "Страница"
278
 
279
+ #: admin.inc.php:503
280
  msgid "View Daily Popular Posts"
281
  msgstr "Посмотреть все Популярные сегодня записи"
282
 
283
+ #: admin.inc.php:507
284
  msgid "View Overall Popular Posts"
285
  msgstr "Посмотреть все Популярные записи"
286
 
287
+ #: admin.inc.php:511
288
  msgid "Results per-page:"
289
  msgstr "Результатов на страницу:"
290
 
291
+ #: admin.inc.php:535
292
  msgid "Previous"
293
  msgstr "Предыдущая страница"
294
 
295
+ #: admin.inc.php:553
296
  msgid "Next"
297
  msgstr "Следующая страница"
298
 
299
+ #: admin.inc.php:576
300
+ #: top-10.php:219
301
+ #: top-10.php:235
302
+ #: top-10.php:446
303
+ #: top-10.php:449
304
  msgid "Daily Popular"
305
  msgstr "Популярные сегодня записи"
306
 
307
+ #: admin.inc.php:587
308
  msgid "Total / Today's Views"
309
  msgstr "Всего/Сегодня"
310
 
311
+ #: top-10.php:218
312
  msgid "Display the posts popular today"
313
+ msgstr "Отображаться списки популярных записей за сутки"
314
 
315
+ #: top-10.php:256
316
  msgid "Display the posts popular this week"
317
+ msgstr "Отображать списки популярных записей за неделю"
318
 
319
+ #: top-10.php:286
320
  msgid "<h3>Popular Posts</h3>"
321
  msgstr "<h3>Популярные записи</h3>"
322
 
323
+ #: top-10.php:287
324
  msgid "<h3>Daily Popular</h3>"
325
  msgstr "<h3>Популярные сегодня записи</h3>"
326
 
327
+ #: top-10.php:514
328
  msgid "Settings"
329
  msgstr "Настроки плагина"
330
 
331
+ #: top-10.php:516
332
  msgid "Donate"
333
  msgstr "Сделать пожертвование"
334
 
335
+ #~ msgid ""
336
+ #~ "The plugin will first check if the post contains a thumbnail. If it "
337
+ #~ "doesn't then it will check the meta field. If this is not available, then "
338
+ #~ "it will show the default image as specified below:"
339
+ #~ msgstr ""
340
+ #~ "В первую очередь, плагин проверит, есть ли у записи превью (проверка по "
341
+ #~ "заданному ранее произвольному мета-полю). Если же превью нет - будет "
342
+ #~ "выводиться картинка по-умолчанию:"
343
+
344
  #~ msgid "Support forum"
345
  #~ msgstr "Поддержка (англ.)"
346
 
languages/tptn-ua_UA.mo CHANGED
Binary file
languages/tptn-ua_UA.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-07 00:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
@@ -15,319 +15,334 @@ msgstr ""
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:57
19
  msgid "Options saved successfully."
20
  msgstr "Установки збережені."
21
 
22
- #: admin.inc.php:66
23
  msgid "Options set to Default."
24
  msgstr "Установки скинуті."
25
 
26
- #: admin.inc.php:72
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Скинути статистику найпопулярніших записів"
29
 
30
- #: admin.inc.php:78
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
33
 
34
- #: admin.inc.php:85
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "Все повторювані записи в статистиці були видалені"
37
 
38
- #: admin.inc.php:97
39
  msgid "Options:"
40
  msgstr "Установки плагіна:"
41
 
42
- #: admin.inc.php:102
43
  msgid "Format to display the count in: "
44
  msgstr "У полі нижче ви можете налаштувати формат відображення кількості переглядів за день, за весь час для записів/сторінок:"
45
 
46
- #: admin.inc.php:106
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:109
51
  msgid "Number of popular posts to display: "
52
  msgstr "Кількість Популярних записів у списку:"
53
 
54
- #: admin.inc.php:115
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
57
 
58
- #: admin.inc.php:122
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:128
63
  msgid "Display number of views on posts?"
64
  msgstr "Показувати кількість переглядів запису?"
65
 
66
- #: admin.inc.php:134
67
  msgid "Display number of views on pages?"
68
  msgstr "Показувати кількість переглядів сторінки?"
69
 
70
- #: admin.inc.php:140
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
73
 
74
- #: admin.inc.php:146
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
77
 
78
- #: admin.inc.php:152
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Зробити список Популярних записів динамічним? Опція використовує JavaScript, і це може збільшити час завантаження сторінок"
81
 
82
- #: admin.inc.php:158
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:164
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:168
91
  msgid "Output Options:"
92
  msgstr "Установки плагіна:"
93
 
94
- #: admin.inc.php:172
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списку Популярних записів:"
97
 
98
- #: admin.inc.php:178
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списку Популярних сьогодні записів:"
101
 
102
- #: admin.inc.php:185
103
  msgid "Show post excerpt in list?"
104
  msgstr "Показувати текст запису в списку?"
105
 
106
- #: admin.inc.php:190
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Довжина виведеного тексту (в словах):"
109
 
110
- #: admin.inc.php:194
111
  msgid "Exclude Categories: "
112
  msgstr "Виключити Категорії:"
113
 
114
- #: admin.inc.php:209
115
  msgid "Customize the output:"
116
  msgstr "Установки оформлення списку:"
117
 
118
- #: admin.inc.php:212
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML-тег, який використовується перед списком:"
121
 
122
- #: admin.inc.php:218
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
125
 
126
- #: admin.inc.php:224
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
129
 
130
- #: admin.inc.php:230
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML-тег, який використовується після списку:"
133
 
134
- #: admin.inc.php:234
135
  msgid "Post thumbnail options:"
136
  msgstr "Установки превью до записів:"
137
 
138
- #: admin.inc.php:238
139
- msgid "Display thumbnails inline with posts"
 
140
  msgstr "Відображати і превью, і текст"
141
 
142
- #: admin.inc.php:242
 
 
 
 
 
143
  msgid "Display only thumbnails, no text"
144
  msgstr "Показувати тільки превью, без тексту"
145
 
146
- #: admin.inc.php:246
147
  msgid "Do not display thumbnails, only text."
148
  msgstr "Показувати лише текст, без превью"
149
 
150
- #: admin.inc.php:251
151
  msgid "Post thumbnail meta field (the meta should point to the image source): "
152
  msgstr "Ввести назву довільного поля (мета-поле) для виведення превью:"
153
 
154
- #: admin.inc.php:258
155
  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"
156
  msgstr "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше зображення із запису. Це може злегка збільшити завантаження в перший раз, так як буде створюватися зменшена копія зображення"
157
 
158
- #: admin.inc.php:261
159
  msgid "Thumbnail dimensions:"
160
  msgstr "Розміри виведеного зображення (превью):"
161
 
162
- #: admin.inc.php:263
163
  msgid "Max width: "
164
  msgstr "Ширина:"
165
 
166
- #: admin.inc.php:268
167
  msgid "Max height: "
168
  msgstr "Висота:"
169
 
170
- #: admin.inc.php:272
171
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
172
- msgstr "У першу чергу, плагін перевірить, чи є у запису превью (перевірка по заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка за замовчунням:"
173
-
174
  #: admin.inc.php:277
 
 
 
 
175
  msgid "Do you want to set options to Default?"
176
  msgstr "Скинути налаштування плагіна?"
177
 
178
- #: admin.inc.php:280
179
  msgid "Reset count"
180
  msgstr "Скинути статистику"
181
 
182
- #: admin.inc.php:283
183
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
184
  msgstr "Скидання статистики не може бути обернена. Перед тим, як скидати все, переконайтесь, що у вас є копія вашої бази даних!"
185
 
186
- #: admin.inc.php:286
187
  msgid "Are you sure you want to reset the popular posts?"
188
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
189
 
190
- #: admin.inc.php:287
191
  msgid "Are you sure you want to reset the daily popular posts?"
192
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
193
 
194
- #: admin.inc.php:288
195
  msgid "This will delete the duplicate entries in the tables. Proceed?"
196
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
197
 
198
- #: admin.inc.php:295
199
  msgid "Quick links"
200
  msgstr "Корисні посилання"
201
 
202
- #: admin.inc.php:297
203
  msgid "Top 10 "
204
  msgstr "Топ 10 записів"
205
 
206
- #: admin.inc.php:297
207
  msgid "plugin page"
208
  msgstr "Сторінка плагіна"
209
 
210
- #: admin.inc.php:298
211
  msgid "Other plugins"
212
  msgstr "Інші плагіни автора"
213
 
214
- #: admin.inc.php:299
215
  msgid "Ajay's blog"
216
  msgstr "Блог Ajay"
217
 
218
- #: admin.inc.php:300
219
- #: top-10.php:494
220
  msgid "Support"
221
  msgstr "Підтримка (англ.)"
222
 
223
- #: admin.inc.php:301
224
  msgid "Follow @ajaydsouza on Twitter"
225
  msgstr "Йди за @ajaydsouza в Twitter"
226
 
227
- #: admin.inc.php:305
228
  msgid "Recent developments"
229
  msgstr "Останні розробки"
230
 
231
- #: admin.inc.php:310
232
  msgid "Support the development"
233
  msgstr "Підтримати автора плагіна"
234
 
235
- #: admin.inc.php:318
236
  msgid "Enter amount in USD: "
237
  msgstr "Скільки ви готові пожертвувати (в USD):"
238
 
239
- #: admin.inc.php:322
240
  msgid "Send your donation to the author of"
241
  msgstr "Відправте пожертву автору"
242
 
243
- #: admin.inc.php:342
244
- #: admin.inc.php:367
245
- #: admin.inc.php:570
246
- #: top-10.php:266
247
- #: top-10.php:282
248
- #: top-10.php:453
249
- #: top-10.php:456
250
  msgid "Popular Posts"
251
  msgstr "Популярні записи"
252
 
253
- #: admin.inc.php:342
254
  msgid "Daily Popular Posts"
255
  msgstr "Популярні сьогодні записи"
256
 
257
- #: admin.inc.php:365
258
- #: admin.inc.php:367
259
  msgid "Top 10"
260
  msgstr "Топ 10 записів"
261
 
262
- #: admin.inc.php:478
263
  msgid "Results"
264
  msgstr "Результати"
265
 
266
- #: admin.inc.php:480
267
- #: admin.inc.php:486
268
  msgid "of"
269
  msgstr "з"
270
 
271
- #: admin.inc.php:484
272
  msgid "Page"
273
  msgstr "Сторінка"
274
 
275
- #: admin.inc.php:498
276
  msgid "View Daily Popular Posts"
277
  msgstr "Подивитися всі Популярні сьогодні записи"
278
 
279
- #: admin.inc.php:502
280
  msgid "View Overall Popular Posts"
281
  msgstr "Подивитися всі Популярні записи"
282
 
283
- #: admin.inc.php:506
284
  msgid "Results per-page:"
285
  msgstr "Результатів на сторінку:"
286
 
287
- #: admin.inc.php:530
288
  msgid "Previous"
289
  msgstr "Попередня сторінка"
290
 
291
- #: admin.inc.php:548
292
  msgid "Next"
293
  msgstr "Наступна сторінка"
294
 
295
- #: admin.inc.php:571
296
- #: top-10.php:227
297
- #: top-10.php:243
298
- #: top-10.php:454
299
- #: top-10.php:457
300
  msgid "Daily Popular"
301
  msgstr "Популярні сьогодні записи"
302
 
303
- #: admin.inc.php:582
304
  msgid "Total / Today's Views"
305
  msgstr "Всього/Сьогодні"
306
 
307
- #: top-10.php:226
308
  msgid "Display the posts popular today"
309
  msgstr ""
310
 
311
- #: top-10.php:265
312
  msgid "Display the posts popular this week"
313
  msgstr ""
314
 
315
- #: top-10.php:295
316
  msgid "<h3>Popular Posts</h3>"
317
  msgstr "<h3>Популярні записи</h3>"
318
 
319
- #: top-10.php:296
320
  msgid "<h3>Daily Popular</h3>"
321
  msgstr "<h3>Популярні сьогодні записи</h3>"
322
 
323
- #: top-10.php:493
324
  msgid "Settings"
325
  msgstr "Налаштування плагіна"
326
 
327
- #: top-10.php:495
328
  msgid "Donate"
329
  msgstr "Зробити внесок"
330
 
 
 
 
 
 
 
 
 
 
331
  #~ msgid "Support forum"
332
  #~ msgstr "Підтримка (англ.)"
333
 
2
  msgstr ""
3
  "Project-Id-Version: Top 10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-12-25 07:22-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
15
  "X-Poedit-Basepath: ../\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:58
19
  msgid "Options saved successfully."
20
  msgstr "Установки збережені."
21
 
22
+ #: admin.inc.php:67
23
  msgid "Options set to Default."
24
  msgstr "Установки скинуті."
25
 
26
+ #: admin.inc.php:73
27
  msgid "Top 10 popular posts reset"
28
  msgstr "Скинути статистику найпопулярніших записів"
29
 
30
+ #: admin.inc.php:79
31
  msgid "Top 10 daily popular posts reset"
32
  msgstr "Скинути статистику найпопулярніших записів за сьогодні"
33
 
34
+ #: admin.inc.php:86
35
  msgid "Tables cleaned of duplicate rows"
36
  msgstr "Все повторювані записи в статистиці були видалені"
37
 
38
+ #: admin.inc.php:98
39
  msgid "Options:"
40
  msgstr "Установки плагіна:"
41
 
42
+ #: admin.inc.php:103
43
  msgid "Format to display the count in: "
44
  msgstr "У полі нижче ви можете налаштувати формат відображення кількості переглядів за день, за весь час для записів/сторінок:"
45
 
46
+ #: admin.inc.php:107
47
  msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
48
  msgstr "Використовуйте <code>%totalcount%</code> щоб вивести загальне число переглядів, а <code>%dailycount%</code> - перегляди за добу. Наприклад: <code>(Запис переглянуто 123 рази, сьогодні переглядів - 23)</code>."
49
 
50
+ #: admin.inc.php:110
51
  msgid "Number of popular posts to display: "
52
  msgstr "Кількість Популярних записів у списку:"
53
 
54
+ #: admin.inc.php:116
55
  msgid "Daily Popular should contain views of how many days? "
56
  msgstr "За скільки днів вважати перегляди для списку Популярних сьогодні записів?"
57
 
58
+ #: admin.inc.php:123
59
  msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
60
  msgstr "Виключити сторінки зі списку Популярних записів? Кількість переглядів для сторінок продовжуватиме підраховуватися"
61
 
62
+ #: admin.inc.php:129
63
  msgid "Display number of views on posts?"
64
  msgstr "Показувати кількість переглядів запису?"
65
 
66
+ #: admin.inc.php:135
67
  msgid "Display number of views on pages?"
68
  msgstr "Показувати кількість переглядів сторінки?"
69
 
70
+ #: admin.inc.php:141
71
  msgid "Track visits of authors on their own posts?"
72
  msgstr "Враховувати перегляди записів, зроблені їхніми ж авторами?"
73
 
74
+ #: admin.inc.php:147
75
  msgid "Display number of page views in popular lists?"
76
  msgstr "Показувати кількість переглядів записів/сторінок в списку Популярних записів?"
77
 
78
+ #: admin.inc.php:153
79
  msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
80
  msgstr "Зробити список Популярних записів динамічним? Опція використовує JavaScript, і це може збільшити час завантаження сторінок"
81
 
82
+ #: admin.inc.php:159
83
  msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
84
  msgstr "Показувати кількість переглядів записів/сторінок в адмінці? Для цього буде додана окрема колонка в wp-admin/edit.php"
85
 
86
+ #: admin.inc.php:165
87
  msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
88
  msgstr "Залишити посилання на плагін під списками Популярних записів? Автор плагіна був би дуже вдячний Вам, якщо Ви її все ж залишите!"
89
 
90
+ #: admin.inc.php:169
91
  msgid "Output Options:"
92
  msgstr "Установки плагіна:"
93
 
94
+ #: admin.inc.php:173
95
  msgid "Title of popular posts: "
96
  msgstr "Заголовок списку Популярних записів:"
97
 
98
+ #: admin.inc.php:179
99
  msgid "Title of daily popular posts: "
100
  msgstr "Заголовок списку Популярних сьогодні записів:"
101
 
102
+ #: admin.inc.php:186
103
  msgid "Show post excerpt in list?"
104
  msgstr "Показувати текст запису в списку?"
105
 
106
+ #: admin.inc.php:191
107
  msgid "Length of excerpt (in words): "
108
  msgstr "Довжина виведеного тексту (в словах):"
109
 
110
+ #: admin.inc.php:195
111
  msgid "Exclude Categories: "
112
  msgstr "Виключити Категорії:"
113
 
114
+ #: admin.inc.php:210
115
  msgid "Customize the output:"
116
  msgstr "Установки оформлення списку:"
117
 
118
+ #: admin.inc.php:213
119
  msgid "HTML to display before the list of posts: "
120
  msgstr "HTML-тег, який використовується перед списком:"
121
 
122
+ #: admin.inc.php:219
123
  msgid "HTML to display before each list item: "
124
  msgstr "HTML-тег, який використовується перед кожним пунктом у списку:"
125
 
126
+ #: admin.inc.php:225
127
  msgid "HTML to display after each list item: "
128
  msgstr "HTML-тег, який використовується після кожного пункту в списку:"
129
 
130
+ #: admin.inc.php:231
131
  msgid "HTML to display after the list of posts: "
132
  msgstr "HTML-тег, який використовується після списку:"
133
 
134
+ #: admin.inc.php:235
135
  msgid "Post thumbnail options:"
136
  msgstr "Установки превью до записів:"
137
 
138
+ #: admin.inc.php:239
139
+ #, fuzzy
140
+ msgid "Display thumbnails inline with posts, before title"
141
  msgstr "Відображати і превью, і текст"
142
 
143
+ #: admin.inc.php:243
144
+ #, fuzzy
145
+ msgid "Display thumbnails inline with posts, after title"
146
+ msgstr "Відображати і превью, і текст"
147
+
148
+ #: admin.inc.php:247
149
  msgid "Display only thumbnails, no text"
150
  msgstr "Показувати тільки превью, без тексту"
151
 
152
+ #: admin.inc.php:251
153
  msgid "Do not display thumbnails, only text."
154
  msgstr "Показувати лише текст, без превью"
155
 
156
+ #: admin.inc.php:256
157
  msgid "Post thumbnail meta field (the meta should point to the image source): "
158
  msgstr "Ввести назву довільного поля (мета-поле) для виведення превью:"
159
 
160
+ #: admin.inc.php:263
161
  msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
162
  msgstr "Якщо назва для мета-поля не встановлена, то плагін буде виводити перше зображення із запису. Це може злегка збільшити завантаження в перший раз, так як буде створюватися зменшена копія зображення"
163
 
164
+ #: admin.inc.php:266
165
  msgid "Thumbnail dimensions:"
166
  msgstr "Розміри виведеного зображення (превью):"
167
 
168
+ #: admin.inc.php:268
169
  msgid "Max width: "
170
  msgstr "Ширина:"
171
 
172
+ #: admin.inc.php:273
173
  msgid "Max height: "
174
  msgstr "Висота:"
175
 
 
 
 
 
176
  #: admin.inc.php:277
177
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
178
+ msgstr ""
179
+
180
+ #: admin.inc.php:282
181
  msgid "Do you want to set options to Default?"
182
  msgstr "Скинути налаштування плагіна?"
183
 
184
+ #: admin.inc.php:285
185
  msgid "Reset count"
186
  msgstr "Скинути статистику"
187
 
188
+ #: admin.inc.php:288
189
  msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
190
  msgstr "Скидання статистики не може бути обернена. Перед тим, як скидати все, переконайтесь, що у вас є копія вашої бази даних!"
191
 
192
+ #: admin.inc.php:291
193
  msgid "Are you sure you want to reset the popular posts?"
194
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
195
 
196
+ #: admin.inc.php:292
197
  msgid "Are you sure you want to reset the daily popular posts?"
198
  msgstr "Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
199
 
200
+ #: admin.inc.php:293
201
  msgid "This will delete the duplicate entries in the tables. Proceed?"
202
  msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
203
 
204
+ #: admin.inc.php:300
205
  msgid "Quick links"
206
  msgstr "Корисні посилання"
207
 
208
+ #: admin.inc.php:302
209
  msgid "Top 10 "
210
  msgstr "Топ 10 записів"
211
 
212
+ #: admin.inc.php:302
213
  msgid "plugin page"
214
  msgstr "Сторінка плагіна"
215
 
216
+ #: admin.inc.php:303
217
  msgid "Other plugins"
218
  msgstr "Інші плагіни автора"
219
 
220
+ #: admin.inc.php:304
221
  msgid "Ajay's blog"
222
  msgstr "Блог Ajay"
223
 
224
+ #: admin.inc.php:305
225
+ #: top-10.php:515
226
  msgid "Support"
227
  msgstr "Підтримка (англ.)"
228
 
229
+ #: admin.inc.php:306
230
  msgid "Follow @ajaydsouza on Twitter"
231
  msgstr "Йди за @ajaydsouza в Twitter"
232
 
233
+ #: admin.inc.php:310
234
  msgid "Recent developments"
235
  msgstr "Останні розробки"
236
 
237
+ #: admin.inc.php:315
238
  msgid "Support the development"
239
  msgstr "Підтримати автора плагіна"
240
 
241
+ #: admin.inc.php:323
242
  msgid "Enter amount in USD: "
243
  msgstr "Скільки ви готові пожертвувати (в USD):"
244
 
245
+ #: admin.inc.php:327
246
  msgid "Send your donation to the author of"
247
  msgstr "Відправте пожертву автору"
248
 
249
+ #: admin.inc.php:347
250
+ #: admin.inc.php:372
251
+ #: admin.inc.php:575
252
+ #: top-10.php:257
253
+ #: top-10.php:273
254
+ #: top-10.php:445
255
+ #: top-10.php:448
256
  msgid "Popular Posts"
257
  msgstr "Популярні записи"
258
 
259
+ #: admin.inc.php:347
260
  msgid "Daily Popular Posts"
261
  msgstr "Популярні сьогодні записи"
262
 
263
+ #: admin.inc.php:370
264
+ #: admin.inc.php:372
265
  msgid "Top 10"
266
  msgstr "Топ 10 записів"
267
 
268
+ #: admin.inc.php:483
269
  msgid "Results"
270
  msgstr "Результати"
271
 
272
+ #: admin.inc.php:485
273
+ #: admin.inc.php:491
274
  msgid "of"
275
  msgstr "з"
276
 
277
+ #: admin.inc.php:489
278
  msgid "Page"
279
  msgstr "Сторінка"
280
 
281
+ #: admin.inc.php:503
282
  msgid "View Daily Popular Posts"
283
  msgstr "Подивитися всі Популярні сьогодні записи"
284
 
285
+ #: admin.inc.php:507
286
  msgid "View Overall Popular Posts"
287
  msgstr "Подивитися всі Популярні записи"
288
 
289
+ #: admin.inc.php:511
290
  msgid "Results per-page:"
291
  msgstr "Результатів на сторінку:"
292
 
293
+ #: admin.inc.php:535
294
  msgid "Previous"
295
  msgstr "Попередня сторінка"
296
 
297
+ #: admin.inc.php:553
298
  msgid "Next"
299
  msgstr "Наступна сторінка"
300
 
301
+ #: admin.inc.php:576
302
+ #: top-10.php:219
303
+ #: top-10.php:235
304
+ #: top-10.php:446
305
+ #: top-10.php:449
306
  msgid "Daily Popular"
307
  msgstr "Популярні сьогодні записи"
308
 
309
+ #: admin.inc.php:587
310
  msgid "Total / Today's Views"
311
  msgstr "Всього/Сьогодні"
312
 
313
+ #: top-10.php:218
314
  msgid "Display the posts popular today"
315
  msgstr ""
316
 
317
+ #: top-10.php:256
318
  msgid "Display the posts popular this week"
319
  msgstr ""
320
 
321
+ #: top-10.php:286
322
  msgid "<h3>Popular Posts</h3>"
323
  msgstr "<h3>Популярні записи</h3>"
324
 
325
+ #: top-10.php:287
326
  msgid "<h3>Daily Popular</h3>"
327
  msgstr "<h3>Популярні сьогодні записи</h3>"
328
 
329
+ #: top-10.php:514
330
  msgid "Settings"
331
  msgstr "Налаштування плагіна"
332
 
333
+ #: top-10.php:516
334
  msgid "Donate"
335
  msgstr "Зробити внесок"
336
 
337
+ #~ msgid ""
338
+ #~ "The plugin will first check if the post contains a thumbnail. If it "
339
+ #~ "doesn't then it will check the meta field. If this is not available, then "
340
+ #~ "it will show the default image as specified below:"
341
+ #~ msgstr ""
342
+ #~ "У першу чергу, плагін перевірить, чи є у запису превью (перевірка по "
343
+ #~ "заданому раніше мета-полю). Якщо ж превью нема - буде виводитися картинка "
344
+ #~ "за замовчунням:"
345
+
346
  #~ msgid "Support forum"
347
  #~ msgstr "Підтримка (англ.)"
348
 
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: 3.3
8
 
9
 
10
  Track daily and total visits on your blog posts and display the count as well as popular posts.
@@ -34,6 +34,14 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
34
 
35
  == Changelog ==
36
 
 
 
 
 
 
 
 
 
37
  = 1.7.6 =
38
  * Fixed: Bug with Daily posts widget created an extra header tag in certain themes
39
 
@@ -110,9 +118,13 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
110
 
111
  == Upgrade Notice ==
112
 
113
- = 1.7 =
114
- * Added: Excludes posts in the top lists from select categories
115
- * Modified: Performance improvements
 
 
 
 
116
 
117
 
118
  == Installation ==
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 2.5
7
+ Tested up to: 3.4
8
 
9
 
10
  Track daily and total visits on your blog posts and display the count as well as popular posts.
34
 
35
  == Changelog ==
36
 
37
+ = 1.8 =
38
+ * Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
39
+ * Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
40
+ * Added: Option to display thumbnails before or after the title
41
+ * Added: Option to not display thumbnails instead of the default thumbnail
42
+ * Added: Counts are now neatly formatted with commas
43
+ * Modified: Minor tweaks to improve performance
44
+
45
  = 1.7.6 =
46
  * Fixed: Bug with Daily posts widget created an extra header tag in certain themes
47
 
118
 
119
  == Upgrade Notice ==
120
 
121
+ = 1.8 =
122
+ * Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
123
+ * Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
124
+ * Added: Option to display thumbnails before or after the title
125
+ * Added: Option to not display thumbnails instead of the default thumbnail
126
+ * Added: Counts are now neatly formatted with commas
127
+ * Modified: Minor tweaks to improve performance
128
 
129
 
130
  == Installation ==
top-10-daily.js.php CHANGED
@@ -14,68 +14,15 @@ if (!function_exists('add_action')) {
14
  // Display counter using Ajax
15
  function tptn_daily_lists() {
16
  global $wpdb, $siteurl, $tableposts, $id;
17
- $table_name = $wpdb->prefix . "top_ten_daily";
18
-
19
- $is_widget = intval($_GET['widget']);
20
-
21
- $tptn_settings = tptn_read_options();
22
- $limit = $tptn_settings['limit'];
23
- $daily_range = $tptn_settings[daily_range]-1;
24
- $current_time = gmdate( 'Y-m-d', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) );
25
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
26
- $current_date = date ( 'Y-m-j' , $current_date );
27
-
28
- $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
29
- $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
30
- if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
31
- $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
32
- $sql .= "GROUP BY postnumber ";
33
- $sql .= "ORDER BY sumCount DESC LIMIT $limit";
34
 
35
- $results = $wpdb->get_results($sql);
36
 
37
- $output = '<div id="tptn_related_daily">';
38
- if(!$is_widget) $output .= $tptn_settings['title_daily'];
39
-
40
- if ($results) {
41
- $output .= $tptn_settings['before_list'];
42
- foreach ($results as $result) {
43
- $title = trim(stripslashes(get_the_title($result->postnumber)));
44
- $output .= $tptn_settings['before_list_item'];
45
-
46
- if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='thumbs_only')) {
47
- $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">';
48
- if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail($result->postnumber))) {
49
- $output .= get_the_post_thumbnail( $result->postnumber, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array('title' => $title,'alt' => $title, 'class' => 'tptn_thumb', 'border' => '0'));
50
- } else {
51
- $postimage = get_post_meta($result->postnumber, $tptn_settings[thumb_meta], true); // Check
52
- if ((!$postimage)&&($tptn_settings['scan_images'])) {
53
- preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
54
- // any image there?
55
- if( isset( $matches ) && $matches[1][0] ) {
56
- $postimage = $matches[1][0]; // we need the first one only!
57
- }
58
- }
59
- if (!$postimage) $postimage = $tptn_settings[thumb_default];
60
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" width="'.$tptn_settings[thumb_width].'" height="'.$tptn_settings[thumb_height].'" border="0" class="tptn_thumb" />';
61
- }
62
- $output .= '</a> ';
63
- }
64
- if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='text_only')) {
65
- $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">'.$title.'</a>';
66
- }
67
- if ($tptn_settings['show_excerpt']) {
68
- $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->post_content,$tptn_settings['excerpt_length']).'</span>';
69
- }
70
- if ($tptn_settings['disp_list_count']) $output .= ' ('.$result->sumCount.')';
71
- $output .= $tptn_settings['after_list_item'];
72
- }
73
- if ($tptn_settings['show_credit']) $output .= $tptn_settings['before_list_item'].'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/">Top 10 plugin</a>'.$tptn_settings['after_list_item'];
74
- $output .= $tptn_settings['after_list'];
75
  }
76
 
77
- $output .= '</div>';
78
-
79
  echo "document.write('".$output."')";
80
  }
81
  tptn_daily_lists();
14
  // Display counter using Ajax
15
  function tptn_daily_lists() {
16
  global $wpdb, $siteurl, $tableposts, $id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
+ $is_widget = intval($_GET['widget']);
19
 
20
+ if($is_widget) {
21
+ $output = tptn_pop_posts(true,true);
22
+ } else {
23
+ $output = tptn_pop_posts(true,false);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
 
 
26
  echo "document.write('".$output."')";
27
  }
28
  tptn_daily_lists();
top-10.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
- Version: 1.7.6
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
6
  Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
7
  Author: Ajay D'Souza
@@ -117,7 +117,7 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
117
  $exclude_categories = explode(',',$tptn_settings['exclude_categories']);
118
 
119
  if (!$daily) {
120
- $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status, post_content ";
121
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
122
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
123
  $sql .= "AND post_status = 'publish' ";
@@ -128,7 +128,7 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
128
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
129
  $current_date = date ( 'Y-m-j' , $current_date );
130
 
131
- $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status, post_content ";
132
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
133
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
134
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
@@ -164,32 +164,24 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
164
  if (!$p_in_c) {
165
  $output .= $tptn_settings['before_list_item'];
166
 
167
- if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='thumbs_only')) {
168
- $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">';
169
- if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail($result->postnumber))) {
170
- $output .= get_the_post_thumbnail( $result->postnumber, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array('title' => $title,'alt' => $title, 'class' => 'tptn_thumb', 'border' => '0'));
171
- } else {
172
- $postimage = get_post_meta($result->postnumber, $tptn_settings[thumb_meta], true); // Check
173
- if ((!$postimage)&&($tptn_settings['scan_images'])) {
174
- preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
175
- // any image there?
176
- if( isset( $matches ) && $matches[1][0] ) {
177
- $postimage = $matches[1][0]; // we need the first one only!
178
- }
179
- }
180
- if (!$postimage) $postimage = $tptn_settings[thumb_default];
181
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" width="'.$tptn_settings[thumb_width].'" height="'.$tptn_settings[thumb_height].'" border="0" class="tptn_thumb" />';
182
- }
183
- $output .= '</a> ';
184
  }
185
- if (($tptn_settings['post_thumb_op']=='inline')||($tptn_settings['post_thumb_op']=='text_only')) {
186
- $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark">'.$title.'</a>';
187
- }
 
 
 
 
188
  if ($tptn_settings['show_excerpt']) {
189
- $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->post_content,$tptn_settings['excerpt_length']).'</span>';
190
  }
191
- if ($tptn_settings['disp_list_count']) $output .= ' ('.$result->sumCount.')';
192
- $output .= $tptn_settings['after_list_item'];
 
 
193
  $counter++;
194
  }
195
  if ($counter == $limit/5) break; // End loop when related posts limit is reached
@@ -314,10 +306,11 @@ function tptn_default_options() {
314
  'before_list_item' => '<li>', // Before each list item
315
  'after_list_item' => '</li>', // After each list item
316
  'post_thumb_op' => 'text_only', // Display only text in posts
317
- 'thumb_height' => '100', // Height of thumbnails
318
- 'thumb_width' => '100', // Width of thumbnails
319
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
320
  'thumb_default' => $thumb_default, // Default thumbnail image
 
321
  'scan_images' => false, // Scan post for images
322
  'show_excerpt' => false, // Show description in list item
323
  'excerpt_length' => '10', // Length of characters
@@ -458,8 +451,37 @@ function init_tptn(){
458
  }
459
  add_action('init', 'init_tptn', 1);
460
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  // Function to create an excerpt for the post
462
- function tptn_excerpt($content,$excerpt_length){
 
463
  $out = strip_tags($content);
464
  $blah = explode(' ',$out);
465
  if (!$excerpt_length) $excerpt_length = 10;
1
  <?php
2
  /*
3
  Plugin Name: Top 10
4
+ Version: 1.8
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
117
  $exclude_categories = explode(',',$tptn_settings['exclude_categories']);
118
 
119
  if (!$daily) {
120
+ $sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status ";
121
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
122
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
123
  $sql .= "AND post_status = 'publish' ";
128
  $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $current_time ) );
129
  $current_date = date ( 'Y-m-j' , $current_date );
130
 
131
+ $sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
132
  $sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
133
  if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
134
  $sql .= "AND post_status = 'publish' AND dp_date >= '$current_date' ";
164
  if (!$p_in_c) {
165
  $output .= $tptn_settings['before_list_item'];
166
 
167
+ $output .= '<a href="'.get_permalink($result->postnumber).'" rel="bookmark" class="tptn_link">'; // Add beginning of link
168
+ if ($tptn_settings['post_thumb_op']=='after') {
169
+ $output .= $title; // Add title if post thumbnail is to be displayed after
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  }
171
+ if ($tptn_settings['post_thumb_op']=='inline' || $tptn_settings['post_thumb_op']=='after' || $tptn_settings['post_thumb_op']=='thumbs_only') {
172
+ $output .= tptn_get_the_post_thumbnail($result->postnumber);
173
+ }
174
+ if ($tptn_settings['post_thumb_op']=='inline' || $tptn_settings['post_thumb_op']=='text_only') {
175
+ $output .= $title; // Add title when required by settings
176
+ }
177
+ $output .= '</a>'; // Close the link
178
  if ($tptn_settings['show_excerpt']) {
179
+ $output .= '<span class="tptn_excerpt"> '.tptn_excerpt($result->postnumber,$tptn_settings['excerpt_length']).'</span>';
180
  }
181
+ if ($tptn_settings['disp_list_count']) {
182
+ $output .= ' ('.number_format($result->sumCount).')';
183
+ }
184
+ $output .= $tptn_settings['after_list_item'];
185
  $counter++;
186
  }
187
  if ($counter == $limit/5) break; // End loop when related posts limit is reached
306
  'before_list_item' => '<li>', // Before each list item
307
  'after_list_item' => '</li>', // After each list item
308
  'post_thumb_op' => 'text_only', // Display only text in posts
309
+ 'thumb_height' => '100', // Max height of thumbnails
310
+ 'thumb_width' => '100', // Max width of thumbnails
311
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
312
  'thumb_default' => $thumb_default, // Default thumbnail image
313
+ 'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
314
  'scan_images' => false, // Scan post for images
315
  'show_excerpt' => false, // Show description in list item
316
  'excerpt_length' => '10', // Length of characters
451
  }
452
  add_action('init', 'init_tptn', 1);
453
 
454
+ // Function to get the post thumbnail
455
+ function tptn_get_the_post_thumbnail($postid) {
456
+
457
+ $result = get_post($postid);
458
+ $tptn_settings = tptn_read_options();
459
+ $output = '';
460
+
461
+ if (function_exists('has_post_thumbnail') && has_post_thumbnail($result->ID)) {
462
+ $output .= get_the_post_thumbnail($result->ID, array($tptn_settings[thumb_width],$tptn_settings[thumb_height]), array('title' => $title,'alt' => $title, 'class' => 'tptn_thumb', 'border' => '0'));
463
+ } else {
464
+ $postimage = get_post_meta($result->ID, $tptn_settings[thumb_meta], true); // Check
465
+ if (!$postimage && $tptn_settings['scan_images']) {
466
+ preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
467
+ // any image there?
468
+ if (isset($matches) && $matches[1][0]) {
469
+ $postimage = $matches[1][0]; // we need the first one only!
470
+ }
471
+ }
472
+ if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
473
+ if ($tptn_settings['thumb_default_show'] && !$postimage) $postimage = $tptn_settings[thumb_default]; // If no thumb found and settings permit, use default thumb
474
+ if ($postimage) {
475
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$tptn_settings[thumb_width].'px;max-height:'.$tptn_settings[thumb_height].'px;" border="0" class="tptn_thumb" />';
476
+ }
477
+ }
478
+
479
+ return $output;
480
+ }
481
+
482
  // Function to create an excerpt for the post
483
+ function tptn_excerpt($id,$excerpt_length){
484
+ $content = get_post($id)->post_content;
485
  $out = strip_tags($content);
486
  $blah = explode(' ',$out);
487
  if (!$excerpt_length) $excerpt_length = 10;