Version Description
- Added: Exclude posts in the top lists from select categories
- Modified: Performance improvements
- Modified: Better compatibility with the latest versions of WordPress. If you are using the sidebar widgets, please readd them to your theme under Appearance > Widgets
Download this release
Release Info
Developer | Ajay |
Plugin | Top 10 – Popular posts plugin for WordPress |
Version | 1.7 |
Comparing to | |
See all releases |
Code changes from version 1.6.3 to 1.7
- admin.inc.php +38 -1
- languages/tptn-az_AZ.mo +0 -0
- languages/tptn-az_AZ.po +334 -0
- languages/tptn-be_BY.mo +0 -0
- languages/tptn-be_BY.po +89 -97
- languages/tptn-en_US.mo +0 -0
- languages/tptn-en_US.po +89 -86
- languages/tptn-en_US.pot +89 -86
- languages/tptn-ga_IR.mo +0 -0
- languages/tptn-ga_IR.po +228 -69
- languages/tptn-it_IT.mo +0 -0
- languages/tptn-it_IT.po +92 -88
- languages/tptn-nl_NL.mo +0 -0
- languages/tptn-nl_NL.po +90 -87
- languages/tptn-ru_RU.mo +0 -0
- languages/tptn-ru_RU.po +90 -86
- languages/tptn-ua_UA.mo +0 -0
- languages/tptn-ua_UA.po +334 -0
- readme.txt +16 -7
- screenshot-1.gif +0 -0
- top-10.php +55 -30
- update-info.txt +3 -3
- wick/sample_data.js.php +31 -0
- wick/wick.css +51 -0
- wick/wick.js +492 -0
admin.inc.php
CHANGED
@@ -40,6 +40,17 @@ function tptn_options() {
|
|
40 |
$tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
|
41 |
$tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
|
42 |
$tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
update_option('ald_tptn_settings', $tptn_settings);
|
45 |
|
@@ -180,6 +191,21 @@ function tptn_options() {
|
|
180 |
<input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings[excerpt_length]); ?>">
|
181 |
</label>
|
182 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
<h4><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></h4>
|
184 |
<p>
|
185 |
<label>
|
@@ -271,7 +297,7 @@ function tptn_options() {
|
|
271 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
|
272 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
|
273 |
<li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
|
274 |
-
<li><a href="http://ajaydsouza.
|
275 |
<li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
|
276 |
</ul>
|
277 |
</div>
|
@@ -347,7 +373,18 @@ function tptn_adminhead() {
|
|
347 |
global $tptn_url;
|
348 |
|
349 |
?>
|
|
|
350 |
<link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/admin-styles.css" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
<?php }
|
352 |
|
353 |
// Function to delete all rows in the posts table
|
40 |
$tptn_settings[scan_images] = (($_POST['scan_images']) ? true : false);
|
41 |
$tptn_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
|
42 |
$tptn_settings[excerpt_length] = intval($_POST['excerpt_length']);
|
43 |
+
$tptn_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
|
44 |
+
|
45 |
+
$exclude_categories_slugs = explode(", ",$tptn_settings[exclude_cat_slugs]);
|
46 |
+
|
47 |
+
$exclude_categories = '';
|
48 |
+
foreach ($exclude_categories_slugs as $exclude_categories_slug) {
|
49 |
+
$catObj = get_category_by_slug($exclude_categories_slug);
|
50 |
+
$exclude_categories .= $catObj->term_id . ',';
|
51 |
+
}
|
52 |
+
$tptn_settings[exclude_categories] = substr($exclude_categories, 0, -2);
|
53 |
+
|
54 |
|
55 |
update_option('ald_tptn_settings', $tptn_settings);
|
56 |
|
191 |
<input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings[excerpt_length]); ?>">
|
192 |
</label>
|
193 |
</p>
|
194 |
+
<p><?php _e('Exclude Categories: ',tptn_LOCAL_NAME); ?></p>
|
195 |
+
<div style="position:relative;text-align:left">
|
196 |
+
<table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
|
197 |
+
<tr><td><!--
|
198 |
+
please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
|
199 |
+
to explain why i'm using a table here.
|
200 |
+
You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
|
201 |
+
-->
|
202 |
+
<div class="myCustomFloaterContent">
|
203 |
+
you should never be seeing this
|
204 |
+
</div>
|
205 |
+
</td></tr>
|
206 |
+
</table>
|
207 |
+
<textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($tptn_settings[exclude_cat_slugs])); ?></textarea>
|
208 |
+
</div>
|
209 |
<h4><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></h4>
|
210 |
<p>
|
211 |
<label>
|
297 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
|
298 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
|
299 |
<li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
|
300 |
+
<li><a href="http://ajaydsouza.com/support"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
|
301 |
<li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
|
302 |
</ul>
|
303 |
</div>
|
373 |
global $tptn_url;
|
374 |
|
375 |
?>
|
376 |
+
<link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/wick/wick.css" />
|
377 |
<link rel="stylesheet" type="text/css" href="<?php echo $tptn_url ?>/admin-styles.css" />
|
378 |
+
<script type="text/javascript" language="JavaScript">
|
379 |
+
function checkForm() {
|
380 |
+
answer = true;
|
381 |
+
if (siw && siw.selectingSomething)
|
382 |
+
answer = false;
|
383 |
+
return answer;
|
384 |
+
}//
|
385 |
+
</script>
|
386 |
+
<script type="text/javascript" src="<?php echo $tptn_url ?>/wick/sample_data.js.php"></script>
|
387 |
+
<script type="text/javascript" src="<?php echo $tptn_url ?>/wick/wick.js"></script>
|
388 |
<?php }
|
389 |
|
390 |
// Function to delete all rows in the posts table
|
languages/tptn-az_AZ.mo
ADDED
Binary file
|
languages/tptn-az_AZ.po
ADDED
@@ -0,0 +1,334 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Топ 10\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-09-02 07:29-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
+
"Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Azerbaijani\n"
|
13 |
+
"X-Poedit-Country: AZERBAIJAN\n"
|
14 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: admin.inc.php: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:456
|
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:249
|
247 |
+
#: top-10.php:415
|
248 |
+
#: top-10.php:418
|
249 |
+
msgid "Popular Posts"
|
250 |
+
msgstr "Populyar yazılar"
|
251 |
+
|
252 |
+
#: admin.inc.php:342
|
253 |
+
msgid "Daily Popular Posts"
|
254 |
+
msgstr "Gündəlik Populyar Yazılar"
|
255 |
+
|
256 |
+
#: admin.inc.php:365
|
257 |
+
#: admin.inc.php:367
|
258 |
+
msgid "Top 10"
|
259 |
+
msgstr "Top 10 yazılar"
|
260 |
+
|
261 |
+
#: admin.inc.php:478
|
262 |
+
msgid "Results"
|
263 |
+
msgstr "Nəticələr"
|
264 |
+
|
265 |
+
#: admin.inc.php:480
|
266 |
+
#: admin.inc.php:486
|
267 |
+
msgid "of"
|
268 |
+
msgstr "-dən "
|
269 |
+
|
270 |
+
#: admin.inc.php:484
|
271 |
+
msgid "Page"
|
272 |
+
msgstr "Səhifə"
|
273 |
+
|
274 |
+
#: admin.inc.php:498
|
275 |
+
msgid "View Daily Popular Posts"
|
276 |
+
msgstr "Gündəlik Populyar Yazılara Baxmaq"
|
277 |
+
|
278 |
+
#: admin.inc.php:502
|
279 |
+
msgid "View Overall Popular Posts"
|
280 |
+
msgstr "Bütün Populyar Yazılara Baxmaq"
|
281 |
+
|
282 |
+
#: admin.inc.php:506
|
283 |
+
msgid "Results per-page:"
|
284 |
+
msgstr "Səhifə üzrə nəticələr:"
|
285 |
+
|
286 |
+
#: admin.inc.php:530
|
287 |
+
msgid "Previous"
|
288 |
+
msgstr "Əvvəlki"
|
289 |
+
|
290 |
+
#: admin.inc.php:548
|
291 |
+
msgid "Next"
|
292 |
+
msgstr "Sonrakı"
|
293 |
+
|
294 |
+
#: admin.inc.php:571
|
295 |
+
#: top-10.php:228
|
296 |
+
#: top-10.php:416
|
297 |
+
#: top-10.php:419
|
298 |
+
msgid "Daily Popular"
|
299 |
+
msgstr "Gündəlik Populyar"
|
300 |
+
|
301 |
+
#: admin.inc.php:582
|
302 |
+
msgid "Total / Today's Views"
|
303 |
+
msgstr "Ümümi/ Bu günkü baxış"
|
304 |
+
|
305 |
+
#: top-10.php:260
|
306 |
+
msgid "<h3>Popular Posts</h3>"
|
307 |
+
msgstr "<h3>Populyar yazılar</h3>"
|
308 |
+
|
309 |
+
#: top-10.php:261
|
310 |
+
msgid "<h3>Daily Popular</h3>"
|
311 |
+
msgstr "<h3>Gündəlik Populyar</h3>"
|
312 |
+
|
313 |
+
#: top-10.php:455
|
314 |
+
msgid "Settings"
|
315 |
+
msgstr "Kökləmələr"
|
316 |
+
|
317 |
+
#: top-10.php:457
|
318 |
+
msgid "Donate"
|
319 |
+
msgstr "İanə etmək"
|
320 |
+
|
321 |
+
#~ msgid "Support forum"
|
322 |
+
#~ msgstr "Dəstək forumu"
|
323 |
+
|
324 |
+
#~ msgid "If you find "
|
325 |
+
#~ msgstr "Если плагин"
|
326 |
+
|
327 |
+
#~ msgid "useful, please do"
|
328 |
+
#~ msgstr "оказался для вас полезным, пожалуйста, сделайте"
|
329 |
+
|
330 |
+
#~ msgid "drop in your contribution"
|
331 |
+
#~ msgstr "пожертвование"
|
332 |
+
|
333 |
+
#~ msgid "Some reasons why you should."
|
334 |
+
#~ msgstr "Сделай пожертвование, поддержи автора плагина!"
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: FatCow <zhr@tut.by>\n"
|
@@ -15,322 +15,314 @@ msgstr ""
|
|
15 |
"X-Poedit-Basepath: ../\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Налады захаваны."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Налады скінуты."
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
#, fuzzy
|
28 |
msgid "Top 10 popular posts reset"
|
29 |
msgstr "Загаловак блока Папулярных запісаў:"
|
30 |
|
31 |
-
#: admin.inc.php:
|
32 |
#, fuzzy
|
33 |
msgid "Top 10 daily popular posts reset"
|
34 |
msgstr "Загаловак блока Папулярных сёння запісаў:"
|
35 |
|
36 |
-
#: admin.inc.php:
|
37 |
msgid "Tables cleaned of duplicate rows"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin.inc.php:
|
41 |
msgid "Options:"
|
42 |
msgstr "Налады ўбудовы:"
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
msgid "Format to display the count in: "
|
46 |
msgstr "Фармат адлюстравання колькасці праглядаў:"
|
47 |
|
48 |
-
#: admin.inc.php:
|
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:
|
53 |
msgid "Number of popular posts to display: "
|
54 |
msgstr "Колькасць Папулярных запісаў у спісе:"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Daily Popular should contain views of how many days? "
|
58 |
msgstr "За колькі дзён лічыць прагляды для запісаў, Папулярных сёння?"
|
59 |
|
60 |
-
#: admin.inc.php:
|
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:
|
65 |
msgid "Display number of views on posts?"
|
66 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Display number of views on pages?"
|
70 |
msgstr "Паказваць колькасць праглядаў старонкі ў яе \"целе\"?"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "Track visits of authors on their own posts?"
|
74 |
msgstr "Улічваць прагляды запісаў, зробленыя іх жа аўтарамі?"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Display number of page views in popular lists?"
|
78 |
msgstr "Паказваць колькасць праглядаў запісаў/старонак у спісе Папулярных запісаў?"
|
79 |
|
80 |
-
#: admin.inc.php:
|
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:
|
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:
|
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:
|
94 |
#, fuzzy
|
95 |
msgid "Output Options:"
|
96 |
msgstr "Налады ўбудовы:"
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Title of popular posts: "
|
100 |
msgstr "Загаловак блока Папулярных запісаў:"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Title of daily popular posts: "
|
104 |
msgstr "Загаловак блока Папулярных сёння запісаў:"
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Show post excerpt in list?"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
msgid "Length of excerpt (in words): "
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
115 |
msgid "Customize the output:"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: admin.inc.php:
|
119 |
msgid "HTML to display before the list of posts: "
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid "HTML to display before each list item: "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: admin.inc.php:
|
127 |
#, fuzzy
|
128 |
msgid "HTML to display after each list item: "
|
129 |
msgstr "Фармат адлюстравання колькасці праглядаў:"
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid "HTML to display after the list of posts: "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Post thumbnail options:"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
#, fuzzy
|
141 |
msgid "Display thumbnails inline with posts"
|
142 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Display only thumbnails, no text"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Do not display thumbnails, only text."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: admin.inc.php:
|
157 |
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"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Thumbnail dimensions:"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
msgid "Max width: "
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
msgid "Max height: "
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: admin.inc.php:
|
173 |
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:"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: admin.inc.php:
|
177 |
msgid "Do you want to set options to Default?"
|
178 |
msgstr "Скінуць налады ўбудовы?"
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Reset count"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
msgid "Are you sure you want to reset the popular posts?"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Are you sure you want to reset the daily popular posts?"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "Quick links"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin.inc.php:
|
205 |
#, fuzzy
|
206 |
msgid "Top 10 "
|
207 |
msgstr "Топ 10 запісаў"
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "plugin page"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "Other plugins"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "Ajay's blog"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
-
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Follow @ajaydsouza on Twitter"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Recent developments"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
#, fuzzy
|
235 |
msgid "Support the development"
|
236 |
msgstr "Падтрымаеце стваральніка ўбудовы"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
msgid "Enter amount in USD: "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Send your donation to the author of"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
-
#: admin.inc.php:
|
248 |
-
#: admin.inc.php:
|
249 |
-
#: top-10.php:
|
250 |
-
#: top-10.php:
|
|
|
251 |
msgid "Popular Posts"
|
252 |
msgstr "Папулярныя запісы"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Daily Popular Posts"
|
256 |
msgstr "Папулярныя сёння запісы"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Top 10"
|
261 |
msgstr "Топ 10 запісаў"
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Results"
|
265 |
msgstr "Вынікі"
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "of"
|
270 |
msgstr "з"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Page"
|
274 |
msgstr "Старонка"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "View Daily Popular Posts"
|
278 |
msgstr "Паглядзець усе Папулярныя сёння запісы"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "View Overall Popular Posts"
|
282 |
msgstr "Паглядзець усе Папулярныя запісы"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Results per-page:"
|
286 |
msgstr "Вынікаў на старонку:"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Previous"
|
290 |
msgstr "Папярэдняя старонка"
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Next"
|
294 |
msgstr "Наступная старонка"
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
-
#: top-10.php:
|
298 |
-
#: top-10.php:
|
|
|
299 |
msgid "Daily Popular"
|
300 |
msgstr "Папулярныя сёння запісы"
|
301 |
|
302 |
-
#: admin.inc.php:
|
303 |
msgid "Total / Today's Views"
|
304 |
msgstr "Усяго / Сёння праглядаў"
|
305 |
|
306 |
-
#: top-10.php:
|
307 |
msgid "<h3>Popular Posts</h3>"
|
308 |
msgstr "<h3>Папулярныя запісы</h3>"
|
309 |
|
310 |
-
#: top-10.php:
|
311 |
msgid "<h3>Daily Popular</h3>"
|
312 |
msgstr "<h3>Папулярныя сёння запісы</h3>"
|
313 |
|
314 |
-
#: top-10.php:
|
315 |
msgid "Settings"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: top-10.php:
|
319 |
-
msgid "Support"
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
#: top-10.php:432
|
323 |
msgid "Donate"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#~ msgid "If you find "
|
327 |
-
#~ msgstr "Калі вы лічыце ўбудова"
|
328 |
-
|
329 |
-
#~ msgid "useful, please do"
|
330 |
-
#~ msgstr "карысным, калі ласка, зрабіце"
|
331 |
-
|
332 |
-
#~ msgid "drop in your contribution"
|
333 |
-
#~ msgstr "ахвяраванне"
|
334 |
-
|
335 |
-
#~ msgid "Some reasons why you should."
|
336 |
-
#~ msgstr "Некалькі чыннікаў зрабіць гэта."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-17 22:16-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: FatCow <zhr@tut.by>\n"
|
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:456
|
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:249
|
255 |
+
#: top-10.php:415
|
256 |
+
#: top-10.php:418
|
257 |
msgid "Popular Posts"
|
258 |
msgstr "Папулярныя запісы"
|
259 |
|
260 |
+
#: admin.inc.php:342
|
261 |
msgid "Daily Popular Posts"
|
262 |
msgstr "Папулярныя сёння запісы"
|
263 |
|
264 |
+
#: admin.inc.php:365
|
265 |
+
#: admin.inc.php:367
|
266 |
msgid "Top 10"
|
267 |
msgstr "Топ 10 запісаў"
|
268 |
|
269 |
+
#: admin.inc.php:478
|
270 |
msgid "Results"
|
271 |
msgstr "Вынікі"
|
272 |
|
273 |
+
#: admin.inc.php:480
|
274 |
+
#: admin.inc.php:486
|
275 |
msgid "of"
|
276 |
msgstr "з"
|
277 |
|
278 |
+
#: admin.inc.php:484
|
279 |
msgid "Page"
|
280 |
msgstr "Старонка"
|
281 |
|
282 |
+
#: admin.inc.php:498
|
283 |
msgid "View Daily Popular Posts"
|
284 |
msgstr "Паглядзець усе Папулярныя сёння запісы"
|
285 |
|
286 |
+
#: admin.inc.php:502
|
287 |
msgid "View Overall Popular Posts"
|
288 |
msgstr "Паглядзець усе Папулярныя запісы"
|
289 |
|
290 |
+
#: admin.inc.php:506
|
291 |
msgid "Results per-page:"
|
292 |
msgstr "Вынікаў на старонку:"
|
293 |
|
294 |
+
#: admin.inc.php:530
|
295 |
msgid "Previous"
|
296 |
msgstr "Папярэдняя старонка"
|
297 |
|
298 |
+
#: admin.inc.php:548
|
299 |
msgid "Next"
|
300 |
msgstr "Наступная старонка"
|
301 |
|
302 |
+
#: admin.inc.php:571
|
303 |
+
#: top-10.php:228
|
304 |
+
#: top-10.php:416
|
305 |
+
#: top-10.php:419
|
306 |
msgid "Daily Popular"
|
307 |
msgstr "Папулярныя сёння запісы"
|
308 |
|
309 |
+
#: admin.inc.php:582
|
310 |
msgid "Total / Today's Views"
|
311 |
msgstr "Усяго / Сёння праглядаў"
|
312 |
|
313 |
+
#: top-10.php:260
|
314 |
msgid "<h3>Popular Posts</h3>"
|
315 |
msgstr "<h3>Папулярныя запісы</h3>"
|
316 |
|
317 |
+
#: top-10.php:261
|
318 |
msgid "<h3>Daily Popular</h3>"
|
319 |
msgstr "<h3>Папулярныя сёння запісы</h3>"
|
320 |
|
321 |
+
#: top-10.php:455
|
322 |
msgid "Settings"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: top-10.php:457
|
|
|
|
|
|
|
|
|
326 |
msgid "Donate"
|
327 |
msgstr ""
|
328 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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,303 +14,306 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
-
#: admin.inc.php:
|
18 |
msgid "Options saved successfully."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin.inc.php:
|
22 |
msgid "Options set to Default."
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin.inc.php:
|
26 |
msgid "Top 10 popular posts reset"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin.inc.php:
|
30 |
msgid "Top 10 daily popular posts reset"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin.inc.php:
|
34 |
msgid "Tables cleaned of duplicate rows"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin.inc.php:
|
38 |
msgid "Options:"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: admin.inc.php:
|
42 |
msgid "Format to display the count in: "
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: admin.inc.php:
|
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:
|
50 |
msgid "Number of popular posts to display: "
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: admin.inc.php:
|
54 |
msgid "Daily Popular should contain views of how many days? "
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: admin.inc.php:
|
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:
|
62 |
msgid "Display number of views on posts?"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: admin.inc.php:
|
66 |
msgid "Display number of views on pages?"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Track visits of authors on their own posts?"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Display number of page views in popular lists?"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: admin.inc.php:
|
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:
|
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:
|
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:
|
90 |
msgid "Output Options:"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin.inc.php:
|
94 |
msgid "Title of popular posts: "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
msgid "Title of daily popular posts: "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin.inc.php:
|
102 |
msgid "Show post excerpt in list?"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin.inc.php:
|
106 |
msgid "Length of excerpt (in words): "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
110 |
msgid "Customize the output:"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin.inc.php:
|
114 |
msgid "HTML to display before the list of posts: "
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin.inc.php:
|
118 |
msgid "HTML to display before each list item: "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "HTML to display after each list item: "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid "HTML to display after the list of posts: "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "Post thumbnail options:"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid "Display thumbnails inline with posts"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Display only thumbnails, no text"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Do not display thumbnails, only text."
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Thumbnail dimensions:"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
msgid "Max width: "
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Max height: "
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Do you want to set options to Default?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Reset count"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: admin.inc.php:
|
182 |
msgid "Are you sure you want to reset the popular posts?"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin.inc.php:
|
186 |
msgid "Are you sure you want to reset the daily popular posts?"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin.inc.php:
|
190 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Quick links"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
msgid "Top 10 "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin.inc.php:
|
202 |
msgid "plugin page"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: admin.inc.php:
|
206 |
msgid "Other plugins"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "Ajay's blog"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
-
|
|
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "Follow @ajaydsouza on Twitter"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Recent developments"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Support the development"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Enter amount in USD: "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Send your donation to the author of"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
-
#: admin.inc.php:
|
239 |
-
#: admin.inc.php:
|
240 |
-
#: top-10.php:
|
241 |
-
#: top-10.php:
|
|
|
242 |
msgid "Popular Posts"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Daily Popular Posts"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "Top 10"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Results"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "of"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Page"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "View Daily Popular Posts"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "View Overall Popular Posts"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Results per-page:"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "Previous"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Next"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
-
#: top-10.php:
|
289 |
-
#: top-10.php:
|
|
|
290 |
msgid "Daily Popular"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Total / Today's Views"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: top-10.php:
|
298 |
msgid "<h3>Popular Posts</h3>"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: top-10.php:
|
302 |
msgid "<h3>Daily Popular</h3>"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: top-10.php:
|
306 |
msgid "Settings"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: top-10.php:
|
310 |
-
msgid "Support"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: top-10.php:432
|
314 |
msgid "Donate"
|
315 |
msgstr ""
|
316 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 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: Ajay D'Souza <me@ajaydsouza.com>\n"
|
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:456
|
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:249
|
246 |
+
#: top-10.php:415
|
247 |
+
#: top-10.php:418
|
248 |
msgid "Popular Posts"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:342
|
252 |
msgid "Daily Popular Posts"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin.inc.php:365
|
256 |
+
#: admin.inc.php:367
|
257 |
msgid "Top 10"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:478
|
261 |
msgid "Results"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:480
|
265 |
+
#: admin.inc.php:486
|
266 |
msgid "of"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:484
|
270 |
msgid "Page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:498
|
274 |
msgid "View Daily Popular Posts"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:502
|
278 |
msgid "View Overall Popular Posts"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin.inc.php:506
|
282 |
msgid "Results per-page:"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin.inc.php:530
|
286 |
msgid "Previous"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:548
|
290 |
msgid "Next"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin.inc.php:571
|
294 |
+
#: top-10.php:228
|
295 |
+
#: top-10.php:416
|
296 |
+
#: top-10.php:419
|
297 |
msgid "Daily Popular"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:582
|
301 |
msgid "Total / Today's Views"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: top-10.php:260
|
305 |
msgid "<h3>Popular Posts</h3>"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: top-10.php:261
|
309 |
msgid "<h3>Daily Popular</h3>"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: top-10.php:455
|
313 |
msgid "Settings"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: top-10.php:457
|
|
|
|
|
|
|
|
|
317 |
msgid "Donate"
|
318 |
msgstr ""
|
319 |
|
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:
|
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,303 +14,306 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
-
#: admin.inc.php:
|
18 |
msgid "Options saved successfully."
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin.inc.php:
|
22 |
msgid "Options set to Default."
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin.inc.php:
|
26 |
msgid "Top 10 popular posts reset"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin.inc.php:
|
30 |
msgid "Top 10 daily popular posts reset"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin.inc.php:
|
34 |
msgid "Tables cleaned of duplicate rows"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin.inc.php:
|
38 |
msgid "Options:"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: admin.inc.php:
|
42 |
msgid "Format to display the count in: "
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: admin.inc.php:
|
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:
|
50 |
msgid "Number of popular posts to display: "
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: admin.inc.php:
|
54 |
msgid "Daily Popular should contain views of how many days? "
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: admin.inc.php:
|
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:
|
62 |
msgid "Display number of views on posts?"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: admin.inc.php:
|
66 |
msgid "Display number of views on pages?"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: admin.inc.php:
|
70 |
msgid "Track visits of authors on their own posts?"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: admin.inc.php:
|
74 |
msgid "Display number of page views in popular lists?"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: admin.inc.php:
|
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:
|
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:
|
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:
|
90 |
msgid "Output Options:"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin.inc.php:
|
94 |
msgid "Title of popular posts: "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
msgid "Title of daily popular posts: "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin.inc.php:
|
102 |
msgid "Show post excerpt in list?"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin.inc.php:
|
106 |
msgid "Length of excerpt (in words): "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
110 |
msgid "Customize the output:"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin.inc.php:
|
114 |
msgid "HTML to display before the list of posts: "
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin.inc.php:
|
118 |
msgid "HTML to display before each list item: "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "HTML to display after each list item: "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid "HTML to display after the list of posts: "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "Post thumbnail options:"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid "Display thumbnails inline with posts"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Display only thumbnails, no text"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Do not display thumbnails, only text."
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Thumbnail dimensions:"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
msgid "Max width: "
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Max height: "
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Do you want to set options to Default?"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Reset count"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: admin.inc.php:
|
182 |
msgid "Are you sure you want to reset the popular posts?"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin.inc.php:
|
186 |
msgid "Are you sure you want to reset the daily popular posts?"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin.inc.php:
|
190 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Quick links"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
msgid "Top 10 "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin.inc.php:
|
202 |
msgid "plugin page"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: admin.inc.php:
|
206 |
msgid "Other plugins"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "Ajay's blog"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
-
|
|
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "Follow @ajaydsouza on Twitter"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Recent developments"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Support the development"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Enter amount in USD: "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Send your donation to the author of"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
-
#: admin.inc.php:
|
239 |
-
#: admin.inc.php:
|
240 |
-
#: top-10.php:
|
241 |
-
#: top-10.php:
|
|
|
242 |
msgid "Popular Posts"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Daily Popular Posts"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "Top 10"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Results"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "of"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Page"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "View Daily Popular Posts"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "View Overall Popular Posts"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Results per-page:"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "Previous"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Next"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
-
#: top-10.php:
|
289 |
-
#: top-10.php:
|
|
|
290 |
msgid "Daily Popular"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Total / Today's Views"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: top-10.php:
|
298 |
msgid "<h3>Popular Posts</h3>"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: top-10.php:
|
302 |
msgid "<h3>Daily Popular</h3>"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: top-10.php:
|
306 |
msgid "Settings"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: top-10.php:
|
310 |
-
msgid "Support"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: top-10.php:432
|
314 |
msgid "Donate"
|
315 |
msgstr ""
|
316 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 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: Ajay D'Souza <me@ajaydsouza.com>\n"
|
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:456
|
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:249
|
246 |
+
#: top-10.php:415
|
247 |
+
#: top-10.php:418
|
248 |
msgid "Popular Posts"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:342
|
252 |
msgid "Daily Popular Posts"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin.inc.php:365
|
256 |
+
#: admin.inc.php:367
|
257 |
msgid "Top 10"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:478
|
261 |
msgid "Results"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:480
|
265 |
+
#: admin.inc.php:486
|
266 |
msgid "of"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:484
|
270 |
msgid "Page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:498
|
274 |
msgid "View Daily Popular Posts"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:502
|
278 |
msgid "View Overall Popular Posts"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin.inc.php:506
|
282 |
msgid "Results per-page:"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin.inc.php:530
|
286 |
msgid "Previous"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:548
|
290 |
msgid "Next"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin.inc.php:571
|
294 |
+
#: top-10.php:228
|
295 |
+
#: top-10.php:416
|
296 |
+
#: top-10.php:419
|
297 |
msgid "Daily Popular"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:582
|
301 |
msgid "Total / Today's Views"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: top-10.php:260
|
305 |
msgid "<h3>Popular Posts</h3>"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: top-10.php:261
|
309 |
msgid "<h3>Daily Popular</h3>"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: top-10.php:455
|
313 |
msgid "Settings"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: top-10.php:457
|
|
|
|
|
|
|
|
|
317 |
msgid "Donate"
|
318 |
msgstr ""
|
319 |
|
languages/tptn-ga_IR.mo
CHANGED
Binary file
|
languages/tptn-ga_IR.po
CHANGED
@@ -2,174 +2,333 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-Language: Irish\n"
|
13 |
"X-Poedit-Country: IRELAND\n"
|
14 |
-
"X-Poedit-
|
|
|
|
|
15 |
|
16 |
-
#: admin.inc.php:
|
17 |
msgid "Options saved successfully."
|
18 |
msgstr "Roghanna shábháil go rathúil."
|
19 |
|
20 |
-
#: admin.inc.php:
|
21 |
msgid "Options set to Default."
|
22 |
msgstr "Roghanna leagtha chun Réamhshocrú."
|
23 |
|
24 |
-
#: admin.inc.php:
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
#: admin.inc.php:57
|
29 |
-
msgid "If you find "
|
30 |
-
msgstr "Má fhaigheann tú"
|
31 |
-
|
32 |
-
#: admin.inc.php:59
|
33 |
-
msgid "useful, please do"
|
34 |
-
msgstr "úsáideach, le do thoil"
|
35 |
|
36 |
-
#: admin.inc.php:
|
37 |
-
|
38 |
-
|
|
|
39 |
|
40 |
-
#: admin.inc.php:
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
msgid "Options:"
|
46 |
msgstr "roghanna"
|
47 |
|
48 |
-
#: admin.inc.php:
|
49 |
msgid "Format to display the count in: "
|
50 |
msgstr "Formáid a thaispeáint ar an comhaireamh i:"
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
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>"
|
54 |
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>"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Number of popular posts to display: "
|
58 |
msgstr "An líon post tóir a thaispeáint:"
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
-
msgid "Title of popular posts: "
|
62 |
-
msgstr "Teideal an post tóir:"
|
63 |
-
|
64 |
-
#: admin.inc.php:92
|
65 |
-
msgid "Title of daily popular posts: "
|
66 |
-
msgstr "Teideal ar tóir an bpost:"
|
67 |
-
|
68 |
-
#: admin.inc.php:98
|
69 |
msgid "Daily Popular should contain views of how many days? "
|
70 |
msgstr "Ba chóir go laethúil Coitianta bhfuil tuairimí cé mhéad lá?"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
|
74 |
msgstr "Fág amach Ailt sa taispeáint Poist Coitianta? Beidh Líon na tuairimí maidir Leathanaigh ar aghaidh a chur san áireamh."
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Display number of views on posts?"
|
78 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Display number of views on pages?"
|
82 |
msgstr "Taispeáin líon na dtuairimí ar leathanaigh?"
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Track visits of authors on their own posts?"
|
86 |
msgstr "Track cuairteanna ar údair ar a gcuid post féin?"
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Display number of page views in popular lists?"
|
90 |
msgstr "Taispeáin líon na radhairc leathanaigh i liostaí tóir?"
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
-
|
|
|
94 |
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"
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
|
98 |
msgstr "Taispeáin amharc leathanach ar Edit post / leathanaigh sa Riarachán WP-? Tá colún breise curtha leo le líon"
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
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!"
|
102 |
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ú é!"
|
103 |
|
104 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
msgid "Do you want to set options to Default?"
|
106 |
msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
msgid "Popular Posts"
|
114 |
msgstr "Poist Coitianta"
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Daily Popular Posts"
|
118 |
msgstr "Poist Coitianta Laethúil"
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "Top 10"
|
123 |
msgstr "Top 10"
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid "Results"
|
127 |
msgstr "torthaí"
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
-
#: admin.inc.php:
|
131 |
msgid "of"
|
132 |
msgstr "de"
|
133 |
|
134 |
-
#: admin.inc.php:
|
135 |
msgid "Page"
|
136 |
msgstr "Leathanach"
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "View Daily Popular Posts"
|
140 |
msgstr "Féach ar Poist sa lá Coitianta"
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid "View Overall Popular Posts"
|
144 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Results per-page:"
|
148 |
msgstr "Torthaí in aghaidh an-leathanach:"
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Previous"
|
152 |
msgstr "roimhe Seo"
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Next"
|
156 |
msgstr "Ar Aghaidh"
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
-
#: top-10.php:
|
160 |
-
#: top-10.php:
|
|
|
161 |
msgid "Daily Popular"
|
162 |
msgstr "laethúil Coitianta"
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
msgid "Total / Today's Views"
|
166 |
msgstr "laethúil Coitianta"
|
167 |
|
168 |
-
#: top-10.php:
|
169 |
msgid "<h3>Popular Posts</h3>"
|
170 |
msgstr "<h3>Poist Coitianta </ h3>"
|
171 |
|
172 |
-
#: top-10.php:
|
173 |
msgid "<h3>Daily Popular</h3>"
|
174 |
msgstr "<h3> laethúil Coitianta </ h3>"
|
175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-17 22:17-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Lets Be Famous <ray.s@letsbefamous.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-Language: Irish\n"
|
13 |
"X-Poedit-Country: IRELAND\n"
|
14 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php: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:456
|
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:249
|
261 |
+
#: top-10.php:415
|
262 |
+
#: top-10.php:418
|
263 |
msgid "Popular Posts"
|
264 |
msgstr "Poist Coitianta"
|
265 |
|
266 |
+
#: admin.inc.php:342
|
267 |
msgid "Daily Popular Posts"
|
268 |
msgstr "Poist Coitianta Laethúil"
|
269 |
|
270 |
+
#: admin.inc.php:365
|
271 |
+
#: admin.inc.php:367
|
272 |
msgid "Top 10"
|
273 |
msgstr "Top 10"
|
274 |
|
275 |
+
#: admin.inc.php:478
|
276 |
msgid "Results"
|
277 |
msgstr "torthaí"
|
278 |
|
279 |
+
#: admin.inc.php:480
|
280 |
+
#: admin.inc.php:486
|
281 |
msgid "of"
|
282 |
msgstr "de"
|
283 |
|
284 |
+
#: admin.inc.php:484
|
285 |
msgid "Page"
|
286 |
msgstr "Leathanach"
|
287 |
|
288 |
+
#: admin.inc.php:498
|
289 |
msgid "View Daily Popular Posts"
|
290 |
msgstr "Féach ar Poist sa lá Coitianta"
|
291 |
|
292 |
+
#: admin.inc.php:502
|
293 |
msgid "View Overall Popular Posts"
|
294 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
295 |
|
296 |
+
#: admin.inc.php:506
|
297 |
msgid "Results per-page:"
|
298 |
msgstr "Torthaí in aghaidh an-leathanach:"
|
299 |
|
300 |
+
#: admin.inc.php:530
|
301 |
msgid "Previous"
|
302 |
msgstr "roimhe Seo"
|
303 |
|
304 |
+
#: admin.inc.php:548
|
305 |
msgid "Next"
|
306 |
msgstr "Ar Aghaidh"
|
307 |
|
308 |
+
#: admin.inc.php:571
|
309 |
+
#: top-10.php:228
|
310 |
+
#: top-10.php:416
|
311 |
+
#: top-10.php:419
|
312 |
msgid "Daily Popular"
|
313 |
msgstr "laethúil Coitianta"
|
314 |
|
315 |
+
#: admin.inc.php:582
|
316 |
msgid "Total / Today's Views"
|
317 |
msgstr "laethúil Coitianta"
|
318 |
|
319 |
+
#: top-10.php:260
|
320 |
msgid "<h3>Popular Posts</h3>"
|
321 |
msgstr "<h3>Poist Coitianta </ h3>"
|
322 |
|
323 |
+
#: top-10.php:261
|
324 |
msgid "<h3>Daily Popular</h3>"
|
325 |
msgstr "<h3> laethúil Coitianta </ h3>"
|
326 |
|
327 |
+
#: top-10.php:455
|
328 |
+
msgid "Settings"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: top-10.php:457
|
332 |
+
msgid "Donate"
|
333 |
+
msgstr ""
|
334 |
+
|
languages/tptn-it_IT.mo
CHANGED
Binary file
|
languages/tptn-it_IT.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Gianni Diurno |gidibao.net <gidibao[at]gmail[dot]com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -15,306 +15,310 @@ msgstr ""
|
|
15 |
"X-Poedit-Country: ITALY\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Le opzioni sono state salvate con successo."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opzioni impostate alle predefinite."
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Top 10 popular posts reset"
|
28 |
msgstr "Ripristino 10 articoli più popolari"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Top 10 daily popular posts reset"
|
32 |
msgstr "Ripristino 10 articoli più popolari del giorno"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Tables cleaned of duplicate rows"
|
36 |
msgstr "I duplicati sono stati rimossi dalle tabelle"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Options:"
|
40 |
msgstr "Opzioni:"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Format to display the count in: "
|
44 |
msgstr "Formato per il conteggio:"
|
45 |
|
46 |
-
#: admin.inc.php:
|
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:
|
51 |
msgid "Number of popular posts to display: "
|
52 |
msgstr "Numero degli articoli più popolari da mostrare:"
|
53 |
|
54 |
-
#: admin.inc.php:
|
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:
|
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:
|
63 |
msgid "Display number of views on posts?"
|
64 |
msgstr "Desideri mostrare il numero delle visualizzazioni negli articoli?"
|
65 |
|
66 |
-
#: admin.inc.php:
|
67 |
msgid "Display number of views on pages?"
|
68 |
msgstr "Desideri mostrare il numero delle visualizzazioni nelle pagine?"
|
69 |
|
70 |
-
#: admin.inc.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
91 |
msgid "Output Options:"
|
92 |
msgstr "Opzioni output:"
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Title of popular posts: "
|
96 |
msgstr "Titolo per gli articoli più popolari:"
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Title of daily popular posts: "
|
100 |
msgstr "Titolo per gli articoli più popolari del giorno:"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Show post excerpt in list?"
|
104 |
msgstr "Desideri mostrare gli estratti?"
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Length of excerpt (in words): "
|
108 |
msgstr "Lunghezza estratto (in parole):"
|
109 |
|
110 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
111 |
msgid "Customize the output:"
|
112 |
msgstr "Personalizzazione output:"
|
113 |
|
114 |
-
#: admin.inc.php:
|
115 |
msgid "HTML to display before the list of posts: "
|
116 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
117 |
|
118 |
-
#: admin.inc.php:
|
119 |
msgid "HTML to display before each list item: "
|
120 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid "HTML to display after each list item: "
|
124 |
msgstr "HTML da mostrare dopo ogni lista:"
|
125 |
|
126 |
-
#: admin.inc.php:
|
127 |
msgid "HTML to display after the list of posts: "
|
128 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
129 |
|
130 |
-
#: admin.inc.php:
|
131 |
msgid "Post thumbnail options:"
|
132 |
msgstr "Opzioni miniature articolo:"
|
133 |
|
134 |
-
#: admin.inc.php:
|
135 |
msgid "Display thumbnails inline with posts"
|
136 |
msgstr "Desideri mostrare gli articoli con le miniature inline?"
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Display only thumbnails, no text"
|
140 |
msgstr "Mostra le sole miniature, nessun testo"
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid "Do not display thumbnails, only text."
|
144 |
msgstr "Non mostrare le miniature, solo testo."
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
148 |
msgstr "Campo meta per le miniature (il meta deve puntare alla immagine):"
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
152 |
msgstr "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo la prima immagine. Questa operazione potrebbe rallentare il caricamento del tuo articolo nel caso in cui la prima immagine corelata fosse di grandi dimensioni"
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Thumbnail dimensions:"
|
156 |
msgstr "Dimensione miniature:"
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
msgid "Max width: "
|
160 |
msgstr "Larghezza massima:"
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Max height: "
|
164 |
msgstr "Altezza massima:"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
|
168 |
msgstr "Come prima operazione, il plugin controllerà la presenza di una miniatura nell'articolo. Nel caso in cui non fosse presente, verificherà il campo meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come specificato qui sotto:"
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid "Do you want to set options to Default?"
|
172 |
msgstr "Desideri ripristinare alle predefinite?"
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Reset count"
|
176 |
msgstr "Ripristino conteggio"
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
180 |
msgstr "Questa operazione non é reversibile. Effettua il backup del database prima di procedere"
|
181 |
|
182 |
-
#: admin.inc.php:
|
183 |
msgid "Are you sure you want to reset the popular posts?"
|
184 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
msgid "Are you sure you want to reset the daily popular posts?"
|
188 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
|
189 |
|
190 |
-
#: admin.inc.php:
|
191 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
192 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
193 |
|
194 |
-
#: admin.inc.php:
|
195 |
msgid "Quick links"
|
196 |
msgstr "Collegamenti veloci"
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "Top 10 "
|
200 |
msgstr "Top 10"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
msgid "plugin page"
|
204 |
msgstr "pagina plugin"
|
205 |
|
206 |
-
#: admin.inc.php:
|
207 |
msgid "Other plugins"
|
208 |
msgstr "Altri plugin"
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
msgid "Ajay's blog"
|
212 |
msgstr "Il blog di Ajay"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
-
|
216 |
-
|
|
|
217 |
|
218 |
-
#: admin.inc.php:
|
219 |
msgid "Follow @ajaydsouza on Twitter"
|
220 |
msgstr "Segui @ajaydsouza su Twitter"
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Recent developments"
|
224 |
msgstr "Sviluppi recenti"
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Support the development"
|
228 |
msgstr "Sostieni lo sviluppo"
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
msgid "Enter amount in USD: "
|
232 |
msgstr "Inserisci la cifra in USD: "
|
233 |
|
234 |
-
#: admin.inc.php:
|
235 |
msgid "Send your donation to the author of"
|
236 |
msgstr "Invia la tua donazione all'autore di"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
-
#: admin.inc.php:
|
240 |
-
#: admin.inc.php:
|
241 |
-
#: top-10.php:
|
242 |
-
#: top-10.php:
|
243 |
msgid "Popular Posts"
|
244 |
msgstr "Gli articoli più popolari"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "Daily Popular Posts"
|
248 |
msgstr "Gli articoli più popolari di oggi"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Top 10"
|
253 |
msgstr "Top 10"
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Results"
|
257 |
msgstr "Risultati"
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "of"
|
262 |
msgstr "di"
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Page"
|
266 |
msgstr "Pagina"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "View Daily Popular Posts"
|
270 |
msgstr "Visualizza gli articoli più letti di oggi"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "View Overall Popular Posts"
|
274 |
msgstr "Visualizza panoramica articoli più popolari"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Results per-page:"
|
278 |
msgstr "Risultati per pagina:"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Previous"
|
282 |
msgstr "Precedente"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Next"
|
286 |
msgstr "Successiva"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
-
#: top-10.php:
|
290 |
-
#: top-10.php:
|
291 |
msgid "Daily Popular"
|
292 |
msgstr "I più letti di oggi"
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Total / Today's Views"
|
296 |
msgstr "Totale / Visualizzazioni odierne"
|
297 |
|
298 |
-
#: top-10.php:
|
299 |
msgid "<h3>Popular Posts</h3>"
|
300 |
msgstr "<h3>Articoli più letti</h3>"
|
301 |
|
302 |
-
#: top-10.php:
|
303 |
msgid "<h3>Daily Popular</h3>"
|
304 |
msgstr "<h3>I più letti di oggi</h3>"
|
305 |
|
306 |
-
#: top-10.php:
|
307 |
msgid "Settings"
|
308 |
msgstr "Impostazioni"
|
309 |
|
310 |
-
#: top-10.php:
|
311 |
-
msgid "Support"
|
312 |
-
msgstr "Supporto"
|
313 |
-
|
314 |
-
#: top-10.php:432
|
315 |
msgid "Donate"
|
316 |
msgstr "Donazione"
|
317 |
|
|
|
|
|
|
|
318 |
#~ msgid "If you find "
|
319 |
#~ msgstr "Avessi trovato utile il mio"
|
320 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-17 20:09-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno |gidibao.net <gidibao[at]gmail[dot]com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
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 ""
|
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:450
|
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:249
|
247 |
+
#: top-10.php:413
|
248 |
msgid "Popular Posts"
|
249 |
msgstr "Gli articoli più popolari"
|
250 |
|
251 |
+
#: admin.inc.php:342
|
252 |
msgid "Daily Popular Posts"
|
253 |
msgstr "Gli articoli più popolari di oggi"
|
254 |
|
255 |
+
#: admin.inc.php:365
|
256 |
+
#: admin.inc.php:367
|
257 |
msgid "Top 10"
|
258 |
msgstr "Top 10"
|
259 |
|
260 |
+
#: admin.inc.php:478
|
261 |
msgid "Results"
|
262 |
msgstr "Risultati"
|
263 |
|
264 |
+
#: admin.inc.php:480
|
265 |
+
#: admin.inc.php:486
|
266 |
msgid "of"
|
267 |
msgstr "di"
|
268 |
|
269 |
+
#: admin.inc.php:484
|
270 |
msgid "Page"
|
271 |
msgstr "Pagina"
|
272 |
|
273 |
+
#: admin.inc.php:498
|
274 |
msgid "View Daily Popular Posts"
|
275 |
msgstr "Visualizza gli articoli più letti di oggi"
|
276 |
|
277 |
+
#: admin.inc.php:502
|
278 |
msgid "View Overall Popular Posts"
|
279 |
msgstr "Visualizza panoramica articoli più popolari"
|
280 |
|
281 |
+
#: admin.inc.php:506
|
282 |
msgid "Results per-page:"
|
283 |
msgstr "Risultati per pagina:"
|
284 |
|
285 |
+
#: admin.inc.php:530
|
286 |
msgid "Previous"
|
287 |
msgstr "Precedente"
|
288 |
|
289 |
+
#: admin.inc.php:548
|
290 |
msgid "Next"
|
291 |
msgstr "Successiva"
|
292 |
|
293 |
+
#: admin.inc.php:571
|
294 |
+
#: top-10.php:228
|
295 |
+
#: top-10.php:414
|
296 |
msgid "Daily Popular"
|
297 |
msgstr "I più letti di oggi"
|
298 |
|
299 |
+
#: admin.inc.php:582
|
300 |
msgid "Total / Today's Views"
|
301 |
msgstr "Totale / Visualizzazioni odierne"
|
302 |
|
303 |
+
#: top-10.php:260
|
304 |
msgid "<h3>Popular Posts</h3>"
|
305 |
msgstr "<h3>Articoli più letti</h3>"
|
306 |
|
307 |
+
#: top-10.php:261
|
308 |
msgid "<h3>Daily Popular</h3>"
|
309 |
msgstr "<h3>I più letti di oggi</h3>"
|
310 |
|
311 |
+
#: top-10.php:449
|
312 |
msgid "Settings"
|
313 |
msgstr "Impostazioni"
|
314 |
|
315 |
+
#: top-10.php:451
|
|
|
|
|
|
|
|
|
316 |
msgid "Donate"
|
317 |
msgstr "Donazione"
|
318 |
|
319 |
+
#~ msgid "Support forum"
|
320 |
+
#~ msgstr "Forum di supporto"
|
321 |
+
|
322 |
#~ msgid "If you find "
|
323 |
#~ msgstr "Avessi trovato utile il mio"
|
324 |
|
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:
|
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,305 +17,308 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin.inc.php:
|
21 |
msgid "Options saved successfully."
|
22 |
msgstr "Opties succesvol opgeslagen."
|
23 |
|
24 |
-
#: admin.inc.php:
|
25 |
msgid "Options set to Default."
|
26 |
msgstr "Opties ingesteld op Standaard."
|
27 |
|
28 |
-
#: admin.inc.php:
|
29 |
msgid "Top 10 popular posts reset"
|
30 |
msgstr "Reset Top 10 populaire berichten"
|
31 |
|
32 |
-
#: admin.inc.php:
|
33 |
msgid "Top 10 daily popular posts reset"
|
34 |
msgstr "Reset Top 10 dagelijkse populaire berichten"
|
35 |
|
36 |
-
#: admin.inc.php:
|
37 |
msgid "Tables cleaned of duplicate rows"
|
38 |
msgstr "Dubbele rijen zijn verwijderd uit de tabellen"
|
39 |
|
40 |
-
#: admin.inc.php:
|
41 |
msgid "Options:"
|
42 |
msgstr "Opties:"
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
msgid "Format to display the count in: "
|
46 |
msgstr "Formaat om de optelling te laten zien:"
|
47 |
|
48 |
-
#: admin.inc.php:
|
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:
|
53 |
msgid "Number of popular posts to display: "
|
54 |
msgstr "Aantal populaire berichten om weer te geven:"
|
55 |
|
56 |
-
#: admin.inc.php:
|
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:
|
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:
|
65 |
msgid "Display number of views on posts?"
|
66 |
msgstr "Geef het aantal berichtweergaves weer?"
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Display number of views on pages?"
|
70 |
msgstr "Geef het aantal paginaweergaves weer?"
|
71 |
|
72 |
-
#: admin.inc.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
94 |
msgid "Output Options:"
|
95 |
msgstr "Output Opties:"
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
msgid "Title of popular posts: "
|
99 |
msgstr "Titel van populaire berichten:"
|
100 |
|
101 |
-
#: admin.inc.php:
|
102 |
msgid "Title of daily popular posts: "
|
103 |
msgstr "Titel van dagelijkse populaire berichten:"
|
104 |
|
105 |
-
#: admin.inc.php:
|
106 |
msgid "Show post excerpt in list?"
|
107 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
108 |
|
109 |
-
#: admin.inc.php:
|
110 |
msgid "Length of excerpt (in words): "
|
111 |
msgstr "Lengte van de samenvatting (in woorden):"
|
112 |
|
113 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
114 |
msgid "Customize the output:"
|
115 |
msgstr "Aanpassen van de output:"
|
116 |
|
117 |
-
#: admin.inc.php:
|
118 |
msgid "HTML to display before the list of posts: "
|
119 |
msgstr "Te weergeven HTML voor de lijst met berichten:"
|
120 |
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "HTML to display before each list item: "
|
123 |
msgstr "Te weergeven HTML voor elk lijst item:"
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid "HTML to display after each list item: "
|
127 |
msgstr "Te weergeven HTML na elk lijst item:"
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "HTML to display after the list of posts: "
|
131 |
msgstr "Te weergeven HTML na de lijst met berichten:"
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid "Post thumbnail options:"
|
135 |
msgstr "Bericht miniatuurafbeelding opties:"
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Display thumbnails inline with posts"
|
139 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Display only thumbnails, no text"
|
143 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Do not display thumbnails, only text."
|
147 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
#, fuzzy
|
151 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
152 |
msgstr "Bericht miniatuurafbeelding meta veld (de meta zou moeten verwijzen naar de afbeeldingsbron):"
|
153 |
|
154 |
-
#: admin.inc.php:
|
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 "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"
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
msgid "Thumbnail dimensions:"
|
160 |
msgstr "Afmetingen miniatuurafbeelding:"
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Max width: "
|
164 |
msgstr "Maximale breedte:"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "Max height: "
|
168 |
msgstr "Maximale hoogte:"
|
169 |
|
170 |
-
#: admin.inc.php:
|
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 "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:"
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Do you want to set options to Default?"
|
176 |
msgstr "Wil je de opties terugzetten naar standaard?"
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
msgid "Reset count"
|
180 |
msgstr "Reset telling"
|
181 |
|
182 |
-
#: admin.inc.php:
|
183 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
184 |
msgstr "Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je database gemaakt hebt voordat je verder gaat"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
msgid "Are you sure you want to reset the popular posts?"
|
188 |
msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
|
189 |
|
190 |
-
#: admin.inc.php:
|
191 |
msgid "Are you sure you want to reset the daily popular posts?"
|
192 |
msgstr "Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
|
193 |
|
194 |
-
#: admin.inc.php:
|
195 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
196 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "Quick links"
|
200 |
msgstr "Quick links"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
msgid "Top 10 "
|
204 |
msgstr "Top 10 "
|
205 |
|
206 |
-
#: admin.inc.php:
|
207 |
msgid "plugin page"
|
208 |
msgstr "plugin pagina"
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
msgid "Other plugins"
|
212 |
msgstr "Andere plugins"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
msgid "Ajay's blog"
|
216 |
msgstr "De blog van Ajay"
|
217 |
|
218 |
-
#: admin.inc.php:
|
219 |
-
|
220 |
-
|
|
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Follow @ajaydsouza on Twitter"
|
224 |
msgstr "Volg @ajaydsouza via Twitter"
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Recent developments"
|
228 |
msgstr "Recente ontwikkelingen"
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
msgid "Support the development"
|
232 |
msgstr "Ondersteun de ontwikkeling"
|
233 |
|
234 |
-
#: admin.inc.php:
|
235 |
msgid "Enter amount in USD: "
|
236 |
msgstr "Voer het bedrag in in USD:"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
msgid "Send your donation to the author of"
|
240 |
msgstr "Zend je donatie naar de auteur van "
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
-
#: admin.inc.php:
|
244 |
-
#: admin.inc.php:
|
245 |
-
#: top-10.php:
|
246 |
-
#: top-10.php:
|
247 |
msgid "Popular Posts"
|
248 |
msgstr "Populaire Berichten"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "Daily Popular Posts"
|
252 |
msgstr "Dagelijkse Populaire Berichten"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Top 10"
|
257 |
msgstr "Top 10"
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Results"
|
261 |
msgstr "Resultaten"
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "of"
|
266 |
msgstr "van"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Page"
|
270 |
msgstr "Pagina"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "View Daily Popular Posts"
|
274 |
msgstr "Bekijk de Dagelijkse Populaire Berichten"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "View Overall Popular Posts"
|
278 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Results per-page:"
|
282 |
msgstr "Resultaten per pagina:"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Previous"
|
286 |
msgstr "Vorige"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Next"
|
290 |
msgstr "Volgende"
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
-
#: top-10.php:
|
294 |
-
#: top-10.php:
|
295 |
msgid "Daily Popular"
|
296 |
msgstr "Dagelijks Populair"
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid "Total / Today's Views"
|
300 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
301 |
|
302 |
-
#: top-10.php:
|
303 |
msgid "<h3>Popular Posts</h3>"
|
304 |
msgstr "<h3>Populaire Berichten</h3>"
|
305 |
|
306 |
-
#: top-10.php:
|
307 |
msgid "<h3>Daily Popular</h3>"
|
308 |
msgstr "<h3>Dagelijks Populair</h3>"
|
309 |
|
310 |
-
#: top-10.php:
|
311 |
msgid "Settings"
|
312 |
msgstr "Instellingen"
|
313 |
|
314 |
-
#: top-10.php:
|
315 |
-
msgid "Support"
|
316 |
-
msgstr "Ondersteuning"
|
317 |
-
|
318 |
-
#: top-10.php:432
|
319 |
msgid "Donate"
|
320 |
msgstr "Doneer"
|
321 |
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 v1.6.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-17 20:09-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: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:450
|
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:249
|
251 |
+
#: top-10.php:413
|
252 |
msgid "Popular Posts"
|
253 |
msgstr "Populaire Berichten"
|
254 |
|
255 |
+
#: admin.inc.php:342
|
256 |
msgid "Daily Popular Posts"
|
257 |
msgstr "Dagelijkse Populaire Berichten"
|
258 |
|
259 |
+
#: admin.inc.php:365
|
260 |
+
#: admin.inc.php:367
|
261 |
msgid "Top 10"
|
262 |
msgstr "Top 10"
|
263 |
|
264 |
+
#: admin.inc.php:478
|
265 |
msgid "Results"
|
266 |
msgstr "Resultaten"
|
267 |
|
268 |
+
#: admin.inc.php:480
|
269 |
+
#: admin.inc.php:486
|
270 |
msgid "of"
|
271 |
msgstr "van"
|
272 |
|
273 |
+
#: admin.inc.php:484
|
274 |
msgid "Page"
|
275 |
msgstr "Pagina"
|
276 |
|
277 |
+
#: admin.inc.php:498
|
278 |
msgid "View Daily Popular Posts"
|
279 |
msgstr "Bekijk de Dagelijkse Populaire Berichten"
|
280 |
|
281 |
+
#: admin.inc.php:502
|
282 |
msgid "View Overall Popular Posts"
|
283 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
284 |
|
285 |
+
#: admin.inc.php:506
|
286 |
msgid "Results per-page:"
|
287 |
msgstr "Resultaten per pagina:"
|
288 |
|
289 |
+
#: admin.inc.php:530
|
290 |
msgid "Previous"
|
291 |
msgstr "Vorige"
|
292 |
|
293 |
+
#: admin.inc.php:548
|
294 |
msgid "Next"
|
295 |
msgstr "Volgende"
|
296 |
|
297 |
+
#: admin.inc.php:571
|
298 |
+
#: top-10.php:228
|
299 |
+
#: top-10.php:414
|
300 |
msgid "Daily Popular"
|
301 |
msgstr "Dagelijks Populair"
|
302 |
|
303 |
+
#: admin.inc.php:582
|
304 |
msgid "Total / Today's Views"
|
305 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
306 |
|
307 |
+
#: top-10.php:260
|
308 |
msgid "<h3>Popular Posts</h3>"
|
309 |
msgstr "<h3>Populaire Berichten</h3>"
|
310 |
|
311 |
+
#: top-10.php:261
|
312 |
msgid "<h3>Daily Popular</h3>"
|
313 |
msgstr "<h3>Dagelijks Populair</h3>"
|
314 |
|
315 |
+
#: top-10.php:449
|
316 |
msgid "Settings"
|
317 |
msgstr "Instellingen"
|
318 |
|
319 |
+
#: top-10.php:451
|
|
|
|
|
|
|
|
|
320 |
msgid "Donate"
|
321 |
msgstr "Doneer"
|
322 |
|
323 |
+
#~ msgid "Support forum"
|
324 |
+
#~ msgstr "Ondersteuningsforum"
|
languages/tptn-ru_RU.mo
CHANGED
Binary file
|
languages/tptn-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
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"
|
@@ -15,306 +15,310 @@ msgstr ""
|
|
15 |
"X-Poedit-Basepath: ../\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Настройки сохранены."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Настройки сброшены."
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Top 10 popular posts reset"
|
28 |
msgstr "Сбросить статистику популярных записей"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Top 10 daily popular posts reset"
|
32 |
msgstr "Сбросить статистику популярных записей за сегодня"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Tables cleaned of duplicate rows"
|
36 |
msgstr "Все повторяющиеся записи в статистике были удалены"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Options:"
|
40 |
msgstr "Настройки плагина:"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Format to display the count in: "
|
44 |
msgstr "В поле ниже вы можете настроить формат отображения количества просмотров за день, за все время для записей/страниц:"
|
45 |
|
46 |
-
#: admin.inc.php:
|
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:
|
51 |
msgid "Number of popular posts to display: "
|
52 |
msgstr "Количество Популярных записей в списке:"
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Daily Popular should contain views of how many days? "
|
56 |
msgstr "За сколько дней считать просмотры для списка Популярных сегодня записей?"
|
57 |
|
58 |
-
#: admin.inc.php:
|
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:
|
63 |
msgid "Display number of views on posts?"
|
64 |
msgstr "Показывать количество просмотров записи в ее \"теле\"?"
|
65 |
|
66 |
-
#: admin.inc.php:
|
67 |
msgid "Display number of views on pages?"
|
68 |
msgstr "Показывать количество просмотров страницы в ее \"теле\"?"
|
69 |
|
70 |
-
#: admin.inc.php:
|
71 |
msgid "Track visits of authors on their own posts?"
|
72 |
msgstr "Учитывать просмотры записей, сделанные их же авторами?"
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "Display number of page views in popular lists?"
|
76 |
msgstr "Показывать количество просмотров записей/страниц в списке Популярных записей?"
|
77 |
|
78 |
-
#: admin.inc.php:
|
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:
|
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:
|
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:
|
91 |
msgid "Output Options:"
|
92 |
msgstr "Настройки плагина:"
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Title of popular posts: "
|
96 |
msgstr "Заголовок списка Популярных записей:"
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Title of daily popular posts: "
|
100 |
msgstr "Заголовок списка Популярных сегодня записей:"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Show post excerpt in list?"
|
104 |
msgstr "Показывать текст записи в списке?"
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Length of excerpt (in words): "
|
108 |
msgstr "Длина выводимого текста (в словах):"
|
109 |
|
110 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
111 |
msgid "Customize the output:"
|
112 |
msgstr "Настройки оформления списка:"
|
113 |
|
114 |
-
#: admin.inc.php:
|
115 |
msgid "HTML to display before the list of posts: "
|
116 |
msgstr "HTML-тег, используемый перед списком:"
|
117 |
|
118 |
-
#: admin.inc.php:
|
119 |
msgid "HTML to display before each list item: "
|
120 |
msgstr "HTML-тег, используемый перед каждым пунктом в списке:"
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid "HTML to display after each list item: "
|
124 |
msgstr "HTML-тег, используемый после каждого пункта в списке:"
|
125 |
|
126 |
-
#: admin.inc.php:
|
127 |
msgid "HTML to display after the list of posts: "
|
128 |
msgstr "HTML-тег, используемый после списка:"
|
129 |
|
130 |
-
#: admin.inc.php:
|
131 |
msgid "Post thumbnail options:"
|
132 |
msgstr "Настройки превью к записям:"
|
133 |
|
134 |
-
#: admin.inc.php:
|
135 |
msgid "Display thumbnails inline with posts"
|
136 |
msgstr "Отображать и превью, и текст"
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Display only thumbnails, no text"
|
140 |
msgstr "Отображать только превью, без текста"
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid "Do not display thumbnails, only text."
|
144 |
msgstr "Отображать только текст, без превью"
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
148 |
msgstr "Введите сюда название произвольного поля (мета-поле) для вывода превью:"
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
152 |
msgstr "Если название для мета-поля не установлено, то плагин будет выводить первое изображение из записи. Это может слегка увеличить загрузку в первый раз, так как будет создаваться уменьшенная копия изображения"
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Thumbnail dimensions:"
|
156 |
msgstr "Размеры выводимого изображения (превью):"
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
msgid "Max width: "
|
160 |
msgstr "Ширина:"
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Max height: "
|
164 |
msgstr "Высота:"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
|
168 |
msgstr "В первую очередь, плагин проверит, есть ли у записи превью (проверка по заданному ранее произвольному мета-полю). Если же превью нет - будет выводиться картинка по-умолчанию:"
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid "Do you want to set options to Default?"
|
172 |
msgstr "Сбросить настройки плагина?"
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Reset count"
|
176 |
msgstr "Сбросить статистику"
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
180 |
msgstr "Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, убедитесь, что у вас есть копия вашей базы данных!"
|
181 |
|
182 |
-
#: admin.inc.php:
|
183 |
msgid "Are you sure you want to reset the popular posts?"
|
184 |
msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
msgid "Are you sure you want to reset the daily popular posts?"
|
188 |
msgstr "Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
|
189 |
|
190 |
-
#: admin.inc.php:
|
191 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
192 |
msgstr "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
193 |
|
194 |
-
#: admin.inc.php:
|
195 |
msgid "Quick links"
|
196 |
msgstr "Полезные ссылки"
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "Top 10 "
|
200 |
msgstr "Топ 10 записей"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
msgid "plugin page"
|
204 |
msgstr "страница плагина"
|
205 |
|
206 |
-
#: admin.inc.php:
|
207 |
msgid "Other plugins"
|
208 |
msgstr "Другие плагины автора"
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
msgid "Ajay's blog"
|
212 |
msgstr "Блог Ajay"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
-
|
|
|
216 |
msgstr "Поддержка (англ.)"
|
217 |
|
218 |
-
#: admin.inc.php:
|
219 |
msgid "Follow @ajaydsouza on Twitter"
|
220 |
msgstr "Следуй за @ajaydsouza в Twitter"
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Recent developments"
|
224 |
msgstr "Последние разработки"
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Support the development"
|
228 |
msgstr "Поддержать автора плагина"
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
msgid "Enter amount in USD: "
|
232 |
msgstr "Сколько вы готовы пожертвовать (в USD):"
|
233 |
|
234 |
-
#: admin.inc.php:
|
235 |
msgid "Send your donation to the author of"
|
236 |
msgstr "Отправьте пожертвование автору"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
-
#: admin.inc.php:
|
240 |
-
#: admin.inc.php:
|
241 |
-
#: top-10.php:
|
242 |
-
#: top-10.php:
|
243 |
msgid "Popular Posts"
|
244 |
msgstr "Популярные записи"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "Daily Popular Posts"
|
248 |
msgstr "Популярные сегодня записи"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Top 10"
|
253 |
msgstr "Топ 10 записей"
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Results"
|
257 |
msgstr "Результаты"
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "of"
|
262 |
msgstr "из"
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Page"
|
266 |
msgstr "Страница"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "View Daily Popular Posts"
|
270 |
msgstr "Посмотреть все Популярные сегодня записи"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "View Overall Popular Posts"
|
274 |
msgstr "Посмотреть все Популярные записи"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Results per-page:"
|
278 |
msgstr "Результатов на страницу:"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Previous"
|
282 |
msgstr "Предыдущая страница"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Next"
|
286 |
msgstr "Следующая страница"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
-
#: top-10.php:
|
290 |
-
#: top-10.php:
|
291 |
msgid "Daily Popular"
|
292 |
msgstr "Популярные сегодня записи"
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Total / Today's Views"
|
296 |
msgstr "Всего/Сегодня"
|
297 |
|
298 |
-
#: top-10.php:
|
299 |
msgid "<h3>Popular Posts</h3>"
|
300 |
msgstr "<h3>Популярные записи</h3>"
|
301 |
|
302 |
-
#: top-10.php:
|
303 |
msgid "<h3>Daily Popular</h3>"
|
304 |
msgstr "<h3>Популярные сегодня записи</h3>"
|
305 |
|
306 |
-
#: top-10.php:
|
307 |
msgid "Settings"
|
308 |
msgstr "Настроки плагина"
|
309 |
|
310 |
-
#: top-10.php:
|
311 |
-
msgid "Support"
|
312 |
-
msgstr "Поддержка (англ.)"
|
313 |
-
|
314 |
-
#: top-10.php:432
|
315 |
msgid "Donate"
|
316 |
msgstr "Сделать пожертвование"
|
317 |
|
|
|
|
|
|
|
318 |
#~ msgid "If you find "
|
319 |
#~ msgstr "Если плагин"
|
320 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-17 20:09-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"
|
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:450
|
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:249
|
247 |
+
#: top-10.php:413
|
248 |
msgid "Popular Posts"
|
249 |
msgstr "Популярные записи"
|
250 |
|
251 |
+
#: admin.inc.php:342
|
252 |
msgid "Daily Popular Posts"
|
253 |
msgstr "Популярные сегодня записи"
|
254 |
|
255 |
+
#: admin.inc.php:365
|
256 |
+
#: admin.inc.php:367
|
257 |
msgid "Top 10"
|
258 |
msgstr "Топ 10 записей"
|
259 |
|
260 |
+
#: admin.inc.php:478
|
261 |
msgid "Results"
|
262 |
msgstr "Результаты"
|
263 |
|
264 |
+
#: admin.inc.php:480
|
265 |
+
#: admin.inc.php:486
|
266 |
msgid "of"
|
267 |
msgstr "из"
|
268 |
|
269 |
+
#: admin.inc.php:484
|
270 |
msgid "Page"
|
271 |
msgstr "Страница"
|
272 |
|
273 |
+
#: admin.inc.php:498
|
274 |
msgid "View Daily Popular Posts"
|
275 |
msgstr "Посмотреть все Популярные сегодня записи"
|
276 |
|
277 |
+
#: admin.inc.php:502
|
278 |
msgid "View Overall Popular Posts"
|
279 |
msgstr "Посмотреть все Популярные записи"
|
280 |
|
281 |
+
#: admin.inc.php:506
|
282 |
msgid "Results per-page:"
|
283 |
msgstr "Результатов на страницу:"
|
284 |
|
285 |
+
#: admin.inc.php:530
|
286 |
msgid "Previous"
|
287 |
msgstr "Предыдущая страница"
|
288 |
|
289 |
+
#: admin.inc.php:548
|
290 |
msgid "Next"
|
291 |
msgstr "Следующая страница"
|
292 |
|
293 |
+
#: admin.inc.php:571
|
294 |
+
#: top-10.php:228
|
295 |
+
#: top-10.php:414
|
296 |
msgid "Daily Popular"
|
297 |
msgstr "Популярные сегодня записи"
|
298 |
|
299 |
+
#: admin.inc.php:582
|
300 |
msgid "Total / Today's Views"
|
301 |
msgstr "Всего/Сегодня"
|
302 |
|
303 |
+
#: top-10.php:260
|
304 |
msgid "<h3>Popular Posts</h3>"
|
305 |
msgstr "<h3>Популярные записи</h3>"
|
306 |
|
307 |
+
#: top-10.php:261
|
308 |
msgid "<h3>Daily Popular</h3>"
|
309 |
msgstr "<h3>Популярные сегодня записи</h3>"
|
310 |
|
311 |
+
#: top-10.php:449
|
312 |
msgid "Settings"
|
313 |
msgstr "Настроки плагина"
|
314 |
|
315 |
+
#: top-10.php:451
|
|
|
|
|
|
|
|
|
316 |
msgid "Donate"
|
317 |
msgstr "Сделать пожертвование"
|
318 |
|
319 |
+
#~ msgid "Support forum"
|
320 |
+
#~ msgstr "Поддержка (англ.)"
|
321 |
+
|
322 |
#~ msgid "If you find "
|
323 |
#~ msgstr "Если плагин"
|
324 |
|
languages/tptn-ua_UA.mo
ADDED
Binary file
|
languages/tptn-ua_UA.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-09-02 07:34-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Alexandr K.\n"
|
8 |
+
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Ukrainian\n"
|
13 |
+
"X-Poedit-Country: UKRAINE\n"
|
14 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: admin.inc.php: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:456
|
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:249
|
247 |
+
#: top-10.php:415
|
248 |
+
#: top-10.php:418
|
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 "Топ 10 записів"
|
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:228
|
296 |
+
#: top-10.php:416
|
297 |
+
#: top-10.php:419
|
298 |
+
msgid "Daily Popular"
|
299 |
+
msgstr "Популярні сьогодні записи"
|
300 |
+
|
301 |
+
#: admin.inc.php:582
|
302 |
+
msgid "Total / Today's Views"
|
303 |
+
msgstr "Всього/Сьогодні"
|
304 |
+
|
305 |
+
#: top-10.php:260
|
306 |
+
msgid "<h3>Popular Posts</h3>"
|
307 |
+
msgstr "<h3>Популярні записи</h3>"
|
308 |
+
|
309 |
+
#: top-10.php:261
|
310 |
+
msgid "<h3>Daily Popular</h3>"
|
311 |
+
msgstr "<h3>Популярні сьогодні записи</h3>"
|
312 |
+
|
313 |
+
#: top-10.php:455
|
314 |
+
msgid "Settings"
|
315 |
+
msgstr "Налаштування плагіна"
|
316 |
+
|
317 |
+
#: top-10.php:457
|
318 |
+
msgid "Donate"
|
319 |
+
msgstr "Зробити внесок"
|
320 |
+
|
321 |
+
#~ msgid "Support forum"
|
322 |
+
#~ msgstr "Підтримка (англ.)"
|
323 |
+
|
324 |
+
#~ msgid "If you find "
|
325 |
+
#~ msgstr "Если плагин"
|
326 |
+
|
327 |
+
#~ msgid "useful, please do"
|
328 |
+
#~ msgstr "оказался для вас полезным, пожалуйста, сделайте"
|
329 |
+
|
330 |
+
#~ msgid "drop in your contribution"
|
331 |
+
#~ msgstr "пожертвование"
|
332 |
+
|
333 |
+
#~ msgid "Some reasons why you should."
|
334 |
+
#~ msgstr "Сделай пожертвование, поддержи автора плагина!"
|
readme.txt
CHANGED
@@ -19,16 +19,26 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
19 |
* Counts daily and total page views on single posts and pages
|
20 |
* Display the count on the single posts and pages
|
21 |
* Customize the text that can be displayed
|
22 |
-
* Display a list of daily and/or overall popular posts by page count. The number can be customized
|
23 |
-
* Sidebar widgets available for daily popular and overall popular posts
|
|
|
24 |
* View list of daily and/or overall popular posts from within the dashboard itself
|
25 |
* Clean uninstall if you choose to delete the plugin from within WP-Admin
|
26 |
* Works with caching plugins like WP-Super-Cache and W3 Total Cache
|
27 |
* Display post thumbnails or text or both
|
28 |
|
|
|
|
|
|
|
|
|
29 |
|
30 |
== Changelog ==
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
= 1.6.3 =
|
33 |
* Fixed: PHP errors on certain installs
|
34 |
* Added: Dutch language
|
@@ -94,8 +104,9 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
94 |
|
95 |
== Upgrade Notice ==
|
96 |
|
97 |
-
= 1.
|
98 |
-
*
|
|
|
99 |
|
100 |
|
101 |
== Installation ==
|
@@ -132,6 +143,4 @@ For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-1
|
|
132 |
|
133 |
= Support =
|
134 |
|
135 |
-
|
136 |
-
|
137 |
-
No support questions will be entertained in the comments or via email.
|
19 |
* Counts daily and total page views on single posts and pages
|
20 |
* Display the count on the single posts and pages
|
21 |
* Customize the text that can be displayed
|
22 |
+
* Display a list of daily and/or overall popular posts by page count. The number can be customized
|
23 |
+
* Sidebar widgets available for daily popular and overall popular posts
|
24 |
+
* Exclude posts from select categories from appearing in the top posts list
|
25 |
* View list of daily and/or overall popular posts from within the dashboard itself
|
26 |
* Clean uninstall if you choose to delete the plugin from within WP-Admin
|
27 |
* Works with caching plugins like WP-Super-Cache and W3 Total Cache
|
28 |
* Display post thumbnails or text or both
|
29 |
|
30 |
+
== Screenshots ==
|
31 |
+
|
32 |
+
1. Top-10 options in WP-Admin
|
33 |
+
|
34 |
|
35 |
== Changelog ==
|
36 |
|
37 |
+
= 1.7 =
|
38 |
+
* Added: Exclude posts in the top lists from select categories
|
39 |
+
* Modified: Performance improvements
|
40 |
+
* Modified: Better compatibility with the latest versions of WordPress. If you are using the sidebar widgets, please readd them to your theme under Appearance > Widgets
|
41 |
+
|
42 |
= 1.6.3 =
|
43 |
* Fixed: PHP errors on certain installs
|
44 |
* Added: Dutch language
|
104 |
|
105 |
== Upgrade Notice ==
|
106 |
|
107 |
+
= 1.7 =
|
108 |
+
* Added: Excludes posts in the top lists from select categories
|
109 |
+
* Modified: Performance improvements
|
110 |
|
111 |
|
112 |
== Installation ==
|
143 |
|
144 |
= Support =
|
145 |
|
146 |
+
Read how you can receive support for this plugin at http://ajaydsouza.com/support
|
|
|
|
screenshot-1.gif
ADDED
Binary file
|
top-10.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
-
Version: 1.
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
|
6 |
Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
|
7 |
Author: Ajay D'Souza
|
@@ -112,7 +112,9 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
|
|
112 |
if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
|
113 |
else $table_name = $wpdb->prefix . "top_ten";
|
114 |
$tptn_settings = tptn_read_options();
|
115 |
-
$limit = $tptn_settings['limit'];
|
|
|
|
|
116 |
|
117 |
if (!$daily) {
|
118 |
$sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status, post_content ";
|
@@ -134,6 +136,8 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
|
|
134 |
$sql .= "ORDER BY sumCount DESC LIMIT $limit";
|
135 |
}
|
136 |
$results = $wpdb->get_results($sql);
|
|
|
|
|
137 |
$output = '';
|
138 |
|
139 |
if (!$widget) {
|
@@ -147,37 +151,50 @@ function tptn_pop_posts( $daily = false , $widget = false ) {
|
|
147 |
if ($results) {
|
148 |
$output .= $tptn_settings['before_list'];
|
149 |
foreach ($results as $result) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
$title = trim(stripslashes(get_the_title($result->postnumber)));
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
if ((
|
156 |
-
$output .=
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
|
|
|
|
|
|
164 |
}
|
|
|
|
|
165 |
}
|
166 |
-
|
167 |
-
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" width="'.$tptn_settings[thumb_width].'" height="'.$tptn_settings[thumb_height].'" border="0" class="tptn_thumb" />';
|
168 |
}
|
169 |
-
$
|
170 |
-
|
171 |
-
|
172 |
-
$
|
173 |
-
|
174 |
-
|
175 |
-
$output .= '
|
|
|
|
|
176 |
}
|
177 |
-
if ($
|
178 |
-
$output .= $tptn_settings['after_list_item'];
|
179 |
}
|
180 |
-
if ($tptn_settings['show_credit']) $output .= '
|
181 |
$output .= $tptn_settings['after_list'];
|
182 |
}
|
183 |
if (!$widget) $output .= '</div>';
|
@@ -270,6 +287,8 @@ function tptn_default_options() {
|
|
270 |
'scan_images' => false, // Scan post for images
|
271 |
'show_excerpt' => false, // Show description in list item
|
272 |
'excerpt_length' => '10', // Length of characters
|
|
|
|
|
273 |
);
|
274 |
return $tptn_settings;
|
275 |
}
|
@@ -391,8 +410,14 @@ function tptn_trunc_count($daily = false) {
|
|
391 |
}
|
392 |
|
393 |
function init_tptn(){
|
394 |
-
|
395 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
}
|
397 |
add_action("plugins_loaded", "init_tptn");
|
398 |
|
@@ -428,7 +453,7 @@ function tptn_plugin_actions( $links, $file ) {
|
|
428 |
// create link
|
429 |
if ($file == $plugin) {
|
430 |
$links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>';
|
431 |
-
$links[] = '<a href="http://ajaydsouza.
|
432 |
$links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
|
433 |
}
|
434 |
return $links;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
+
Version: 1.7
|
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
|
112 |
if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
|
113 |
else $table_name = $wpdb->prefix . "top_ten";
|
114 |
$tptn_settings = tptn_read_options();
|
115 |
+
$limit = $tptn_settings['limit']*5;
|
116 |
+
|
117 |
+
$exclude_categories = explode(',',$tptn_settings['exclude_categories']);
|
118 |
|
119 |
if (!$daily) {
|
120 |
$sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type, post_status, post_content ";
|
136 |
$sql .= "ORDER BY sumCount DESC LIMIT $limit";
|
137 |
}
|
138 |
$results = $wpdb->get_results($sql);
|
139 |
+
$counter = 0;
|
140 |
+
|
141 |
$output = '';
|
142 |
|
143 |
if (!$widget) {
|
151 |
if ($results) {
|
152 |
$output .= $tptn_settings['before_list'];
|
153 |
foreach ($results as $result) {
|
154 |
+
$categorys = get_the_category($result->postnumber); //Fetch categories of the plugin
|
155 |
+
$p_in_c = false; // Variable to check if post exists in a particular category
|
156 |
+
|
157 |
+
foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
|
158 |
+
$p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
|
159 |
+
if ($p_in_c) break; // End loop if post found in category
|
160 |
+
}
|
161 |
+
|
162 |
$title = trim(stripslashes(get_the_title($result->postnumber)));
|
163 |
+
|
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
|
|
|
196 |
}
|
197 |
+
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'];
|
198 |
$output .= $tptn_settings['after_list'];
|
199 |
}
|
200 |
if (!$widget) $output .= '</div>';
|
287 |
'scan_images' => false, // Scan post for images
|
288 |
'show_excerpt' => false, // Show description in list item
|
289 |
'excerpt_length' => '10', // Length of characters
|
290 |
+
'exclude_categories' => '', // Exclude these categories
|
291 |
+
'exclude_cat_slugs' => '', // Exclude these categories (slugs)
|
292 |
);
|
293 |
return $tptn_settings;
|
294 |
}
|
410 |
}
|
411 |
|
412 |
function init_tptn(){
|
413 |
+
|
414 |
+
if (function_exists('wp_register_sidebar_widget')) {
|
415 |
+
wp_register_sidebar_widget('widget_tptn_pop', __('Popular Posts',TPTN_LOCAL_NAME), 'widget_tptn_pop');
|
416 |
+
wp_register_sidebar_widget('widget_tptn_pop_daily', __('Daily Popular',TPTN_LOCAL_NAME), 'widget_tptn_pop_daily');
|
417 |
+
} else {
|
418 |
+
register_sidebar_widget(__('Popular Posts',TPTN_LOCAL_NAME), 'widget_tptn_pop');
|
419 |
+
register_sidebar_widget(__('Daily Popular',TPTN_LOCAL_NAME), 'widget_tptn_pop_daily');
|
420 |
+
}
|
421 |
}
|
422 |
add_action("plugins_loaded", "init_tptn");
|
423 |
|
453 |
// create link
|
454 |
if ($file == $plugin) {
|
455 |
$links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>';
|
456 |
+
$links[] = '<a href="http://ajaydsouza.com/support/">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
|
457 |
$links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
|
458 |
}
|
459 |
return $links;
|
update-info.txt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
*
|
2 |
-
*
|
3 |
-
|
1 |
+
* Added: Exclude posts in the top lists from select categories<br />
|
2 |
+
* Modified: Performance improvements<br />
|
3 |
+
* Modified: Better compatibility with the latest versions of WordPress. If you are using the sidebar widgets, please readd them to your theme under Appearance > Widgets
|
wick/sample_data.js.php
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
//"sample_data.js.php" List of categories
|
3 |
+
Header("content-type: application/x-javascript");
|
4 |
+
|
5 |
+
if (!function_exists('add_action')) {
|
6 |
+
$wp_root = '../../../..';
|
7 |
+
if (file_exists($wp_root.'/wp-load.php')) {
|
8 |
+
require_once($wp_root.'/wp-load.php');
|
9 |
+
} else {
|
10 |
+
require_once($wp_root.'/wp-config.php');
|
11 |
+
}
|
12 |
+
}
|
13 |
+
|
14 |
+
// Ajax Increment Counter
|
15 |
+
wick_data();
|
16 |
+
function wick_data() {
|
17 |
+
global $wpdb;
|
18 |
+
|
19 |
+
$categories = get_categories('hide_empty=0');
|
20 |
+
$str = 'collection = [';
|
21 |
+
foreach ($categories as $cat) {
|
22 |
+
$str .= "'".$cat->slug."',";
|
23 |
+
}
|
24 |
+
$str = substr($str, 0, -1); // Remove trailing comma
|
25 |
+
$str .= '];';
|
26 |
+
|
27 |
+
echo $str;
|
28 |
+
}
|
29 |
+
|
30 |
+
|
31 |
+
?>
|
wick/wick.css
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
WICK: Web Input Completion Kit
|
3 |
+
http://wick.sourceforge.net/
|
4 |
+
Copyright (c) 2004, Christopher T. Holland,
|
5 |
+
All rights reserved.
|
6 |
+
|
7 |
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
8 |
+
|
9 |
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
10 |
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
11 |
+
Neither the name of the Christopher T. Holland, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
12 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
13 |
+
|
14 |
+
*/
|
15 |
+
|
16 |
+
.floater {
|
17 |
+
position:absolute;
|
18 |
+
z-index:2;
|
19 |
+
bottom:0;
|
20 |
+
right:0;
|
21 |
+
display:none;
|
22 |
+
padding:0;
|
23 |
+
}
|
24 |
+
|
25 |
+
.floater td {
|
26 |
+
font-family: Gill, Helvetica, sans-serif;
|
27 |
+
background-color:white;
|
28 |
+
border:1px inset #979797;
|
29 |
+
color:black;
|
30 |
+
}
|
31 |
+
|
32 |
+
.matchedSmartInputItem {
|
33 |
+
font-size:0.8em;
|
34 |
+
padding: 5px 10px 1px 5px;
|
35 |
+
margin:0;
|
36 |
+
cursor:pointer;
|
37 |
+
}
|
38 |
+
|
39 |
+
.selectedSmartInputItem {
|
40 |
+
color:white;
|
41 |
+
background-color:#3875D7;
|
42 |
+
}
|
43 |
+
|
44 |
+
#smartInputResults {
|
45 |
+
padding:0;margin:0;
|
46 |
+
}
|
47 |
+
|
48 |
+
.siwCredit {
|
49 |
+
margin:0;padding:0;margin-top:10px;font-size:0.7em;color:black;
|
50 |
+
}
|
51 |
+
|
wick/wick.js
ADDED
@@ -0,0 +1,492 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
WICK: Web Input Completion Kit
|
3 |
+
http://wick.sourceforge.net/
|
4 |
+
Copyright (c) 2004, Christopher T. Holland
|
5 |
+
All rights reserved.
|
6 |
+
|
7 |
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
8 |
+
|
9 |
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
10 |
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
11 |
+
Neither the name of the Christopher T. Holland, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
12 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
13 |
+
|
14 |
+
*/
|
15 |
+
/* start dhtml building blocks */
|
16 |
+
function freezeEvent(e) {
|
17 |
+
if (e.preventDefault) e.preventDefault();
|
18 |
+
e.returnValue = false;
|
19 |
+
e.cancelBubble = true;
|
20 |
+
if (e.stopPropagation) e.stopPropagation();
|
21 |
+
return false;
|
22 |
+
}//freezeEvent
|
23 |
+
|
24 |
+
function isWithinNode(e,i,c,t,obj) {
|
25 |
+
answer = false;
|
26 |
+
te = e;
|
27 |
+
while(te && !answer) {
|
28 |
+
if ((te.id && (te.id == i)) || (te.className && (te.className == i+"Class"))
|
29 |
+
|| (!t && c && te.className && (te.className == c))
|
30 |
+
|| (!t && c && te.className && (te.className.indexOf(c) != -1))
|
31 |
+
|| (t && te.tagName && (te.tagName.toLowerCase() == t))
|
32 |
+
|| (obj && (te == obj))
|
33 |
+
) {
|
34 |
+
answer = te;
|
35 |
+
} else {
|
36 |
+
te = te.parentNode;
|
37 |
+
}
|
38 |
+
}
|
39 |
+
return te;
|
40 |
+
}//isWithinNode
|
41 |
+
|
42 |
+
function getEvent(event) {
|
43 |
+
return (event ? event : window.event);
|
44 |
+
}//getEvent()
|
45 |
+
|
46 |
+
function getEventElement(e) {
|
47 |
+
return (e.srcElement ? e.srcElement: (e.target ? e.target : e.currentTarget));
|
48 |
+
}//getEventElement()
|
49 |
+
|
50 |
+
function findElementPosX(obj) {
|
51 |
+
curleft = 0;
|
52 |
+
if (obj.offsetParent) {
|
53 |
+
while (obj.offsetParent) {
|
54 |
+
curleft += obj.offsetLeft;
|
55 |
+
obj = obj.offsetParent;
|
56 |
+
}
|
57 |
+
}//if offsetParent exists
|
58 |
+
else if (obj.x)
|
59 |
+
curleft += obj.x
|
60 |
+
return curleft;
|
61 |
+
}//findElementPosX
|
62 |
+
|
63 |
+
function findElementPosY(obj) {
|
64 |
+
curtop = 0;
|
65 |
+
if (obj.offsetParent) {
|
66 |
+
while (obj.offsetParent) {
|
67 |
+
curtop += obj.offsetTop;
|
68 |
+
obj = obj.offsetParent;
|
69 |
+
}
|
70 |
+
}//if offsetParent exists
|
71 |
+
else if (obj.y)
|
72 |
+
curtop += obj.y
|
73 |
+
return curtop;
|
74 |
+
}//findElementPosY
|
75 |
+
|
76 |
+
/* end dhtml building blocks */
|
77 |
+
|
78 |
+
function handleKeyPress(event) {
|
79 |
+
e = getEvent(event);
|
80 |
+
eL = getEventElement(e);
|
81 |
+
|
82 |
+
upEl = isWithinNode(eL,null,"wickEnabled",null,null);
|
83 |
+
|
84 |
+
kc = e["keyCode"];
|
85 |
+
|
86 |
+
if (siw && ((kc == 13) || (kc == 9))) {
|
87 |
+
siw.selectingSomething = true;
|
88 |
+
if (siw.isSafari) siw.inputBox.blur(); //hack to "wake up" safari
|
89 |
+
siw.inputBox.focus();
|
90 |
+
siw.inputBox.value = siw.inputBox.value.replace(/[ \r\n\t\f\s]+$/gi,' ');
|
91 |
+
hideSmartInputFloater();
|
92 |
+
} else if (upEl && (kc != 38) && (kc != 40) && (kc != 37) && (kc != 39) && (kc != 13) && (kc != 27)) {
|
93 |
+
if (!siw || (siw && !siw.selectingSomething)) {
|
94 |
+
processSmartInput(upEl);
|
95 |
+
}
|
96 |
+
} else if (siw && siw.inputBox) {
|
97 |
+
siw.inputBox.focus(); //kinda part of the hack.
|
98 |
+
}
|
99 |
+
|
100 |
+
}//handleKeyPress()
|
101 |
+
|
102 |
+
|
103 |
+
function handleKeyDown(event) {
|
104 |
+
e = getEvent(event);
|
105 |
+
eL = getEventElement(e);
|
106 |
+
|
107 |
+
if (siw && (kc = e["keyCode"])) {
|
108 |
+
if (kc == 40) {
|
109 |
+
siw.selectingSomething = true;
|
110 |
+
freezeEvent(e);
|
111 |
+
if (siw.isGecko) siw.inputBox.blur(); /* Gecko hack */
|
112 |
+
selectNextSmartInputMatchItem();
|
113 |
+
} else if (kc == 38) {
|
114 |
+
siw.selectingSomething = true;
|
115 |
+
freezeEvent(e);
|
116 |
+
if (siw.isGecko) siw.inputBox.blur();
|
117 |
+
selectPreviousSmartInputMatchItem();
|
118 |
+
} else if ((kc == 13) || (kc == 9)) {
|
119 |
+
siw.selectingSomething = true;
|
120 |
+
activateCurrentSmartInputMatch();
|
121 |
+
freezeEvent(e);
|
122 |
+
} else if (kc == 27) {
|
123 |
+
hideSmartInputFloater();
|
124 |
+
freezeEvent(e);
|
125 |
+
} else {
|
126 |
+
siw.selectingSomething = false;
|
127 |
+
}
|
128 |
+
}
|
129 |
+
|
130 |
+
}//handleKeyDown()
|
131 |
+
|
132 |
+
function handleFocus(event) {
|
133 |
+
e = getEvent(event);
|
134 |
+
eL = getEventElement(e);
|
135 |
+
if (focEl = isWithinNode(eL,null,"wickEnabled",null,null)) {
|
136 |
+
if (!siw || (siw && !siw.selectingSomething)) processSmartInput(focEl);
|
137 |
+
}
|
138 |
+
}//handleFocus()
|
139 |
+
|
140 |
+
function handleBlur(event) {
|
141 |
+
e = getEvent(event);
|
142 |
+
eL = getEventElement(e);
|
143 |
+
if (blurEl = isWithinNode(eL,null,"wickEnabled",null,null)) {
|
144 |
+
if (siw && !siw.selectingSomething) hideSmartInputFloater();
|
145 |
+
}
|
146 |
+
}//handleBlur()
|
147 |
+
|
148 |
+
function handleClick(event) {
|
149 |
+
e2 = getEvent(event);
|
150 |
+
eL2 = getEventElement(e2);
|
151 |
+
if (siw && siw.selectingSomething) {
|
152 |
+
selectFromMouseClick();
|
153 |
+
}
|
154 |
+
}//handleClick()
|
155 |
+
|
156 |
+
function handleMouseOver(event) {
|
157 |
+
e = getEvent(event);
|
158 |
+
eL = getEventElement(e);
|
159 |
+
if (siw && (mEl = isWithinNode(eL,null,"matchedSmartInputItem",null,null))) {
|
160 |
+
siw.selectingSomething = true;
|
161 |
+
selectFromMouseOver(mEl);
|
162 |
+
} else if (isWithinNode(eL,null,"siwCredit",null,null)) {
|
163 |
+
siw.selectingSomething = true;
|
164 |
+
}else if (siw) {
|
165 |
+
siw.selectingSomething = false;
|
166 |
+
}
|
167 |
+
}//handleMouseOver
|
168 |
+
|
169 |
+
function showSmartInputFloater() {
|
170 |
+
if (!siw.floater.style.display || (siw.floater.style.display=="none")) {
|
171 |
+
if (!siw.customFloater) {
|
172 |
+
x = findElementPosX(siw.inputBox);
|
173 |
+
y = findElementPosY(siw.inputBox) + siw.inputBox.offsetHeight;
|
174 |
+
//hack: browser-specific adjustments.
|
175 |
+
if (!siw.isGecko && !siw.isWinIE) x += 8;
|
176 |
+
if (!siw.isGecko && !siw.isWinIE) y += 10;
|
177 |
+
siw.floater.style.left = x;
|
178 |
+
siw.floater.style.top = y;
|
179 |
+
} else {
|
180 |
+
//you may
|
181 |
+
//do additional things for your custom floater
|
182 |
+
//beyond setting display and visibility
|
183 |
+
}
|
184 |
+
siw.floater.style.display="block";
|
185 |
+
siw.floater.style.visibility="visible";
|
186 |
+
}
|
187 |
+
}//showSmartInputFloater()
|
188 |
+
|
189 |
+
function hideSmartInputFloater() {
|
190 |
+
if (siw) {
|
191 |
+
siw.floater.style.display="none";
|
192 |
+
siw.floater.style.visibility="hidden";
|
193 |
+
siw = null;
|
194 |
+
}//siw exists
|
195 |
+
}//hideSmartInputFloater
|
196 |
+
|
197 |
+
function processSmartInput(inputBox) {
|
198 |
+
if (!siw) siw = new smartInputWindow();
|
199 |
+
siw.inputBox = inputBox;
|
200 |
+
|
201 |
+
classData = inputBox.className.split(" ");
|
202 |
+
siwDirectives = null;
|
203 |
+
for (i=0;(!siwDirectives && classData[i]);i++) {
|
204 |
+
if (classData[i].indexOf("wickEnabled") != -1)
|
205 |
+
siwDirectives = classData[i];
|
206 |
+
}
|
207 |
+
|
208 |
+
if (siwDirectives && (siwDirectives.indexOf(":") != -1)) {
|
209 |
+
siw.customFloater = true;
|
210 |
+
newFloaterId = siwDirectives.split(":")[1];
|
211 |
+
siw.floater = document.getElementById(newFloaterId);
|
212 |
+
siw.floaterContent = siw.floater.getElementsByTagName("div")[0];
|
213 |
+
}
|
214 |
+
|
215 |
+
|
216 |
+
setSmartInputData();
|
217 |
+
if (siw.matchCollection && (siw.matchCollection.length > 0)) selectSmartInputMatchItem(0);
|
218 |
+
content = getSmartInputBoxContent();
|
219 |
+
if (content) {
|
220 |
+
modifySmartInputBoxContent(content);
|
221 |
+
showSmartInputFloater();
|
222 |
+
} else hideSmartInputFloater();
|
223 |
+
}//processSmartInput()
|
224 |
+
|
225 |
+
function smartInputMatch(cleanValue, value) {
|
226 |
+
this.cleanValue = cleanValue;
|
227 |
+
this.value = value;
|
228 |
+
this.isSelected = false;
|
229 |
+
}//smartInputMatch
|
230 |
+
|
231 |
+
function simplify(s) {
|
232 |
+
return s.toLowerCase().replace(/^[ \s\f\t\n\r]+/,'').replace(/[ \s\f\t\n\r]+$/,'');
|
233 |
+
//.replace(/[�,�,�,�,\u00E9,\u00E8,\u00EA,\u00EB]/gi,"e").replace(/[�,�,\u00E0,\u00E2]/gi,"a").
|
234 |
+
}//simplify
|
235 |
+
|
236 |
+
function getUserInputToMatch(s) {
|
237 |
+
a = s;
|
238 |
+
fields = s.split(",");
|
239 |
+
if (fields.length > 0) a = fields[fields.length - 1];
|
240 |
+
return a;
|
241 |
+
}//getUserInputToMatch
|
242 |
+
|
243 |
+
function getUserInputBase() {
|
244 |
+
s = siw.inputBox.value;
|
245 |
+
a = s;
|
246 |
+
if ((lastComma = s.lastIndexOf(",")) != -1) {
|
247 |
+
a = a.replace(/^(.*\,[ \r\n\t\f\s]*).*$/i,'$1');
|
248 |
+
}
|
249 |
+
else
|
250 |
+
a = "";
|
251 |
+
return a;
|
252 |
+
}//getUserInputBase()
|
253 |
+
|
254 |
+
function runMatchingLogic(userInput, standalone) {
|
255 |
+
userInput = simplify(userInput);
|
256 |
+
uifc = userInput.charAt(0).toLowerCase();
|
257 |
+
if (uifc == '"') uifc = (n = userInput.charAt(1)) ? n.toLowerCase() : "z";
|
258 |
+
if (standalone) userInput = uifc;
|
259 |
+
if (siw) siw.matchCollection = new Array();
|
260 |
+
pointerToCollectionToUse = collection;
|
261 |
+
if (siw && siw.revisedCollection && (siw.revisedCollection.length > 0) && siw.lastUserInput && (userInput.indexOf(siw.lastUserInput) == 0)) {
|
262 |
+
pointerToCollectionToUse = siw.revisedCollection;
|
263 |
+
} else if (collectionIndex[userInput] && (collectionIndex[userInput].length > 0)) {
|
264 |
+
pointerToCollectionToUse = collectionIndex[userInput];
|
265 |
+
} else if (collectionIndex[uifc] && (collectionIndex[uifc].length > 0)) {
|
266 |
+
pointerToCollectionToUse = collectionIndex[uifc];
|
267 |
+
} else if (siw && (userInput.length == 1) && (!collectionIndex[uifc])) {
|
268 |
+
siw.buildIndex = true;
|
269 |
+
} else if (siw) {
|
270 |
+
siw.buildIndex = false;
|
271 |
+
}
|
272 |
+
|
273 |
+
tempCollection = new Array();
|
274 |
+
|
275 |
+
re1m = new RegExp("^([ \"\>\<\-]*)("+userInput+")","i");
|
276 |
+
re2m = new RegExp("([ \"\>\<\-]+)("+userInput+")","i");
|
277 |
+
re1 = new RegExp("^([ \"\}\{\-]*)("+userInput+")","gi");
|
278 |
+
re2 = new RegExp("([ \"\}\{\-]+)("+userInput+")","gi");
|
279 |
+
|
280 |
+
for (i=0,j=0;(i<pointerToCollectionToUse.length);i++) {
|
281 |
+
displayMatches = ((!standalone) && (j < siw.MAX_MATCHES));
|
282 |
+
entry = pointerToCollectionToUse[i];
|
283 |
+
mEntry = simplify(entry);
|
284 |
+
if (!standalone && (mEntry.indexOf(userInput) == 0)) {
|
285 |
+
userInput = userInput.replace(/\>/gi,'\\}').replace(/\< ?/gi,'\\{');
|
286 |
+
re = new RegExp("(" + userInput + ")","i");
|
287 |
+
if (displayMatches) {
|
288 |
+
siw.matchCollection[j] = new smartInputMatch(entry, mEntry.replace(/\>/gi,'}').replace(/\< ?/gi,'{').replace(re,"<b>$1</b>"));
|
289 |
+
}
|
290 |
+
tempCollection[j] = entry;
|
291 |
+
j++;
|
292 |
+
} else if (mEntry.match(re1m) || mEntry.match(re2m)) {
|
293 |
+
if (!standalone && displayMatches) {
|
294 |
+
siw.matchCollection[j] = new smartInputMatch(entry, mEntry.replace(/\>/gi,'}').replace(/\</gi,'{').replace(re1,"$1<b>$2</b>").replace(re2,"$1<b>$2</b>"));
|
295 |
+
}
|
296 |
+
tempCollection[j] = entry;
|
297 |
+
j++;
|
298 |
+
}
|
299 |
+
}//loop thru collection
|
300 |
+
if (siw) {
|
301 |
+
siw.lastUserInput = userInput;
|
302 |
+
siw.revisedCollection = tempCollection.join(",").split(",");
|
303 |
+
collectionIndex[userInput] = tempCollection.join(",").split(",");
|
304 |
+
}
|
305 |
+
if (standalone || siw.buildIndex) {
|
306 |
+
collectionIndex[uifc] = tempCollection.join(",").split(",");
|
307 |
+
if (siw) siw.buildIndex = false;
|
308 |
+
}
|
309 |
+
}//runMatchingLogic
|
310 |
+
|
311 |
+
function setSmartInputData() {
|
312 |
+
if (siw) {
|
313 |
+
orgUserInput = siw.inputBox.value;
|
314 |
+
orgUserInput = getUserInputToMatch(orgUserInput);
|
315 |
+
userInput = orgUserInput.toLowerCase().replace(/[\r\n\t\f\s]+/gi,' ').replace(/^ +/gi,'').replace(/ +$/gi,'').replace(/ +/gi,' ').replace(/\\/gi,'').replace(/\[/gi,'').replace(/\(/gi,'').replace(/\./gi,'\.').replace(/\?/gi,'');
|
316 |
+
if (userInput && (userInput != "") && (userInput != '"')) {
|
317 |
+
runMatchingLogic(userInput);
|
318 |
+
}//if userinput not blank and is meaningful
|
319 |
+
else {
|
320 |
+
siw.matchCollection = null;
|
321 |
+
}
|
322 |
+
}//siw exists ... uhmkaaayyyyy
|
323 |
+
}//setSmartInputData
|
324 |
+
|
325 |
+
function getSmartInputBoxContent() {
|
326 |
+
a = null;
|
327 |
+
if (siw && siw.matchCollection && (siw.matchCollection.length > 0)) {
|
328 |
+
a = '';
|
329 |
+
for (i = 0;i < siw.matchCollection.length; i++) {
|
330 |
+
selectedString = siw.matchCollection[i].isSelected ? ' selectedSmartInputItem' : '';
|
331 |
+
a += '<p class="matchedSmartInputItem' + selectedString + '">' + siw.matchCollection[i].value.replace(/\{ */gi,"<").replace(/\} */gi,">") + '</p>';
|
332 |
+
}//
|
333 |
+
}//siw exists
|
334 |
+
return a;
|
335 |
+
}//getSmartInputBoxContent
|
336 |
+
|
337 |
+
function modifySmartInputBoxContent(content) {
|
338 |
+
//todo: remove credits 'cuz no one gives a shit ;] - done
|
339 |
+
siw.floaterContent.innerHTML = '<div id="smartInputResults">' + content + (siw.showCredit ? ('<p class="siwCredit">Powered By: <a target="PhrawgBlog" href="http://chrisholland.blogspot.com/?from=smartinput&ref='+escape(location.href)+'">Chris Holland</a></p>') : '') +'</div>';
|
340 |
+
siw.matchListDisplay = document.getElementById("smartInputResults");
|
341 |
+
}//modifySmartInputBoxContent()
|
342 |
+
|
343 |
+
function selectFromMouseOver(o) {
|
344 |
+
currentIndex = getCurrentlySelectedSmartInputItem();
|
345 |
+
if (currentIndex != null) deSelectSmartInputMatchItem(currentIndex);
|
346 |
+
newIndex = getIndexFromElement(o);
|
347 |
+
selectSmartInputMatchItem(newIndex);
|
348 |
+
modifySmartInputBoxContent(getSmartInputBoxContent());
|
349 |
+
}//selectFromMouseOver
|
350 |
+
|
351 |
+
function selectFromMouseClick() {
|
352 |
+
activateCurrentSmartInputMatch();
|
353 |
+
siw.inputBox.focus();
|
354 |
+
hideSmartInputFloater();
|
355 |
+
}//selectFromMouseClick
|
356 |
+
|
357 |
+
function getIndexFromElement(o) {
|
358 |
+
index = 0;
|
359 |
+
while(o = o.previousSibling) {
|
360 |
+
index++;
|
361 |
+
}//
|
362 |
+
return index;
|
363 |
+
}//getIndexFromElement
|
364 |
+
|
365 |
+
function getCurrentlySelectedSmartInputItem() {
|
366 |
+
answer = null;
|
367 |
+
for (i = 0; ((i < siw.matchCollection.length) && !answer) ; i++) {
|
368 |
+
if (siw.matchCollection[i].isSelected)
|
369 |
+
answer = i;
|
370 |
+
}//
|
371 |
+
return answer;
|
372 |
+
}//getCurrentlySelectedSmartInputItem
|
373 |
+
|
374 |
+
function selectSmartInputMatchItem(index) {
|
375 |
+
siw.matchCollection[index].isSelected = true;
|
376 |
+
}//selectSmartInputMatchItem()
|
377 |
+
|
378 |
+
function deSelectSmartInputMatchItem(index) {
|
379 |
+
siw.matchCollection[index].isSelected = false;
|
380 |
+
}//deSelectSmartInputMatchItem()
|
381 |
+
|
382 |
+
function selectNextSmartInputMatchItem() {
|
383 |
+
currentIndex = getCurrentlySelectedSmartInputItem();
|
384 |
+
if (currentIndex != null) {
|
385 |
+
deSelectSmartInputMatchItem(currentIndex);
|
386 |
+
if ((currentIndex + 1) < siw.matchCollection.length)
|
387 |
+
selectSmartInputMatchItem(currentIndex + 1);
|
388 |
+
else
|
389 |
+
selectSmartInputMatchItem(0);
|
390 |
+
} else {
|
391 |
+
selectSmartInputMatchItem(0);
|
392 |
+
}
|
393 |
+
modifySmartInputBoxContent(getSmartInputBoxContent());
|
394 |
+
}//selectNextSmartInputMatchItem
|
395 |
+
|
396 |
+
function selectPreviousSmartInputMatchItem() {
|
397 |
+
currentIndex = getCurrentlySelectedSmartInputItem();
|
398 |
+
if (currentIndex != null) {
|
399 |
+
deSelectSmartInputMatchItem(currentIndex);
|
400 |
+
if ((currentIndex - 1) >= 0)
|
401 |
+
selectSmartInputMatchItem(currentIndex - 1);
|
402 |
+
else
|
403 |
+
selectSmartInputMatchItem(siw.matchCollection.length - 1);
|
404 |
+
} else {
|
405 |
+
selectSmartInputMatchItem(siw.matchCollection.length - 1);
|
406 |
+
}
|
407 |
+
modifySmartInputBoxContent(getSmartInputBoxContent());
|
408 |
+
}//selectPreviousSmartInputMatchItem
|
409 |
+
|
410 |
+
function activateCurrentSmartInputMatch() {
|
411 |
+
baseValue = getUserInputBase();
|
412 |
+
if ((selIndex = getCurrentlySelectedSmartInputItem()) != null) {
|
413 |
+
addedValue = siw.matchCollection[selIndex].cleanValue;
|
414 |
+
theString = (baseValue ? baseValue : "") + addedValue + ", ";
|
415 |
+
siw.inputBox.value = theString;
|
416 |
+
runMatchingLogic(addedValue, true);
|
417 |
+
}
|
418 |
+
}//activateCurrentSmartInputMatch
|
419 |
+
|
420 |
+
function smartInputWindow () {
|
421 |
+
this.customFloater = false;
|
422 |
+
this.floater = document.getElementById("smartInputFloater");
|
423 |
+
this.floaterContent = document.getElementById("smartInputFloaterContent");
|
424 |
+
this.selectedSmartInputItem = null;
|
425 |
+
this.MAX_MATCHES = 15;
|
426 |
+
this.isGecko = (navigator.userAgent.indexOf("Gecko/200") != -1);
|
427 |
+
this.isSafari = (navigator.userAgent.indexOf("Safari") != -1);
|
428 |
+
this.isWinIE = ((navigator.userAgent.indexOf("Win") != -1 ) && (navigator.userAgent.indexOf("MSIE") != -1 ));
|
429 |
+
this.showCredit = false;
|
430 |
+
}//smartInputWindow Object
|
431 |
+
|
432 |
+
function registerSmartInputListeners() {
|
433 |
+
inputs = document.getElementsByTagName("input");
|
434 |
+
texts = document.getElementsByTagName("textarea");
|
435 |
+
allinputs = new Array();
|
436 |
+
z = 0;
|
437 |
+
y = 0;
|
438 |
+
while(inputs[z]) {
|
439 |
+
allinputs[z] = inputs[z];
|
440 |
+
z++;
|
441 |
+
}//
|
442 |
+
while(texts[y]) {
|
443 |
+
allinputs[z] = texts[y];
|
444 |
+
z++;
|
445 |
+
y++;
|
446 |
+
}//
|
447 |
+
|
448 |
+
for (i=0; i < allinputs.length;i++) {
|
449 |
+
if ((c = allinputs[i].className) && (c == "wickEnabled")) {
|
450 |
+
allinputs[i].setAttribute("autocomplete","OFF");
|
451 |
+
allinputs[i].onfocus = handleFocus;
|
452 |
+
allinputs[i].onblur = handleBlur;
|
453 |
+
allinputs[i].onkeydown = handleKeyDown;
|
454 |
+
allinputs[i].onkeyup = handleKeyPress;
|
455 |
+
}
|
456 |
+
}//loop thru inputs
|
457 |
+
}//registerSmartInputListeners
|
458 |
+
|
459 |
+
siw = null;
|
460 |
+
|
461 |
+
if (document.addEventListener) {
|
462 |
+
document.addEventListener("keydown", handleKeyDown, false);
|
463 |
+
document.addEventListener("keyup", handleKeyPress, false);
|
464 |
+
document.addEventListener("mouseup", handleClick, false);
|
465 |
+
document.addEventListener("mouseover", handleMouseOver, false);
|
466 |
+
} else {
|
467 |
+
document.onkeydown = handleKeyDown;
|
468 |
+
document.onkeyup = handleKeyPress;
|
469 |
+
document.onmouseup = handleClick;
|
470 |
+
document.onmouseover = handleMouseOver;
|
471 |
+
}
|
472 |
+
|
473 |
+
registerSmartInputListeners();
|
474 |
+
|
475 |
+
document.write (
|
476 |
+
'<table id="smartInputFloater" class="floater" cellpadding="0" cellspacing="0"><tr><td id="smartInputFloaterContent" nowrap="nowrap">'
|
477 |
+
+'<\/td><\/tr><\/table>'
|
478 |
+
);
|
479 |
+
|
480 |
+
//note: instruct users to the fact that no commas should be present in entries.
|
481 |
+
//it would make things insanely messy.
|
482 |
+
//this is why i'm filtering commas here:
|
483 |
+
for (x=0;x<collection.length;x++) {
|
484 |
+
collection[x] = collection[x].replace(/\,/gi,'');
|
485 |
+
}//
|
486 |
+
|
487 |
+
collectionIndex = new Array();
|
488 |
+
|
489 |
+
ds = "";
|
490 |
+
function debug(s) {
|
491 |
+
ds += ( s + "\n");
|
492 |
+
}
|