Version Description
- Fixed: Dashboard widgets linking
=
Download this release
Release Info
Developer | Ajay |
Plugin | Top 10 – Popular posts plugin for WordPress |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8 to 1.8.1
- admin.inc.php +54 -11
- languages/top-10-ro_RO.mo +0 -0
- languages/top-10-ro_RO.po +345 -0
- languages/tptn-az_AZ.mo +0 -0
- languages/tptn-az_AZ.po +27 -16
- languages/tptn-be_BY.mo +0 -0
- languages/tptn-be_BY.po +27 -16
- languages/tptn-en_US.mo +0 -0
- languages/tptn-en_US.po +27 -16
- languages/tptn-en_US.pot +27 -16
- languages/tptn-es_ES.mo +0 -0
- languages/tptn-es_ES.po +344 -0
- languages/tptn-fr_FR.mo +0 -0
- languages/tptn-fr_FR.po +104 -94
- languages/tptn-ga_IR.mo +0 -0
- languages/tptn-ga_IR.po +27 -16
- languages/tptn-hi_IN.mo +0 -0
- languages/tptn-hi_IN.po +27 -16
- languages/tptn-it_IT.mo +0 -0
- languages/tptn-it_IT.po +28 -17
- languages/tptn-nl_NL.mo +0 -0
- languages/tptn-nl_NL.po +27 -16
- languages/tptn-ru_RU.mo +0 -0
- languages/tptn-ru_RU.po +28 -17
- languages/tptn-ua_UA.mo +0 -0
- languages/tptn-ua_UA.po +27 -16
- readme.txt +11 -11
- top-10.php +1 -1
admin.inc.php
CHANGED
@@ -302,7 +302,7 @@ function tptn_options() {
|
|
302 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
|
303 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
|
304 |
<li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
|
305 |
-
<li><a href="http://ajaydsouza.com/support"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
|
306 |
<li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
|
307 |
</ul>
|
308 |
</div>
|
@@ -346,9 +346,51 @@ function tptn_manage() {
|
|
346 |
echo '<h2>';
|
347 |
if (!$daily) _e('Popular Posts',TPTN_LOCAL_NAME); else _e('Daily Popular Posts',TPTN_LOCAL_NAME);
|
348 |
echo '</h2>';
|
349 |
-
echo '<div style="border: #ccc 1px solid; padding: 10px">';
|
350 |
echo tptn_pop_display($daily,$paged,$limit);
|
351 |
-
echo '</div
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
}
|
353 |
|
354 |
/* Add menu item in WP-Admin */
|
@@ -369,7 +411,8 @@ function tptn_adminmenu() {
|
|
369 |
if ((function_exists('add_options_page'))&&($tptn_is_admin)) {
|
370 |
$plugin_page = add_options_page(__("Top 10", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_options', 'tptn_options');
|
371 |
add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
|
372 |
-
add_posts_page(__("Popular Posts", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_manage', 'tptn_manage');
|
|
|
373 |
}
|
374 |
}
|
375 |
add_action('admin_menu', 'tptn_adminmenu');
|
@@ -405,7 +448,7 @@ function tptn_clean_duplicates($daily = false) {
|
|
405 |
}
|
406 |
|
407 |
/* Create a Dashboard Widget */
|
408 |
-
function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
|
409 |
global $wpdb, $siteurl, $tableposts, $id;
|
410 |
|
411 |
$table_name = $wpdb->prefix . "top_ten";
|
@@ -460,11 +503,11 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
|
|
460 |
else{$last = $numrows;} // If last results page, last result equals total number of results.
|
461 |
|
462 |
if(!$daily) {
|
463 |
-
$sql = "SELECT postnumber, cntaccess , ID, post_type ";
|
464 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
465 |
if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
|
466 |
$sql .= "AND post_status = 'publish' ";
|
467 |
-
$sql .= "ORDER BY
|
468 |
} else {
|
469 |
$sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
|
470 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
@@ -498,7 +541,7 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
|
|
498 |
<tr>
|
499 |
<td align="left">';
|
500 |
|
501 |
-
if(!$daily) {
|
502 |
$output .= '<a href="./edit.php?page=tptn_manage&daily=1">';
|
503 |
$output .= __('View Daily Popular Posts',TPTN_LOCAL_NAME);
|
504 |
$output .= '</a></td>';
|
@@ -522,7 +565,7 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
|
|
522 |
if ($results) {
|
523 |
foreach ($results as $result) {
|
524 |
$output .= '<li><a href="'.get_permalink($result->postnumber).'">'.get_the_title($result->postnumber).'</a>';
|
525 |
-
|
526 |
$output .= '</li>';
|
527 |
}
|
528 |
}
|
@@ -563,11 +606,11 @@ function tptn_pop_display($daily = false, $page = 0, $limit = 10) {
|
|
563 |
|
564 |
// Dashboard for Popular Posts
|
565 |
function tptn_pop_dashboard() {
|
566 |
-
echo tptn_pop_display(false,0,10);
|
567 |
}
|
568 |
// Dashboard for Daily Popular Posts
|
569 |
function tptn_pop_daily_dashboard() {
|
570 |
-
echo tptn_pop_display(true,0,10);
|
571 |
}
|
572 |
|
573 |
function tptn_pop_dashboard_setup() {
|
302 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
|
303 |
<li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
|
304 |
<li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
|
305 |
+
<li><a href="http://ajaydsouza.com/support/"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
|
306 |
<li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
|
307 |
</ul>
|
308 |
</div>
|
346 |
echo '<h2>';
|
347 |
if (!$daily) _e('Popular Posts',TPTN_LOCAL_NAME); else _e('Daily Popular Posts',TPTN_LOCAL_NAME);
|
348 |
echo '</h2>';
|
349 |
+
echo '<div style="border: #ccc 1px solid; padding: 10px" id="options-div">';
|
350 |
echo tptn_pop_display($daily,$paged,$limit);
|
351 |
+
echo '</div>';
|
352 |
+
tptn_admin_side();
|
353 |
+
echo '</div>';
|
354 |
+
}
|
355 |
+
|
356 |
+
function tptn_admin_side() {
|
357 |
+
?>
|
358 |
+
<div id="side">
|
359 |
+
<div class="side-widget">
|
360 |
+
<span class="title"><?php _e('Quick links') ?></span>
|
361 |
+
<ul>
|
362 |
+
<li><a href="http://ajaydsouza.com/wordpress/plugins/top-10/"><?php _e('Top 10 ');_e('plugin page',TPTN_LOCAL_NAME) ?></a></li>
|
363 |
+
<li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',TPTN_LOCAL_NAME) ?></a></li>
|
364 |
+
<li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',TPTN_LOCAL_NAME) ?></a></li>
|
365 |
+
<li><a href="http://ajaydsouza.com/support/"><?php _e('Support',TPTN_LOCAL_NAME) ?></a></li>
|
366 |
+
<li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',TPTN_LOCAL_NAME) ?></a></li>
|
367 |
+
</ul>
|
368 |
+
</div>
|
369 |
+
<div class="side-widget">
|
370 |
+
<span class="title"><?php _e('Recent developments',TPTN_LOCAL_NAME) ?></span>
|
371 |
+
<?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
|
372 |
+
?>
|
373 |
+
</div>
|
374 |
+
<div class="side-widget">
|
375 |
+
<span class="title"><?php _e('Support the development',TPTN_LOCAL_NAME) ?></span>
|
376 |
+
<div id="donate-form">
|
377 |
+
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
378 |
+
<input type="hidden" name="cmd" value="_donations">
|
379 |
+
<input type="hidden" name="business" value="donations@ajaydsouza.com">
|
380 |
+
<input type="hidden" name="lc" value="GB">
|
381 |
+
<input type="hidden" name="item_name" value="Donation for Top 10">
|
382 |
+
<input type="hidden" name="item_number" value="tptn">
|
383 |
+
<strong><?php _e('Enter amount in USD: ',TPTN_LOCAL_NAME) ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
|
384 |
+
<input type="hidden" name="currency_code" value="USD">
|
385 |
+
<input type="hidden" name="button_subtype" value="services">
|
386 |
+
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
|
387 |
+
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e('Send your donation to the author of',TPTN_LOCAL_NAME) ?> Top 10?">
|
388 |
+
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
389 |
+
</form>
|
390 |
+
</div>
|
391 |
+
</div>
|
392 |
+
</div>
|
393 |
+
<?php
|
394 |
}
|
395 |
|
396 |
/* Add menu item in WP-Admin */
|
411 |
if ((function_exists('add_options_page'))&&($tptn_is_admin)) {
|
412 |
$plugin_page = add_options_page(__("Top 10", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_options', 'tptn_options');
|
413 |
add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
|
414 |
+
$plugin_page = add_posts_page(__("Popular Posts", TPTN_LOCAL_NAME), __("Top 10", TPTN_LOCAL_NAME), 9, 'tptn_manage', 'tptn_manage');
|
415 |
+
add_action( 'admin_head-'. $plugin_page, 'tptn_adminhead' );
|
416 |
}
|
417 |
}
|
418 |
add_action('admin_menu', 'tptn_adminmenu');
|
448 |
}
|
449 |
|
450 |
/* Create a Dashboard Widget */
|
451 |
+
function tptn_pop_display($daily = false, $page = 0, $limit = 10, $widget = false) {
|
452 |
global $wpdb, $siteurl, $tableposts, $id;
|
453 |
|
454 |
$table_name = $wpdb->prefix . "top_ten";
|
503 |
else{$last = $numrows;} // If last results page, last result equals total number of results.
|
504 |
|
505 |
if(!$daily) {
|
506 |
+
$sql = "SELECT postnumber, cntaccess as sumCount, ID, post_type ";
|
507 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
508 |
if ($tptn_settings['exclude_pages']) $sql .= "AND post_type = 'post' ";
|
509 |
$sql .= "AND post_status = 'publish' ";
|
510 |
+
$sql .= "ORDER BY sumCount DESC LIMIT $page, $limit";
|
511 |
} else {
|
512 |
$sql = "SELECT postnumber, SUM(cntaccess) as sumCount, dp_date, ID, post_type, post_status ";
|
513 |
$sql .= "FROM $table_name INNER JOIN ". $wpdb->posts ." ON postnumber=ID " ;
|
541 |
<tr>
|
542 |
<td align="left">';
|
543 |
|
544 |
+
if(($daily && $widget) || (!$daily && !$widget)) {
|
545 |
$output .= '<a href="./edit.php?page=tptn_manage&daily=1">';
|
546 |
$output .= __('View Daily Popular Posts',TPTN_LOCAL_NAME);
|
547 |
$output .= '</a></td>';
|
565 |
if ($results) {
|
566 |
foreach ($results as $result) {
|
567 |
$output .= '<li><a href="'.get_permalink($result->postnumber).'">'.get_the_title($result->postnumber).'</a>';
|
568 |
+
$output .= ' ('.number_format($result->sumCount).')';
|
569 |
$output .= '</li>';
|
570 |
}
|
571 |
}
|
606 |
|
607 |
// Dashboard for Popular Posts
|
608 |
function tptn_pop_dashboard() {
|
609 |
+
echo tptn_pop_display(false,0,10,true);
|
610 |
}
|
611 |
// Dashboard for Daily Popular Posts
|
612 |
function tptn_pop_daily_dashboard() {
|
613 |
+
echo tptn_pop_display(true,0,10,true);
|
614 |
}
|
615 |
|
616 |
function tptn_pop_dashboard_setup() {
|
languages/top-10-ro_RO.mo
ADDED
Binary file
|
languages/top-10-ro_RO.po
ADDED
@@ -0,0 +1,345 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Top 10\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-23 21:31-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
+
"Language-Team: Web Geeks\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Romanian\n"
|
13 |
+
"X-Poedit-Country: Romania\n"
|
14 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
+
"X-Poedit-Basepath: ../\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: admin.inc.php:58
|
19 |
+
msgid "Options saved successfully."
|
20 |
+
msgstr "Opţiuni salvat cu succes."
|
21 |
+
|
22 |
+
#: admin.inc.php:67
|
23 |
+
msgid "Options set to Default."
|
24 |
+
msgstr "Opţiunile setate la valorile implicite."
|
25 |
+
|
26 |
+
#: admin.inc.php:73
|
27 |
+
msgid "Top 10 popular posts reset"
|
28 |
+
msgstr "Top 10 populare posturi Resetare"
|
29 |
+
|
30 |
+
#: admin.inc.php:79
|
31 |
+
msgid "Top 10 daily popular posts reset"
|
32 |
+
msgstr "Top 10 posturi populare daily Reiniţializare"
|
33 |
+
|
34 |
+
#: admin.inc.php:86
|
35 |
+
msgid "Tables cleaned of duplicate rows"
|
36 |
+
msgstr "Tabelele curățate de rânduri duplicat"
|
37 |
+
|
38 |
+
#: admin.inc.php:98
|
39 |
+
msgid "Options:"
|
40 |
+
msgstr "Opţiuni:"
|
41 |
+
|
42 |
+
#: admin.inc.php:103
|
43 |
+
msgid "Format to display the count in: "
|
44 |
+
msgstr "Format pentru a afişa numărul în: "
|
45 |
+
|
46 |
+
#: admin.inc.php:107
|
47 |
+
msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
|
48 |
+
msgstr "Utilizaţi <code>% totalcount %</code> pentru a afişa numărul total şi <code>% dailycount %</code> pentru a afişa numărul de zi cu zi. exemplu afişează opţiunile implicite <code>(vizitat 123 ori, 23 vizite azi)</code>"
|
49 |
+
|
50 |
+
#: admin.inc.php:110
|
51 |
+
msgid "Number of popular posts to display: "
|
52 |
+
msgstr "Numărul de posturi populare pentru a afişa: "
|
53 |
+
|
54 |
+
#: admin.inc.php:116
|
55 |
+
msgid "Daily Popular should contain views of how many days? "
|
56 |
+
msgstr "Popular de zi cu zi ar trebui să conțină vizualizări de câte zile? "
|
57 |
+
|
58 |
+
#: admin.inc.php:123
|
59 |
+
msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
|
60 |
+
msgstr "Exclude paginile în afişarea de posturi populare? Număr de vizualizări pe pagini va continua să fie numărate."
|
61 |
+
|
62 |
+
#: admin.inc.php:129
|
63 |
+
msgid "Display number of views on posts?"
|
64 |
+
msgstr "Afişează numărul de vizualizări pe posturi?"
|
65 |
+
|
66 |
+
#: admin.inc.php:135
|
67 |
+
msgid "Display number of views on pages?"
|
68 |
+
msgstr "Afişează numărul de vizualizări pe pagini?"
|
69 |
+
|
70 |
+
#: admin.inc.php:141
|
71 |
+
msgid "Track visits of authors on their own posts?"
|
72 |
+
msgstr "Track vizite de autori pe posturile lor proprii?"
|
73 |
+
|
74 |
+
#: admin.inc.php:147
|
75 |
+
msgid "Display number of page views in popular lists?"
|
76 |
+
msgstr "Afişează numărul de vizualizări de pagini în listele popular?"
|
77 |
+
|
78 |
+
#: admin.inc.php:153
|
79 |
+
msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
|
80 |
+
msgstr "Vigoare lista de zi cu zi de posturi să fie dinamic? Această opţiune utilizează JavaScript pentru a încărca post şi poate creşte timpul încărcare pagină"
|
81 |
+
|
82 |
+
#: admin.inc.php:159
|
83 |
+
msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
|
84 |
+
msgstr "Afişarea de vizualizări de pagină pe Editare posturi/pagini în WP-Admin? O coloană suplimentară se adaugă cu contele"
|
85 |
+
|
86 |
+
#: admin.inc.php:165
|
87 |
+
msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
|
88 |
+
msgstr "Un link pentru a plugin-ul se adaugă ca un element suplimentar lista la lista de posturi populare. Nu obligatoriu, dar Multumesc dacă tu a face it!"
|
89 |
+
|
90 |
+
#: admin.inc.php:169
|
91 |
+
msgid "Output Options:"
|
92 |
+
msgstr "Opţiuni de ieşire:"
|
93 |
+
|
94 |
+
#: admin.inc.php:173
|
95 |
+
msgid "Title of popular posts: "
|
96 |
+
msgstr "Titlul de posturi populare: "
|
97 |
+
|
98 |
+
#: admin.inc.php:179
|
99 |
+
msgid "Title of daily popular posts: "
|
100 |
+
msgstr "Titlul de zi cu zi de posturi populare: "
|
101 |
+
|
102 |
+
#: admin.inc.php:186
|
103 |
+
msgid "Show post excerpt in list?"
|
104 |
+
msgstr "Afişează post extras din lista?"
|
105 |
+
|
106 |
+
#: admin.inc.php:191
|
107 |
+
msgid "Length of excerpt (in words): "
|
108 |
+
msgstr "Lungimea extras (în cuvinte): "
|
109 |
+
|
110 |
+
#: admin.inc.php:195
|
111 |
+
msgid "Exclude Categories: "
|
112 |
+
msgstr "Excludeţi categorii: "
|
113 |
+
|
114 |
+
#: admin.inc.php:210
|
115 |
+
msgid "Customize the output:"
|
116 |
+
msgstr "Personaliza ieşire:"
|
117 |
+
|
118 |
+
#: admin.inc.php:213
|
119 |
+
msgid "HTML to display before the list of posts: "
|
120 |
+
msgstr "HTML pentru a afişa înainte de lista de posturi: "
|
121 |
+
|
122 |
+
#: admin.inc.php:219
|
123 |
+
msgid "HTML to display before each list item: "
|
124 |
+
msgstr "HTML pentru a afişa înainte de fiecare element din listă: "
|
125 |
+
|
126 |
+
#: admin.inc.php:225
|
127 |
+
msgid "HTML to display after each list item: "
|
128 |
+
msgstr "HTML pentru a afişa după fiecare element din listă: "
|
129 |
+
|
130 |
+
#: admin.inc.php:231
|
131 |
+
msgid "HTML to display after the list of posts: "
|
132 |
+
msgstr "HTML pentru a afişa după lista de posturi: "
|
133 |
+
|
134 |
+
#: admin.inc.php:235
|
135 |
+
msgid "Post thumbnail options:"
|
136 |
+
msgstr "Post Opţiuni pictograme:"
|
137 |
+
|
138 |
+
#: admin.inc.php:239
|
139 |
+
msgid "Display thumbnails inline with posts, before title"
|
140 |
+
msgstr "Afişare miniaturi inline cu posturi, înainte de titlu"
|
141 |
+
|
142 |
+
#: admin.inc.php:243
|
143 |
+
msgid "Display thumbnails inline with posts, after title"
|
144 |
+
msgstr "Afişare miniaturi inline cu posturi, după titlul"
|
145 |
+
|
146 |
+
#: admin.inc.php:247
|
147 |
+
msgid "Display only thumbnails, no text"
|
148 |
+
msgstr "Afişa numai miniaturi, nici un text"
|
149 |
+
|
150 |
+
#: admin.inc.php:251
|
151 |
+
msgid "Do not display thumbnails, only text."
|
152 |
+
msgstr "Nu se afişează miniaturi, numai textul."
|
153 |
+
|
154 |
+
#: admin.inc.php:256
|
155 |
+
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
156 |
+
msgstr "Post miniaturi meta câmp (meta ar trebui să punct de imagine sursă): "
|
157 |
+
|
158 |
+
#: admin.inc.php:263
|
159 |
+
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
160 |
+
msgstr "Dacă postmeta nu este setată, apoi trebuie să plugin-ul extrage prima imagine din post. Acest lucru poate încetini încărcarea de post dumneavoastră dacă prima imagine în legate de posturi este mare în mărime fişier"
|
161 |
+
|
162 |
+
#: admin.inc.php:266
|
163 |
+
msgid "Thumbnail dimensions:"
|
164 |
+
msgstr "Dimensiunile miniatură:"
|
165 |
+
|
166 |
+
#: admin.inc.php:268
|
167 |
+
msgid "Max width: "
|
168 |
+
msgstr "Max Lăţime: "
|
169 |
+
|
170 |
+
#: admin.inc.php:273
|
171 |
+
msgid "Max height: "
|
172 |
+
msgstr "Max înălţime: "
|
173 |
+
|
174 |
+
#: admin.inc.php:277
|
175 |
+
msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
|
176 |
+
msgstr "Dacă verificat, atunci când este găsit nici un thumbnail, arată o implicit la URL-ul de mai jos. În cazul în care nu a verificat şi este găsit nici un thumbnail, imaginea nu va fi indicat."
|
177 |
+
|
178 |
+
#: admin.inc.php:282
|
179 |
+
msgid "Do you want to set options to Default?"
|
180 |
+
msgstr "Doriţi să setaţi opţiunile la valorile implicite?"
|
181 |
+
|
182 |
+
#: admin.inc.php:285
|
183 |
+
msgid "Reset count"
|
184 |
+
msgstr "Reiniţializare count"
|
185 |
+
|
186 |
+
#: admin.inc.php:288
|
187 |
+
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
188 |
+
msgstr "Acest lucru poate fi inversat. Asiguraţi-vă că baza de date a fost sprijinit înainte de a continua"
|
189 |
+
|
190 |
+
#: admin.inc.php:291
|
191 |
+
msgid "Are you sure you want to reset the popular posts?"
|
192 |
+
msgstr "Sigur reiniţializaţi posturi populare?"
|
193 |
+
|
194 |
+
#: admin.inc.php:292
|
195 |
+
msgid "Are you sure you want to reset the daily popular posts?"
|
196 |
+
msgstr "Sigur reiniţializaţi posturi populare zilnic?"
|
197 |
+
|
198 |
+
#: admin.inc.php:293
|
199 |
+
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
200 |
+
msgstr "Aceasta va şterge intrările dublate în tabele. Continuaţi?"
|
201 |
+
|
202 |
+
#: admin.inc.php:300
|
203 |
+
#: admin.inc.php:360
|
204 |
+
msgid "Quick links"
|
205 |
+
msgstr "Legături rapide pentru"
|
206 |
+
|
207 |
+
#: admin.inc.php:302
|
208 |
+
#: admin.inc.php:362
|
209 |
+
msgid "Top 10 "
|
210 |
+
msgstr "Top 10 "
|
211 |
+
|
212 |
+
#: admin.inc.php:302
|
213 |
+
#: admin.inc.php:362
|
214 |
+
msgid "plugin page"
|
215 |
+
msgstr "plug-in pagina"
|
216 |
+
|
217 |
+
#: admin.inc.php:303
|
218 |
+
#: admin.inc.php:363
|
219 |
+
msgid "Other plugins"
|
220 |
+
msgstr "Alte plugin-uri"
|
221 |
+
|
222 |
+
#: admin.inc.php:304
|
223 |
+
#: admin.inc.php:364
|
224 |
+
msgid "Ajay's blog"
|
225 |
+
msgstr "Ajay's blog"
|
226 |
+
|
227 |
+
#: admin.inc.php:305
|
228 |
+
#: admin.inc.php:365
|
229 |
+
#: top-10.php:515
|
230 |
+
msgid "Support"
|
231 |
+
msgstr "Suport"
|
232 |
+
|
233 |
+
#: admin.inc.php:306
|
234 |
+
#: admin.inc.php:366
|
235 |
+
msgid "Follow @ajaydsouza on Twitter"
|
236 |
+
msgstr "Urmaţi @ ajaydsouza pe Twitter"
|
237 |
+
|
238 |
+
#: admin.inc.php:310
|
239 |
+
#: admin.inc.php:370
|
240 |
+
msgid "Recent developments"
|
241 |
+
msgstr "Evoluţiile recente"
|
242 |
+
|
243 |
+
#: admin.inc.php:315
|
244 |
+
#: admin.inc.php:375
|
245 |
+
msgid "Support the development"
|
246 |
+
msgstr "Sprijinirea dezvoltării"
|
247 |
+
|
248 |
+
#: admin.inc.php:323
|
249 |
+
#: admin.inc.php:383
|
250 |
+
msgid "Enter amount in USD: "
|
251 |
+
msgstr "Introduceţi valoarea în USD: "
|
252 |
+
|
253 |
+
#: admin.inc.php:327
|
254 |
+
#: admin.inc.php:387
|
255 |
+
msgid "Send your donation to the author of"
|
256 |
+
msgstr "Trimite donatie autorului"
|
257 |
+
|
258 |
+
#: admin.inc.php:347
|
259 |
+
#: admin.inc.php:414
|
260 |
+
#: admin.inc.php:618
|
261 |
+
#: top-10.php:257
|
262 |
+
#: top-10.php:273
|
263 |
+
#: top-10.php:445
|
264 |
+
#: top-10.php:448
|
265 |
+
msgid "Popular Posts"
|
266 |
+
msgstr "Posturi populare"
|
267 |
+
|
268 |
+
#: admin.inc.php:347
|
269 |
+
msgid "Daily Popular Posts"
|
270 |
+
msgstr "Posturi populare de zi cu zi"
|
271 |
+
|
272 |
+
#: admin.inc.php:412
|
273 |
+
#: admin.inc.php:414
|
274 |
+
msgid "Top 10"
|
275 |
+
msgstr "Top 10"
|
276 |
+
|
277 |
+
#: admin.inc.php:526
|
278 |
+
msgid "Results"
|
279 |
+
msgstr "Rezultatele"
|
280 |
+
|
281 |
+
#: admin.inc.php:528
|
282 |
+
#: admin.inc.php:534
|
283 |
+
msgid "of"
|
284 |
+
msgstr "de"
|
285 |
+
|
286 |
+
#: admin.inc.php:532
|
287 |
+
msgid "Page"
|
288 |
+
msgstr "Pagină"
|
289 |
+
|
290 |
+
#: admin.inc.php:546
|
291 |
+
msgid "View Daily Popular Posts"
|
292 |
+
msgstr "Vizualizare zi posturi populare"
|
293 |
+
|
294 |
+
#: admin.inc.php:550
|
295 |
+
msgid "View Overall Popular Posts"
|
296 |
+
msgstr "Vedere de ansamblu posturi populare"
|
297 |
+
|
298 |
+
#: admin.inc.php:554
|
299 |
+
msgid "Results per-page:"
|
300 |
+
msgstr "Rezultate pe pagină:"
|
301 |
+
|
302 |
+
#: admin.inc.php:578
|
303 |
+
msgid "Previous"
|
304 |
+
msgstr "Anterioară"
|
305 |
+
|
306 |
+
#: admin.inc.php:596
|
307 |
+
msgid "Next"
|
308 |
+
msgstr "Următorul"
|
309 |
+
|
310 |
+
#: admin.inc.php:619
|
311 |
+
#: top-10.php:219
|
312 |
+
#: top-10.php:235
|
313 |
+
#: top-10.php:446
|
314 |
+
#: top-10.php:449
|
315 |
+
msgid "Daily Popular"
|
316 |
+
msgstr "Daily populare"
|
317 |
+
|
318 |
+
#: admin.inc.php:630
|
319 |
+
msgid "Total / Today's Views"
|
320 |
+
msgstr "Total / astăzi lui vizitări"
|
321 |
+
|
322 |
+
#: top-10.php:218
|
323 |
+
msgid "Display the posts popular today"
|
324 |
+
msgstr "Afişa posturi populare de astăzi"
|
325 |
+
|
326 |
+
#: top-10.php:256
|
327 |
+
msgid "Display the posts popular this week"
|
328 |
+
msgstr "Afişa posturi populare în această săptămână"
|
329 |
+
|
330 |
+
#: top-10.php:286
|
331 |
+
msgid "<h3>Popular Posts</h3>"
|
332 |
+
msgstr "<h3>Posturi populare</h3>"
|
333 |
+
|
334 |
+
#: top-10.php:287
|
335 |
+
msgid "<h3>Daily Popular</h3>"
|
336 |
+
msgstr "<h3>Daily populare</h3>"
|
337 |
+
|
338 |
+
#: top-10.php:514
|
339 |
+
msgid "Settings"
|
340 |
+
msgstr "Setări"
|
341 |
+
|
342 |
+
#: top-10.php:516
|
343 |
+
msgid "Donate"
|
344 |
+
msgstr "Dona"
|
345 |
+
|
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"
|
@@ -202,53 +202,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
202 |
msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
|
203 |
|
204 |
#: admin.inc.php:300
|
|
|
205 |
msgid "Quick links"
|
206 |
msgstr "Faydalı istenadlar"
|
207 |
|
208 |
#: admin.inc.php:302
|
|
|
209 |
msgid "Top 10 "
|
210 |
msgstr "Top 10 yazılar"
|
211 |
|
212 |
#: admin.inc.php:302
|
|
|
213 |
msgid "plugin page"
|
214 |
msgstr "plaginin səhifəsi"
|
215 |
|
216 |
#: admin.inc.php:303
|
|
|
217 |
msgid "Other plugins"
|
218 |
msgstr "Digər plaginlər"
|
219 |
|
220 |
#: admin.inc.php:304
|
|
|
221 |
msgid "Ajay's blog"
|
222 |
msgstr "Ajay-in blogu"
|
223 |
|
224 |
#: admin.inc.php:305
|
|
|
225 |
#: top-10.php:515
|
226 |
msgid "Support"
|
227 |
msgstr "Dəstək"
|
228 |
|
229 |
#: admin.inc.php:306
|
|
|
230 |
msgid "Follow @ajaydsouza on Twitter"
|
231 |
msgstr "Twitter-də @ajaydsouza ardınca get "
|
232 |
|
233 |
#: admin.inc.php:310
|
|
|
234 |
msgid "Recent developments"
|
235 |
msgstr "Son inkişaflar"
|
236 |
|
237 |
#: admin.inc.php:315
|
|
|
238 |
msgid "Support the development"
|
239 |
msgstr "İnkişafı dəstək vermək"
|
240 |
|
241 |
#: admin.inc.php:323
|
|
|
242 |
msgid "Enter amount in USD: "
|
243 |
msgstr "Miiqdarı USD ilə daxil et:"
|
244 |
|
245 |
#: admin.inc.php:327
|
|
|
246 |
msgid "Send your donation to the author of"
|
247 |
msgstr "Müəlifə ianə göndərin "
|
248 |
|
249 |
#: admin.inc.php:347
|
250 |
-
#: admin.inc.php:
|
251 |
-
#: admin.inc.php:
|
252 |
#: top-10.php:257
|
253 |
#: top-10.php:273
|
254 |
#: top-10.php:445
|
@@ -260,45 +271,45 @@ msgstr "Populyar yazılar"
|
|
260 |
msgid "Daily Popular Posts"
|
261 |
msgstr "Gündəlik Populyar Yazılar"
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Top 10"
|
266 |
msgstr "Top 10 yazılar"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Results"
|
270 |
msgstr "Nəticələr"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
-
#: admin.inc.php:
|
274 |
msgid "of"
|
275 |
msgstr "-dən "
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "Page"
|
279 |
msgstr "Səhifə"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "View Daily Popular Posts"
|
283 |
msgstr "Gündəlik Populyar Yazılara Baxmaq"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "View Overall Popular Posts"
|
287 |
msgstr "Bütün Populyar Yazılara Baxmaq"
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid "Results per-page:"
|
291 |
msgstr "Səhifə üzrə nəticələr:"
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Previous"
|
295 |
msgstr "Əvvəlki"
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
msgid "Next"
|
299 |
msgstr "Sonrakı"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
#: top-10.php:219
|
303 |
#: top-10.php:235
|
304 |
#: top-10.php:446
|
@@ -306,7 +317,7 @@ msgstr "Sonrakı"
|
|
306 |
msgid "Daily Popular"
|
307 |
msgstr "Gündəlik Populyar"
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid "Total / Today's Views"
|
311 |
msgstr "Ümümi/ Bu günkü baxış"
|
312 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:42-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"
|
202 |
msgstr "Cədvəldəki dublikat yazılar silinəcəklər. Davam edək?"
|
203 |
|
204 |
#: admin.inc.php:300
|
205 |
+
#: admin.inc.php:360
|
206 |
msgid "Quick links"
|
207 |
msgstr "Faydalı istenadlar"
|
208 |
|
209 |
#: admin.inc.php:302
|
210 |
+
#: admin.inc.php:362
|
211 |
msgid "Top 10 "
|
212 |
msgstr "Top 10 yazılar"
|
213 |
|
214 |
#: admin.inc.php:302
|
215 |
+
#: admin.inc.php:362
|
216 |
msgid "plugin page"
|
217 |
msgstr "plaginin səhifəsi"
|
218 |
|
219 |
#: admin.inc.php:303
|
220 |
+
#: admin.inc.php:363
|
221 |
msgid "Other plugins"
|
222 |
msgstr "Digər plaginlər"
|
223 |
|
224 |
#: admin.inc.php:304
|
225 |
+
#: admin.inc.php:364
|
226 |
msgid "Ajay's blog"
|
227 |
msgstr "Ajay-in blogu"
|
228 |
|
229 |
#: admin.inc.php:305
|
230 |
+
#: admin.inc.php:365
|
231 |
#: top-10.php:515
|
232 |
msgid "Support"
|
233 |
msgstr "Dəstək"
|
234 |
|
235 |
#: admin.inc.php:306
|
236 |
+
#: admin.inc.php:366
|
237 |
msgid "Follow @ajaydsouza on Twitter"
|
238 |
msgstr "Twitter-də @ajaydsouza ardınca get "
|
239 |
|
240 |
#: admin.inc.php:310
|
241 |
+
#: admin.inc.php:370
|
242 |
msgid "Recent developments"
|
243 |
msgstr "Son inkişaflar"
|
244 |
|
245 |
#: admin.inc.php:315
|
246 |
+
#: admin.inc.php:375
|
247 |
msgid "Support the development"
|
248 |
msgstr "İnkişafı dəstək vermək"
|
249 |
|
250 |
#: admin.inc.php:323
|
251 |
+
#: admin.inc.php:383
|
252 |
msgid "Enter amount in USD: "
|
253 |
msgstr "Miiqdarı USD ilə daxil et:"
|
254 |
|
255 |
#: admin.inc.php:327
|
256 |
+
#: admin.inc.php:387
|
257 |
msgid "Send your donation to the author of"
|
258 |
msgstr "Müəlifə ianə göndərin "
|
259 |
|
260 |
#: admin.inc.php:347
|
261 |
+
#: admin.inc.php:414
|
262 |
+
#: admin.inc.php:618
|
263 |
#: top-10.php:257
|
264 |
#: top-10.php:273
|
265 |
#: top-10.php:445
|
271 |
msgid "Daily Popular Posts"
|
272 |
msgstr "Gündəlik Populyar Yazılar"
|
273 |
|
274 |
+
#: admin.inc.php:412
|
275 |
+
#: admin.inc.php:414
|
276 |
msgid "Top 10"
|
277 |
msgstr "Top 10 yazılar"
|
278 |
|
279 |
+
#: admin.inc.php:526
|
280 |
msgid "Results"
|
281 |
msgstr "Nəticələr"
|
282 |
|
283 |
+
#: admin.inc.php:528
|
284 |
+
#: admin.inc.php:534
|
285 |
msgid "of"
|
286 |
msgstr "-dən "
|
287 |
|
288 |
+
#: admin.inc.php:532
|
289 |
msgid "Page"
|
290 |
msgstr "Səhifə"
|
291 |
|
292 |
+
#: admin.inc.php:546
|
293 |
msgid "View Daily Popular Posts"
|
294 |
msgstr "Gündəlik Populyar Yazılara Baxmaq"
|
295 |
|
296 |
+
#: admin.inc.php:550
|
297 |
msgid "View Overall Popular Posts"
|
298 |
msgstr "Bütün Populyar Yazılara Baxmaq"
|
299 |
|
300 |
+
#: admin.inc.php:554
|
301 |
msgid "Results per-page:"
|
302 |
msgstr "Səhifə üzrə nəticələr:"
|
303 |
|
304 |
+
#: admin.inc.php:578
|
305 |
msgid "Previous"
|
306 |
msgstr "Əvvəlki"
|
307 |
|
308 |
+
#: admin.inc.php:596
|
309 |
msgid "Next"
|
310 |
msgstr "Sonrakı"
|
311 |
|
312 |
+
#: admin.inc.php:619
|
313 |
#: top-10.php:219
|
314 |
#: top-10.php:235
|
315 |
#: top-10.php:446
|
317 |
msgid "Daily Popular"
|
318 |
msgstr "Gündəlik Populyar"
|
319 |
|
320 |
+
#: admin.inc.php:630
|
321 |
msgid "Total / Today's Views"
|
322 |
msgstr "Ümümi/ Bu günkü baxış"
|
323 |
|
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"
|
@@ -207,55 +207,66 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
207 |
msgstr ""
|
208 |
|
209 |
#: admin.inc.php:300
|
|
|
210 |
msgid "Quick links"
|
211 |
msgstr ""
|
212 |
|
213 |
#: admin.inc.php:302
|
|
|
214 |
#, fuzzy
|
215 |
msgid "Top 10 "
|
216 |
msgstr "Топ 10 запісаў"
|
217 |
|
218 |
#: admin.inc.php:302
|
|
|
219 |
msgid "plugin page"
|
220 |
msgstr ""
|
221 |
|
222 |
#: admin.inc.php:303
|
|
|
223 |
msgid "Other plugins"
|
224 |
msgstr ""
|
225 |
|
226 |
#: admin.inc.php:304
|
|
|
227 |
msgid "Ajay's blog"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin.inc.php:305
|
|
|
231 |
#: top-10.php:515
|
232 |
msgid "Support"
|
233 |
msgstr ""
|
234 |
|
235 |
#: admin.inc.php:306
|
|
|
236 |
msgid "Follow @ajaydsouza on Twitter"
|
237 |
msgstr ""
|
238 |
|
239 |
#: admin.inc.php:310
|
|
|
240 |
msgid "Recent developments"
|
241 |
msgstr ""
|
242 |
|
243 |
#: admin.inc.php:315
|
|
|
244 |
#, fuzzy
|
245 |
msgid "Support the development"
|
246 |
msgstr "Падтрымаеце стваральніка ўбудовы"
|
247 |
|
248 |
#: admin.inc.php:323
|
|
|
249 |
msgid "Enter amount in USD: "
|
250 |
msgstr ""
|
251 |
|
252 |
#: admin.inc.php:327
|
|
|
253 |
msgid "Send your donation to the author of"
|
254 |
msgstr ""
|
255 |
|
256 |
#: admin.inc.php:347
|
257 |
-
#: admin.inc.php:
|
258 |
-
#: admin.inc.php:
|
259 |
#: top-10.php:257
|
260 |
#: top-10.php:273
|
261 |
#: top-10.php:445
|
@@ -267,45 +278,45 @@ msgstr "Папулярныя запісы"
|
|
267 |
msgid "Daily Popular Posts"
|
268 |
msgstr "Папулярныя сёння запісы"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "Top 10"
|
273 |
msgstr "Топ 10 запісаў"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Results"
|
277 |
msgstr "Вынікі"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "of"
|
282 |
msgstr "з"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Page"
|
286 |
msgstr "Старонка"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "View Daily Popular Posts"
|
290 |
msgstr "Паглядзець усе Папулярныя сёння запісы"
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "View Overall Popular Posts"
|
294 |
msgstr "Паглядзець усе Папулярныя запісы"
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Results per-page:"
|
298 |
msgstr "Вынікаў на старонку:"
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Previous"
|
302 |
msgstr "Папярэдняя старонка"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Next"
|
306 |
msgstr "Наступная старонка"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
#: top-10.php:219
|
310 |
#: top-10.php:235
|
311 |
#: top-10.php:446
|
@@ -313,7 +324,7 @@ msgstr "Наступная старонка"
|
|
313 |
msgid "Daily Popular"
|
314 |
msgstr "Папулярныя сёння запісы"
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid "Total / Today's Views"
|
318 |
msgstr "Усяго / Сёння праглядаў"
|
319 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:45-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"
|
207 |
msgstr ""
|
208 |
|
209 |
#: admin.inc.php:300
|
210 |
+
#: admin.inc.php:360
|
211 |
msgid "Quick links"
|
212 |
msgstr ""
|
213 |
|
214 |
#: admin.inc.php:302
|
215 |
+
#: admin.inc.php:362
|
216 |
#, fuzzy
|
217 |
msgid "Top 10 "
|
218 |
msgstr "Топ 10 запісаў"
|
219 |
|
220 |
#: admin.inc.php:302
|
221 |
+
#: admin.inc.php:362
|
222 |
msgid "plugin page"
|
223 |
msgstr ""
|
224 |
|
225 |
#: admin.inc.php:303
|
226 |
+
#: admin.inc.php:363
|
227 |
msgid "Other plugins"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin.inc.php:304
|
231 |
+
#: admin.inc.php:364
|
232 |
msgid "Ajay's blog"
|
233 |
msgstr ""
|
234 |
|
235 |
#: admin.inc.php:305
|
236 |
+
#: admin.inc.php:365
|
237 |
#: top-10.php:515
|
238 |
msgid "Support"
|
239 |
msgstr ""
|
240 |
|
241 |
#: admin.inc.php:306
|
242 |
+
#: admin.inc.php:366
|
243 |
msgid "Follow @ajaydsouza on Twitter"
|
244 |
msgstr ""
|
245 |
|
246 |
#: admin.inc.php:310
|
247 |
+
#: admin.inc.php:370
|
248 |
msgid "Recent developments"
|
249 |
msgstr ""
|
250 |
|
251 |
#: admin.inc.php:315
|
252 |
+
#: admin.inc.php:375
|
253 |
#, fuzzy
|
254 |
msgid "Support the development"
|
255 |
msgstr "Падтрымаеце стваральніка ўбудовы"
|
256 |
|
257 |
#: admin.inc.php:323
|
258 |
+
#: admin.inc.php:383
|
259 |
msgid "Enter amount in USD: "
|
260 |
msgstr ""
|
261 |
|
262 |
#: admin.inc.php:327
|
263 |
+
#: admin.inc.php:387
|
264 |
msgid "Send your donation to the author of"
|
265 |
msgstr ""
|
266 |
|
267 |
#: admin.inc.php:347
|
268 |
+
#: admin.inc.php:414
|
269 |
+
#: admin.inc.php:618
|
270 |
#: top-10.php:257
|
271 |
#: top-10.php:273
|
272 |
#: top-10.php:445
|
278 |
msgid "Daily Popular Posts"
|
279 |
msgstr "Папулярныя сёння запісы"
|
280 |
|
281 |
+
#: admin.inc.php:412
|
282 |
+
#: admin.inc.php:414
|
283 |
msgid "Top 10"
|
284 |
msgstr "Топ 10 запісаў"
|
285 |
|
286 |
+
#: admin.inc.php:526
|
287 |
msgid "Results"
|
288 |
msgstr "Вынікі"
|
289 |
|
290 |
+
#: admin.inc.php:528
|
291 |
+
#: admin.inc.php:534
|
292 |
msgid "of"
|
293 |
msgstr "з"
|
294 |
|
295 |
+
#: admin.inc.php:532
|
296 |
msgid "Page"
|
297 |
msgstr "Старонка"
|
298 |
|
299 |
+
#: admin.inc.php:546
|
300 |
msgid "View Daily Popular Posts"
|
301 |
msgstr "Паглядзець усе Папулярныя сёння запісы"
|
302 |
|
303 |
+
#: admin.inc.php:550
|
304 |
msgid "View Overall Popular Posts"
|
305 |
msgstr "Паглядзець усе Папулярныя запісы"
|
306 |
|
307 |
+
#: admin.inc.php:554
|
308 |
msgid "Results per-page:"
|
309 |
msgstr "Вынікаў на старонку:"
|
310 |
|
311 |
+
#: admin.inc.php:578
|
312 |
msgid "Previous"
|
313 |
msgstr "Папярэдняя старонка"
|
314 |
|
315 |
+
#: admin.inc.php:596
|
316 |
msgid "Next"
|
317 |
msgstr "Наступная старонка"
|
318 |
|
319 |
+
#: admin.inc.php:619
|
320 |
#: top-10.php:219
|
321 |
#: top-10.php:235
|
322 |
#: top-10.php:446
|
324 |
msgid "Daily Popular"
|
325 |
msgstr "Папулярныя сёння запісы"
|
326 |
|
327 |
+
#: admin.inc.php:630
|
328 |
msgid "Total / Today's Views"
|
329 |
msgstr "Усяго / Сёння праглядаў"
|
330 |
|
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"
|
@@ -199,53 +199,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
199 |
msgstr ""
|
200 |
|
201 |
#: admin.inc.php:300
|
|
|
202 |
msgid "Quick links"
|
203 |
msgstr ""
|
204 |
|
205 |
#: admin.inc.php:302
|
|
|
206 |
msgid "Top 10 "
|
207 |
msgstr ""
|
208 |
|
209 |
#: admin.inc.php:302
|
|
|
210 |
msgid "plugin page"
|
211 |
msgstr ""
|
212 |
|
213 |
#: admin.inc.php:303
|
|
|
214 |
msgid "Other plugins"
|
215 |
msgstr ""
|
216 |
|
217 |
#: admin.inc.php:304
|
|
|
218 |
msgid "Ajay's blog"
|
219 |
msgstr ""
|
220 |
|
221 |
#: admin.inc.php:305
|
|
|
222 |
#: top-10.php:515
|
223 |
msgid "Support"
|
224 |
msgstr ""
|
225 |
|
226 |
#: admin.inc.php:306
|
|
|
227 |
msgid "Follow @ajaydsouza on Twitter"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin.inc.php:310
|
|
|
231 |
msgid "Recent developments"
|
232 |
msgstr ""
|
233 |
|
234 |
#: admin.inc.php:315
|
|
|
235 |
msgid "Support the development"
|
236 |
msgstr ""
|
237 |
|
238 |
#: admin.inc.php:323
|
|
|
239 |
msgid "Enter amount in USD: "
|
240 |
msgstr ""
|
241 |
|
242 |
#: admin.inc.php:327
|
|
|
243 |
msgid "Send your donation to the author of"
|
244 |
msgstr ""
|
245 |
|
246 |
#: admin.inc.php:347
|
247 |
-
#: admin.inc.php:
|
248 |
-
#: admin.inc.php:
|
249 |
#: top-10.php:257
|
250 |
#: top-10.php:273
|
251 |
#: top-10.php:445
|
@@ -257,45 +268,45 @@ msgstr ""
|
|
257 |
msgid "Daily Popular Posts"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Top 10"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Results"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "of"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid "Page"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "View Daily Popular Posts"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "View Overall Popular Posts"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Results per-page:"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Previous"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Next"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
#: top-10.php:219
|
300 |
#: top-10.php:235
|
301 |
#: top-10.php:446
|
@@ -303,7 +314,7 @@ msgstr ""
|
|
303 |
msgid "Daily Popular"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Total / Today's Views"
|
308 |
msgstr ""
|
309 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:42-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"
|
199 |
msgstr ""
|
200 |
|
201 |
#: admin.inc.php:300
|
202 |
+
#: admin.inc.php:360
|
203 |
msgid "Quick links"
|
204 |
msgstr ""
|
205 |
|
206 |
#: admin.inc.php:302
|
207 |
+
#: admin.inc.php:362
|
208 |
msgid "Top 10 "
|
209 |
msgstr ""
|
210 |
|
211 |
#: admin.inc.php:302
|
212 |
+
#: admin.inc.php:362
|
213 |
msgid "plugin page"
|
214 |
msgstr ""
|
215 |
|
216 |
#: admin.inc.php:303
|
217 |
+
#: admin.inc.php:363
|
218 |
msgid "Other plugins"
|
219 |
msgstr ""
|
220 |
|
221 |
#: admin.inc.php:304
|
222 |
+
#: admin.inc.php:364
|
223 |
msgid "Ajay's blog"
|
224 |
msgstr ""
|
225 |
|
226 |
#: admin.inc.php:305
|
227 |
+
#: admin.inc.php:365
|
228 |
#: top-10.php:515
|
229 |
msgid "Support"
|
230 |
msgstr ""
|
231 |
|
232 |
#: admin.inc.php:306
|
233 |
+
#: admin.inc.php:366
|
234 |
msgid "Follow @ajaydsouza on Twitter"
|
235 |
msgstr ""
|
236 |
|
237 |
#: admin.inc.php:310
|
238 |
+
#: admin.inc.php:370
|
239 |
msgid "Recent developments"
|
240 |
msgstr ""
|
241 |
|
242 |
#: admin.inc.php:315
|
243 |
+
#: admin.inc.php:375
|
244 |
msgid "Support the development"
|
245 |
msgstr ""
|
246 |
|
247 |
#: admin.inc.php:323
|
248 |
+
#: admin.inc.php:383
|
249 |
msgid "Enter amount in USD: "
|
250 |
msgstr ""
|
251 |
|
252 |
#: admin.inc.php:327
|
253 |
+
#: admin.inc.php:387
|
254 |
msgid "Send your donation to the author of"
|
255 |
msgstr ""
|
256 |
|
257 |
#: admin.inc.php:347
|
258 |
+
#: admin.inc.php:414
|
259 |
+
#: admin.inc.php:618
|
260 |
#: top-10.php:257
|
261 |
#: top-10.php:273
|
262 |
#: top-10.php:445
|
268 |
msgid "Daily Popular Posts"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin.inc.php:412
|
272 |
+
#: admin.inc.php:414
|
273 |
msgid "Top 10"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:526
|
277 |
msgid "Results"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:528
|
281 |
+
#: admin.inc.php:534
|
282 |
msgid "of"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin.inc.php:532
|
286 |
msgid "Page"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:546
|
290 |
msgid "View Daily Popular Posts"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin.inc.php:550
|
294 |
msgid "View Overall Popular Posts"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin.inc.php:554
|
298 |
msgid "Results per-page:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:578
|
302 |
msgid "Previous"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:596
|
306 |
msgid "Next"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:619
|
310 |
#: top-10.php:219
|
311 |
#: top-10.php:235
|
312 |
#: top-10.php:446
|
314 |
msgid "Daily Popular"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin.inc.php:630
|
318 |
msgid "Total / Today's Views"
|
319 |
msgstr ""
|
320 |
|
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"
|
@@ -199,53 +199,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
199 |
msgstr ""
|
200 |
|
201 |
#: admin.inc.php:300
|
|
|
202 |
msgid "Quick links"
|
203 |
msgstr ""
|
204 |
|
205 |
#: admin.inc.php:302
|
|
|
206 |
msgid "Top 10 "
|
207 |
msgstr ""
|
208 |
|
209 |
#: admin.inc.php:302
|
|
|
210 |
msgid "plugin page"
|
211 |
msgstr ""
|
212 |
|
213 |
#: admin.inc.php:303
|
|
|
214 |
msgid "Other plugins"
|
215 |
msgstr ""
|
216 |
|
217 |
#: admin.inc.php:304
|
|
|
218 |
msgid "Ajay's blog"
|
219 |
msgstr ""
|
220 |
|
221 |
#: admin.inc.php:305
|
|
|
222 |
#: top-10.php:515
|
223 |
msgid "Support"
|
224 |
msgstr ""
|
225 |
|
226 |
#: admin.inc.php:306
|
|
|
227 |
msgid "Follow @ajaydsouza on Twitter"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin.inc.php:310
|
|
|
231 |
msgid "Recent developments"
|
232 |
msgstr ""
|
233 |
|
234 |
#: admin.inc.php:315
|
|
|
235 |
msgid "Support the development"
|
236 |
msgstr ""
|
237 |
|
238 |
#: admin.inc.php:323
|
|
|
239 |
msgid "Enter amount in USD: "
|
240 |
msgstr ""
|
241 |
|
242 |
#: admin.inc.php:327
|
|
|
243 |
msgid "Send your donation to the author of"
|
244 |
msgstr ""
|
245 |
|
246 |
#: admin.inc.php:347
|
247 |
-
#: admin.inc.php:
|
248 |
-
#: admin.inc.php:
|
249 |
#: top-10.php:257
|
250 |
#: top-10.php:273
|
251 |
#: top-10.php:445
|
@@ -257,45 +268,45 @@ msgstr ""
|
|
257 |
msgid "Daily Popular Posts"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Top 10"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Results"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "of"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid "Page"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "View Daily Popular Posts"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "View Overall Popular Posts"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Results per-page:"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Previous"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Next"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
#: top-10.php:219
|
300 |
#: top-10.php:235
|
301 |
#: top-10.php:446
|
@@ -303,7 +314,7 @@ msgstr ""
|
|
303 |
msgid "Daily Popular"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Total / Today's Views"
|
308 |
msgstr ""
|
309 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:42-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"
|
199 |
msgstr ""
|
200 |
|
201 |
#: admin.inc.php:300
|
202 |
+
#: admin.inc.php:360
|
203 |
msgid "Quick links"
|
204 |
msgstr ""
|
205 |
|
206 |
#: admin.inc.php:302
|
207 |
+
#: admin.inc.php:362
|
208 |
msgid "Top 10 "
|
209 |
msgstr ""
|
210 |
|
211 |
#: admin.inc.php:302
|
212 |
+
#: admin.inc.php:362
|
213 |
msgid "plugin page"
|
214 |
msgstr ""
|
215 |
|
216 |
#: admin.inc.php:303
|
217 |
+
#: admin.inc.php:363
|
218 |
msgid "Other plugins"
|
219 |
msgstr ""
|
220 |
|
221 |
#: admin.inc.php:304
|
222 |
+
#: admin.inc.php:364
|
223 |
msgid "Ajay's blog"
|
224 |
msgstr ""
|
225 |
|
226 |
#: admin.inc.php:305
|
227 |
+
#: admin.inc.php:365
|
228 |
#: top-10.php:515
|
229 |
msgid "Support"
|
230 |
msgstr ""
|
231 |
|
232 |
#: admin.inc.php:306
|
233 |
+
#: admin.inc.php:366
|
234 |
msgid "Follow @ajaydsouza on Twitter"
|
235 |
msgstr ""
|
236 |
|
237 |
#: admin.inc.php:310
|
238 |
+
#: admin.inc.php:370
|
239 |
msgid "Recent developments"
|
240 |
msgstr ""
|
241 |
|
242 |
#: admin.inc.php:315
|
243 |
+
#: admin.inc.php:375
|
244 |
msgid "Support the development"
|
245 |
msgstr ""
|
246 |
|
247 |
#: admin.inc.php:323
|
248 |
+
#: admin.inc.php:383
|
249 |
msgid "Enter amount in USD: "
|
250 |
msgstr ""
|
251 |
|
252 |
#: admin.inc.php:327
|
253 |
+
#: admin.inc.php:387
|
254 |
msgid "Send your donation to the author of"
|
255 |
msgstr ""
|
256 |
|
257 |
#: admin.inc.php:347
|
258 |
+
#: admin.inc.php:414
|
259 |
+
#: admin.inc.php:618
|
260 |
#: top-10.php:257
|
261 |
#: top-10.php:273
|
262 |
#: top-10.php:445
|
268 |
msgid "Daily Popular Posts"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin.inc.php:412
|
272 |
+
#: admin.inc.php:414
|
273 |
msgid "Top 10"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:526
|
277 |
msgid "Results"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:528
|
281 |
+
#: admin.inc.php:534
|
282 |
msgid "of"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin.inc.php:532
|
286 |
msgid "Page"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:546
|
290 |
msgid "View Daily Popular Posts"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin.inc.php:550
|
294 |
msgid "View Overall Popular Posts"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin.inc.php:554
|
298 |
msgid "Results per-page:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:578
|
302 |
msgid "Previous"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:596
|
306 |
msgid "Next"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:619
|
310 |
#: top-10.php:219
|
311 |
#: top-10.php:235
|
312 |
#: top-10.php:446
|
314 |
msgid "Daily Popular"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin.inc.php:630
|
318 |
msgid "Total / Today's Views"
|
319 |
msgstr ""
|
320 |
|
languages/tptn-es_ES.mo
ADDED
Binary file
|
languages/tptn-es_ES.po
ADDED
@@ -0,0 +1,344 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Top 10\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-11 21:57-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"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: English\n"
|
13 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
+
|
17 |
+
#: admin.inc.php:58
|
18 |
+
msgid "Options saved successfully."
|
19 |
+
msgstr "Configuraciones guardadas con éxito"
|
20 |
+
|
21 |
+
#: admin.inc.php:67
|
22 |
+
msgid "Options set to Default."
|
23 |
+
msgstr "Los parametros se configuran de manera predeterminada"
|
24 |
+
|
25 |
+
#: admin.inc.php:73
|
26 |
+
msgid "Top 10 popular posts reset"
|
27 |
+
msgstr "Reiniciar el Top de los 10 posts más populares"
|
28 |
+
|
29 |
+
#: admin.inc.php:79
|
30 |
+
msgid "Top 10 daily popular posts reset"
|
31 |
+
msgstr "Reiniciar el Top de los 10 posts diarios más populares"
|
32 |
+
|
33 |
+
#: admin.inc.php:86
|
34 |
+
msgid "Tables cleaned of duplicate rows"
|
35 |
+
msgstr "Las filas duplicadas han sido eliminadas"
|
36 |
+
|
37 |
+
#: admin.inc.php:98
|
38 |
+
msgid "Options:"
|
39 |
+
msgstr "Los parametros"
|
40 |
+
|
41 |
+
#: admin.inc.php:103
|
42 |
+
msgid "Format to display the count in: "
|
43 |
+
msgstr "El formato de visualización de la cuenta: "
|
44 |
+
|
45 |
+
#: admin.inc.php:107
|
46 |
+
msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
|
47 |
+
msgstr "Utilizar <code>%totalcount%</code> para mostrar el número total y <code>%dailycount%</code> para mostrar el número al día. Por ejemplo, los ajustes predeterminados se muestran<code> (Visitado 123 veces, 23 visitas hoy)</code>"
|
48 |
+
|
49 |
+
#: admin.inc.php:110
|
50 |
+
msgid "Number of popular posts to display: "
|
51 |
+
msgstr "Mostrar el número de posts más populares"
|
52 |
+
|
53 |
+
#: admin.inc.php:116
|
54 |
+
msgid "Daily Popular should contain views of how many days? "
|
55 |
+
msgstr "Los post diarios más populares deben contener el número de visitas al día"
|
56 |
+
|
57 |
+
#: admin.inc.php:123
|
58 |
+
msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
|
59 |
+
msgstr "¿Excluir la Páginas que muestran los posts más Populares? También será contado el número de visitas"
|
60 |
+
|
61 |
+
#: admin.inc.php:129
|
62 |
+
msgid "Display number of views on posts?"
|
63 |
+
msgstr "¿Mostrar la cantidad de audiencia de los posts?"
|
64 |
+
|
65 |
+
#: admin.inc.php:135
|
66 |
+
msgid "Display number of views on pages?"
|
67 |
+
msgstr "¿Mostrar el número de accesos a las páginas?"
|
68 |
+
|
69 |
+
#: admin.inc.php:141
|
70 |
+
msgid "Track visits of authors on their own posts?"
|
71 |
+
msgstr "¿Observar las visitas de los autores a sus propios posts?"
|
72 |
+
|
73 |
+
#: admin.inc.php:147
|
74 |
+
msgid "Display number of page views in popular lists?"
|
75 |
+
msgstr "¿Mostrar el número de visitas de la página en las listas más populares?"
|
76 |
+
|
77 |
+
#: admin.inc.php:153
|
78 |
+
msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
|
79 |
+
msgstr "¿Hacer la lista de los posts diarios más dinámica? Esta opción utiliza JavaScript para cargar el post y también puede aumentar el tiempo de carga"
|
80 |
+
|
81 |
+
#: admin.inc.php:159
|
82 |
+
msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
|
83 |
+
msgstr "¿Mostrar la cantidad de audiencias de la página en Editar los posts/las páginas en WP-Admin? Una columna adicional se agrega a la cuenta"
|
84 |
+
|
85 |
+
#: admin.inc.php:165
|
86 |
+
msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
|
87 |
+
msgstr "Un enlace al plugin se agrega al cuadro de los posts más populares, como un elemento de una lista adicional. Esto no es obligatorio, pero le agradeceríamos al hacerlo!"
|
88 |
+
|
89 |
+
#: admin.inc.php:169
|
90 |
+
msgid "Output Options:"
|
91 |
+
msgstr "Los Parámetros Resultantes"
|
92 |
+
|
93 |
+
#: admin.inc.php:173
|
94 |
+
msgid "Title of popular posts: "
|
95 |
+
msgstr "El título de los posts más populares"
|
96 |
+
|
97 |
+
#: admin.inc.php:179
|
98 |
+
msgid "Title of daily popular posts: "
|
99 |
+
msgstr "El título de los posts diarios más populares"
|
100 |
+
|
101 |
+
#: admin.inc.php:186
|
102 |
+
msgid "Show post excerpt in list?"
|
103 |
+
msgstr "¿Mostrar un fragmento del post en la lista?"
|
104 |
+
|
105 |
+
#: admin.inc.php:191
|
106 |
+
msgid "Length of excerpt (in words): "
|
107 |
+
msgstr "La longitud del fragmento(en palabras):"
|
108 |
+
|
109 |
+
#: admin.inc.php:195
|
110 |
+
msgid "Exclude Categories: "
|
111 |
+
msgstr "Excluir las Categorías"
|
112 |
+
|
113 |
+
#: admin.inc.php:210
|
114 |
+
msgid "Customize the output:"
|
115 |
+
msgstr "Personalizar el resultado:"
|
116 |
+
|
117 |
+
#: admin.inc.php:213
|
118 |
+
msgid "HTML to display before the list of posts: "
|
119 |
+
msgstr "HTML mostrar antes de la lista de posts:"
|
120 |
+
|
121 |
+
#: admin.inc.php:219
|
122 |
+
msgid "HTML to display before each list item: "
|
123 |
+
msgstr "HTML mostrar ante cada elemento de la lista:"
|
124 |
+
|
125 |
+
#: admin.inc.php:225
|
126 |
+
msgid "HTML to display after each list item: "
|
127 |
+
msgstr "HTML mostrar después de cada elemento de la lista:"
|
128 |
+
|
129 |
+
#: admin.inc.php:231
|
130 |
+
msgid "HTML to display after the list of posts: "
|
131 |
+
msgstr "HTML mostrar después de la lista de posts:"
|
132 |
+
|
133 |
+
#: admin.inc.php:235
|
134 |
+
msgid "Post thumbnail options:"
|
135 |
+
msgstr "Los parámetros del thumbnail:"
|
136 |
+
|
137 |
+
#: admin.inc.php:239
|
138 |
+
msgid "Display thumbnails inline with posts, before title"
|
139 |
+
msgstr "Mostrar el thumbnails en línea con los posts, antes del título"
|
140 |
+
|
141 |
+
#: admin.inc.php:243
|
142 |
+
msgid "Display thumbnails inline with posts, after title"
|
143 |
+
msgstr "Mostrar el thumbnails en línea con los posts, después del título"
|
144 |
+
|
145 |
+
#: admin.inc.php:247
|
146 |
+
msgid "Display only thumbnails, no text"
|
147 |
+
msgstr "Mostrar solamente thumbnails, no el texto"
|
148 |
+
|
149 |
+
#: admin.inc.php:251
|
150 |
+
msgid "Do not display thumbnails, only text."
|
151 |
+
msgstr "No mostrar thumbnails, sólo el texto"
|
152 |
+
|
153 |
+
#: admin.inc.php:256
|
154 |
+
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
155 |
+
msgstr "Publicar el post con el enlace, con referencia a la imagen reducida (el enlace debe indicar a la imagen original)\""
|
156 |
+
|
157 |
+
#: admin.inc.php:263
|
158 |
+
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
159 |
+
msgstr "Si el parámetro postmeta no está instalado, entonces el plugin debería retirar la primera imagen del post. Esto puede retrasar la carga de su post, en caso que la primera imagen de los posts correspondientes es muy grande en tamaño de archivo "
|
160 |
+
|
161 |
+
#: admin.inc.php:266
|
162 |
+
msgid "Thumbnail dimensions:"
|
163 |
+
msgstr "La extensión de la imagen reducida:"
|
164 |
+
|
165 |
+
#: admin.inc.php:268
|
166 |
+
msgid "Max width: "
|
167 |
+
msgstr "El ancho máximo:"
|
168 |
+
|
169 |
+
#: admin.inc.php:273
|
170 |
+
msgid "Max height: "
|
171 |
+
msgstr "La altura máxima"
|
172 |
+
|
173 |
+
#: admin.inc.php:277
|
174 |
+
msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
|
175 |
+
msgstr "En caso de verificar el post y al no encontrar ninguna imagen reducida, hay que mostrar de forma predeterminada de la URL de abajo. Si no está verificado el post y tampoco está encontrada la imagen reducida, entonces no hay que mostrarla."
|
176 |
+
|
177 |
+
#: admin.inc.php:282
|
178 |
+
msgid "Do you want to set options to Default?"
|
179 |
+
msgstr "¿Quiere configurar las opciones de forma predeterminada?"
|
180 |
+
|
181 |
+
#: admin.inc.php:285
|
182 |
+
msgid "Reset count"
|
183 |
+
msgstr "Reiniciar los ajustes"
|
184 |
+
|
185 |
+
#: admin.inc.php:288
|
186 |
+
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
187 |
+
msgstr "Esta operación no puede ser anulada. Antes de anular, asegúrese de que si ha sido creada una copia de seguridad para su base de datos."
|
188 |
+
|
189 |
+
#: admin.inc.php:291
|
190 |
+
msgid "Are you sure you want to reset the popular posts?"
|
191 |
+
msgstr "¿Está seguro de que desea reiniciar los posts más populares?"
|
192 |
+
|
193 |
+
#: admin.inc.php:292
|
194 |
+
msgid "Are you sure you want to reset the daily popular posts?"
|
195 |
+
msgstr "¿Está seguro de que desea reiniciar los posts diarios más populares?"
|
196 |
+
|
197 |
+
#: admin.inc.php:293
|
198 |
+
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
199 |
+
msgstr "Esta acción eliminará las entradas duplicadas en las tablas. ¿Continuar?"
|
200 |
+
|
201 |
+
#: admin.inc.php:300
|
202 |
+
#: admin.inc.php:360
|
203 |
+
msgid "Quick links"
|
204 |
+
msgstr "Enlaces rápidos"
|
205 |
+
|
206 |
+
#: admin.inc.php:302
|
207 |
+
#: admin.inc.php:362
|
208 |
+
msgid "Top 10 "
|
209 |
+
msgstr "Тоp 10"
|
210 |
+
|
211 |
+
#: admin.inc.php:302
|
212 |
+
#: admin.inc.php:362
|
213 |
+
msgid "plugin page"
|
214 |
+
msgstr "página plugin"
|
215 |
+
|
216 |
+
#: admin.inc.php:303
|
217 |
+
#: admin.inc.php:363
|
218 |
+
msgid "Other plugins"
|
219 |
+
msgstr "Otros plugins"
|
220 |
+
|
221 |
+
#: admin.inc.php:304
|
222 |
+
#: admin.inc.php:364
|
223 |
+
msgid "Ajay's blog"
|
224 |
+
msgstr "Blog de Ajay"
|
225 |
+
|
226 |
+
#: admin.inc.php:305
|
227 |
+
#: admin.inc.php:365
|
228 |
+
#: top-10.php:515
|
229 |
+
msgid "Support"
|
230 |
+
msgstr "Apoyo"
|
231 |
+
|
232 |
+
#: admin.inc.php:306
|
233 |
+
#: admin.inc.php:366
|
234 |
+
msgid "Follow @ajaydsouza on Twitter"
|
235 |
+
msgstr "Seguir @ajaydsouza en Twitter"
|
236 |
+
|
237 |
+
#: admin.inc.php:310
|
238 |
+
#: admin.inc.php:370
|
239 |
+
msgid "Recent developments"
|
240 |
+
msgstr "Evolución reciente"
|
241 |
+
|
242 |
+
#: admin.inc.php:315
|
243 |
+
#: admin.inc.php:375
|
244 |
+
msgid "Support the development"
|
245 |
+
msgstr "Apoyar al elaborador"
|
246 |
+
|
247 |
+
#: admin.inc.php:323
|
248 |
+
#: admin.inc.php:383
|
249 |
+
msgid "Enter amount in USD: "
|
250 |
+
msgstr "Ingresar las cifras en USD"
|
251 |
+
|
252 |
+
#: admin.inc.php:327
|
253 |
+
#: admin.inc.php:387
|
254 |
+
msgid "Send your donation to the author of"
|
255 |
+
msgstr "Enviar su subvención al autor"
|
256 |
+
|
257 |
+
#: admin.inc.php:347
|
258 |
+
#: admin.inc.php:414
|
259 |
+
#: admin.inc.php:618
|
260 |
+
#: top-10.php:257
|
261 |
+
#: top-10.php:273
|
262 |
+
#: top-10.php:445
|
263 |
+
#: top-10.php:448
|
264 |
+
msgid "Popular Posts"
|
265 |
+
msgstr "Los posts más populares"
|
266 |
+
|
267 |
+
#: admin.inc.php:347
|
268 |
+
msgid "Daily Popular Posts"
|
269 |
+
msgstr "Los posts diarios más populares"
|
270 |
+
|
271 |
+
#: admin.inc.php:412
|
272 |
+
#: admin.inc.php:414
|
273 |
+
msgid "Top 10"
|
274 |
+
msgstr "Тоp 10"
|
275 |
+
|
276 |
+
#: admin.inc.php:526
|
277 |
+
msgid "Results"
|
278 |
+
msgstr "Resultados"
|
279 |
+
|
280 |
+
#: admin.inc.php:528
|
281 |
+
#: admin.inc.php:534
|
282 |
+
msgid "of"
|
283 |
+
msgstr "de, a "
|
284 |
+
|
285 |
+
#: admin.inc.php:532
|
286 |
+
msgid "Page"
|
287 |
+
msgstr "La página"
|
288 |
+
|
289 |
+
#: admin.inc.php:546
|
290 |
+
msgid "View Daily Popular Posts"
|
291 |
+
msgstr "Ver los posts diarios más populares"
|
292 |
+
|
293 |
+
#: admin.inc.php:550
|
294 |
+
msgid "View Overall Popular Posts"
|
295 |
+
msgstr "Ver los posts más populares"
|
296 |
+
|
297 |
+
#: admin.inc.php:554
|
298 |
+
msgid "Results per-page:"
|
299 |
+
msgstr "Los resultados por página:"
|
300 |
+
|
301 |
+
#: admin.inc.php:578
|
302 |
+
msgid "Previous"
|
303 |
+
msgstr "Precedentes"
|
304 |
+
|
305 |
+
#: admin.inc.php:596
|
306 |
+
msgid "Next"
|
307 |
+
msgstr "Siguientes"
|
308 |
+
|
309 |
+
#: admin.inc.php:619
|
310 |
+
#: top-10.php:219
|
311 |
+
#: top-10.php:235
|
312 |
+
#: top-10.php:446
|
313 |
+
#: top-10.php:449
|
314 |
+
msgid "Daily Popular"
|
315 |
+
msgstr "Diario Populares"
|
316 |
+
|
317 |
+
#: admin.inc.php:630
|
318 |
+
msgid "Total / Today's Views"
|
319 |
+
msgstr "Total/Visitas de hoy"
|
320 |
+
|
321 |
+
#: top-10.php:218
|
322 |
+
msgid "Display the posts popular today"
|
323 |
+
msgstr "Mostrar los posts populares de hoy"
|
324 |
+
|
325 |
+
#: top-10.php:256
|
326 |
+
msgid "Display the posts popular this week"
|
327 |
+
msgstr "Mostrar los posts populares de esta semana"
|
328 |
+
|
329 |
+
#: top-10.php:286
|
330 |
+
msgid "<h3>Popular Posts</h3>"
|
331 |
+
msgstr "Los posts populares"
|
332 |
+
|
333 |
+
#: top-10.php:287
|
334 |
+
msgid "<h3>Daily Popular</h3>"
|
335 |
+
msgstr "Diario Populares"
|
336 |
+
|
337 |
+
#: top-10.php:514
|
338 |
+
msgid "Settings"
|
339 |
+
msgstr "Los ajustes"
|
340 |
+
|
341 |
+
#: top-10.php:516
|
342 |
+
msgid "Donate"
|
343 |
+
msgstr "Subvencionar"
|
344 |
+
|
languages/tptn-fr_FR.mo
CHANGED
Binary file
|
languages/tptn-fr_FR.po
CHANGED
@@ -2,38 +2,37 @@ 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:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language:
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
15 |
-
"X-Poedit-Country: FRANCE\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
#: admin.inc.php:58
|
19 |
msgid "Options saved successfully."
|
20 |
-
msgstr "
|
21 |
|
22 |
#: admin.inc.php:67
|
23 |
msgid "Options set to Default."
|
24 |
-
msgstr "Options
|
25 |
|
26 |
#: admin.inc.php:73
|
27 |
msgid "Top 10 popular posts reset"
|
28 |
-
msgstr "
|
29 |
|
30 |
#: admin.inc.php:79
|
31 |
msgid "Top 10 daily popular posts reset"
|
32 |
-
msgstr "
|
33 |
|
34 |
#: admin.inc.php:86
|
35 |
msgid "Tables cleaned of duplicate rows"
|
36 |
-
msgstr "
|
37 |
|
38 |
#: admin.inc.php:98
|
39 |
msgid "Options:"
|
@@ -41,294 +40,305 @@ msgstr "Options:"
|
|
41 |
|
42 |
#: admin.inc.php:103
|
43 |
msgid "Format to display the count in: "
|
44 |
-
msgstr "Format d
|
45 |
|
46 |
#: admin.inc.php:107
|
47 |
msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
|
48 |
-
msgstr "
|
49 |
|
50 |
#: admin.inc.php:110
|
51 |
msgid "Number of popular posts to display: "
|
52 |
-
msgstr "
|
53 |
|
54 |
#: admin.inc.php:116
|
55 |
msgid "Daily Popular should contain views of how many days? "
|
56 |
-
msgstr "
|
57 |
|
58 |
#: admin.inc.php:123
|
59 |
msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
|
60 |
-
msgstr "
|
61 |
|
62 |
#: admin.inc.php:129
|
63 |
msgid "Display number of views on posts?"
|
64 |
-
msgstr "Afficher le
|
65 |
|
66 |
#: admin.inc.php:135
|
67 |
msgid "Display number of views on pages?"
|
68 |
-
msgstr "Afficher le
|
69 |
|
70 |
#: admin.inc.php:141
|
71 |
msgid "Track visits of authors on their own posts?"
|
72 |
-
msgstr "
|
73 |
|
74 |
#: admin.inc.php:147
|
75 |
msgid "Display number of page views in popular lists?"
|
76 |
-
msgstr "Afficher
|
77 |
|
78 |
#: admin.inc.php:153
|
79 |
msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
|
80 |
-
msgstr "
|
81 |
|
82 |
#: admin.inc.php:159
|
83 |
msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
|
84 |
-
msgstr "Afficher le
|
85 |
|
86 |
#: admin.inc.php:165
|
87 |
msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
|
88 |
-
msgstr "
|
89 |
|
90 |
#: admin.inc.php:169
|
91 |
msgid "Output Options:"
|
92 |
-
msgstr "
|
93 |
|
94 |
#: admin.inc.php:173
|
95 |
msgid "Title of popular posts: "
|
96 |
-
msgstr "
|
97 |
|
98 |
#: admin.inc.php:179
|
99 |
msgid "Title of daily popular posts: "
|
100 |
-
msgstr "
|
101 |
|
102 |
#: admin.inc.php:186
|
103 |
msgid "Show post excerpt in list?"
|
104 |
-
msgstr "
|
105 |
|
106 |
#: admin.inc.php:191
|
107 |
msgid "Length of excerpt (in words): "
|
108 |
-
msgstr "Longueur
|
109 |
|
110 |
#: admin.inc.php:195
|
111 |
msgid "Exclude Categories: "
|
112 |
-
msgstr "Exclure
|
113 |
|
114 |
#: admin.inc.php:210
|
115 |
msgid "Customize the output:"
|
116 |
-
msgstr "
|
117 |
|
118 |
#: admin.inc.php:213
|
119 |
msgid "HTML to display before the list of posts: "
|
120 |
-
msgstr "HTML
|
121 |
|
122 |
#: admin.inc.php:219
|
123 |
msgid "HTML to display before each list item: "
|
124 |
-
msgstr "HTML
|
125 |
|
126 |
#: admin.inc.php:225
|
127 |
msgid "HTML to display after each list item: "
|
128 |
-
msgstr "HTML
|
129 |
|
130 |
#: admin.inc.php:231
|
131 |
msgid "HTML to display after the list of posts: "
|
132 |
-
msgstr "HTML
|
133 |
|
134 |
#: admin.inc.php:235
|
135 |
msgid "Post thumbnail options:"
|
136 |
-
msgstr "
|
137 |
|
138 |
#: admin.inc.php:239
|
139 |
msgid "Display thumbnails inline with posts, before title"
|
140 |
-
msgstr "
|
141 |
|
142 |
#: admin.inc.php:243
|
143 |
msgid "Display thumbnails inline with posts, after title"
|
144 |
-
msgstr "
|
145 |
|
146 |
#: admin.inc.php:247
|
147 |
msgid "Display only thumbnails, no text"
|
148 |
-
msgstr "
|
149 |
|
150 |
#: admin.inc.php:251
|
151 |
msgid "Do not display thumbnails, only text."
|
152 |
-
msgstr "
|
153 |
|
154 |
#: admin.inc.php:256
|
155 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
156 |
-
msgstr "
|
157 |
|
158 |
#: admin.inc.php:263
|
159 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
160 |
-
msgstr "Si le
|
161 |
|
162 |
#: admin.inc.php:266
|
163 |
msgid "Thumbnail dimensions:"
|
164 |
-
msgstr "
|
165 |
|
166 |
#: admin.inc.php:268
|
167 |
msgid "Max width: "
|
168 |
-
msgstr "Largeur
|
169 |
|
170 |
#: admin.inc.php:273
|
171 |
msgid "Max height: "
|
172 |
-
msgstr "
|
173 |
|
174 |
#: admin.inc.php:277
|
175 |
msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
|
176 |
-
msgstr "
|
177 |
|
178 |
#: admin.inc.php:282
|
179 |
msgid "Do you want to set options to Default?"
|
180 |
-
msgstr "
|
181 |
|
182 |
#: admin.inc.php:285
|
183 |
msgid "Reset count"
|
184 |
-
msgstr "
|
185 |
|
186 |
#: admin.inc.php:288
|
187 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
188 |
-
msgstr "
|
189 |
|
190 |
#: admin.inc.php:291
|
191 |
msgid "Are you sure you want to reset the popular posts?"
|
192 |
-
msgstr "
|
193 |
|
194 |
#: admin.inc.php:292
|
195 |
msgid "Are you sure you want to reset the daily popular posts?"
|
196 |
-
msgstr "
|
197 |
|
198 |
#: admin.inc.php:293
|
199 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
200 |
-
msgstr "
|
201 |
|
202 |
#: admin.inc.php:300
|
|
|
203 |
msgid "Quick links"
|
204 |
-
msgstr "Liens
|
205 |
|
206 |
#: admin.inc.php:302
|
|
|
207 |
msgid "Top 10 "
|
208 |
-
msgstr "
|
209 |
|
210 |
#: admin.inc.php:302
|
|
|
211 |
msgid "plugin page"
|
212 |
-
msgstr "Page
|
213 |
|
214 |
#: admin.inc.php:303
|
|
|
215 |
msgid "Other plugins"
|
216 |
-
msgstr "Autres
|
217 |
|
218 |
#: admin.inc.php:304
|
|
|
219 |
msgid "Ajay's blog"
|
220 |
-
msgstr "
|
221 |
|
222 |
#: admin.inc.php:305
|
|
|
223 |
#: top-10.php:515
|
224 |
msgid "Support"
|
225 |
-
msgstr "
|
226 |
|
227 |
#: admin.inc.php:306
|
|
|
228 |
msgid "Follow @ajaydsouza on Twitter"
|
229 |
-
msgstr "
|
230 |
|
231 |
#: admin.inc.php:310
|
|
|
232 |
msgid "Recent developments"
|
233 |
-
msgstr "
|
234 |
|
235 |
#: admin.inc.php:315
|
|
|
236 |
msgid "Support the development"
|
237 |
-
msgstr "Soutenir le
|
238 |
|
239 |
#: admin.inc.php:323
|
|
|
240 |
msgid "Enter amount in USD: "
|
241 |
-
msgstr "
|
242 |
|
243 |
#: admin.inc.php:327
|
|
|
244 |
msgid "Send your donation to the author of"
|
245 |
-
msgstr "Envoyer
|
246 |
|
247 |
#: admin.inc.php:347
|
248 |
-
#: admin.inc.php:
|
249 |
-
#: admin.inc.php:
|
250 |
#: top-10.php:257
|
251 |
#: top-10.php:273
|
252 |
#: top-10.php:445
|
253 |
#: top-10.php:448
|
254 |
msgid "Popular Posts"
|
255 |
-
msgstr "
|
256 |
|
257 |
#: admin.inc.php:347
|
258 |
msgid "Daily Popular Posts"
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Top 10"
|
264 |
-
msgstr "
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Results"
|
268 |
-
msgstr "
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "of"
|
273 |
-
msgstr "de"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Page"
|
277 |
-
msgstr "
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "View Daily Popular Posts"
|
281 |
-
msgstr "Voir les
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "View Overall Popular Posts"
|
285 |
-
msgstr "Voir
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Results per-page:"
|
289 |
-
msgstr "
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Previous"
|
293 |
-
msgstr "
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Next"
|
297 |
msgstr "Suivante"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#: top-10.php:219
|
301 |
#: top-10.php:235
|
302 |
#: top-10.php:446
|
303 |
#: top-10.php:449
|
304 |
msgid "Daily Popular"
|
305 |
-
msgstr "
|
306 |
|
307 |
-
#: admin.inc.php:
|
308 |
msgid "Total / Today's Views"
|
309 |
-
msgstr "Total
|
310 |
|
311 |
#: top-10.php:218
|
312 |
msgid "Display the posts popular today"
|
313 |
-
msgstr "Afficher les
|
314 |
|
315 |
#: top-10.php:256
|
316 |
msgid "Display the posts popular this week"
|
317 |
-
msgstr "Afficher les
|
318 |
|
319 |
#: top-10.php:286
|
320 |
msgid "<h3>Popular Posts</h3>"
|
321 |
-
msgstr "<h3>
|
322 |
|
323 |
#: top-10.php:287
|
324 |
msgid "<h3>Daily Popular</h3>"
|
325 |
-
msgstr "<h3>
|
326 |
|
327 |
#: top-10.php:514
|
328 |
msgid "Settings"
|
329 |
-
msgstr "
|
330 |
|
331 |
#: top-10.php:516
|
332 |
msgid "Donate"
|
333 |
-
msgstr "
|
334 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-30 22:33-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"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: English\n"
|
13 |
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
"X-Poedit-Basepath: ../\n"
|
|
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
#: admin.inc.php:58
|
18 |
msgid "Options saved successfully."
|
19 |
+
msgstr "Les options sont sauvegardées avec succès"
|
20 |
|
21 |
#: admin.inc.php:67
|
22 |
msgid "Options set to Default."
|
23 |
+
msgstr "Options par défaut sont définies"
|
24 |
|
25 |
#: admin.inc.php:73
|
26 |
msgid "Top 10 popular posts reset"
|
27 |
+
msgstr "Annuler le top 10 des enregistrements les plus populaires"
|
28 |
|
29 |
#: admin.inc.php:79
|
30 |
msgid "Top 10 daily popular posts reset"
|
31 |
+
msgstr "Annuler le top 10 des messages les plus populaires journaliers"
|
32 |
|
33 |
#: admin.inc.php:86
|
34 |
msgid "Tables cleaned of duplicate rows"
|
35 |
+
msgstr "Supprimer les lignes répétitives du tableau"
|
36 |
|
37 |
#: admin.inc.php:98
|
38 |
msgid "Options:"
|
40 |
|
41 |
#: admin.inc.php:103
|
42 |
msgid "Format to display the count in: "
|
43 |
+
msgstr "Format d’affichage de la quantité en:"
|
44 |
|
45 |
#: admin.inc.php:107
|
46 |
msgid "Use <code>%totalcount%</code> to display the total count and <code>%dailycount%</code> to display the daily count. e.g. the default options displays <code>(Visited 123 times, 23 visits today)</code>"
|
47 |
+
msgstr "Appliquer <code>%totalcount%</code> pour l'affichage de la quantité totale, et code>%dailycount%</code> pour l'affichage des quantités journalières utiliser par exemple, les paramètres d'affichage par défaut <code>(Visited 123 times, 23 visits today)</code>"
|
48 |
|
49 |
#: admin.inc.php:110
|
50 |
msgid "Number of popular posts to display: "
|
51 |
+
msgstr "Le nombre de populaires sur le forum"
|
52 |
|
53 |
#: admin.inc.php:116
|
54 |
msgid "Daily Popular should contain views of how many days? "
|
55 |
+
msgstr "Le populaire journalier doit contenir l'information sur le nombre des jours"
|
56 |
|
57 |
#: admin.inc.php:123
|
58 |
msgid "Exclude Pages in display of Popular Posts? Number of views on Pages will continue to be counted."
|
59 |
+
msgstr "Éliminer d'affichage les pages du message populaire? Le nombre des visionnage des pages qui seront toujours prises en compte."
|
60 |
|
61 |
#: admin.inc.php:129
|
62 |
msgid "Display number of views on posts?"
|
63 |
+
msgstr "Afficher le nombre des visionnages du message?"
|
64 |
|
65 |
#: admin.inc.php:135
|
66 |
msgid "Display number of views on pages?"
|
67 |
+
msgstr "Afficher le nombre des visionnages sur les pages?"
|
68 |
|
69 |
#: admin.inc.php:141
|
70 |
msgid "Track visits of authors on their own posts?"
|
71 |
+
msgstr "Suivre les visites des auteurs de leurs propres messages?"
|
72 |
|
73 |
#: admin.inc.php:147
|
74 |
msgid "Display number of page views in popular lists?"
|
75 |
+
msgstr "Afficher le nombre des visionnages des pages dans les listes de popularité?"
|
76 |
|
77 |
#: admin.inc.php:153
|
78 |
msgid "Force daily posts' list to be dynamic? This option uses JavaScript to load the post and can increase your page load time"
|
79 |
+
msgstr "Rendre la liste des postes journaliers dynamiques? Cette option fait appel à JavaScript, le chargement du poste peut augmenter le temps du chargement de la page"
|
80 |
|
81 |
#: admin.inc.php:159
|
82 |
msgid "Display page views on Edit posts/pages in WP-Admin? An extra column is added with the count"
|
83 |
+
msgstr "Afficher les visionnages des pages dans le rédacteur de messages / pages de WP-Admin? Une colonne supplémentaire avec graphe est rajoutée"
|
84 |
|
85 |
#: admin.inc.php:165
|
86 |
msgid "A link to the plugin is added as an extra list item to the list of popular posts. Not mandatory, but thanks if you do it!"
|
87 |
+
msgstr "Le lien vers le plugin en qualité d'élément complémentaire de la liste dans le répertoire des enregistrements populaires. Cela n'est pas obligatoire, mais nous vous y remercions!"
|
88 |
|
89 |
#: admin.inc.php:169
|
90 |
msgid "Output Options:"
|
91 |
+
msgstr "Paramètres de sortie"
|
92 |
|
93 |
#: admin.inc.php:173
|
94 |
msgid "Title of popular posts: "
|
95 |
+
msgstr "Les en-têtes des messages populaires"
|
96 |
|
97 |
#: admin.inc.php:179
|
98 |
msgid "Title of daily popular posts: "
|
99 |
+
msgstr "Les en-têtes des messages populaires journaliers"
|
100 |
|
101 |
#: admin.inc.php:186
|
102 |
msgid "Show post excerpt in list?"
|
103 |
+
msgstr "Afficher le fragment du message dans la liste?"
|
104 |
|
105 |
#: admin.inc.php:191
|
106 |
msgid "Length of excerpt (in words): "
|
107 |
+
msgstr "Longueur du fragment (mots):"
|
108 |
|
109 |
#: admin.inc.php:195
|
110 |
msgid "Exclude Categories: "
|
111 |
+
msgstr "Exclure les catégories:"
|
112 |
|
113 |
#: admin.inc.php:210
|
114 |
msgid "Customize the output:"
|
115 |
+
msgstr "Paramétrer la sortie:"
|
116 |
|
117 |
#: admin.inc.php:213
|
118 |
msgid "HTML to display before the list of posts: "
|
119 |
+
msgstr "HTML d'affichage avant la liste des messages:"
|
120 |
|
121 |
#: admin.inc.php:219
|
122 |
msgid "HTML to display before each list item: "
|
123 |
+
msgstr "HTML d'affichage avant chaque élément de la liste:"
|
124 |
|
125 |
#: admin.inc.php:225
|
126 |
msgid "HTML to display after each list item: "
|
127 |
+
msgstr "HTML d'affichage après chaque élément de la liste:"
|
128 |
|
129 |
#: admin.inc.php:231
|
130 |
msgid "HTML to display after the list of posts: "
|
131 |
+
msgstr "HTML d'affichage après la liste des messages:"
|
132 |
|
133 |
#: admin.inc.php:235
|
134 |
msgid "Post thumbnail options:"
|
135 |
+
msgstr "Options thumbnail des messages:"
|
136 |
|
137 |
#: admin.inc.php:239
|
138 |
msgid "Display thumbnails inline with posts, before title"
|
139 |
+
msgstr "Afficher le thumbnail encastré et les messages avant l'en-tête"
|
140 |
|
141 |
#: admin.inc.php:243
|
142 |
msgid "Display thumbnails inline with posts, after title"
|
143 |
+
msgstr "Afficher le thumbnail encastré et les messages après l'en-tête"
|
144 |
|
145 |
#: admin.inc.php:247
|
146 |
msgid "Display only thumbnails, no text"
|
147 |
+
msgstr "Afficher uniquement le thumbnail, sans le texte"
|
148 |
|
149 |
#: admin.inc.php:251
|
150 |
msgid "Do not display thumbnails, only text."
|
151 |
+
msgstr "Ne pas afficher le thumbnail, uniquement le texte"
|
152 |
|
153 |
#: admin.inc.php:256
|
154 |
msgid "Post thumbnail meta field (the meta should point to the image source): "
|
155 |
+
msgstr "Afficher meta field thumbnail, doit pointer sur l'image initiale:"
|
156 |
|
157 |
#: admin.inc.php:263
|
158 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
159 |
+
msgstr "Si le PostMeta n'est pas défini, alors le plugin doit extraire la première image du poste. Cela pourrait ralentir le chargement de votre poste, si la première image de la résolution correspondante du fichier est de taille supérieure"
|
160 |
|
161 |
#: admin.inc.php:266
|
162 |
msgid "Thumbnail dimensions:"
|
163 |
+
msgstr "Dimension thumbnail:"
|
164 |
|
165 |
#: admin.inc.php:268
|
166 |
msgid "Max width: "
|
167 |
+
msgstr "Largeur maximale:"
|
168 |
|
169 |
#: admin.inc.php:273
|
170 |
msgid "Max height: "
|
171 |
+
msgstr "Hauteur maximale:"
|
172 |
|
173 |
#: admin.inc.php:277
|
174 |
msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
|
175 |
+
msgstr "S'il a été déterminé, que le thumbnail n'a pas été trouvé, afficher le Thumbnail par défaut. S'il n'a pas été déterminé, que le thumbnail n'a pas été retrouvé, ne pas afficher l'image."
|
176 |
|
177 |
#: admin.inc.php:282
|
178 |
msgid "Do you want to set options to Default?"
|
179 |
+
msgstr "Définir les paramètres par défaut?"
|
180 |
|
181 |
#: admin.inc.php:285
|
182 |
msgid "Reset count"
|
183 |
+
msgstr "Réinitialiser le compteur"
|
184 |
|
185 |
#: admin.inc.php:288
|
186 |
msgid "This cannot be reversed. Make sure that your database has been backed up before proceeding"
|
187 |
+
msgstr "Cette action ne peut être annulée. Assurez-vous que la base de données a été sauvegardée avant de poursuivre."
|
188 |
|
189 |
#: admin.inc.php:291
|
190 |
msgid "Are you sure you want to reset the popular posts?"
|
191 |
+
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires?"
|
192 |
|
193 |
#: admin.inc.php:292
|
194 |
msgid "Are you sure you want to reset the daily popular posts?"
|
195 |
+
msgstr "Êtes-vous sûr de vouloir annuler les postes populaires journaliers?"
|
196 |
|
197 |
#: admin.inc.php:293
|
198 |
msgid "This will delete the duplicate entries in the tables. Proceed?"
|
199 |
+
msgstr "Cela supprimera les doubles des enregistrements dans les tableaux. Continuer?"
|
200 |
|
201 |
#: admin.inc.php:300
|
202 |
+
#: admin.inc.php:360
|
203 |
msgid "Quick links"
|
204 |
+
msgstr "Liens rapides"
|
205 |
|
206 |
#: admin.inc.php:302
|
207 |
+
#: admin.inc.php:362
|
208 |
msgid "Top 10 "
|
209 |
+
msgstr "Тоp 10"
|
210 |
|
211 |
#: admin.inc.php:302
|
212 |
+
#: admin.inc.php:362
|
213 |
msgid "plugin page"
|
214 |
+
msgstr "Page de plugin"
|
215 |
|
216 |
#: admin.inc.php:303
|
217 |
+
#: admin.inc.php:363
|
218 |
msgid "Other plugins"
|
219 |
+
msgstr "Autres plugins"
|
220 |
|
221 |
#: admin.inc.php:304
|
222 |
+
#: admin.inc.php:364
|
223 |
msgid "Ajay's blog"
|
224 |
+
msgstr "Blog Ajay"
|
225 |
|
226 |
#: admin.inc.php:305
|
227 |
+
#: admin.inc.php:365
|
228 |
#: top-10.php:515
|
229 |
msgid "Support"
|
230 |
+
msgstr "Service d'assistance"
|
231 |
|
232 |
#: admin.inc.php:306
|
233 |
+
#: admin.inc.php:366
|
234 |
msgid "Follow @ajaydsouza on Twitter"
|
235 |
+
msgstr "Follow @ajaydsouza sur Twitter"
|
236 |
|
237 |
#: admin.inc.php:310
|
238 |
+
#: admin.inc.php:370
|
239 |
msgid "Recent developments"
|
240 |
+
msgstr "Les derniers projets"
|
241 |
|
242 |
#: admin.inc.php:315
|
243 |
+
#: admin.inc.php:375
|
244 |
msgid "Support the development"
|
245 |
+
msgstr "Soutenir le projet"
|
246 |
|
247 |
#: admin.inc.php:323
|
248 |
+
#: admin.inc.php:383
|
249 |
msgid "Enter amount in USD: "
|
250 |
+
msgstr "Saisir le montant en dollars US"
|
251 |
|
252 |
#: admin.inc.php:327
|
253 |
+
#: admin.inc.php:387
|
254 |
msgid "Send your donation to the author of"
|
255 |
+
msgstr "Envoyer sa dotation à l'auteur"
|
256 |
|
257 |
#: admin.inc.php:347
|
258 |
+
#: admin.inc.php:414
|
259 |
+
#: admin.inc.php:618
|
260 |
#: top-10.php:257
|
261 |
#: top-10.php:273
|
262 |
#: top-10.php:445
|
263 |
#: top-10.php:448
|
264 |
msgid "Popular Posts"
|
265 |
+
msgstr "Postes populaires"
|
266 |
|
267 |
#: admin.inc.php:347
|
268 |
msgid "Daily Popular Posts"
|
269 |
+
msgstr "Postes populaires journaliers"
|
270 |
|
271 |
+
#: admin.inc.php:412
|
272 |
+
#: admin.inc.php:414
|
273 |
msgid "Top 10"
|
274 |
+
msgstr "Тоp 10"
|
275 |
|
276 |
+
#: admin.inc.php:526
|
277 |
msgid "Results"
|
278 |
+
msgstr "Résultats"
|
279 |
|
280 |
+
#: admin.inc.php:528
|
281 |
+
#: admin.inc.php:534
|
282 |
msgid "of"
|
283 |
+
msgstr "de, du, de la, des"
|
284 |
|
285 |
+
#: admin.inc.php:532
|
286 |
msgid "Page"
|
287 |
+
msgstr "Page"
|
288 |
|
289 |
+
#: admin.inc.php:546
|
290 |
msgid "View Daily Popular Posts"
|
291 |
+
msgstr "Voir les postes populaires journaliers"
|
292 |
|
293 |
+
#: admin.inc.php:550
|
294 |
msgid "View Overall Popular Posts"
|
295 |
+
msgstr "Voir tous les postes populaires"
|
296 |
|
297 |
+
#: admin.inc.php:554
|
298 |
msgid "Results per-page:"
|
299 |
+
msgstr "Résultats par page:"
|
300 |
|
301 |
+
#: admin.inc.php:578
|
302 |
msgid "Previous"
|
303 |
+
msgstr "Précédente"
|
304 |
|
305 |
+
#: admin.inc.php:596
|
306 |
msgid "Next"
|
307 |
msgstr "Suivante"
|
308 |
|
309 |
+
#: admin.inc.php:619
|
310 |
#: top-10.php:219
|
311 |
#: top-10.php:235
|
312 |
#: top-10.php:446
|
313 |
#: top-10.php:449
|
314 |
msgid "Daily Popular"
|
315 |
+
msgstr "Populaires journaliers"
|
316 |
|
317 |
+
#: admin.inc.php:630
|
318 |
msgid "Total / Today's Views"
|
319 |
+
msgstr "Total/aujourd'hui visionnages"
|
320 |
|
321 |
#: top-10.php:218
|
322 |
msgid "Display the posts popular today"
|
323 |
+
msgstr "Afficher les postes populaires aujourd'hui"
|
324 |
|
325 |
#: top-10.php:256
|
326 |
msgid "Display the posts popular this week"
|
327 |
+
msgstr "Afficher les postes populaires de la semaine"
|
328 |
|
329 |
#: top-10.php:286
|
330 |
msgid "<h3>Popular Posts</h3>"
|
331 |
+
msgstr "<h3>Postes populaires</h3>"
|
332 |
|
333 |
#: top-10.php:287
|
334 |
msgid "<h3>Daily Popular</h3>"
|
335 |
+
msgstr "<h3>Populaires Journaliers</h3>"
|
336 |
|
337 |
#: top-10.php:514
|
338 |
msgid "Settings"
|
339 |
+
msgstr "Paramètres"
|
340 |
|
341 |
#: top-10.php:516
|
342 |
msgid "Donate"
|
343 |
+
msgstr "Conribuer"
|
344 |
|
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"
|
@@ -212,56 +212,67 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
212 |
msgstr ""
|
213 |
|
214 |
#: admin.inc.php:300
|
|
|
215 |
msgid "Quick links"
|
216 |
msgstr ""
|
217 |
|
218 |
#: admin.inc.php:302
|
|
|
219 |
#, fuzzy
|
220 |
msgid "Top 10 "
|
221 |
msgstr "Top 10"
|
222 |
|
223 |
#: admin.inc.php:302
|
|
|
224 |
msgid "plugin page"
|
225 |
msgstr ""
|
226 |
|
227 |
#: admin.inc.php:303
|
|
|
228 |
msgid "Other plugins"
|
229 |
msgstr ""
|
230 |
|
231 |
#: admin.inc.php:304
|
|
|
232 |
msgid "Ajay's blog"
|
233 |
msgstr ""
|
234 |
|
235 |
#: admin.inc.php:305
|
|
|
236 |
#: top-10.php:515
|
237 |
msgid "Support"
|
238 |
msgstr ""
|
239 |
|
240 |
#: admin.inc.php:306
|
|
|
241 |
msgid "Follow @ajaydsouza on Twitter"
|
242 |
msgstr ""
|
243 |
|
244 |
#: admin.inc.php:310
|
|
|
245 |
#, fuzzy
|
246 |
msgid "Recent developments"
|
247 |
msgstr "Tacú le Forbairt"
|
248 |
|
249 |
#: admin.inc.php:315
|
|
|
250 |
#, fuzzy
|
251 |
msgid "Support the development"
|
252 |
msgstr "Tacú le Forbairt"
|
253 |
|
254 |
#: admin.inc.php:323
|
|
|
255 |
msgid "Enter amount in USD: "
|
256 |
msgstr ""
|
257 |
|
258 |
#: admin.inc.php:327
|
|
|
259 |
msgid "Send your donation to the author of"
|
260 |
msgstr ""
|
261 |
|
262 |
#: admin.inc.php:347
|
263 |
-
#: admin.inc.php:
|
264 |
-
#: admin.inc.php:
|
265 |
#: top-10.php:257
|
266 |
#: top-10.php:273
|
267 |
#: top-10.php:445
|
@@ -273,45 +284,45 @@ msgstr "Poist Coitianta"
|
|
273 |
msgid "Daily Popular Posts"
|
274 |
msgstr "Poist Coitianta Laethúil"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "Top 10"
|
279 |
msgstr "Top 10"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "Results"
|
283 |
msgstr "torthaí"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "of"
|
288 |
msgstr "de"
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Page"
|
292 |
msgstr "Leathanach"
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "View Daily Popular Posts"
|
296 |
msgstr "Féach ar Poist sa lá Coitianta"
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid "View Overall Popular Posts"
|
300 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
301 |
|
302 |
-
#: admin.inc.php:
|
303 |
msgid "Results per-page:"
|
304 |
msgstr "Torthaí in aghaidh an-leathanach:"
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Previous"
|
308 |
msgstr "roimhe Seo"
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Next"
|
312 |
msgstr "Ar Aghaidh"
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
#: top-10.php:219
|
316 |
#: top-10.php:235
|
317 |
#: top-10.php:446
|
@@ -319,7 +330,7 @@ msgstr "Ar Aghaidh"
|
|
319 |
msgid "Daily Popular"
|
320 |
msgstr "laethúil Coitianta"
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid "Total / Today's Views"
|
324 |
msgstr "laethúil Coitianta"
|
325 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:43-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"
|
212 |
msgstr ""
|
213 |
|
214 |
#: admin.inc.php:300
|
215 |
+
#: admin.inc.php:360
|
216 |
msgid "Quick links"
|
217 |
msgstr ""
|
218 |
|
219 |
#: admin.inc.php:302
|
220 |
+
#: admin.inc.php:362
|
221 |
#, fuzzy
|
222 |
msgid "Top 10 "
|
223 |
msgstr "Top 10"
|
224 |
|
225 |
#: admin.inc.php:302
|
226 |
+
#: admin.inc.php:362
|
227 |
msgid "plugin page"
|
228 |
msgstr ""
|
229 |
|
230 |
#: admin.inc.php:303
|
231 |
+
#: admin.inc.php:363
|
232 |
msgid "Other plugins"
|
233 |
msgstr ""
|
234 |
|
235 |
#: admin.inc.php:304
|
236 |
+
#: admin.inc.php:364
|
237 |
msgid "Ajay's blog"
|
238 |
msgstr ""
|
239 |
|
240 |
#: admin.inc.php:305
|
241 |
+
#: admin.inc.php:365
|
242 |
#: top-10.php:515
|
243 |
msgid "Support"
|
244 |
msgstr ""
|
245 |
|
246 |
#: admin.inc.php:306
|
247 |
+
#: admin.inc.php:366
|
248 |
msgid "Follow @ajaydsouza on Twitter"
|
249 |
msgstr ""
|
250 |
|
251 |
#: admin.inc.php:310
|
252 |
+
#: admin.inc.php:370
|
253 |
#, fuzzy
|
254 |
msgid "Recent developments"
|
255 |
msgstr "Tacú le Forbairt"
|
256 |
|
257 |
#: admin.inc.php:315
|
258 |
+
#: admin.inc.php:375
|
259 |
#, fuzzy
|
260 |
msgid "Support the development"
|
261 |
msgstr "Tacú le Forbairt"
|
262 |
|
263 |
#: admin.inc.php:323
|
264 |
+
#: admin.inc.php:383
|
265 |
msgid "Enter amount in USD: "
|
266 |
msgstr ""
|
267 |
|
268 |
#: admin.inc.php:327
|
269 |
+
#: admin.inc.php:387
|
270 |
msgid "Send your donation to the author of"
|
271 |
msgstr ""
|
272 |
|
273 |
#: admin.inc.php:347
|
274 |
+
#: admin.inc.php:414
|
275 |
+
#: admin.inc.php:618
|
276 |
#: top-10.php:257
|
277 |
#: top-10.php:273
|
278 |
#: top-10.php:445
|
284 |
msgid "Daily Popular Posts"
|
285 |
msgstr "Poist Coitianta Laethúil"
|
286 |
|
287 |
+
#: admin.inc.php:412
|
288 |
+
#: admin.inc.php:414
|
289 |
msgid "Top 10"
|
290 |
msgstr "Top 10"
|
291 |
|
292 |
+
#: admin.inc.php:526
|
293 |
msgid "Results"
|
294 |
msgstr "torthaí"
|
295 |
|
296 |
+
#: admin.inc.php:528
|
297 |
+
#: admin.inc.php:534
|
298 |
msgid "of"
|
299 |
msgstr "de"
|
300 |
|
301 |
+
#: admin.inc.php:532
|
302 |
msgid "Page"
|
303 |
msgstr "Leathanach"
|
304 |
|
305 |
+
#: admin.inc.php:546
|
306 |
msgid "View Daily Popular Posts"
|
307 |
msgstr "Féach ar Poist sa lá Coitianta"
|
308 |
|
309 |
+
#: admin.inc.php:550
|
310 |
msgid "View Overall Popular Posts"
|
311 |
msgstr "Féach ar Poist Coitianta Foriomlán"
|
312 |
|
313 |
+
#: admin.inc.php:554
|
314 |
msgid "Results per-page:"
|
315 |
msgstr "Torthaí in aghaidh an-leathanach:"
|
316 |
|
317 |
+
#: admin.inc.php:578
|
318 |
msgid "Previous"
|
319 |
msgstr "roimhe Seo"
|
320 |
|
321 |
+
#: admin.inc.php:596
|
322 |
msgid "Next"
|
323 |
msgstr "Ar Aghaidh"
|
324 |
|
325 |
+
#: admin.inc.php:619
|
326 |
#: top-10.php:219
|
327 |
#: top-10.php:235
|
328 |
#: top-10.php:446
|
330 |
msgid "Daily Popular"
|
331 |
msgstr "laethúil Coitianta"
|
332 |
|
333 |
+
#: admin.inc.php:630
|
334 |
msgid "Total / Today's Views"
|
335 |
msgstr "laethúil Coitianta"
|
336 |
|
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"
|
@@ -208,55 +208,66 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
208 |
msgstr ""
|
209 |
|
210 |
#: admin.inc.php:300
|
|
|
211 |
msgid "Quick links"
|
212 |
msgstr ""
|
213 |
|
214 |
#: admin.inc.php:302
|
|
|
215 |
#, fuzzy
|
216 |
msgid "Top 10 "
|
217 |
msgstr "शीर्ष 10"
|
218 |
|
219 |
#: admin.inc.php:302
|
|
|
220 |
msgid "plugin page"
|
221 |
msgstr ""
|
222 |
|
223 |
#: admin.inc.php:303
|
|
|
224 |
msgid "Other plugins"
|
225 |
msgstr ""
|
226 |
|
227 |
#: admin.inc.php:304
|
|
|
228 |
msgid "Ajay's blog"
|
229 |
msgstr ""
|
230 |
|
231 |
#: admin.inc.php:305
|
|
|
232 |
#: top-10.php:515
|
233 |
msgid "Support"
|
234 |
msgstr ""
|
235 |
|
236 |
#: admin.inc.php:306
|
|
|
237 |
msgid "Follow @ajaydsouza on Twitter"
|
238 |
msgstr ""
|
239 |
|
240 |
#: admin.inc.php:310
|
|
|
241 |
msgid "Recent developments"
|
242 |
msgstr ""
|
243 |
|
244 |
#: admin.inc.php:315
|
|
|
245 |
#, fuzzy
|
246 |
msgid "Support the development"
|
247 |
msgstr "समर्थन विकास"
|
248 |
|
249 |
#: admin.inc.php:323
|
|
|
250 |
msgid "Enter amount in USD: "
|
251 |
msgstr ""
|
252 |
|
253 |
#: admin.inc.php:327
|
|
|
254 |
msgid "Send your donation to the author of"
|
255 |
msgstr ""
|
256 |
|
257 |
#: admin.inc.php:347
|
258 |
-
#: admin.inc.php:
|
259 |
-
#: admin.inc.php:
|
260 |
#: top-10.php:257
|
261 |
#: top-10.php:273
|
262 |
#: top-10.php:445
|
@@ -268,45 +279,45 @@ msgstr "लोकप्रिय पोस्ट्स "
|
|
268 |
msgid "Daily Popular Posts"
|
269 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Top 10"
|
274 |
msgstr "शीर्ष 10"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Results"
|
278 |
msgstr "परिणाम"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "of"
|
283 |
msgstr "का"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "Page"
|
287 |
msgstr "पृष्ठ"
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid "View Daily Popular Posts"
|
291 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "View Overall Popular Posts"
|
295 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
msgid "Results per-page:"
|
299 |
msgstr "प्रति परिणाम पृष्ठ:"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
msgid "Previous"
|
303 |
msgstr "पिछला"
|
304 |
|
305 |
-
#: admin.inc.php:
|
306 |
msgid "Next"
|
307 |
msgstr "अगला"
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
#: top-10.php:219
|
311 |
#: top-10.php:235
|
312 |
#: top-10.php:446
|
@@ -314,7 +325,7 @@ msgstr "अगला"
|
|
314 |
msgid "Daily Popular"
|
315 |
msgstr "दैनिक लोकप्रिय"
|
316 |
|
317 |
-
#: admin.inc.php:
|
318 |
msgid "Total / Today's Views"
|
319 |
msgstr "कुल / आज दर्शाव"
|
320 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:43-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"
|
208 |
msgstr ""
|
209 |
|
210 |
#: admin.inc.php:300
|
211 |
+
#: admin.inc.php:360
|
212 |
msgid "Quick links"
|
213 |
msgstr ""
|
214 |
|
215 |
#: admin.inc.php:302
|
216 |
+
#: admin.inc.php:362
|
217 |
#, fuzzy
|
218 |
msgid "Top 10 "
|
219 |
msgstr "शीर्ष 10"
|
220 |
|
221 |
#: admin.inc.php:302
|
222 |
+
#: admin.inc.php:362
|
223 |
msgid "plugin page"
|
224 |
msgstr ""
|
225 |
|
226 |
#: admin.inc.php:303
|
227 |
+
#: admin.inc.php:363
|
228 |
msgid "Other plugins"
|
229 |
msgstr ""
|
230 |
|
231 |
#: admin.inc.php:304
|
232 |
+
#: admin.inc.php:364
|
233 |
msgid "Ajay's blog"
|
234 |
msgstr ""
|
235 |
|
236 |
#: admin.inc.php:305
|
237 |
+
#: admin.inc.php:365
|
238 |
#: top-10.php:515
|
239 |
msgid "Support"
|
240 |
msgstr ""
|
241 |
|
242 |
#: admin.inc.php:306
|
243 |
+
#: admin.inc.php:366
|
244 |
msgid "Follow @ajaydsouza on Twitter"
|
245 |
msgstr ""
|
246 |
|
247 |
#: admin.inc.php:310
|
248 |
+
#: admin.inc.php:370
|
249 |
msgid "Recent developments"
|
250 |
msgstr ""
|
251 |
|
252 |
#: admin.inc.php:315
|
253 |
+
#: admin.inc.php:375
|
254 |
#, fuzzy
|
255 |
msgid "Support the development"
|
256 |
msgstr "समर्थन विकास"
|
257 |
|
258 |
#: admin.inc.php:323
|
259 |
+
#: admin.inc.php:383
|
260 |
msgid "Enter amount in USD: "
|
261 |
msgstr ""
|
262 |
|
263 |
#: admin.inc.php:327
|
264 |
+
#: admin.inc.php:387
|
265 |
msgid "Send your donation to the author of"
|
266 |
msgstr ""
|
267 |
|
268 |
#: admin.inc.php:347
|
269 |
+
#: admin.inc.php:414
|
270 |
+
#: admin.inc.php:618
|
271 |
#: top-10.php:257
|
272 |
#: top-10.php:273
|
273 |
#: top-10.php:445
|
279 |
msgid "Daily Popular Posts"
|
280 |
msgstr "दैनिक लोकप्रिय पोस्ट्स "
|
281 |
|
282 |
+
#: admin.inc.php:412
|
283 |
+
#: admin.inc.php:414
|
284 |
msgid "Top 10"
|
285 |
msgstr "शीर्ष 10"
|
286 |
|
287 |
+
#: admin.inc.php:526
|
288 |
msgid "Results"
|
289 |
msgstr "परिणाम"
|
290 |
|
291 |
+
#: admin.inc.php:528
|
292 |
+
#: admin.inc.php:534
|
293 |
msgid "of"
|
294 |
msgstr "का"
|
295 |
|
296 |
+
#: admin.inc.php:532
|
297 |
msgid "Page"
|
298 |
msgstr "पृष्ठ"
|
299 |
|
300 |
+
#: admin.inc.php:546
|
301 |
msgid "View Daily Popular Posts"
|
302 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
303 |
|
304 |
+
#: admin.inc.php:550
|
305 |
msgid "View Overall Popular Posts"
|
306 |
msgstr "देखें दैनिक लोकप्रिय पोस्ट्स "
|
307 |
|
308 |
+
#: admin.inc.php:554
|
309 |
msgid "Results per-page:"
|
310 |
msgstr "प्रति परिणाम पृष्ठ:"
|
311 |
|
312 |
+
#: admin.inc.php:578
|
313 |
msgid "Previous"
|
314 |
msgstr "पिछला"
|
315 |
|
316 |
+
#: admin.inc.php:596
|
317 |
msgid "Next"
|
318 |
msgstr "अगला"
|
319 |
|
320 |
+
#: admin.inc.php:619
|
321 |
#: top-10.php:219
|
322 |
#: top-10.php:235
|
323 |
#: top-10.php:446
|
325 |
msgid "Daily Popular"
|
326 |
msgstr "दैनिक लोकप्रिय"
|
327 |
|
328 |
+
#: admin.inc.php:630
|
329 |
msgid "Total / Today's Views"
|
330 |
msgstr "कुल / आज दर्शाव"
|
331 |
|
languages/tptn-it_IT.mo
CHANGED
Binary file
|
languages/tptn-it_IT.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Gianni Diurno |gidibao.net & charmingpress.com\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -200,53 +200,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
200 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
201 |
|
202 |
#: admin.inc.php:300
|
|
|
203 |
msgid "Quick links"
|
204 |
msgstr "Collegamenti veloci"
|
205 |
|
206 |
#: admin.inc.php:302
|
|
|
207 |
msgid "Top 10 "
|
208 |
msgstr "Top 10"
|
209 |
|
210 |
#: admin.inc.php:302
|
|
|
211 |
msgid "plugin page"
|
212 |
msgstr "pagina plugin"
|
213 |
|
214 |
#: admin.inc.php:303
|
|
|
215 |
msgid "Other plugins"
|
216 |
msgstr "Altri plugin"
|
217 |
|
218 |
#: admin.inc.php:304
|
|
|
219 |
msgid "Ajay's blog"
|
220 |
msgstr "Il blog di Ajay"
|
221 |
|
222 |
#: admin.inc.php:305
|
|
|
223 |
#: top-10.php:515
|
224 |
msgid "Support"
|
225 |
msgstr "Supporto"
|
226 |
|
227 |
#: admin.inc.php:306
|
|
|
228 |
msgid "Follow @ajaydsouza on Twitter"
|
229 |
msgstr "Segui @ajaydsouza su Twitter"
|
230 |
|
231 |
#: admin.inc.php:310
|
|
|
232 |
msgid "Recent developments"
|
233 |
msgstr "Sviluppi recenti"
|
234 |
|
235 |
#: admin.inc.php:315
|
|
|
236 |
msgid "Support the development"
|
237 |
msgstr "Sostieni lo sviluppo"
|
238 |
|
239 |
#: admin.inc.php:323
|
|
|
240 |
msgid "Enter amount in USD: "
|
241 |
msgstr "Inserisci la cifra in USD: "
|
242 |
|
243 |
#: admin.inc.php:327
|
|
|
244 |
msgid "Send your donation to the author of"
|
245 |
msgstr "Invia la tua donazione all'autore di"
|
246 |
|
247 |
#: admin.inc.php:347
|
248 |
-
#: admin.inc.php:
|
249 |
-
#: admin.inc.php:
|
250 |
#: top-10.php:257
|
251 |
#: top-10.php:273
|
252 |
#: top-10.php:445
|
@@ -258,45 +269,45 @@ msgstr "Gli articoli più popolari"
|
|
258 |
msgid "Daily Popular Posts"
|
259 |
msgstr "Gli articoli più popolari di oggi"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Top 10"
|
264 |
msgstr "Top 10"
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Results"
|
268 |
msgstr "Risultati"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "of"
|
273 |
msgstr "di"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Page"
|
277 |
msgstr "Pagina"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "View Daily Popular Posts"
|
281 |
msgstr "Visualizza gli articoli più letti di oggi"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "View Overall Popular Posts"
|
285 |
msgstr "Visualizza panoramica articoli più popolari"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Results per-page:"
|
289 |
msgstr "Risultati per pagina:"
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Previous"
|
293 |
msgstr "Precedente"
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Next"
|
297 |
msgstr "Successiva"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#: top-10.php:219
|
301 |
#: top-10.php:235
|
302 |
#: top-10.php:446
|
@@ -304,7 +315,7 @@ msgstr "Successiva"
|
|
304 |
msgid "Daily Popular"
|
305 |
msgstr "I più letti di oggi"
|
306 |
|
307 |
-
#: admin.inc.php:
|
308 |
msgid "Total / Today's Views"
|
309 |
msgstr "Totale / Visualizzazioni odierne"
|
310 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:42-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"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
200 |
msgstr "Questa operazione cancelerà i duplicati dalle tabelle. Procedi?"
|
201 |
|
202 |
#: admin.inc.php:300
|
203 |
+
#: admin.inc.php:360
|
204 |
msgid "Quick links"
|
205 |
msgstr "Collegamenti veloci"
|
206 |
|
207 |
#: admin.inc.php:302
|
208 |
+
#: admin.inc.php:362
|
209 |
msgid "Top 10 "
|
210 |
msgstr "Top 10"
|
211 |
|
212 |
#: admin.inc.php:302
|
213 |
+
#: admin.inc.php:362
|
214 |
msgid "plugin page"
|
215 |
msgstr "pagina plugin"
|
216 |
|
217 |
#: admin.inc.php:303
|
218 |
+
#: admin.inc.php:363
|
219 |
msgid "Other plugins"
|
220 |
msgstr "Altri plugin"
|
221 |
|
222 |
#: admin.inc.php:304
|
223 |
+
#: admin.inc.php:364
|
224 |
msgid "Ajay's blog"
|
225 |
msgstr "Il blog di Ajay"
|
226 |
|
227 |
#: admin.inc.php:305
|
228 |
+
#: admin.inc.php:365
|
229 |
#: top-10.php:515
|
230 |
msgid "Support"
|
231 |
msgstr "Supporto"
|
232 |
|
233 |
#: admin.inc.php:306
|
234 |
+
#: admin.inc.php:366
|
235 |
msgid "Follow @ajaydsouza on Twitter"
|
236 |
msgstr "Segui @ajaydsouza su Twitter"
|
237 |
|
238 |
#: admin.inc.php:310
|
239 |
+
#: admin.inc.php:370
|
240 |
msgid "Recent developments"
|
241 |
msgstr "Sviluppi recenti"
|
242 |
|
243 |
#: admin.inc.php:315
|
244 |
+
#: admin.inc.php:375
|
245 |
msgid "Support the development"
|
246 |
msgstr "Sostieni lo sviluppo"
|
247 |
|
248 |
#: admin.inc.php:323
|
249 |
+
#: admin.inc.php:383
|
250 |
msgid "Enter amount in USD: "
|
251 |
msgstr "Inserisci la cifra in USD: "
|
252 |
|
253 |
#: admin.inc.php:327
|
254 |
+
#: admin.inc.php:387
|
255 |
msgid "Send your donation to the author of"
|
256 |
msgstr "Invia la tua donazione all'autore di"
|
257 |
|
258 |
#: admin.inc.php:347
|
259 |
+
#: admin.inc.php:414
|
260 |
+
#: admin.inc.php:618
|
261 |
#: top-10.php:257
|
262 |
#: top-10.php:273
|
263 |
#: top-10.php:445
|
269 |
msgid "Daily Popular Posts"
|
270 |
msgstr "Gli articoli più popolari di oggi"
|
271 |
|
272 |
+
#: admin.inc.php:412
|
273 |
+
#: admin.inc.php:414
|
274 |
msgid "Top 10"
|
275 |
msgstr "Top 10"
|
276 |
|
277 |
+
#: admin.inc.php:526
|
278 |
msgid "Results"
|
279 |
msgstr "Risultati"
|
280 |
|
281 |
+
#: admin.inc.php:528
|
282 |
+
#: admin.inc.php:534
|
283 |
msgid "of"
|
284 |
msgstr "di"
|
285 |
|
286 |
+
#: admin.inc.php:532
|
287 |
msgid "Page"
|
288 |
msgstr "Pagina"
|
289 |
|
290 |
+
#: admin.inc.php:546
|
291 |
msgid "View Daily Popular Posts"
|
292 |
msgstr "Visualizza gli articoli più letti di oggi"
|
293 |
|
294 |
+
#: admin.inc.php:550
|
295 |
msgid "View Overall Popular Posts"
|
296 |
msgstr "Visualizza panoramica articoli più popolari"
|
297 |
|
298 |
+
#: admin.inc.php:554
|
299 |
msgid "Results per-page:"
|
300 |
msgstr "Risultati per pagina:"
|
301 |
|
302 |
+
#: admin.inc.php:578
|
303 |
msgid "Previous"
|
304 |
msgstr "Precedente"
|
305 |
|
306 |
+
#: admin.inc.php:596
|
307 |
msgid "Next"
|
308 |
msgstr "Successiva"
|
309 |
|
310 |
+
#: admin.inc.php:619
|
311 |
#: top-10.php:219
|
312 |
#: top-10.php:235
|
313 |
#: top-10.php:446
|
315 |
msgid "Daily Popular"
|
316 |
msgstr "I più letti di oggi"
|
317 |
|
318 |
+
#: admin.inc.php:630
|
319 |
msgid "Total / Today's Views"
|
320 |
msgstr "Totale / Visualizzazioni odierne"
|
321 |
|
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"
|
@@ -206,53 +206,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
206 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
207 |
|
208 |
#: admin.inc.php:300
|
|
|
209 |
msgid "Quick links"
|
210 |
msgstr "Quick links"
|
211 |
|
212 |
#: admin.inc.php:302
|
|
|
213 |
msgid "Top 10 "
|
214 |
msgstr "Top 10 "
|
215 |
|
216 |
#: admin.inc.php:302
|
|
|
217 |
msgid "plugin page"
|
218 |
msgstr "plugin pagina"
|
219 |
|
220 |
#: admin.inc.php:303
|
|
|
221 |
msgid "Other plugins"
|
222 |
msgstr "Andere plugins"
|
223 |
|
224 |
#: admin.inc.php:304
|
|
|
225 |
msgid "Ajay's blog"
|
226 |
msgstr "De blog van Ajay"
|
227 |
|
228 |
#: admin.inc.php:305
|
|
|
229 |
#: top-10.php:515
|
230 |
msgid "Support"
|
231 |
msgstr "Ondersteuning"
|
232 |
|
233 |
#: admin.inc.php:306
|
|
|
234 |
msgid "Follow @ajaydsouza on Twitter"
|
235 |
msgstr "Volg @ajaydsouza via Twitter"
|
236 |
|
237 |
#: admin.inc.php:310
|
|
|
238 |
msgid "Recent developments"
|
239 |
msgstr "Recente ontwikkelingen"
|
240 |
|
241 |
#: admin.inc.php:315
|
|
|
242 |
msgid "Support the development"
|
243 |
msgstr "Ondersteun de ontwikkeling"
|
244 |
|
245 |
#: admin.inc.php:323
|
|
|
246 |
msgid "Enter amount in USD: "
|
247 |
msgstr "Voer het bedrag in in USD:"
|
248 |
|
249 |
#: admin.inc.php:327
|
|
|
250 |
msgid "Send your donation to the author of"
|
251 |
msgstr "Zend je donatie naar de auteur van "
|
252 |
|
253 |
#: admin.inc.php:347
|
254 |
-
#: admin.inc.php:
|
255 |
-
#: admin.inc.php:
|
256 |
#: top-10.php:257
|
257 |
#: top-10.php:273
|
258 |
#: top-10.php:445
|
@@ -264,45 +275,45 @@ msgstr "Populaire Berichten"
|
|
264 |
msgid "Daily Popular Posts"
|
265 |
msgstr "Dagelijkse Populaire Berichten"
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Top 10"
|
270 |
msgstr "Top 10"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Results"
|
274 |
msgstr "Resultaten"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "of"
|
279 |
msgstr "van"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "Page"
|
283 |
msgstr "Pagina"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "View Daily Popular Posts"
|
287 |
msgstr "Bekijk de Dagelijkse Populaire Berichten"
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid "View Overall Popular Posts"
|
291 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Results per-page:"
|
295 |
msgstr "Resultaten per pagina:"
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
msgid "Previous"
|
299 |
msgstr "Vorige"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
msgid "Next"
|
303 |
msgstr "Volgende"
|
304 |
|
305 |
-
#: admin.inc.php:
|
306 |
#: top-10.php:219
|
307 |
#: top-10.php:235
|
308 |
#: top-10.php:446
|
@@ -310,7 +321,7 @@ msgstr "Volgende"
|
|
310 |
msgid "Daily Popular"
|
311 |
msgstr "Dagelijks Populair"
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
msgid "Total / Today's Views"
|
315 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
316 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10 v1.6.2\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:43-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"
|
206 |
msgstr "Hiermee verwijdert u de dubbele vermeldingen in de tabellen. Doorgaan?"
|
207 |
|
208 |
#: admin.inc.php:300
|
209 |
+
#: admin.inc.php:360
|
210 |
msgid "Quick links"
|
211 |
msgstr "Quick links"
|
212 |
|
213 |
#: admin.inc.php:302
|
214 |
+
#: admin.inc.php:362
|
215 |
msgid "Top 10 "
|
216 |
msgstr "Top 10 "
|
217 |
|
218 |
#: admin.inc.php:302
|
219 |
+
#: admin.inc.php:362
|
220 |
msgid "plugin page"
|
221 |
msgstr "plugin pagina"
|
222 |
|
223 |
#: admin.inc.php:303
|
224 |
+
#: admin.inc.php:363
|
225 |
msgid "Other plugins"
|
226 |
msgstr "Andere plugins"
|
227 |
|
228 |
#: admin.inc.php:304
|
229 |
+
#: admin.inc.php:364
|
230 |
msgid "Ajay's blog"
|
231 |
msgstr "De blog van Ajay"
|
232 |
|
233 |
#: admin.inc.php:305
|
234 |
+
#: admin.inc.php:365
|
235 |
#: top-10.php:515
|
236 |
msgid "Support"
|
237 |
msgstr "Ondersteuning"
|
238 |
|
239 |
#: admin.inc.php:306
|
240 |
+
#: admin.inc.php:366
|
241 |
msgid "Follow @ajaydsouza on Twitter"
|
242 |
msgstr "Volg @ajaydsouza via Twitter"
|
243 |
|
244 |
#: admin.inc.php:310
|
245 |
+
#: admin.inc.php:370
|
246 |
msgid "Recent developments"
|
247 |
msgstr "Recente ontwikkelingen"
|
248 |
|
249 |
#: admin.inc.php:315
|
250 |
+
#: admin.inc.php:375
|
251 |
msgid "Support the development"
|
252 |
msgstr "Ondersteun de ontwikkeling"
|
253 |
|
254 |
#: admin.inc.php:323
|
255 |
+
#: admin.inc.php:383
|
256 |
msgid "Enter amount in USD: "
|
257 |
msgstr "Voer het bedrag in in USD:"
|
258 |
|
259 |
#: admin.inc.php:327
|
260 |
+
#: admin.inc.php:387
|
261 |
msgid "Send your donation to the author of"
|
262 |
msgstr "Zend je donatie naar de auteur van "
|
263 |
|
264 |
#: admin.inc.php:347
|
265 |
+
#: admin.inc.php:414
|
266 |
+
#: admin.inc.php:618
|
267 |
#: top-10.php:257
|
268 |
#: top-10.php:273
|
269 |
#: top-10.php:445
|
275 |
msgid "Daily Popular Posts"
|
276 |
msgstr "Dagelijkse Populaire Berichten"
|
277 |
|
278 |
+
#: admin.inc.php:412
|
279 |
+
#: admin.inc.php:414
|
280 |
msgid "Top 10"
|
281 |
msgstr "Top 10"
|
282 |
|
283 |
+
#: admin.inc.php:526
|
284 |
msgid "Results"
|
285 |
msgstr "Resultaten"
|
286 |
|
287 |
+
#: admin.inc.php:528
|
288 |
+
#: admin.inc.php:534
|
289 |
msgid "of"
|
290 |
msgstr "van"
|
291 |
|
292 |
+
#: admin.inc.php:532
|
293 |
msgid "Page"
|
294 |
msgstr "Pagina"
|
295 |
|
296 |
+
#: admin.inc.php:546
|
297 |
msgid "View Daily Popular Posts"
|
298 |
msgstr "Bekijk de Dagelijkse Populaire Berichten"
|
299 |
|
300 |
+
#: admin.inc.php:550
|
301 |
msgid "View Overall Popular Posts"
|
302 |
msgstr "Bekijk het Totaal Populaire Berichten"
|
303 |
|
304 |
+
#: admin.inc.php:554
|
305 |
msgid "Results per-page:"
|
306 |
msgstr "Resultaten per pagina:"
|
307 |
|
308 |
+
#: admin.inc.php:578
|
309 |
msgid "Previous"
|
310 |
msgstr "Vorige"
|
311 |
|
312 |
+
#: admin.inc.php:596
|
313 |
msgid "Next"
|
314 |
msgstr "Volgende"
|
315 |
|
316 |
+
#: admin.inc.php:619
|
317 |
#: top-10.php:219
|
318 |
#: top-10.php:235
|
319 |
#: top-10.php:446
|
321 |
msgid "Daily Popular"
|
322 |
msgstr "Dagelijks Populair"
|
323 |
|
324 |
+
#: admin.inc.php:630
|
325 |
msgid "Total / Today's Views"
|
326 |
msgstr "Totale Weergaves / Weergaves van Vandaag"
|
327 |
|
languages/tptn-ru_RU.mo
CHANGED
Binary file
|
languages/tptn-ru_RU.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -200,53 +200,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
200 |
msgstr "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
201 |
|
202 |
#: admin.inc.php:300
|
|
|
203 |
msgid "Quick links"
|
204 |
msgstr "Полезные ссылки"
|
205 |
|
206 |
#: admin.inc.php:302
|
|
|
207 |
msgid "Top 10 "
|
208 |
msgstr "Топ 10 записей"
|
209 |
|
210 |
#: admin.inc.php:302
|
|
|
211 |
msgid "plugin page"
|
212 |
msgstr "страница плагина"
|
213 |
|
214 |
#: admin.inc.php:303
|
|
|
215 |
msgid "Other plugins"
|
216 |
msgstr "Другие плагины автора"
|
217 |
|
218 |
#: admin.inc.php:304
|
|
|
219 |
msgid "Ajay's blog"
|
220 |
msgstr "Блог Ajay"
|
221 |
|
222 |
#: admin.inc.php:305
|
|
|
223 |
#: top-10.php:515
|
224 |
msgid "Support"
|
225 |
msgstr "Поддержка (англ.)"
|
226 |
|
227 |
#: admin.inc.php:306
|
|
|
228 |
msgid "Follow @ajaydsouza on Twitter"
|
229 |
msgstr "Следуй за @ajaydsouza в Twitter"
|
230 |
|
231 |
#: admin.inc.php:310
|
|
|
232 |
msgid "Recent developments"
|
233 |
msgstr "Последние разработки"
|
234 |
|
235 |
#: admin.inc.php:315
|
|
|
236 |
msgid "Support the development"
|
237 |
msgstr "Поддержать автора плагина"
|
238 |
|
239 |
#: admin.inc.php:323
|
|
|
240 |
msgid "Enter amount in USD: "
|
241 |
msgstr "Сколько вы готовы пожертвовать (в USD):"
|
242 |
|
243 |
#: admin.inc.php:327
|
|
|
244 |
msgid "Send your donation to the author of"
|
245 |
msgstr "Отправьте пожертвование автору"
|
246 |
|
247 |
#: admin.inc.php:347
|
248 |
-
#: admin.inc.php:
|
249 |
-
#: admin.inc.php:
|
250 |
#: top-10.php:257
|
251 |
#: top-10.php:273
|
252 |
#: top-10.php:445
|
@@ -258,45 +269,45 @@ msgstr "Популярные записи"
|
|
258 |
msgid "Daily Popular Posts"
|
259 |
msgstr "Популярные сегодня записи"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Top 10"
|
264 |
msgstr "Топ 10 записей"
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Results"
|
268 |
msgstr "Результаты"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "of"
|
273 |
msgstr "из"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Page"
|
277 |
msgstr "Страница"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "View Daily Popular Posts"
|
281 |
msgstr "Посмотреть все Популярные сегодня записи"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "View Overall Popular Posts"
|
285 |
msgstr "Посмотреть все Популярные записи"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Results per-page:"
|
289 |
msgstr "Результатов на страницу:"
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Previous"
|
293 |
msgstr "Предыдущая страница"
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Next"
|
297 |
msgstr "Следующая страница"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#: top-10.php:219
|
301 |
#: top-10.php:235
|
302 |
#: top-10.php:446
|
@@ -304,7 +315,7 @@ msgstr "Следующая страница"
|
|
304 |
msgid "Daily Popular"
|
305 |
msgstr "Популярные сегодня записи"
|
306 |
|
307 |
-
#: admin.inc.php:
|
308 |
msgid "Total / Today's Views"
|
309 |
msgstr "Всего/Сегодня"
|
310 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Топ 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Elvis (fweb.org.ru) <kopper@rkmail.ru>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
200 |
msgstr "Будет произведено удаление дублирующихся щаписей из статистики. Продолжить?"
|
201 |
|
202 |
#: admin.inc.php:300
|
203 |
+
#: admin.inc.php:360
|
204 |
msgid "Quick links"
|
205 |
msgstr "Полезные ссылки"
|
206 |
|
207 |
#: admin.inc.php:302
|
208 |
+
#: admin.inc.php:362
|
209 |
msgid "Top 10 "
|
210 |
msgstr "Топ 10 записей"
|
211 |
|
212 |
#: admin.inc.php:302
|
213 |
+
#: admin.inc.php:362
|
214 |
msgid "plugin page"
|
215 |
msgstr "страница плагина"
|
216 |
|
217 |
#: admin.inc.php:303
|
218 |
+
#: admin.inc.php:363
|
219 |
msgid "Other plugins"
|
220 |
msgstr "Другие плагины автора"
|
221 |
|
222 |
#: admin.inc.php:304
|
223 |
+
#: admin.inc.php:364
|
224 |
msgid "Ajay's blog"
|
225 |
msgstr "Блог Ajay"
|
226 |
|
227 |
#: admin.inc.php:305
|
228 |
+
#: admin.inc.php:365
|
229 |
#: top-10.php:515
|
230 |
msgid "Support"
|
231 |
msgstr "Поддержка (англ.)"
|
232 |
|
233 |
#: admin.inc.php:306
|
234 |
+
#: admin.inc.php:366
|
235 |
msgid "Follow @ajaydsouza on Twitter"
|
236 |
msgstr "Следуй за @ajaydsouza в Twitter"
|
237 |
|
238 |
#: admin.inc.php:310
|
239 |
+
#: admin.inc.php:370
|
240 |
msgid "Recent developments"
|
241 |
msgstr "Последние разработки"
|
242 |
|
243 |
#: admin.inc.php:315
|
244 |
+
#: admin.inc.php:375
|
245 |
msgid "Support the development"
|
246 |
msgstr "Поддержать автора плагина"
|
247 |
|
248 |
#: admin.inc.php:323
|
249 |
+
#: admin.inc.php:383
|
250 |
msgid "Enter amount in USD: "
|
251 |
msgstr "Сколько вы готовы пожертвовать (в USD):"
|
252 |
|
253 |
#: admin.inc.php:327
|
254 |
+
#: admin.inc.php:387
|
255 |
msgid "Send your donation to the author of"
|
256 |
msgstr "Отправьте пожертвование автору"
|
257 |
|
258 |
#: admin.inc.php:347
|
259 |
+
#: admin.inc.php:414
|
260 |
+
#: admin.inc.php:618
|
261 |
#: top-10.php:257
|
262 |
#: top-10.php:273
|
263 |
#: top-10.php:445
|
269 |
msgid "Daily Popular Posts"
|
270 |
msgstr "Популярные сегодня записи"
|
271 |
|
272 |
+
#: admin.inc.php:412
|
273 |
+
#: admin.inc.php:414
|
274 |
msgid "Top 10"
|
275 |
msgstr "Топ 10 записей"
|
276 |
|
277 |
+
#: admin.inc.php:526
|
278 |
msgid "Results"
|
279 |
msgstr "Результаты"
|
280 |
|
281 |
+
#: admin.inc.php:528
|
282 |
+
#: admin.inc.php:534
|
283 |
msgid "of"
|
284 |
msgstr "из"
|
285 |
|
286 |
+
#: admin.inc.php:532
|
287 |
msgid "Page"
|
288 |
msgstr "Страница"
|
289 |
|
290 |
+
#: admin.inc.php:546
|
291 |
msgid "View Daily Popular Posts"
|
292 |
msgstr "Посмотреть все Популярные сегодня записи"
|
293 |
|
294 |
+
#: admin.inc.php:550
|
295 |
msgid "View Overall Popular Posts"
|
296 |
msgstr "Посмотреть все Популярные записи"
|
297 |
|
298 |
+
#: admin.inc.php:554
|
299 |
msgid "Results per-page:"
|
300 |
msgstr "Результатов на страницу:"
|
301 |
|
302 |
+
#: admin.inc.php:578
|
303 |
msgid "Previous"
|
304 |
msgstr "Предыдущая страница"
|
305 |
|
306 |
+
#: admin.inc.php:596
|
307 |
msgid "Next"
|
308 |
msgstr "Следующая страница"
|
309 |
|
310 |
+
#: admin.inc.php:619
|
311 |
#: top-10.php:219
|
312 |
#: top-10.php:235
|
313 |
#: top-10.php:446
|
315 |
msgid "Daily Popular"
|
316 |
msgstr "Популярные сегодня записи"
|
317 |
|
318 |
+
#: admin.inc.php:630
|
319 |
msgid "Total / Today's Views"
|
320 |
msgstr "Всего/Сегодня"
|
321 |
|
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"
|
@@ -202,53 +202,64 @@ msgid "This will delete the duplicate entries in the tables. Proceed?"
|
|
202 |
msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
|
203 |
|
204 |
#: admin.inc.php:300
|
|
|
205 |
msgid "Quick links"
|
206 |
msgstr "Корисні посилання"
|
207 |
|
208 |
#: admin.inc.php:302
|
|
|
209 |
msgid "Top 10 "
|
210 |
msgstr "Топ 10 записів"
|
211 |
|
212 |
#: admin.inc.php:302
|
|
|
213 |
msgid "plugin page"
|
214 |
msgstr "Сторінка плагіна"
|
215 |
|
216 |
#: admin.inc.php:303
|
|
|
217 |
msgid "Other plugins"
|
218 |
msgstr "Інші плагіни автора"
|
219 |
|
220 |
#: admin.inc.php:304
|
|
|
221 |
msgid "Ajay's blog"
|
222 |
msgstr "Блог Ajay"
|
223 |
|
224 |
#: admin.inc.php:305
|
|
|
225 |
#: top-10.php:515
|
226 |
msgid "Support"
|
227 |
msgstr "Підтримка (англ.)"
|
228 |
|
229 |
#: admin.inc.php:306
|
|
|
230 |
msgid "Follow @ajaydsouza on Twitter"
|
231 |
msgstr "Йди за @ajaydsouza в Twitter"
|
232 |
|
233 |
#: admin.inc.php:310
|
|
|
234 |
msgid "Recent developments"
|
235 |
msgstr "Останні розробки"
|
236 |
|
237 |
#: admin.inc.php:315
|
|
|
238 |
msgid "Support the development"
|
239 |
msgstr "Підтримати автора плагіна"
|
240 |
|
241 |
#: admin.inc.php:323
|
|
|
242 |
msgid "Enter amount in USD: "
|
243 |
msgstr "Скільки ви готові пожертвувати (в USD):"
|
244 |
|
245 |
#: admin.inc.php:327
|
|
|
246 |
msgid "Send your donation to the author of"
|
247 |
msgstr "Відправте пожертву автору"
|
248 |
|
249 |
#: admin.inc.php:347
|
250 |
-
#: admin.inc.php:
|
251 |
-
#: admin.inc.php:
|
252 |
#: top-10.php:257
|
253 |
#: top-10.php:273
|
254 |
#: top-10.php:445
|
@@ -260,45 +271,45 @@ msgstr "Популярні записи"
|
|
260 |
msgid "Daily Popular Posts"
|
261 |
msgstr "Популярні сьогодні записи"
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Top 10"
|
266 |
msgstr "Топ 10 записів"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Results"
|
270 |
msgstr "Результати"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
-
#: admin.inc.php:
|
274 |
msgid "of"
|
275 |
msgstr "з"
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "Page"
|
279 |
msgstr "Сторінка"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "View Daily Popular Posts"
|
283 |
msgstr "Подивитися всі Популярні сьогодні записи"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "View Overall Popular Posts"
|
287 |
msgstr "Подивитися всі Популярні записи"
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid "Results per-page:"
|
291 |
msgstr "Результатів на сторінку:"
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Previous"
|
295 |
msgstr "Попередня сторінка"
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
msgid "Next"
|
299 |
msgstr "Наступна сторінка"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
#: top-10.php:219
|
303 |
#: top-10.php:235
|
304 |
#: top-10.php:446
|
@@ -306,7 +317,7 @@ msgstr "Наступна сторінка"
|
|
306 |
msgid "Daily Popular"
|
307 |
msgstr "Популярні сьогодні записи"
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid "Total / Today's Views"
|
311 |
msgstr "Всього/Сьогодні"
|
312 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Top 10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-03-10 08:43-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"
|
202 |
msgstr "Буде проведено видалення дубльованих запісів з статистики. Продовжити?"
|
203 |
|
204 |
#: admin.inc.php:300
|
205 |
+
#: admin.inc.php:360
|
206 |
msgid "Quick links"
|
207 |
msgstr "Корисні посилання"
|
208 |
|
209 |
#: admin.inc.php:302
|
210 |
+
#: admin.inc.php:362
|
211 |
msgid "Top 10 "
|
212 |
msgstr "Топ 10 записів"
|
213 |
|
214 |
#: admin.inc.php:302
|
215 |
+
#: admin.inc.php:362
|
216 |
msgid "plugin page"
|
217 |
msgstr "Сторінка плагіна"
|
218 |
|
219 |
#: admin.inc.php:303
|
220 |
+
#: admin.inc.php:363
|
221 |
msgid "Other plugins"
|
222 |
msgstr "Інші плагіни автора"
|
223 |
|
224 |
#: admin.inc.php:304
|
225 |
+
#: admin.inc.php:364
|
226 |
msgid "Ajay's blog"
|
227 |
msgstr "Блог Ajay"
|
228 |
|
229 |
#: admin.inc.php:305
|
230 |
+
#: admin.inc.php:365
|
231 |
#: top-10.php:515
|
232 |
msgid "Support"
|
233 |
msgstr "Підтримка (англ.)"
|
234 |
|
235 |
#: admin.inc.php:306
|
236 |
+
#: admin.inc.php:366
|
237 |
msgid "Follow @ajaydsouza on Twitter"
|
238 |
msgstr "Йди за @ajaydsouza в Twitter"
|
239 |
|
240 |
#: admin.inc.php:310
|
241 |
+
#: admin.inc.php:370
|
242 |
msgid "Recent developments"
|
243 |
msgstr "Останні розробки"
|
244 |
|
245 |
#: admin.inc.php:315
|
246 |
+
#: admin.inc.php:375
|
247 |
msgid "Support the development"
|
248 |
msgstr "Підтримати автора плагіна"
|
249 |
|
250 |
#: admin.inc.php:323
|
251 |
+
#: admin.inc.php:383
|
252 |
msgid "Enter amount in USD: "
|
253 |
msgstr "Скільки ви готові пожертвувати (в USD):"
|
254 |
|
255 |
#: admin.inc.php:327
|
256 |
+
#: admin.inc.php:387
|
257 |
msgid "Send your donation to the author of"
|
258 |
msgstr "Відправте пожертву автору"
|
259 |
|
260 |
#: admin.inc.php:347
|
261 |
+
#: admin.inc.php:414
|
262 |
+
#: admin.inc.php:618
|
263 |
#: top-10.php:257
|
264 |
#: top-10.php:273
|
265 |
#: top-10.php:445
|
271 |
msgid "Daily Popular Posts"
|
272 |
msgstr "Популярні сьогодні записи"
|
273 |
|
274 |
+
#: admin.inc.php:412
|
275 |
+
#: admin.inc.php:414
|
276 |
msgid "Top 10"
|
277 |
msgstr "Топ 10 записів"
|
278 |
|
279 |
+
#: admin.inc.php:526
|
280 |
msgid "Results"
|
281 |
msgstr "Результати"
|
282 |
|
283 |
+
#: admin.inc.php:528
|
284 |
+
#: admin.inc.php:534
|
285 |
msgid "of"
|
286 |
msgstr "з"
|
287 |
|
288 |
+
#: admin.inc.php:532
|
289 |
msgid "Page"
|
290 |
msgstr "Сторінка"
|
291 |
|
292 |
+
#: admin.inc.php:546
|
293 |
msgid "View Daily Popular Posts"
|
294 |
msgstr "Подивитися всі Популярні сьогодні записи"
|
295 |
|
296 |
+
#: admin.inc.php:550
|
297 |
msgid "View Overall Popular Posts"
|
298 |
msgstr "Подивитися всі Популярні записи"
|
299 |
|
300 |
+
#: admin.inc.php:554
|
301 |
msgid "Results per-page:"
|
302 |
msgstr "Результатів на сторінку:"
|
303 |
|
304 |
+
#: admin.inc.php:578
|
305 |
msgid "Previous"
|
306 |
msgstr "Попередня сторінка"
|
307 |
|
308 |
+
#: admin.inc.php:596
|
309 |
msgid "Next"
|
310 |
msgstr "Наступна сторінка"
|
311 |
|
312 |
+
#: admin.inc.php:619
|
313 |
#: top-10.php:219
|
314 |
#: top-10.php:235
|
315 |
#: top-10.php:446
|
317 |
msgid "Daily Popular"
|
318 |
msgstr "Популярні сьогодні записи"
|
319 |
|
320 |
+
#: admin.inc.php:630
|
321 |
msgid "Total / Today's Views"
|
322 |
msgstr "Всього/Сьогодні"
|
323 |
|
readme.txt
CHANGED
@@ -19,7 +19,7 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
19 |
* Counts daily and total page views on single posts and pages
|
20 |
* Display the count on the single posts and pages
|
21 |
* Customize the text that can be displayed
|
22 |
-
* Display a list of daily and/or overall popular posts by page count.
|
23 |
* Sidebar widgets available for daily popular and overall popular posts
|
24 |
* Exclude posts from select categories from appearing in the top posts list
|
25 |
* View list of daily and/or overall popular posts from within the dashboard itself
|
@@ -32,8 +32,17 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
32 |
1. Top-10 options in WP-Admin
|
33 |
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
== Changelog ==
|
36 |
|
|
|
|
|
|
|
37 |
= 1.8 =
|
38 |
* Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
|
39 |
* Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
|
@@ -116,16 +125,6 @@ Includes a sidebar widget to display the popular posts. And, all settings can be
|
|
116 |
= 1.0.1 =
|
117 |
* Release
|
118 |
|
119 |
-
== Upgrade Notice ==
|
120 |
-
|
121 |
-
= 1.8 =
|
122 |
-
* Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
|
123 |
-
* Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
|
124 |
-
* Added: Option to display thumbnails before or after the title
|
125 |
-
* Added: Option to not display thumbnails instead of the default thumbnail
|
126 |
-
* Added: Counts are now neatly formatted with commas
|
127 |
-
* Modified: Minor tweaks to improve performance
|
128 |
-
|
129 |
|
130 |
== Installation ==
|
131 |
|
@@ -159,6 +158,7 @@ All options can be customized within the Options page in WP-Admin itself
|
|
159 |
|
160 |
For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-10/
|
161 |
|
|
|
162 |
= Support =
|
163 |
|
164 |
Read how you can receive support for this plugin at http://ajaydsouza.com/support
|
19 |
* Counts daily and total page views on single posts and pages
|
20 |
* Display the count on the single posts and pages
|
21 |
* Customize the text that can be displayed
|
22 |
+
* Display a list of daily and/or overall popular posts by page count. You can choose how many posts are to be displayed
|
23 |
* Sidebar widgets available for daily popular and overall popular posts
|
24 |
* Exclude posts from select categories from appearing in the top posts list
|
25 |
* View list of daily and/or overall popular posts from within the dashboard itself
|
32 |
1. Top-10 options in WP-Admin
|
33 |
|
34 |
|
35 |
+
== Upgrade Notice ==
|
36 |
+
|
37 |
+
= 1.8.1 =
|
38 |
+
* Fixed: Dashboard widgets linking
|
39 |
+
|
40 |
+
|
41 |
== Changelog ==
|
42 |
|
43 |
+
= 1.8.1 =
|
44 |
+
* Fixed: Dashboard widgets linking
|
45 |
+
|
46 |
= 1.8 =
|
47 |
* Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
|
48 |
* Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
|
125 |
= 1.0.1 =
|
126 |
* Release
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
== Installation ==
|
130 |
|
158 |
|
159 |
For more information, please visit http://ajaydsouza.com/wordpress/plugins/top-10/
|
160 |
|
161 |
+
|
162 |
= Support =
|
163 |
|
164 |
Read how you can receive support for this plugin at http://ajaydsouza.com/support
|
top-10.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
-
Version: 1.8
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
|
6 |
Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
|
7 |
Author: Ajay D'Souza
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Top 10
|
4 |
+
Version: 1.8.1
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/top-10/
|
6 |
Description: Count daily and total visits per post and display the most popular posts based on the number of views. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>
|
7 |
Author: Ajay D'Souza
|