Version Description
- IMPORTANT security update: Fixed possible XSS vulnerability; bug fixes
=
Download this release
Release Info
Developer | Ajay |
Plugin | Top 10 – Popular posts plugin for WordPress |
Version | 1.9.3 |
Comparing to | |
See all releases |
Code changes from version 1.9.2 to 1.9.3
- admin.inc.php +56 -56
- languages/tptn-az_AZ.mo +0 -0
- languages/tptn-az_AZ.po +45 -45
- languages/tptn-be_BY.mo +0 -0
- languages/tptn-be_BY.po +45 -45
- languages/tptn-en_US.mo +0 -0
- languages/tptn-en_US.po +43 -43
- languages/tptn-en_US.pot +43 -43
- languages/tptn-es_ES.mo +0 -0
- languages/tptn-es_ES.po +45 -45
- languages/tptn-fr_FR.mo +0 -0
- languages/tptn-fr_FR.po +45 -45
- languages/tptn-ga_IR.mo +0 -0
- languages/tptn-ga_IR.po +45 -45
- languages/tptn-hi_IN.mo +0 -0
- languages/tptn-hi_IN.po +45 -45
- languages/tptn-it_IT.mo +0 -0
- languages/tptn-it_IT.po +45 -45
- languages/tptn-nl_NL.mo +0 -0
- languages/tptn-nl_NL.po +45 -45
- languages/tptn-ro_RO.mo +0 -0
- languages/tptn-ro_RO.po +45 -45
- languages/tptn-ru_RU.mo +0 -0
- languages/tptn-ru_RU.po +45 -45
- languages/tptn-ua_UA.mo +0 -0
- languages/tptn-ua_UA.po +45 -45
- readme.txt +8 -2
- top-10.php +21 -12
admin.inc.php
CHANGED
@@ -13,7 +13,7 @@ function tptn_options() {
|
|
13 |
|
14 |
$tptn_settings = tptn_read_options();
|
15 |
|
16 |
-
if((isset($_POST['tptn_save']))&&(
|
17 |
$tptn_settings['title'] = ($_POST['title']);
|
18 |
$tptn_settings['title_daily'] = ($_POST['title_daily']);
|
19 |
$tptn_settings['daily_range'] = intval($_POST['daily_range']);
|
@@ -53,12 +53,12 @@ function tptn_options() {
|
|
53 |
|
54 |
$exclude_categories_slugs = explode(", ",$tptn_settings['exclude_cat_slugs']);
|
55 |
|
56 |
-
|
57 |
foreach ($exclude_categories_slugs as $exclude_categories_slug) {
|
58 |
$catObj = get_category_by_slug($exclude_categories_slug);
|
59 |
-
if (isset($catObj->term_id)) $exclude_categories
|
60 |
}
|
61 |
-
$tptn_settings['exclude_categories'] =
|
62 |
|
63 |
// Cron maintenance functions
|
64 |
if ( ($_POST['cron_on']) && ( ($tptn_settings['cron_on']==false) || (intval($_POST['cron_hour'])!=$tptn_settings['cron_hour']) || (intval($_POST['cron_min'])!=$tptn_settings['cron_min']) || ($_POST['cron_recurrence']!=$tptn_settings['cron_recurrence']) ) ) {
|
@@ -81,7 +81,7 @@ function tptn_options() {
|
|
81 |
echo $str;
|
82 |
}
|
83 |
|
84 |
-
if((isset($_POST['tptn_default']))&&(
|
85 |
delete_option('ald_tptn_settings');
|
86 |
$tptn_settings = tptn_default_options();
|
87 |
update_option('ald_tptn_settings', $tptn_settings);
|
@@ -90,19 +90,19 @@ function tptn_options() {
|
|
90 |
echo $str;
|
91 |
}
|
92 |
|
93 |
-
if((isset($_POST['tptn_trunc_all']))&&(
|
94 |
tptn_trunc_count(false);
|
95 |
$str = '<div id="message" class="updated fade"><p>'. __('Top 10 popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
|
96 |
echo $str;
|
97 |
}
|
98 |
|
99 |
-
if((isset($_POST['tptn_trunc_daily']))&&(
|
100 |
tptn_trunc_count(true);
|
101 |
$str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
|
102 |
echo $str;
|
103 |
}
|
104 |
|
105 |
-
if((isset($_POST['tptn_clean_duplicates']))&&(
|
106 |
tptn_clean_duplicates(true);
|
107 |
tptn_clean_duplicates(false);
|
108 |
$str = '<div id="message" class="updated fade"><p>'. __('Duplicate rows cleaned from tables',TPTN_LOCAL_NAME) .'</p></div>';
|
@@ -129,16 +129,16 @@ function tptn_options() {
|
|
129 |
<?php _e('General options',TPTN_LOCAL_NAME); ?>
|
130 |
</h3>
|
131 |
<table class="form-table">
|
132 |
-
<tr
|
133 |
<td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($tptn_settings['limit'])); ?>"></td>
|
134 |
</tr>
|
135 |
-
<tr
|
136 |
<td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings['daily_range']); ?>"></td>
|
137 |
</tr>
|
138 |
-
<tr
|
139 |
<td><input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($tptn_settings['exclude_pages']) echo 'checked="checked"' ?> /><br /><?php _e('Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted.',TPTN_LOCAL_NAME); ?></td>
|
140 |
</tr>
|
141 |
-
<tr
|
142 |
<td>
|
143 |
<div style="position:relative;text-align:left">
|
144 |
<table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
|
@@ -157,34 +157,34 @@ function tptn_options() {
|
|
157 |
</div>
|
158 |
</td>
|
159 |
</tr>
|
160 |
-
<tr
|
161 |
<td><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings['add_to_content']) echo 'checked="checked"' ?> /> <?php _e('Posts',TPTN_LOCAL_NAME); ?><br />
|
162 |
<input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ($tptn_settings['count_on_pages']) echo 'checked="checked"' ?> /> <?php _e('Pages',TPTN_LOCAL_NAME); ?>
|
163 |
</td>
|
164 |
</tr>
|
165 |
-
<tr
|
166 |
<td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> /><br />
|
167 |
<?php _e('This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts',TPTN_LOCAL_NAME); ?></td>
|
168 |
</tr>
|
169 |
|
170 |
-
<tr
|
171 |
<td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings['d_use_js']) echo 'checked="checked"' ?> /><br />
|
172 |
<?php _e('This option uses JavaScript and will increase your page load time',TPTN_LOCAL_NAME); ?></td>
|
173 |
</tr>
|
174 |
|
175 |
-
<tr
|
176 |
<td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings['track_authors']) echo 'checked="checked"' ?> /></td>
|
177 |
</tr>
|
178 |
|
179 |
-
<tr
|
180 |
<td><input type="checkbox" name="track_admins" id="track_admins" <?php if ($tptn_settings['track_admins']) echo 'checked="checked"' ?> /></td>
|
181 |
</tr>
|
182 |
|
183 |
-
<tr
|
184 |
<td><input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings['pv_in_admin']) echo 'checked="checked"' ?> /></td>
|
185 |
</tr>
|
186 |
|
187 |
-
<tr
|
188 |
<td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings['show_credit']) echo 'checked="checked"' ?> /><br />
|
189 |
<?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></td>
|
190 |
</tr>
|
@@ -196,18 +196,18 @@ function tptn_options() {
|
|
196 |
<?php _e('Output Options',TPTN_LOCAL_NAME); ?>
|
197 |
</h3>
|
198 |
<table class="form-table">
|
199 |
-
<tr
|
200 |
<td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings['count_disp_form'])); ?></textarea>
|
201 |
<br />
|
202 |
<?php _e('Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?></td>
|
203 |
</tr>
|
204 |
-
<tr
|
205 |
<td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($tptn_settings['title'])); ?>" style="width:250px" /></td>
|
206 |
</tr>
|
207 |
-
<tr
|
208 |
<td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo esc_attr(stripslashes($tptn_settings['title_daily'])); ?>" style="width:250px" /></td>
|
209 |
</tr>
|
210 |
-
<tr
|
211 |
<td>
|
212 |
<label>
|
213 |
<input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($tptn_settings['blank_output']) echo 'checked="checked"' ?> />
|
@@ -219,32 +219,32 @@ function tptn_options() {
|
|
219 |
<input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($tptn_settings['blank_output_text'])); ?>" style="width:250px" />
|
220 |
</td>
|
221 |
</tr>
|
222 |
-
<tr
|
223 |
<td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
|
224 |
</tr>
|
225 |
-
<tr
|
226 |
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
|
227 |
</tr>
|
228 |
-
<tr
|
229 |
<td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings['disp_list_count']) echo 'checked="checked"' ?> /></td>
|
230 |
</tr>
|
231 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></th>
|
232 |
</tr>
|
233 |
-
<tr
|
234 |
<td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list'])); ?>" style="width:250px" /></td>
|
235 |
</tr>
|
236 |
-
<tr
|
237 |
<td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list_item'])); ?>" style="width:250px" /></td>
|
238 |
</tr>
|
239 |
-
<tr
|
240 |
<td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list_item'])); ?>" style="width:250px" /></td>
|
241 |
</tr>
|
242 |
-
<tr
|
243 |
<td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list'])); ?>" style="width:250px" /></td>
|
244 |
</tr>
|
245 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
|
246 |
</tr>
|
247 |
-
<tr
|
248 |
<td>
|
249 |
<label>
|
250 |
<input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
|
@@ -264,25 +264,25 @@ function tptn_options() {
|
|
264 |
<br />
|
265 |
</td>
|
266 |
</tr>
|
267 |
-
<tr
|
268 |
<td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_width'])); ?>" style="width:30px" />px</td>
|
269 |
</tr>
|
270 |
-
<tr
|
271 |
<td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_height'])); ?>" style="width:30px" />px</td>
|
272 |
</tr>
|
273 |
-
<tr
|
274 |
<td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></td>
|
275 |
</tr>
|
276 |
-
<tr
|
277 |
<td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_meta'])); ?>"> <br /><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></td>
|
278 |
</tr>
|
279 |
-
<tr
|
280 |
<td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings['scan_images']) echo 'checked="checked"' ?> /> <br /><?php _e('This could slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></td>
|
281 |
</tr>
|
282 |
-
<tr
|
283 |
<td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings['thumb_default_show']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></td>
|
284 |
</tr>
|
285 |
-
<tr
|
286 |
<td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_default'])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></td>
|
287 |
</tr>
|
288 |
</table>
|
@@ -308,15 +308,15 @@ function tptn_options() {
|
|
308 |
<em><?php _e('Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below). This causes the daily posts table to reset.',TPTN_LOCAL_NAME); ?></em>
|
309 |
</th>
|
310 |
</tr>
|
311 |
-
<tr
|
312 |
<td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings['cron_on']) echo 'checked="checked"' ?> />
|
313 |
<br />
|
314 |
</td>
|
315 |
</tr>
|
316 |
-
<tr
|
317 |
<td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_hour'])); ?>" style="width:10px" /> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_min'])); ?>" style="width:10px" /> hrs</td>
|
318 |
</tr>
|
319 |
-
<tr
|
320 |
<td>
|
321 |
<label>
|
322 |
<input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ($tptn_settings['cron_recurrence']=='daily') echo 'checked="checked"' ?> />
|
@@ -336,7 +336,7 @@ function tptn_options() {
|
|
336 |
<br />
|
337 |
</td>
|
338 |
</tr>
|
339 |
-
<tr
|
340 |
<?php
|
341 |
if ($tptn_settings['cron_on']) {
|
342 |
if (wp_next_scheduled('ald_tptn_hook')) {
|
@@ -357,24 +357,24 @@ function tptn_options() {
|
|
357 |
?>
|
358 |
</td></tr>
|
359 |
</table>
|
360 |
-
<hr />
|
361 |
-
<h4>
|
362 |
-
<?php _e('Reset count',TPTN_LOCAL_NAME); ?>
|
363 |
-
</h4>
|
364 |
-
<p>
|
365 |
-
<?php _e('This cannot be reversed. Make sure that your database has been backed up before proceeding',TPTN_LOCAL_NAME); ?>
|
366 |
-
</p>
|
367 |
-
<p>
|
368 |
-
<input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e('Reset Popular Posts',TPTN_LOCAL_NAME); ?>" style="border:#900 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
369 |
-
<input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="<?php _e('Reset Daily Popular Posts',TPTN_LOCAL_NAME); ?>" style="border:#C00 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
370 |
-
<input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="<?php _e('Clear duplicates',TPTN_LOCAL_NAME); ?>" style="border:#600 1px solid" onclick="if (!confirm('<?php _e('This will delete the duplicate entries in the tables. Proceed?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
371 |
-
</p>
|
372 |
</div>
|
373 |
<p>
|
374 |
-
<input type="submit" name="tptn_save" id="tptn_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>"
|
375 |
-
<input type="submit" name="tptn_default" id="tptn_default" value="<?php _e('Default Options',TPTN_LOCAL_NAME); ?>"
|
376 |
</p>
|
377 |
</fieldset>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
</form>
|
379 |
</div>
|
380 |
|
13 |
|
14 |
$tptn_settings = tptn_read_options();
|
15 |
|
16 |
+
if( (isset($_POST['tptn_save']))&&( check_admin_referer('tptn-plugin') ) ) {
|
17 |
$tptn_settings['title'] = ($_POST['title']);
|
18 |
$tptn_settings['title_daily'] = ($_POST['title_daily']);
|
19 |
$tptn_settings['daily_range'] = intval($_POST['daily_range']);
|
53 |
|
54 |
$exclude_categories_slugs = explode(", ",$tptn_settings['exclude_cat_slugs']);
|
55 |
|
56 |
+
//$exclude_categories = '';
|
57 |
foreach ($exclude_categories_slugs as $exclude_categories_slug) {
|
58 |
$catObj = get_category_by_slug($exclude_categories_slug);
|
59 |
+
if (isset($catObj->term_id)) $exclude_categories[] = $catObj->term_id;
|
60 |
}
|
61 |
+
$tptn_settings['exclude_categories'] = (isset($exclude_categories)) ? join(',', $exclude_categories) : '';
|
62 |
|
63 |
// Cron maintenance functions
|
64 |
if ( ($_POST['cron_on']) && ( ($tptn_settings['cron_on']==false) || (intval($_POST['cron_hour'])!=$tptn_settings['cron_hour']) || (intval($_POST['cron_min'])!=$tptn_settings['cron_min']) || ($_POST['cron_recurrence']!=$tptn_settings['cron_recurrence']) ) ) {
|
81 |
echo $str;
|
82 |
}
|
83 |
|
84 |
+
if((isset($_POST['tptn_default']))&&( check_admin_referer('tptn-plugin') ) ) {
|
85 |
delete_option('ald_tptn_settings');
|
86 |
$tptn_settings = tptn_default_options();
|
87 |
update_option('ald_tptn_settings', $tptn_settings);
|
90 |
echo $str;
|
91 |
}
|
92 |
|
93 |
+
if((isset($_POST['tptn_trunc_all']))&&( check_admin_referer('tptn-plugin') )) {
|
94 |
tptn_trunc_count(false);
|
95 |
$str = '<div id="message" class="updated fade"><p>'. __('Top 10 popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
|
96 |
echo $str;
|
97 |
}
|
98 |
|
99 |
+
if((isset($_POST['tptn_trunc_daily']))&&( check_admin_referer('tptn-plugin') )) {
|
100 |
tptn_trunc_count(true);
|
101 |
$str = '<div id="message" class="updated fade"><p>'. __('Top 10 daily popular posts reset',TPTN_LOCAL_NAME) .'</p></div>';
|
102 |
echo $str;
|
103 |
}
|
104 |
|
105 |
+
if((isset($_POST['tptn_clean_duplicates']))&&( check_admin_referer('tptn-plugin') ) ) {
|
106 |
tptn_clean_duplicates(true);
|
107 |
tptn_clean_duplicates(false);
|
108 |
$str = '<div id="message" class="updated fade"><p>'. __('Duplicate rows cleaned from tables',TPTN_LOCAL_NAME) .'</p></div>';
|
129 |
<?php _e('General options',TPTN_LOCAL_NAME); ?>
|
130 |
</h3>
|
131 |
<table class="form-table">
|
132 |
+
<tr><th scope="row"><label for="limit"><?php _e('Number of popular posts to display: ',TPTN_LOCAL_NAME); ?></label></th>
|
133 |
<td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($tptn_settings['limit'])); ?>"></td>
|
134 |
</tr>
|
135 |
+
<tr><th scope="row"><label for="daily_range"><?php _e('Daily Popular should contain views of how many days? ',TPTN_LOCAL_NAME); ?></label></th>
|
136 |
<td><input type="textbox" name="daily_range" id="daily_range" size="3" value="<?php echo stripslashes($tptn_settings['daily_range']); ?>"></td>
|
137 |
</tr>
|
138 |
+
<tr><th scope="row"><label for="exclude_pages"><?php _e('Exclude Pages?',TPTN_LOCAL_NAME); ?></label></th>
|
139 |
<td><input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($tptn_settings['exclude_pages']) echo 'checked="checked"' ?> /><br /><?php _e('Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted.',TPTN_LOCAL_NAME); ?></td>
|
140 |
</tr>
|
141 |
+
<tr><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',TPTN_LOCAL_NAME); ?></label></th>
|
142 |
<td>
|
143 |
<div style="position:relative;text-align:left">
|
144 |
<table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
|
157 |
</div>
|
158 |
</td>
|
159 |
</tr>
|
160 |
+
<tr><th scope="row"><?php _e('Display number of views on:',TPTN_LOCAL_NAME); ?></th>
|
161 |
<td><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($tptn_settings['add_to_content']) echo 'checked="checked"' ?> /> <?php _e('Posts',TPTN_LOCAL_NAME); ?><br />
|
162 |
<input type="checkbox" name="count_on_pages" id="count_on_pages" <?php if ($tptn_settings['count_on_pages']) echo 'checked="checked"' ?> /> <?php _e('Pages',TPTN_LOCAL_NAME); ?>
|
163 |
</td>
|
164 |
</tr>
|
165 |
+
<tr><th scope="row"><label for="dynamic_post_count"><?php _e('Always display latest post count',TPTN_LOCAL_NAME); ?></label></th>
|
166 |
<td><input type="checkbox" name="dynamic_post_count" id="dynamic_post_count" <?php if ($tptn_settings['dynamic_post_count']) echo 'checked="checked"' ?> /><br />
|
167 |
<?php _e('This option uses JavaScript and will increase your page load time. Turn this off if you are not using caching plugins or are OK with displaying older cached counts',TPTN_LOCAL_NAME); ?></td>
|
168 |
</tr>
|
169 |
|
170 |
+
<tr><th scope="row"><label for="d_use_js"><?php _e('Always display latest post count in the daily lists',TPTN_LOCAL_NAME); ?></label></th>
|
171 |
<td><input type="checkbox" name="d_use_js" id="d_use_js" <?php if ($tptn_settings['d_use_js']) echo 'checked="checked"' ?> /><br />
|
172 |
<?php _e('This option uses JavaScript and will increase your page load time',TPTN_LOCAL_NAME); ?></td>
|
173 |
</tr>
|
174 |
|
175 |
+
<tr><th scope="row"><label for="track_authors"><?php _e('Track visits of authors on their own posts?',TPTN_LOCAL_NAME); ?></label></th>
|
176 |
<td><input type="checkbox" name="track_authors" id="track_authors" <?php if ($tptn_settings['track_authors']) echo 'checked="checked"' ?> /></td>
|
177 |
</tr>
|
178 |
|
179 |
+
<tr><th scope="row"><label for="track_admins"><?php _e('Track visits of admins?',TPTN_LOCAL_NAME); ?></label></th>
|
180 |
<td><input type="checkbox" name="track_admins" id="track_admins" <?php if ($tptn_settings['track_admins']) echo 'checked="checked"' ?> /></td>
|
181 |
</tr>
|
182 |
|
183 |
+
<tr><th scope="row"><label for="pv_in_admin"><?php _e('Display page views on Posts > All Posts in Admin',TPTN_LOCAL_NAME); ?></label></th>
|
184 |
<td><input type="checkbox" name="pv_in_admin" id="pv_in_admin" <?php if ($tptn_settings['pv_in_admin']) echo 'checked="checked"' ?> /></td>
|
185 |
</tr>
|
186 |
|
187 |
+
<tr><th scope="row"><label for="show_credit"><?php _e('Link to Top 10 plugin page',TPTN_LOCAL_NAME); ?></label></th>
|
188 |
<td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($tptn_settings['show_credit']) echo 'checked="checked"' ?> /><br />
|
189 |
<?php _e('A link to the plugin is added as an extra list item to the list of popular posts',TPTN_LOCAL_NAME); ?></td>
|
190 |
</tr>
|
196 |
<?php _e('Output Options',TPTN_LOCAL_NAME); ?>
|
197 |
</h3>
|
198 |
<table class="form-table">
|
199 |
+
<tr><th scope="row"><label for="title"><?php _e('Format to display the count in: ',TPTN_LOCAL_NAME); ?></label></th>
|
200 |
<td><textarea name="count_disp_form" id="count_disp_form" cols="50" rows="5"><?php echo htmlspecialchars(stripslashes($tptn_settings['count_disp_form'])); ?></textarea>
|
201 |
<br />
|
202 |
<?php _e('Use <code>%totalcount%</code> to display the total count, <code>%dailycount%</code> to display the daily count and <code>%overallcount%</code> to display the overall count across all posts on the blog. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>',TPTN_LOCAL_NAME); ?></td>
|
203 |
</tr>
|
204 |
+
<tr><th scope="row"><label for="title"><?php _e('Title of popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
|
205 |
<td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($tptn_settings['title'])); ?>" style="width:250px" /></td>
|
206 |
</tr>
|
207 |
+
<tr><th scope="row"><label for="title_daily"><?php _e('Title of daily popular posts: ',TPTN_LOCAL_NAME); ?></label></th>
|
208 |
<td><input type="textbox" name="title_daily" id="title_daily" value="<?php echo esc_attr(stripslashes($tptn_settings['title_daily'])); ?>" style="width:250px" /></td>
|
209 |
</tr>
|
210 |
+
<tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',TPTN_LOCAL_NAME); ?></label></th>
|
211 |
<td>
|
212 |
<label>
|
213 |
<input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($tptn_settings['blank_output']) echo 'checked="checked"' ?> />
|
219 |
<input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($tptn_settings['blank_output_text'])); ?>" style="width:250px" />
|
220 |
</td>
|
221 |
</tr>
|
222 |
+
<tr><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',TPTN_LOCAL_NAME); ?></label></th>
|
223 |
<td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($tptn_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
|
224 |
</tr>
|
225 |
+
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',TPTN_LOCAL_NAME); ?></label></th>
|
226 |
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($tptn_settings['excerpt_length']); ?>" /></td>
|
227 |
</tr>
|
228 |
+
<tr><th scope="row"><label for="disp_list_count"><?php _e('Display number of page views in popular lists?',TPTN_LOCAL_NAME); ?></label></th>
|
229 |
<td><input type="checkbox" name="disp_list_count" id="disp_list_count" <?php if ($tptn_settings['disp_list_count']) echo 'checked="checked"' ?> /></td>
|
230 |
</tr>
|
231 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',TPTN_LOCAL_NAME); ?></th>
|
232 |
</tr>
|
233 |
+
<tr><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
|
234 |
<td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list'])); ?>" style="width:250px" /></td>
|
235 |
</tr>
|
236 |
+
<tr><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',TPTN_LOCAL_NAME); ?></label></th>
|
237 |
<td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['before_list_item'])); ?>" style="width:250px" /></td>
|
238 |
</tr>
|
239 |
+
<tr><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',TPTN_LOCAL_NAME); ?></label></th>
|
240 |
<td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list_item'])); ?>" style="width:250px" /></td>
|
241 |
</tr>
|
242 |
+
<tr><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',TPTN_LOCAL_NAME); ?></label></th>
|
243 |
<td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($tptn_settings['after_list'])); ?>" style="width:250px" /></td>
|
244 |
</tr>
|
245 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',TPTN_LOCAL_NAME); ?></th>
|
246 |
</tr>
|
247 |
+
<tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',TPTN_LOCAL_NAME); ?></label></th>
|
248 |
<td>
|
249 |
<label>
|
250 |
<input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($tptn_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
|
264 |
<br />
|
265 |
</td>
|
266 |
</tr>
|
267 |
+
<tr><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
|
268 |
<td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_width'])); ?>" style="width:30px" />px</td>
|
269 |
</tr>
|
270 |
+
<tr><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
|
271 |
<td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_height'])); ?>" style="width:30px" />px</td>
|
272 |
</tr>
|
273 |
+
<tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',TPTN_LOCAL_NAME); ?></label></th>
|
274 |
<td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($tptn_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',TPTN_LOCAL_NAME); ?></td>
|
275 |
</tr>
|
276 |
+
<tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',TPTN_LOCAL_NAME); ?></label></th>
|
277 |
<td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_meta'])); ?>"> <br /><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',TPTN_LOCAL_NAME); ?></td>
|
278 |
</tr>
|
279 |
+
<tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',TPTN_LOCAL_NAME); ?></label></th>
|
280 |
<td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($tptn_settings['scan_images']) echo 'checked="checked"' ?> /> <br /><?php _e('This could slow down the loading of your page if the first image in the related posts is large in file-size',TPTN_LOCAL_NAME); ?></td>
|
281 |
</tr>
|
282 |
+
<tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',TPTN_LOCAL_NAME); ?></label></th>
|
283 |
<td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($tptn_settings['thumb_default_show']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',TPTN_LOCAL_NAME); ?></td>
|
284 |
</tr>
|
285 |
+
<tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',TPTN_LOCAL_NAME); ?></label></th>
|
286 |
<td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($tptn_settings['thumb_default'])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',TPTN_LOCAL_NAME); ?></td>
|
287 |
</tr>
|
288 |
</table>
|
308 |
<em><?php _e('Note: When scheduled maintenance is enabled, WordPress will run the cron job everytime the job is rescheduled (i.e. you change the settings below). This causes the daily posts table to reset.',TPTN_LOCAL_NAME); ?></em>
|
309 |
</th>
|
310 |
</tr>
|
311 |
+
<tr><th scope="row"><label for="cron_on"><?php _e('Enable scheduled maintenance of daily tables:',TPTN_LOCAL_NAME); ?></label></th>
|
312 |
<td><input type="checkbox" name="cron_on" id="cron_on" <?php if ($tptn_settings['cron_on']) echo 'checked="checked"' ?> />
|
313 |
<br />
|
314 |
</td>
|
315 |
</tr>
|
316 |
+
<tr><th scope="row"><label for="cron_hour"><?php _e('Time to run maintenance',TPTN_LOCAL_NAME); ?></label></th>
|
317 |
<td><input type="textbox" name="cron_hour" id="cron_hour" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_hour'])); ?>" style="width:10px" /> : <input type="textbox" name="cron_min" id="cron_min" value="<?php echo esc_attr(stripslashes($tptn_settings['cron_min'])); ?>" style="width:10px" /> hrs</td>
|
318 |
</tr>
|
319 |
+
<tr><th scope="row"><label for="cron_recurrence"><?php _e('How often should the maintenance be run:',TPTN_LOCAL_NAME); ?></label></th>
|
320 |
<td>
|
321 |
<label>
|
322 |
<input type="radio" name="cron_recurrence" value="daily" id="cron_recurrence0" <?php if ($tptn_settings['cron_recurrence']=='daily') echo 'checked="checked"' ?> />
|
336 |
<br />
|
337 |
</td>
|
338 |
</tr>
|
339 |
+
<tr><td scope="row" colspan="2">
|
340 |
<?php
|
341 |
if ($tptn_settings['cron_on']) {
|
342 |
if (wp_next_scheduled('ald_tptn_hook')) {
|
357 |
?>
|
358 |
</td></tr>
|
359 |
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
</div>
|
361 |
<p>
|
362 |
+
<input type="submit" name="tptn_save" id="tptn_save" value="<?php _e('Save Options',TPTN_LOCAL_NAME); ?>" class="button button-primary" />
|
363 |
+
<input type="submit" name="tptn_default" id="tptn_default" value="<?php _e('Default Options',TPTN_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
364 |
</p>
|
365 |
</fieldset>
|
366 |
+
<h3>
|
367 |
+
<?php _e('Reset count',TPTN_LOCAL_NAME); ?>
|
368 |
+
</h3>
|
369 |
+
<p>
|
370 |
+
<?php _e('This cannot be reversed. Make sure that your database has been backed up before proceeding',TPTN_LOCAL_NAME); ?>
|
371 |
+
</p>
|
372 |
+
<p>
|
373 |
+
<input name="tptn_trunc_all" type="submit" id="tptn_trunc_all" value="<?php _e('Reset Popular Posts',TPTN_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Are you sure you want to reset the popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
374 |
+
<input name="tptn_trunc_daily" type="submit" id="tptn_trunc_daily" value="<?php _e('Reset Daily Popular Posts',TPTN_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Are you sure you want to reset the daily popular posts?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
375 |
+
<input name="tptn_clean_duplicates" type="submit" id="tptn_clean_duplicates" value="<?php _e('Clear duplicates',TPTN_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('This will delete the duplicate entries in the tables. Proceed?',TPTN_LOCAL_NAME); ?>')) return false;" />
|
376 |
+
</p>
|
377 |
+
<?php wp_nonce_field('tptn-plugin'); ?>
|
378 |
</form>
|
379 |
</div>
|
380 |
|
languages/tptn-az_AZ.mo
CHANGED
Binary file
|
languages/tptn-az_AZ.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Bohdan Zograf <bozograf@gmail.com>\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -388,10 +388,24 @@ msgid "Maintenance is turned off"
|
|
388 |
msgstr ""
|
389 |
|
390 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
msgid "Reset count"
|
392 |
msgstr "Statistikanı sbros etmək"
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid ""
|
396 |
"This cannot be reversed. Make sure that your database has been backed up "
|
397 |
"before proceeding"
|
@@ -399,50 +413,36 @@ msgstr ""
|
|
399 |
"Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
|
400 |
"ki, Sizin məlumat bazasının kopiyası var!"
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
#, fuzzy
|
404 |
msgid "Reset Popular Posts"
|
405 |
msgstr "Populyar yazılar"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid "Are you sure you want to reset the popular posts?"
|
409 |
msgstr ""
|
410 |
"Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
#, fuzzy
|
414 |
msgid "Reset Daily Popular Posts"
|
415 |
msgstr "Gündəlik Populyar Yazılar"
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Are you sure you want to reset the daily popular posts?"
|
419 |
msgstr ""
|
420 |
"Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
|
421 |
"istəyirsiniz?"
|
422 |
|
423 |
-
#: admin.inc.php:
|
424 |
msgid "Clear duplicates"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
429 |
msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
|
430 |
|
431 |
-
#: admin.inc.php:
|
432 |
-
#, fuzzy
|
433 |
-
msgid "Save Options"
|
434 |
-
msgstr "Opsiyalar:"
|
435 |
-
|
436 |
-
#: admin.inc.php:375
|
437 |
-
#, fuzzy
|
438 |
-
msgid "Default Options"
|
439 |
-
msgstr "Plaginin kökləmələri:"
|
440 |
-
|
441 |
-
#: admin.inc.php:375
|
442 |
-
msgid "Do you want to set options to Default?"
|
443 |
-
msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
|
444 |
-
|
445 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
446 |
msgid "Popular Posts"
|
447 |
msgstr "Populyar yazılar"
|
448 |
|
@@ -484,7 +484,7 @@ msgstr "Digər plaginlər"
|
|
484 |
msgid "Ajay's blog"
|
485 |
msgstr "Ajay-in blogu"
|
486 |
|
487 |
-
#: admin.inc.php:457 top-10.php:
|
488 |
msgid "Support"
|
489 |
msgstr "Dəstək"
|
490 |
|
@@ -550,90 +550,90 @@ msgstr "Gündəlik Populyar"
|
|
550 |
msgid "Total / Today's Views"
|
551 |
msgstr "Ümümi/ Bu günkü baxış"
|
552 |
|
553 |
-
#: top-10.php:
|
554 |
msgid "Display the posts popular this week"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: top-10.php:
|
558 |
msgid "Title"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: top-10.php:
|
562 |
msgid "No. of posts"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: top-10.php:
|
566 |
msgid "Overall"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: top-10.php:
|
570 |
msgid "Custom time period (Enter below)"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: top-10.php:
|
574 |
msgid "Range in number of days (applies only to custom option above)"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: top-10.php:
|
578 |
#, fuzzy
|
579 |
msgid "Thumbnail options"
|
580 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
581 |
|
582 |
-
#: top-10.php:
|
583 |
#, fuzzy
|
584 |
msgid "Thumbnails inline, before title"
|
585 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
586 |
|
587 |
-
#: top-10.php:
|
588 |
#, fuzzy
|
589 |
msgid "Thumbnails inline, after title"
|
590 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
591 |
|
592 |
-
#: top-10.php:
|
593 |
#, fuzzy
|
594 |
msgid "Only thumbnails, no text"
|
595 |
msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
|
596 |
|
597 |
-
#: top-10.php:
|
598 |
#, fuzzy
|
599 |
msgid "No thumbnails, only text."
|
600 |
msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
|
601 |
|
602 |
-
#: top-10.php:
|
603 |
#, fuzzy
|
604 |
msgid " Show excerpt?"
|
605 |
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
606 |
|
607 |
-
#: top-10.php:
|
608 |
msgid "<h3>Popular Posts</h3>"
|
609 |
msgstr "<h3>Populyar yazılar</h3>"
|
610 |
|
611 |
-
#: top-10.php:
|
612 |
msgid "<h3>Daily Popular</h3>"
|
613 |
msgstr "<h3>Gündəlik Populyar</h3>"
|
614 |
|
615 |
-
#: top-10.php:
|
616 |
#, fuzzy
|
617 |
msgid "No top posts yet"
|
618 |
msgstr "10 populyar yazı statisticasını pozmaq"
|
619 |
|
620 |
-
#: top-10.php:
|
621 |
msgid "Once Weekly"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: top-10.php:
|
625 |
msgid "Once Fortnightly"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: top-10.php:
|
629 |
msgid "Once Monthly"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: top-10.php:
|
633 |
msgid "Settings"
|
634 |
msgstr "Kökləmələr"
|
635 |
|
636 |
-
#: top-10.php:
|
637 |
msgid "Donate"
|
638 |
msgstr "İanə etmək"
|
639 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
388 |
msgstr ""
|
389 |
|
390 |
#: admin.inc.php:362
|
391 |
+
#, fuzzy
|
392 |
+
msgid "Save Options"
|
393 |
+
msgstr "Opsiyalar:"
|
394 |
+
|
395 |
+
#: admin.inc.php:363
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Default Options"
|
398 |
+
msgstr "Plaginin kökləmələri:"
|
399 |
+
|
400 |
+
#: admin.inc.php:363
|
401 |
+
msgid "Do you want to set options to Default?"
|
402 |
+
msgstr "Siz plaginin kökləmələrin standard etmək lazımdır?"
|
403 |
+
|
404 |
+
#: admin.inc.php:367
|
405 |
msgid "Reset count"
|
406 |
msgstr "Statistikanı sbros etmək"
|
407 |
|
408 |
+
#: admin.inc.php:370
|
409 |
msgid ""
|
410 |
"This cannot be reversed. Make sure that your database has been backed up "
|
411 |
"before proceeding"
|
413 |
"Statistikanın sbrosu geriya qaytarmaq olmaz. Sbros etməkdən qabaq əmin olun "
|
414 |
"ki, Sizin məlumat bazasının kopiyası var!"
|
415 |
|
416 |
+
#: admin.inc.php:373
|
417 |
#, fuzzy
|
418 |
msgid "Reset Popular Posts"
|
419 |
msgstr "Populyar yazılar"
|
420 |
|
421 |
+
#: admin.inc.php:373
|
422 |
msgid "Are you sure you want to reset the popular posts?"
|
423 |
msgstr ""
|
424 |
"Siz əminsiniz ki, Populyar yazıları statistikanı sbros etmək istəyirsiniz?"
|
425 |
|
426 |
+
#: admin.inc.php:374
|
427 |
#, fuzzy
|
428 |
msgid "Reset Daily Popular Posts"
|
429 |
msgstr "Gündəlik Populyar Yazılar"
|
430 |
|
431 |
+
#: admin.inc.php:374
|
432 |
msgid "Are you sure you want to reset the daily popular posts?"
|
433 |
msgstr ""
|
434 |
"Siz əminsiniz ki, gündəlik populyar yazıları statistikanı sbros etmək "
|
435 |
"istəyirsiniz?"
|
436 |
|
437 |
+
#: admin.inc.php:375
|
438 |
msgid "Clear duplicates"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin.inc.php:375
|
442 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
443 |
msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
|
444 |
|
445 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
msgid "Popular Posts"
|
447 |
msgstr "Populyar yazılar"
|
448 |
|
484 |
msgid "Ajay's blog"
|
485 |
msgstr "Ajay-in blogu"
|
486 |
|
487 |
+
#: admin.inc.php:457 top-10.php:766
|
488 |
msgid "Support"
|
489 |
msgstr "Dəstək"
|
490 |
|
550 |
msgid "Total / Today's Views"
|
551 |
msgstr "Ümümi/ Bu günkü baxış"
|
552 |
|
553 |
+
#: top-10.php:328
|
554 |
msgid "Display the posts popular this week"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: top-10.php:342
|
558 |
msgid "Title"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: top-10.php:347
|
562 |
msgid "No. of posts"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: top-10.php:352
|
566 |
msgid "Overall"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: top-10.php:353
|
570 |
msgid "Custom time period (Enter below)"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: top-10.php:358
|
574 |
msgid "Range in number of days (applies only to custom option above)"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: top-10.php:362
|
578 |
#, fuzzy
|
579 |
msgid "Thumbnail options"
|
580 |
msgstr "Yazılışlara əvvəlcədən baxma kökləmələri:"
|
581 |
|
582 |
+
#: top-10.php:364
|
583 |
#, fuzzy
|
584 |
msgid "Thumbnails inline, before title"
|
585 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
586 |
|
587 |
+
#: top-10.php:365
|
588 |
#, fuzzy
|
589 |
msgid "Thumbnails inline, after title"
|
590 |
msgstr "Mətni və əvvəlcədən baxışı göstərmək"
|
591 |
|
592 |
+
#: top-10.php:366
|
593 |
#, fuzzy
|
594 |
msgid "Only thumbnails, no text"
|
595 |
msgstr "Yalnız əvvəlcədən baxışı göstərmək, mətnsiz"
|
596 |
|
597 |
+
#: top-10.php:367
|
598 |
#, fuzzy
|
599 |
msgid "No thumbnails, only text."
|
600 |
msgstr "Yalnız mətini göstərmək, əvəlcədən baxışsız"
|
601 |
|
602 |
+
#: top-10.php:372
|
603 |
#, fuzzy
|
604 |
msgid " Show excerpt?"
|
605 |
msgstr "Yazılış mətnini siyahıda göstərmək lazımdır?"
|
606 |
|
607 |
+
#: top-10.php:441
|
608 |
msgid "<h3>Popular Posts</h3>"
|
609 |
msgstr "<h3>Populyar yazılar</h3>"
|
610 |
|
611 |
+
#: top-10.php:442
|
612 |
msgid "<h3>Daily Popular</h3>"
|
613 |
msgstr "<h3>Gündəlik Populyar</h3>"
|
614 |
|
615 |
+
#: top-10.php:443
|
616 |
#, fuzzy
|
617 |
msgid "No top posts yet"
|
618 |
msgstr "10 populyar yazı statisticasını pozmaq"
|
619 |
|
620 |
+
#: top-10.php:731
|
621 |
msgid "Once Weekly"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: top-10.php:732
|
625 |
msgid "Once Fortnightly"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: top-10.php:733
|
629 |
msgid "Once Monthly"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: top-10.php:754
|
633 |
msgid "Settings"
|
634 |
msgstr "Kökləmələr"
|
635 |
|
636 |
+
#: top-10.php:767
|
637 |
msgid "Donate"
|
638 |
msgstr "İanə etmək"
|
639 |
|
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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -378,56 +378,56 @@ msgid "Maintenance is turned off"
|
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
msgid "Reset count"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid ""
|
386 |
"This cannot be reversed. Make sure that your database has been backed up "
|
387 |
"before proceeding"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
#, fuzzy
|
392 |
msgid "Reset Popular Posts"
|
393 |
msgstr "Папулярныя запісы"
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
msgid "Are you sure you want to reset the popular posts?"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Reset Daily Popular Posts"
|
402 |
msgstr "Папулярныя сёння запісы"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Are you sure you want to reset the daily popular posts?"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid "Clear duplicates"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
-
#, fuzzy
|
418 |
-
msgid "Save Options"
|
419 |
-
msgstr "Налады ўбудовы:"
|
420 |
-
|
421 |
-
#: admin.inc.php:375
|
422 |
-
#, fuzzy
|
423 |
-
msgid "Default Options"
|
424 |
-
msgstr "Налады ўбудовы:"
|
425 |
-
|
426 |
-
#: admin.inc.php:375
|
427 |
-
msgid "Do you want to set options to Default?"
|
428 |
-
msgstr "Скінуць налады ўбудовы?"
|
429 |
-
|
430 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
431 |
msgid "Popular Posts"
|
432 |
msgstr "Папулярныя запісы"
|
433 |
|
@@ -468,7 +468,7 @@ msgstr ""
|
|
468 |
msgid "Ajay's blog"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:457 top-10.php:
|
472 |
msgid "Support"
|
473 |
msgstr ""
|
474 |
|
@@ -534,86 +534,86 @@ msgstr "Папулярныя сёння запісы"
|
|
534 |
msgid "Total / Today's Views"
|
535 |
msgstr "Усяго / Сёння праглядаў"
|
536 |
|
537 |
-
#: top-10.php:
|
538 |
msgid "Display the posts popular this week"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: top-10.php:
|
542 |
msgid "Title"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: top-10.php:
|
546 |
msgid "No. of posts"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: top-10.php:
|
550 |
msgid "Overall"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: top-10.php:
|
554 |
msgid "Custom time period (Enter below)"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: top-10.php:
|
558 |
msgid "Range in number of days (applies only to custom option above)"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: top-10.php:
|
562 |
msgid "Thumbnail options"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: top-10.php:
|
566 |
#, fuzzy
|
567 |
msgid "Thumbnails inline, before title"
|
568 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
569 |
|
570 |
-
#: top-10.php:
|
571 |
#, fuzzy
|
572 |
msgid "Thumbnails inline, after title"
|
573 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
574 |
|
575 |
-
#: top-10.php:
|
576 |
msgid "Only thumbnails, no text"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: top-10.php:
|
580 |
msgid "No thumbnails, only text."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: top-10.php:
|
584 |
msgid " Show excerpt?"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: top-10.php:
|
588 |
msgid "<h3>Popular Posts</h3>"
|
589 |
msgstr "<h3>Папулярныя запісы</h3>"
|
590 |
|
591 |
-
#: top-10.php:
|
592 |
msgid "<h3>Daily Popular</h3>"
|
593 |
msgstr "<h3>Папулярныя сёння запісы</h3>"
|
594 |
|
595 |
-
#: top-10.php:
|
596 |
#, fuzzy
|
597 |
msgid "No top posts yet"
|
598 |
msgstr "Загаловак блока Папулярных запісаў:"
|
599 |
|
600 |
-
#: top-10.php:
|
601 |
msgid "Once Weekly"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
msgid "Once Fortnightly"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: top-10.php:
|
609 |
msgid "Once Monthly"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: top-10.php:
|
613 |
msgid "Settings"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: top-10.php:
|
617 |
msgid "Donate"
|
618 |
msgstr ""
|
619 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin.inc.php:362
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Save Options"
|
383 |
+
msgstr "Налады ўбудовы:"
|
384 |
+
|
385 |
+
#: admin.inc.php:363
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Default Options"
|
388 |
+
msgstr "Налады ўбудовы:"
|
389 |
+
|
390 |
+
#: admin.inc.php:363
|
391 |
+
msgid "Do you want to set options to Default?"
|
392 |
+
msgstr "Скінуць налады ўбудовы?"
|
393 |
+
|
394 |
+
#: admin.inc.php:367
|
395 |
msgid "Reset count"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:370
|
399 |
msgid ""
|
400 |
"This cannot be reversed. Make sure that your database has been backed up "
|
401 |
"before proceeding"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:373
|
405 |
#, fuzzy
|
406 |
msgid "Reset Popular Posts"
|
407 |
msgstr "Папулярныя запісы"
|
408 |
|
409 |
+
#: admin.inc.php:373
|
410 |
msgid "Are you sure you want to reset the popular posts?"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin.inc.php:374
|
414 |
#, fuzzy
|
415 |
msgid "Reset Daily Popular Posts"
|
416 |
msgstr "Папулярныя сёння запісы"
|
417 |
|
418 |
+
#: admin.inc.php:374
|
419 |
msgid "Are you sure you want to reset the daily popular posts?"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:375
|
423 |
msgid "Clear duplicates"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:375
|
427 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
msgid "Popular Posts"
|
432 |
msgstr "Папулярныя запісы"
|
433 |
|
468 |
msgid "Ajay's blog"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin.inc.php:457 top-10.php:766
|
472 |
msgid "Support"
|
473 |
msgstr ""
|
474 |
|
534 |
msgid "Total / Today's Views"
|
535 |
msgstr "Усяго / Сёння праглядаў"
|
536 |
|
537 |
+
#: top-10.php:328
|
538 |
msgid "Display the posts popular this week"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: top-10.php:342
|
542 |
msgid "Title"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: top-10.php:347
|
546 |
msgid "No. of posts"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: top-10.php:352
|
550 |
msgid "Overall"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: top-10.php:353
|
554 |
msgid "Custom time period (Enter below)"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: top-10.php:358
|
558 |
msgid "Range in number of days (applies only to custom option above)"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: top-10.php:362
|
562 |
msgid "Thumbnail options"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: top-10.php:364
|
566 |
#, fuzzy
|
567 |
msgid "Thumbnails inline, before title"
|
568 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
569 |
|
570 |
+
#: top-10.php:365
|
571 |
#, fuzzy
|
572 |
msgid "Thumbnails inline, after title"
|
573 |
msgstr "Паказваць колькасць праглядаў запісу ў яе \"целе\"?"
|
574 |
|
575 |
+
#: top-10.php:366
|
576 |
msgid "Only thumbnails, no text"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: top-10.php:367
|
580 |
msgid "No thumbnails, only text."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: top-10.php:372
|
584 |
msgid " Show excerpt?"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: top-10.php:441
|
588 |
msgid "<h3>Popular Posts</h3>"
|
589 |
msgstr "<h3>Папулярныя запісы</h3>"
|
590 |
|
591 |
+
#: top-10.php:442
|
592 |
msgid "<h3>Daily Popular</h3>"
|
593 |
msgstr "<h3>Папулярныя сёння запісы</h3>"
|
594 |
|
595 |
+
#: top-10.php:443
|
596 |
#, fuzzy
|
597 |
msgid "No top posts yet"
|
598 |
msgstr "Загаловак блока Папулярных запісаў:"
|
599 |
|
600 |
+
#: top-10.php:731
|
601 |
msgid "Once Weekly"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: top-10.php:732
|
605 |
msgid "Once Fortnightly"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: top-10.php:733
|
609 |
msgid "Once Monthly"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: top-10.php:754
|
613 |
msgid "Settings"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: top-10.php:767
|
617 |
msgid "Donate"
|
618 |
msgstr ""
|
619 |
|
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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -356,52 +356,52 @@ msgid "Maintenance is turned off"
|
|
356 |
msgstr ""
|
357 |
|
358 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
msgid "Reset count"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid ""
|
364 |
"This cannot be reversed. Make sure that your database has been backed up "
|
365 |
"before proceeding"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin.inc.php:
|
369 |
msgid "Reset Popular Posts"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
msgid "Are you sure you want to reset the popular posts?"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid "Reset Daily Popular Posts"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin.inc.php:369
|
381 |
-
msgid "Are you sure you want to reset the daily popular posts?"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: admin.inc.php:370
|
385 |
-
msgid "Clear duplicates"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: admin.inc.php:370
|
389 |
-
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
#: admin.inc.php:374
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
#: admin.inc.php:375
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
#: admin.inc.php:375
|
401 |
-
msgid "
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:
|
405 |
msgid "Popular Posts"
|
406 |
msgstr ""
|
407 |
|
@@ -441,7 +441,7 @@ msgstr ""
|
|
441 |
msgid "Ajay's blog"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:457 top-10.php:
|
445 |
msgid "Support"
|
446 |
msgstr ""
|
447 |
|
@@ -505,82 +505,82 @@ msgstr ""
|
|
505 |
msgid "Total / Today's Views"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: top-10.php:
|
509 |
msgid "Display the posts popular this week"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: top-10.php:
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: top-10.php:
|
517 |
msgid "No. of posts"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: top-10.php:
|
521 |
msgid "Overall"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: top-10.php:
|
525 |
msgid "Custom time period (Enter below)"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: top-10.php:
|
529 |
msgid "Range in number of days (applies only to custom option above)"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: top-10.php:
|
533 |
msgid "Thumbnail options"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: top-10.php:
|
537 |
msgid "Thumbnails inline, before title"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: top-10.php:
|
541 |
msgid "Thumbnails inline, after title"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: top-10.php:
|
545 |
msgid "Only thumbnails, no text"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: top-10.php:
|
549 |
msgid "No thumbnails, only text."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: top-10.php:
|
553 |
msgid " Show excerpt?"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: top-10.php:
|
557 |
msgid "<h3>Popular Posts</h3>"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: top-10.php:
|
561 |
msgid "<h3>Daily Popular</h3>"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: top-10.php:
|
565 |
msgid "No top posts yet"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: top-10.php:
|
569 |
msgid "Once Weekly"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: top-10.php:
|
573 |
msgid "Once Fortnightly"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: top-10.php:
|
577 |
msgid "Once Monthly"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: top-10.php:
|
581 |
msgid "Settings"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: top-10.php:
|
585 |
msgid "Donate"
|
586 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:23-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
356 |
msgstr ""
|
357 |
|
358 |
#: admin.inc.php:362
|
359 |
+
msgid "Save Options"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin.inc.php:363
|
363 |
+
msgid "Default Options"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: admin.inc.php:363
|
367 |
+
msgid "Do you want to set options to Default?"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: admin.inc.php:367
|
371 |
msgid "Reset count"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin.inc.php:370
|
375 |
msgid ""
|
376 |
"This cannot be reversed. Make sure that your database has been backed up "
|
377 |
"before proceeding"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:373
|
381 |
msgid "Reset Popular Posts"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin.inc.php:373
|
385 |
msgid "Are you sure you want to reset the popular posts?"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:374
|
389 |
msgid "Reset Daily Popular Posts"
|
390 |
msgstr ""
|
391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
#: admin.inc.php:374
|
393 |
+
msgid "Are you sure you want to reset the daily popular posts?"
|
394 |
msgstr ""
|
395 |
|
396 |
#: admin.inc.php:375
|
397 |
+
msgid "Clear duplicates"
|
398 |
msgstr ""
|
399 |
|
400 |
#: admin.inc.php:375
|
401 |
+
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
405 |
msgid "Popular Posts"
|
406 |
msgstr ""
|
407 |
|
441 |
msgid "Ajay's blog"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:457 top-10.php:766
|
445 |
msgid "Support"
|
446 |
msgstr ""
|
447 |
|
505 |
msgid "Total / Today's Views"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: top-10.php:328
|
509 |
msgid "Display the posts popular this week"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: top-10.php:342
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: top-10.php:347
|
517 |
msgid "No. of posts"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: top-10.php:352
|
521 |
msgid "Overall"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: top-10.php:353
|
525 |
msgid "Custom time period (Enter below)"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: top-10.php:358
|
529 |
msgid "Range in number of days (applies only to custom option above)"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: top-10.php:362
|
533 |
msgid "Thumbnail options"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: top-10.php:364
|
537 |
msgid "Thumbnails inline, before title"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: top-10.php:365
|
541 |
msgid "Thumbnails inline, after title"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: top-10.php:366
|
545 |
msgid "Only thumbnails, no text"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: top-10.php:367
|
549 |
msgid "No thumbnails, only text."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: top-10.php:372
|
553 |
msgid " Show excerpt?"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: top-10.php:441
|
557 |
msgid "<h3>Popular Posts</h3>"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: top-10.php:442
|
561 |
msgid "<h3>Daily Popular</h3>"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: top-10.php:443
|
565 |
msgid "No top posts yet"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: top-10.php:731
|
569 |
msgid "Once Weekly"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: top-10.php:732
|
573 |
msgid "Once Fortnightly"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: top-10.php:733
|
577 |
msgid "Once Monthly"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: top-10.php:754
|
581 |
msgid "Settings"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: top-10.php:767
|
585 |
msgid "Donate"
|
586 |
msgstr ""
|
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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -356,52 +356,52 @@ msgid "Maintenance is turned off"
|
|
356 |
msgstr ""
|
357 |
|
358 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
msgid "Reset count"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid ""
|
364 |
"This cannot be reversed. Make sure that your database has been backed up "
|
365 |
"before proceeding"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin.inc.php:
|
369 |
msgid "Reset Popular Posts"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
msgid "Are you sure you want to reset the popular posts?"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid "Reset Daily Popular Posts"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin.inc.php:369
|
381 |
-
msgid "Are you sure you want to reset the daily popular posts?"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: admin.inc.php:370
|
385 |
-
msgid "Clear duplicates"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: admin.inc.php:370
|
389 |
-
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
#: admin.inc.php:374
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
#: admin.inc.php:375
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
#: admin.inc.php:375
|
401 |
-
msgid "
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:
|
405 |
msgid "Popular Posts"
|
406 |
msgstr ""
|
407 |
|
@@ -441,7 +441,7 @@ msgstr ""
|
|
441 |
msgid "Ajay's blog"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:457 top-10.php:
|
445 |
msgid "Support"
|
446 |
msgstr ""
|
447 |
|
@@ -505,82 +505,82 @@ msgstr ""
|
|
505 |
msgid "Total / Today's Views"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: top-10.php:
|
509 |
msgid "Display the posts popular this week"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: top-10.php:
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: top-10.php:
|
517 |
msgid "No. of posts"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: top-10.php:
|
521 |
msgid "Overall"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: top-10.php:
|
525 |
msgid "Custom time period (Enter below)"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: top-10.php:
|
529 |
msgid "Range in number of days (applies only to custom option above)"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: top-10.php:
|
533 |
msgid "Thumbnail options"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: top-10.php:
|
537 |
msgid "Thumbnails inline, before title"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: top-10.php:
|
541 |
msgid "Thumbnails inline, after title"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: top-10.php:
|
545 |
msgid "Only thumbnails, no text"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: top-10.php:
|
549 |
msgid "No thumbnails, only text."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: top-10.php:
|
553 |
msgid " Show excerpt?"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: top-10.php:
|
557 |
msgid "<h3>Popular Posts</h3>"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: top-10.php:
|
561 |
msgid "<h3>Daily Popular</h3>"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: top-10.php:
|
565 |
msgid "No top posts yet"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: top-10.php:
|
569 |
msgid "Once Weekly"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: top-10.php:
|
573 |
msgid "Once Fortnightly"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: top-10.php:
|
577 |
msgid "Once Monthly"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: top-10.php:
|
581 |
msgid "Settings"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: top-10.php:
|
585 |
msgid "Donate"
|
586 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:23-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
356 |
msgstr ""
|
357 |
|
358 |
#: admin.inc.php:362
|
359 |
+
msgid "Save Options"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin.inc.php:363
|
363 |
+
msgid "Default Options"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: admin.inc.php:363
|
367 |
+
msgid "Do you want to set options to Default?"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: admin.inc.php:367
|
371 |
msgid "Reset count"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin.inc.php:370
|
375 |
msgid ""
|
376 |
"This cannot be reversed. Make sure that your database has been backed up "
|
377 |
"before proceeding"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:373
|
381 |
msgid "Reset Popular Posts"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin.inc.php:373
|
385 |
msgid "Are you sure you want to reset the popular posts?"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:374
|
389 |
msgid "Reset Daily Popular Posts"
|
390 |
msgstr ""
|
391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
#: admin.inc.php:374
|
393 |
+
msgid "Are you sure you want to reset the daily popular posts?"
|
394 |
msgstr ""
|
395 |
|
396 |
#: admin.inc.php:375
|
397 |
+
msgid "Clear duplicates"
|
398 |
msgstr ""
|
399 |
|
400 |
#: admin.inc.php:375
|
401 |
+
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
405 |
msgid "Popular Posts"
|
406 |
msgstr ""
|
407 |
|
441 |
msgid "Ajay's blog"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:457 top-10.php:766
|
445 |
msgid "Support"
|
446 |
msgstr ""
|
447 |
|
505 |
msgid "Total / Today's Views"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: top-10.php:328
|
509 |
msgid "Display the posts popular this week"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: top-10.php:342
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: top-10.php:347
|
517 |
msgid "No. of posts"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: top-10.php:352
|
521 |
msgid "Overall"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: top-10.php:353
|
525 |
msgid "Custom time period (Enter below)"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: top-10.php:358
|
529 |
msgid "Range in number of days (applies only to custom option above)"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: top-10.php:362
|
533 |
msgid "Thumbnail options"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: top-10.php:364
|
537 |
msgid "Thumbnails inline, before title"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: top-10.php:365
|
541 |
msgid "Thumbnails inline, after title"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: top-10.php:366
|
545 |
msgid "Only thumbnails, no text"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: top-10.php:367
|
549 |
msgid "No thumbnails, only text."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: top-10.php:372
|
553 |
msgid " Show excerpt?"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: top-10.php:441
|
557 |
msgid "<h3>Popular Posts</h3>"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: top-10.php:442
|
561 |
msgid "<h3>Daily Popular</h3>"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: top-10.php:443
|
565 |
msgid "No top posts yet"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: top-10.php:731
|
569 |
msgid "Once Weekly"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: top-10.php:732
|
573 |
msgid "Once Fortnightly"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: top-10.php:733
|
577 |
msgid "Once Monthly"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: top-10.php:754
|
581 |
msgid "Settings"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: top-10.php:767
|
585 |
msgid "Donate"
|
586 |
msgstr ""
|
languages/tptn-es_ES.mo
CHANGED
Binary file
|
languages/tptn-es_ES.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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -391,10 +391,24 @@ msgid "Maintenance is turned off"
|
|
391 |
msgstr ""
|
392 |
|
393 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
msgid "Reset count"
|
395 |
msgstr "Reiniciar los ajustes"
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
msgid ""
|
399 |
"This cannot be reversed. Make sure that your database has been backed up "
|
400 |
"before proceeding"
|
@@ -402,48 +416,34 @@ msgstr ""
|
|
402 |
"Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
|
403 |
"sido creada una copia de seguridad para su base de datos."
|
404 |
|
405 |
-
#: admin.inc.php:
|
406 |
#, fuzzy
|
407 |
msgid "Reset Popular Posts"
|
408 |
msgstr "Los posts más populares"
|
409 |
|
410 |
-
#: admin.inc.php:
|
411 |
msgid "Are you sure you want to reset the popular posts?"
|
412 |
msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
#, fuzzy
|
416 |
msgid "Reset Daily Popular Posts"
|
417 |
msgstr "Los posts diarios más populares"
|
418 |
|
419 |
-
#: admin.inc.php:
|
420 |
msgid "Are you sure you want to reset the daily popular posts?"
|
421 |
msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
|
422 |
|
423 |
-
#: admin.inc.php:
|
424 |
msgid "Clear duplicates"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
429 |
msgstr ""
|
430 |
"Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
|
431 |
|
432 |
-
#: admin.inc.php:
|
433 |
-
#, fuzzy
|
434 |
-
msgid "Save Options"
|
435 |
-
msgstr "Los parametros"
|
436 |
-
|
437 |
-
#: admin.inc.php:375
|
438 |
-
#, fuzzy
|
439 |
-
msgid "Default Options"
|
440 |
-
msgstr "Los Parámetros Resultantes"
|
441 |
-
|
442 |
-
#: admin.inc.php:375
|
443 |
-
msgid "Do you want to set options to Default?"
|
444 |
-
msgstr "¿Quiere configurar las opciones de forma predeterminada?"
|
445 |
-
|
446 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
447 |
msgid "Popular Posts"
|
448 |
msgstr "Los posts más populares"
|
449 |
|
@@ -485,7 +485,7 @@ msgstr "Otros plugins"
|
|
485 |
msgid "Ajay's blog"
|
486 |
msgstr "Blog de Ajay"
|
487 |
|
488 |
-
#: admin.inc.php:457 top-10.php:
|
489 |
msgid "Support"
|
490 |
msgstr "Apoyo"
|
491 |
|
@@ -551,90 +551,90 @@ msgstr "Diario Populares"
|
|
551 |
msgid "Total / Today's Views"
|
552 |
msgstr "Total/Visitas de hoy"
|
553 |
|
554 |
-
#: top-10.php:
|
555 |
msgid "Display the posts popular this week"
|
556 |
msgstr "Mostrar los posts populares de esta semana"
|
557 |
|
558 |
-
#: top-10.php:
|
559 |
msgid "Title"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: top-10.php:
|
563 |
msgid "No. of posts"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: top-10.php:
|
567 |
msgid "Overall"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: top-10.php:
|
571 |
msgid "Custom time period (Enter below)"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: top-10.php:
|
575 |
msgid "Range in number of days (applies only to custom option above)"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: top-10.php:
|
579 |
#, fuzzy
|
580 |
msgid "Thumbnail options"
|
581 |
msgstr "Los parámetros del thumbnail:"
|
582 |
|
583 |
-
#: top-10.php:
|
584 |
#, fuzzy
|
585 |
msgid "Thumbnails inline, before title"
|
586 |
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
587 |
|
588 |
-
#: top-10.php:
|
589 |
#, fuzzy
|
590 |
msgid "Thumbnails inline, after title"
|
591 |
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
592 |
|
593 |
-
#: top-10.php:
|
594 |
#, fuzzy
|
595 |
msgid "Only thumbnails, no text"
|
596 |
msgstr "Mostrar solamente thumbnails, no el texto"
|
597 |
|
598 |
-
#: top-10.php:
|
599 |
#, fuzzy
|
600 |
msgid "No thumbnails, only text."
|
601 |
msgstr "No mostrar thumbnails, sólo el texto"
|
602 |
|
603 |
-
#: top-10.php:
|
604 |
#, fuzzy
|
605 |
msgid " Show excerpt?"
|
606 |
msgstr "¿Mostrar un fragmento del post en la lista?"
|
607 |
|
608 |
-
#: top-10.php:
|
609 |
msgid "<h3>Popular Posts</h3>"
|
610 |
msgstr "Los posts populares"
|
611 |
|
612 |
-
#: top-10.php:
|
613 |
msgid "<h3>Daily Popular</h3>"
|
614 |
msgstr "Diario Populares"
|
615 |
|
616 |
-
#: top-10.php:
|
617 |
#, fuzzy
|
618 |
msgid "No top posts yet"
|
619 |
msgstr "Reiniciar el Top de los 10 posts más populares"
|
620 |
|
621 |
-
#: top-10.php:
|
622 |
msgid "Once Weekly"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: top-10.php:
|
626 |
msgid "Once Fortnightly"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: top-10.php:
|
630 |
msgid "Once Monthly"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: top-10.php:
|
634 |
msgid "Settings"
|
635 |
msgstr "Los ajustes"
|
636 |
|
637 |
-
#: top-10.php:
|
638 |
msgid "Donate"
|
639 |
msgstr "Subvencionar"
|
640 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
391 |
msgstr ""
|
392 |
|
393 |
#: admin.inc.php:362
|
394 |
+
#, fuzzy
|
395 |
+
msgid "Save Options"
|
396 |
+
msgstr "Los parametros"
|
397 |
+
|
398 |
+
#: admin.inc.php:363
|
399 |
+
#, fuzzy
|
400 |
+
msgid "Default Options"
|
401 |
+
msgstr "Los Parámetros Resultantes"
|
402 |
+
|
403 |
+
#: admin.inc.php:363
|
404 |
+
msgid "Do you want to set options to Default?"
|
405 |
+
msgstr "¿Quiere configurar las opciones de forma predeterminada?"
|
406 |
+
|
407 |
+
#: admin.inc.php:367
|
408 |
msgid "Reset count"
|
409 |
msgstr "Reiniciar los ajustes"
|
410 |
|
411 |
+
#: admin.inc.php:370
|
412 |
msgid ""
|
413 |
"This cannot be reversed. Make sure that your database has been backed up "
|
414 |
"before proceeding"
|
416 |
"Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha "
|
417 |
"sido creada una copia de seguridad para su base de datos."
|
418 |
|
419 |
+
#: admin.inc.php:373
|
420 |
#, fuzzy
|
421 |
msgid "Reset Popular Posts"
|
422 |
msgstr "Los posts más populares"
|
423 |
|
424 |
+
#: admin.inc.php:373
|
425 |
msgid "Are you sure you want to reset the popular posts?"
|
426 |
msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
|
427 |
|
428 |
+
#: admin.inc.php:374
|
429 |
#, fuzzy
|
430 |
msgid "Reset Daily Popular Posts"
|
431 |
msgstr "Los posts diarios más populares"
|
432 |
|
433 |
+
#: admin.inc.php:374
|
434 |
msgid "Are you sure you want to reset the daily popular posts?"
|
435 |
msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
|
436 |
|
437 |
+
#: admin.inc.php:375
|
438 |
msgid "Clear duplicates"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin.inc.php:375
|
442 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
443 |
msgstr ""
|
444 |
"Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
|
445 |
|
446 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Popular Posts"
|
448 |
msgstr "Los posts más populares"
|
449 |
|
485 |
msgid "Ajay's blog"
|
486 |
msgstr "Blog de Ajay"
|
487 |
|
488 |
+
#: admin.inc.php:457 top-10.php:766
|
489 |
msgid "Support"
|
490 |
msgstr "Apoyo"
|
491 |
|
551 |
msgid "Total / Today's Views"
|
552 |
msgstr "Total/Visitas de hoy"
|
553 |
|
554 |
+
#: top-10.php:328
|
555 |
msgid "Display the posts popular this week"
|
556 |
msgstr "Mostrar los posts populares de esta semana"
|
557 |
|
558 |
+
#: top-10.php:342
|
559 |
msgid "Title"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: top-10.php:347
|
563 |
msgid "No. of posts"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: top-10.php:352
|
567 |
msgid "Overall"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: top-10.php:353
|
571 |
msgid "Custom time period (Enter below)"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: top-10.php:358
|
575 |
msgid "Range in number of days (applies only to custom option above)"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: top-10.php:362
|
579 |
#, fuzzy
|
580 |
msgid "Thumbnail options"
|
581 |
msgstr "Los parámetros del thumbnail:"
|
582 |
|
583 |
+
#: top-10.php:364
|
584 |
#, fuzzy
|
585 |
msgid "Thumbnails inline, before title"
|
586 |
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
587 |
|
588 |
+
#: top-10.php:365
|
589 |
#, fuzzy
|
590 |
msgid "Thumbnails inline, after title"
|
591 |
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
592 |
|
593 |
+
#: top-10.php:366
|
594 |
#, fuzzy
|
595 |
msgid "Only thumbnails, no text"
|
596 |
msgstr "Mostrar solamente thumbnails, no el texto"
|
597 |
|
598 |
+
#: top-10.php:367
|
599 |
#, fuzzy
|
600 |
msgid "No thumbnails, only text."
|
601 |
msgstr "No mostrar thumbnails, sólo el texto"
|
602 |
|
603 |
+
#: top-10.php:372
|
604 |
#, fuzzy
|
605 |
msgid " Show excerpt?"
|
606 |
msgstr "¿Mostrar un fragmento del post en la lista?"
|
607 |
|
608 |
+
#: top-10.php:441
|
609 |
msgid "<h3>Popular Posts</h3>"
|
610 |
msgstr "Los posts populares"
|
611 |
|
612 |
+
#: top-10.php:442
|
613 |
msgid "<h3>Daily Popular</h3>"
|
614 |
msgstr "Diario Populares"
|
615 |
|
616 |
+
#: top-10.php:443
|
617 |
#, fuzzy
|
618 |
msgid "No top posts yet"
|
619 |
msgstr "Reiniciar el Top de los 10 posts más populares"
|
620 |
|
621 |
+
#: top-10.php:731
|
622 |
msgid "Once Weekly"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: top-10.php:732
|
626 |
msgid "Once Fortnightly"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: top-10.php:733
|
630 |
msgid "Once Monthly"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: top-10.php:754
|
634 |
msgid "Settings"
|
635 |
msgstr "Los ajustes"
|
636 |
|
637 |
+
#: top-10.php:767
|
638 |
msgid "Donate"
|
639 |
msgstr "Subvencionar"
|
640 |
|
languages/tptn-fr_FR.mo
CHANGED
Binary file
|
languages/tptn-fr_FR.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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -392,10 +392,24 @@ msgid "Maintenance is turned off"
|
|
392 |
msgstr ""
|
393 |
|
394 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "Reset count"
|
396 |
msgstr "Réinitialiser le compteur"
|
397 |
|
398 |
-
#: admin.inc.php:
|
399 |
msgid ""
|
400 |
"This cannot be reversed. Make sure that your database has been backed up "
|
401 |
"before proceeding"
|
@@ -403,48 +417,34 @@ msgstr ""
|
|
403 |
"Cette action ne peut être annulée. Assurez-vous que la base de données a été "
|
404 |
"sauvegardée avant de poursuivre."
|
405 |
|
406 |
-
#: admin.inc.php:
|
407 |
#, fuzzy
|
408 |
msgid "Reset Popular Posts"
|
409 |
msgstr "Postes populaires"
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid "Are you sure you want to reset the popular posts?"
|
413 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
|
414 |
|
415 |
-
#: admin.inc.php:
|
416 |
#, fuzzy
|
417 |
msgid "Reset Daily Popular Posts"
|
418 |
msgstr "Postes populaires journaliers"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Are you sure you want to reset the daily popular posts?"
|
422 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
msgid "Clear duplicates"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
430 |
msgstr ""
|
431 |
"Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
-
#, fuzzy
|
435 |
-
msgid "Save Options"
|
436 |
-
msgstr "Options:"
|
437 |
-
|
438 |
-
#: admin.inc.php:375
|
439 |
-
#, fuzzy
|
440 |
-
msgid "Default Options"
|
441 |
-
msgstr "Paramètres de sortie"
|
442 |
-
|
443 |
-
#: admin.inc.php:375
|
444 |
-
msgid "Do you want to set options to Default?"
|
445 |
-
msgstr "Définir les paramètres par défaut?"
|
446 |
-
|
447 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
448 |
msgid "Popular Posts"
|
449 |
msgstr "Postes populaires"
|
450 |
|
@@ -486,7 +486,7 @@ msgstr "Autres plugins"
|
|
486 |
msgid "Ajay's blog"
|
487 |
msgstr "Blog Ajay"
|
488 |
|
489 |
-
#: admin.inc.php:457 top-10.php:
|
490 |
msgid "Support"
|
491 |
msgstr "Service d'assistance"
|
492 |
|
@@ -552,90 +552,90 @@ msgstr "Populaires journaliers"
|
|
552 |
msgid "Total / Today's Views"
|
553 |
msgstr "Total/aujourd'hui visionnages"
|
554 |
|
555 |
-
#: top-10.php:
|
556 |
msgid "Display the posts popular this week"
|
557 |
msgstr "Afficher les postes populaires de la semaine"
|
558 |
|
559 |
-
#: top-10.php:
|
560 |
msgid "Title"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: top-10.php:
|
564 |
msgid "No. of posts"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: top-10.php:
|
568 |
msgid "Overall"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: top-10.php:
|
572 |
msgid "Custom time period (Enter below)"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: top-10.php:
|
576 |
msgid "Range in number of days (applies only to custom option above)"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: top-10.php:
|
580 |
#, fuzzy
|
581 |
msgid "Thumbnail options"
|
582 |
msgstr "Options thumbnail des messages:"
|
583 |
|
584 |
-
#: top-10.php:
|
585 |
#, fuzzy
|
586 |
msgid "Thumbnails inline, before title"
|
587 |
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
588 |
|
589 |
-
#: top-10.php:
|
590 |
#, fuzzy
|
591 |
msgid "Thumbnails inline, after title"
|
592 |
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
593 |
|
594 |
-
#: top-10.php:
|
595 |
#, fuzzy
|
596 |
msgid "Only thumbnails, no text"
|
597 |
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
598 |
|
599 |
-
#: top-10.php:
|
600 |
#, fuzzy
|
601 |
msgid "No thumbnails, only text."
|
602 |
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
#, fuzzy
|
606 |
msgid " Show excerpt?"
|
607 |
msgstr "Afficher le fragment du message dans la liste?"
|
608 |
|
609 |
-
#: top-10.php:
|
610 |
msgid "<h3>Popular Posts</h3>"
|
611 |
msgstr "<h3>Postes populaires</h3>"
|
612 |
|
613 |
-
#: top-10.php:
|
614 |
msgid "<h3>Daily Popular</h3>"
|
615 |
msgstr "<h3>Populaires Journaliers</h3>"
|
616 |
|
617 |
-
#: top-10.php:
|
618 |
#, fuzzy
|
619 |
msgid "No top posts yet"
|
620 |
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
621 |
|
622 |
-
#: top-10.php:
|
623 |
msgid "Once Weekly"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: top-10.php:
|
627 |
msgid "Once Fortnightly"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: top-10.php:
|
631 |
msgid "Once Monthly"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: top-10.php:
|
635 |
msgid "Settings"
|
636 |
msgstr "Paramètres"
|
637 |
|
638 |
-
#: top-10.php:
|
639 |
msgid "Donate"
|
640 |
msgstr "Conribuer"
|
641 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
392 |
msgstr ""
|
393 |
|
394 |
#: admin.inc.php:362
|
395 |
+
#, fuzzy
|
396 |
+
msgid "Save Options"
|
397 |
+
msgstr "Options:"
|
398 |
+
|
399 |
+
#: admin.inc.php:363
|
400 |
+
#, fuzzy
|
401 |
+
msgid "Default Options"
|
402 |
+
msgstr "Paramètres de sortie"
|
403 |
+
|
404 |
+
#: admin.inc.php:363
|
405 |
+
msgid "Do you want to set options to Default?"
|
406 |
+
msgstr "Définir les paramètres par défaut?"
|
407 |
+
|
408 |
+
#: admin.inc.php:367
|
409 |
msgid "Reset count"
|
410 |
msgstr "Réinitialiser le compteur"
|
411 |
|
412 |
+
#: admin.inc.php:370
|
413 |
msgid ""
|
414 |
"This cannot be reversed. Make sure that your database has been backed up "
|
415 |
"before proceeding"
|
417 |
"Cette action ne peut être annulée. Assurez-vous que la base de données a été "
|
418 |
"sauvegardée avant de poursuivre."
|
419 |
|
420 |
+
#: admin.inc.php:373
|
421 |
#, fuzzy
|
422 |
msgid "Reset Popular Posts"
|
423 |
msgstr "Postes populaires"
|
424 |
|
425 |
+
#: admin.inc.php:373
|
426 |
msgid "Are you sure you want to reset the popular posts?"
|
427 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
|
428 |
|
429 |
+
#: admin.inc.php:374
|
430 |
#, fuzzy
|
431 |
msgid "Reset Daily Popular Posts"
|
432 |
msgstr "Postes populaires journaliers"
|
433 |
|
434 |
+
#: admin.inc.php:374
|
435 |
msgid "Are you sure you want to reset the daily popular posts?"
|
436 |
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
|
437 |
|
438 |
+
#: admin.inc.php:375
|
439 |
msgid "Clear duplicates"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin.inc.php:375
|
443 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
444 |
msgstr ""
|
445 |
"Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
|
446 |
|
447 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "Popular Posts"
|
449 |
msgstr "Postes populaires"
|
450 |
|
486 |
msgid "Ajay's blog"
|
487 |
msgstr "Blog Ajay"
|
488 |
|
489 |
+
#: admin.inc.php:457 top-10.php:766
|
490 |
msgid "Support"
|
491 |
msgstr "Service d'assistance"
|
492 |
|
552 |
msgid "Total / Today's Views"
|
553 |
msgstr "Total/aujourd'hui visionnages"
|
554 |
|
555 |
+
#: top-10.php:328
|
556 |
msgid "Display the posts popular this week"
|
557 |
msgstr "Afficher les postes populaires de la semaine"
|
558 |
|
559 |
+
#: top-10.php:342
|
560 |
msgid "Title"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: top-10.php:347
|
564 |
msgid "No. of posts"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: top-10.php:352
|
568 |
msgid "Overall"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: top-10.php:353
|
572 |
msgid "Custom time period (Enter below)"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: top-10.php:358
|
576 |
msgid "Range in number of days (applies only to custom option above)"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: top-10.php:362
|
580 |
#, fuzzy
|
581 |
msgid "Thumbnail options"
|
582 |
msgstr "Options thumbnail des messages:"
|
583 |
|
584 |
+
#: top-10.php:364
|
585 |
#, fuzzy
|
586 |
msgid "Thumbnails inline, before title"
|
587 |
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
588 |
|
589 |
+
#: top-10.php:365
|
590 |
#, fuzzy
|
591 |
msgid "Thumbnails inline, after title"
|
592 |
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
593 |
|
594 |
+
#: top-10.php:366
|
595 |
#, fuzzy
|
596 |
msgid "Only thumbnails, no text"
|
597 |
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
598 |
|
599 |
+
#: top-10.php:367
|
600 |
#, fuzzy
|
601 |
msgid "No thumbnails, only text."
|
602 |
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
603 |
|
604 |
+
#: top-10.php:372
|
605 |
#, fuzzy
|
606 |
msgid " Show excerpt?"
|
607 |
msgstr "Afficher le fragment du message dans la liste?"
|
608 |
|
609 |
+
#: top-10.php:441
|
610 |
msgid "<h3>Popular Posts</h3>"
|
611 |
msgstr "<h3>Postes populaires</h3>"
|
612 |
|
613 |
+
#: top-10.php:442
|
614 |
msgid "<h3>Daily Popular</h3>"
|
615 |
msgstr "<h3>Populaires Journaliers</h3>"
|
616 |
|
617 |
+
#: top-10.php:443
|
618 |
#, fuzzy
|
619 |
msgid "No top posts yet"
|
620 |
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
621 |
|
622 |
+
#: top-10.php:731
|
623 |
msgid "Once Weekly"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: top-10.php:732
|
627 |
msgid "Once Fortnightly"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: top-10.php:733
|
631 |
msgid "Once Monthly"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: top-10.php:754
|
635 |
msgid "Settings"
|
636 |
msgstr "Paramètres"
|
637 |
|
638 |
+
#: top-10.php:767
|
639 |
msgid "Donate"
|
640 |
msgstr "Conribuer"
|
641 |
|
languages/tptn-ga_IR.mo
CHANGED
Binary file
|
languages/tptn-ga_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -384,56 +384,56 @@ msgid "Maintenance is turned off"
|
|
384 |
msgstr ""
|
385 |
|
386 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
msgid "Reset count"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
msgid ""
|
392 |
"This cannot be reversed. Make sure that your database has been backed up "
|
393 |
"before proceeding"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin.inc.php:
|
397 |
#, fuzzy
|
398 |
msgid "Reset Popular Posts"
|
399 |
msgstr "Poist Coitianta"
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid "Are you sure you want to reset the popular posts?"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin.inc.php:
|
406 |
#, fuzzy
|
407 |
msgid "Reset Daily Popular Posts"
|
408 |
msgstr "Poist Coitianta Laethúil"
|
409 |
|
410 |
-
#: admin.inc.php:
|
411 |
msgid "Are you sure you want to reset the daily popular posts?"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
msgid "Clear duplicates"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin.inc.php:
|
419 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: admin.inc.php:
|
423 |
-
#, fuzzy
|
424 |
-
msgid "Save Options"
|
425 |
-
msgstr "roghanna"
|
426 |
-
|
427 |
-
#: admin.inc.php:375
|
428 |
-
#, fuzzy
|
429 |
-
msgid "Default Options"
|
430 |
-
msgstr "roghanna"
|
431 |
-
|
432 |
-
#: admin.inc.php:375
|
433 |
-
msgid "Do you want to set options to Default?"
|
434 |
-
msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
|
435 |
-
|
436 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
437 |
msgid "Popular Posts"
|
438 |
msgstr "Poist Coitianta"
|
439 |
|
@@ -474,7 +474,7 @@ msgstr ""
|
|
474 |
msgid "Ajay's blog"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin.inc.php:457 top-10.php:
|
478 |
msgid "Support"
|
479 |
msgstr ""
|
480 |
|
@@ -541,88 +541,88 @@ msgstr "laethúil Coitianta"
|
|
541 |
msgid "Total / Today's Views"
|
542 |
msgstr "laethúil Coitianta"
|
543 |
|
544 |
-
#: top-10.php:
|
545 |
msgid "Display the posts popular this week"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: top-10.php:
|
549 |
msgid "Title"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: top-10.php:
|
553 |
msgid "No. of posts"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: top-10.php:
|
557 |
msgid "Overall"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: top-10.php:
|
561 |
msgid "Custom time period (Enter below)"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: top-10.php:
|
565 |
msgid "Range in number of days (applies only to custom option above)"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: top-10.php:
|
569 |
msgid "Thumbnail options"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: top-10.php:
|
573 |
#, fuzzy
|
574 |
msgid "Thumbnails inline, before title"
|
575 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
576 |
|
577 |
-
#: top-10.php:
|
578 |
#, fuzzy
|
579 |
msgid "Thumbnails inline, after title"
|
580 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
581 |
|
582 |
-
#: top-10.php:
|
583 |
#, fuzzy
|
584 |
msgid "Only thumbnails, no text"
|
585 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
586 |
|
587 |
-
#: top-10.php:
|
588 |
#, fuzzy
|
589 |
msgid "No thumbnails, only text."
|
590 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
591 |
|
592 |
-
#: top-10.php:
|
593 |
msgid " Show excerpt?"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: top-10.php:
|
597 |
msgid "<h3>Popular Posts</h3>"
|
598 |
msgstr "<h3>Poist Coitianta </ h3>"
|
599 |
|
600 |
-
#: top-10.php:
|
601 |
msgid "<h3>Daily Popular</h3>"
|
602 |
msgstr "<h3> laethúil Coitianta </ h3>"
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
#, fuzzy
|
606 |
msgid "No top posts yet"
|
607 |
msgstr "Teideal an post tóir:"
|
608 |
|
609 |
-
#: top-10.php:
|
610 |
msgid "Once Weekly"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: top-10.php:
|
614 |
msgid "Once Fortnightly"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: top-10.php:
|
618 |
msgid "Once Monthly"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: top-10.php:
|
622 |
msgid "Settings"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: top-10.php:
|
626 |
msgid "Donate"
|
627 |
msgstr ""
|
628 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
384 |
msgstr ""
|
385 |
|
386 |
#: admin.inc.php:362
|
387 |
+
#, fuzzy
|
388 |
+
msgid "Save Options"
|
389 |
+
msgstr "roghanna"
|
390 |
+
|
391 |
+
#: admin.inc.php:363
|
392 |
+
#, fuzzy
|
393 |
+
msgid "Default Options"
|
394 |
+
msgstr "roghanna"
|
395 |
+
|
396 |
+
#: admin.inc.php:363
|
397 |
+
msgid "Do you want to set options to Default?"
|
398 |
+
msgstr "Ar mhaith leat roghanna atá leagtha chun Réamhshocrú?"
|
399 |
+
|
400 |
+
#: admin.inc.php:367
|
401 |
msgid "Reset count"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:370
|
405 |
msgid ""
|
406 |
"This cannot be reversed. Make sure that your database has been backed up "
|
407 |
"before proceeding"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin.inc.php:373
|
411 |
#, fuzzy
|
412 |
msgid "Reset Popular Posts"
|
413 |
msgstr "Poist Coitianta"
|
414 |
|
415 |
+
#: admin.inc.php:373
|
416 |
msgid "Are you sure you want to reset the popular posts?"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:374
|
420 |
#, fuzzy
|
421 |
msgid "Reset Daily Popular Posts"
|
422 |
msgstr "Poist Coitianta Laethúil"
|
423 |
|
424 |
+
#: admin.inc.php:374
|
425 |
msgid "Are you sure you want to reset the daily popular posts?"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin.inc.php:375
|
429 |
msgid "Clear duplicates"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin.inc.php:375
|
433 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
msgid "Popular Posts"
|
438 |
msgstr "Poist Coitianta"
|
439 |
|
474 |
msgid "Ajay's blog"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin.inc.php:457 top-10.php:766
|
478 |
msgid "Support"
|
479 |
msgstr ""
|
480 |
|
541 |
msgid "Total / Today's Views"
|
542 |
msgstr "laethúil Coitianta"
|
543 |
|
544 |
+
#: top-10.php:328
|
545 |
msgid "Display the posts popular this week"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: top-10.php:342
|
549 |
msgid "Title"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: top-10.php:347
|
553 |
msgid "No. of posts"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: top-10.php:352
|
557 |
msgid "Overall"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: top-10.php:353
|
561 |
msgid "Custom time period (Enter below)"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: top-10.php:358
|
565 |
msgid "Range in number of days (applies only to custom option above)"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: top-10.php:362
|
569 |
msgid "Thumbnail options"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: top-10.php:364
|
573 |
#, fuzzy
|
574 |
msgid "Thumbnails inline, before title"
|
575 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
576 |
|
577 |
+
#: top-10.php:365
|
578 |
#, fuzzy
|
579 |
msgid "Thumbnails inline, after title"
|
580 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
581 |
|
582 |
+
#: top-10.php:366
|
583 |
#, fuzzy
|
584 |
msgid "Only thumbnails, no text"
|
585 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
586 |
|
587 |
+
#: top-10.php:367
|
588 |
#, fuzzy
|
589 |
msgid "No thumbnails, only text."
|
590 |
msgstr "Taispeáin líon na dtuairimí ar phoist?"
|
591 |
|
592 |
+
#: top-10.php:372
|
593 |
msgid " Show excerpt?"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: top-10.php:441
|
597 |
msgid "<h3>Popular Posts</h3>"
|
598 |
msgstr "<h3>Poist Coitianta </ h3>"
|
599 |
|
600 |
+
#: top-10.php:442
|
601 |
msgid "<h3>Daily Popular</h3>"
|
602 |
msgstr "<h3> laethúil Coitianta </ h3>"
|
603 |
|
604 |
+
#: top-10.php:443
|
605 |
#, fuzzy
|
606 |
msgid "No top posts yet"
|
607 |
msgstr "Teideal an post tóir:"
|
608 |
|
609 |
+
#: top-10.php:731
|
610 |
msgid "Once Weekly"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: top-10.php:732
|
614 |
msgid "Once Fortnightly"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: top-10.php:733
|
618 |
msgid "Once Monthly"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: top-10.php:754
|
622 |
msgid "Settings"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: top-10.php:767
|
626 |
msgid "Donate"
|
627 |
msgstr ""
|
628 |
|
languages/tptn-hi_IN.mo
CHANGED
Binary file
|
languages/tptn-hi_IN.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
"X-Poedit-Basepath: ../\n"
|
16 |
-
"X-Generator: Poedit 1.5.
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: admin.inc.php:71
|
@@ -378,56 +378,56 @@ msgid "Maintenance is turned off"
|
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
msgid "Reset count"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid ""
|
386 |
"This cannot be reversed. Make sure that your database has been backed up "
|
387 |
"before proceeding"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
#, fuzzy
|
392 |
msgid "Reset Popular Posts"
|
393 |
msgstr "लोकप्रिय पोस्ट्स "
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
msgid "Are you sure you want to reset the popular posts?"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Reset Daily Popular Posts"
|
402 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Are you sure you want to reset the daily popular posts?"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid "Clear duplicates"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
-
#, fuzzy
|
418 |
-
msgid "Save Options"
|
419 |
-
msgstr "विकल्प हैं:"
|
420 |
-
|
421 |
-
#: admin.inc.php:375
|
422 |
-
#, fuzzy
|
423 |
-
msgid "Default Options"
|
424 |
-
msgstr "विकल्प हैं:"
|
425 |
-
|
426 |
-
#: admin.inc.php:375
|
427 |
-
msgid "Do you want to set options to Default?"
|
428 |
-
msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
|
429 |
-
|
430 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
431 |
msgid "Popular Posts"
|
432 |
msgstr "लोकप्रिय पोस्ट्स "
|
433 |
|
@@ -468,7 +468,7 @@ msgstr ""
|
|
468 |
msgid "Ajay's blog"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin.inc.php:457 top-10.php:
|
472 |
msgid "Support"
|
473 |
msgstr ""
|
474 |
|
@@ -534,86 +534,86 @@ msgstr "दैनिक लोकप्रिय"
|
|
534 |
msgid "Total / Today's Views"
|
535 |
msgstr "कुल / आज दर्शाव"
|
536 |
|
537 |
-
#: top-10.php:
|
538 |
msgid "Display the posts popular this week"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: top-10.php:
|
542 |
msgid "Title"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: top-10.php:
|
546 |
msgid "No. of posts"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: top-10.php:
|
550 |
msgid "Overall"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: top-10.php:
|
554 |
msgid "Custom time period (Enter below)"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: top-10.php:
|
558 |
msgid "Range in number of days (applies only to custom option above)"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: top-10.php:
|
562 |
msgid "Thumbnail options"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: top-10.php:
|
566 |
#, fuzzy
|
567 |
msgid "Thumbnails inline, before title"
|
568 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
569 |
|
570 |
-
#: top-10.php:
|
571 |
#, fuzzy
|
572 |
msgid "Thumbnails inline, after title"
|
573 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
574 |
|
575 |
-
#: top-10.php:
|
576 |
msgid "Only thumbnails, no text"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: top-10.php:
|
580 |
msgid "No thumbnails, only text."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: top-10.php:
|
584 |
msgid " Show excerpt?"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: top-10.php:
|
588 |
msgid "<h3>Popular Posts</h3>"
|
589 |
msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
|
590 |
|
591 |
-
#: top-10.php:
|
592 |
msgid "<h3>Daily Popular</h3>"
|
593 |
msgstr "<h3> दैनिक लोकप्रिय </ h3>"
|
594 |
|
595 |
-
#: top-10.php:
|
596 |
#, fuzzy
|
597 |
msgid "No top posts yet"
|
598 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
599 |
|
600 |
-
#: top-10.php:
|
601 |
msgid "Once Weekly"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
msgid "Once Fortnightly"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: top-10.php:
|
609 |
msgid "Once Monthly"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: top-10.php:
|
613 |
msgid "Settings"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: top-10.php:
|
617 |
msgid "Donate"
|
618 |
msgstr ""
|
619 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Outshine Solutions <ashish@outshinesolutions.com>\n"
|
13 |
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: admin.inc.php:71
|
378 |
msgstr ""
|
379 |
|
380 |
#: admin.inc.php:362
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Save Options"
|
383 |
+
msgstr "विकल्प हैं:"
|
384 |
+
|
385 |
+
#: admin.inc.php:363
|
386 |
+
#, fuzzy
|
387 |
+
msgid "Default Options"
|
388 |
+
msgstr "विकल्प हैं:"
|
389 |
+
|
390 |
+
#: admin.inc.php:363
|
391 |
+
msgid "Do you want to set options to Default?"
|
392 |
+
msgstr "क्या आप डिफ़ॉल्ट विकल्प सेट करना चाहते हैं?"
|
393 |
+
|
394 |
+
#: admin.inc.php:367
|
395 |
msgid "Reset count"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:370
|
399 |
msgid ""
|
400 |
"This cannot be reversed. Make sure that your database has been backed up "
|
401 |
"before proceeding"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:373
|
405 |
#, fuzzy
|
406 |
msgid "Reset Popular Posts"
|
407 |
msgstr "लोकप्रिय पोस्ट्स "
|
408 |
|
409 |
+
#: admin.inc.php:373
|
410 |
msgid "Are you sure you want to reset the popular posts?"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin.inc.php:374
|
414 |
#, fuzzy
|
415 |
msgid "Reset Daily Popular Posts"
|
416 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
417 |
|
418 |
+
#: admin.inc.php:374
|
419 |
msgid "Are you sure you want to reset the daily popular posts?"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:375
|
423 |
msgid "Clear duplicates"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:375
|
427 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
msgid "Popular Posts"
|
432 |
msgstr "लोकप्रिय पोस्ट्स "
|
433 |
|
468 |
msgid "Ajay's blog"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin.inc.php:457 top-10.php:766
|
472 |
msgid "Support"
|
473 |
msgstr ""
|
474 |
|
534 |
msgid "Total / Today's Views"
|
535 |
msgstr "कुल / आज दर्शाव"
|
536 |
|
537 |
+
#: top-10.php:328
|
538 |
msgid "Display the posts popular this week"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: top-10.php:342
|
542 |
msgid "Title"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: top-10.php:347
|
546 |
msgid "No. of posts"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: top-10.php:352
|
550 |
msgid "Overall"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: top-10.php:353
|
554 |
msgid "Custom time period (Enter below)"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: top-10.php:358
|
558 |
msgid "Range in number of days (applies only to custom option above)"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: top-10.php:362
|
562 |
msgid "Thumbnail options"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: top-10.php:364
|
566 |
#, fuzzy
|
567 |
msgid "Thumbnails inline, before title"
|
568 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
569 |
|
570 |
+
#: top-10.php:365
|
571 |
#, fuzzy
|
572 |
msgid "Thumbnails inline, after title"
|
573 |
msgstr "पदों पर विचारों के प्रदर्शन की संख्या?"
|
574 |
|
575 |
+
#: top-10.php:366
|
576 |
msgid "Only thumbnails, no text"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: top-10.php:367
|
580 |
msgid "No thumbnails, only text."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: top-10.php:372
|
584 |
msgid " Show excerpt?"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: top-10.php:441
|
588 |
msgid "<h3>Popular Posts</h3>"
|
589 |
msgstr "<h3> लोकप्रिय पोस्ट्स </ h3>"
|
590 |
|
591 |
+
#: top-10.php:442
|
592 |
msgid "<h3>Daily Popular</h3>"
|
593 |
msgstr "<h3> दैनिक लोकप्रिय </ h3>"
|
594 |
|
595 |
+
#: top-10.php:443
|
596 |
#, fuzzy
|
597 |
msgid "No top posts yet"
|
598 |
msgstr "लोकप्रिय पदों का शीर्षक:"
|
599 |
|
600 |
+
#: top-10.php:731
|
601 |
msgid "Once Weekly"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: top-10.php:732
|
605 |
msgid "Once Fortnightly"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: top-10.php:733
|
609 |
msgid "Once Monthly"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: top-10.php:754
|
613 |
msgid "Settings"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: top-10.php:767
|
617 |
msgid "Donate"
|
618 |
msgstr ""
|
619 |
|
languages/tptn-it_IT.mo
CHANGED
Binary file
|
languages/tptn-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -403,10 +403,24 @@ msgid "Maintenance is turned off"
|
|
403 |
msgstr ""
|
404 |
|
405 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
msgid "Reset count"
|
407 |
msgstr "Ripristino conteggio"
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid ""
|
411 |
"This cannot be reversed. Make sure that your database has been backed up "
|
412 |
"before proceeding"
|
@@ -414,47 +428,33 @@ msgstr ""
|
|
414 |
"Questa operazione non é reversibile. Effettua il backup del database prima "
|
415 |
"di procedere"
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
#, fuzzy
|
419 |
msgid "Reset Popular Posts"
|
420 |
msgstr "Gli articoli più popolari"
|
421 |
|
422 |
-
#: admin.inc.php:
|
423 |
msgid "Are you sure you want to reset the popular posts?"
|
424 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
|
425 |
|
426 |
-
#: admin.inc.php:
|
427 |
#, fuzzy
|
428 |
msgid "Reset Daily Popular Posts"
|
429 |
msgstr "Gli articoli più popolari di oggi"
|
430 |
|
431 |
-
#: admin.inc.php:
|
432 |
msgid "Are you sure you want to reset the daily popular posts?"
|
433 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid "Clear duplicates"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
441 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
-
#, fuzzy
|
445 |
-
msgid "Save Options"
|
446 |
-
msgstr "Opzioni:"
|
447 |
-
|
448 |
-
#: admin.inc.php:375
|
449 |
-
#, fuzzy
|
450 |
-
msgid "Default Options"
|
451 |
-
msgstr "Opzioni output:"
|
452 |
-
|
453 |
-
#: admin.inc.php:375
|
454 |
-
msgid "Do you want to set options to Default?"
|
455 |
-
msgstr "Desideri ripristinare alle predefinite?"
|
456 |
-
|
457 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
458 |
msgid "Popular Posts"
|
459 |
msgstr "Gli articoli più popolari"
|
460 |
|
@@ -496,7 +496,7 @@ msgstr "Altri plugin"
|
|
496 |
msgid "Ajay's blog"
|
497 |
msgstr "Il blog di Ajay"
|
498 |
|
499 |
-
#: admin.inc.php:457 top-10.php:
|
500 |
msgid "Support"
|
501 |
msgstr "Supporto"
|
502 |
|
@@ -562,90 +562,90 @@ msgstr "I più letti di oggi"
|
|
562 |
msgid "Total / Today's Views"
|
563 |
msgstr "Totale / Visualizzazioni odierne"
|
564 |
|
565 |
-
#: top-10.php:
|
566 |
msgid "Display the posts popular this week"
|
567 |
msgstr "Mostra articoli più popolari settimana in corso"
|
568 |
|
569 |
-
#: top-10.php:
|
570 |
msgid "Title"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: top-10.php:
|
574 |
msgid "No. of posts"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: top-10.php:
|
578 |
msgid "Overall"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: top-10.php:
|
582 |
msgid "Custom time period (Enter below)"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: top-10.php:
|
586 |
msgid "Range in number of days (applies only to custom option above)"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: top-10.php:
|
590 |
#, fuzzy
|
591 |
msgid "Thumbnail options"
|
592 |
msgstr "Opzioni miniature articolo:"
|
593 |
|
594 |
-
#: top-10.php:
|
595 |
#, fuzzy
|
596 |
msgid "Thumbnails inline, before title"
|
597 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
598 |
|
599 |
-
#: top-10.php:
|
600 |
#, fuzzy
|
601 |
msgid "Thumbnails inline, after title"
|
602 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
#, fuzzy
|
606 |
msgid "Only thumbnails, no text"
|
607 |
msgstr "Mostra le sole miniature, nessun testo"
|
608 |
|
609 |
-
#: top-10.php:
|
610 |
#, fuzzy
|
611 |
msgid "No thumbnails, only text."
|
612 |
msgstr "Non mostrare le miniature, solo testo."
|
613 |
|
614 |
-
#: top-10.php:
|
615 |
#, fuzzy
|
616 |
msgid " Show excerpt?"
|
617 |
msgstr "Desideri mostrare gli estratti?"
|
618 |
|
619 |
-
#: top-10.php:
|
620 |
msgid "<h3>Popular Posts</h3>"
|
621 |
msgstr "<h3>Articoli più letti</h3>"
|
622 |
|
623 |
-
#: top-10.php:
|
624 |
msgid "<h3>Daily Popular</h3>"
|
625 |
msgstr "<h3>I più letti di oggi</h3>"
|
626 |
|
627 |
-
#: top-10.php:
|
628 |
#, fuzzy
|
629 |
msgid "No top posts yet"
|
630 |
msgstr "Ripristino 10 articoli più popolari"
|
631 |
|
632 |
-
#: top-10.php:
|
633 |
msgid "Once Weekly"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: top-10.php:
|
637 |
msgid "Once Fortnightly"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: top-10.php:
|
641 |
msgid "Once Monthly"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: top-10.php:
|
645 |
msgid "Settings"
|
646 |
msgstr "Impostazioni"
|
647 |
|
648 |
-
#: top-10.php:
|
649 |
msgid "Donate"
|
650 |
msgstr "Donazione"
|
651 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
403 |
msgstr ""
|
404 |
|
405 |
#: admin.inc.php:362
|
406 |
+
#, fuzzy
|
407 |
+
msgid "Save Options"
|
408 |
+
msgstr "Opzioni:"
|
409 |
+
|
410 |
+
#: admin.inc.php:363
|
411 |
+
#, fuzzy
|
412 |
+
msgid "Default Options"
|
413 |
+
msgstr "Opzioni output:"
|
414 |
+
|
415 |
+
#: admin.inc.php:363
|
416 |
+
msgid "Do you want to set options to Default?"
|
417 |
+
msgstr "Desideri ripristinare alle predefinite?"
|
418 |
+
|
419 |
+
#: admin.inc.php:367
|
420 |
msgid "Reset count"
|
421 |
msgstr "Ripristino conteggio"
|
422 |
|
423 |
+
#: admin.inc.php:370
|
424 |
msgid ""
|
425 |
"This cannot be reversed. Make sure that your database has been backed up "
|
426 |
"before proceeding"
|
428 |
"Questa operazione non é reversibile. Effettua il backup del database prima "
|
429 |
"di procedere"
|
430 |
|
431 |
+
#: admin.inc.php:373
|
432 |
#, fuzzy
|
433 |
msgid "Reset Popular Posts"
|
434 |
msgstr "Gli articoli più popolari"
|
435 |
|
436 |
+
#: admin.inc.php:373
|
437 |
msgid "Are you sure you want to reset the popular posts?"
|
438 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari?"
|
439 |
|
440 |
+
#: admin.inc.php:374
|
441 |
#, fuzzy
|
442 |
msgid "Reset Daily Popular Posts"
|
443 |
msgstr "Gli articoli più popolari di oggi"
|
444 |
|
445 |
+
#: admin.inc.php:374
|
446 |
msgid "Are you sure you want to reset the daily popular posts?"
|
447 |
msgstr "Sei certo di volere ripristinare gli articoli più popolari del giorno?"
|
448 |
|
449 |
+
#: admin.inc.php:375
|
450 |
msgid "Clear duplicates"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin.inc.php:375
|
454 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
455 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
456 |
|
457 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
458 |
msgid "Popular Posts"
|
459 |
msgstr "Gli articoli più popolari"
|
460 |
|
496 |
msgid "Ajay's blog"
|
497 |
msgstr "Il blog di Ajay"
|
498 |
|
499 |
+
#: admin.inc.php:457 top-10.php:766
|
500 |
msgid "Support"
|
501 |
msgstr "Supporto"
|
502 |
|
562 |
msgid "Total / Today's Views"
|
563 |
msgstr "Totale / Visualizzazioni odierne"
|
564 |
|
565 |
+
#: top-10.php:328
|
566 |
msgid "Display the posts popular this week"
|
567 |
msgstr "Mostra articoli più popolari settimana in corso"
|
568 |
|
569 |
+
#: top-10.php:342
|
570 |
msgid "Title"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: top-10.php:347
|
574 |
msgid "No. of posts"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: top-10.php:352
|
578 |
msgid "Overall"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: top-10.php:353
|
582 |
msgid "Custom time period (Enter below)"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: top-10.php:358
|
586 |
msgid "Range in number of days (applies only to custom option above)"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: top-10.php:362
|
590 |
#, fuzzy
|
591 |
msgid "Thumbnail options"
|
592 |
msgstr "Opzioni miniature articolo:"
|
593 |
|
594 |
+
#: top-10.php:364
|
595 |
#, fuzzy
|
596 |
msgid "Thumbnails inline, before title"
|
597 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
598 |
|
599 |
+
#: top-10.php:365
|
600 |
#, fuzzy
|
601 |
msgid "Thumbnails inline, after title"
|
602 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
603 |
|
604 |
+
#: top-10.php:366
|
605 |
#, fuzzy
|
606 |
msgid "Only thumbnails, no text"
|
607 |
msgstr "Mostra le sole miniature, nessun testo"
|
608 |
|
609 |
+
#: top-10.php:367
|
610 |
#, fuzzy
|
611 |
msgid "No thumbnails, only text."
|
612 |
msgstr "Non mostrare le miniature, solo testo."
|
613 |
|
614 |
+
#: top-10.php:372
|
615 |
#, fuzzy
|
616 |
msgid " Show excerpt?"
|
617 |
msgstr "Desideri mostrare gli estratti?"
|
618 |
|
619 |
+
#: top-10.php:441
|
620 |
msgid "<h3>Popular Posts</h3>"
|
621 |
msgstr "<h3>Articoli più letti</h3>"
|
622 |
|
623 |
+
#: top-10.php:442
|
624 |
msgid "<h3>Daily Popular</h3>"
|
625 |
msgstr "<h3>I più letti di oggi</h3>"
|
626 |
|
627 |
+
#: top-10.php:443
|
628 |
#, fuzzy
|
629 |
msgid "No top posts yet"
|
630 |
msgstr "Ripristino 10 articoli più popolari"
|
631 |
|
632 |
+
#: top-10.php:731
|
633 |
msgid "Once Weekly"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: top-10.php:732
|
637 |
msgid "Once Fortnightly"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: top-10.php:733
|
641 |
msgid "Once Monthly"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: top-10.php:754
|
645 |
msgid "Settings"
|
646 |
msgstr "Impostazioni"
|
647 |
|
648 |
+
#: top-10.php:767
|
649 |
msgid "Donate"
|
650 |
msgstr "Donazione"
|
651 |
|
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"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
-
"X-Generator: Poedit 1.5.
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: admin.inc.php:71
|
@@ -393,10 +393,24 @@ msgid "Maintenance is turned off"
|
|
393 |
msgstr ""
|
394 |
|
395 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgid "Reset count"
|
397 |
msgstr "Reset telling"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
msgid ""
|
401 |
"This cannot be reversed. Make sure that your database has been backed up "
|
402 |
"before proceeding"
|
@@ -404,48 +418,34 @@ msgstr ""
|
|
404 |
"Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
|
405 |
"database gemaakt hebt voordat je verder gaat"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
#, fuzzy
|
409 |
msgid "Reset Popular Posts"
|
410 |
msgstr "Populaire Berichten"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Are you sure you want to reset the popular posts?"
|
414 |
msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
#, fuzzy
|
418 |
msgid "Reset Daily Popular Posts"
|
419 |
msgstr "Dagelijkse Populaire Berichten"
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Are you sure you want to reset the daily popular posts?"
|
423 |
msgstr ""
|
424 |
"Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
|
425 |
|
426 |
-
#: admin.inc.php:
|
427 |
msgid "Clear duplicates"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin.inc.php:
|
431 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
432 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
433 |
|
434 |
-
#: admin.inc.php:
|
435 |
-
#, fuzzy
|
436 |
-
msgid "Save Options"
|
437 |
-
msgstr "Opties:"
|
438 |
-
|
439 |
-
#: admin.inc.php:375
|
440 |
-
#, fuzzy
|
441 |
-
msgid "Default Options"
|
442 |
-
msgstr "Output Opties:"
|
443 |
-
|
444 |
-
#: admin.inc.php:375
|
445 |
-
msgid "Do you want to set options to Default?"
|
446 |
-
msgstr "Wil je de opties terugzetten naar standaard?"
|
447 |
-
|
448 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
449 |
msgid "Popular Posts"
|
450 |
msgstr "Populaire Berichten"
|
451 |
|
@@ -487,7 +487,7 @@ msgstr "Andere plugins"
|
|
487 |
msgid "Ajay's blog"
|
488 |
msgstr "De blog van Ajay"
|
489 |
|
490 |
-
#: admin.inc.php:457 top-10.php:
|
491 |
msgid "Support"
|
492 |
msgstr "Ondersteuning"
|
493 |
|
@@ -553,90 +553,90 @@ msgstr "Dagelijks Populair"
|
|
553 |
msgid "Total / Today's Views"
|
554 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
555 |
|
556 |
-
#: top-10.php:
|
557 |
msgid "Display the posts popular this week"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: top-10.php:
|
561 |
msgid "Title"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: top-10.php:
|
565 |
msgid "No. of posts"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: top-10.php:
|
569 |
msgid "Overall"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: top-10.php:
|
573 |
msgid "Custom time period (Enter below)"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: top-10.php:
|
577 |
msgid "Range in number of days (applies only to custom option above)"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: top-10.php:
|
581 |
#, fuzzy
|
582 |
msgid "Thumbnail options"
|
583 |
msgstr "Bericht miniatuurafbeelding opties:"
|
584 |
|
585 |
-
#: top-10.php:
|
586 |
#, fuzzy
|
587 |
msgid "Thumbnails inline, before title"
|
588 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
589 |
|
590 |
-
#: top-10.php:
|
591 |
#, fuzzy
|
592 |
msgid "Thumbnails inline, after title"
|
593 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
594 |
|
595 |
-
#: top-10.php:
|
596 |
#, fuzzy
|
597 |
msgid "Only thumbnails, no text"
|
598 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
599 |
|
600 |
-
#: top-10.php:
|
601 |
#, fuzzy
|
602 |
msgid "No thumbnails, only text."
|
603 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
604 |
|
605 |
-
#: top-10.php:
|
606 |
#, fuzzy
|
607 |
msgid " Show excerpt?"
|
608 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
609 |
|
610 |
-
#: top-10.php:
|
611 |
msgid "<h3>Popular Posts</h3>"
|
612 |
msgstr "<h3>Populaire Berichten</h3>"
|
613 |
|
614 |
-
#: top-10.php:
|
615 |
msgid "<h3>Daily Popular</h3>"
|
616 |
msgstr "<h3>Dagelijks Populair</h3>"
|
617 |
|
618 |
-
#: top-10.php:
|
619 |
#, fuzzy
|
620 |
msgid "No top posts yet"
|
621 |
msgstr "Reset Top 10 populaire berichten"
|
622 |
|
623 |
-
#: top-10.php:
|
624 |
msgid "Once Weekly"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: top-10.php:
|
628 |
msgid "Once Fortnightly"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: top-10.php:
|
632 |
msgid "Once Monthly"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: top-10.php:
|
636 |
msgid "Settings"
|
637 |
msgstr "Instellingen"
|
638 |
|
639 |
-
#: top-10.php:
|
640 |
msgid "Donate"
|
641 |
msgstr "Doneer"
|
642 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 v1.6.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-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"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Generator: Poedit 1.5.5\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: admin.inc.php:71
|
393 |
msgstr ""
|
394 |
|
395 |
#: admin.inc.php:362
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Save Options"
|
398 |
+
msgstr "Opties:"
|
399 |
+
|
400 |
+
#: admin.inc.php:363
|
401 |
+
#, fuzzy
|
402 |
+
msgid "Default Options"
|
403 |
+
msgstr "Output Opties:"
|
404 |
+
|
405 |
+
#: admin.inc.php:363
|
406 |
+
msgid "Do you want to set options to Default?"
|
407 |
+
msgstr "Wil je de opties terugzetten naar standaard?"
|
408 |
+
|
409 |
+
#: admin.inc.php:367
|
410 |
msgid "Reset count"
|
411 |
msgstr "Reset telling"
|
412 |
|
413 |
+
#: admin.inc.php:370
|
414 |
msgid ""
|
415 |
"This cannot be reversed. Make sure that your database has been backed up "
|
416 |
"before proceeding"
|
418 |
"Dit kan niet ongedaan worden gemaakt. Zorg ervoor dat je een backup van je "
|
419 |
"database gemaakt hebt voordat je verder gaat"
|
420 |
|
421 |
+
#: admin.inc.php:373
|
422 |
#, fuzzy
|
423 |
msgid "Reset Popular Posts"
|
424 |
msgstr "Populaire Berichten"
|
425 |
|
426 |
+
#: admin.inc.php:373
|
427 |
msgid "Are you sure you want to reset the popular posts?"
|
428 |
msgstr "Ben je er zeker van dat je de populaire berichten wilt resetten?"
|
429 |
|
430 |
+
#: admin.inc.php:374
|
431 |
#, fuzzy
|
432 |
msgid "Reset Daily Popular Posts"
|
433 |
msgstr "Dagelijkse Populaire Berichten"
|
434 |
|
435 |
+
#: admin.inc.php:374
|
436 |
msgid "Are you sure you want to reset the daily popular posts?"
|
437 |
msgstr ""
|
438 |
"Ben je er zeker van dat je de dagelijkse populaire berichten wilt resetten?"
|
439 |
|
440 |
+
#: admin.inc.php:375
|
441 |
msgid "Clear duplicates"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:375
|
445 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
446 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
447 |
|
448 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "Popular Posts"
|
450 |
msgstr "Populaire Berichten"
|
451 |
|
487 |
msgid "Ajay's blog"
|
488 |
msgstr "De blog van Ajay"
|
489 |
|
490 |
+
#: admin.inc.php:457 top-10.php:766
|
491 |
msgid "Support"
|
492 |
msgstr "Ondersteuning"
|
493 |
|
553 |
msgid "Total / Today's Views"
|
554 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
555 |
|
556 |
+
#: top-10.php:328
|
557 |
msgid "Display the posts popular this week"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: top-10.php:342
|
561 |
msgid "Title"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: top-10.php:347
|
565 |
msgid "No. of posts"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: top-10.php:352
|
569 |
msgid "Overall"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: top-10.php:353
|
573 |
msgid "Custom time period (Enter below)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: top-10.php:358
|
577 |
msgid "Range in number of days (applies only to custom option above)"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: top-10.php:362
|
581 |
#, fuzzy
|
582 |
msgid "Thumbnail options"
|
583 |
msgstr "Bericht miniatuurafbeelding opties:"
|
584 |
|
585 |
+
#: top-10.php:364
|
586 |
#, fuzzy
|
587 |
msgid "Thumbnails inline, before title"
|
588 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
589 |
|
590 |
+
#: top-10.php:365
|
591 |
#, fuzzy
|
592 |
msgid "Thumbnails inline, after title"
|
593 |
msgstr "Laat miniatuurafbeeldingen in lijn zien met berichten"
|
594 |
|
595 |
+
#: top-10.php:366
|
596 |
#, fuzzy
|
597 |
msgid "Only thumbnails, no text"
|
598 |
msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
|
599 |
|
600 |
+
#: top-10.php:367
|
601 |
#, fuzzy
|
602 |
msgid "No thumbnails, only text."
|
603 |
msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
|
604 |
|
605 |
+
#: top-10.php:372
|
606 |
#, fuzzy
|
607 |
msgid " Show excerpt?"
|
608 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
609 |
|
610 |
+
#: top-10.php:441
|
611 |
msgid "<h3>Popular Posts</h3>"
|
612 |
msgstr "<h3>Populaire Berichten</h3>"
|
613 |
|
614 |
+
#: top-10.php:442
|
615 |
msgid "<h3>Daily Popular</h3>"
|
616 |
msgstr "<h3>Dagelijks Populair</h3>"
|
617 |
|
618 |
+
#: top-10.php:443
|
619 |
#, fuzzy
|
620 |
msgid "No top posts yet"
|
621 |
msgstr "Reset Top 10 populaire berichten"
|
622 |
|
623 |
+
#: top-10.php:731
|
624 |
msgid "Once Weekly"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: top-10.php:732
|
628 |
msgid "Once Fortnightly"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: top-10.php:733
|
632 |
msgid "Once Monthly"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: top-10.php:754
|
636 |
msgid "Settings"
|
637 |
msgstr "Instellingen"
|
638 |
|
639 |
+
#: top-10.php:767
|
640 |
msgid "Donate"
|
641 |
msgstr "Doneer"
|
642 |
|
languages/tptn-ro_RO.mo
CHANGED
Binary file
|
languages/tptn-ro_RO.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: Web Geeks\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -388,10 +388,24 @@ msgid "Maintenance is turned off"
|
|
388 |
msgstr ""
|
389 |
|
390 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
msgid "Reset count"
|
392 |
msgstr "Reiniţializare count"
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid ""
|
396 |
"This cannot be reversed. Make sure that your database has been backed up "
|
397 |
"before proceeding"
|
@@ -399,47 +413,33 @@ msgstr ""
|
|
399 |
"Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
|
400 |
"înainte de a continua"
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
#, fuzzy
|
404 |
msgid "Reset Popular Posts"
|
405 |
msgstr "Posturi populare"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid "Are you sure you want to reset the popular posts?"
|
409 |
msgstr "Sigur reiniţializaţi posturi populare?"
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
#, fuzzy
|
413 |
msgid "Reset Daily Popular Posts"
|
414 |
msgstr "Posturi populare de zi cu zi"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Are you sure you want to reset the daily popular posts?"
|
418 |
msgstr "Sigur reiniţializaţi posturi populare zilnic?"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Clear duplicates"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
426 |
msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
-
#, fuzzy
|
430 |
-
msgid "Save Options"
|
431 |
-
msgstr "Opţiuni:"
|
432 |
-
|
433 |
-
#: admin.inc.php:375
|
434 |
-
#, fuzzy
|
435 |
-
msgid "Default Options"
|
436 |
-
msgstr "Opţiuni de ieşire:"
|
437 |
-
|
438 |
-
#: admin.inc.php:375
|
439 |
-
msgid "Do you want to set options to Default?"
|
440 |
-
msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
|
441 |
-
|
442 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
443 |
msgid "Popular Posts"
|
444 |
msgstr "Posturi populare"
|
445 |
|
@@ -481,7 +481,7 @@ msgstr "Alte plugin-uri"
|
|
481 |
msgid "Ajay's blog"
|
482 |
msgstr "Ajay's blog"
|
483 |
|
484 |
-
#: admin.inc.php:457 top-10.php:
|
485 |
msgid "Support"
|
486 |
msgstr "Suport"
|
487 |
|
@@ -547,90 +547,90 @@ msgstr "Daily populare"
|
|
547 |
msgid "Total / Today's Views"
|
548 |
msgstr "Total / astăzi lui vizitări"
|
549 |
|
550 |
-
#: top-10.php:
|
551 |
msgid "Display the posts popular this week"
|
552 |
msgstr "Afişa posturi populare în această săptămână"
|
553 |
|
554 |
-
#: top-10.php:
|
555 |
msgid "Title"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: top-10.php:
|
559 |
msgid "No. of posts"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: top-10.php:
|
563 |
msgid "Overall"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: top-10.php:
|
567 |
msgid "Custom time period (Enter below)"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: top-10.php:
|
571 |
msgid "Range in number of days (applies only to custom option above)"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: top-10.php:
|
575 |
#, fuzzy
|
576 |
msgid "Thumbnail options"
|
577 |
msgstr "Post Opţiuni pictograme:"
|
578 |
|
579 |
-
#: top-10.php:
|
580 |
#, fuzzy
|
581 |
msgid "Thumbnails inline, before title"
|
582 |
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
583 |
|
584 |
-
#: top-10.php:
|
585 |
#, fuzzy
|
586 |
msgid "Thumbnails inline, after title"
|
587 |
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
588 |
|
589 |
-
#: top-10.php:
|
590 |
#, fuzzy
|
591 |
msgid "Only thumbnails, no text"
|
592 |
msgstr "Afişa numai miniaturi, nici un text"
|
593 |
|
594 |
-
#: top-10.php:
|
595 |
#, fuzzy
|
596 |
msgid "No thumbnails, only text."
|
597 |
msgstr "Nu se afişează miniaturi, numai textul."
|
598 |
|
599 |
-
#: top-10.php:
|
600 |
#, fuzzy
|
601 |
msgid " Show excerpt?"
|
602 |
msgstr "Afişează post extras din lista?"
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
msgid "<h3>Popular Posts</h3>"
|
606 |
msgstr "<h3>Posturi populare</h3>"
|
607 |
|
608 |
-
#: top-10.php:
|
609 |
msgid "<h3>Daily Popular</h3>"
|
610 |
msgstr "<h3>Daily populare</h3>"
|
611 |
|
612 |
-
#: top-10.php:
|
613 |
#, fuzzy
|
614 |
msgid "No top posts yet"
|
615 |
msgstr "Top 10 populare posturi Resetare"
|
616 |
|
617 |
-
#: top-10.php:
|
618 |
msgid "Once Weekly"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: top-10.php:
|
622 |
msgid "Once Fortnightly"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: top-10.php:
|
626 |
msgid "Once Monthly"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: top-10.php:
|
630 |
msgid "Settings"
|
631 |
msgstr "Setări"
|
632 |
|
633 |
-
#: top-10.php:
|
634 |
msgid "Donate"
|
635 |
msgstr "Dona"
|
636 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:25-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Web Geeks\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
388 |
msgstr ""
|
389 |
|
390 |
#: admin.inc.php:362
|
391 |
+
#, fuzzy
|
392 |
+
msgid "Save Options"
|
393 |
+
msgstr "Opţiuni:"
|
394 |
+
|
395 |
+
#: admin.inc.php:363
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Default Options"
|
398 |
+
msgstr "Opţiuni de ieşire:"
|
399 |
+
|
400 |
+
#: admin.inc.php:363
|
401 |
+
msgid "Do you want to set options to Default?"
|
402 |
+
msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
|
403 |
+
|
404 |
+
#: admin.inc.php:367
|
405 |
msgid "Reset count"
|
406 |
msgstr "Reiniţializare count"
|
407 |
|
408 |
+
#: admin.inc.php:370
|
409 |
msgid ""
|
410 |
"This cannot be reversed. Make sure that your database has been backed up "
|
411 |
"before proceeding"
|
413 |
"Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit "
|
414 |
"înainte de a continua"
|
415 |
|
416 |
+
#: admin.inc.php:373
|
417 |
#, fuzzy
|
418 |
msgid "Reset Popular Posts"
|
419 |
msgstr "Posturi populare"
|
420 |
|
421 |
+
#: admin.inc.php:373
|
422 |
msgid "Are you sure you want to reset the popular posts?"
|
423 |
msgstr "Sigur reiniţializaţi posturi populare?"
|
424 |
|
425 |
+
#: admin.inc.php:374
|
426 |
#, fuzzy
|
427 |
msgid "Reset Daily Popular Posts"
|
428 |
msgstr "Posturi populare de zi cu zi"
|
429 |
|
430 |
+
#: admin.inc.php:374
|
431 |
msgid "Are you sure you want to reset the daily popular posts?"
|
432 |
msgstr "Sigur reiniţializaţi posturi populare zilnic?"
|
433 |
|
434 |
+
#: admin.inc.php:375
|
435 |
msgid "Clear duplicates"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin.inc.php:375
|
439 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
440 |
msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
|
441 |
|
442 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
msgid "Popular Posts"
|
444 |
msgstr "Posturi populare"
|
445 |
|
481 |
msgid "Ajay's blog"
|
482 |
msgstr "Ajay's blog"
|
483 |
|
484 |
+
#: admin.inc.php:457 top-10.php:766
|
485 |
msgid "Support"
|
486 |
msgstr "Suport"
|
487 |
|
547 |
msgid "Total / Today's Views"
|
548 |
msgstr "Total / astăzi lui vizitări"
|
549 |
|
550 |
+
#: top-10.php:328
|
551 |
msgid "Display the posts popular this week"
|
552 |
msgstr "Afişa posturi populare în această săptămână"
|
553 |
|
554 |
+
#: top-10.php:342
|
555 |
msgid "Title"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: top-10.php:347
|
559 |
msgid "No. of posts"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: top-10.php:352
|
563 |
msgid "Overall"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: top-10.php:353
|
567 |
msgid "Custom time period (Enter below)"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: top-10.php:358
|
571 |
msgid "Range in number of days (applies only to custom option above)"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: top-10.php:362
|
575 |
#, fuzzy
|
576 |
msgid "Thumbnail options"
|
577 |
msgstr "Post Opţiuni pictograme:"
|
578 |
|
579 |
+
#: top-10.php:364
|
580 |
#, fuzzy
|
581 |
msgid "Thumbnails inline, before title"
|
582 |
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
583 |
|
584 |
+
#: top-10.php:365
|
585 |
#, fuzzy
|
586 |
msgid "Thumbnails inline, after title"
|
587 |
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
588 |
|
589 |
+
#: top-10.php:366
|
590 |
#, fuzzy
|
591 |
msgid "Only thumbnails, no text"
|
592 |
msgstr "Afişa numai miniaturi, nici un text"
|
593 |
|
594 |
+
#: top-10.php:367
|
595 |
#, fuzzy
|
596 |
msgid "No thumbnails, only text."
|
597 |
msgstr "Nu se afişează miniaturi, numai textul."
|
598 |
|
599 |
+
#: top-10.php:372
|
600 |
#, fuzzy
|
601 |
msgid " Show excerpt?"
|
602 |
msgstr "Afişează post extras din lista?"
|
603 |
|
604 |
+
#: top-10.php:441
|
605 |
msgid "<h3>Popular Posts</h3>"
|
606 |
msgstr "<h3>Posturi populare</h3>"
|
607 |
|
608 |
+
#: top-10.php:442
|
609 |
msgid "<h3>Daily Popular</h3>"
|
610 |
msgstr "<h3>Daily populare</h3>"
|
611 |
|
612 |
+
#: top-10.php:443
|
613 |
#, fuzzy
|
614 |
msgid "No top posts yet"
|
615 |
msgstr "Top 10 populare posturi Resetare"
|
616 |
|
617 |
+
#: top-10.php:731
|
618 |
msgid "Once Weekly"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: top-10.php:732
|
622 |
msgid "Once Fortnightly"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: top-10.php:733
|
626 |
msgid "Once Monthly"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: top-10.php:754
|
630 |
msgid "Settings"
|
631 |
msgstr "Setări"
|
632 |
|
633 |
+
#: top-10.php:767
|
634 |
msgid "Donate"
|
635 |
msgstr "Dona"
|
636 |
|
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"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -393,10 +393,24 @@ msgid "Maintenance is turned off"
|
|
393 |
msgstr ""
|
394 |
|
395 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgid "Reset count"
|
397 |
msgstr "Сбросить статистику"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
msgid ""
|
401 |
"This cannot be reversed. Make sure that your database has been backed up "
|
402 |
"before proceeding"
|
@@ -404,49 +418,35 @@ msgstr ""
|
|
404 |
"Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
|
405 |
"убедитесь, что у вас есть копия вашей базы данных!"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
#, fuzzy
|
409 |
msgid "Reset Popular Posts"
|
410 |
msgstr "Популярные записи"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Are you sure you want to reset the popular posts?"
|
414 |
msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
#, fuzzy
|
418 |
msgid "Reset Daily Popular Posts"
|
419 |
msgstr "Популярные сегодня записи"
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Are you sure you want to reset the daily popular posts?"
|
423 |
msgstr ""
|
424 |
"Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
|
425 |
|
426 |
-
#: admin.inc.php:
|
427 |
msgid "Clear duplicates"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin.inc.php:
|
431 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
432 |
msgstr ""
|
433 |
"Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
-
#, fuzzy
|
437 |
-
msgid "Save Options"
|
438 |
-
msgstr "Настройки плагина:"
|
439 |
-
|
440 |
-
#: admin.inc.php:375
|
441 |
-
#, fuzzy
|
442 |
-
msgid "Default Options"
|
443 |
-
msgstr "Настройки плагина:"
|
444 |
-
|
445 |
-
#: admin.inc.php:375
|
446 |
-
msgid "Do you want to set options to Default?"
|
447 |
-
msgstr "Сбросить настройки плагина?"
|
448 |
-
|
449 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
450 |
msgid "Popular Posts"
|
451 |
msgstr "Популярные записи"
|
452 |
|
@@ -488,7 +488,7 @@ msgstr "Другие плагины автора"
|
|
488 |
msgid "Ajay's blog"
|
489 |
msgstr "Блог Ajay"
|
490 |
|
491 |
-
#: admin.inc.php:457 top-10.php:
|
492 |
msgid "Support"
|
493 |
msgstr "Поддержка (англ.)"
|
494 |
|
@@ -554,90 +554,90 @@ msgstr "Популярные сегодня записи"
|
|
554 |
msgid "Total / Today's Views"
|
555 |
msgstr "Всего/Сегодня"
|
556 |
|
557 |
-
#: top-10.php:
|
558 |
msgid "Display the posts popular this week"
|
559 |
msgstr "Отображать списки популярных записей за неделю"
|
560 |
|
561 |
-
#: top-10.php:
|
562 |
msgid "Title"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: top-10.php:
|
566 |
msgid "No. of posts"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: top-10.php:
|
570 |
msgid "Overall"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: top-10.php:
|
574 |
msgid "Custom time period (Enter below)"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: top-10.php:
|
578 |
msgid "Range in number of days (applies only to custom option above)"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: top-10.php:
|
582 |
#, fuzzy
|
583 |
msgid "Thumbnail options"
|
584 |
msgstr "Настройки превью к записям:"
|
585 |
|
586 |
-
#: top-10.php:
|
587 |
#, fuzzy
|
588 |
msgid "Thumbnails inline, before title"
|
589 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
590 |
|
591 |
-
#: top-10.php:
|
592 |
#, fuzzy
|
593 |
msgid "Thumbnails inline, after title"
|
594 |
msgstr "Отображать превью к записи сразу после заголовка"
|
595 |
|
596 |
-
#: top-10.php:
|
597 |
#, fuzzy
|
598 |
msgid "Only thumbnails, no text"
|
599 |
msgstr "Отображать только превью, без текста"
|
600 |
|
601 |
-
#: top-10.php:
|
602 |
#, fuzzy
|
603 |
msgid "No thumbnails, only text."
|
604 |
msgstr "Отображать только текст, без превью"
|
605 |
|
606 |
-
#: top-10.php:
|
607 |
#, fuzzy
|
608 |
msgid " Show excerpt?"
|
609 |
msgstr "Показывать текст записи в списке?"
|
610 |
|
611 |
-
#: top-10.php:
|
612 |
msgid "<h3>Popular Posts</h3>"
|
613 |
msgstr "<h3>Популярные записи</h3>"
|
614 |
|
615 |
-
#: top-10.php:
|
616 |
msgid "<h3>Daily Popular</h3>"
|
617 |
msgstr "<h3>Популярные сегодня записи</h3>"
|
618 |
|
619 |
-
#: top-10.php:
|
620 |
#, fuzzy
|
621 |
msgid "No top posts yet"
|
622 |
msgstr "Сбросить статистику популярных записей"
|
623 |
|
624 |
-
#: top-10.php:
|
625 |
msgid "Once Weekly"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: top-10.php:
|
629 |
msgid "Once Fortnightly"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: top-10.php:
|
633 |
msgid "Once Monthly"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: top-10.php:
|
637 |
msgid "Settings"
|
638 |
msgstr "Настроки плагина"
|
639 |
|
640 |
-
#: top-10.php:
|
641 |
msgid "Donate"
|
642 |
msgstr "Сделать пожертвование"
|
643 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:26-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"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
393 |
msgstr ""
|
394 |
|
395 |
#: admin.inc.php:362
|
396 |
+
#, fuzzy
|
397 |
+
msgid "Save Options"
|
398 |
+
msgstr "Настройки плагина:"
|
399 |
+
|
400 |
+
#: admin.inc.php:363
|
401 |
+
#, fuzzy
|
402 |
+
msgid "Default Options"
|
403 |
+
msgstr "Настройки плагина:"
|
404 |
+
|
405 |
+
#: admin.inc.php:363
|
406 |
+
msgid "Do you want to set options to Default?"
|
407 |
+
msgstr "Сбросить настройки плагина?"
|
408 |
+
|
409 |
+
#: admin.inc.php:367
|
410 |
msgid "Reset count"
|
411 |
msgstr "Сбросить статистику"
|
412 |
|
413 |
+
#: admin.inc.php:370
|
414 |
msgid ""
|
415 |
"This cannot be reversed. Make sure that your database has been backed up "
|
416 |
"before proceeding"
|
418 |
"Сброс статистики не может быть обращен. Перед тем, как сбрасывать все, "
|
419 |
"убедитесь, что у вас есть копия вашей базы данных!"
|
420 |
|
421 |
+
#: admin.inc.php:373
|
422 |
#, fuzzy
|
423 |
msgid "Reset Popular Posts"
|
424 |
msgstr "Популярные записи"
|
425 |
|
426 |
+
#: admin.inc.php:373
|
427 |
msgid "Are you sure you want to reset the popular posts?"
|
428 |
msgstr "Вы уверены, что хотите сбросить статистику для Популярных записей?"
|
429 |
|
430 |
+
#: admin.inc.php:374
|
431 |
#, fuzzy
|
432 |
msgid "Reset Daily Popular Posts"
|
433 |
msgstr "Популярные сегодня записи"
|
434 |
|
435 |
+
#: admin.inc.php:374
|
436 |
msgid "Are you sure you want to reset the daily popular posts?"
|
437 |
msgstr ""
|
438 |
"Вы уверены, что хотите сбросить статистику для Популярных сегодня записей?"
|
439 |
|
440 |
+
#: admin.inc.php:375
|
441 |
msgid "Clear duplicates"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:375
|
445 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
446 |
msgstr ""
|
447 |
"Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
448 |
|
449 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
msgid "Popular Posts"
|
451 |
msgstr "Популярные записи"
|
452 |
|
488 |
msgid "Ajay's blog"
|
489 |
msgstr "Блог Ajay"
|
490 |
|
491 |
+
#: admin.inc.php:457 top-10.php:766
|
492 |
msgid "Support"
|
493 |
msgstr "Поддержка (англ.)"
|
494 |
|
554 |
msgid "Total / Today's Views"
|
555 |
msgstr "Всего/Сегодня"
|
556 |
|
557 |
+
#: top-10.php:328
|
558 |
msgid "Display the posts popular this week"
|
559 |
msgstr "Отображать списки популярных записей за неделю"
|
560 |
|
561 |
+
#: top-10.php:342
|
562 |
msgid "Title"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: top-10.php:347
|
566 |
msgid "No. of posts"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: top-10.php:352
|
570 |
msgid "Overall"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: top-10.php:353
|
574 |
msgid "Custom time period (Enter below)"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: top-10.php:358
|
578 |
msgid "Range in number of days (applies only to custom option above)"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: top-10.php:362
|
582 |
#, fuzzy
|
583 |
msgid "Thumbnail options"
|
584 |
msgstr "Настройки превью к записям:"
|
585 |
|
586 |
+
#: top-10.php:364
|
587 |
#, fuzzy
|
588 |
msgid "Thumbnails inline, before title"
|
589 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
590 |
|
591 |
+
#: top-10.php:365
|
592 |
#, fuzzy
|
593 |
msgid "Thumbnails inline, after title"
|
594 |
msgstr "Отображать превью к записи сразу после заголовка"
|
595 |
|
596 |
+
#: top-10.php:366
|
597 |
#, fuzzy
|
598 |
msgid "Only thumbnails, no text"
|
599 |
msgstr "Отображать только превью, без текста"
|
600 |
|
601 |
+
#: top-10.php:367
|
602 |
#, fuzzy
|
603 |
msgid "No thumbnails, only text."
|
604 |
msgstr "Отображать только текст, без превью"
|
605 |
|
606 |
+
#: top-10.php:372
|
607 |
#, fuzzy
|
608 |
msgid " Show excerpt?"
|
609 |
msgstr "Показывать текст записи в списке?"
|
610 |
|
611 |
+
#: top-10.php:441
|
612 |
msgid "<h3>Popular Posts</h3>"
|
613 |
msgstr "<h3>Популярные записи</h3>"
|
614 |
|
615 |
+
#: top-10.php:442
|
616 |
msgid "<h3>Daily Popular</h3>"
|
617 |
msgstr "<h3>Популярные сегодня записи</h3>"
|
618 |
|
619 |
+
#: top-10.php:443
|
620 |
#, fuzzy
|
621 |
msgid "No top posts yet"
|
622 |
msgstr "Сбросить статистику популярных записей"
|
623 |
|
624 |
+
#: top-10.php:731
|
625 |
msgid "Once Weekly"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: top-10.php:732
|
629 |
msgid "Once Fortnightly"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: top-10.php:733
|
633 |
msgid "Once Monthly"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: top-10.php:754
|
637 |
msgid "Settings"
|
638 |
msgstr "Настроки плагина"
|
639 |
|
640 |
+
#: top-10.php:767
|
641 |
msgid "Donate"
|
642 |
msgstr "Сделать пожертвование"
|
643 |
|
languages/tptn-ua_UA.mo
CHANGED
Binary file
|
languages/tptn-ua_UA.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
@@ -392,10 +392,24 @@ msgid "Maintenance is turned off"
|
|
392 |
msgstr ""
|
393 |
|
394 |
#: admin.inc.php:362
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "Reset count"
|
396 |
msgstr "Скинути статистику"
|
397 |
|
398 |
-
#: admin.inc.php:
|
399 |
msgid ""
|
400 |
"This cannot be reversed. Make sure that your database has been backed up "
|
401 |
"before proceeding"
|
@@ -403,48 +417,34 @@ msgstr ""
|
|
403 |
"Скидання статистики не може бути обернена. Перед тим, як скидати все, "
|
404 |
"переконайтесь, що у вас є копія вашої бази даних!"
|
405 |
|
406 |
-
#: admin.inc.php:
|
407 |
#, fuzzy
|
408 |
msgid "Reset Popular Posts"
|
409 |
msgstr "Популярні записи"
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid "Are you sure you want to reset the popular posts?"
|
413 |
msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
|
414 |
|
415 |
-
#: admin.inc.php:
|
416 |
#, fuzzy
|
417 |
msgid "Reset Daily Popular Posts"
|
418 |
msgstr "Популярні сьогодні записи"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Are you sure you want to reset the daily popular posts?"
|
422 |
msgstr ""
|
423 |
"Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Clear duplicates"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
431 |
msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
-
#, fuzzy
|
435 |
-
msgid "Save Options"
|
436 |
-
msgstr "Установки плагіна:"
|
437 |
-
|
438 |
-
#: admin.inc.php:375
|
439 |
-
#, fuzzy
|
440 |
-
msgid "Default Options"
|
441 |
-
msgstr "Установки плагіна:"
|
442 |
-
|
443 |
-
#: admin.inc.php:375
|
444 |
-
msgid "Do you want to set options to Default?"
|
445 |
-
msgstr "Скинути налаштування плагіна?"
|
446 |
-
|
447 |
-
#: admin.inc.php:406 admin.inc.php:697 top-10.php:319
|
448 |
msgid "Popular Posts"
|
449 |
msgstr "Популярні записи"
|
450 |
|
@@ -486,7 +486,7 @@ msgstr "Інші плагіни автора"
|
|
486 |
msgid "Ajay's blog"
|
487 |
msgstr "Блог Ajay"
|
488 |
|
489 |
-
#: admin.inc.php:457 top-10.php:
|
490 |
msgid "Support"
|
491 |
msgstr "Підтримка (англ.)"
|
492 |
|
@@ -552,90 +552,90 @@ msgstr "Популярні сьогодні записи"
|
|
552 |
msgid "Total / Today's Views"
|
553 |
msgstr "Всього/Сьогодні"
|
554 |
|
555 |
-
#: top-10.php:
|
556 |
msgid "Display the posts popular this week"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: top-10.php:
|
560 |
msgid "Title"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: top-10.php:
|
564 |
msgid "No. of posts"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: top-10.php:
|
568 |
msgid "Overall"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: top-10.php:
|
572 |
msgid "Custom time period (Enter below)"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: top-10.php:
|
576 |
msgid "Range in number of days (applies only to custom option above)"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: top-10.php:
|
580 |
#, fuzzy
|
581 |
msgid "Thumbnail options"
|
582 |
msgstr "Установки превью до записів:"
|
583 |
|
584 |
-
#: top-10.php:
|
585 |
#, fuzzy
|
586 |
msgid "Thumbnails inline, before title"
|
587 |
msgstr "Відображати і превью, і текст"
|
588 |
|
589 |
-
#: top-10.php:
|
590 |
#, fuzzy
|
591 |
msgid "Thumbnails inline, after title"
|
592 |
msgstr "Відображати і превью, і текст"
|
593 |
|
594 |
-
#: top-10.php:
|
595 |
#, fuzzy
|
596 |
msgid "Only thumbnails, no text"
|
597 |
msgstr "Показувати тільки превью, без тексту"
|
598 |
|
599 |
-
#: top-10.php:
|
600 |
#, fuzzy
|
601 |
msgid "No thumbnails, only text."
|
602 |
msgstr "Показувати лише текст, без превью"
|
603 |
|
604 |
-
#: top-10.php:
|
605 |
#, fuzzy
|
606 |
msgid " Show excerpt?"
|
607 |
msgstr "Показувати текст запису в списку?"
|
608 |
|
609 |
-
#: top-10.php:
|
610 |
msgid "<h3>Popular Posts</h3>"
|
611 |
msgstr "<h3>Популярні записи</h3>"
|
612 |
|
613 |
-
#: top-10.php:
|
614 |
msgid "<h3>Daily Popular</h3>"
|
615 |
msgstr "<h3>Популярні сьогодні записи</h3>"
|
616 |
|
617 |
-
#: top-10.php:
|
618 |
#, fuzzy
|
619 |
msgid "No top posts yet"
|
620 |
msgstr "Скинути статистику найпопулярніших записів"
|
621 |
|
622 |
-
#: top-10.php:
|
623 |
msgid "Once Weekly"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: top-10.php:
|
627 |
msgid "Once Fortnightly"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: top-10.php:
|
631 |
msgid "Once Monthly"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: top-10.php:
|
635 |
msgid "Settings"
|
636 |
msgstr "Налаштування плагіна"
|
637 |
|
638 |
-
#: top-10.php:
|
639 |
msgid "Donate"
|
640 |
msgstr "Зробити внесок"
|
641 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-28 23:26-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:71
|
392 |
msgstr ""
|
393 |
|
394 |
#: admin.inc.php:362
|
395 |
+
#, fuzzy
|
396 |
+
msgid "Save Options"
|
397 |
+
msgstr "Установки плагіна:"
|
398 |
+
|
399 |
+
#: admin.inc.php:363
|
400 |
+
#, fuzzy
|
401 |
+
msgid "Default Options"
|
402 |
+
msgstr "Установки плагіна:"
|
403 |
+
|
404 |
+
#: admin.inc.php:363
|
405 |
+
msgid "Do you want to set options to Default?"
|
406 |
+
msgstr "Скинути налаштування плагіна?"
|
407 |
+
|
408 |
+
#: admin.inc.php:367
|
409 |
msgid "Reset count"
|
410 |
msgstr "Скинути статистику"
|
411 |
|
412 |
+
#: admin.inc.php:370
|
413 |
msgid ""
|
414 |
"This cannot be reversed. Make sure that your database has been backed up "
|
415 |
"before proceeding"
|
417 |
"Скидання статистики не може бути обернена. Перед тим, як скидати все, "
|
418 |
"переконайтесь, що у вас є копія вашої бази даних!"
|
419 |
|
420 |
+
#: admin.inc.php:373
|
421 |
#, fuzzy
|
422 |
msgid "Reset Popular Posts"
|
423 |
msgstr "Популярні записи"
|
424 |
|
425 |
+
#: admin.inc.php:373
|
426 |
msgid "Are you sure you want to reset the popular posts?"
|
427 |
msgstr "Ви впевнені, що хочете скинути статистику для Популярних записів?"
|
428 |
|
429 |
+
#: admin.inc.php:374
|
430 |
#, fuzzy
|
431 |
msgid "Reset Daily Popular Posts"
|
432 |
msgstr "Популярні сьогодні записи"
|
433 |
|
434 |
+
#: admin.inc.php:374
|
435 |
msgid "Are you sure you want to reset the daily popular posts?"
|
436 |
msgstr ""
|
437 |
"Ви впевнені, що хочете скинути статистику для Популярних сьогодні записів?"
|
438 |
|
439 |
+
#: admin.inc.php:375
|
440 |
msgid "Clear duplicates"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin.inc.php:375
|
444 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
445 |
msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
|
446 |
|
447 |
+
#: admin.inc.php:406 admin.inc.php:697 top-10.php:329
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "Popular Posts"
|
449 |
msgstr "Популярні записи"
|
450 |
|
486 |
msgid "Ajay's blog"
|
487 |
msgstr "Блог Ajay"
|
488 |
|
489 |
+
#: admin.inc.php:457 top-10.php:766
|
490 |
msgid "Support"
|
491 |
msgstr "Підтримка (англ.)"
|
492 |
|
552 |
msgid "Total / Today's Views"
|
553 |
msgstr "Всього/Сьогодні"
|
554 |
|
555 |
+
#: top-10.php:328
|
556 |
msgid "Display the posts popular this week"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: top-10.php:342
|
560 |
msgid "Title"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: top-10.php:347
|
564 |
msgid "No. of posts"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: top-10.php:352
|
568 |
msgid "Overall"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: top-10.php:353
|
572 |
msgid "Custom time period (Enter below)"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: top-10.php:358
|
576 |
msgid "Range in number of days (applies only to custom option above)"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: top-10.php:362
|
580 |
#, fuzzy
|
581 |
msgid "Thumbnail options"
|
582 |
msgstr "Установки превью до записів:"
|
583 |
|
584 |
+
#: top-10.php:364
|
585 |
#, fuzzy
|
586 |
msgid "Thumbnails inline, before title"
|
587 |
msgstr "Відображати і превью, і текст"
|
588 |
|
589 |
+
#: top-10.php:365
|
590 |
#, fuzzy
|
591 |
msgid "Thumbnails inline, after title"
|
592 |
msgstr "Відображати і превью, і текст"
|
593 |
|
594 |
+
#: top-10.php:366
|
595 |
#, fuzzy
|
596 |
msgid "Only thumbnails, no text"
|
597 |
msgstr "Показувати тільки превью, без тексту"
|
598 |
|
599 |
+
#: top-10.php:367
|
600 |
#, fuzzy
|
601 |
msgid "No thumbnails, only text."
|
602 |
msgstr "Показувати лише текст, без превью"
|
603 |
|
604 |
+
#: top-10.php:372
|
605 |
#, fuzzy
|
606 |
msgid " Show excerpt?"
|
607 |
msgstr "Показувати текст запису в списку?"
|
608 |
|
609 |
+
#: top-10.php:441
|
610 |
msgid "<h3>Popular Posts</h3>"
|
611 |
msgstr "<h3>Популярні записи</h3>"
|
612 |
|
613 |
+
#: top-10.php:442
|
614 |
msgid "<h3>Daily Popular</h3>"
|
615 |
msgstr "<h3>Популярні сьогодні записи</h3>"
|
616 |
|
617 |
+
#: top-10.php:443
|
618 |
#, fuzzy
|
619 |
msgid "No top posts yet"
|
620 |
msgstr "Скинути статистику найпопулярніших записів"
|
621 |
|
622 |
+
#: top-10.php:731
|
623 |
msgid "Once Weekly"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: top-10.php:732
|
627 |
msgid "Once Fortnightly"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: top-10.php:733
|
631 |
msgid "Once Monthly"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: top-10.php:754
|
635 |
msgid "Settings"
|
636 |
msgstr "Налаштування плагіна"
|
637 |
|
638 |
+
#: top-10.php:767
|
639 |
msgid "Donate"
|
640 |
msgstr "Зробити внесок"
|
641 |
|
readme.txt
CHANGED
@@ -45,11 +45,17 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
-
= 1.9.
|
49 |
-
*
|
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
|
|
|
|
|
|
|
|
|
|
53 |
= 1.9.2 =
|
54 |
* Added: Top 10 now has its own menu in the administration area. Access settings and view your top posts directly under the new menu: "Top 10"
|
55 |
* Added: New classes **tptn_counter** and **tptn_list_count** to style the displayed count
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
+
= 1.9.3 =
|
49 |
+
* IMPORTANT security update: Fixed possible XSS vulnerability; bug fixes
|
50 |
+
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.9.3 =
|
55 |
+
* Important security update: Fixed possible XSS vulnerability
|
56 |
+
* Fixed: Exclude categories was not excluding posts correctly
|
57 |
+
* Added: Classes `tptn_posts` and `tptn_posts_daily` for the widgets that let you easily style the lists
|
58 |
+
|
59 |
= 1.9.2 =
|
60 |
* Added: Top 10 now has its own menu in the administration area. Access settings and view your top posts directly under the new menu: "Top 10"
|
61 |
* Added: New classes **tptn_counter** and **tptn_list_count** to style the displayed count
|
top-10.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
-
Version: 1.9.
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
|
6 |
Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
|
7 |
Author: Ajay D'Souza
|
@@ -52,6 +52,10 @@ add_action('init', 'ald_tptn_init');
|
|
52 |
/*********************************************************************
|
53 |
* Main Functions *
|
54 |
********************************************************************/
|
|
|
|
|
|
|
|
|
55 |
// Update post views
|
56 |
add_filter('the_content','tptn_add_viewed_count');
|
57 |
function tptn_add_viewed_count($content) {
|
@@ -60,7 +64,7 @@ function tptn_add_viewed_count($content) {
|
|
60 |
|
61 |
if((is_single() || is_page())) {
|
62 |
|
63 |
-
$tptn_settings
|
64 |
|
65 |
$current_user = wp_get_current_user();
|
66 |
$post_author = ( $current_user->ID == $post->post_author ? true : false );
|
@@ -86,7 +90,7 @@ function tptn_add_viewed_count($content) {
|
|
86 |
// Function to add count to content
|
87 |
function tptn_pc_content($content) {
|
88 |
global $single, $post,$tptn_url,$tptn_path;
|
89 |
-
$tptn_settings
|
90 |
$id = intval($post->ID);
|
91 |
|
92 |
if((is_single())&&($tptn_settings['add_to_content'])) {
|
@@ -102,7 +106,7 @@ add_filter('the_content', 'tptn_pc_content');
|
|
102 |
// Function to manually display count
|
103 |
function echo_tptn_post_count($echo=1) {
|
104 |
global $post,$tptn_url,$tptn_path;
|
105 |
-
$tptn_settings
|
106 |
$id = intval($post->ID);
|
107 |
|
108 |
$nonce_action = 'tptn-nonce-'.$id;
|
@@ -127,7 +131,7 @@ function get_tptn_post_count($id) {
|
|
127 |
|
128 |
$table_name = $wpdb->prefix . "top_ten";
|
129 |
$table_name_daily = $wpdb->prefix . "top_ten_daily";
|
130 |
-
$tptn_settings
|
131 |
$count_disp_form = stripslashes($tptn_settings['count_disp_form']);
|
132 |
|
133 |
if($id > 0) {
|
@@ -191,7 +195,7 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
|
|
191 |
global $wpdb, $siteurl, $tableposts, $id;
|
192 |
if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
|
193 |
else $table_name = $wpdb->prefix . "top_ten";
|
194 |
-
$tptn_settings
|
195 |
$limit = empty($limit) ? $tptn_settings['limit']*5 : $limit*5;
|
196 |
$show_excerpt = empty($show_excerpt) ? $tptn_settings['show_excerpt'] : $show_excerpt;
|
197 |
$post_thumb_op = empty($post_thumb_op) ? $tptn_settings['post_thumb_op'] : $post_thumb_op;
|
@@ -229,6 +233,12 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
|
|
229 |
} else {
|
230 |
$output .= '<div id="tptn_related_daily">'.$tptn_settings['title_daily'];
|
231 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
}
|
233 |
|
234 |
if ($results) {
|
@@ -268,7 +278,7 @@ function get_tptn_pop_posts( $daily = false , $widget = false, $limit = '10', $s
|
|
268 |
}
|
269 |
if ($counter == $limit/5) break; // End loop when related posts limit is reached
|
270 |
}
|
271 |
-
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'];
|
272 |
$output .= $tptn_settings['after_list'];
|
273 |
} else {
|
274 |
$output .= ($tptn_settings['blank_output']) ? '' : $tptn_settings['blank_output_text'];
|
@@ -286,7 +296,7 @@ function tptn_show_pop_posts() {
|
|
286 |
// Function to show daily popular posts
|
287 |
function tptn_show_daily_pop_posts() {
|
288 |
global $tptn_url;
|
289 |
-
$tptn_settings
|
290 |
if ($tptn_settings['d_use_js']) {
|
291 |
echo '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
|
292 |
} else {
|
@@ -299,7 +309,7 @@ add_action('wp_head','tptn_header');
|
|
299 |
function tptn_header() {
|
300 |
global $wpdb, $post, $single;
|
301 |
|
302 |
-
$tptn_settings
|
303 |
$tptn_custom_CSS = stripslashes($tptn_settings['custom_CSS']);
|
304 |
|
305 |
// Add CSS to header
|
@@ -379,7 +389,7 @@ class WidgetTopTen extends WP_Widget
|
|
379 |
|
380 |
extract($args, EXTR_SKIP);
|
381 |
|
382 |
-
$tptn_settings
|
383 |
|
384 |
$title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings['title']) : $instance['title']);
|
385 |
$limit = $instance['limit'];
|
@@ -640,7 +650,7 @@ function tptn_get_the_post_thumbnail($args = array()) {
|
|
640 |
if (!$postimage && $scan_images) {
|
641 |
preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
|
642 |
// any image there?
|
643 |
-
if (isset($matches) && $matches[1][0]) {
|
644 |
if (((strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false))|| ((strpos($matches[1][0], 'http://') === false))) {
|
645 |
$postimage = $matches[1][0]; // we need the first one only!
|
646 |
}
|
@@ -753,7 +763,6 @@ if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
|
|
753 |
|
754 |
// create link
|
755 |
if ($file == $plugin) {
|
756 |
-
// $links[] = '<a href="' . admin_url( 'options-general.php?page=tptn_options' ) . '">' . __('Settings', TPTN_LOCAL_NAME ) . '</a>';
|
757 |
$links[] = '<a href="http://ajaydsouza.com/support/">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
|
758 |
$links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
|
759 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
+
Version: 1.9.3
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
|
6 |
Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
|
7 |
Author: Ajay D'Souza
|
52 |
/*********************************************************************
|
53 |
* Main Functions *
|
54 |
********************************************************************/
|
55 |
+
global $tptn_settings;
|
56 |
+
$tptn_settings = tptn_read_options();
|
57 |
+
|
58 |
+
|
59 |
// Update post views
|
60 |
add_filter('the_content','tptn_add_viewed_count');
|
61 |
function tptn_add_viewed_count($content) {
|
64 |
|
65 |
if((is_single() || is_page())) {
|
66 |
|
67 |
+
global $tptn_settings;
|
68 |
|
69 |
$current_user = wp_get_current_user();
|
70 |
$post_author = ( $current_user->ID == $post->post_author ? true : false );
|
90 |
// Function to add count to content
|
91 |
function tptn_pc_content($content) {
|
92 |
global $single, $post,$tptn_url,$tptn_path;
|
93 |
+
global $tptn_settings;
|
94 |
$id = intval($post->ID);
|
95 |
|
96 |
if((is_single())&&($tptn_settings['add_to_content'])) {
|
106 |
// Function to manually display count
|
107 |
function echo_tptn_post_count($echo=1) {
|
108 |
global $post,$tptn_url,$tptn_path;
|
109 |
+
global $tptn_settings;
|
110 |
$id = intval($post->ID);
|
111 |
|
112 |
$nonce_action = 'tptn-nonce-'.$id;
|
131 |
|
132 |
$table_name = $wpdb->prefix . "top_ten";
|
133 |
$table_name_daily = $wpdb->prefix . "top_ten_daily";
|
134 |
+
global $tptn_settings;
|
135 |
$count_disp_form = stripslashes($tptn_settings['count_disp_form']);
|
136 |
|
137 |
if($id > 0) {
|
195 |
global $wpdb, $siteurl, $tableposts, $id;
|
196 |
if ($daily) $table_name = $wpdb->prefix . "top_ten_daily";
|
197 |
else $table_name = $wpdb->prefix . "top_ten";
|
198 |
+
global $tptn_settings;
|
199 |
$limit = empty($limit) ? $tptn_settings['limit']*5 : $limit*5;
|
200 |
$show_excerpt = empty($show_excerpt) ? $tptn_settings['show_excerpt'] : $show_excerpt;
|
201 |
$post_thumb_op = empty($post_thumb_op) ? $tptn_settings['post_thumb_op'] : $post_thumb_op;
|
233 |
} else {
|
234 |
$output .= '<div id="tptn_related_daily">'.$tptn_settings['title_daily'];
|
235 |
}
|
236 |
+
} else {
|
237 |
+
if (!$daily) {
|
238 |
+
$output .= '<div class="tptn_posts">'.$tptn_settings['title'];
|
239 |
+
} else {
|
240 |
+
$output .= '<div class="tptn_posts_daily">'.$tptn_settings['title_daily'];
|
241 |
+
}
|
242 |
}
|
243 |
|
244 |
if ($results) {
|
278 |
}
|
279 |
if ($counter == $limit/5) break; // End loop when related posts limit is reached
|
280 |
}
|
281 |
+
if ($tptn_settings['show_credit']) $output .= $tptn_settings['before_list_item'].'Popular posts by <a href="http://ajaydsouza.com/wordpress/plugins/top-10/" rel="nofollow">Top 10 plugin</a>'.$tptn_settings['after_list_item'];
|
282 |
$output .= $tptn_settings['after_list'];
|
283 |
} else {
|
284 |
$output .= ($tptn_settings['blank_output']) ? '' : $tptn_settings['blank_output_text'];
|
296 |
// Function to show daily popular posts
|
297 |
function tptn_show_daily_pop_posts() {
|
298 |
global $tptn_url;
|
299 |
+
global $tptn_settings;
|
300 |
if ($tptn_settings['d_use_js']) {
|
301 |
echo '<script type="text/javascript" src="'.$tptn_url.'/top-10-daily.js.php?widget=1"></script>';
|
302 |
} else {
|
309 |
function tptn_header() {
|
310 |
global $wpdb, $post, $single;
|
311 |
|
312 |
+
global $tptn_settings;
|
313 |
$tptn_custom_CSS = stripslashes($tptn_settings['custom_CSS']);
|
314 |
|
315 |
// Add CSS to header
|
389 |
|
390 |
extract($args, EXTR_SKIP);
|
391 |
|
392 |
+
global $tptn_settings;
|
393 |
|
394 |
$title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($tptn_settings['title']) : $instance['title']);
|
395 |
$limit = $instance['limit'];
|
650 |
if (!$postimage && $scan_images) {
|
651 |
preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
|
652 |
// any image there?
|
653 |
+
if (isset($matches[1][0]) && $matches[1][0]) {
|
654 |
if (((strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false))|| ((strpos($matches[1][0], 'http://') === false))) {
|
655 |
$postimage = $matches[1][0]; // we need the first one only!
|
656 |
}
|
763 |
|
764 |
// create link
|
765 |
if ($file == $plugin) {
|
|
|
766 |
$links[] = '<a href="http://ajaydsouza.com/support/">' . __('Support', TPTN_LOCAL_NAME ) . '</a>';
|
767 |
$links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', TPTN_LOCAL_NAME ) . '</a>';
|
768 |
}
|